@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700;900&display=swap');

/* Reset */
html{font-size: 62.5%; overflow-x: hidden; scroll-behavior: smooth; overscroll-behavior-y: contain; -webkit-overflow-scrolling: touch;}
body{line-height: 1.7; word-spacing: 0; font-size: 1.6rem; font-family: 'Noto Serif JP', sans-serif; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; -moz-text-size-adjust: 100%;}
body.noScroll,
html.noScroll { overflow: hidden;}
*{margin: 0; padding: 0; box-sizing: border-box; border: 0;}
h1, h2, h3, h4, h5, h6{font-size: 100%; font-weight: normal;}
ol, ul{list-style: none;}
table{border-collapse: collapse; border-spacing: 0;}
th{text-align: left; font-weight: normal;}
a{color: inherit; text-decoration: none; transition: all 0.2s;}
img{vertical-align: bottom; max-width: 100%; height: auto;}
.fontGothic {font-family: 'Noto Sans JP', sans-serif;}
.container {margin: 0 auto; max-width: 1280px; width: calc(100% - 30px);}
.container-1000 {margin: 0 auto; max-width: 1000px; width: calc(100% - 30px);}
.flexBox {display: flex; flex-wrap: wrap; justify-content: space-between;}
.flexBox.cnt {justify-content: center;}
.txtCenter {text-align: center;}
@media (min-width: 768px){
    a[href^="tel:"]{pointer-events: none;}
    .sp{display: none;}
}

@media (max-width: 767px){
    .pc{display: none;}
}

@media print {
    body{color-adjust: exact; -webkit-print-color-adjust: exact; print-color-adjust: exact;}
}

