@charset "UTF-8";
@import "base.css";
@import "fonts.css";
/*==========================================================================*/
/*                                                                          */
/*    base.css  --> スタイルの初期設定を行うため、変更しないで下さい。      */
/*    fonts.css --> フォントの初期設定を行うため、変更しないで下さい。      */
/*                                                                          */
/*==========================================================================*/
/*==========================================================================*/
/*                           Common-Setting                                 */
/*==========================================================================*/
/* 基本タグのフォントサイズを指定（12px -> 120% or 1.2em ） */
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd, del {
    font-size: 160%;
    -webkit-text-size-adjust: none;
    font-weight: 400;
}
*, ::before, ::after {
    box-sizing: border-box;
    outline: none;
}
img {
    vertical-align: middle;
    max-width: 100%;
    flex-shrink: 0;
    height: auto;
}
select {
    visibility: visible !important;
}
a {
    transition: all ease 0.3s;
    text-decoration: none;
    color: var(--txt);
}
a[href^="tel:"] {
    word-break: keep-all;
}
video {
    max-width: 100%;
    height: auto;
}
figure {
    margin: 0;
}
figure:not(:last-child) {
    margin-bottom: 20px;
}
/*==========================================================================*/
/*                               Container                                  */
/*==========================================================================*/
html {
    background: #fff
}
body {
    -webkit-text-size-adjust: none;
    min-width: 320px;
    color: var(--txt);
    font-family: var(--f-main);
}
body.is_nav {
    overflow: hidden;
}
table {
    width: 100%
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
}
p, dd, dt, li, th, td, address {
    line-height: 1.85em;
    letter-spacing: 0.05em;
}
p {
    margin: 0 0 1.8em;
}
p:last-child {
    margin-bottom: 0
}
.bold {
    font-weight: bold;
}
.left {
    text-align: left
}
.right {
    text-align: right;
}
.auto {
    margin-left: auto;
    margin-right: auto;
}
.red {
    color: var(--red);
}
.txt_u {
    text-decoration: underline;
}
.f_big {
    font-size: 150%;
}
.f_sm {
    font-size: 80%;
}
.m0a {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
:root {
    --txt: #333333;
    --mcolor: #685748;
    --scolor: #234570;
    --sscolor: #5178A8;
    --container: 1230px;
    --gray: #e9e9e9;
    --blue: #003b7d;
    --red: red;
    --f-main: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
    --f-yumin: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝B", serif;
}
#wrapper {
    min-width: 1260px;
    overflow: hidden;
    margin: 0 auto
}
.inner {
    width: var(--container);
    margin: 0 auto;
    position: relative;
    max-width: 100%;
    padding: 0 15px;
}
/*==========================================================
                       H E A D E R
==========================================================*/
/* HAMBUGER BUTTON */
.hamburger {
    position: fixed;
    right: 0;
    font: inherit;
    display: block;
    overflow: visible;
    margin: 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0;
    z-index: 101;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    background: url("../images/icon_menu.png")#47332F no-repeat center top 16px/41px;
    border-radius: 5px 0px 0px 5px;
    pointer-events: auto;
}
.hamburger-box {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 24px
}
.hamburger-inner {
    position: relative;
}
.hamburger-inner:before {
    position: absolute;
    content: "MENU";
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    left: -8px;
    right: 0;
    margin: 0 auto;
    text-align: center;
    display: table;
    top: 15px;
}
.hamburger.is_active .hamburger-inner:before {
    content: "CLOSE";
}
.hamburger.is_active {
    background: url("../images/icon_close.png")#47332F no-repeat center top 20px/39px;
}
/* NAV */
nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 475px;
    overflow: auto;
    z-index: 100;
    display: none;
    background: url("../images/bg_menu.jpg") no-repeat center top/cover;
    border-radius: 0 0 20px 10px;
    pointer-events: visible;
}
nav .inner {
    padding: 0;
}
header {
    position: relative;
    z-index: 9;
}
h1 {
    font-size: 14px;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 10px 0;
    max-width: 1000px;
    letter-spacing: 0.05em;
}
.h_box {
    width: 100%;
    position: fixed;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 0 0 0 10px;
    pointer-events: none;
}
.h_left, .h_box, h1 {
    transition: all 0.3s;
}
.h_left {
    pointer-events: auto;
}
.h_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 22px 15px 0 142px;
    transition: all 0.3s;
    pointer-events: none;
}
.h_contact {
    display: flex;
    align-items: center;
}
.h_contact > p {
    margin-bottom: 0;
}
.h_contact > p:not(:last-child) {
    margin-right: 20px;
}
.h_contact_mail a {
    color: #FFF;
    font-weight: bold;
    text-align: center;
    background-color: var(--mcolor);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 60px;
    position: relative;
}
.h_contact_mail a span {
    position: relative;
    z-index: 2;
    font-size: 20px;
    display: inline-block;
    padding-left: 30px;
}
.h_contact_mail a span::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 0;
    top: calc(50% - 10px);
    background: url('../images/ic_h_mail.png') no-repeat center /cover;
}
.h_contact_tel a {
    font-size: 28px;
    color: #332829;
    font-weight: bold;
    padding-left: 25px;
    position: relative;
    line-height: 1;
    display: block;
}
.h_contact_tel .time {
    font-size: 12px;
    display: block;
    line-height: 1.6;
    text-align: right;
}
/*==========================================================
                  M A I N    V I S U A L
==========================================================*/
main {
    position: relative;
    z-index: 2;
}
.mv {
    position: relative;
    padding: 0;
    height: 1070px;
    z-index: 2;
}
.mv:before {
    position: absolute;
    content: "";
    background: url("../images/main_pc.png") no-repeat center top/1920px;
    width: 1920px;
    height: 1070px;
    left: calc(50% - 960px);
    top: 0;
    pointer-events: none;
}
.mv_txt {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: auto;
    left: 0;
    top: 297px;
}
.mv_img {
    position: absolute;
    left: 653px;
    top: -167px;
}
.mv_txt h2 {
    font-size: 40px;
    letter-spacing: 0.2em;
    color: #000;
    display: flex;
    flex-direction: column;
    line-height: 2;
    padding-left: 142px;
}
.mv_txt h2 .sm {
    position: relative;
}
.mv_txt h2 .let1 {
    top: 1px;
    left: -1px;
    font-size: 90%;
}
.mv_txt h2 .let2 {
    left: 0;
    top: -7px;
    position: relative;
}
.mv_txt h2 .mid {
    font-size: 120%;
    letter-spacing: 0.2em;
}
.mv_txt h2 .lg {
    color: var(--sscolor);
    font-size: 58px;
    line-height: 1.489;
    font-weight: 600;
    letter-spacing: 0.2em;
    position: relative;
    top: -7px;
}
.mv_list {
    display: flex;
    width: 571px;
    margin-left: 143px;
    margin-top: 18px;
}
.mv_list li {
    height: 48px;
    width: 284px;
    border: 1px var(--mcolor) solid;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #00367B;
    font-family: var(--f-yumin);
    padding-top: 2px;
    letter-spacing: 0.1em;
}
.mv_list li:not(:last-child) {
    margin-right: 25px;
}
.mv_list li.item1 {}
.mv_list li.item2 {
    width: 263px;
}
.mv:after {
    background: url("../images/curve.png") no-repeat center top/1920px;
    left: calc(50% - 963px);
    width: 1923px;
    height: 159px;
    bottom: -80px;
    z-index: 3;
}
.box_news {
    position: absolute;
    width: 890px;
    height: 154px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0 102px 102px 0;
    left: 0;
    top: 472px;
}
.box_news_tt {
    position: absolute;
    left: 57px;
    top: -23px;
}
.box_news .wrap, .box_news_load dl, .box_news_load dl dt {
    display: flex;
}
.box_news_load dl {
    width: 100%;
}
.box_news_load dl:not(:last-child) {
    margin-bottom: 24px;
}
.box_news_load dl dt {
    margin-right: 31px;
}
.box_news_load dl dt .cate {
    min-width: 94px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px #919191 solid;
    margin-right: 16px;
}
.box_news_load dl dt .date {
    position: relative;
    top: 1px;
    letter-spacing: 0em;
}
.box_news_load dl dd {
    padding-top: 2px;
    letter-spacing: 0em;
    white-space: nowrap;
    width: calc(100% - 475px);
    overflow: hidden;
    text-overflow: ellipsis;
}
.box_news_load dl dd a {
    text-underline-offset: 4px;
}
.box_news .wrap .btn {
    position: absolute;
    right: 71px;
    top: 52px;
}
.box_news .wrap {
    padding: 31px 15px 15px 56px;
}
.box_news_load {
    width: 100%;
}
/*==========================================================
                M A I N    C O N T E N T
==========================================================*/
/* DEFAULT TITLE */
.ttl_h2 {
    font-family: var(--f-yumin);
}
/* DEFAUTL NAME BUTTON */
.btn.btn_sm a {
    width: 166px;
    height: 49px;
    padding-right: 23px;
    padding-top: 2px;
    background-position: right 28px top 19px;
}
.btn a {
    width: 268px;
    height: 49px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/arrow_w.png') no-repeat right 46px top 19px /8px var(--mcolor);
    font-size: 16px;
    color: #fff;
    letter-spacing: 0.05em;
    padding-top: 2px;
    padding-right: 20px;
    font-weight: 500;
}
.btn.lg a {
    background-position: right 47px center;
    width: 454px;
    height: 53px;
}
.btn.center a {
    margin-left: auto;
    margin-right: auto;
}
.btn_box:not(:last-child) {
    margin-bottom: 30px;
}
.btn_box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.btn_box .btn {
    margin: 10px;
}
/*============= SEC01 ==============*/
.sec01 {
    position: relative;
    z-index: 1;
    top: -65px;
    padding-top: 200px;
    padding-bottom: 110px;
    margin-bottom: -65px;
}
.sec01:before, .mv:after {
    position: absolute;
    content: "";
}
.sec01:before {
    background: url("../images/idx_bg1.jpg") no-repeat center top/1920px;
    width: 1920px;
    height: 951px;
    left: calc(50% - 960px);
    top: 0;
}
.sec01_en {
    text-align: center;
    margin-bottom: 39px;
    padding-right: 4px;
}
.sec01_ttl {
    text-align: center;
    font-size: 38px;
    color: #fff;
    letter-spacing: 0.1em;
    margin-bottom: 49px;
}
.sec01_ttl .lg {
    font-size: 48px;
    letter-spacing: 0.1em;
}
.sec01_txt {
    max-width: 850px;
    margin: 0 auto 42px;
}
.sec01_txt p {
    color: #fff;
}
.sec01_box dl {
    display: flex;
    position: relative;
    align-items: center;
}
.sec01_box dl dt {
    margin-right: 50px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}
