@charset "UTF-8";
/*
       multi-class
========================================================================== */
html {
    font-size: 14px;
}
body {
    width: 100%;
    font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", YuGothic, 'メイリオ', 'Meiryo', "M PLUS 1p", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    line-height: 1.6;
    box-sizing: border-box;
    font-weight: 300;
    color: #000000;
    letter-spacing: 0.08em;
}
body * {
    box-sizing: border-box;
}
.page_wrapper {
    overflow: hidden;
}
a {
    text-decoration: none;
    color: #000000;
}
.cf:after {
    display: block;
    content: "";
    clear: both;
}
img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}
.pagetop {
    overflow: hidden;
    position: fixed;
    bottom: 3vw;
    right: 3vw;
    width: 11vw;
}
.pagetop:hover {
    opacity: .6;
}
.d_pc {
    display: none !important;
}
#content {
    margin-top: 15vw;
}
section {
    padding: 12vw 6vw;
}
p {
    line-height: 1.8;
    font-weight: 500;
}
/* .sidr */
.sidr {
    background: #958c7a !important;
    box-shadow: none !important;
}
.sidr ul {
    border-bottom: none !important;
    border-top: none !important;
}
.sidr ul li {
    border-bottom: none !important;
    border-top-color: #7a7261 !important;
}
#sidr ul li {
    line-height: 1.2;
}
#sidr ul li a {
    display: block;
    padding: 18px 10px;
}
/* スクロールCSS */
.fade-in {
    opacity: 0;
}
.fade-in-up {
    transform: translate(0, 80px);
}
.fade-in-down {
    transform: translate(0, -80px);
}
.fade-in-left {
    transform: translate(-80px, 0);
}
.fade-in-right {
    transform: translate(80px, 0);
}
.scroll-in {
    animation: fadeIn 1.5s ease;
    animation-fill-mode: forwards;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}
