@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: 1.8em;
    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: #333;
    --txt1: #000;
    --mcolor: #B49531;
    --scolor: #9B7600;
    --container: 1270px;
    --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;
    position: relative;
}
.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: 0px;
    top: 0px;
    width: 100px;
    height: 100px;
    background: #333;
    display: flex;
    justify-content: center;
    z-index: 999;
    padding-top: 30px;
    transform: translateY(0px);
    transition: all 0.3s;
}
.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: 1px;
    transition: all ease 0.15s;
    background-color: #fff;
}
.hamburger-box .tt {
    position: relative;
    left: -9px;
    top: 35px;
    font-size: 16px;
    font-family: var(--f-yumin);
    color: #fff;
    letter-spacing: 0.05em;
}
.hamburger-inner::after, .hamburger-inner::before {
    display: block;
    content: ""
}
.hamburger-inner::before {
    top: -12px;
}
.hamburger-inner::after {
    bottom: -12px;
}
.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, 9px, 0) rotate(47deg);
    width: 37px;
}
.hamburger--3dxy.is_active .hamburger-inner::after {
    transform: translate3d(0, -15px, 0) rotate(-47deg);
    width: 37px;
}
nav {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    display: none;
    height: 100vh;
    background: transparent;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.2);
}
nav .inner {
    width: 100%;
    padding: 0;
    display: flex;
    height: 100%;
    align-items: center;
    max-width: 1060px;
    margin-right: 0;
    background: #333333;
    padding-left: 120px;
    padding-top: 74px;
}
nav .inner .nav_list {
    background: #333333;
    display: flex;
    flex-wrap: wrap;
    width: 600px;
}
nav .inner .nav_list > div {
    margin-bottom: 27px;
}
.nav_list > div {
    width: 280px;
}
.nav_ttl {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    border-bottom: 1px #fff solid;
    padding-bottom: 2px;
}
.nav_ttl:before {
    position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    background: #fff;
    border-radius: 50%;
    left: 0;
    top: 8px;
}
.nav_list {
    flex-wrap: wrap;
}
.nav_list li {
    margin-bottom: 5px;
}
.nav_list li a, .nav_ttl {
    font-size: 16px;
    letter-spacing: 0.09em;
    color: #fff;
}
.nav_list li a {
    padding-left: 19px;
    background: url("../images/arrow_w.svg") no-repeat left top 6px/9px;
}
.is_scroll .h_box {
    background-color: rgba(255, 255, 255, 1);
    height: 100px;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
}
.is_scroll .h_box .h_left {
    transform: translateY(-45px);
    padding-bottom: 0;
}
.is_scroll .h_info {
    opacity: 0;
    visibility: hidden;
    display: none;
}
header {
    position: relative;
    z-index: 9;
}
body.is_nav {
    overflow: hidden;
}
#logo {
    margin-right: -10px;
}
h1 {
    font-size: 14px;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: 0.05em;
    padding-top: 1px;
    transform: translateY(0px);
    transition: all 0.3s;
    margin-right: -100px;
    width: 100%;
    color: #585858;
    margin-bottom: 18px;
}
.is_scroll h1 {
    opacity: 0;
    visibility: hidden;
}
.h_box {
    width: 100%;
    position: fixed;
    transition: all 0.3s;
    background-color: rgba(255, 255, 255, 0);
    transform: translateY(0);
	top: 0;
}
.h_inner {
    display: flex;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    padding: 0px 100px 0px 0px;
    transition: all 0.3s;
    align-items: flex-start;
}
.boxcontact {
    display: flex;
    align-items: center;
}
.boxcontact > p {
    margin-bottom: 0;
}
.boxcontact > p a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 100px;
    position: relative;
    color: #FFF;
    text-align: center;
    font-family: var(--f-yumin);
}
.contact_mail a {
    background: #b49531;
    padding-top: 7px;
}
.contact_mail a span {
    position: relative;
    z-index: 2;
    font-size: 18px;
    display: inline-block;
    padding-left: 26px;
}
.contact_mail a span::before {
    content: '';
    position: absolute;
    width: 19px;
    height: 14px;
    left: 0;
    top: calc(50% - 8px);
    background: url('../images/icon_mail.svg') no-repeat center /cover;
}
.contact_tel a {
    font-size: 24px;
    line-height: 1;
    background: #9b7600;
    padding-top: 5px;
}
.contact_tel a span {
    font-size: 16px;
    margin-right: 7px;
    position: relative;
    bottom: -3px;
}
.h_left {
    width: 730px;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 31px;
    transition: all 0.3s;
    padding-left: 50px;
}
.c_info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 330px;
}
.c_info li {
    width: 160px;
    height: 30px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-yumin);
    font-size: 14px;
    letter-spacing: 0.09em;
    color: #b49531;
    margin-bottom: 10px;
    padding-top: 2px;
}
.h_hour {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin-left: auto;
    padding-top: 30px;
    margin-right: 28px;
}
.h_hour .space {
    margin-left: 4px;
}
/*==========================================================
                  M A I N    V I S U A L
==========================================================*/
main {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}
.mv {
    position: relative;
    padding: 0;
    padding-bottom: 82px;
    z-index: 2;
    background: #fff;
}
.mv:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 300px;
    background: #F6F2EB;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.mv:after {
    position: absolute;
    content: "";
    background: #fff;
    width: 4000px;
    height: 245px;
    left: calc(50% - 4193px);
    bottom: -100px;
    z-index: 1;
}
.mv_en {
    -webkit-writing-mode: sideways-lr;
    -moz-writing-mode: vertical-ll;
    -ms-writing-mode: tb-lr;
    writing-mode: sideways-lr;
    -webkit-text-orientation: mixed;
    -moz-text-orientation: mixed;
    -ms-text-orientation: mixed;
    text-orientation: upright;
}
.mv_en {
    position: absolute;
    left: 42px;
    letter-spacing: 0.02em;
    font-size: 20px;
    letter-spacing: 0.2em;
    color: #ccc;
    bottom: 394px;
}
.mv_bg {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transition: all .3s;
}
.mv_bg.init {
    opacity: 1
}
.mv_slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}
.mv_bg, .mv_slider_ite {
    width: calc(100% - 100px);
    height: 900px;
    margin-left: auto;
}
.mv_slider_ite .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center
}
.mv_slider_ite .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mv_slider .slick-dots li {
    margin: 0 5px;
}
.mv_slider .slick-dots li {
    width: 40px;
    height: 9px;
    transition: all 0.3s;
    background: #333;
}
.mv_slider .slick-dots li button {
    width: 100%;
    height: 100%;
}
.slick-dots li button::before {
    display: none;
}
.mv_slider .slick-dots {
    bottom: 90px;
    left: -45px;
    z-index: 99;
}
.mv_slider .slick-dots li.slick-active {
    background: #b49531;
    pointer-events: none;
}
.mv_txt {
    position: absolute;
    z-index: 2;
    top: 46.4%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    max-width: 1228px;
}
.mv_txt h2 {
    display: flex;
    flex-direction: column;
    color: var(--txt1);
    font-size: 50px;
    font-family: var(--f-yumin);
    align-items: flex-start;
}
.mv_txt h2 .bg {
    background: #fff;
    padding: 16px 11px 14px 11px;
    margin-bottom: 10px;
}
.mv_txt h2 .bg2 {
    padding: 16px 12px 14px 13px;
}
.mv_txt h2 .yl {
    color: var(--mcolor);
}
.mv_txt h2 .sm {
    font-size: 80%;
}
.mv_txt h2 .lg {}
.sroll {
    position: absolute;
    left: calc(50% - 486px);
    bottom: 120px;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: sideways-rl;
    -webkit-text-orientation: mixed;
    -moz-text-orientation: mixed;
    -ms-text-orientation: mixed;
    text-orientation: upright;
    font-size: 20px;
    letter-spacing: 0.05em;
    font-family: var(--f-yumin);
    z-index: 9;
}
.sroll a {
    color: #b49531;
    position: relative;
    padding-left: 12px;
}
.sroll a:before, .sroll a:after {
    position: absolute;
    content: "";
    background: #333;
}
.sroll a:before {
    width: 2px;
    height: 150px;
    left: 0;
    top: -1px;
}
.sroll a:after {
    width: 8px;
    height: 8px;
    left: -3px;
    top: 7px;
    border-radius: 50%;
    -webkit-animation: scroll_down 3s infinite;
    -moz-animation: scroll_down 3s infinite;
    -ms-animation: scroll_down 3s infinite;
    -o-animation: scroll_down 3s infinite;
    animation: scroll_down 3s infinite;
    display: block;
}
@keyframes scroll_down {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(130px);
        opacity: 0;
    }
}
/*==========================================================
                M A I N    C O N T E N T
==========================================================*/
/* DEFAULT TITLE */
.ttl_h2 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--f-yumin);
}
.ttl_h2.ttl_left {
    align-items: flex-start;
}
.ttl_h2:not(:last-child) {
    margin-bottom: 30px;
}
.ttl_h2 .ja {
    font-size: 35px;
    color: #000;
    margin-bottom: 10px;
    display: inline-block;
}
.ttl_h2.ttl_left {
    text-align: left;
}
.ttl_h2 .ja .lg {
    font-size: 114.2%;
    margin-bottom: 3px;
}
.ttl_h2 .ja .mid {
    font-size: 114.2%
}
.ttl_h2.ttl_w .ja {
    color: #fff;
    line-height: 1.55;
}
.ttl_h2 .en {
    font-size: 20px;
    letter-spacing: 0.05em;
    color: var(--mcolor);
    line-height: 0.7;
}
.ttl_h2 .yl {
    color: var(--mcolor);
}
/* DEFAUTL NAME BUTTON */
.btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px;
    height: 60px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid #f6f2eb;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    font-family: var(--f-yumin);
    font-size: 16px;
    line-height: 25px;
    text-align: center;
    color: var(--txt1);
    position: relative;
    padding-top: 2px;
}
.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 20px;
}
/*============= SEC01 ==============*/
.sec01 {
    position: relative;
    z-index: 1;
    padding-bottom: 12px;
    background: #fff;
}
.sec01 .ttl_h2 {
    margin-bottom: 105px;
}
.sec01 .inner {
    color: #fff;
    padding-top: 300px;
}
.sec01:before, .sec01:after {
    position: absolute;
    content: "";
}
.sec01:before {
    width: 1920px;
    height: 100%;
    background: url("../images/idx_bg01_pc.jpg") no-repeat center top;
    left: calc(50% - 960px);
    top: 0;
    z-index: -1;
}
.sec01:after {
    background: url("../images/arrow_lg.png") no-repeat center top;
    width: 1240px;
    height: 107px;
    margin: 0 auto;
    bottom: -107px;
    left: 0;
    right: 0;
}
.sec01_item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 85px;
}
.sec01_item > div {
    width: 280px;
    height: 280px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
}
.sec01_item > div:before {
    position: absolute;
    content: "";
    border: 2px solid #fff;
    opacity: 0.25;
    left: 8px;
    top: 8px;
    bottom: 8px;
    right: 8px;
    border-radius: 50%;
}
.sec01_item > div p {
    font-size: 28px;
    line-height: 1.5;
    font-family: var(--f-yumin);
    text-align: center;
}
.sec01_item > div p .sm {
    font-size: 85%;
}
.sec01_item > div p .line {
    position: relative;
}
.sec01_item > div p .line:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: #fff;
    left: 0;
    bottom: 0;
}
.sec01_sty {
    text-align: center;
    font-family: var(--f-yumin);
    font-size: 35px;
    line-height: 1.85em;
}
.sec01_sty .line {
    position: relative;
}
.sec01_sty .line:before {
    position: absolute;
    content: "";
    width: calc(100% - 22px);
    height: 4px;
    background: #fff;
    left: 13px;
    bottom: -6px;
}
.sec01_sty .sm {
    font-size: 30px;
}
.sec01_sty .sm .lg {
    font-size: 116.6%;
}
.sec01_sty .point {
    position: relative;
    padding-top: 10px;
}
.sec01_sty .point:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
}
/*============= SEC02 ==============*/
.sec02 {
    padding-top: 383px;
    position: relative;
    background: #fff;
}
.sec02 .ttl_h2 .ja {
    margin-bottom: 13px;
}
.sec02:before {
    position: absolute;
    content: "";
    background: url("../images/idx_img_01_pc.png") no-repeat center top/1920px;
    left: calc(50% - 960px);
    top: 0;
    margin: 0 auto;
    width: 1920px;
    height: 630px;
}
.sec02 .ttl_h2 {
    margin-bottom: 106px;
}
.sec02 .ttl_h2 .yl {
    font-size: 40px;
}
.sec02 .ttl_h2 .yl .lg {
    font-size: 125%;
}
.sec02_item {
    display: flex;
    padding-bottom: 98px;
}
.sec02_item .item1 {
    flex-shrink: 0;
    margin-right: 35px;
}
.sec02_map {
    margin-bottom: 18px;
}
.sec02_item .item2 {
    padding-top: 63px;
}
.sec02_ttl {
    font-family: var(--f-yumin);
    font-size: 30px;
    line-height: 1;
    color: var(--txt1);
    margin-bottom: 31px;
}
.sec02_note {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.71;
    color: var(--txt1);
}
.sec02_txt {
    margin-bottom: 51px;
}
/*============= SEC03 ==============*/
.sec03 {
    padding-bottom: 100px;
    background: #fff;
}
.sec03 .ttl_h2 {
    flex-direction: row;
    position: relative;
    margin-bottom: 38px;
}
.sec03 .ttl_h2:before {
    position: absolute;
    content: "";
    width: 661px;
    height: 1px;
    background: #B49531;
    right: 0;
    top: 24px;
}
.sec03 .ttl_h2 .en {
    position: relative;
    top: 5px;
}
.sec03 .ttl_h2 .sm {
    font-size: 85.7%;
}
.sec03 .ttl_h2 .ja {
    margin-right: 11px;
}
.sec03_item {
    display: flex;
    flex-wrap: wrap;
}
.sec03_item > div {
    width: 386px;
    margin-bottom: 46px;
}
.sec03_item > div:not(:nth-child(3n)) {
    margin-right: 41px;
}
.sec03_img {
    margin-bottom: 21px;
}
.sec03_ttl {
    font-family: var(--f-yumin);
    font-size: 20px;
    line-height: 1.25;
    color: var(--txt1);
    position: relative;
    margin-bottom: 7px;
    padding-bottom: 6px;
}
.sec03_ttl:before {
    position: absolute;
    content: "";
    width: 60px;
    height: 1px;
    background: #b49531;
    left: 0;
    bottom: 0;
}
.sec03_txt {}
.sec03_txt p {}
.sec03_txt .sm_txt {
    color: var(--txt2);
    font-size: 14px;
}
.sec03_txt.idx_com .mb1 {
    margin-bottom: 3px;
}
/*============= SEC04 ==============*/
.sec04 {
    background: #f2ede3;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}
.sec04:before {
    position: absolute;
    content: "";
    background: #f6f2eb;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.sec04_item {}
.sec04_item > div {
    display: flex;
    align-items: flex-end;
}
.sec04_item > div.item2 {
    justify-content: flex-start;
    flex-direction: row-reverse;
}
.sec04_item > div.item1 {
    margin-bottom: 80px;
}
.sec04_box {
    display: flex;
    position: relative;
}
.sec04_item > div .wrap {
    background: #fff;
    width: 450px;
    padding: 51px 50px 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}
.sec04_item > div.item1 .wrap {
    margin-left: -50px;
}
.sec04_item > div.item2 .wrap {
    margin-right: -50px;
}
.sec04_img {
    flex-shrink: 0;
    margin-bottom: 0;
}
.sec04_round {
    position: absolute;
    display: flex;
    bottom: 48px;
    right: 95px;
}
.item1 .sec04_round {
    bottom: 48px;
    right: 95px;
}
.item2 .sec04_round {
    bottom: 44px;
    left: 70px;
}
.sec04_round li {
    width: 140px;
    height: 140px;
    background: linear-gradient(#dbb94d 0%, #b49531 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-family: var(--f-yumin);
    font-size: 18px;
    line-height: 25px;
    border-radius: 50%;
    position: relative;
}
.sec04_round li:before {
    position: absolute;
    content: "";
    border: 1px solid #e5d6a8;
    left: 5px;
    bottom: 5px;
    right: 5px;
    top: 5px;
    border-radius: 50%;
}
.sec04_round li:not(:last-child) {
    margin-right: 20px;
}
.sec04_ttl {
    font-family: var(--f-yumin);
    font-size: 20px;
    line-height: 1.25;
    color: #000;
    position: relative;
    width: 100%;
    padding-bottom: 6px;
    margin-bottom: 12px;
}
.sec04_ttl:before {
    position: absolute;
    content: "";
    width: 60px;
    height: 1px;
    background: #b49531;
    left: 0;
    bottom: 0;
}
.sec04_txt {
    margin-bottom: 28px;
}
/*============= SEC05 ==============*/
.sec05 {
    position: relative;
    padding-top: 150px;
    z-index: -1;
    padding-bottom: 153px;
}
.sec05 .ttl_h2 .ja .sm {
    font-size: 85.7%;
}
.sec05:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg02_pc.png")#000 center top 100px no-repeat;
    width: 1920px;
    height: 100%;
    left: calc(50% - 960px);
    top: 0;
    background-attachment: fixed;
    background-size: cover;
}
.sec05 .inner {
    display: flex;
}
.sec05 .ttl_h2 {
    flex-shrink: 0;
    margin-right: 100px;
    position: fixed;
    left: 0;
    top: 245px;
    max-width: 1240px;
    right: 0;
    margin: 0 auto;
}
.sec05_item {
    margin-left: auto;
}
.sec05_item > div {
    width: 620px;
    background: #fff;
    padding: 45px 50px 41px;
    position: relative;
}
.sec05_item > div:before {
    position: absolute;
    content: "";
    width: 100px;
    height: 100px;
    background: #b49531;
    left: 0;
    top: 0;
}
.sec05_item > div:not(:last-child) {
    margin-bottom: 50px;
}
.sec05_ttl {
    font-family: var(--f-yumin);
    font-size: 30px;
    color: var(--txt1);
    margin-bottom: 16px;
    text-align: center;
}
.sec05_ttl .sm {
    font-size: 83%;
}
.sec05_img {
    margin-bottom: 19px;
    position: relative;
    z-index: 1;
}
.sec05_txt {
    margin-bottom: 38px;
}
/*============= SEC06 ==============*/
.sec06 {
    padding-top: 100px;
    background: #fff;
    position: relative;
    padding-bottom: 371px;
}
.sec06:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg03.png") no-repeat center bottom/1920px;
    left: calc(50% - 960px);
    bottom: 0;
    height: 100%;
    width: 1920px;
}
.sec06 .ttl_h2 .ja {
    margin-bottom: 12px;
}
.sec06_pickup {
    width: 1240px;
    height: 300px;
    background: #fff;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    margin-bottom: 97px;
}
.sec06_pickup:before, .sec06_pickup:after {
    position: absolute;
    content: "";
}
.sec06_pickup:before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url("../images/bor1.png") no-repeat left top/60px, url("../images/bor2.png") no-repeat right top/60px, url("../images/bor3.png") no-repeat left bottom/60px, url("../images/bor4.png") no-repeat right bottom/60px;
}
.sec06_pickup p {
    font-family: var(--f-yumin);
    font-size: 28px;
    line-height: 2.49;
    text-align: center;
    color: var(--txt1);
    margin-bottom: 0;
    padding-bottom: 5px;
}
.sec06 .ttl_h2 {
    margin-bottom: 66px;
}
.sec06_con {
    display: flex;
    position: relative;
    background: #fff;
}
.sec06_con .item1 {
    width: 571px;
    flex-shrink: 0;
    margin-right: 50px;
}
.sec06_con .item2 {
    flex-grow: 1;
    position: relative;
}
.sec06_con .item2:before {
    position: absolute;
    content: "";
    background: url("../images/idx_img_14_pc.jpg") no-repeat left top/960px;
    width: 960px;
    height: 620px;
    left: 0;
    top: 2px;
}
.sec06_txt {
    margin-bottom: 98px;
}
.sec06_name {
    display: flex;
    flex-direction: column;
    font-family: var(--f-yumin);
    background: #fff;
    margin-bottom: 0;
    padding-bottom: 29px;
}
.sec06_name .sm {
    font-size: 24px;
    color: var(--txt1);
    margin-bottom: 18px;
}
.sec06_name .mid {
    font-size: 25px;
}
.sec06_name .mid .lg {
    font-size: 120%;
    margin-left: 10px;
    position: relative;
    bottom: 2px;
    margin-right: 20px;
}
.sec06_name .mid .en {
    font-size: 20px;
    letter-spacing: 0.05em;
    color: var(--mcolor);
}
.sec06_name .let1 {
    margin-left: 8px;
}
.sec06_item {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    margin-bottom: 39px;
}
.sec06_item > li {
    width: 600px;
    height: 255px;
    background: #fff;
    padding: 35px 40px;
}
.sec06_item > .item1 .txt1 p {
    margin-bottom: 1px;
    display: flex;
    font-weight: 500;
}
.sec06_item > .item1 .txt1 p .space {
    flex-shrink: 0;
}
.sec06_item > .item2 {}
.sec06_item > li .title {
    font-family: var(--f-yumin);
    font-size: 18px;
    color: var(--txt1);
    position: relative;
    margin-bottom: 7px;
    width: 456px;
}
.sec06_item > li .title:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--mcolor);
    left: 0;
    top: 50%;
}
.sec06_item > li .title span {
    background: #fff;
    padding: 0 5px 0 0;
    margin-right: 15px;
    position: relative;
}
.sec06_item > li .txt {
    line-height: 1.875;
    font-weight: 500;
}
/*============= SEC07 ==============*/
.sec07 {
    background: #fff;
    position: relative;
    padding-top: 500px;
    z-index: 2;
    padding-bottom: 102px;
}
.sec07 .ttl_h2 .ja {
    line-height: 1.55;
}
.sec07:before {
    background: url("../images/idx_img_15_pc.jpg") no-repeat center top/1920px;
    width: 1920px;
    height: 500px;
    left: calc(50% - 960px);
    top: 0;
}
.sec07 .ttl_h2 {
    position: relative;
    top: -3px;
    margin-bottom: 103px;
}
.sec07 .ttl_h2 .ja .sm {
    font-size: 85.7%;
}
.sec07:before, .sec07:after, .sec07 .inner:before {
    position: absolute;
    content: "";
}
.sec07 .inner:before {
    width: 1240px;
    height: 141px;
    background: #fff;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -100px;
}
.sec07:after {
    width: 100%;
    height: 400px;
    background: #f6f2eb;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.sec07_item {
    display: flex;
    justify-content: space-between;
}
.sec07_item .item1 {
    position: relative;
    margin-top: -2px;
}
.sec07_img {
    flex-shrink: 0
}
.sec07_ttl {
    font-family: var(--f-yumin);
    font-size: 30px;
    line-height: 1.5;
    color: #000;
    margin-bottom: 18px;
}
.sec07_ttl .sm {
    font-size: 83%;
}
.sec07_txt {
    max-width: 580px;
}
.sec07_list {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: -100px;
    margin-bottom: 50px;
}
.sec07_list li {
    width: 280px;
    height: 138px;
    background: #a98929;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-yumin);
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    z-index: 1;
}
.sec07_list li:not(:last-child) {
    margin-right: 20px;
}
.sec07_list li:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #b49531;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    z-index: -1;
}
/*============= SEC08 ==============*/
.sec08 {
    padding-top: 100px;
    background: #fff;
    padding-bottom: 100px;
}
.sec08_item {
    display: flex;
    justify-content: space-between;
}
.sec08_item > div {
    width: 600px;
    flex-shrink: 0;
}
.sec08_item > div:not(:last-child) {
    margin-right: 40px;
}
.sec08_ttl {
    font-size: 30px;
    font-family: var(--f-yumin);
    text-align: center;
    color: var(--txt1);
    margin-bottom: 17px;
}
.sec08_ttl .sm {
    font-size: 86.6%;
}
.sec08_ttl .x_sm {
    font-size: 83%;
}
.sec08_list {
    display: flex;
    position: relative;
    margin-top: -50px;
    margin-bottom: 28px;
    justify-content: space-between;
}
.sec08_list li {
    width: 186px;
    height: 80px;
    background: #a98929;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-yumin);
    font-size: 20px;
    line-height: 1.25;
    text-align: center;
    z-index: 1;
    padding-top: 2px;
}
.sec08_list li:not(:last-child) {
    margin-right: 20px;
}
.sec08_list li:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #b49531;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    z-index: -1;
}
.sec08_img {
    margin-bottom: 0;
}
.sec08_txt {
    margin-bottom: 38px;
}
/*============= SEC09 ==============*/
.sec09 {
    position: relative;
    background: #fff;
    padding-top: 170px;
    padding-bottom: 67px;
}
.sec09 .ttl_h2 .ja {
    margin-bottom: 0;
    letter-spacing: 0.3em;
    line-height: 1.4;
    margin-left: 6px;
    white-space: nowrap;
}
.sec09:before {
    position: absolute;
    content: "";
    width: 4000px;
    height: 245px;
    background: #f6f2eb;
    left: calc(50% - 4000px);
    top: 0;
}
.sec09 .inner {
    display: flex;
    flex-direction: row-reverse;
    padding-right: 108px;
    align-items: flex-start;
}
.sec09 .ttl_h2 {
    align-items: flex-start;
    position: relative;
    top: -114px;
}
.sec09 .ttl_h2 {
    -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: inherit;
    margin-bottom: 0;
    flex-shrink: 0;
}
.sec09_item {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
}
.sec09_item > div {
    width: 500px;
    height: 250px;
    position: relative;
    margin-right: 21px;
    margin-bottom: 20px;
    z-index: 1;
    overflow: hidden;
}
.sec09_item > div > a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    letter-spacing: 0.02em;
    font-family: var(--f-yumin);
}
.sec09_item > div > a .sm {
    font-family: var(--f-yumin);
    font-size: 20px;
    margin-bottom: 1px;
}
.sec09_item > div > a .lg {
    font-size: 30px;
}
.sec09_item > div:nth-child(n+3) {
    width: 326px;
}
.sec09_item > div:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.3s;
}
.sec09_item > div.item1:before {
    background: url("../images/idx_img_19_pc.jpg") no-repeat center top/cover;
}
.sec09_item > div.item2:before {
    background: url("../images/idx_img_20_pc.jpg") no-repeat center top/cover;
}
.sec09_item > div.item3:before {
    background: url("../images/idx_img_21_pc.jpg") no-repeat center top/cover;
}
.sec09_item > div.item4:before {
    background: url("../images/idx_img_22_pc.jpg") no-repeat center top/cover;
}
.sec09_item > div.item5:before {
    background: url("../images/idx_img_23_pc.jpg") no-repeat center top/cover;
}
.sec09_item > div.item2, .sec09_item > div.item5 {
    margin-right: 0;
}
/*============= SEC10 ==============*/
.sec10 {
    position: relative;
    padding-top: 960px;
    background: #fff;
    padding-bottom: 200px;
    max-width: 1920px;
    margin: 0 auto;
}
.sec10 .ttl_h2 {
    margin-bottom: 44px;
}
.sec10_txt.idx_com p:not(:last-child) {
    margin-bottom: 31px;
}
.sec10 .ttl_h2 .ja {
    margin-bottom: 12px;
}
.sec10:before, .sec10:after {
    position: absolute;
    content: "";
    width: 1360px;
    height: 700px;
}
.sec10:before {
    background: url("../images/idx_img_24_pc.jpg") no-repeat center;
    left: -7px;
    top: 0;
    z-index: 1;
}
.sec10:after {
    background: url("../images/idx_img_25_pc.jpg") no-repeat center;
    right: -9px;
    top: 110px;
}
.sec10_img_sm {
    position: absolute;
    right: -8px;
    top: 750px;
    z-index: 9;
}
.sec10_txt {
    margin-bottom: 46px;
    max-width: 790px;
}
/*============= SEC11 ==============*/
.sec11 {
    background: #f6f2eb;
    padding-top: 92px;
    padding-bottom: 103px;
}
.sec11 .ttl_h2 {
    margin-bottom: 55px;
}
.sec11 .inner {
    background: #fff;
    padding-top: 50px;
    max-width: 1240px;
    padding: 50px 121px 50px;
}
.sec11 .ttl_h2 .ja {
    margin-bottom: 15px;
}
.sec11_tab {
    display: flex;
    margin-bottom: 50px;
}
.sec11_tab li {
    height: 60px;
    position: relative;
    font-family: var(--f-yumin);
    flex: 1;
    font-size: 16px;
    letter-spacing: 0.09em;
}
.sec11_tab li:before, .sec11_tab li a:after, .sec11_tab li:first-child:after {
    position: absolute;
    content: "";
}
.sec11_tab li:first-child:after, .sec11_tab li:before {
    width: 1px;
    height: 60px;
    background: #ccc;
    top: 0;
}
.sec11_tab li:before {
    right: 0;
}
.sec11_tab li:first-child:after {
    left: 0;
}
.sec11_tab li a:after {
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 5px solid #717171;
    border-bottom: 0;
    left: 0;
    right: 0;
    bottom: 9px;
    margin: 0 auto;
    z-index: 9;
    opacity: 0;
    transition: all 0.3s;
}
.sec11_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: #000;
    letter-spacing: 0.09em;
    padding-bottom: 3px;
    padding-top: 6px;
}
.sec11_tab li a.active {
    background: #717171;
    pointer-events: none;
    color: #fff;
}
.sec11_tab li a.active:after {
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 5px solid #fff;
    opacity: 1;
}
.sec11_wrap {
    background: #fff;
    width: 100%;
    margin: 0 auto 50px;
    max-width: 960px;
}
.sec11_wrap .btn {
    margin-top: 50px;
}
.sec11_load dl {
    display: flex;
    flex-direction: column;
    padding-bottom: 17px;
    margin-bottom: 19px;
    align-items: flex-start;
    border-bottom: 1px #CCCCCC dotted;
}
.sec11_load dl dt {
    display: flex;
    margin-bottom: 11px;
}
.sec11_load dl dt .date {
    color: #000;
    font-weight: 500;
    letter-spacing: 0.09em;
    top: 3px;
    position: relative;
}
.sec11_load dl dt .cate {
    padding: 1px 10px 0;
    margin-right: 11px;
    flex-shrink: 0;
    text-align: center;
    font-size: 15px;
    min-width: 100px;
    letter-spacing: 0.05em;
    height: 30px;
    background: #333;
    color: #fff;
    padding-top: 1px;
    font-family: var(--f-yumin);
}
.sec11_load dl dt .cate_case {
    background: #B49531;
}
.sec11_load dl dt .cate_news {
    background: #333;
}
.sec11_load dl dt .cate.cat3 {
    background: #B49531;
}
.sec11_load dl dd {
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
    line-height: 1.6;
    font-size: 16px;
    letter-spacing: 0.09em;
    white-space: nowrap;
    font-weight: 500;
}
.sec11_load dl dd a {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}
/*============= SEC12 ==============*/
.sec12 .inner {
    width: 100%;
    padding: 0;
}
.sec12_slide {
    display: flex;
}
/*============= SEC13 ==============*/
@media screen and (min-width: 751px) {}
.idx_com p {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.8;
    color: var(--txt1);
}
.idx_com p:not(:last-child) {
    margin-bottom: 28px;
}
/*==========================================================
                        F O O T E R
==========================================================*/
footer {
    position: relative;
    z-index: 3;
    background: #fff;
}
.ft_logo {
    width: 290px;
    overflow: hidden;
    margin-right: 18px;
}
.ft_logo a {
    position: relative;
    display: block;
    width: 319px;
}
.ft_top {
    padding-top: 161px;
    background: #fff;
}
.under .ft_top {
    padding-top: 0;
}
.ft_bt {
    background: #fff;
    margin-bottom: 102px;
}
.ft_w {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    align-items: flex-start;
}
.ft_contact {
    background: #F6F2EB;
    padding: 20px 30px;
    margin-bottom: 40px;
}
.ft_contact.boxcontact > p a {
    height: 80px;
}
.ft_contact.boxcontact > p:not(:last-child) a {
    width: 440px;
}
.ft_contact.boxcontact > p:not(:last-child) {
    margin-right: 30px;
}
.ft_box_map {
    width: 620px;
}
.ft_map {
    width: 100%;
    height: 290px;
    margin-bottom: 2px;
}
.ft_map iframe {
    width: 100%;
    height: 100%;
}
.ft_link_gg a {
    font-weight: bold;
    text-decoration: underline;
    letter-spacing: 0.09em;
    color: #333;
    text-underline-offset: 2px;
    background: url("../images/icon_map.png") no-repeat left center/11px;
    padding: 5px 0 3px 20px;
}
.ft_bt .inner, .ft_link_gg {
    display: flex;
    justify-content: space-between;
}
.ft_link_gg {
    justify-content: space-between;
}
.ft_link_gg .txt {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.1em;
    color: var(--txt1);
    padding-top: 5px;
}
.ft_addr {
    color: var(--txt1);
    letter-spacing: 0.01em;
    margin-bottom: 28px;
    line-height: 1.875;
}
.ft_bnr {
    height: 140px;
    background: #F6F2EB;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ft_bnr .inner {
    display: flex;
    justify-content: space-between;
}
.ft_bnr .inner p {
    margin-bottom: 0;
}
.ft_link {
    background: #333333;
    padding: 99px 0 91px;
}
.nav_ttl.mt1 {
    margin-top: 32px;
}
.nav_ttl.mt2 {
    margin-top: 31px;
}
.ft_link .nav_list li {
    margin-bottom: 6px;
}
.ft_txt {
    color: var(--txt1);
    letter-spacing: 0.1em;
    margin-left: 21px;
}
.ft_txt .txt1 {
    margin-right: 20px;
}
.ft_txt .txt2 {
    margin-right: 20px;
}
.ft_txt_con {
    max-width: 1240px;
    margin: 0 auto 45px;
    padding-top: 45px;
}
.ft_txt_con p {
    font-weight: 500;
    line-height: 1.875;
    color: var(--txt1);
}
.ft_calc {
    margin-bottom: 6px;
}
address {
    background-color: #000000;
    padding: 10px;
    color: #fff;
    text-align: center;
    font-weight: 500;
}
/* BACK TO TOP */
.to_top {
    position: fixed;
    z-index: 9;
    width: 60px;
    height: 60px;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    transition: all .2s;
    opacity: 0;
    visibility: hidden;
    background: url("../images/btn_top.svg")#333333 no-repeat center;
    color: #333;
    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) {}
@media not all and (min-resolution: 0.001dpcm) {}
@media not all and (min-resolution: 0.001dpcm) {}
@media not all and (min-resolution: 0.001dpcm) {}