.sec01_box dl dt:before {
    position: absolute;
    content: "";
    left: -44.5px;
    top: -44.5px;
    background: url("../images/dropshadow.png") no-repeat center top/236px;
    width: 236px;
    height: 236px;
    z-index: -1;
}
.sec01_box_w {
    width: 592.6px;
    height: 94px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 5px;
    padding-left: 5px;
}
.item1 .sec01_box_w:before {
    background: url("../images/bb_w1.png") no-repeat center top;
    left: -18px;
    top: 0;
}
.item2 .sec01_box_w:before {
    background: url("../images/bb_w2.png") no-repeat center top;
    left: 0;
    top: 0;
}
.item2 .sec01_box_w {
    padding-top: 6px;
    padding-right: 6px;
}
.sec01_box_w:before {
    position: absolute;
    content: "";
    width: 610px;
    height: 94px;
}
.sec01_box {
    max-width: 1200px;
    margin: 0 auto;
}
.sec01_box dl.item1 {
    left: 60px;
}
.sec01_box dl.item2 {
    left: -59px;
    flex-direction: row-reverse;
    top: 8px;
}
.sec01_box dl.item2 dt {
    margin-right: 0;
    margin-left: 50px;
}
.sec01_box_w p {
    font-size: 24px;
    font-weight: 500;
}
.sec01_box_w p .bold {}
.point {
    position: relative;
    padding-top: 5px;
}
.point:before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    left: 0;
    right: 0;
    top: -1px;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto;
}
.sec01_box dl.item2 .point {
    padding-top: 8px;
}
.step_down {
    margin: 0 auto 25px;
    background: url("../images/arrow_down.png") no-repeat center top/800px;
    width: 800px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    letter-spacing: 0.1em;
    font-family: var(--f-yumin);
    position: absolute;
    left: 0;
    right: 0;
    bottom: -190px;
    padding-bottom: 17px;
    z-index: 9;
}
.sec01_box_con {
    position: relative;
    height: 320px;
    top: 80px;
    padding-top: 160px;
}
.sec01_box_con .point:before {
    width: 7px;
    height: 7px;
    left: -7px;
    top: -14px;
}
.sec01_box_con:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg2.jpg") no-repeat center top/1920px;
    width: 1920px;
    height: 351px;
    left: calc(50% - 960px);
    top: 0;
}
.sec01_box_con h3 {
    text-align: center;
    color: #fff;
    font-family: var(--f-yumin);
    font-size: 34px;
    position: relative;
    letter-spacing: 0.1em;
    line-height: 1.85em;
}
.sec01_box_con h3 .point {
    font-weight: bold;
    font-size: 40px;
    letter-spacing: 0.1em;
}
/*============= SEC02 ==============*/
.sec02 {
    color: #fff;
    position: relative;
    background: linear-gradient(#a0b7d5 0%, #607590 68.36%, #566b85 100%);
    padding-top: 449px;
    padding-bottom: 120px;
}
.sec02:before, .sec02:after, .sec02 .inner:before {
    position: absolute;
    content: "";
}
.sec02 .inner:before {
    background: url("../images/idx_blur.png") no-repeat right top;
    width: 1105px;
    height: 1242px;
    right: calc(50% - 960px);
    top: 120px;
    mix-blend-mode: soft-light;
    z-index: 9;
    opacity: 0.1;
    pointer-events: none;
}
.sec02:before {
    background: url("../images/idx_bg3.jpg") no-repeat center top/1920px;
    width: 1920px;
    height: 4064px;
    left: calc(50% - 960px);
    top: 0;
}
.sec02:after {
    background: url("../images/line.png") repeat-y center top/2px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -60px;
    height: 120px;
    z-index: 9;
}
.sec02_en {
    position: absolute;
    left: 0px;
    top: 118px;
    mix-blend-mode: multiply;
}
.sec02_ttl {
    text-align: center;
    font-size: 38px;
    line-height: 1.7;
    letter-spacing: 0.1em;
    margin-bottom: 82px;
}
.sec02_ttl .lg {
    font-size: 126%;
    font-weight: 600;
    letter-spacing: 0.1em;
}
.sec02_box1 > div {
    display: flex;
}
.sec02_box1 > div:not(:last-child) {
    margin-bottom: 108px;
}
.sec02_box1 > div .box_img {
    flex-shrink: 0;
    position: relative;
    margin-left: -362px;
    margin-right: 110px;
}
.sec02_box1 > div:first-child .box_img {
    position: relative;
}
.sec02_box1 > div:first-child .box_img:before {
    position: absolute;
    content: "";
    background: url("../images/line.png") repeat-y center top;
    background-size: 2px auto;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 136px;
    width: 2px;
    bottom: -107px;
}
.sec02_box1 > div .box_img .tt {
    position: absolute;
    display: flex;
    font-family: var(--f-yumin);
    right: 30px;
    top: -20px;
    flex-direction: column-reverse;
    align-items: flex-start;
}
.sec02_box1 > div .box_img .tt span {
    background: #234570;
    width: 78px;
    padding: 26px 5px 17px;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 51px;
    letter-spacing: 0.25em;
}
.sec02_box1 > div.item2 .box_img .tt span:nth-child(1) {
    letter-spacing: 0.28em;
}
.sec02_box1 > div .box_img .tt span:not(:last-child) {
    margin-right: 21px;
}
.sec02_box1 > div .box_con {
    width: 600px;
    flex-shrink: 0;
    position: relative;
    padding-top: 106px;
}
.sec02_sub_ttl {
    font-size: 30px;
    font-family: var(--f-yumin);
    position: relative;
    line-height: 1.8;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}
.sec02_sub_ttl .bold {
    font-weight: 600;
}
.round_com1 {
    position: absolute;
    width: 160px;
    height: 160px;
    background: #47332F;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 50%;
    right: -31px;
    top: 0px;
    font-family: var(--f-yumin);
    font-size: 20px;
    line-height: 1.65;
}
.round_com1 .sm {
    font-size: 16px;
}
.round_com1:before {
    position: absolute;
    content: "";
    left: 5px;
    top: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 1px #887D73 solid;
    z-index: auto;
}
.sec03_round {
    width: 140px;
    height: 140px;
    left: -47px;
    right: auto;
    top: -17px;
    letter-spacing: 0em;
}
.sec03_round .line2 {
    letter-spacing: -0.1em;
    position: relative;
    left: 0px;
    top: 2px;
}
.sec02_bnr {
    width: 1200px;
    border-radius: 10px;
    border: 1px solid #f3f9ff;
    margin-top: 116px;
    padding: 30px 70px 30px 450px;
    margin-bottom: 100px;
    position: relative;
}
.sec02_bnr:before, .sec02_bnr:after {
    position: absolute;
    content: "";
}
.sec02_bnr:before {
    background: url("../images/idx_img_05_pc.png") no-repeat left top/345px;
    width: 345px;
    height: 280px;
    left: 80px;
    top: 0;
    mix-blend-mode: soft-light;
}
.sec02_bnr:after {
    width: 64px;
    height: 64px;
    background: #ffaa9c;
    opacity: 0.35;
    filter: blur(10px);
    left: 270px;
    bottom: 27px;
    border-radius: 50%;
    display: none;
}
.sec02_bnr_tt {
    font-size: 30px;
    font-family: var(--f-yumin);
    line-height: 1.85em;
}
.sec02_bnr_tt span {
    position: relative;
    letter-spacing: 0.1em;
}
.sec02_bnr_tt span:before {
    position: absolute;
    content: "";
    width: 150px;
    height: 1px;
    background: #ABBBCB;
    right: -170px;
    top: 18px;
}
.sec02_bnr_txt {
    font-size: 20px;
    font-weight: 500;
}
.sec02_box2 {
    position: relative;
    z-index: 1;
    padding-top: 97px;
    margin-bottom: 96px;
}
.sec02_box2:before {
    position: absolute;
    content: "";
    width: 4000px;
    height: 100%;
    border-radius: 20px 0px 0px 20px;
    left: -190px;
    top: 0;
    /* background: transparent;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.08);*/
    background: linear-gradient(to bottom, rgba(102, 123, 152, 1) 0%, rgba(84, 105, 134, 1) 50%, rgba(73, 94, 121, 1) 100%);
    z-index: -1;
}
.sec02_item_ttl {
    text-align: center;
    font-family: var(--f-yumin);
    margin-bottom: 13px;
    font-size: 30px;
    letter-spacing: 0.1em;
    position: relative;
    display: table;
    margin: 0 auto 69px;
    max-width: 518px;
}
.sec02_item_ttl:before, .sec02_item_ttl:after {
    position: absolute;
    content: "";
    height: 1px;
    width: 100%;
    background: #ABBBCB;
}
.sec02_item_ttl:before {
    left: 0;
    top: 3px;
}
.sec02_item_ttl:after {
    left: 0;
    bottom: -6px;
}
.sec02_item_ttl .sm {
    font-size: 22px;
}
.sec02_item_ttl .num {
    font-size: 62px;
}
.sec02_item {
    display: flex;
    flex-wrap: wrap;
}
.sec02_item > li {
    width: 540px;
    display: flex;
    position: relative;
    margin-bottom: 79px;
}
.sec02_item > li.item2, .sec02_item > li.item4 {
    flex-direction: row-reverse;
}
.sec02_item li:not(:nth-child(2n)) {
    margin-right: 119px;
}
.sec02_item > li .img {
    margin-bottom: 23px;
}
.sec02_item > li .tt1 {
    font-family: var(--f-yumin);
    font-size: 66px;
    line-height: 1.21;
    margin-bottom: 0;
    width: 72px;
    letter-spacing: 0.22em;
    margin-right: 55px;
    position: relative;
    padding-top: 7px;
}
.sec02_item > li .tt1:before, .sec02_item > li .tt1:after {
    position: absolute;
    content: "";
}
.sec02_item > li.item1 .tt1:after {
    background: url("../images/line_pc1.png") no-repeat left top;
    width: 16px;
    height: 325px;
    right: -25px;
    top: -1px;
}
.sec02_item > li.item2 .tt1:after {
    background: url("../images/line_pc2.png") no-repeat left top;
    width: 17px;
    height: 245px;
    left: -31px;
    top: -1px;
}
.sec02_item > li.item3 .tt1:after {
    background: url("../images/line_pc3.png") no-repeat left top;
    width: 16px;
    height: 325px;
    right: -25px;
    top: -1px;
}
.sec02_item > li.item4 .tt1:after {
    background: url("../images/line_pc4.png") no-repeat left top;
    width: 16px;
    height: 432px;
    left: -31px;
    top: -1px;
}
.sec02_item > li.item2 .tt1, .sec02_item > li.item4 .tt1 {
    margin-right: 0;
    margin-left: 55px;
    right: -6px;
}
.sec02_item > li.item4 .tt1 {
    letter-spacing: 0.08em;
}
.sec02_item > li.item4 .tt1 .sm {
    font-size: 84%;
    letter-spacing: 0.265em;
    margin-top: 6px;
}
.sec02_item > li .tt2 {
    display: flex;
    align-items: center;
    padding-left: 4px;
    position: relative;
}
.sec02_item > li.item2 .tt2 {
    left: -7px;
}
.sec02_item > li.item3 .tt2 {
    left: -4px;
}
.sec02_item > li.item4 .tt2 {
    padding-left: 0;
    left: -4px;
}
.sec02_item > li .tt2 .txt {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0.05em;
}
.sec02_item > li .tt2 .num {
    margin-right: 30px;
    flex-shrink: 0;
    margin-bottom: 0;
}
.sec02_item > li.item2 .tt2 .num {
    margin-right: 21px;
}
.sec02_item > li.item3 .tt2 .num {
    margin-right: 22px;
}
.sec02_item > li.item4 .tt2 .num {
    margin-right: 20px;
}
.sec02_pickup {
    width: 1200px;
    height: 370px;
    border-radius: 20px;
    border: 1px solid #f3f9ff;
    background: url("../images/idx_map_bg_pc.png") no-repeat center top 26px;
    padding: 64px 0 0;
    margin-bottom: 78px;
}
.sec02_pic_tt {
    text-align: center;
    font-family: var(--f-yumin);
    font-size: 30px;
    line-height: 1.8;
    margin-bottom: 42px;
    letter-spacing: 0.1em;
}
.sec02_pic_txt {
    max-width: 850px;
    margin: 0 auto;
}
/*============= SEC03 ==============*/
.sec03 {
    position: relative;
    padding-top: 139px;
    padding-bottom: 175px;
}
.sec03:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg4.jpg") no-repeat center top/1920px;
    left: calc(50% - 960px);
    top: 0;
    height: 100%;
    width: 1920px;
}
.sec03_wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 117px;
}
.sec03_g {
    flex-shrink: 0;
    margin-right: 50px;
}
.sec03_txt {
    max-width: 450px;
    padding-top: 108px;
}
.sec03_ttl {
    font-size: 34px;
    letter-spacing: 0.1em;
    line-height: 1.8;
}
.sec03_ttl .num {
    font-size: 54px;
    line-height: 1;
}
.sec03_item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 70px;
}
.sec03_item > div {
    position: relative;
    width: 360px;
    height: 650px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
}
.sec03_item > div:not(:last-child):before {
    position: absolute;
    content: "";
    background: url("../images/icon_plus.png") no-repeat center top/33px;
    width: 33px;
    height: 33px;
    right: -45px;
    top: calc(50% + 2px);
}
.sec03_en {
    margin-bottom: 50px;
}
.sec03_spec_tt {
    position: absolute;
    left: 70px;
    top: -59px;
    background: url("../images/path_blue.png") no-repeat center bottom/218px;
    color: #00367B;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 12px;
}
.sec03_ttl2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--f-yumin);
    line-height: 1.65;
    letter-spacing: 0.05em;
    margin-bottom: 7px;
    min-height: 75px;
}
.sec03_ttl2 .sm {
    font-size: 16px;
    position: relative;
    left: 1px;
}
.sec03_ttl2 .lg {
    font-size: 30px;
    letter-spacing: 0.05em;
}
.sec03_img {
    margin-bottom: 22px;
}
.item2 .sec03_ttl2 .lg {
    margin-top: 13px;
}
.item3 .sec03_ttl2 .lg {
    margin-top: 12px;
}
.sec03_txt2 {
    padding: 0 23px 0 23px;
}
.sec03_txt2 p {
    line-height: 1.82;
}
.sec03_ttl_lg {
    text-align: center;
    color: #00367B;
    font-size: 40px;
    margin-bottom: 76px;
    font-family: var(--f-yumin);
    letter-spacing: 0.15em;
}
.sec03_ttl_lg .sm {
    font-size: 85%;
    letter-spacing: 0.15em;
}
/*============= SEC04 ==============*/
.sec04 {
    background: #FFFAEE;
    position: relative;
    margin-top: 119px;
    margin-bottom: 12px;
}
.sec04 .inner {
    z-index: 1;
}
.sec04:before {
    position: absolute;
    content: "";
    background: url("../images/curve_yl.png") no-repeat center top/1920px;
    height: 327px;
    left: calc(50% - 960px);
    top: -170px;
    width: 1920px;
}
.sec04_item {
    display: flex;
}
.sec04_item .item_l {
    flex-shrink: 0;
    position: relative;
    margin-left: -361px;
    margin-right: 87px;
}
.sec04_item .item_r {
    padding-top: 13px;
}
.sec04_ttl {
    font-family: var(--f-yumin);
    font-size: 34px;
    line-height: 1.8;
    letter-spacing: 0.1em;
    margin-bottom: 27px;
}
.sec04_txt p {}
.sec04_en {
    margin-bottom: 33px;
    padding-left: 3px;
}
.sec04_box {
    display: flex;
}
.sec04_box .item1 {
    width: 555px;
    padding-top: 99px;
    margin-left: 8px;
}
.sec04_box .item2 {
    position: relative;
    width: 623px;
    height: 522px;
}
.sec04_box .item2:before {
    position: absolute;
    content: "";
    background: url("../images/idx_img_14_pc.png") no-repeat center top/755px;
    width: 755px;
    height: 660px;
    right: -392px;
    top: -68px;
}
.sec04_list {
    position: absolute;
    width: 100%;
    height: 280px;
    top: 142px;
    left: 36px;
}
.sec04_list li {
    position: absolute;
    height: 46px;
    font-size: 20px;
    color: #fff;
    border-radius: 23px;
    background: #919191;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2px;
}
.sec04_list li:before {
    position: absolute;
    content: "";
    background: url("../images/point_brush.png") no-repeat center/20px;
    right: 60px;
    bottom: -21px;
    width: 20px;
    height: 16px;
}
.sec04_list li.sub1 {
    width: 336px;
    left: 0;
    top: 0;
}
.sec04_list li.sub2 {
    width: 273px;
    left: 266px;
    top: 78px;
}
.sec04_list li.sub3 {
    width: 312px;
    left: 24px;
    top: 157px;
}
.sec04_list li.sub4 {
    width: 357px;
    left: 266px;
    top: 235px;
}
.sec04_box_ttl {
    display: flex;
    flex-direction: column;
    font-family: var(--f-yumin);
    letter-spacing: 0.05em;
    margin-bottom: 78px;
    align-items: flex-start;
}
.sec04_box_ttl .sm {
    font-size: 20px;
    letter-spacing: 0.1em;
    margin-bottom: -21px;
    background: url("../images/path_blue2.png") no-repeat left center/379px;
    padding-bottom: 62px;
    padding-left: 5px;
}
.sec04_box_ttl .lg {
    font-size: 30px;
    margin-bottom: 11px;
}
.sec04_box_ttl .lg .style {
    font-size: 38px;
    font-weight: 600;
    color: #00367B;
    letter-spacing: 0.1em;
}
.sec04_box_ttl .mid {
    font-size: 28px;
    letter-spacing: 0.1em;
}
.sec04_box .item1 .btn {
    margin-left: -9px;
}
/*============= SEC05 ==============*/
.sec05 {
    height: 900px;
    position: relative;
}
.sec05 {
    padding: 0 30px;
}
.sec05:before {
    background: url("../images/idx_bg5.png") no-repeat center top/1840px;
}
.sec05_en {
    text-align: center;
    margin-bottom: 16px;
}
.sec05_txt {
    max-width: 850px;
    margin: 0 auto 49px;
}
/*============= SEC06 ==============*/
.sec06 {
    padding-top: 140px;
    padding-bottom: 114px;
}
.sec06_en, .sec06_ttl {
    text-align: center;
}
.sec06_ttl {
    font-size: 34px;
    letter-spacing: 0.1em;
    margin-bottom: 69px;
}
.sec06_en {
    margin-bottom: 40px;
}
.sec06_item, .sec06_item > div .sec06_box {
    display: flex;
}
.sec06_item > div:not(:last-child) {
    margin-right: 48px;
}
.sec06_sub_ttl {
    color: #fff;
    background: #6F94C4;
    border-radius: 24px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    padding: 7px 0 6px;
    width: 100%;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}