/* Animation */
.fadeIn{opacity: 0; transition: all 1s;}
.fadeIn.is-view{opacity: 1;}
.fadeUp{opacity: 0; transform: translateY(80px); -webkit-transform: translateY(80px); transition: all 1s;}
.fadeUp.is-view{opacity: 1; transform: translateY(0); -webkit-transform: translateY(0);}
.fadeRight{opacity: 0; transform: translateX(-80px); -webkit-transform: translateX(-80px); transition: all 1s;}
.fadeRight.is-view{opacity: 1; transform: translateX(0); -webkit-transform: translateX(0);}
.fadeLeft{opacity: 0; transform: translateX(80px); -webkit-transform: translateX(80px); transition: all 1s;}
.fadeLeft.is-view{opacity: 1; transform: translateX(0); -webkit-transform: translateX(0);}
.zoomIn{opacity: 0; transform: scale(1.1); -webkit-transform: scale(1.1); transition: all .8s;}
.zoomIn.is-view{opacity: 1; transform: scale(1); -webkit-transform: scale(1);}
.slideLeft{
  transition: -webkit-clip-path 3s cubic-bezier(.19,1,.22,1) .1s;
  transition: clip-path 3s cubic-bezier(.19,1,.22,1) .1s;
  transition: clip-path 3s cubic-bezier(.19,1,.22,1) .1s,-webkit-clip-path 3s cubic-bezier(.19,1,.22,1) .1s;
  transition-delay: 0.1s, 0.1s;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 0 0 100%);
}
.slideLeft.is-view{-webkit-clip-path: inset(0 0 0 0); clip-path: inset(0 0 0 0);}
.slideRight{
  transition: -webkit-clip-path 3s cubic-bezier(.19,1,.22,1) .1s;
  transition: clip-path 3s cubic-bezier(.19,1,.22,1) .1s;
  transition: clip-path 3s cubic-bezier(.19,1,.22,1) .1s,-webkit-clip-path 3s cubic-bezier(.19,1,.22,1) .1s;
  transition-delay: 0.1s, 0.1s;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
.slideRight.is-view{-webkit-clip-path: inset(0 0 0 0); clip-path: inset(0 0 0 0);}
.delay1{transition-delay: .3s;}
.delay2{transition-delay: .6s;}
.delay3{transition-delay: .9s;}
.delay4{transition-delay: 1.2s;}
.delay5{transition-delay: 1.5s;}

.hover-underline-animation {
  display: inline-block;
  position: relative;
}
.hover-underline-animation:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 4px;
  bottom: 0;
  left: 0;
  background-color: #ffe100;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.hover-underline-animation:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}




/* Header */
header {
    position: relative;
    z-index: 9;
    padding: 20px 0 0;
    line-height: 1;
    border-bottom: 1px solid #998675;
    margin-bottom: 15px;
    font-family: 'Noto Sans JP', sans-serif;
}

header .container {
    align-items: center;
}

header .logo {
    width: 30%;
    padding-bottom: 15px;
}

.menu > ul {display: flex; font-size: 2rem; color: #998675;}
.menu > ul > li:not(:first-of-type){margin-left: 30px;}
.menu a.soon{pointer-events: none;}

.menu > ul > li{position: relative; padding: 20px 0;}
.menu > ul > li > a{position: relative; display: block; padding: 0 0 15px;}
.menu > ul > li > a:after{content: ''; background: #998675; display: block; width: 0; height: 2px; position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); border-radius: 2px; transition: .4s;}
.menu > ul > li > a:hover:after,
.menu > ul > li > a.active:after{width: 100%;}
.menu > ul > li > a.soon:before{content: 'COMING SOON'; font-size: 1rem; letter-spacing: 0.05em; line-height: 1; font-weight: bold; color: #ea5515; position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); width: 100px; text-align: center;}
.menu-parent > a {cursor: pointer;}
.menu-parent > a span {transform: rotate(90deg); margin-left: 5px; display: inline-block;}
.menu-parent:hover .menu-sub{opacity: 1; pointer-events: auto; visibility: visible; transform: translateY(0);}

.menu-sub{position: absolute; width: 250px; top: 100%; left: -20px; border-radius: 10px; background: #998675; color: #fff; display: block; padding: 10px 0; opacity: 0; pointer-events: none; visibility: hidden; transform: translateY(-20px); transition: .5s;}
.menu-sub a{padding: 7px 0 8px 20px; display: block; position: relative;}
.menu-sub a.active,
.menu-sub a:hover{background: rgba(0,0,0,.2);}
.menu-sub a:after{content: '＞'; position: absolute; right: 15px; top: 7px; display: block;} 
.menu-sub a.soon:after{display: none;} 


.btn-menu{display: none; position: fixed; top: 20px; right: 20px; width: 40px; line-height: 1; font-weight: bold; color: #ea5515; text-align: center; cursor: pointer; z-index: 990;}
.btn-menu a{width: 36px; height: 22px; display: block; position: relative; margin: 0 auto 5px;}
.btn-menu span{display: block; width: 100%; height: 2px; border-radius: 2px; background: #998675; position: absolute; left: 0; transition: .3s;}
.btn-menu span:nth-of-type(1){top: 0;}
.btn-menu span:nth-of-type(2){top: 10px;}
.btn-menu span:nth-of-type(3){top: 20px;}

.btn-menu.is-open span:nth-of-type(1){top: 10px; transform: rotate(45deg);}
.btn-menu.is-open span:nth-of-type(2){width: 0;}
.btn-menu.is-open span:nth-of-type(3){top: 10px; transform: rotate(-45deg);}

main {overflow: hidden; font-size: 2rem;}


footer {
    color: #998675;
    padding: 10px 0 40px;
    border-top: 1px solid #998675;
}
footer .container {
    align-items: center;
}


footer .menuFooter {}
footer .menuFooter ul li {
    display: inline-block;
    margin-right: 20px;
}
footer .menuFooter ul li a.active,
footer .menuFooter ul li a:hover {
    text-decoration: underline;
}
#pagetop {position: fixed; bottom: 10px; right: 10px; width: 60px; height: 60px; z-index: 700; background: url("../images/common/pagetop.svg") no-repeat top left/100% 100%; cursor: pointer; display: none;}
#pagetop a:hover {opacity: 0.6;}


.bannerPage {
    background: url('../images/common/banner_page.jpg') center no-repeat;
    background-size: 100% 100%;
    padding: 25px 0;
    text-align: center;
}

.bannerPage .en {
    font-size: 45px;
    line-height: 1.5;
    color: #ffffff;
    letter-spacing: 0.1em;
}

.bannerPage .jp {
    font-size: 25px;
    line-height: 2.8;
    color: #ffffff;
    letter-spacing: 0.1em;
}

/*          Media
----------------------------*/
@media (max-width: 1600px){
    header .logo {
        width: 24%;
    }

    main {
        font-size: 1.6rem;
    }
}



@media (max-width: 767px){
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        margin-bottom: 0;
        padding: 0;
        background: #fff;
    }

    header .container {
        display: block;
        width: 100%;
    }

    header .logo {
        padding: 20px;
        width: 220px;
    }

    .btn-menu {
        display: block;
    }

    .menu {
        display: none;
        border-top: 1px solid #998675;
        background: #ccc;
        height: 100vh;
        overflow-y: scroll;
        background: #fff;
    }

    .menu > ul {
        display: block;
        color: #fff;
        padding: 5% 10px 0;
    }

    .menu > ul li {
        margin: 0 0 5px !important;
        padding: 0;
    }

    .menu > ul > li a {
        display: block;
        text-align: center;
        padding: 15px 10px;
        line-height: 1;
        border: 1px solid #fff;
        border-radius: 8px;
        background: #f5efea;
        color: #9f8573;
        font-size: min(4vw, 1.6rem);
    }

    .menu > ul > li a::after {
        display: none;
    }

    .menu > ul > li a.active {
        background: #bd967b;
        color: #fff;
    }

    .menu-parent > a {
        background: #f5efea;
        background: #f5efea url(../images/common/arrow_down.svg) no-repeat center right 20px / 13px auto !important;
        color: #9f8573 !important;
    }

    .menu-parent > a.show {
        background-image: url(../images/common/arrow_up.svg) !important;
    }

    .menu-parent > a span {
        display: none;
        font-size: 12px;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .menu-sub {
        display: none;
        margin-top: 5px;
        position: static;
        width: 100%;
        color: #fff;        
        transform: unset;
        transition: unset;
        visibility: visible;
        opacity: 1;
        background: none;
        pointer-events: unset;
        border: 0;
        padding: 0;

    }

    main {
        padding: 60px 0 0;
    }

    footer .menuFooter {
        width: 100%;
    }

    footer .menuFooter ul {
        text-align: center;
    }

    footer .menuFooter ul li {
        vertical-align: middle;
        margin-right: 0;
    }

    footer .menuFooter ul li a {
        padding: 0 10px;
    }

    footer .copyRight {
        width: 100%;
        font-size: 10px;
        text-align: center;
        margin-top: 20px;
    }

    .bannerPage {
        padding: 80px 0;
    }

    .bannerPage .en {
        font-size: 30px;
    }

    .bannerPage .jp {
        font-size: 18px;
        line-height: 1.7;
    }
}