.fade-in-op {
    opacity: 0;
}
.fade-in-op.scroll-in {
    animation: fadeIn-op 2s ease;
    animation-fill-mode: forwards;
    animation-delay: 0.2s;
}
@keyframes fadeIn-op {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/*
     フォント
========================================================================== */
.jost {
    font-family: "Jost", serif;
}
.serif {
    font-family: 'Noto Serif JP', serif;
}
/*
     画像
========================================================================== */
.fade {
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.img_right {
    float: right;
    margin: 0 0 10px 15px;
}
.img_left {
    float: left;
    margin: 0 15px 10px 0;
}
.alignC {
    text-align: center;
}
.alignR {
    text-align: right !important;
}
.alignL {
    text-align: left !important;
}
.img_1col_A {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.img_2col_A, .img_4col_A {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.img_2col_A > * {
    width: 50%;
}
.img_4col_A > * {
    width: 25%;
}
.img_2col_B {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.img_2col_B .img {
    margin-bottom: 3vw;
}
.video_cont_wrap {
    max-width: 100%;
}
.video_cont_wrap video {
    width: 100%;
}
/*
     見出し
========================================================================== */
.ttl_A {
    display: block;
    text-align: center;
    line-height: 1.3;
}
.ttl_A .ttl_A_en {
    display: block;
    font-size: 4vw;
    margin-bottom: 5px;
    font-family: "Jost", serif;
    color: #33b157;
    font-weight: 600;
}
.ttl_A .ttl_A_jp {
    display: block;
    font-size: 5.6vw;
    font-weight: 700;
}
.ttl_B {
    display: block;
    text-align: center;
    line-height: 1.3;
    font-size: 5vw;
    font-weight: 700;
}

/*
     ボタン
========================================================================== */
.btn_A {
    margin-left: auto;
    margin-right: auto;
    width: 70vw;
    max-width: 100%;
    padding: 0.8em;
    display: block;
    position: relative;
    text-align: center;
    background: #33b157;
    border-radius: 40px;
    box-shadow: 2px 3px 3px 0px rgba(0, 0, 0, 0.2);
}
.btn_B {
    margin-left: auto;
    margin-right: auto;
    width: 70vw;
    max-width: 100%;
    padding: 0.8em;
    display: block;
    position: relative;
    text-align: center;
    background: #fc8100;
    border-radius: 40px;
    box-shadow: 2px 3px 3px 0px rgba(0, 0, 0, 0.2);
}
.btn_A::after,
.btn_B::after {
    display: block;
    content: '';
    width: 0;
    height: 0;
    border-left: 7px solid #fff;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    top: calc(50% - 5px);
    right: 1em;
}
.btn_A a,
.btn_B a {
    color: #fff;
    font-size: 3.6vw;
    font-weight: 600;
}

/*
     テーブル
========================================================================== */
.table_A, .table_B {
    width: 100%;
    font-size: 0.9rem;
}
.table_A {
    border-left: 1px solid #333;
    border-top: 1px solid #333;
    background: #fff;
}
.table_A th {
    text-align: center;
    background: #ffe9ed;
    padding: 2vw;
    font-weight: 600;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
}
.table_A td {
    padding: 2vw;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
}
.table_B {
    border-top: 1px solid #b3b3b3;
}
.table_B th, .table_B td {
    padding: 3vw 1vw;
    border-bottom: 1px solid #b3b3b3;
}
.table_dl_A dt {
    margin-bottom: 3vw;
    padding: 2.5vw 4vw;
    background: #ededee;
    border-top: 1px solid #b3b3b3;
}
.table_dl_A dd {
    padding-left: 4vw;
    margin-bottom: 6vw;
}
table tr.line_dot th, table tr.line_dot td {
    border-bottom: 1px dotted#b3b3b3;
}
.table_wrap_A, .table_wrap_B, .table_wrap_C, .table_wrap_D {
    width: 100%;
    overflow-x: scroll;
}
.table_wrap_A table {
    width: 150vw;
}
.table_wrap_B table {
    width: 220vw;
}
.table_wrap_C table {
    width: 120vw;
}
.table_wrap_D table {
    width: 100vw;
}
/*
     リスト
========================================================================== */
.list_num li {
    list-style-type: decimal;
    list-style-position: outside;
    margin-left: 1.8em;
}
.list_dot li {
    list-style: disc;
    margin-left: 1.5em;
}
.list_arrow li {
    list-style: none;
    padding-left: 1em;
    text-indent: -1em;
}
.list_arrow li::before {
    display: inline;
    content: '▶';
}
.list_note li, .list_circle li {
    list-style: none;
    padding-left: 1em;
    text-indent: -1em;
}
.list_note li::before {
    display: inline;
    content: '※';
}

/*
     テキスト
========================================================================== */
.p-link {
    color: #33b157;
    text-decoration: underline;
    margin: 0 1px;
}
.bold {
    font-weight: bold;
}
.txt160 {
  font-size: 160%;
}
.txt150 {
  font-size: 150%;
}
.txt140 {
  font-size: 140%;
}
.txt130 {
  font-size: 130%;
}
.txt120 {
  font-size: 120%;
}
.txt110 {
  font-size: 110%;
}
.txt90 {
  font-size: 90%;
}
.txt80 {
  font-size: 80%;
}
.txt70 {
  font-size: 70%;
}
.txt60 {
  font-size: 60%;
}
/* line height */
.lh10 {
    line-height: 1;
}
.lh12 {
    line-height: 1.2;
}
.lh13 {
    line-height: 1.3;
}
.lh15 {
    line-height: 1.5;
}
.lh16 {
    line-height: 1.6;
}
.lh18 {
    line-height: 1.8;
}
.lh20 {
    line-height: 2;
}
/* color */
.gray {
    color: #808080 !important;
}
.red {
    color: #bf182a !important;
}
.blue {
    color: #104a7a !important;
}
.orange {
    color: #fc8100 !important;
}
.green {
    color: #33b157 !important;
}
.white {
    color: #fff !important;
}
/*
     余白
========================================================================== */
.pt10 {
    padding-top: 10px !important;
}
.pr10 {
    padding-right: 10px !important;
}
.pl10 {
    padding-left: 10px !important;
}
.pb10 {
    padding-bottom: 10px !important;
}
.mb0 {
    margin-bottom: 0 !important;
}
.mb5 {
    margin-bottom: 5px !important;
}
.mb10 {
    margin-bottom: 10px !important;
}
.mb15 {
    margin-bottom: 15px !important;
}
.mb20,
.mb25 {
    margin-bottom: 5vw !important;
}
.mb30 {
    margin-bottom: 6vw !important;
}
.mb40 {
    margin-bottom: 6.5vw !important;
}
.mb50 {
    margin-bottom: 7vw !important;
}
.mb60 {
    margin-bottom: 8.5vw !important;
}
.mb70 {
    margin-bottom: 8.5vw !important;
}
.mb80 {
    margin-bottom: 9vw !important;
}
.mb90 {
    margin-bottom: 9.5vw !important;
}
.mb100 {
    margin-bottom: 11vw !important;
}
.mb1em {
    margin-bottom: 1em;
}
.mt5 {
    margin-top: 5px !important;
}
.mt10 {
    margin-top: 10px !important;
}
.mt15 {
    margin-top: 10px !important;
}
.mt20 {
    margin-top: 5vw !important;
}
.mt30 {
    margin-top: 6vw !important;
}
.mr5 {
    margin-right: 5px !important;
}
.mr10 {
    margin-right: 10px !important;
}
.mr15 {
    margin-right: 15px !important;
}
.mr20 {
    margin-right: 5vw !important;
}
.mr30 {
    margin-right: 6vw !important;
}
.ml5 {
    margin-left: 5px !important;
}
.ml10 {
    margin-left: 10px !important;
}
.ml15 {
    margin-left: 15px !important;
}
.ml20 {
    margin-left: 5vw !important;
}
.ml30 {
    margin-left: 6vw !important;
}
/*
     pagenavi
========================================================================== */
.pagenavi {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4.2vw;
}
.pagenavi .pagenavi_list {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0.5em;
}
.pagenavi .pagenavi_list li {
    margin: 0 0.5em;
    padding: 0 0.2em;
}
.pagenavi .pagenavi_list li.active {
    border-bottom: 1px solid #494955;
}
.pagenavi .prev, .pagenavi .next {
    margin: 0 0.5em;
    width: 0;
    height: 0;
    overflow: hidden;
    border-style: solid;
}
.pagenavi .prev {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 11px solid #494955;
    border-left: 0;
}
.pagenavi .next {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 11px solid #494955;
    border-right: 0;
}
/*
     slick
========================================================================== */
/* slick-dot */
#content .slick-dotted.slick-slider {
    margin-bottom: 0;
}
#content .slick-dots {
    bottom: 1.9vw;
    z-index: 10;
}
#content .slick-dots li {
    width: 1.9vw;
    height: 1.9vw;
    margin: 0 3px;
}
#content .slick-dots li button {
    width: 1.9vw;
    height: 1.9vw;
    padding: 0;
}
#content .slick-dots li button:before {
    width: 1.9vw;
    height: 1.9vw;
    content: '';
    border-radius: 1.9vw;
    background: #B3B3B3;
    opacity: 1;
}
#content .slick-dots li.slick-active button:before {
    background: #494955;
}
/* cont_slider */
#content .cont_slider .slick-arrow {
    display: block;
    position: absolute;
    top: 30vw;
    margin: auto;
    padding: 0;
    width: 6vw;
    height: 6vw;
    color: transparent;
    z-index: 1;
    transition: opacity 0.5s;
}
#content .cont_slider .slick-arrow:hover {
    opacity: 0.8;
}
#content .cont_slider .slick-next::before, #content .cont_slider .slick-next::after, #content .cont_slider .slick-prev::before, #content .cont_slider .slick-prev::after {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}
#content .cont_slider .slick-next::after, #content .cont_slider .slick-prev::after {
    width: 4vw;
    height: 4vw;
    border-top: 1.5px solid #b3b3b3;
    border-right: 1.5px solid #b3b3b3;
}
#content .cont_slider .slick-next {
    right: 1.5vw;
}
#content .cont_slider .slick-next::after {
    right: 4px;
    transform: rotate(45deg);
}
#content .cont_slider .slick-prev {
    left: 1.5vw;
}
#content .cont_slider .slick-prev::after {
    left: 4px;
    transform: rotate(-135deg);
}
#content .cont_slider p {
    margin: 10px 0 20px;
    font-size: 0.857rem;
    line-height: 1.2;
    font-family: 'Noto Sans JP', serif;
}
#content .cont_slider_wrap {
    margin-left: auto;
    margin-right: auto;
    width: 640px;
    max-width: 100%;
}
#content .cont_slider_thumnail .slick-track {
    transform: unset !important;
    width: 100% !important;
    display: flex;
    justify-content: flex-start;
    flex-flow: row wrap;
}
#content .cont_slider_thumnail .slick-slide {
    display: block !important;
    float: none !important;
    margin-right: 1.5625%;
    flex: 0 0 17.1875%;
    cursor: pointer;
    opacity: 0.3;
    transition: all .5s;
}
#content .cont_slider_thumnail .slick-slide.slick-current {
    opacity: 1;
}
#content .cont_slider_thumnail .slick-track:before, #content .cont_slider_thumnail .slick-track:after {
    display: none;
}