.sec06_item > div {
    width: 576px;
    position: relative;
}
.sec06_box {
    justify-content: space-between;
}
.sec06_item > div:not(:last-child):before {
    position: absolute;
    content: "";
    background: url("../images/arrow_step.png") no-repeat right top/16px;
    width: 16px;
    height: 43px;
    right: -33px;
    top: calc(50% + 12px);
}
.sec06_item {
    margin-bottom: 40px;
}
.sec_acc {
    display: flex;
    margin: 0px auto 56px;
    flex-direction: column;
    align-items: center;
    border: 1px #6F94C4 solid;
    max-width: 800px;
    border-radius: 5px;
}
.sec_acc_tt {
    text-align: center;
    width: 800px;
    height: 38px;
    line-height: 39px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
    padding-top: 1px;
    font-weight: 500;
    color: #6F94C4;
    letter-spacing: 0.1em;
    padding-left: 5px;
    border-radius: 5px;
}
.sec_acc_tt.open {
    margin-bottom: 49px !important;
}
.sec_acc_tt .close, .sec_acc_tt.open .open {
    display: none;
}
.sec_acc_tt.open .close {
    display: block;
}
.sec_acc_tt.open:before {
    right: 0;
}
.sec_acc_tt:before, .sec_acc_tt:after {
    position: absolute;
    content: "";
    width: 13px;
    height: 1px;
    background: #6F94C4;
    right: 54px;
    top: calc(50% - 0px);
    transition: all 0.3s;
}
.sec_acc_tt:after {
    width: 1px;
    height: 13px;
    right: 60px;
    top: calc(50% - 6px);
}
.sec_acc_tt.open:after {
    transform: rotate(90deg);
    opacity: 0;
}
.sec_acc_wrap {
    padding: 28px 49px 29px 49px;
    display: none;
}
.sec_acc_wrap dl {
    display: flex;
    border-bottom: 1px solid #dfe3e8;
    padding: 24px 0px 23px 0px;
    align-items: center;
}
.sec_acc_wrap dl dt {
    width: 80px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #6F94C4;
    border-radius: 15px;
    margin-right: 30px;
    color: #fff;
    flex-shrink: 0;
    padding-top: 1px;
}
.sec_acc_wrap dl dd {
    flex-grow: 1;
    line-height: 1.8;
}
.sec_acc_wrap dl.sub4 dt, .sec_acc_wrap dl.sub5 dt, .sec_acc_wrap dl.sub6 dt {
    width: 90px;
}
.sec_acc_wrap dl.sub7 dt {
    width: 150px;
}
.sec_acc_wrap dl.sub1 {
    padding: 24px 0px 19px 0px;
}
.sec_acc_wrap dl.sub2 {
    padding: 24px 0px 23px 0px;
}
.sec_acc_wrap dl.sub5 {
    padding: 20px 0px 23px 0px;
}
.sec_acc_wrap dl.sub6 {
    padding: 18px 0px 17px 0px;
}
.sec_acc_wrap dl.sub7 {
    padding: 20px 0px 20px 0px;
}
/*============= SEC07 ==============*/
.sec07 {
    background: #F3F9FF;
    padding-top: 120px;
    padding-bottom: 91px;
}
.sec07_en {
    margin-bottom: 35px;
}
.sec07_item {
    display: flex;
}
.sec07_item .item1 {
    width: 600px;
    margin-right: 120px;
    padding-top: 14px;
}
.sec07_item .item2 {
    position: relative;
    margin-right: -360px;
}
.sec07_ttl {
    font-size: 34px;
    letter-spacing: 0.1em;
    line-height: 1.8;
    margin-bottom: 25px;
}
.sec07_txt {
    margin-bottom: 74px;
}
.box_group_btn {
    display: flex;
    justify-content: space-between;
}
.box_group_btn .btn a {
    height: 72px;
    line-height: 1.43;
    background-position: right 30px center;
}
.box_group_btn .btn_sub1 a {
    width: 304px;
}
.box_group_btn .btn_sub2 a {
    width: 253px;
}
/*============= SEC08 ==============*/
.sec08 {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
}
.sec08:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg6.png") no-repeat right top;
    width: 826px;
    height: 876px;
    bottom: 26px;
    right: calc(50% - 960px);
    z-index: -1;
}
.sec08 .inner {
    width: 100%;
    padding: 0;
}
.sec08_item {
    display: flex;
}
.sec08_item .item1 {
    flex-shrink: 0;
    position: relative;
    left: -7px;
}
.sec08_item .item2 {
    padding-top: 139px;
    padding-left: 75px;
}
.sec08_ttl {
    line-height: 1.8;
    font-size: 34px;
    letter-spacing: 0.1em;
    margin-bottom: 37px;
}
.sec08_item .item2 .wrap {
    max-width: 600px;
}
.sec08_ttl2 {
    font-size: 22px;
    font-family: var(--f-yumin);
    letter-spacing: 0.15em;
    margin-bottom: 21px;
    position: relative;
    line-height: 1.85em;
}
.sec08_ttl2:before {
    position: absolute;
    content: "";
    width: 394px;
    height: 1px;
    background: #98B6DC;
    top: 20px;
    right: 0;
}
.sec08_list {
    margin-bottom: 75px;
}
.sec08_list li {
    position: relative;
    padding-left: 20px;
    font-weight: 500;
    letter-spacing: 0em;
    margin-bottom: 3px;
}
.sec08_list li:before {
    position: absolute;
    content: "";
    width: 12px;
    height: 2px;
    background: #98B6DC;
    left: 0;
    top: 13px;
}
.sec08_en {
    margin-bottom: 34px;
    padding-left: 6px;
}
.sec08_txt {
    margin-bottom: 66px;
}
.sec08 .btn a {
    width: 252px;
}
.sec08_name {
    position: absolute;
    right: 41px;
    bottom: 153px;
    display: flex;
    flex-direction: column;
    font-family: var(--f-yumin);
    z-index: 9;
}
.sec08_name .sm {
    font-size: 18px;
    letter-spacing: 0.1em;
}
.sec08_name .mid {
    font-size: 22px;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}
