@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: 500;
}
*, ::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: 1.8em;
    letter-spacing: 0;
}
p {
    margin: 0 0 1.5em;
}
p:last-child {
    margin-bottom: 0
}
.bold {
    font-weight: bold !important;
}
.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: #335D43;
    --scolor: #554435;
    --sscolor: #549E7D;
    --container: 1260px;
    --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 30px;
}
/*==========================================================
                       H E A D E R
==========================================================*/
/* HAMBUGER BUTTON */
.hamburger {
    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
}
.hamburger-box {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #f1f2ed;
}
.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -1px;
    margin-left: 14px;
}
.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
    position: absolute;
    width: 22px;
    height: 1px;
    transition: all ease 0.15s;
    background-color: #333;
}
.hamburger-inner::after, .hamburger-inner::before {
    display: block;
    content: ""
}
.hamburger-inner::before {
    top: -6px;
}
.hamburger-inner::after {
    bottom: -6px;
}
.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, 10px, 0) rotate(45deg)
}
.hamburger--3dxy.is_active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg)
}
header {
    position: relative;
    z-index: 9;
}
h1 {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 0;
    max-width: 600px;
    font-size: 12px;
    letter-spacing: 0.05em;
    padding-top: 40px;
    margin-bottom: 5px;
    transition: all ease 0.3s;
}
.h_box {
    width: 100%;
    position: fixed;
    background-color: #fff;
    padding-bottom: 23px;
}
.h_inner {
    display: flex;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    padding: 0 40px;
    align-items: flex-start;
    max-width: 1920px;
}
.h_contact {
    display: flex;
    align-items: flex-start;
}
.h_contact > p {
    margin-bottom: 0;
}
.h_contact > p:not(:last-child) {
    margin-right: 40px;
}
.h_contact_mail {
    margin-top: 14px;
    transition: all 0.3s;
}
.h_contact_mail a {
    color: #FFF;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-align: center;
    background-color: var(--mcolor);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 145px;
    height: 75px;
    position: relative;
    padding-right: 3px;
    padding-top: 1px;
}
.h_contact_tel a {
    font-size: 27px;
    color: #343434;
    font-weight: 600;
    position: relative;
    line-height: 1;
    display: block;
    font-family: var(--f-yumin);
    letter-spacing: 0.05em;
    margin-bottom: 3px;
}
.h_contact_tel a span {
    font-size: 14px;
    letter-spacing: 0em;
    margin-right: 5px;
    position: relative;
    bottom: 2px;
}
.h_contact_tel .time {
    font-size: 12px;
    display: block;
    line-height: 1.5;
    text-align: left;
}
.h_right {
    flex-shrink: 0;
    padding-top: 26px;
    transition: all ease 0.3s;
}
.h_contact_tel {
    margin-top: 17px;
}
/*==========================================================
                  M A I N    V I S U A L
==========================================================*/
main {
    position: relative;
    z-index: 2;
    padding-top: 168px;
}
.mv {
    position: relative;
    padding: 0;
    height: 750px;
    z-index: 1;
    max-width: 1920px;
    margin: 0 auto;
}
.mv:before {
    position: absolute;
    content: "";
    background: url("../images/main.jpg") no-repeat right top;
    width: 1560px;
    height: 100%;
    right: calc(50% - 960px);
    top: 0;
    z-index: -1;
}
.mv_txt {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 87px;
}
.mv_txt h2 {
    display: flex;
    align-items: flex-start;
    /* justify-content: center; */
    flex-direction: column;
    font-family: var(--f-yumin);
    color: #3e4b43;
    width: 918px;
    height: 220px;
    background-color: rgba(255, 255, 255, 0.9);
    padding-left: 40px;
    padding-top: 40px;
    left: 115px;
    position: relative;
    top: -19px;
}
.mv_txt h2 span {
    letter-spacing: 0.05em;
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 13px;
    text-decoration-color: #e5e5e5;
    text-decoration-thickness: 1px;
}
.mv_txt h2 .sm {
    font-size: 35px;
    margin-bottom: 20px;
}
.mv_txt h2 .lg {
    font-size: 50px;
    letter-spacing: 0.05em;
    text-underline-offset: 18px;
}
.sroll_down {
    position: absolute;
    left: 148px;
    bottom: 15px;
    display: flex;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: mixed;
    -moz-text-orientation: mixed;
    -ms-text-orientation: mixed;
    text-orientation: mixed;
    flex-direction: column-reverse;
    white-space: nowrap;
    font-size: 12px;
    font-family: var(--f-yumin);
    letter-spacing: 0.05em;
    height: 170px;
}
.sroll_down a {
    display: block;
    position: relative;
    padding-left: 5px;
    color: #A8A8A8;
}
.sroll_down a:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 170px;
    background: #a8a8a8;
    left: 0;
    top: 0;
    transition: all ease 0.3s;
}
.mv_round {
    position: absolute;
    width: 180px;
    height: 180px;
    background: #6eac93;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-family: var(--f-yumin);
    line-height: 1.31;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.05em;
    right: 50px;
    bottom: 50px;
    margin-bottom: 0;
}
/*==========================================================
                M A I N    C O N T E N T
==========================================================*/
/* DEFAULT TITLE */
.ttl_h3 {
    font-family: var(--f-yumin);
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.ttl_h3:not(:last-child) {
    margin-bottom: 40px;
}
.ttl_h3 span {}
.ttl_h3 .ja {
    font-size: 32px;
    color: #3E4B43;
    display: flex;
    align-items: center;
    flex-direction: column;
    letter-spacing: 0.05em;
    position: relative;
}
.ttl_h3_cen .ja {
    background: #fff;
    padding: 0 29px;
}
.ttl_h3_cen .ja:before, .ttl_h3_cen .ja:after {
    position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    background: #a8a8a8;
    transform: rotate(45deg);
    top: 19px;
}
.ttl_h3_cen .ja:before {
    left: 0;
}
.ttl_h3_cen .ja:after {
    right: 0;
}
.ttl_h3 .ja .lg {
    font-size: 32px;
}
.ttl_h3 .ja .sm {
    font-size: 16px;
    position: relative;
    top: 2px;
    letter-spacing: 0.05em;
}
.ttl_h3 .en {
    font-size: 14px;
    letter-spacing: 0.05em;
    color: #a8a8a8;
    position: relative;
    padding-right: 53px;
    margin-bottom: 7px;
}
.ttl_h3 .en:before, .ttl_h3 .en:after {
    position: absolute;
    content: "";
    background: #a8a8a8;
}
.ttl_h3 .en:after {
    width: 7px;
    height: 7px;
    transform: rotate(45deg);
    right: 0;
    top: calc(50% - 3px);
}
.ttl_h3 .en:before {
    width: 43px;
    height: 1px;
    right: 0;
    top: calc(50% - 0px);
}
.sec07 .ttl_h3 .en:before {
    right: 3px;
}
.ttl_h3_cen {
    text-align: center;
    align-items: center;
    position: relative;
}
.ttl_h3_cen:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #a8a8a8;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: calc(50% - 2px);
}
/* DEFAUTL NAME BUTTON */
.btn a {
    width: 250px;
    height: 60px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/ic-right.png') no-repeat right 20px center /6px var(--mcolor);
    font-size: 16px;
    color: #fff;
}
.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 {
    padding-top: 100px;
    padding-bottom: 73px;
}
.sec_load_item, .sec_load dl {
    display: flex;
}
.sec_com .ttl_h3 {
    width: 193px;
    position: relative;
    margin-bottom: 21px;
}
.sec01 .ttl_h3:before, .sec10 .ttl_h3:before {
    position: absolute;
    content: "";
    width: 1px;
    background: #A8A8A8;
    right: 0;
    top: 0;
    height: 115px;
}
.sec_load {
    margin-left: 60px;
}
.sec_load_item .item_l {
    flex-shrink: 0;
}
.sec_load_item .item_r {
    flex-grow: 1;
    width: calc(100% - 315px);
}
.sec_load dl:not(:last-child) {
    margin-bottom: 12px;
}
.sec_load dl dt {
    margin-right: 25px;
    flex-shrink: 0;
    font-family: var(--f-yumin);
    font-weight: 400;
    letter-spacing: 0.1em;
}
.sec_load dl dd {
    width: calc(100% - 105px);
}
.sec_load dl dd a {
    text-underline-offset: 4px;
}
.idx_link a {
    font-size: 15px;
    padding-right: 38px;
    position: relative;
    background: url("../images/arrow_r.svg") no-repeat right top 3px;
    font-family: var(--f-yumin);
    color: #335D43;
    font-weight: 400;
    letter-spacing: 0.05em;
}
.sec01 .idx_link a, .sec10 .idx_link a {
    font-size: 12px;
}
/*============= SEC02 ==============*/
.sec02 {
    height: 630px;
    position: relative;
    z-index: 1;
    padding-top: 100px;
}
.sec02:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg01.jpg") no-repeat center top/1920px;
    left: calc(50% - 960px);
    top: 0;
    z-index: -1;
    height: 100%;
    width: 1920px;
}
.sec02 .inner {
    width: 100%;
    padding: 0;
}
.sec02_item {
    display: flex;
}
.sec02_item > .item_l {
    flex-grow: 1;
}
.sec02_item > .item_l .wrap {
    width: 682px;
    margin-left: auto;
}
.sec02_item > .item_r {
    width: calc(50% - 84px);
    right: -8px;
    position: relative;
}
.sec02_w {
    display: flex;
}
.sec02_img.img01 {
    margin-bottom: 10px;
}
.sec02_img.img02 {
    margin-bottom: 0;
}
.group_img {
    margin-right: 10px;
}
.sec02_list li {
    position: relative;
    font-size: 20px;
    padding-left: 24px;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}
