@charset "utf-8";
/* CSS Document */
#splash {
    /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 3000;
    background:#886339;
    text-align:center;
  }
  #splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #splash_logo img {
    width: 90%;
    max-width:500px;
  }

  .fadeUp{
    animation-name: fadeAnime;
    animation-duration: 1s;
    animation-fill-mode:forwards;
    opacity: 0;
  }
  @keyframes fadeAnime{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


@media(max-width: 899px){
    .header{
        position: relative
    }
    .nav-btn{
        position: fixed;
        top: 17px;
        right: 20px;
        width: 30px;
        height:30px;
        cursor: pointer;
        z-index: 2000;
    }
    .nav-btn span{
        display: inline-block;
        transition: all .4s;
        position: absolute;
        right: 0px;
        height: 2px;
        border-radius: 1px;
        background-color: #FFF;
    }
    .nav-btn span:nth-of-type(1) {
        top:7px;
        width: 30px;
    }
    .nav-btn span:nth-of-type(2) {
        top:15px;
        width: 30px;
    }
    .nav-btn span:nth-of-type(3) {
        top:23px;
        width: 30px;
    }
    .nav-btn.active span:nth-of-type(1) {
        top: 10px;
        transform: translateY(6px) rotate(-45deg);
        width: 26px;
    }
    .nav-btn.active span:nth-of-type(2) {
        display: none;
    }
    .nav-btn.active span:nth-of-type(3) {
        top: 22px;
        transform: translateY(-6px) rotate(45deg);
        width: 26px;
    }

    .header nav{
        position: fixed;
        right: 0;
        background-color: rgba(136,99,57,0.7);
        width: 50%;
        max-width: 300px;
        height: 100vh;
        text-align: left;
        transform: translateX(100%);
        transition: .6s;
        z-index: 1000;
    }
    .header nav ul{
        color: #FFF;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    .header nav ul li{
        padding: 30px;
        font-size: 2.0rem;
    }
    .header nav ul li a{
        text-decoration: none;
        color: #FFF;
    }
    .header nav.active{
        transform: translateX(0);
    }
}

@media(min-width: 900px){
    .header{
        position: relative;
    }
    .header nav{
        position: absolute;
        top: 40px;
        left: 50%;
        z-index: 1000;
        transform: translateX(-50%);
    }
    .header nav ul {
        display: flex;
    }
    .header nav ul li{
        padding: 0 30px;
        width: 180px;
        font-size: 2.2rem;
        font-family: "Inknut Antiqua", serif;
        font-weight: 300;
    }
    .header nav ul li a{
        display: block;
        text-decoration: none;
        color: #FFF;
    }
    .header nav ul li a{
        transition: .4s;
    }
    .header nav ul li a:hover{
        display: block;
        color: #FF3D00;
    }
}

.top{
    width: 100%;
    height: 100vh;
    background-image: url("../img/top_img.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.top img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate( -50%, -50% );
    width: 80%;
    max-width: 350px;
}
.scrolldown{
    position:absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom:10px;
    height:50px;
    transition: .4s;
}
.scrolldown span{
    position: absolute;
    left:-15px;
    top: -15px;
    color: #FFF;
    font-size: 1.0rem;
    line-height: 2.0rem;
    letter-spacing: 0.05em;
}
.scrolldown::after{
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 30px;
    background: #FFF;
    animation: pathmove 1.4s ease-in-out infinite;
    opacity:0;
  }
  @keyframes pathmove{
    0%{
      height:0;
      top:0;
      opacity: 0;
    }
    30%{
      height:30px;
      opacity: 1;
    }
    100%{
      height:0;
      top:50px;
      opacity: 0;
    }
  }


.main{
    background-color: #E9E0D7;
}
.main.active{
    background-color: #fab570;
}

.section_title{
    font-size: 2.8rem;
    font-family: "Inknut Antiqua", serif;
    padding-top: 100px;
    padding-bottom: 60px;
}
.section_title h2{
    font-weight: 400;
    letter-spacing: 0;
}
@media(min-width: 800px){
    .section_title{
        font-size: 3.2rem;
        padding-top: 0;
        padding-bottom: 80px;
    }
}

.about{
    padding-top: 100px;
    max-width: 500px;
    margin: 0 auto;
}
.about_img-main{
    width: 100%;
}
.about_img-main img{
    width: 100%;
    aspect-ratio: 2 / 3 ;
    object-fit: cover;
}
.about_sentence{
    text-align: left;
    padding: 0 25px 80px;
}
.about_sentence h3{
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 4.0rem;
    padding-bottom: 50px;
}
.about_sentence hr{
    width: 100px;
    background-color: #6F6F6F;
    margin: 0;
}
.about_sentence p{
    font-size: 1.4rem;
    line-height: 3.0rem;
    padding-top: 50px;
}
.about_separator-small{
    display: flex;
    margin-top: 80px;
    margin-bottom: 60px;
}
.about_separator-s{
    margin-top: 100px;
}
.about_separator-s img{
    aspect-ratio: 1 / 1  ;
    object-fit: cover;
}
.about_separator-m{
    margin-left: 30px;
}
.about_separator-m img{
    aspect-ratio: 4 / 3  ;
    object-fit: cover;
}
.about_separator-l{
    margin: 0 40px;
}

@media(min-width: 800px){
    .about{
        max-width: none;
    }
    .about_wrapper{
        max-width: 1300px;
        display: flex;
        margin: 0 auto;
        padding-top: 100px;
    }
    .about_text{
        width: 40%;
        padding: 0 40px;
    }
    .about_img-main{
        width: calc( 60% / 2 );

    }
    .about_img-main img{
       aspect-ratio: 3 / 5;
    }
    .about_img-left{
        padding-top: 100px;
    }
    .about_img-right{
        padding-bottom: 100px;
    }
    .about_sentence{
        padding: 0;
        padding-top: 60px;
    }
    .about_sentence h3{
        font-size: 2.4rem;
        font-weight: 500;
        line-height: 4.0rem;
        padding-bottom: 80px;
    }
    .about_sentence p{
        font-size: 1.6rem;
        line-height: 3.4rem;
        padding-top: 70px;
    }
    .about_separator{
        padding-top: 120px;
        display: flex;
        max-width: 1200px;
        margin: 0 auto;
    }
    .about_separator-s{
        margin-top: auto;
        margin-left: 80px;
    }
    .about_separator-m{
        margin-left: 80px;
    }
    .about_separator-l{
        margin-left: 140px;
        margin-bottom: 60px;
    }
}

.menu{
    max-width: 500px;
    margin: 0 auto;
}
.menu_cro{
    margin: 0 25px;
}
.menu_cro img{
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1 / 1;
}
.menu_cro-text{
    text-align: left;
    padding-top: 20px;
    padding-bottom: 80px;
}
.menu_cro-heading{
    padding-bottom: 10px;
}
.menu_cro-heading p{
    color: #FF6161;
    font-size: 1.4rem;
}
.menu_cro-heading h3{
    font-size: 2.4rem;
    font-weight: 500;
}
.menu-ex{
    font-size: 1.4rem;
    line-height: 2.6rem;
    color: #636363;
}
.menu_cin{
    display: flex;
    flex-flow: row-reverse;
}
.menu_cin img{
    width: 50%;
    aspect-ratio: 1 / 1.6 ;
    object-fit: cover;
}
.menu_cin-text{
    text-align: left;
    padding: 20px;
}
.menu_cin-heading{
    padding-bottom: 15px;
}
.menu_cin-heading p{
    color: #FF6161;
    font-size: 1.4rem;
}
.menu_cin-heading h3{
    font-size: 2.0rem;
    font-weight: 500;
}
.menu_sub{
    margin-top: 80px;
    padding-bottom: 80px;
    display: flex;
}
.menu_sub img{
    width: 50%;
    aspect-ratio: 1 / 1.6 ;
    object-fit: cover;
}
.menu_sub-ex{
    text-align: left;
    font-size: 1.4rem;
    line-height: 2.6rem;
    color: #636363;
    padding: 20px
}
button{
    position: absolute;
    right: 30px;
    background: none;
    border: 0;
    width: 110px;
    padding: 0;
    text-align: left;
}
button a{
    font-size: 1.6rem;
    font-family: "Noto Serif JP", sans-serif;
    font-weight: 300;
    line-height: 3.0rem;
    color: #9F9F9F;
    text-decoration: none;
    border-bottom: solid 1px #9F9F9F;
}
@media(min-width: 800px){
    .menu{
        max-width: none;
        padding-top: 140px;
    }
    .menu_cro{
        margin: 0 auto;
        max-width: 1000px;
        display: flex;
        padding-bottom: 100px;
    }
    .menu_cro img{
        width: 55%;
    }
    .menu_cro-text{
        padding: 40px 30px;
        width: 30%;
    }
    .menu_cro-heading{
        padding-bottom: 20px;
    }
    .menu_cro-heading p{
        font-size: 1.6rem;
    }
    .menu_cro-heading h3{
        font-size: 2.8rem;
    }
    .menu-ex{
        font-size: 1.6rem;
        line-height: 3.0rem;
    }
    .menu_cin{
        margin: 0 auto;
        max-width: 900px;
    }
    .menu_cin img{
        width: 40%;
        aspect-ratio: 1 / 1.4 ;
    }
    .menu_cin-text{
        width: 30%;
        text-align: left;
        padding: 40px 30px;
    }
    .menu_cin-heading{
        padding-bottom: 20px;
    }
    .menu_cin-heading p{
        font-size: 1.6rem;
    }
    .menu_cin-heading h3{
        font-size: 2.4rem;
    }
    .menu_sub{
        margin-top: 100px;
        padding-top: 100px;
        padding-bottom: 120px;
        max-width: 900px;
        margin: 0 auto;
    }
    .menu_sub img{
        width: 40%;
        aspect-ratio: 1 / 1 ;
        object-fit: cover;
    }
    .menu_sub-ex{
        width: 30%;
        font-size: 1.6rem;
        line-height: 3.0rem;
        padding: 40px 30px;
    }
    .menu_sub-wrapper{
        display: flex;
        position: relative;
    }
    button{
        width: 175px;
        right: 8%;
        bottom: 20px;
        transition: .4s;
    }
    button a{
        font-size: 1.8em;
        line-height: 3.8rem;
        transition: .4s;
    }
    button a:hover{
        color: #FF3D00;
        border-bottom: solid 1px #FF3D00;
    }
}


.concept{
    margin-top: 100px;
    background-color: #37230F;
    background-image: url(../img/common/bg.png);
    color: #FFF;
}
.concept_main, .concept_sub{
    max-width: 600px;
    margin: 0 auto;
}
.concept_main img , .concept_sub img{
    width: 100%;
    aspect-ratio: 2 / 1.15 ;
    object-fit: cover;
}
.concept_main-text{
    text-align: left;
    padding: 40px 40px 80px;
}
.concept_main-text h3{
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 4.0rem;
    padding-bottom: 50px;
}
.concept_main-text hr{
    width: 100px;
    background-color: #9E9E9E;
    margin: 0;
}
.concept_main-text p{
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 3.2rem;
    padding-top: 50px;
}
.concept_separator{
    padding-bottom: 80px;
}
.concept_separator-left{
    width: 70%;
}
.concept_separator-right{
    width: 40%;
    margin-top: 40px;
    margin-right: 40px;
    margin-left: auto;
}
@media(min-width: 800px){
    .concept{
        padding-top: 120px;
        padding-bottom: 140px;
    }
    .concept_main{
        display: flex;
        max-width: 1200px;
        margin: 0 auto;
    }
    .concept_main img , .concept_sub img{
        width: 60%;
    }
    .concept_main-text{
        padding: 40px 50px;
    }

    .concept_sub{
        display: flex;
        flex-flow: row-reverse;
        max-width: 1200px;
        margin: 0 auto;
    }
    .concept_main-text h3{
        font-size: 2.6rem;
        line-height: 4.8rem;
        padding-bottom: 50px;
    }
    .concept_main-text p{
        font-size: 1.6rem;
        line-height: 3.6rem;
        padding-top: 60px;
    }
    .concept_separator{
        padding: 160px 30px 160px 180px;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
    }
    .concept_separator-left{
        width: 60%;
    }
    .concept_separator-right{
        width: 30%;
        margin: 120px 80px 0 100px;
    }
}


.access_map{
    width: 100%;
    aspect-ratio: 2 / 1.2;
    filter: sepia(20%) contrast(80%) brightness(96%);
}
.access_map iframe{
    width: 100%;
    height: 100%;
}
.access_info{
    text-align: left;
    font-size: 1.2rem;
    padding: 35px;
}
.access_info p{
    height: 64px;
    border-left: solid 1px #6F6F6F;
    margin-bottom: 32px;
    padding-left: 10px;
}
@media(min-width: 800px){
    .access{
        padding-top: 120px;
        padding-bottom: 100px;
    }
    .access_map{
        max-width: 1200px;
        height: 400px;
        margin: 0 auto;
    }
    .access_info{
        margin: 0 auto;
        width: 90%;
        padding: 40px;
    }
    .access_info-wrapper{
        display: flex;
    }
    .access_info p{
        width: 50%;
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media(min-width: 1115px){
    .access_info{
        width: 60%;
    }
}


.footer{
    background-color: #886339;
    color: #FFF;
    text-align: left;
    position: relative;
}
.footer_img{
    display: flex;
}
.footer_img img{
    width: 50%;
    aspect-ratio: 2 / 2.5 ;
    object-fit: cover;
    object-position: center;
}
.footer_wrapper{
    display: flex;
    padding-top: 40px;
    padding-bottom: 40px;
}
.footer_main{
    padding: 40px 40px 80px;
}
.footer_main img{
    max-width: 250px;
}
.footer_nav,.footer_info{
    width: 50%;
}
.footer_main ul{
    list-style: none;
}
.footer_main ul li{
    font-family: "Inknut Antiqua", serif;
    font-weight: 300;
    padding: 10px 0;
}
.footer_main ul li a{
    color: #FFF;
    text-decoration: none;
}
.footer_info p{
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 3.0rem;
}
.footer small{
    font-size: 1.0rem;
    font-weight: 300;
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
}
@media(min-width: 800px){
    .footer{
        display: flex;
    }
    .footer_img img{
        min-width: 30%;
        aspect-ratio: 1 / 1 ;
    }
    .footer_main{
        width: 100%;
        padding: 60px 50px 80px;
        position: relative;
    }
    .footer_main ul li{
        padding: 20px 0;
    }
    .footer_main ul li a{
        transition: .4s;
    }
    .footer_main ul li a:hover{
        display: block;
        color: #FF3D00;
    }
    .footer_info p{
        font-size: 1.4rem;
        font-weight: 400;
        line-height: 3.4rem;
    }
    .footer small{
        position: absolute;
        left: 110px;
    }
}