.sec08_name .lg {
    font-size: 30px;
    letter-spacing: 0.15em;
    margin-left: 15px;
    position: relative;
    top: 4px;
}
.sec08_img {
    position: relative;
    z-index: 1;
}
.sec08_img:before {
    position: absolute;
    content: "";
    background: url("../images/idx_img_21.png") no-repeat right top/538px;
    width: 538px;
    height: 538px;
    right: 116px;
    bottom: 0;
    z-index: -1;
}
/*============= SEC09 ==============*/
.sec09 {
    position: relative;
    margin-top: -28px;
    margin-bottom: 12px;
}
.sec09_img_lg {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    margin-bottom: 138px;
}
.sec09_en {
    text-align: center;
    margin-bottom: 41px;
}
.sec09_ttl {
    text-align: center;
    margin-bottom: 69px;
    font-size: 34px;
    letter-spacing: 0.1em;
}
.sec09_item {
    display: flex;
    flex-wrap: wrap;
}
.sec09_item li {
    width: 525px;
    position: relative;
    margin-bottom: 100px;
}
.sec09_item li:not(:nth-child(2n)) {
    margin-right: 150px;
}
.sec09_img {
    position: relative;
    margin-bottom: 37px;
}
.sec09_img .sec09_num {
    position: absolute;
}
.sec09_item li.item1 .sec09_img .sec09_num {
    left: -28px;
    bottom: -28px;
}
.sec09_item li.item2 .sec09_img .sec09_num {
    left: -43px;
    bottom: -28px;
}
.sec09_item li.item3 .sec09_img .sec09_num {
    left: -40px;
    bottom: -28px;
}
.sec09_item li.item4 .sec09_img .sec09_num {
    left: -44px;
    bottom: -28px;
}
.sec09_ttl2 {
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-family: var(--f-yumin);
    text-align: center;
    margin-bottom: 25px;
}
.sec09 .btn {
    margin-top: 33px;
}
.sec09_item li.item2 .btn a {
    width: 252px;
}
/*============= SEC10 ==============*/
.sec10:before {
    background: url("../images/idx_bg8.jpg") no-repeat center top/1840px;
    height: 720px;
}
.sec10_en {
    text-align: center;
    margin-bottom: 32px;
}
.sec10.sec_contact {
    padding-top: 100px;
    padding-bottom: 100px;
    margin-top: 0;
}
.sec10 .sec_contact_ttl {
    letter-spacing: 0.1em;
    margin-bottom: 59px;
}
.sec10 .sec05_bnr a {
    background: rgba(255, 255, 255, 0.1);
}
/*============= SEC11 ==============*/
.sec11 {
    padding-top: 103px;
    padding-bottom: 95px;
}
.sec11_en {
    text-align: center;
    margin-bottom: 40px;
}
.sec11_ttl {
    letter-spacing: 0.1em;
    font-size: 34px;
    text-align: center;
    margin-bottom: 53px;
}
.sec11_tab {
    display: flex;
    margin-bottom: 51px;
    justify-content: center;
}
.sec11_tab li, .sec11_load .cate {
    font-size: 20px;
    font-family: var(--f-yumin);
}
.sec11_tab li {
    letter-spacing: 0.1em;
}
.sec11_tab li:not(:last-child) {
    margin-right: 54px;
}
.sec11_tab li a {
    color: #B1B1B1;
    padding-bottom: 8px;
    position: relative;
}
.sec11_tab li a:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: #6F94C4;
    left: 0;
    bottom: 0px;
    opacity: 0;
    transition: all 0.3s;
}
.sec11_tab li a.active:before {
    opacity: 1;
}
.sec11_tab li a.active {
    font-weight: 600;
    color: #333333;
    pointer-events: none;
}
.sec11_load dl {
    border-top: 1px #C8C8C8 solid;
    align-items: center;
    padding: 29px 15px 28px 16px;
    transition: all 0.3s;
    background: url("../images/arrow_gray.png") no-repeat right 15px center/10px;
}
.sec11_load dl:last-child {
    border-bottom: 1px #C8C8C8 solid;
}
.sec11_load dl, .sec11_load dd {
    display: flex;
}
.sec11_load dl dt, .sec11_load dl dd {
    padding-top: 1px;
}
.sec11_load dl dt {
    flex-shrink: 0;
    position: relative;
    width: 273px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 30px;
}
.sec11_load dd p {
    margin-bottom: 0;
}
.sec11_load dd {
    font-weight: 500;
    width: calc(100% - 210px);
    align-items: center;
}
.sec11_load dd a {
    text-underline-offset: 4px;
}
.sec11_load dd .date {
    font-size: 20px;
    margin-right: 30px;
    flex-shrink: 0;
}
.sec11_load dd .tt {
    font-size: 18px;
    width: calc(100% - 180px);
    position: relative;
    top: -2px;
}
.sec11_load dd .tt a {
    display: block;
    position: relative;
    top: 2px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    letter-spacing: 0em;
    text-underline-offset: 4px;
}
.sec11_load .cate {
    letter-spacing: 0em;
    margin-bottom: 0;
    margin-right: 25px;
    height: 30px;
    line-height: 25px;
    border: 1px solid #c8c8c8;
    padding: 3px 6px 5px 6px;
    flex-shrink: 0;
    text-align: center;
}
.sec11_load .date {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0em;
}
#sec11_box01-i .sec11_load .cate {
    min-width: 118px;
}
.sec11_wrap {
    margin: 0 auto 25px;
    background: #F6FBFF;
    border-radius: 20px;
    padding: 59px 100px 65px;
}
.sec11_load {
    margin-bottom: 44px;
    height: 281px;
}
.sec11 .btn a {
    width: 202px;
}
/*============= SEC CONTACT START==============*/
.sec_contact {
    position: relative;
    color: #fff;
    padding-top: 80px;
    border-radius: 20px;
    margin-top: 149px;
}
.sec_contact:before {
    position: absolute;
    content: "";
    width: calc(100% - 65px);
    border-radius: 20px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    top: 0;
    height: 100%;
}
.sec_contact_ttl {
    font-family: var(--f-yumin);
    letter-spacing: 0.1em;
    font-size: 34px;
    line-height: 1.8;
    display: table;
    margin: 0 auto 26px;
}
.sec_con {
    display: flex;
    margin: 0 auto 47px;
    position: relative;
    width: calc(100% + 50px);
    justify-content: center;
    left: -32px;
}
.sec_con li {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sec_con .box_tel1 {
    width: 426px;
}
.sec_con .box_tel1 .box_tel_tt {
    margin-left: 20px;
}
.sec_con .box_tel2 {
    width: 410px;
    position: relative;
}
.sec_con .box_tel2:before, .sec_con .box_tel2:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 167px;
    background: #fff;
}
.sec_con .box_tel2:before {
    left: -1px;
    top: 5px;
}
.sec_con .box_tel2:after {
    right: 0px;
    top: 5px;
}
.sec_con .box_tel3 {
    width: 410px;
}
.box_tel_tt {
    font-family: var(--f-yumin);
    letter-spacing: 0.15em;
    line-height: 1.8;
    font-size: 22px;
    margin-bottom: 13px;
    margin-left: 3px;
}
.sec_con li .txt {
    font-size: 15px;
    font-weight: 500;
    margin: 4px 0 10px;
    line-height: 2.25;
    text-align: center;
    letter-spacing: 0.0em;
    position: relative;
    left: 7px;
}
.sec_con li .tel_txt {
    font-size: 24px;
    font-weight: 500;
}
.sec_con li .tel_txt a {
    color: #fff;
}
.sec_con li .tel_txt span {
    font-size: 18px;
}
.sec_con li.box_tel1 .tel_txt a {
    position: relative;
    margin-left: 17px;
}
.sec_con li .box_btn {
    margin-bottom: 14px;
    margin-top: 5px;
}
.sec_con li .box_btn a {
    width: 299px;
    height: 63px;
    border-radius: 5px;
    background: #816115;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0em;
}
.sec_con li .box_btn.btn2 a {
    background: #8E7E5A;
}
.sec05_bnr a {
    width: 800px;
    height: 122px;
    margin: 0 auto;
    border: 1px #fff solid;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.sec05_bnr a .lg {
    font-size: 22px;
    margin-bottom: 12px;
    letter-spacing: 0em;
}
.sec05_bnr a .sm {
    font-size: 18px;
    letter-spacing: 0em;
}
/*============= SEC CONTACT END==============*/
.bor10 img {
    border-radius: 10px;
}
.bor10_r img {
    border-radius: 0px 10px 10px 0;
}
.bor10_l img {
    border-radius: 10px 0px 0px 10px;
}
.com_txt p {
    font-weight: 500;
}
@media screen and (min-width: 751px) {}
/*==========================================================
                        F O O T E R
==========================================================*/
footer {
    position: relative;
    z-index: 3;
}
address {
    padding: 20px 20px 34px;
    color: #fff;
    text-align: center;
    position: relative;
    letter-spacing: 0.087em;
}
.ft_top {
    position: relative;
    padding-top: 137px;
    margin-bottom: -302px;
}
.ft_top:before {
    position: absolute;
    content: "";
    background: url("../images/ft_top.png") no-repeat center top/1920px;
    left: calc(50% - 960px);
    top: 0;
    width: 1920px;
    height: 1241px;
}
.ft_link {
    position: relative;
    padding-top: 170px;
    margin-top: 200px;
    background: #47332f;
}
.ft_link .inner {
    z-index: 1;
    color: #fff;
    margin-top: 47px;
    padding-bottom: 123px;
    display: flex;
}
.under .ft_link .inner {
    padding-bottom: 65px;
}
.nav_link .inner {
    width: 1380px;
    display: flex;
    align-items: center;
    height: 100%;
}
.ft_link:before {
    position: absolute;
    content: "";
    background: url("../images/ft_bg.png") no-repeat center top/1920px;
    width: 1920px;
    height: 200px;
    left: calc(50% - 960px);
    top: -200px;
}
.ft_link .inner a {
    color: #fff;
}
.ft_big {
    font-size: 18px;
    font-family: var(--f-yumin);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
nav .ft_big, nav .ft_big a {
    color: #6F94C4;
    font-weight: 600;
}
nav .ft_big a {
    position: relative;
}
.ft_link1, .nav_link1 {
    width: 69px;
}
.ft_link2 {
    width: 376px;
}
.nav_link1 {
    width: 165px;
}
.nav_link2 {
    width: 397px;
    margin-right: 70px;
}
.nav_link3 {
    width: 748px;
}
.ft_link3 {
    width: 729px;
    position: relative;
    left: 25px;
}
.ft_link_wrap, .nav_link_wrap {
    display: flex;
    justify-content: space-between;
}
.ft_link_wrap ul li, .nav_link_wrap ul li {
    margin-bottom: 5px;
}
.ft_txt {
    text-align: center;
    font-size: 15px;
    line-height: 1.73;
    margin-bottom: 30px;
}
.ft_box {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.ft_link_wrap li a, .nav_link_wrap li a {
    letter-spacing: 0.05em;
    font-weight: 500;
    padding-left: 22px;
    position: relative;
}
.ft_link_wrap li a:before, .nav_link_wrap li a:before {
    position: absolute;
    content: "";
    width: 12px;
    height: 2px;
    background: #F3F9FF;
    left: 0px;
    top: 10px;
}
.nav_link_wrap li a:before {
    background: #6F94C4;
}
.ft_tt, .ft_logo, .ft_en {
    text-align: center;
}
.ft_en {
    margin-bottom: 24px;
}
.ft_tt {
    margin-bottom: 10px;
}
.ft_logo {
    margin-bottom: 74px;
}
.ft_box > li {
    width: 380px;
    background: #fff;
    border-radius: 10px;
    padding: 44px 20px 47px;
}
.ft_tt {
    font-size: 28px;
    font-family: var(--f-yumin);
    margin-bottom: 24px;
    letter-spacing: 0.15em;
    padding-left: 5px;
}
.ft_img {
    margin-bottom: 28px;
    text-align: center;
}
.ft_img img {
    border-radius: 10px;
}
.ft_map {
    padding: 0 4px;
    margin-bottom: 19px;
}
.sub1 .ft_map {
    margin-bottom: 47px;
}
.sub3 .ft_map {}
.sub3 .ft_add {
    padding-right: 21px;
    position: relative;
    left: 11px;
}
.sub3 .ft_map {
    margin-left: 11px;
}
.ft_map a {
    background: url("../images/icon_map.svg") no-repeat left top 5px/12px;
    display: inline-block;
    letter-spacing: 0em;
    padding-left: 16px;
}
.ft_add {
    line-height: 1.8;
    padding: 0 25px 0 3px;
    letter-spacing: 0em;
    margin-bottom: 2px;
    font-weight: 500;
}
.ft_note {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 41px;
    margin-left: 3px;
    letter-spacing: 0em;
}
.sub2 .ft_note {
    margin-bottom: 34px;
}
.sub3 .ft_note {
    margin-bottom: 63px;
}
.ft_note span {
    background: url("../images/icon_poly.svg") no-repeat left top 7px/11px;
    padding-left: 15px;
    margin-bottom: 3px;
    display: inline-block;
    letter-spacing: 0.05em;
}
.ft_calc {
    padding: 0 0px 0 3px;
    margin-bottom: 7px;
}
.ft_bt {
    background: #47332f;
}
.ft_txt1 {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.73;
    color: #fff;
    position: relative;
    max-width: 1200px;
    margin: 0 auto 35px;
}
.under .ft_txt1 {
    display: none;
}
.ft_txt1 p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.795;
}
.ft_box .sub1 {}
.ft_box .sub2 {}
.ft_box .sub3 {}
.ft_tel {
    font-weight: 500;
    text-align: center;
}
.ft_btn {
    margin-bottom: 27px;
}
.ft_tel a {
    font-size: 26px;
    letter-spacing: 0.05em;
}
.ft_tel a span {
    font-size: 20px;
}
.ft_btn a {
    width: 295px;
    height: 60px;
    border-radius: 5px;
    background: #816115;
    color: #fff;
    font-size: 19px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    letter-spacing: 0;
    padding-top: 3px;
}
.sub3 .ft_btn a {
    background: #8E7E5A;
}
/* BACK TO TOP */
.to_top {
    position: fixed;
    z-index: 9;
    width: 80px;
    height: 80px;
    bottom: 3px;
    right: 0px;
    cursor: pointer;
    transition: all .2s;
    opacity: 0;
    visibility: hidden
}
.to_top.show {
    transform: scale(1);
    opacity: 1;
    visibility: visible
}
.sec02_item > li .tt1 {
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: mixed;
    -moz-text-orientation: mixed;
    -ms-text-orientation: mixed;
    text-orientation: mixed;
}
/*.contact_fixed {
    position: fixed;
    right: 0;
    top: 90px;
    display: flex;
    flex-direction: column;
    z-index: 99;
    height: calc(100vh - 182px);
}
.contact_fixed > div {
    position: relative;
    margin-bottom: 10px;
    height: calc((100vh - 120px) / 3);
}
*/
.contact_fixed > div.active .boxcon {
    right: 0;
}
.contact_fixed .boxcon {
    position: absolute;
    top: 0;
    right: -460px;
    width: 420px;
    height: 100%;
    color: #fff;
    background: #6E5D36;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px 0 0 5px;
    padding: 30px 0 5px;
    transition: all 0.3s;
	writing-mode: horizontal-tb;
}
.contact_fixed2 .boxcon {
    background: #846D37;
}
.contact_fixed3 .boxcon {
    background: #8E7E5A;
}
.contact_fixed > div .tt {
    margin-bottom: 0;
    width: 80px;
    height: 100%;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px 0 0 5px;
    font-size: 20px;
    font-family: var(--f-yumin);
    letter-spacing: 0.38em;
}
.contact_fixed > div.contact_fixed1 .tt {
    background: #6E5D36;
}
.contact_fixed > div.contact_fixed2 .tt {
    background: #846D37;
}
.contact_fixed > div.contact_fixed3 .tt {
    background: #8E7E5A;
}
.contact_fixed .boxcon .sub_tt {
    text-align: center;
    font-size: 22px;
    font-family: var(--f-yumin);
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}
.contact_fixed .boxcon .sub_btn {
    margin: 17px 0 25px;
}
.contact_fixed .boxcon .sub_btn a {
    width: 260px;
    height: 56px;
    background: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 500;
    padding-top: 2px;
}
.contact_fixed .boxcon .sub_tel {
    color: #fff;
}
.contact_fixed .boxcon .sub_tel a {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
}
.contact_fixed .boxcon .sub_tel a span {
    font-size: 18px;
}
.contact_fixed .boxcon .sub_txt {
    text-align: center;
    line-height: 1.88;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 31px;
}
/* FIREFOX ONLY */
@-moz-document url-prefix() {
    .sec02_item_ttl {
        max-width: 525px;
    }
}
/* Safari 10.1+ (which is the latest version of Safari at this time) */
@media not all and (min-resolution: 0.001dpcm) {}
.contact_fixed {
    position: fixed;
}

/* ==========================================================
   Header banner 200×70（ハンバーガー左隣・当該用のみ）
   ========================================================== */
.header-right-group {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 101;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    pointer-events: auto;
}
.header-right-group .hamburger {
    position: relative;
    right: auto;
}
.header-banner-200x70__link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-decoration: none;
    color: inherit;
}
.header-banner-200x70__link:hover {
    opacity: 0.9;
}
.header-banner-200x70 {
    position: relative;
    width: 200px;
    min-width: 200px;
    height: 70px;
    min-height: 70px;
    background-color: #47332F;
    border-radius: 5px;
    flex-shrink: 0;
    display: block;
    box-sizing: border-box;
}
.header-banner-200x70__inner {
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background-color: #fff;
    border-radius: 3px;
}
.header-banner-200x70__inner2 {
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background-color: #47332F;
    background-image: url('../images/arrow_w.png');
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 8px auto;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
    padding: 0 28px 0 10px;
    box-sizing: border-box;
}
.header-banner-200x70__inner2::after {
    display: none;
}

/* 1800px超：ハンバーガーが80pxになるためバナー高さを合わせる */
@media screen and (min-width: 1801px) {
    .header-banner-200x70 {
        height: 80px;
        min-height: 80px;
    }
}

