@charset "utf-8";

/* ===================================
common
=====================================*/
:root {
   --black:#504C44;
   --lightgray:#D9D9D9;
   --gray:#868786;
   --lightgreen:#D4D7C4;
   --green:#868F74;
   --beige:#948C7B;
   --white:#F2F2F2;
   --contentWidth: 89.3%;
   --contetntpadding: 30px 0;
}


html {
    font-size: 62.5%;
}

body {
    font-family:"Noto Sans","Noto Sans JP",sans-serif,"Noto Sans TC","Noto Sans KR";
    font-style: normal;
    font-size: 1.6rem;
    color: var(--black,#504C44);
    background-color: var(--white,#F2F2F2);
    line-height: 1.8;
}

img {
    max-width: 100%;
    height: auto;
}

.section {
    padding-top: 30px;
}


.contents__title {
    color: var(--black, #504C44);
    font-family:Cambria, Georgia, serif;
    font-size: 2.4rem;
}

.btn {
    max-width:320px;
    width: 100%;
    display: block;
    background-color: var(--green,#868F74);
    font-family: "Noto Sans","Noto Sans JP","Noto Sans TC","Noto Sans KR";
    text-align: center;
    display: flex;
    color:var(--white,#F2F2F2);
    padding: 15px 59px;
    line-height: 1;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    transition: 0.4s;
    justify-content: center;
}

.btn::after {
    content: '';
    display: inline-block;
    width: 7.5px;
    height: 10px;
    background-image: url(../image/btn__arrow.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right:43.5px ;
    transform: translateY(-50%);
    transition: right .5s;
}

.btn:hover::after {
    right: 30px;
}

.btn:hover {
    opacity: 0.8;
}

.main {
    margin-top: 65px;
    text-align: center;
}

picture {
    display: inline-block;
}

.pcBr {
    display: none;
}

.spBr {
    display: block;
}

.whitepre {
    white-space: pre;
}




/* fade_in */
.fade_in {
  transition: 0.5s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.fade_in.on {
  transform: translateY(0);
  opacity: 1.0;
}

.fade_in2 {
  transition: 0.7s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.fade_in2.on {
  transform: translateY(0);
  opacity: 1.0;
  position: relative;
  z-index: -100;
}



/* scale */
.scale {
    transition: all 1s ease-out;
}

.scale:hover {
    transform:scale(1.2,1.2);
}



/* pc common */
@media screen and (min-width:769px){
    .contents__title {
    font-family: Georgia;
    font-size: 3.6rem;
}
    .section {
        padding-top: 60px;
    }

    .pcBr {
        display: block;
    }
    
    .spBr {
        display:none;
    }

}

/* pc end */

/* =========================================
header
===========================================*/
.header {
    width: 100%;
    display: flex;
    height: 65px;
    padding: 10px 4% 10px;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color:rgba(243, 247, 248, 0.70);
    z-index: 100;
}

.header__logo {
    color: var(--black, #504C44);
    font-family: Georgia;
    font-size: 2rem;
    width: 150px;
    letter-spacing: 1px;
}

.header__right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.reserve__btn {
    line-height: 0;
    align-items: center;
    color: var(--white, #F2F2F2);
    font-family: Georgia;
    font-size: 1.6rem;
    background: var(--green, #868F74);
    height: 34px;
    width: 112px;
    padding: 8px 20px;
    align-items: center;
}

.reserve__btn:hover {
    opacity: 0.8;
    transition: 1s;
    transform: scale(1.5,1.5);
}

/* .menu {
    border-top: #504C44 1px solid;
    border-bottom: #504C44 1px solid;
    width: 30px;
    height: 5px;
} */


.menu {
    position: relative;
    text-align: center;
    box-sizing: border-box;
    counter-increment: item;
    z-index: 200;
  }


/* .menu::after,.menu::before {
    display: block;
    position: absolute;
    content: '';
    width: 30px;
    height: 5px;
    border-bottom: #504C44 1px solid;
} */

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 30px;
  height: 23px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--black);
}
.menu-trigger span:nth-of-type(1) {
  top: 5px;
}
.menu-trigger span:nth-of-type(2) {
  top: 15px;
}



#menu01.closebtn span:nth-of-type(1) {
  transform: translateY(5px) rotate(-45deg);
  background-color: var(--white);
}
#menu01.closebtn span:nth-of-type(2) {
  transform: translateY(-5px) rotate(45deg);
  background-color: var(--white);
}


/* nav 初期表示 */
.header__nav {
    background: var(--green);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: all .5s ease-out;
}

.header__nav.active {
    transform: translateX(0);
}

.nav__btn {
    width: 30px;
    height: 30px;
    position: fixed;
    top: 15px;
    right: 15px;
}

.header__right--sp {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__navlist {
    text-align: center;
    width: 265px;
    margin: 25% auto 0;
}

.header__item {
    color: var(--white);
    font-family: Georgia;
    transition: 1s;

}

.header__item a:hover {
    color: var(--lightgray);
    transition: 1s;
}



.header__item1 a {
    transition-delay: 1s;
}
.header__item2 a {
    transition-delay: 2s;
}
.header__item3 a {
    transition-delay: 3s;
}
.header__item4 {
    transition-delay: 4s;
}
.header__item5 {
    transition-delay: 5s;
}
.header__item6 {
    transition-delay: 6s;
}


 .header__item::after {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background-color: var(--white);
    margin: 20px auto;
} 

/* どうやって線消す？？ */
.header__navlist::after:last-of-type {
    content: '';
    display: none;
}

   



.language__btn {
    line-height: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--green, #868F74);
    background-color: var(--white, #F2F2F2);
    font-family: Georgia;
    margin: 44px auto 0;
    height: 34px;
    width: 112px;
    padding: 8px 36.5px 8px 13.5px;
    position: relative;
}

    
.language__btn::after {
    content: '';
    width: 10px;
    height: 13.33px;
    display: inline-block;
    background-image: url(../image/language__btn.svg);
    background-size:contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 55%;
    right: 12.5px;
    transform: translateY(-55%);
    transition: top 1s;
}


.language__btn:hover::after {
    top: 75%;
}



.language__btn a {
    color: var(--green, #868F74);
    text-align: left;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
}

.language__select {
    display: none;
    width: 100%;
    position: absolute;
    top: 33px;
    right: 0;
}

.language__btn:hover .language__select {
    display: block;
}

.select__item {
    background-color: var(--white, #F2F2F2);
    border: 1px solid var(--green, #868F74);
    height: 34px;
    width: 112px;
    transition: all .3s;
    position: relative;
    padding-left: 10px;
    transition: all .5s ease-out;
}



.select__item:hover {
    background-color: var(--lightgreen);
}

.select__item a {
    color: var(--green, #868F74);
    justify-content: center;
    align-items: center;
    text-decoration: none;
    position: relative;
}





/* header pc */
@media screen and (min-width:769px) {
    .header {
        padding: 20px 3%;
        display: flex;
        justify-content: flex-start;
    }

    .header__right {
        width: 100%;
    }

    .header__logo {
        font-size: 2.5rem;
        display: inline-block;
        width: 300px;
        letter-spacing: 1.25px;

    }

    .header__nav {
        width: 100%;
        height: 90px;
        position: static;
        transform: translateX(0);
        display: flex;
        align-items: center;
        background-color:transparent;
        justify-content: flex-end;
    }

    .header__navlist {
        display: flex;
        align-items: center;
        width: auto;
        margin: 0 2.5% 0 0;
    }





    .header__item a {
        padding:0 20px;
        color: var(--black);
    }

    .header__item a:hover {
        color: var(--green);
        transition: 1s;
    }

    .header__navlist .header__item:last-child::after {
        content: "";
        display: inline-block;
        background-color: var(--whites);
    } 

   

     .header__navlist .header__item::after {
        content: '';
        display: inline-block;
        width: 1px;
        height: 20px;
        background-color: var(--black,#504C44);
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        margin: 0 auto;
     }


    .menu {
       display: none;
    }

    .nav__btn {
        display: none;
    }

    .language__btn {
        margin: 0  auto;
    }

    

  

    .header__right--sp {
        display: block;
    }


   
}

@media screen and (min-width:769px) and (max-width:1204px) {
    .header {
        padding: 20px 3%;
        justify-content: space-between;
    }

    .header__right {
        display: flex;
        width: initial;
        gap: 20px;
        align-items: center;
    }
    
    /* nav 初期表示 */
    .header__nav {
        display: block;
        background: var(--green);
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
        transform: translateX(-100%);
        transition: transform 0.4s;
        padding: 25%;
    }

    .nav__btn {
        display: block;
        width: 30px;
        height: 30px;
        position: fixed;
        top: 31px;
        right: 27px;
    }

    .header__right--sp {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .header__navlist {
        display: block;
        text-align: center;
        width: 100%;
        margin:0 auto;
    }

    .header__item {
        color: var(--white);
        font-family: Georgia;
        height: auto;
        border-right:none ;

    }

    .header__item a {
        padding:0;
        font-size: 1.8rem;
        color: var(--white);
    }

    .header__navlist .header__item::after  {
        content: '';
        display: block;
        width: 20px;
        height: 1px;
        background-color: var(--white);
        position: initial;
        margin: 30px auto;
    } 

    .menu {
        display: block;
    }

   
    .language__btn {
        line-height: 0;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--green, #868F74);
        background-color: var(--white, #F2F2F2);
        font-family: Georgia;
        margin: 44px auto 0;
        height: 34px;
        width: 112px;
        padding: 8px 36.5px 8px 13.5px;
        position: relative;
    }

        
   


    .language__btn a {
        color: var(--green, #868F74);
        text-align: left;
        align-items: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        display: inline-block;
    }

    .language__select {
        display: none;
        width: 100%;
        position: absolute;
        top: 33px;
        right: 0;
    }

    .language__btn:hover .language__select {
        display: block;
    }

    .select__item {
        background-color: var(--white, #F2F2F2);
        border: 1px solid var(--green, #868F74);
        height: 34px;
        width: 112px;
        transition: all .3s;
        position: relative;
    }



    .select__item:hover {
        background-color: var(--lightgreen);
    }

    .select__item a {
        color: var(--green, #868F74);
        justify-content: center;
        align-items: center;
        text-decoration: none;
        position: relative;
    }
}

/* =========================================
footer
===========================================*/ 
.footer {
    background: var(--green, #868F74);
    padding: 30px;
}

.footer_group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__logo {
    color: var(--white, #F2F2F2);
    font-family: Georgia;
    font-size: 2rem;
    letter-spacing: 1px;
}

.footer__address {
    color: var(--white, #F2F2F2);
    font-family: "Noto Sans","Noto Sans JP","Noto Sans TC","Noto Sans KR";
    font-size: 1.2rem;
    margin-bottom:5px;
}

.footer__item {
    color: var(--white, #F2F2F2);
    font-size: 1.6rem;
    font-family: Georgia;
}

.footer__btn {
    text-align: center;
    border-radius: 45px;
    background: var(--lightgreen,#D4D7C4);
    width: 90px;
    height: 90px;
    position: fixed;
    bottom: 1.4%;
    right: 1.4%;
    box-shadow: 0px 3px 8px 0px #868F74;

}

.footer__btn p {
    position: relative;
    color: var(--black);
    top: 50%;
    transform: translateY(-50%);
}

.footer__btn p::before {
    content: '';
    display: block;
    background-image: url(../image/footer__icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    margin: 0 auto;
    width: 10px;
    height: 10px;
    transition: top .5s;
    top:-8px;
    left: 50%;
    transform: translateX(-50%);
}

.footer__btn p:hover::before {
    top: -16px;
}

.copy {
    text-align: center;
    color: var(--white,#F2F2F2);
}

.small {
    font-size: 1.2rem;
}

/* footer pc */
@media screen and (min-width:769px) {
    .footer {
        padding-top:30px ;

    }

    .footer__logo {
        font-size: 2.5rem;
        letter-spacing: 1.25px;
    }

    .footer__address {
        margin-bottom: 10px;
        margin-top: 20px;
    }
    
  
}