/*
     iOS ボタン
========================================================================== */
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"], input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]::focus, input[type="button"]::focus {
    outline-offset: -2px;
}
/*
       01. header
========================================================================== */
header {
    width: 100%;
    padding: 3vw;
    box-sizing: border-box;
    transition: all .5s;
    background: #3a3a3a;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}
/* header_logo */
header .header_logo a {
    display: block;
    overflow: hidden;
    width: 24.6vw;
    height: 0;
    padding-top: 6.6vw;
    background: url("../images/common/logo_w.png") no-repeat 0 50% / contain;
}
/* headerColorScroll */
header.headerColorScroll {
    padding-top: 3vw;
    padding-bottom: 3vw;
}
header.headerColorScroll .header_logo a {
    padding-top: 5vw;
}


/*
       02. gnav
========================================================================== */
.globalMenuSp {
    position: fixed;
    z-index: 1001;
    top: -10px;
    right: 0;
    background: #f1f1f1;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 70vw;
    box-sizing: border-box;
    overflow-y: scroll;
    padding: 8vw 6vw;
}
/* このクラスを、jQueryで付与・削除する */
.globalMenuSp.active {
    transform: translateY(0%);
    top: 0;
}
/* ハンバーガー用 */
.navToggle {
    display: block;
    position: fixed;
    right: 4vw;
    top: 4vw;
    width: 5.3333vw;
    height: 5.3333vw;
    text-align: center;
    border-radius: 2px;
    transition: all .5s;
    z-index: 9999;
}
header.headerColorScroll .navToggle {
    top: 3.5vw;
}
.navToggle span {
    display: block;
    position: absolute; /* .navToggleに対して */
    width: 5.3333vw;
    border-bottom: solid 0.5333vw #33b157;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 0;
    border-radius: 2px;
}
.navToggle span:nth-child(1) {
    top: 0;
}
.navToggle span:nth-child(2) {
    top: 1.6vw;
}
.navToggle span:nth-child(3) {
    top: 3.2vw;
}
.navToggle span:nth-child(4) {
    border: none;
    color: #eee;
    font-size: 9px;
    font-weight: bold;
    top: 34px;
}
/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
    top: 2vw;
    left: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2), .navToggle.active span:nth-child(3) {
    top: 2vw;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* gnav content */
.globalMenuSp .globalMenuSp_main {
    margin-bottom: 6vw;
    padding-bottom: 3vw;
    border-bottom: 1px solid #e0e0e0;
}
.globalMenuSp .globalMenuSp_main li a {
    display: block;
    font-size: 3.6vw;
    margin-bottom: 4vw;
    font-weight: 500;
}
.globalMenuSp .globalMenuSp_main li a::before {
    display: inline-block;
    content: '';
    background: #999;
    width: 2vw;
    height: 2vw;
    margin-bottom: 0.4vw;
    margin-right: 2vw;
}
.globalMenuSp .globalMenuSp_btn {
    margin-bottom: 6vw;
    padding-bottom: 6vw;
    border-bottom: 1px solid #e0e0e0;
}
.globalMenuSp .globalMenuSp_btn_contact {
    margin-bottom: 2vw;
}
.globalMenuSp .page_contact_txt {
    text-align: center;
}
.globalMenuSp .page_contact_txt a {
    font-size: 0.9rem;
    border-bottom: 1px solid #000;
    padding-bottom: 0.2em;
    font-weight: 500;
}
.globalMenuSp .globalMenuSp_btn_login {
    padding: 0.5em 0.8em;
}
.globalMenuSp .globalMenuSp_btn_login a {
    font-size: 3.2vw;
}

/*
       03. footer
========================================================================== */
#footer .footer_navi {
    padding: 12px;
    background: #f1f3f9;
    text-align: center;
}
#footer .footer_navi a {
    text-decoration: underline;
    font-size: 0.8rem;
}
#footer .copy {
    padding: 15px;
    background: #3a3a3a;
    text-align: center;
    color: #fff;
    line-height: 1;
    font-size: 0.75rem;
}
/*
     04. top
 ========================================================================== */
