@charset "UTF-8";

/* ===========================
common 
============================*/

:root {
    --primary-deepgreen:#4F6248;
    --primary-black:#4B4B4B;
    --primary-gray: #BEC7C2;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Noto Serif JP',
                'Zen Maru Gothic',
                'Hina Mincho';
    font-style: normal;
    color: var(--primary-deepgreen, #4F6248);
    /* ？１　backcolor　フィグマではないが設定しておいたほうがいいのか？ */
    background-color: #fff;
    line-height: 1.8;
    font-weight: 400;
}

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

/* font */
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 200 to 900

.noto-serif-jp- <uniquifier> {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.zen-maru-gothic-regular {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 400;
    font-style: normal;
}
  
.zen-maru-gothic-medium {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 500;
    font-style: normal;
}

.hina-mincho-regular {
    font-family: "Hina Mincho", serif;
    font-weight: 400;
    font-style: normal;
}

/* common sp */
.section {
    padding-top: 30px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pcBr {
    display: none;
}
  
.pcSpan {
    display: none;
}

/* common pc */
@media screen and (min-width:769px) {
    .spBr {
        display: none;
    }

    .pcBr {
        display: block;
    }

    .pcSpan {
        display: inline;
    }
}/* pc 769px */

/* ===========================
header
============================*/

.header {
    max-width: 100%;
}

.header__wrapper {
    display: flex;
    padding: 13px 4.3%;
    align-items: center;
    background: var(--header-forest, linear-gradient(97deg, rgba(27, 118, 83, 0.30) 5.61%, rgba(77, 144, 82, 0.27) 16.9%, rgba(177, 195, 80, 0.20) 94.39%));
    box-shadow: 0px 4px 4px 0px rgba(232, 224, 219, 0.90);
    height: 66px;
}

.logo__img {
    width: 233px;
    height: 17px;
}

.nav {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
    background: linear-gradient(0deg, rgba(27, 118, 83, 0.32) 0%, rgba(27, 118, 83, 0.32) 100%), rgba(255, 255, 255, 0.90);
}

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

.nav__header {
    height: 66px;
    display: flex;
    padding: 13px 4.3%;
    justify-content: space-between;
    align-items: center;
}

.nav__menu {
    display: flex;
    padding: 10px 10px 4px 10px;
    margin-top: 100px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.nav__list {
    display: flex;
    gap: 40px;
    flex-direction: column;
    align-items: center;
}

.nav__item {
    color: var(--primary-deepgreen);
    font-family: "Noto Serif JP";
    text-transform: uppercase;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.5;
}

.nav__item:hover {
    color: rgba(79, 98, 72, 0.5)
}

.sns__list {
    display: flex;
    margin: 0 auto;
}

.sns__item {
    width: 84px;
    height: 84px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.LINEicon,
.Instagramicon {
    width: 42px;
    height: 42px;
}


/* ハンバーガーメニュー */
.open__btn{
	position: relative;
	cursor: pointer;
    width: 33px;
    height: 40px;
    padding-left: 4px;
    padding-right: 4px;
    position: absolute;
    right: 3%;
    z-index: 9999;
}

/*ボタン内側*/
.open__btn span {
    display: inline-block;
    transition: all .5s;/*アニメーションの設定*/
    position: absolute;
    width: 25px;
    height: 2px;
    background: rgba(79, 98, 72, 0.80);
  	/* width: 45%; */
  }

.open__btn span:nth-of-type(1) {
	top:10px;
}

.open__btn span:nth-of-type(2) {
	top:19px;
}

.open__btn span:nth-of-type(3) {
	top:28px;
}

/*activeクラスが付与されると線が回転して×に*/
.open__btn.active span:nth-of-type(1) {
    top: 14px;
    transform: translateY(6px) rotate(-45deg);
    /* width: 30%; */
}

.open__btn.active span:nth-of-type(2) {
	opacity: 0;
}

.open__btn.active span:nth-of-type(3){
    top: 26px;
    transform: translateY(-6px) rotate(45deg);
    /* width: 30%; */
}

/* header pc */
@media screen and (min-width:769px) {
    .header__wrapper {
        box-shadow: 0px 6px 4px 0px rgba(232, 224, 219, 0.90);
        /* height: 82px; */
        padding: 0 7% 0 8.3%;
        display: flex;
        justify-content: space-between;
    }
    
    .logo__img {
        width: 351px;
        height: auto;
    }

    .open__btn {
        display: none;
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);
    }

    .nav__header {
        display: none;
    }

    .nav__menu {
        padding-left: 43px;
        margin-top: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: normal;
        gap: 17px;
    }

    .nav__list{
        display: flex;
        flex-direction: row;
        gap: 34px;
    }

    .sns__list{
        margin: 0;
    }

    .sns__item{
        width: 68px;
        height: 68px;
    }

    .LINEicon,
    .Instagramicon {
        width: 34px;
        height: 34px;
    }
}/* pc 769px */

/* ===========================
footer
============================*/
/* footer__information */
.section--information {
    padding-top: 40px;
    padding-bottom: 0;
    text-align: center;
}

.section__topic--information,
.section__topic--access {
    text-transform: uppercase;
    font-size: 2rem;
    font-family: "Noto Serif JP";
    line-height: 1.8;
    letter-spacing: 1.6px;
    position: relative;
}

.section__topic::after {
    content: '';
    display: block;
    width: 220px;
    height: 2px;
    background: var(--primary-gray, #BEC7C2);
    position: absolute;
}

.section__topic--information::after {
    left: -16%;
}

.section__topic--access::after {
    left: -77%;
}

.information__contents {
    display: flex;
    margin: 30px auto 0;
    flex-direction: column;
}

.info__title {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.96px;
    margin-top: 30px;
}

.info__txt {
    font-size: 1.5rem;
    letter-spacing: 1.2px;
    margin-top: 6px;
}
.info__title--uppercase {
    text-transform: uppercase;
}

.info__txt--small {
    font-size: 1.4rem;
    letter-spacing: 0.84px;
    margin-top: 4px;
    cursor: pointer;
}

.info__txt--small::after {
    content: ' 》';
}

.info__txt--small:hover {
    color: rgba(79, 98, 72, 0.6)
}

/* footerInformation pc */
@media screen and (min-width:769px) {
    .footer__infogroup {
        display: flex;
        padding: 107px 0 160px;
        justify-content: center;
        gap: 9.7%;
    }

    .section--information,
    .section--access {
        text-align: start;
        margin: 0 0 0 auto;
        padding-top: 0;
        overflow: hidden;
    }

    .section__topic--information,
    .section__topic--access {
        font-size: 3.2rem;
        font-weight: 500;
        line-height: 1.6;
        letter-spacing: 3.2px;
        text-align: center;
        margin: 0 auto;
    }
    
    .section__topic::after {
        width: 31.9vw;
        position: absolute;
        left: calc(50% - 16vw);
    }

    .information__contents {
        display: flex;
        margin: 74px 0 0;
        flex-direction: column;
        min-width: 456px;
    }

    .info__wrapper {
        display: flex;
        align-items: flex-start;
        gap: 39px;
        margin-top: 6px;
    }

    .info__wrapper:nth-of-type(1) {
        padding-left: 72px;
    }

    .info__wrapper:nth-of-type(2) {
        padding-left: 62.5px;
    }

    .info__wrapper:nth-of-type(3) {
        padding-left: 14px;
    }

    .info__wrapper:nth-of-type(4) {
        padding-left: 71px;
    }

    .info__title {
        font-size: 1.8rem;
        letter-spacing: 1.08px;
        margin-top: 0;
    }

    .info__txt {
        font-size: 1.6rem;
        letter-spacing: 0.96px;
        margin-top: 0;
    }

    .info__txt--small {
        font-size: 1.5rem;
        line-height: 1.8;
    }
}/* pc 769px */

/* footer__access */
.section--access {
    margin: 0 auto 0 0;
    font-family: "Noto Serif JP";
    letter-spacing: 1.6px; 
    padding-bottom: 0; 
}

.map {
    margin-top: 60px;
    height: 164px;
    width: 270px;
    /* background: url(<path-to-image>) lightgray 50% / cover no-repeat; */
}

.access__contents {
    text-align: center;
}

/* footerAccess pc */
@media screen and (min-width:769px) {
    .section--access {
        justify-content: initial;
        margin: 0 auto 0 0;
        display: flex;
        align-items: flex-start;
    }

    .map {
        width: 31.9vw;
        margin: 74px auto 0;
        max-width: 460px;
        height: 18.8vw;
        max-height: 275px;
    }

    .info__txt--access {
        text-align: start;
    }

    .info__wrapper--access:nth-of-type(1) {
        padding-left: 21.5px;
        gap: 40px;
        margin-top: 16px;
    }

    .info__wrapper--access:nth-of-type(2) {
        padding-left: 3px;
        gap: 36px;
    }

    .access__contents{
        min-width: 458px;
    }
}/* pc 769px */

/* footer others */
.btn__reservation {
    width: 100px;
    height: 100px;
    position: fixed;
    right: 0;
    bottom: 14%;
    z-index: 98;
}

.btn__reservation::after {
    content: '';
    background-image: url(../images/reservationbutton_pc.svg);
    width: 100px;
    height: 100px;
    position: fixed;
    bottom: 17.5%;
    z-index: 98;
    right: 0%;
    cursor: pointer;
    background-size: contain;
}

.btn__reservation:hover {
    color: rgba(79, 98, 72, 0.5)
}

.footer__main::before {
    content: '';
    display: block;
    width: 100%;
    height: 85px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/footer_sp.png);
    position: absolute;
    z-index: -1;
}

.footer__main {
    display: flex;
    margin-top: 89px;
}

.footer__main a {
    position: absolute;
    right: 5%;
}

.footer__logo {
    width: 80px;
    height: 80px;
    margin: 2.5px auto;
}

.btn__top {
    width: 40px;
    height: 40px;
    margin: 22px 5.8% 23px 0;
}

.footer__copy {
    display: flex;
    height: 21px;
    justify-content: center;
    align-items: center;
    background: var(--footergreen, linear-gradient(98deg, rgba(27, 118, 83, 0.42) 21.49%, rgba(40, 125, 83, 0.41) 39.93%, rgba(177, 195, 80, 0.28) 93.97%));
}

.copy {
    font-size: 1rem;
    line-height: 1;
}

/* footerOthers pc */
@media screen and (min-width:769px) {
    .btn__reservation {
        width: 154px;
        height: 154px;
        right: 1.5%;
        bottom: 28%;
    }

    .sns__list--footer {
        margin-left: -4.4%;
    }
    
    .footer__main {
        height: 201px;
        display: flex;
        margin-top: 0;
        justify-content: flex-end;
        align-items: center;
    }

    .footer__main::before {
        height: 201px;
        background-image: url(../images/footer_pc.png);
    }

    .footer__main a {
        right: 0;
    }

    .footer__logo {
        width: 163px;
        height: 163px;
    }

    .btn__top {
        width: 65px;
        height: 65px;
        margin: 0 109px 0 0;
    }

    .footer__copy {
        height: 41px;
    }

    .copy {
        font-size: 1.2rem;
        line-height: 1.5;
    }
}/* pc 769px */