.sec02_list li:before {
    position: absolute;
    content: "";
    background: var(--mcolor);
    left: 0;
    top: 13px;
    transform: rotate(45deg);
    width: 10px;
    height: 10px;
}
.list_round {
    display: flex;
    position: relative;
    z-index: 1;
    margin-top: 47px;
    left: -2px;
}
.list_round li {
    width: 160px;
    height: 160px;
    background: #6eac93;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-yumin);
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.8;
    flex-shrink: 0;
    padding-top: 5px;
}
.list_round li:nth-child(2) {
    line-height: 1.5;
    padding-top: 15px;
}
.list_round li:not(:last-child) {
    margin-right: 20px;
}
/*============= SEC03 ==============*/
.sec03 {
    padding-top: 178px;
    margin-bottom: 155px;
}
.sec03 .ttl_h3_cen:before {
    top: 20px;
}
.sec03_item {
    display: flex;
    justify-content: center;
}
.sec03_item li:not(:last-child) {
    margin-right: 40px;
}
.sec03_item li {
    width: 460px;
}
.sec03_tt {
    font-family: var(--f-yumin);
    font-size: 30px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #343434;
    margin-bottom: 16px;
    font-weight: bold;
}
.sec03 .ttl_h3_cen {
    margin-bottom: 23px;
}
.sec03_calc {
    padding: 20px 15px;
    border: 1px #efefef solid;
    height: 415px;
}
/*============= SEC04 ==============*/
.sec04 {
    background: #F2F3EE;
    padding-bottom: 80px;
    margin-bottom: 150px;
}
.sec04_ttl {
    text-align: center;
    font-size: 32px;
    letter-spacing: 0.05em;
    font-weight: 400;
    font-family: var(--f-yumin);
    position: relative;
    top: -21px;
    margin-bottom: 56px;
    color: #3E4B43;
}
.sec04_ttl:before, .sec04_ttl:after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #A8A8A8;
}
.sec04_ttl:before {
    width: 1px;
    height: 50px;
    top: -73px;
}
.sec04_ttl:after {
    width: 9px;
    height: 9px;
    background: #a8a8a8;
    transform: rotate(45deg);
    top: -30px;
}
.sec04_item {
    position: relative;
    margin-bottom: 75px;
}
.sec04_item, .sec04_item ul {
    display: flex;
}
.sec04_item ul {
    width: 1200px;
    border: 1px #A8A8A8 solid;
}
.sec04_item ul li {
    flex: 1;
    background: #fff;
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.5;
    color: var(--mcolor)
}
.sec04_item ul li:not(:last-child) {
    border-right: 1px #A8A8A8 solid;
}
.sec04_txt {
    position: absolute;
    font-size: 18px;
    letter-spacing: 0.05em;
    color: var(--mcolor);
    right: -55px;
    bottom: -6px;
}
.sec_btn_box {
    display: flex;
    justify-content: center;
}
.ft_btn {
    justify-content: flex-start;
}
.sec_btn_box li:not(:last-child) {
    margin-right: 80px;
}
.sec_btn_box li {
    width: 460px;
    height: 80px;
}
.sec_btn_box li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 0.05em;
    padding-top: 5px;
    position: relative;
}
.sec_btn_box li.sec_btn_tel {
    background: var(--scolor);
}
.sec_btn_box li.sec_btn_con {
    background: var(--mcolor);
}
/*============= SEC05 ==============*/
.sec05 {
    position: relative;
    padding-bottom: 70px;
}
.sec05 .idx_link a {
    background: url(../images/arrow_r_lg.svg) no-repeat right top 4px/35px;
    padding-right: 44px;
}
.sec05:before {
    position: absolute;
    content: "";
    background: url(../images/idx_bg01.jpg) no-repeat center top / 1920px;
    left: calc(50% - 960px);
    top: 0;
    z-index: -1;
    height: 100%;
    width: 1920px;
    transform: scaleX(-1);
}
.sec05_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sec05_item .item_r {
    max-width: 580px;
    margin-left: 50px;
    position: relative;
}
.sec05_txt {
    margin-bottom: 40px;
}
.sec05_txt p {
    letter-spacing: 0.05em;
}
.sec05 .ttl_h3 {
    position: relative;
    top: -49px;
    margin-bottom: -2px;
}
/*============= SEC06 ==============*/
.sec06 {
    padding-top: 100px;
    background: linear-gradient(#fff 0%, #f1f2ee 62.57%, #f1f2ed 100%);
    padding-bottom: 94px;
    margin-bottom: 101px;
}
.sec06_item {
    display: flex;
    flex-wrap: wrap;
}
.sec06_item li:not(:nth-child(2n)) {
    margin-right: 6px;
}
.sec06_item li {
    width: calc(50% - 3px);
    height: 240px;
    background: #7FB79E;
    color: #fff;
    margin-bottom: 6px;
    padding: 30px 40px 25px 40px;
}
.sec05_ttl {
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.sec05_txt {
    line-height: 1.8;
    letter-spacing: 0.05em;
}
.sec06 .ttl_h3 {
    margin-bottom: 46px;
}
/*============= SEC07 ==============*/
.sec07 {
    margin-bottom: 94px;
}
.sec07 .ttl_h3 {
    margin-bottom: 30px;
}
.sec07_item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}
.sec07 .ttl_h3 .en {
    padding-right: 53px;
}
.sec07_item li {
    width: calc(20% - 5px);
    height: 150px;
    background: #f1f2ed;
    margin-bottom: 6px;
    position: relative;
}
.sec07_item li.icon01 a {
    background: url("../images/icon01.svg") no-repeat center top 27px;
}
.sec07_item li.icon02 a {
    background: url("../images/icon02.svg") no-repeat center top 36px;
}
.sec07_item li.icon03 a {
    background: url("../images/icon03.svg") no-repeat left calc(50% - -5px) top 26px;
}
.sec07_item li.icon04 a {
    background: url("../images/icon04.svg") no-repeat center top 30px;
}
.sec07_item li.icon05 a {
    background: url("../images/icon05.svg") no-repeat center top 53px;
}
.sec07_item li.icon06 a {
    background: url("../images/icon06.svg") no-repeat center top 36px;
}
.sec07_item li.icon07 a {
    background: url("../images/icon07.svg") no-repeat center top 47px;
}
.sec07_item li.icon08 a {
    background: url("../images/icon08.svg") no-repeat left calc(50% + 6px) top 35px;
}
.sec07_item li.icon09 a {
    background: url("../images/icon09.svg") no-repeat left calc(50% + 5px) top 22px;
}
.sec07_item li.icon10 a {
    background: url("../images/icon10.svg") no-repeat center top 35px;
}
.sec07_item li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #3e4b43;
    padding-top: 104px;
    position: relative;
}
/*============= SEC08 ==============*/
.sec08 {
    position: relative;
    color: #fff;
    padding-top: 80px;
    max-width: 1920px;
    margin: 0 auto;
}
.sec08 .ttl_h3 {
    margin-bottom: 38px;
}
.sec08 .ttl_h3 .en {
    padding-right: 52px;
    margin-bottom: 7px;
}
.sec08 .ttl_h3 .en:before {
    right: 2px;
}
.sec08 .ttl_h3 .ja, .sec08 .ttl_h3 .en {
    color: #fff;
}
.sec08 .ttl_h3 .en {
    color: #D6D6D6;
}
.sec08:before {
    position: absolute;
    content: "";
    width: calc(100% - 352px);
    height: calc(100% - 80px);
    top: 0;
    left: 0;
    background: var(--mcolor);
}
.sec08 .inner {
    width: 100%;
    padding: 0;
}
.sec08_item {
    display: flex;
    justify-content: space-between;
}
.sec08_item .item_l {
    width: calc(50% - 10px);
    min-height: 530px;
}
.sec08_item .item_l .wrap {
    max-width: 590px;
    margin-left: auto;
    padding-right: 70px;
    padding-top: 19px;
    color: #fff;
}
.sec08_item .item_r {
    width: calc(50% + 7.5px);
    position: relative;
    right: -7px;
}
.sec08_txt p {
    letter-spacing: 0.05em;
}
/*============= SEC09 ==============*/
.sec09 {
    padding-top: 100px;
    margin-bottom: 60px;
}
.ttl_h3_cen .ja:before, .ttl_h3_cen .ja:after {
    top: 17px;
}
.sec09_item {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
.sec09_item li {
    width: 480px;
    height: 100px;
    margin-bottom: 40px;
    position: relative;
}
.sec09_item li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px #335D43 solid;
    font-size: 18px;
    color: var(--mcolor);
    background: url("../images/icon_square.png") no-repeat right 13px bottom 13px/12.5px;
    padding-top: 3px;
    letter-spacing: 0.05em;
}
.sec09_item li:not(:nth-child(2n)) {
    margin-right: 40px;
}
.sec09 .ttl_h3 {
    margin-bottom: 36px;
}
.sec11_map {
    text-align: center;
}
.ttl_h3.sec_ttl11 {
    margin-bottom: 46px;
}
/*============= SEC10 ==============*/
.sec10 {
    margin-bottom: 100px;
}
.sec10 .sec_load_item {
    height: 255px;
    background: #f1f2ed;
    padding: 70px 70px;
}
.sec11 {
    margin-bottom: 96px;
}
/*============= SEC11 ==============*/
@media screen and (min-width: 751px) {}
/*==========================================================
                        F O O T E R
==========================================================*/
footer {
    position: relative;
    z-index: 3;
}
.ft_top .inner, .ft_bt .inner {
    display: flex;
}
.ft_bt .inner {
    align-items: flex-end;
}
.ft_top .inner {
    width: 100%;
    padding: 0;
}
.ft_link {
    width: 640px;
    margin-left: auto;
    flex-shrink: 0;
    position: relative;
    top: -16px;
}
.ft_logo {
    margin-right: 60px;
}
.ft_map {
    display: block;
}
.ft_map iframe {
    border: none;
}
.ft_bt {
    padding: 96px 0 7px;
}
.ft_link ul {
    display: flex;
    justify-content: space-between;
    position: relative;
    right: -3px;
}
.ft_link ul li {
    letter-spacing: 0.05em;
    font-size: 18px;
}
.ft_link ul li a {
    text-underline-offset: 4px;
}
.ft_top .ttl_h3 {
    margin-bottom: 37px;
}
.ft_top .ttl_h3 .en {
    margin-bottom: 12px;
}
.ft_top {
    background: #f1f2ed;
}
.ft_top > div {
    min-height: 883px;
}
.ft_top_l {
    /* flex-grow: 1; */
    padding-top: 95px;
    width: calc(50% + 69px);
}
.ft_map iframe {
    width: 100%;
    height: 460px;
}
.ft_top_r {
    position: relative;
    max-width: 900px;
}
.ft_info {
    width: 530px;
    margin-left: auto;
    margin-right: 130px;
}
.ft_info_box {
    margin-bottom: 40px;
}
.ft_info_box dl {
    display: flex;
    border-bottom: 1px #A8A8A8 solid;
    padding: 15px 0px;
}
.ft_info_box dl dt {
    width: 105px;
    font-family: var(--f-yumin);
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--mcolor);
}
.ft_info_box dl.item01 dd {
    letter-spacing: 0.05em;
}
.ft_info_box dl dd p {
    line-height: 1.75;
    letter-spacing: 0.05em;
}
.ft_info_box dl dd p:not(:last-child) {
    margin-bottom: 15px;
}
.sec_btn_box.ft_btn li {
    width: 250px;
    height: 70px;
}
.sec_btn_box.ft_btn li:not(:last-child) {
    margin-right: 21px;
}
.sec_btn_box.ft_btn li a {
    font-size: 18px;
    width: 250px;
}
address {
    padding: 20px 0 29px;
    text-align: right;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 12px;
    letter-spacing: 0.05em;
}
/* BACK TO TOP */
.to_top {
    position: fixed;
    z-index: 9;
    width: 70px;
    height: 70px;
    bottom: 20px;
    right: 10px;
    cursor: pointer;
    transition: all .2s;
    opacity: 0;
    visibility: hidden;
}
.to_top img {
    border: 1px #fff solid;
}
.to_top.show {
    transform: scale(1);
    opacity: 1;
    visibility: visible
}
/* FIREFOX ONLY */
@-moz-document url-prefix() {}
/* Safari 10.1+ (which is the latest version of Safari at this time) */
@media not all and (min-resolution: 0.001dpcm) {}