/* page_contact ============================ */
.page_contact {
    text-align: center;
}
.page_contact .page_contact_btn {
    margin: 0 auto 7px;
    padding: 4vw 11vw 4vw 4vw;
    display: block;
    width: 85vw;
    background: #fc8100;
    text-align: center;
    border-radius: 40px;
    box-shadow: 2px 3px 3px 0px rgba(0, 0, 0, 0.2);
}
.page_contact .page_contact_btn span {
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-size: 4.2vw;
    position: relative;
}
.page_contact .page_contact_btn span::after {
    display: block;
    content: '';
    position: absolute;
    top: calc(50% - 2.051vw);
    right: -8.205vw;
    width: 6.667vw;
    height: 5.128vw;
    background: url(../images/common/ic_mail.png) no-repeat 0 50% / contain;
}
.page_contact .page_contact_txt {
    font-size: 3vw;
    border-bottom: 1px solid #000;
    letter-spacing: 0;
    padding-bottom: 0.2em;
    font-weight: 500;
}
/* c_mv ============================ */
#top #c_mv {
    padding: 8vw 0 10vw;
    position: relative;
}
#top #c_mv h1 {
    margin: 0 auto;
    display: block;
    width: 92vw;
    height: 0;
    padding-top: 130.133vw;
    overflow: hidden;
    background: url("../images/top/mv_ttl_sp.png") no-repeat 0 0 / contain;
}
#top #c_mv .page_contact {
    margin-top: 6vw;
}

