@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);
}
table {
    width: 100%
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
}
p, dd, dt, li, th, td, address {
    line-height: 2em;
    letter-spacing: 0;
}
p {
    margin: 0 0 1.5em;
}
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: #297E80;
    --scolor: #2E5580;
    --sscolor: #2D8FBA;
    --yl: #C0B07D;
    --container: 1230px;
    --gray: #e9e9e9;
    --blue: #003b7d;
    --red: red;
    --f-main: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
    --f-nts: 'Noto Sans JP', sans-serif;
    --f-nsr: 'Noto Serif JP', serif;
    --f-yumin: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝B", serif;
}
#wrapper {
    min-width: 1260px;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1920px;
}
.inner {
    width: var(--container);
    margin: 0 auto;
    position: relative;
    max-width: 100%;
    padding: 0 15px;
}
/*==========================================================
                       H E A D E R
==========================================================*/
/* HAMBUGER BUTTON */
.hamburger {
    font: inherit;
    display: block;
    overflow: visible;
    margin: 0;
    padding: 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0;
    position: fixed;
    right: 40px;
    top: 40px;
    background: #fff;
    width: 80px;
    height: 80px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
    display: flex;
    justify-content: center;
    z-index: 999;
    padding-top: 18px;
    transform: translateY(0px);
    transition: all 0.3s;
}
.under .hamburger {
    top: 49px
}
.hamburger-box {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 24px
}
.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
    position: absolute;
    width: 33px;
    height: 2px;
    transition: all ease 0.15s;
    background-color: #333;
}
.hamburger-box .tt {
    position: relative;
    left: -8px;
    top: 31px;
    font-size: 16px;
    font-family: var(--f-yumin);
}
.hamburger-inner::after, .hamburger-inner::before {
    display: block;
    content: ""
}
.hamburger-inner::before {
    top: -11px;
}
.hamburger-inner::after {
    bottom: -11px;
}
.hamburger--3dxy .hamburger-box {
    perspective: 80px
}
.hamburger--3dxy .hamburger-inner {
    transition: transform .15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0 cubic-bezier(0.645, 0.045, 0.355, 1) .1s
}
.hamburger--3dxy .hamburger-inner::after, .hamburger--3dxy .hamburger-inner::before {
    transition: transform cubic-bezier(0.645, 0.045, 0.355, 1) .1s
}
.hamburger--3dxy.is_active .hamburger-inner {
    transform: rotateX(180deg) rotateY(180deg);
    background-color: transparent !important
}
.hamburger--3dxy.is_active .hamburger-inner::before {
    transform: translate3d(0, 12px, 0) rotate(45deg);
}
.hamburger--3dxy.is_active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg)
}
nav {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: none;
    background: url(../images/bg_menu.jpg) repeat center top;
}
nav .com_add, nav .com_add, nav .com_calc_txt {
    color: #fff;
}
nav .com_add {
    font-size: 16px;
    line-height: 1.5625;
    font-weight: 300;
    margin-bottom: 11px;
}
nav .box_contact {
    width: 522px;
    flex-wrap: wrap;
    margin-bottom: 22px;
    justify-content: space-between;
}
nav .box_contact p.btn_com {
    width: calc(50% - 6px);
    height: 70px;
    margin-bottom: 15px;
    margin-right: 10px
}
nav .box_contact p.btn_com:nth-of-type(2n) {
    margin-right: 0;
}
nav .box_contact p.btn_com a {
    border: 1px #fff solid;
    font-size: 20px;
    padding-top: 5px;
}
nav .box_contact p.btn_com a .sm {
    font-size: 16px;
    line-height: 1.2;
}
nav .ft_map_txt {
    padding-right: 10px;
    margin-bottom: 1px;
}
nav .ft_map_txt .tt, nav .ft_map_txt .ft_map_link a {
    font-weight: 300;
}
nav .ft_map_txt .ft_map_link {
    margin-top: 0;
}
nav .ft_map_txt .ft_map_link a, nav .com_tel, nav .com_tel a, nav .com_tel .tt {
    color: #fff;
}
nav .ft_map_txt .ft_map_link a {
    color: #fff;
    background: url(../images/icon_map_w.svg) no-repeat left center;
}
nav .com_tel .tt:before {
    background: url(../images/arrow_tel_w.svg) no-repeat center;
}
nav .nav_com {
    flex-direction: column;
    color: #fff;
}
nav .nav_com .big span {
    padding-bottom: 4px;
}
nav .nav_com .nav2 .big, nav .nav_com .nav3 .big {
    margin-bottom: 14px;
}
nav .nav_com .big {
    margin-bottom: 31px;
}
nav .nav_com ul li a {
    font-size: 16px;
    font-weight: 300;
}
nav.is_nav {
    display: block
}
nav .com_tel {
    background: none;
    border: 1px #fff solid;
    width: 526px;
    margin-bottom: 20px;
}
nav .nav_com .nav3 .nav_sub2, nav .nav_com .nav2 .nav_sub2 {
    position: relative;
}
nav .nav_com .nav3 .nav_sub2 {
    left: 23px;
}
nav .nav_com .nav2 .nav_sub2 {
    left: 52px;
}
nav .nav_com ul li {
    margin-bottom: 0px;
}
nav .nav_com .nav2 {
    width: 100%;
    margin-bottom: 30px;
}
nav .inner {
    width: 100%;
    max-width: 1315px;
    padding: 10px 10px 10px 10px;
    display: flex;
    height: 100%;
    align-items: center;
}
.nav_left {
    color: #fff;
    margin-right: 208px;
}
.nav_logo {
    margin-bottom: 50px;
}
.is_scroll .h_box {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-16px);
}
.is_scroll .h_box h1, .is_scroll .hamburger {
    transform: translateY(-16px);
}
header {
    position: relative;
    z-index: 9;
}
body.is_nav {
    overflow: hidden;
}
h1 {
    font-size: 12px;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 500px;
    letter-spacing: 0.05em;
    padding-top: 1px;
    margin-bottom: 16px;
    transform: translateY(0px);
    transition: all 0.3s;
    margin-right: -100px;
}
.h_box {
    width: 100%;
    position: fixed;
    transition: all 0.3s;
    background-color: rgba(255, 255, 255, 0);
    transform: translateY(0);
    max-width: 1920px;
}
.h_inner {
    display: flex;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    padding: 10px 130px 0px 40px;
    transition: all 0.3s;
}
.under .h_inner {
    padding-top: 19px;
}
.h_right {
    padding-top: 30px;
	transition: all 0.3s;
}
.h_contact {
    display: flex;
    align-items: center;
}
.h_contact > p {
    margin-bottom: 0;
}
.box_contact {
    display: flex;
    width: 920px;
}
.box_contact p.btn_com {
    width: calc(25% - 10px);
    height: 80px;
	
}
.box_contact p.btn_com:not(:last-of-type) {
    margin-right: 10px;
}
.box_contact p.btn_com a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: var(--f-yumin);
    color: #fff;
    line-height: 1.4;
    position: relative;
    font-size: 20px;
    padding-top: 5px;
}
.box_contact p.btn_com.btn1 a {
    padding-top: 4px;
}
.box_contact p.btn_com a:before {
    position: absolute;
    content: "";
    background: url("../images/arrow_right.svg") no-repeat right bottom;
    width: 12px;
    height: 12px;
    right: 5px;
    bottom: 5px;
}
.box_contact p.btn_com a .sm {
    font-size: 80%;
    line-height: 1.2;
}
.box_contact p.btn a .lg {
    font-size: 20px;
}
.box_contact p.btn1 a {
    background: #876700;
}
.box_contact p.btn2 a {
    background: #2E5580;
}
.box_contact p.btn3 a {
    background: #06C755;
}
/*==========================================================
                  M A I N    V I S U A L
==========================================================*/
main {
    position: relative;
    z-index: 2;
}
.mv {
    position: relative;
    padding: 0;
    height: 900px;
}
.mv:before {
    position: absolute;
    content: "";
    width: 1920px;
    height: 900px;
    background: url("../images/main_pc.jpg") no-repeat center top/1920px;
    left: calc(50% - 960px);
}
.mv .inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 65px;
}
.mv_txt {
    width: 1200px;
    height: 239px;
    position: relative;
    color: #fff;
    display: flex;
    justify-content: center;
    padding-top: 37px;
}
.mv_txt:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #7b7b7b;
    mix-blend-mode: multiply;
    left: 0;
    top: 0;
}
.mv_txt h2, .mv_list {
    position: relative;
    z-index: 1;
}
.mv_txt h2 {
    font-family: var(--f-yumin);
    font-size: 45px;
    line-height: 1.55;
    text-align: center;
    color: #fff;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
}
.mv_list {
    display: flex;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -49px;
}
.mv_list li {
    width: 240px;
    height: 100px;
    background: linear-gradient(to right, rgba(46, 85, 128, 1) 0%, rgba(23, 47, 73, 1) 100%);
    color: #fff;
    font-family: var(--f-yumin);
    font-size: 23px;
    letter-spacing: 0.07em;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.mv_list li.item1 {
    padding-top: 3px;
}
.mv_list li.item2 {
    padding-top: 3px;
}
.mv_list li.item3 {
    padding-top: 7px;
}
.mv_list li.item3 p {
    line-height: 1.39;
}
.mv_list li.item4 {
    padding-bottom: 2px;
}
.mv_list li:before {
    position: absolute;
    content: "";
    border: 1px #C0B07D solid;
    left: 2px;
    top: 2px;
    right: 2px;
    bottom: 2px;
}
.mv_list li:not(:last-child) {
    margin-right: 13px;
}
.mv_list li p {
    line-height: 1.2;
    letter-spacing: 0.05em;
}
.mv_list li p .space1 {
    margin: 0 0px 0 8px;
}
.mv_list li.item1 p, .mv_list li.item4 p {}
.mv_list li .sm {
    font-size: 18px;
}
.mv_list li .num {
    font-size: 30px;
    margin: 0 5px 0 3px;
}
.mv_list li.item4 {
    font-size: 20px;
}
/*SECTION1*/
.sec01 {
    position: relative;
    z-index: 1;
}
.sec01:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg_01.png") no-repeat right top;
    width: 1541px;
    height: 1035px;
    right: -445px;
    top: 350px;
    pointer-events: none;
}
.sec01_box1 {
    display: flex;
    margin-bottom: 24px;
}
.sec01_box1 li {
    width: 50%;
    position: relative;
}
.sec01_box1 li.item1 {
    height: 450px;
    color: #fff;
    top: -100px;
    padding-top: 82px;
}
.sec01_box1 li.item1:before, .sec01_box1 li.item1:after {
    position: absolute;
    content: "";
}
.sec01_box1 li.item1:before {
    background: url("../images/bg_green.jpg") no-repeat right top;
    width: 980px;
    height: 100%;
    right: 0;
    top: 0;
    z-index: -1;
}
.sec01_box1 li.item1:after {
    background: url("../images/idx_img_01_pc.png") no-repeat center top;
    width: 317px;
    height: 441px;
    right: 0;
    top: -20px;
}
.sec01_box1 li.item1 .wrap {
    width: 600px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
}
.sec01_map {
    width: 100%;
    height: 450px;
}
.sec01_map iframe {
    width: 100%;
    height: 100%;
}
.company_name {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
.company_name .lg {
    font-family: var(--f-yumin);
    font-size: 30px;
    line-height: 1;
    margin-bottom: 9px;
}
.company_name .sm {}
.company_txt {
    margin-bottom: 17px;
}
.company_txt p {
    margin-bottom: 0px;
    display: flex;
    line-height: 1.8;
    font-size: 15px;
}
.company_txt p .space1 {
    flex-shrink: 0;
}
.sec01_box2 {
    display: flex;
    margin-bottom: 0px;
    padding-right: 60px;
}
.sec01_box2 .ttl .en {
    margin-bottom: 48px;
}
.sec01_box2 .ttl .sm {
    margin-bottom: 3px;
}
.sec01_box2 .item1 {
    flex-shrink: 0;
    width: 545px;
}
.sec01_box2 .item2 {
    background: #fff;
    padding: 52px 35px 48px 15px;
    margin-top: 131px;
}
.sec01_box3 {
    display: flex;
    height: 500px;
}
.sec01_box3 li {}
.sec01_box3 li.item1 {
    position: relative;
    z-index: 1;
    padding-top: 49px;
    width: calc(50% - 48.5px);
    margin-right: 59px;
    padding-left: 30px;
}
.sec01_box3 li.item1:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg_13.jpg") no-repeat center top/cover;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}
.sec01_box3 li.item2 {
    width: 50%;
    padding-top: 13px;
}
.sec01_box3_en {
    display: flex;
    align-items: center;
    position: relative;
    font-family: var(--f-yumin);
    margin-bottom: 55px;
}
.sec01_box3_en .num {
    font-size: 80px;
    line-height: 1;
    color: #297e80;
    opacity: 0.15;
}
.sec01_box3_en .txt {
    position: absolute;
    left: 33px;
    font-size: 30px;
    color: #297e80;
    top: calc(50% - 13px);
}
.sec01_box3_ja {
    display: flex;
    flex-direction: column;
    font-family: var(--f-yumin);
    margin-bottom: 23px;
}
.sec01_box3_ja .sm {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 1px;
}
.sec01_box3_ja .lg {
    font-size: 35px;
}
.sec01_box4 .sec01_box3_ja .lg .green, .sec01_box3 .sec01_box3_ja .lg .green {
    font-size: 125.7%;
}
.sec01_box3_txt {
    max-width: 500px;
}
.sec01_box3_txt p {
    line-height: 1.8;
    letter-spacing: 0.05em;
}
.sec01_box4 {
    background: #297E80;
    color: #fff;
    display: flex;
    flex-direction: row-reverse;
    height: 675px;
}
.sec01_box4 .sec01_box3_en {
    margin-bottom: 56px;
}
.sec01_box4 .item1 {
    position: relative;
    z-index: 1;
    padding-top: 150px;
    right: -7px;
}
.sec01_box4 .item1:before {
    position: absolute;
    content: "";
    background: #51A2A2;
    width: calc(100% + 47px);
    height: calc(100% + 25px);
    right: 0;
    top: 0;
    clip-path: polygon(32.6% 0%, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
}
.sec01_box4 .item2 {
    margin-right: 43px;
    padding-top: 162px;
}
.sec01_box4 .item2 .wrap {
    padding-left: 2px;
}
.sec01_box4 .sec01_box3_en .num, .sec01_box4 .sec01_box3_en .txt {
    color: #fff;
}
.sec01_box4 .sec01_box3_ja .sm {
    margin-bottom: 0px;
    font-weight: 400;
}
.sec01_box4 .yl {
    color: #C0B07D;
}
.sec01_box4 .lg .yl {
    font-size: 125.7%;
}
.sec01_box4 .sec01_box3_ja {
    margin-bottom: 24px;
}
.sec01_box5 {
    position: relative;
    min-height: 1095px;
    margin-top: 25px;
    padding-top: 112px;
    padding-bottom: 154px;
}
.sec01_box5:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg_03.jpg") no-repeat center top;
    top: 0;
    left: calc(50% - 960px);
    width: 1920px;
    height: 100%;
}
.sec01_box5 .sec01_box3_en, .sec01_box5 .sec01_box3_ja {
    text-align: center;
}
.sec01_box5 .sec01_box3_ja {
    margin-bottom: 47px;
}
.sec01_box5 .sec01_box3_en {
    justify-content: center;
    margin-bottom: 47px;
}
.sec01_box5 .sec01_box3_en .txt {
    left: 0;
    top: calc(50% - 13px);
    right: 0;
}
.sec01_box5 .sec01_box3_ja .sm {
    font-weight: 400;
}
.sec01_box5 .sec01_box3_ja .lg {
    font-size: 44px;
}
.sec01_box5 .sec01_box3_ja .lg .mid {
    font-size: 79%;
}
.sec01_box5_item {
    display: flex;
    justify-content: center;
    margin-bottom: 46px;
}
.sec01_box5_item li:not(:last-child) {
    margin-right: 100px;
    position: relative;
}
.sec01_box5_item li:not(:last-child):before {
    position: absolute;
    content: "";
    background: url("../images/icon_x.svg") no-repeat center top;
    width: 54px;
    height: 54px;
    top: calc(50% - 32px);
    right: -76px;
}
.sec01_box5_txt {
    max-width: 800px;
    margin: 0 auto 100px;
}
.sec01_box5_txt p {
    letter-spacing: 0.05em;
    line-height: 1.8;
}
/*==========================================================
                M A I N    C O N T E N T
==========================================================*/
.yl {
    color: #EED175;
}
.green {
    color: #297E80;
}
.txt_com p {
    font-size: 15px;
}
/* DEFAULT TITLE */
.ttl {
    font-family: var(--f-yumin);
}
.ttl:not(:last-child) {
    margin-bottom: 30px;
}
.ttl .ja {
    font-size: 32px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
}
.ttl .en {
    font-weight: 300;
    font-size: 80px;
    line-height: 1;
    color: #297e80;
    margin-bottom: 0;
}
.ttl .sm {
    font-size: 26px;
    line-height: 1.34;
}
.ttl .num {
    font-size: 138%;
    color: #C0B07D;
    font-weight: 400;
}
.ttl .lg {
    font-size: 50px;
}
.ttl .lg .mid {
    font-size: 80%;
}
/* DEFAUTL NAME BUTTON */
.btn a {
    width: 340px;
    height: 60px;
    background: #297e80;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    font-family: var(--f-yumin);
    position: relative;
    padding-top: 2px;
}
.btn a:before {
    position: absolute;
    content: "";
    background: url(../images/arrow_right_sm.svg) no-repeat right bottom;
    width: 8px;
    height: 8px;
    right: 5px;
    bottom: 5px;
    transition: all 0.3s;
}
.sec15 .btn a:before {
    background: url("../images/arrow_right.svg") no-repeat right bottom;
    width: 12px;
    height: 12px;
}
.btn_blue1 a, .btn_blue2 a, .btn.btn_white a, .btn_yl a, .btn_blue3 a {
    width: 400px;
}
.btn_blue1 a {
    background: #2E5580;
}
.btn_blue2 a {
    background: #2D8FBA;
}
.btn_blue3 a {
    background: #297E80;
}
.btn_blue3.btn_blue3_sm a {
    width: 200px;
    height: 50px;
}
.btn.btn_white a {
    background: #fff;
    color: #171717;
}
.btn.btn_white a:before {
    background: url(../images/arrow_right_sm_b.svg) no-repeat right bottom;
}
.btn_yl a {
    background: #C0B07D;
}
.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;
}
.btn.btn_sm a {
    border: 1px #fff solid;
    width: 160px;
    height: 40px;
    font-size: 16px;
}
.btn.btn_sm a:before {
    right: 4px;
    bottom: 4px;
}
/*============= SEC01 ==============*/
/*============= SEC02 ==============*/
.sec02 {
    position: relative;
    padding-top: 122px;
    z-index: 1;
    height: 1071px;
}
.sec02 .ttl {
    margin-bottom: 47px;
}
.sec02:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg_04.jpg") no-repeat center top/1920px;
    width: 1920px;
    height: 100%;
    left: calc(50% - 960px);
    top: 0;
}
.sec02 .ttl .en, .sec02 .ttl .ja {
    text-align: center;
}
.sec02 .ttl .en {
    margin-bottom: 57px;
}
.sec02 .ttl .sm {
    font-size: 24px;
    margin-bottom: 1px;
    padding-right: 10px;
}
.sec02 .ttl .lg {
    font-size: 44px;
}
.sec02 .ttl .lg .mid {
    font-size: 79.5%;
}
.sec02_menu {
    display: flex;
    flex-wrap: wrap;
}
.sec02_menu li {
    width: 220px;
    height: 220px;
    background: #297E80;
    margin-bottom: 30px;
    position: relative;
}
.sec02_menu li:before, .sec02_menu li:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    pointer-events: none;
}
.sec02_menu li:before {
    background: #55B4B7;
    opacity: 0.15;
    clip-path: polygon(0 0, 100% 0, 0% 100%);
}
.sec02_menu li:after {
    border: 2px #005B5D solid;
}
.sec02_menu li a {
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--f-yumin);
    padding-top: 129px;
    position: relative;
}
.sec02_menu li a:before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1px #fff solid;
    border-bottom: 1px #fff solid;
    right: 10px;
    bottom: 10px;
}
.sec02_menu li:not(:nth-child(5n)) {
    margin-right: 25px;
}
.sec02_menu li a .sm {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 4px;
}
.sec02_menu li a .lg {
    font-size: 20px;
    line-height: 1.45;
    text-align: center;
}
.sec02_menu li.item1 a {
    background: url("../images/icon_menu1.svg") no-repeat left calc(50% - -4px) top 44px;
}
.sec02_menu li.item2 a {
    background: url("../images/icon_menu2.svg") no-repeat center top 56px;
}
.sec02_menu li.item3 a {
    background: url("../images/icon_menu3.svg") no-repeat left calc(50% - 1px) top 68px;
}
.sec02_menu li.item4 a {
    background: url("../images/icon_menu4.svg") no-repeat center top 45px;
}
.sec02_menu li.item5 a {
    background: url("../images/icon_menu5.svg") no-repeat left calc(50% - -3px) top 42px;
}
.sec02_menu li.item6 a {
    background: url("../images/icon_menu6.svg") no-repeat center top 40px;
}
.sec02_menu li.item7 a {
    background: url("../images/icon_menu7.svg") no-repeat center top 40px;
}
.sec02_menu li.item8 a {
    background: url("../images/icon_menu8.svg") no-repeat left calc(50% - -2px) top 44px;
}
.sec02_menu li.item9 a {
    background: url("../images/icon_menu9.svg") no-repeat left calc(50% - -2px) top 49px;
}
.sec02_menu li.item10 a {
    background: url("../images/icon_menu10.svg") no-repeat left calc(50% - -4px) top 44px;
}
.sec02_menu li.item11 a {
    background: url("../images/icon_menu11.svg") no-repeat left calc(50% - 5px) top 51px;
}
.sec02_menu li.item12 a {
    background: url("../images/icon_menu12.svg") no-repeat left calc(50% - 3px) top 38px;
    padding-top: 119px;
}
.sec02_menu li.item12 a .sm {
    margin-bottom: -1px;
}
/*============= SEC03 ==============*/
.sec03 {
    position: relative;
    height: 766px;
    padding-top: 162px;
}
.sec03 .en {
    color: #C0B07D;
    margin-bottom: 54px;
}
.sec03 .ja {
    color: #fff;
    border-bottom: 1px #C0B07D solid;
    padding-bottom: 2px;
    margin-bottom: 74px;
    display: table;
}
.sec03 .ja .lg {
    font-size: 44px;
}
.sec03:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg_05.jpg") no-repeat center top/1920px;
    left: calc(50% - 960px);
    top: 0;
    width: 1920px;
    height: 100%;
}
.sec03_bnr {
    display: flex;
    justify-content: center;
}
.sec03_bnr li:not(:last-child) {
    margin-right: 30px;
}
.sec03_bnr li a {
    display: block;
}
/*============= SEC04 ==============*/
.sec04 {
    position: relative;
    padding-top: 151px;
    padding-bottom: 128px;
}
.sec04 .ttl {
    text-align: center;
    margin-top: -64px;
    position: relative;
    margin-bottom: 39px;
}
.sec04 .ttl:before, .sec04 .ttl:after {
    position: absolute;
    content: "";
    width: calc(50% - 250px);
    background: #172F49;
    height: 1px;
    top: 39px;
}
.sec04 .ttl:before {
    left: 0;
}
.sec04 .ttl:after {
    right: 0;
}
.sec04 .ttl .en {
    color: #172F49;
    margin-bottom: 60px;
}
.sec04 .ttl .lg {
    font-family: var(--f-yumin);
    font-size: 34px;
    color: #172F49;
}
.sec04 .ttl .lg .point {
    position: relative;
    padding-top: 10px;
}
.sec04 .ttl .lg .point:before {
    position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    background: #c0b07d;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
    border-radius: 50%;
}
.sec04:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg_06.jpg") no-repeat center top/cover;
    width: 1920px;
    height: 100%;
    left: calc(50% - 960px);
    left: 0;
    top: 0;
}
.sec04_box {
    border: 1px #172F49 solid;
    padding: 25px 0px 35px 0px;
    border-top: none;
    max-width: 1002px;
    margin: 0 auto 25px;
}
.sec04_wrap {
    padding: 0 99px 25px 97px;
}
.sec04 .sec04_txt {
    margin-bottom: 33px;
    padding: 0 3px;
}
.sec04 .sec04_txt p {
    font-size: 15px;
    line-height: 1.8;
}
.sec04_tel {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    margin: 0 auto;
    width: 800px;
    height: 80px;
    background: #c0b07d;
    color: #fff;
    font-family: var(--f-yumin);
}
.sec04_tel .title {
    font-size: 20px;
    line-height: 2.15;
    width: 401px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.sec04_tel .title:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 40px;
    background: #fff;
    right: 0;
    top: 0;
}
.sec04_tel .tel_num {
    font-size: 20px;
    padding-left: 57px;
    padding-top: 10px;
}
.sec04_tel .tel_num a {
    color: #fff;
}
.sec04_tel .tel_num .num {
    font-size: 40px;
    margin-left: 10px;
}
.sec04_tel p {
    margin-bottom: 0;
}
/*============= SEC05 ==============*/
.sec05 {
    background: #297E80;
    padding-bottom: 149px;
    position: relative;
}
.sec05:before, .sec05:after {
    position: absolute;
    content: "";
}
.sec05 .btn, .sec05_bnr {
    position: relative;
    z-index: 1;
}
.sec05:before {
    width: 955px;
    height: 1257.8px;
    background: #297e80;
    opacity: 0.5;
    clip-path: polygon(185% 0, 0% 100%, 100% 100%);
    right: 0;
    bottom: -50px;
    z-index: 1;
    mix-blend-mode: multiply;
}
.sec05:after {
    background: url("../images/idx_img_07_blur.png") no-repeat center top;
    width: 812px;
    height: 543px;
    right: 248px;
    bottom: -50px;
    z-index: 0;
    mix-blend-mode: multiply;
}
.sec05_img {
    position: relative;
    height: 600px;
}
.sec05_img:before {
    position: absolute;
    content: "";
    width: 1920px;
    height: 100%;
    left: calc(50% - 960px);
    background: url("../images/idx_img_06_pc.jpg") no-repeat center top;
}
.sec05_box1 {
    display: flex;
    position: relative;
    margin-top: -275px;
    margin-bottom: 51px;
}
.sec05_box1 .ttl {
    margin-bottom: 21px;
}
.sec05_box1 .ttl .en {
    margin-bottom: 56px;
}
.sec05_box1 .ttl .ja .sm {
    font-size: 24px;
    margin-bottom: 7px;
}
.sec05_box1 .ttl .ja .lg {
    font-size: 44px;
    white-space: nowrap;
}
.sec05_box1 .ttl .ja .lg .mid {
    font-size: 90%;
}
.sec05_box1 .ttl .ja .lg .let1 {
    letter-spacing: 0.03em;
}
.sec05_box1 .ttl .ja .lg .sm {
    font-size: 79%;
}
.sec05_box1 > div {
    width: 50%;
    position: relative;
}
.sec05_box1 > div.item1 {
    background: #fff;
    width: calc(50% + 106px);
    padding-top: 98px;
    padding-bottom: 99px;
}
.sec05 .sec05_box1 > div.item1:before {
    position: absolute;
    content: "";
    background: url("../images/idx_img_32_pc.png") no-repeat right top;
    width: 374px;
    height: 547px;
    right: -173px;
    top: -238px;
}
.sec05_box1 > div .wrap {
    width: 650px;
    margin-left: auto;
    display: table;
}
.sec05_point, .sec06_point {
    width: 500px;
    height: 510px;
    position: absolute;
}
.sec05_point {
    right: -550px;
    top: 38px;
}
.sec05_point li {
    background: linear-gradient(138deg, rgba(46, 85, 128, 1) 0%, rgba(23, 47, 73, 1) 100%);
}
.sec06_point li {
    background: linear-gradient(138deg, rgba(41, 126, 128, 1) 0%, rgba(1, 64, 65, 1) 100%);
}
.sec05_point li, .sec06_point li {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--f-yumin);
    font-size: 20px;
    text-align: center;
}
.sec05_point li p, .sec06_point li p {
    line-height: 1.5;
}
.sec05_point li p .num, .sec06_point li p .num {
    font-size: 45px;
    line-height: 0;
    color: #eed175;
    position: relative;
    top: 0;
}
.sec05_point li.item3 p .num {
    font-size: 40px;
    top: 2px;
    left: -2px;
    margin-right: 2px;
}
.sec05_point li.item1 {
    left: 0;
    top: 0;
    padding-top: 2px;
}
.sec05_point li.item2 {
    right: 40px;
    top: 60px;
}
.sec05_point li.item2 p {
    line-height: 1.65;
    letter-spacing: 0.05em;
}
.sec05_point li.item2 p .sm {
    font-size: 18px;
}
.sec05_point li.item3 {
    left: 50px;
    top: 230px;
}
.sec05_point li.item4 {
    right: 0;
    top: 310px;
    padding-top: 6px;
}
.sec05_point li:before, .sec06_point li:before {
    position: absolute;
    content: "";
    border: 1px #C0B07D solid;
    left: 3px;
    top: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: 50%;
}
.sec05_note {
    position: absolute;
    left: 291px;
    bottom: 13px;
    font-family: var(--f-yumin);
    font-size: 12px;
    line-height: 1.33;
    text-align: right;
    color: #fff;
}
.sec05_txt {
    padding-right: 50px;
}
.sec05_bnr {
    width: 1000px;
    height: 225px;
    background: #172f49;
    margin: 0 auto 50px;
    color: #fff;
    padding: 47px 45px 25px;
    position: relative;
}
.sec05_bnr:before, .sec05_bnr:after {
    position: absolute;
    content: "";
}
.sec05_bnr:before {
    left: 10px;
    top: 10px;
    bottom: 10px;
    right: 10px;
    border: 1px #C0B07D solid;
}
.sec05_bnr:after {
    background: url("../images/idx_img_07_pc.png") no-repeat right top;
    width: 387px;
    height: 446px;
    right: -96px;
    bottom: -309px;
    z-index: 9;
}
.sec05_tt {
    text-align: center;
    font-family: var(--f-yumin);
    font-size: 30px;
    border-bottom: 1px #c0b07d solid;
    max-width: 800px;
    margin: 0 auto 33px;
}
.sec05_tt .mid {
    font-size: 83%;
}
.sec05_tt .lg {}
.sec05_tt .yl {
    color: #C0B07D;
}
.sec05_txt2 {
    padding: 0 40px;
}
.sec05_txt2 p {
    font-size: 15px;
    line-height: 1.8;
}
/*============= SEC06 ==============*/
.sec06 {
    margin-top: 50px;
    position: relative;
    background: #2E5580;
    padding-bottom: 52px;
    z-index: 1;
}
.sec06:before {
    position: absolute;
    content: "";
    width: 1073px;
    height: 821.8px;
    background: #2E5580;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    left: 0;
    bottom: 0;
    mix-blend-mode: screen;
    opacity: 0.25;
}
.sec06 .sec05_box1 > div.item1:before {
    position: absolute;
    content: "";
    background: url("../images/idx_img_09_pc.png") no-repeat right top;
    width: 482px;
    height: 422px;
    right: 35px;
    bottom: -161px;
}
.sec06 .sec05_box1 .ttl .en {
    margin-bottom: 60px;
    color: #172F49;
}
.sec06 .sec05_box1 .ttl .ja .lg, .sec06 .sec05_box1 .ttl .sm {
    color: #172F49;
}
.sec06 .sec05_box1 .ttl .ja .lg {
    line-height: 1.36;
}
.sec06 .sec05_box1 .ttl .ja .lg .mid {
    font-size: 79.5%;
}
.sec06 .sec05_box1 .ttl {
    margin-bottom: 27px;
}
.sec06_img {
    position: relative;
    height: 600px;
}
.sec06_img:before {
    position: absolute;
    content: "";
    width: 1920px;
    height: 100%;
    left: calc(50% - 960px);
    background: url("../images/idx_img_08_pc.jpg") no-repeat center top;
}
.sec06 .sec05_box1 {
    margin-top: -293px;
}
.sec06 .sec05_box1 > div.item1 {
    background: none;
    width: 50%;
}
.sec06 .sec05_box1 > div.item2 {
    background: #fff;
    width: calc(50% + 104px);
}
.sec06 .sec05_box1 > div .wrap {
    margin-left: 50px;
    padding-top: 98px;
    padding-bottom: 33px;
}
.sec02_bb {
    position: absolute;
    left: 403px;
    top: 0px;
    background: url("../images/idx_bb1.png") no-repeat center top;
    width: 180px;
    height: 181px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--f-yumin);
    padding-bottom: 6px;
}
.sec02_bb .sm {
    font-size: 34px;
    margin-bottom: 16px;
    font-weight: 300;
}
.sec02_bb .lg {
    font-size: 40px;
    letter-spacing: 0.12em;
}
.sec06_point {
    left: -496px;
    top: -63px;
    width: 445px;
    height: 433px;
}
.sec06_txt {
    max-width: 600px;
    margin-bottom: 48px;
}
.sec06_point li.item3 p .num {
    font-size: 40px;
    top: 2px;
    left: -3px;
}
.sec06_point li.item1 {
    left: 0;
    top: 0;
    padding-top: 2px;
}
.sec06_point li.item2 {
    right: 0;
    top: 0;
}
.sec06_point li.item2 p {}
.sec06_point li.item2 p .sm {
    font-size: 18px;
}
.sec06_point li.item3 {
    left: -54px;
    top: 233px;
}
.sec06_point li.item4 {
    right: 50px;
    top: 230px;
}
.sec05_point li p .sm, .sec06_point li p .sm {
    font-size: 90%;
}
.sec05_point li p .mid, .sec06_point li p .mid {
    font-size: 95%;
    letter-spacing: -0.05em;
}
/*============= SEC07 ==============*/
.sec07 {
    position: relative;
    padding-bottom: 150px;
}
.sec07:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg_07.jpg") no-repeat center top/1920px;
    width: 1920px;
    height: 100%;
    top: 0;
    left: calc(50% - 960px);
}
.sec07_item {
    display: flex;
}
.sec07_item .item1 {
    max-width: 600px;
    padding-top: 120px;
}
.sec07_item > div {
    position: relative;
}
.sec07_ttl {
    display: flex;
    flex-direction: column;
    font-family: var(--f-yumin);
    color: #172F49;
    margin-bottom: 22px;
}
.sec07_ttl .sm {
    font-size: 24px;
}
.sec07_ttl .lg {
    font-size: 44px;
}
.sec07_txt {
    margin-bottom: 48px;
}
.sec07_img {
    position: absolute;
    left: 100px;
    top: -50px;
    z-index: 9;
    width: 400px;
    height: 400px;
    mix-blend-mode: multiply;
    background: #2D8FBA;
    border-radius: 50%;
}
.sec07_img .img {
    position: relative;
    z-index: 1;
}
.sec07_img2 {
    position: absolute;
    left: 25px;
    top: -55px;
    z-index: 9;
}
.sec07_item .item2 {
    flex-shrink: 0;
    width: 600px;
}
/*============= SEC08 ==============*/
.sec08 {
    position: relative;
    z-index: 9;
}
.sec08 .ttl {
    margin-bottom: 21px;
}
.sec08:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg_08.jpg") no-repeat center top/1920px;
    width: 1920px;
    height: 355px;
    left: 0;
    bottom: 500px;
}
.sec08 .inner {
    background: #fff;
    margin-top: -200px;
    z-index: 1;
    max-width: 1000px;
    padding-bottom: 100px;
    margin-bottom: -145px;
}
.sec08_img {
    display: flex;
    position: relative;
    width: calc(100% + 15px);
    left: -7px;
}
.sec08_list {
    display: flex;
    justify-content: space-between;
    width: 500px;
    margin: 0 auto -88px;
    position: relative;
    top: -150px;
}
.sec08_list > li {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c0b07d 0%, #876700 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--f-yumin);
    font-size: 20px;
    text-align: center;
    position: relative;
}
.sec08_list > li.item1 {
    padding-top: 15px;
}
.sec08_list > li.item2 {
    padding-top: 10px;
}
.sec08_list > li:before {
    position: absolute;
    content: "";
    border: 1px #fff solid;
    left: 3px;
    top: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: 50%;
}
.sec08_list > li p {
    line-height: 1.5;
}
.sec08_list > li p .sm {
    font-size: 90%;
}
.sec08_ttl {
    text-align: center;
}
.sec08_ttl .en {
    color: #C0B07D;
    margin-bottom: 57px;
}
.sec08_ttl .ja {}
.sec08_ttl .ja .sm {
    font-size: 24px;
    margin-bottom: 6px;
}
.sec08_ttl .ja .lg {
    color: #c0b07d;
    font-size: 44px;
    padding-right: 13px;
}
.sec08_ttl .ja .lg .mid {
    font-size: 79.5%;
}
.sec08_txt {
    max-width: 800px;
    margin: 0 auto 50px;
}
.sec08_img_lg {
    position: relative;
    height: 500px;
	margin-bottom: 0;
}
.sec08_img_lg:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg_09.jpg") no-repeat center top;
    width: 1920px;
    height: 100%;
    left: calc(50% - 960px);
    bottom: 0
}
/*============= SEC09 ==============*/
.sec09 {
    z-index: 8;
    position: relative;
    padding-bottom: 110px;
}
.sec09:after, .sec09:before {
    position: absolute;
    content: "";
}
.sec09:before {
    background: url("../images/idx_bg_10.jpg") no-repeat center top;
    width: 1920px;
    height: 650px;
    left: calc(50% - 960px);
    top: 0;
    z-index: -1;
}
.sec09:after {
    width: 100%;
    height: 310px;
    left: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(41, 126, 128, 1) 0%, rgba(46, 85, 128, 1) 100%);
}
.sec09_item {
    display: flex;
    position: relative;
    z-index: 1;
    align-items: flex-start;
}
.sec09_item .item1 {
    margin-right: 50px;
    padding-top: 162px;
}
.sec09_item .item2 {
    background: #fff;
    padding: 47px 25px 44px 50px;
    width: 670px;
    margin-top: 392px;
    position: relative;
    margin-right: -20px;
}
.sec09 .ttl .en {
    margin-bottom: 45px;
}
.sec09 .ttl .ja .lg {
    font-size: 44px;
}
.sec09 .ttl {
    margin-bottom: 93px;
}
.sec09_ttl {
    display: flex;
    flex-direction: column;
    font-family: var(--f-yumin);
    color: #070707;
    margin-bottom: 24px;
}
.sec09_ttl .sm {
    font-size: 20px;
    line-height: 1.6;
}
.sec09_ttl .lg {
    font-size: 40px;
}
.sec09_list {
    display: flex;
}
.sec09_list > li {
    font-size: 14px;
    font-family: var(--f-yumin);
    line-height: 2.286;
}
.sec09_list > .list1 {
    margin-right: 20px;
}
.sec09_list > li .lg {
    font-size: 18px;
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}
/*============= SEC10 ==============*/
.sec10 {
    z-index: 8;
    position: relative;
    padding-bottom: 66px;
}
.sec10:after, .sec10:before {
    position: absolute;
    content: "";
}
.sec10:before {
    background: url("../images/idx_bg_11.jpg") no-repeat center top;
    width: 1920px;
    height: 454px;
    left: calc(50% - 960px);
    top: 0;
    z-index: -1;
}
.sec10:after {
    width: 100%;
    height: calc(100% - 454px);
    left: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(41, 126, 128, 1) 0%, rgba(46, 85, 128, 1) 100%);
}
.sec10_item {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    position: relative;
    left: -60px;
    z-index: 1;
}
.sec10_item > .item1 {
    flex-shrink: 0;
    margin-top: 250px;
    position: relative;
    margin-right: -60px;
}
.sec10_item > .item2 {
    background: #fff;
    padding: 47px 25px 53px 50px;
    width: 700px;
    margin-top: 200px;
    position: relative;
    margin-right: 50px;
}
.sec10 .ttl .en {
    margin-bottom: 45px;
}
.sec10 .ttl .ja .lg {
    font-size: 44px;
}
.sec10 .ttl {
    margin-bottom: 93px;
}
.sec10_ttl, .sec10_tt1 {
    font-family: var(--f-yumin);
    color: #070707;
}
.sec10_ttl {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}
.sec10_ttl .sm {
    font-size: 20px;
    line-height: 1.6;
}
.sec10_ttl .lg {
    font-size: 40px;
}
.sec10_tt1 {
    font-size: 16px;
    line-height: 2;
}
.sec10_tt2 {
    font-family: var(--f-yumin);
    color: #333;
    font-size: 20px;
    margin-bottom: 14px;
}
.sec10_txt {
    padding-right: 30px;
    margin-bottom: 46px;
}
/*============= SEC11 ==============*/
.sec11 {
    position: relative;
    margin-top: -25px;
    padding-top: 177px;
}
.sec11:before {
    position: absolute;
    content: "";
    background: url("../images/bg_gray.jpg") no-repeat center bottom;
    width: 1920px;
    height: 152px;
    left: calc(50% - 960px);
    top: 25px;
}
.sec11_img {
    position: relative;
    height: 680px;
    margin-bottom: 100px;
}
.sec11_img:before {
    position: absolute;
    content: "";
    background: url("../images/idx_img_16_pc.jpg") no-repeat center top;
    width: 1920px;
    height: 100%;
    left: calc(50% - 960px);
    top: 0;
}
.sec11_ttl {
    position: absolute;
    z-index: 9;
    text-align: center;
    top: 340px;
    margin: 0 auto;
    left: 0;
    right: 0;
}
.sec11_ttl .en {
    margin-bottom: 16px;
}
.sec11_ttl .ja {
    margin: 0 auto;
    align-items: flex-start;
    left: -20px;
    position: relative;
    white-space: nowrap;
}
.sec11_ttl .ja .lg {
    font-size: 40px;
    color: #172F49;
    margin-right: 0;
    letter-spacing: 0em;
}
.sec11_ttl .ja .yl {
    color: #C0B07D;
}
.sec11_ttl .ja .num {
    background: linear-gradient(135deg, rgba(41, 126, 128, 1) 0%, rgba(46, 85, 128, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 277%;
    font-weight: 300;
    line-height: 0.8;
    margin-bottom: -8px;
}
.sec11_ttl .ja .sm {
    font-size: 20px;
    line-height: 1.1;
    padding-top: 11px;
    letter-spacing: 0.1em;
}
.sec11_ttl .ja {
    -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: upright;
}
.sec11_item > div {
    display: flex;
    align-items: flex-start;
    position: relative;
}
.sec11_item > div.item1 {
    padding-bottom: 50px;
}
.sec11_item > div:before {
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.sec11_item > div.item1:before {
    background: linear-gradient(135deg, rgba(41, 126, 128, 1) 0%, rgba(46, 85, 128, 1) 100%);
    height: 152px;
}
.sec11_item > div.item2:before {
    background: linear-gradient(45deg, rgba(23, 47, 73, 1) 0%, rgba(46, 85, 128, 1) 100%);
    height: 650px;
}
.sec11_item > div.item2 {
    flex-direction: row-reverse;
    padding-bottom: 60px;
}
.sec11_item > div .item_sub1 {
    flex-shrink: 0;
    z-index: 1;
    position: relative;
    left: -7px;
}
.sec11_item > div.item2 .item_sub1 {
    left: 8px;
}
.sec11_item > div .item_sub1 .point {
    position: absolute;
    right: -50px;
    top: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(41, 126, 128, 1) 0%, rgba(1, 64, 65, 1) 100%);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--f-yumin);
    line-height: 1.52;
    font-size: 25px;
    text-align: center;
    padding-top: 2px;
    flex-direction: column;
}
.sec11_item > div .item_sub1 .point:before {
    position: absolute;
    content: "";
    left: 3px;
    right: 3px;
    top: 3px;
    bottom: 3px;
    border: 1px #fff solid;
    border-radius: 50%;
}
.sec11_item .item_sub2 {
    background: #fff;
    padding: 112px 25px 101px 140px;
    margin-left: -97px;
    flex-grow: 1;
}
.sec11_item .item2 .item_sub2 {
    padding: 163px 25px 102px 140px;
   /* margin-left: 0px;*/
    margin-right: -97px;
}
.sec11_item .item1 .item_sub2 .sec11_en .txt, .sec11_item .item1 .item_sub2 .sec11_en .num {
    color: #297e80;
}
.sec11_item .item2 .item_sub2 .sec11_en .txt, .sec11_item .item2 .item_sub2 .sec11_en .num {
    color: #2e5580;
}
.sec11_item .item_sub2 .wrap {
    max-width: 715px;
    margin-left: auto;
}
.sec11_item .item1 .item_sub2 .wrap {
    margin-left: 0;
}
.seccom_en1 {
    display: flex;
    align-items: center;
    position: relative;
    font-family: var(--f-yumin);
    margin-bottom: 41px;
}
.item2 .sec11_en {
    margin-bottom: 55px;
}
.seccom_en1 .num {
    font-size: 80px;
    line-height: 1;
    color: #297e80;
    opacity: 0.15;
}
.seccom_en1 .txt {
    position: absolute;
    left: 33px;
    font-size: 30px;
    line-height: 1;
    color: #297e80;
    top: calc(50% - 11px);
}
.sec11_ja {
    font-family: var(--f-yumin);
    display: flex;
    flex-direction: column;
    margin-bottom: 23px;
}
.sec11_ja .sm {
    font-size: 24px;
    line-height: 1.5;
}
.sec11_ja .sm .num {
    font-size: 34px;
}
.sec11_ja .lg {
    font-size: 44px;
}
.sec11_ja .lg .mid {
    font-size: 79.5%;
}
.sec11_txt {
    max-width: 500px;
    margin-bottom: 62px;
}
.sec11_txt p {
    letter-spacing: 0.05em;
    line-height: 1.8;
}
.box_point {
    position: absolute;
    left: 0;
    top: 0;
}
.sec11_item > div .item_sub1 .point {
    background: linear-gradient(135deg, rgba(41, 126, 128, 1) 0%, rgba(1, 64, 65, 1) 100%);
}
.sec11_item > div.item2 .item_sub1 .point {
    background: linear-gradient(135deg, rgba(46, 85, 128, 1) 0%, rgba(23, 47, 73, 1) 100%);
}
.sec11_item > div .item_sub1 .point.point1 {
    left: -200px;
    top: 30px;
}
.sec11_item > div .item_sub1 .point.point2 {
    left: -100px;
    top: 230px;
}
.sec11_item > div .item_sub1 .point .lg {
    font-size: 180%;
    color: #EED175;
    letter-spacing: 0.098em;
    line-height: 1.1;
    padding-left: 4px;
}
/*============= SEC12 ==============*/
.sec12 {
    position: relative;
    padding-top: 113px;
    padding-bottom: 153px;
}
.sec12:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg_14.jpg") no-repeat center top;
    width: 1920px;
    height: 100%;
    left: calc(50% - 960px);
    top: 0;
}
.sec12_en {
    justify-content: center;
    text-align: center;
    margin-bottom: 57px;
    padding-right: 43px;
}
.sec12_en .txt {
    left: 35px;
    right: 0;
    margin: 0 auto;
    top: calc(50% - 13px);
}
.sec12 .ttl .ja {
    text-align: center;
}
.sec12 .ttl .ja .sm {
    font-size: 24px;
    margin-bottom: 1px;
}
.sec12 .ttl .ja .lg {
    font-size: 44px;
    padding-right: 8px;
}
.sec12 .ttl .lg .mid {
    font-size: 79.5%;
}
.sec12_txt {
    max-width: 800px;
    margin: 0 auto 38px;
}
.sec12_txt p {
    letter-spacing: 0.05em;
    line-height: 1.8;
}
.sec12_list {
    display: flex;
    margin-bottom: 50px;
}
.sec12_list li {
    width: 285px;
    position: relative;
}
.sec12_list li .img {
    margin-bottom: 0;
    height: 240px;
    width: 100%;
}
.sec12_list li .tt {
    position: absolute;
    left: 0;
    bottom: 20px;
    color: #fff;
    text-align: center;
    font-family: var(--f-yumin);
    width: calc(100% - 30px);
    padding: 5px 0 3px;
    right: 0;
    margin: 0 auto;
}
.sec12_list li .tt span {
    z-index: 1;
    position: relative;
}
.sec12_list li .tt:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #297E80;
    left: 0;
    top: 0;
    mix-blend-mode: multiply;
}
.sec12_list li:not(:last-child) {
    margin-right: 20px;
}
.sec12 .ttl {
    margin-bottom: 22px;
}
/*============= SEC13 ==============*/
.sec13 {
    margin-bottom: 50px;
}
.sec13_item {
    display: flex;
}
.sec13_item > div {
    width: 50%;
    position: relative;
    height: 1020px;
    color: #fff;
    padding-top: 112px;
}
.sec13_item > div:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    left: 0;
    top: 0;
}
.sec13_item > div.item1:before {
    background: url("../images/idx_bg_15_l.jpg") no-repeat center top/cover;
}
.sec13_item > div.item2:before {
    background: url("../images/idx_bg_15_r.jpg") no-repeat center top/cover;
}
.sec13_item > div.item1 {}
.sec13_item > div.item1 .wrap {
    margin-left: auto;
    margin-right: 40px;
}
.sec13_item > div.item2 .wrap {
    margin-left: 40px;
}
.sec13_item > div.item2 {}
.sec13_item > div .wrap {
    width: 520px;
}
.sec13 .seccom_en1 .num, .sec13 .seccom_en1 .txt {
    color: #fff;
}
.sec13 .ja {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--f-yumin);
    margin-bottom: 27px;
}
.sec13 .seccom_en1 {
    justify-content: center;
    margin-bottom: 57px;
    padding-right: 45px;
}
.sec13 .seccom_en1 .txt {
    text-align: center;
    left: 38px;
    right: 0;
    margin: 0 auto;
}
.sec13 .ja .sm {
    font-size: 24px;
    margin-bottom: 4px;
}
.sec13 .ja .lg {
    font-size: 40px;
}
.sec13 .ja .lg .mid {
    font-size: 87.5%;
}
.sec13_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.sec13_list li {
    width: 250px;
    position: relative;
    margin-bottom: 20px;
}
.sec13_list li:nth-child(1) {
    margin-right: 20px;
}
.sec13_list li:last-child {
    margin-right: 0;
}
.sec13_img_sm {
    margin-bottom: 0px;
}
.sec13_list li .tt {
    text-align: center;
    font-family: var(--f-yumin);
    position: absolute;
    width: calc(100% - 2px);
    bottom: 1px;
    left: 1px;
    line-height: 1.11;
    padding: 11px 5px 9px;
    font-size: 18px;
}
.sec13_list li.sub3 .tt {
    padding: 8px 5px 7px;
}
.sec13_list li .tt:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #297E80;
    left: 0;
    top: 0;
    mix-blend-mode: multiply;
}
.sec13_list li .tt span {
    position: relative;
    color: #fff;
    padding-bottom: 2px;
    display: block;
}
.sec13_list li.sub2 .tt {
    padding-left: 22px;
}
.sec13_list li.sub3 .tt {
    letter-spacing: -0.1em;
}
.sec13_txt {
    margin-bottom: 27px;
}
.sec13_txt p {
    line-height: 1.8;
}
.sec13_img {
    margin-bottom: 25px;
}
/*============= SEC14 ==============*/
.sec14 {
    position: relative;
    margin-bottom: 50px;
}
.sec14:before, .sec14:after {
    position: absolute;
    content: "";
}
.sec14:after {
    width: 100%;
    height: 200px;
    background: #2E5580;
    left: 0;
    bottom: 0;
}
.sec14:before {
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    width: 650px;
    height: 455px;
    background: #172F49;
    mix-blend-mode: multiply;
    left: -8px;
    bottom: -50px;
    z-index: 2;
}
.sec14_item {
    display: flex;
    padding-bottom: 150px;
    position: relative;
    z-index: 3;
}
.sec14_item .item1 {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    right: 7px;
}
.sec14_item .item2 {
    background: #fff;
    top: 50px;
    position: relative;
    margin-left: -98px;
    padding-left: 141px;
    padding-top: 63px;
    flex-grow: 1;
}
.sec14 .seccom_en1 .txt, .sec14 .seccom_en1 .num {
    color: #2E5580;
}
.sec14 .ja {
    display: flex;
    flex-direction: column;
    font-family: var(--f-yumin);
    margin-bottom: 23px;
}
.sec14 .ja .sm {
    font-size: 24px;
}
.sec14 .ja .lg {
    font-size: 44px;
}
.sec14_txt {
    max-width: 500px;
}
.sec14_txt p {
    line-height: 1.8;
    letter-spacing: 0.05em;
}
.sec14 .seccom_en1 {
    margin-bottom: 58px;
}
/*============= SEC15 ==============*/
.sec15 {
    position: relative;
    color: #fff;
    padding-top: 147px;
    height: 705px;
    background: url("../images/idx_bg_12_front.jpg") no-repeat center top/cover;
}
.sec15:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg_12.png") no-repeat center top;
    width: 1920px;
    height: 705px;
    left: calc(50% - 960px);
    top: 0;
    mix-blend-mode: multiply;
    z-index: 9;
    pointer-events: none;
}
.sec15_en {
    font-family: var(--f-yumin);
    font-weight: 300;
    font-size: 80px;
    line-height: 1;
    margin-bottom: 60px;
}
.sec15_wrap {
    display: flex;
    justify-content: space-between;
    padding-bottom: 44px;
    border-bottom: 1px #fff solid;
    margin-bottom: 49px;
}
.sec15_tt {
    background: #fff;
    width: 680px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    text-align: center;
    color: #c0b07d;
    font-family: var(--f-yumin);
    flex-shrink: 0;
    padding-top: 2px;
}
.sec15 .ttl {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    position: relative;
    top: -2px;
}
.sec15 .ttl .sm {
    font-weight: 600;
    font-size: 24px;
}
.sec15 .ttl .lg {
    font-size: 44px;
}
.sec15 .ttl .lg .mid {
    font-size: 79.5%;
}
.sec15 .btn a {
    width: 200px;
    height: 80px;
    flex-direction: column;
    font-size: 20px;
    line-height: 1.45;
}
.sec15 .btn a .sm {
    font-size: 16px;
}
.sec15 .btn {
    margin-right: 20px;
}
.btn_tel a {
    display: flex;
    flex-direction: column;
    font-family: var(--f-yumin);
    text-align: center;
    color: #fff;
}
.btn_tel {
    flex-shrink: 0;
    padding-top: 6px;
}
.btn_tel a .sm {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 9px;
}
.btn_tel a .num {
    font-size: 32px;
}
/*============= SEC16 ==============*/
.sec16 {
    padding-top: 150px;
    padding-bottom: 162px;
    border-bottom: 1px #B4B4B4 solid;
}
.sec16_item {
    display: flex;
}
.sec16_item .ttl {
    width: 600px;
    flex-shrink: 0;
    padding-top: 13px;
}
.sec16_item .ttl .en {
    margin-bottom: 55px;
}
.sec16_item .ttl .ja {
    margin-bottom: 45px;
}
.sec16_item .ttl .ja .sm {}
.sec16_item .ttl .ja .lg {
    font-size: 44px;
}
.sec16_item .ttl .ja .lg .mid {}
.sec16_item .item_slider {}
.sec16_slider {
    height: 334px;
}
.sec16_slider.slick-initialized {
    height: auto;
}
.sec16_slider .slick-slide {
    width: 350px;
    margin: 0 25px;
}
.sec16_slider .slick-slide .img {
    margin-bottom: 20px;
}
.sec16_slider .slick-slide .tt {
    display: flex;
    font-family: var(--f-yumin);
    color: #000;
    padding-left: 2px;
}
.sec16_slider .slick-slide .tt .num {
    font-size: 25px;
    letter-spacing: 0.05em;
    opacity: 0.38;
    flex-shrink: 0;
    width: 42px;
    margin-bottom: 0;
    padding-top: 2px;
}
.sec16_slider .slick-slide .tt .txt:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 49px;
    background: #707070;
    left: 0;
    top: 2px;
}
.sec16_slider .slick-slide .tt .txt {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.05em;
    position: relative;
    padding-left: 17px;
    line-height: 1.8;
}
.sec16_slider .slick-next {
    right: auto;
    left: 117px;
}
.sec16_slider .slick-prev {
    left: 2px;
}
.sec16_slider .slick-next, .sec16_slider .slick-prev {
    top: auto;
    bottom: -51px;
    width: 15px;
    height: 17px;
    z-index: 99;
}
.sec16_slider .slick-next, .sec16_slider .slick-next:focus {
    background: url(../images/icon_next.svg) no-repeat center;
}
.sec16_slider .slick-prev, .sec16_slider .slick-prev:focus {
    background: url(../images/icon_prev.svg) no-repeat center;
}
.slick-prev::before, .slick-next::before {
    display: none;
}
/*============= SEC17 ==============*/
.sec17 {
    padding-top: 152px;
    padding-bottom: 100px;
    height: 1177px;
}
.sec17.aos-init {
    height: auto;
}
.sec17 .ttl {
    display: flex;
    align-items: flex-end;
    margin-bottom: 60px;
}
.sec17 .ttl .en {
    margin-right: 50px;
}
.sec17 .ttl .ja .lg {
    font-size: 44px;
}
.sec17_tab {
    display: flex;
    width: 100%;
    margin: 0px auto 60px;
    max-width: 1000px;
}
.sec17_tab li {
    height: 50px;
    position: relative;
    font-family: var(--f-yumin);
    font-size: 18px;
    width: 200px;
    margin-right: 10px;
}
.sec17_tab li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    color: #333333;
    letter-spacing: 0.09em;
    padding-bottom: 3px;
    border: 1px #CCCCCC solid;
    padding-top: 6px;
}
.sec17_tab li a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 36px solid transparent;
    border-left: 36px solid transparent;
    border-top: 20px solid #333;
    border-bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -20px;
    opacity: 0;
    transition: all 0.3s;
}
.sec17_tab li a.active:before {
    opacity: 1;
}
.sec17_tab li a.active {
    background: #333;
    pointer-events: none;
    color: #fff;
    border-color: #333;
}
.sec17_wrap {
    background: #fff;
    width: 100%;
    margin: 0 auto 50px;
    max-width: 1000px;
}
.sec17_wrap .btn {
    margin-top: 50px;
}
.sec17_load dl {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
    background-image: repeating-linear-gradient(90deg, #707070, #707070 4px, transparent 4px, transparent 8px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 1px;
}
.sec17_load dl dt {
    display: flex;
    margin-bottom: 7px;
    font-family: var(--f-yumin);
}
.sec17_load dl dt .date {
    font-size: 22px;
    color: #000;
}
.sec17_load dl dt .cate {
    height: 40px;
    line-height: 38px;
    padding: 1px 10px 0;
    margin-right: 20px;
    flex-shrink: 0;
    text-align: center;
    font-size: 15px;
    border: 1px #444444 solid;
    min-width: 160px;
    letter-spacing: 0.05em;
}
.sec17_load dl dt .cate2 {
    background: #D6B456;
}
.sec17_load dl dt .cate1 {
    background: #40210f;
}
.sec17_load dl dd {
    text-overflow: ellipsis;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-size: 20px;
    word-break: break-all;
}
.sec17_load dl dd a {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}
.sec17_ttl3 {
    margin-bottom: 38px;
    letter-spacing: 0.05em;
}
/*============= SEC18 ==============*/
.sec18 {
    position: relative;
    background: #F6F6F6;
    padding-top: 162px;
}
.sec18:before {}
.sec18 .en {
    margin-bottom: 56px;
}
.sec18 .ja {}
.sec18 .ja .lg {
    font-size: 44px;
}
.sec18 .ja .lg .mid {
    font-size: 79.5%;
}
.sec18 .ttl {
    margin-bottom: 21px;
}
.sec18_txt {
    margin-bottom: 50px;
}
.sec18_txt p {
    letter-spacing: 0.05em;
    line-height: 2;
    font-size: 15px;
}
.sec18_item {
    display: flex;
    margin-bottom: 39px;
}
.sec18_item li {
    width: 285px;
}
.sec18_item li:not(:last-child) {
    margin-right: 20px;
}
.sec18_item li .img {
    margin-bottom: 11px;
}
.sec18_item li .tt {
    text-align: center;
    font-family: var(--f-yumin);
    font-size: 18px;
    color: #000;
    font-weight: 300;
    line-height: 1.33;
}
.sec18_item li .tt span {
    background: url("../images/arrow_up.svg") no-repeat right center/13px;
    padding-right: 23px;
    display: inline-block;
}
.sec18_tt {
    font-family: var(--f-yumin);
    font-size: 30px;
    line-height: 1.5;
    color: #000;
    position: relative;
    margin-bottom: 20px;
}
.sec18_tt:before {
    position: absolute;
    content: "";
    height: 1px;
    width: 100%;
    background: #707070;
    left: 0px;
    top: 42%;
}
.sec18_tt:after {
    position: absolute;
    content: "";
    left: 0;
    top: 6px;
    z-index: 9;
}
.sec18_tt.tt1:after {
    background: url("../images/ft_icon1.png") no-repeat left center;
    width: 30px;
    height: 30px;
}
.sec18_tt.tt2:after {
    background: url("../images/ft_icon2.png") no-repeat left center;
    width: 29px;
    height: 29px;
}
.sec18_tt span {
    background: #F6F6F6;
    padding-right: 10px;
    position: relative;
    z-index: 1;
}
.sec18_tt.tt1 {}
.sec18_tt.tt1 span {
    padding-left: 41px;
}
.sec18_tt.tt2 span {
    padding-left: 39px;
}
.sec18_bnr {
    margin: 52px auto 0;
    width: 775px;
    height: 170px;
    background: #297e80;
    position: relative;
    z-index: 1;
}
.sec18_bnr a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sec18_bnr:before {
    position: absolute;
    content: "";
    background: #fff;
    left: 1px;
    right: 1px;
    bottom: 1px;
    top: 1px;
    border-radius: 10px;
    z-index: -1;
}
.ft_bnr2 a {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
@media screen and (min-width: 751px) {}
/*==========================================================
                        F O O T E R
==========================================================*/
footer {
    position: relative;
    z-index: 3;
}
.ft_top {
    background: #F6F6F6;
    padding-top: 150px;
    padding-bottom: 169px;
}
.ft_logo {
    margin-bottom: 74px;
}
.ft_logo a {
    display: table;
    margin: 0 auto 25px;
}
.ft_top_item {
    display: flex;
    margin-bottom: 46px;
}
.ft_top_item .item1 {
    width: 530px;
    margin-right: 60px;
}
.ft_map {
    margin-bottom: 15px;
}
.ft_map_txt {
    display: flex;
    justify-content: space-between;
}
.ft_map_txt .tt {
    font-family: var(--f-yumin);
    font-size: 16px;
    line-height: 1.8;
}
.ft_map_txt .ft_map_link {
    margin-top: 26px;
    font-family: var(--f-yumin);
}
.ft_map_txt .ft_map_link a {
    background: url("../images/icon_map.svg") no-repeat left center;
    padding: 7px 0 3px 21px;
}
.com_add {
    font-family: var(--f-yumin);
    font-size: 18px;
    line-height: 1.388;
    color: #000;
    margin-bottom: 18px;
}
.com_tel {
    background: #fff;
    width: 526px;
    height: 70px;
    border: 1px solid #707070;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-yumin);
    margin-bottom: 30px;
}
.com_tel .tt {
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    position: relative;
    padding-right: 30px;
    padding-top: 3px;
}
.com_tel .tt:before {
    position: absolute;
    content: "";
    background: url("../images/arrow_tel.svg") no-repeat center;
    width: 9px;
    height: 40px;
    top: calc(50% - 20px);
    right: 13px;
}
.com_tel a {
    font-size: 20px;
    padding-top: 7px;
}
.com_tel a .num {
    font-size: 30px;
    margin-left: 7px;
}
.com_calc {
    margin-bottom: 5px;
}
.com_calc_txt {
    font-weight: bold;
    font-size: 16px;
    color: #172f49;
}
.ft_contact.box_contact {
    flex-wrap: wrap;
    width: 530px;
    margin-bottom: 20px;
}
.ft_contact.box_contact p a {
    font-size: 18px;
}
.ft_contact.box_contact p.btn1 a {
    background: #876700;
}
.ft_contact.box_contact p.btn2 a {
    background: #2E5580;
}
.ft_contact.box_contact p a .sm {
    font-size: 16px;
}
.ft_contact.box_contact p.btn3 a {
    background: #06C755;
}
.ft_contact.box_contact p {
    width: 255px;
    height: 70px;
    margin-bottom: 20px;
}
.ft_link {
    background: #297E80;
    color: #fff;
    padding-top: 86px;
    display: inline-block;
    width: 100%;
}
.nav_com {
    display: flex;
    align-items: flex-start;
}
.nav_com .big {
    font-family: var(--f-yumin);
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.09em;
    line-height: 1.75;
    margin-bottom: 34px;
}
.nav_com .big span {
    border-bottom: 1px #D2BD77 solid;
    padding-bottom: 5px;
}
.nav_com .nav1 {
    width: 152px;
}
footer .nav_com .nav1 {
    width: 175px;
}
footer .nav_com .nav3 {
    position: relative;
    left: 63px;
}
footer .nav_com .nav3 .nav_sub1 {
    width: 287px;
}
footer .nav_com .nav2 .nav_sub1 {
    width: 255px;
}
.nav_com a {
    color: #fff;
}
.nav_com .nav2, .nav_com .nav3 {
    display: flex;
    flex-wrap: wrap;
}
.nav_com .nav2 .big, .nav_com .nav3 .big {
    width: 100%;
}
.nav_com .nav2 {
    width: 500px;
}
.nav_com .nav2 .nav_sub1 {
    width: 250px;
}
.nav_com .nav3 .nav_sub1 {
    width: 280px;
}
.nav_com .nav3 {}
.nav_com ul li a {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.09em;
}
.nav_com ul li {
    margin-bottom: 13px;
}
.ft_txt p {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 2.14;
}
.ft_bnr3, .ft_bnr4, .ft_bnr5 {
    display: flex;
    margin-bottom: 10px;
}
.ft_bnr4 {
    margin-bottom: 15px;
}
.ft_bnr3 li, .ft_bnr4 li {
    width: 190px;
    height: 80px;
}
.ft_bnr3 li, .ft_bnr4 li, .ft_bnr5 li {
    margin-right: 12px;
}
.ft_bnr3 li a {
    background: #172F49;
}
.ft_bnr4 li a {
    background: #E6690E;
}
.ft_bnr3 li a, .ft_bnr4 li a {
    width: 100%;
    height: 100%;
    color: #fff;
    font-family: var(--f-yumin);
    font-size: 16px;
    line-height: 1.43;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.ft_bnr3 li a:before, .ft_bnr4 li a:before {
    position: absolute;
    content: "";
    background: #C0B07D;
    left: 0;
    right: 0;
    bottom: 13px;
    width: 100px;
    height: 1px;
    margin: 0 auto;
}
.ft_txt {
    margin: 32px auto 55px;
}
address {
    background-color: var(--mcolor);
    padding: 35px 20px 42px;
    color: #fff;
    text-align: center;
    font-family: var(--f-yumin);
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.09em;
    display: block;
    width: 100%;
}
/* BACK TO TOP */
.to_top {
    position: fixed;
    z-index: 9;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    transition: all .2s;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.2);
}
.to_top.show {
    transform: scale(1);
    opacity: 1;
    visibility: visible
}
/* FIREFOX ONLY */
@-moz-document url-prefix() {
    .sec11_ttl .ja {
        justify-content: center;
        width: 100%;
    }
}
/* Safari 10.1+ (which is the latest version of Safari at this time) */
@media not all and (min-resolution: 0.001dpcm) {}
@media not all and (min-resolution: 0.001dpcm) {}