/* c_outline ============================ */
#top #c_outline {
    padding-top: 8vw;
    padding-bottom: 6vw;
    background: #f1f3f9;
}
#top #c_outline .outline_head {
    position: relative;
}
#top #c_outline .outline_head .outline_head_img {
    width: 47%;
    position: absolute;
    bottom: -6vw;
    right: -7%;
}
#top #c_outline .outline_head .outline_head_txt .outline_head_catch {
    font-size: 4vw;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 10px;
}
#top #c_outline .outline_head .outline_head_txt .outline_head_catch span {
    font-weight: 700;
}
/* outline_head_balloon */
#top #c_outline .outline_head .outline_head_txt .outline_head_balloon {
    margin-top: 2vw;
    background: #fff;
    padding: 5vw 4vw;
    border-radius: 12px;
    letter-spacing: 0;
    position: relative;
    display: inline-block;
}
#top #c_outline .outline_head .outline_head_txt .outline_head_balloon::before {
    width: 10vw;
    height: 6vw;
    content: '';
    display: block;
    background: url("../images/top/outline_balloon.png") no-repeat 0 0 / contain;
    position: absolute;
    top: 6vw;
    right: -3vw;
}
#top #c_outline .outline_head .outline_head_txt .outline_head_balloon p {
    font-size: 3.6vw;
    font-weight: 700;
    line-height: 1.4;
}
#top #c_outline .outline_head .outline_head_txt .outline_head_balloon .outline_head_balloon_lh {
    line-height: 1.7;
    font-weight: 700;
}

/* c_intro ============================ */
#top #c_intro .cont_wrap {
    margin-bottom: 8vw;
}
#top #c_intro .intro_img {
    margin-bottom: 6vw;
}
#top #c_intro .intro_txt .intro_ttl {
    font-weight: 700;
    font-size: 4.6vw;
    margin-bottom: 4vw;
    text-indent: -0.5em;
}

/* c_reason ============================ */
#top #c_reason {
    background: #f1f3f9;
}
#top #c_reason .ttl_A {
    margin-bottom: 4vw;
}
#top #c_reason .reason_cont {
    position: relative;
    margin-bottom: 6vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#top #c_reason .reason_cont:last-child {
    margin-bottom: 0;
}
#top #c_reason .reason_cont:not(:last-child)::after {
    width: 7vw;
    height: 10vw;
    content: '';
    display: block;
    background: url(../images/top/reason_arrow_sp.png) no-repeat 50% 50% / contain;
    position: absolute;
    bottom: -7vw;
    left: 11vw;
    z-index: 2;
}
#top #c_reason .reason_cont .reason_cont_img {
    position: relative;
    width: 35%;
}
#top #c_reason .reason_cont .reason_cont_txt {
    width: 60%;
}
#top #c_reason .reason_cont .reason_cont_ttl {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 4vw;
    line-height: 1.4;
}
#top #c_reason .reason_cont p {
    line-height: 1.6;
    font-size: 3.2vw;
}

/* c_point ============================ */
#top #c_point .ttl_A {
    margin-bottom: 10vw;
}
#top #c_point .point_cont {
    margin: 0 auto 6vw;
    width: 72%;
}
#top #c_point .point_cont .point_cont_ttl {
    margin-bottom: 3vw;
}

/* c_function ============================ */
#top #c_function {
    background: #f1f3f9;
}
#top #c_function .ttl_A {
    margin-bottom: 6vw;
}
#top #c_function .function_txt {
    margin-bottom: 8vw;
}
#top #c_function .function_txt .function_cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8vw;
}
#top #c_function .function_txt .function_cont_img {
    width: 35%;
}
#top #c_function .function_txt .function_cont_txt {
    width: 60%;
}
#top #c_function .function_txt .function_cont_txt .function_cont_ttl {
    font-weight: 700;
    font-size: 4vw;
    margin-bottom: 5px;
}
#top #c_function .function_txt .function_cont_txt p {
    font-size: 3.2vw;
}
#top #c_function .function_img {
    margin: 0 auto;
    width: 70%;
}

/* c_flow ============================ */
#top #c_flow .ttl_A {
    margin-bottom: 6vw;
}

/* c_faq ============================ */
#top #c_faq {
    background: #f1f3f9;
}
#top #c_faq .ttl_A {
    margin-bottom: 6vw;
}
#top #c_faq .faq_list {
    margin-bottom: 8vw;
}
#top #c_faq .faq_list .faq_cont {
    display: block;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 4vw;
    position: relative;
}
#top #c_faq .faq_cont p {
    padding-left: 2.35em;
    text-indent: -2.35em;
    line-height: 1.6;
}
#top #c_faq .faq_cont .faq_ic {
    font-size: 2rem;
    font-weight: 600;
    margin-right: 0.4em;
    line-height: 1;
}
#top #c_faq .faq_cont .faq_txt {
    font-weight: 500;
}
#top #c_faq .faq_cont .faq_q {
    margin-bottom: 0.6em;
    padding-bottom: 0.5em;
    border-bottom: 2px solid #33b157;
    font-size: 1.1rem;
}
#top #c_faq .faq_cont .faq_q .faq_txt {
    font-weight: 700;
}

/* c_company ============================ */
#top #c_company .ttl_B {
    margin-bottom: 6vw;
}
#top #c_company .company_list {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}
#top #c_company .company_list {
border-top: 1px solid #e8e8e8;
}
#top #c_company .company_list dt {
    width: 6.5em;
    padding: 12px 10px;
    border-bottom: 1px solid #e8e8e8;
    font-weight: 700;
}
#top #c_company .company_list dd {
    width: calc(100% - 6.5em);
    padding: 12px 5px;
    border-bottom: 1px solid #e8e8e8;
}