@charset "utf-8";

/* CSS Document */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    font-size: 62.5%;
    overflow-x: hidden;
}


body {
    font-family: "Zen Old Mincho", serif;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-size: 1.6rem;
    background: #f5f1df;
    overflow-x: hidden;
}

h1 {
    font-size: 5rem;
    font-weight: 700;
}

h2 {
    font-size: 5rem;
    font-weight: 700;
}

h3 {
    font-size: 4rem;
    font-weight: 700;
}

h4 {
    font-size: 3rem;
    font-weight: 700;
}

p {
    font-size: 2.3rem;
}

@media only screen and (max-width:1470px) {
    h3 {
        font-size: 3rem;
    }
}

@media only screen and (max-width:1365px) {
    h3 {
        font-size: 2.4rem;
    }

    h4 {
        font-size: 2rem;
    }
}

@media only screen and (max-width:768px) {

    h3 {
        font-size: 1.8rem;
    }

    h4 {
        font-size: 1.6rem;
    }

    p {
        font-size: 1.4rem;
    }
}


/*概要*/

main {
    background: #f5f1df;
    position: relative;
    z-index: 2;
}

.bg01 {
    background: #f5f1df;
    margin-top: -100px;
    padding-top: 100px;
    padding-bottom: 100px;
}

small {
    font-size: 1.6rem;
}

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

a {
    transition: all 0.3s ease-in-out;
}

a:hover {
    opacity: 0.5;
}

.ma0auto {
    margin: 0 auto;
}

.pl1em {
    padding-left: 1em;
}

.ml1em {
    margin-left: 1em;
}

.mb200 {
    margin-bottom: 200px;
}

.bold {
    font-weight: 700;
}

.spOnly {
    display: none;
}

.pcOnly {
    display: block;
}

iframe {
    width: 100%;
    height: 500px;
}

html.is-fixed,
html.is-fixed body {
    overflow: hidden;
}

.link {
    color: #006934;
    text-decoration: underline;
    text-underline-offset: 5px;
}

@media only screen and (max-width:1365px) {}

@media only screen and (max-width:1024px) {
    .mb200 {
        margin-bottom: 100px;
    }

    .w45p {
        width: 100%;
        margin-bottom: 50px;
    }

    .w70p {
        margin-bottom: 50px;
        width: 100%;
    }
}

@media only screen and (max-width:768px) {
    small {
        font-size: 1.4rem;
    }

    .spOnly {
        display: block;
    }

    .pcOnly {
        display: none;
    }

    .w60p {
        width: 100%;
        margin-bottom: 50px;
    }

    .w35p {
        width: 100%;
    }

    figure.w35p img {
        margin: 0 auto;
        display: block;
    }

    .mb100 {
        margin-bottom: 50px !important;
    }

    .pb100 {
        padding-bottom: 50px !important;
    }

    .pt100 {
        padding-top: 50px !important;
    }
    .bg01{margin-top: -20px;
    padding-top: 20px;
    padding-bottom: 20px;}
}

@media only screen and (max-width:480px) {
    .mb100 {
        margin-bottom: 40px !important;
    }
    .mb50 {
        margin-bottom: 20px !important;
    }

    .w45p {
        margin-bottom: 20px !important;
    }
}


/*アニメーション*/
.fadeUp.anime {
    transition: all 0.5s 0.1s ease-in-out;
    transform: translateY(50%);
    opacity: 0;
}

.fadeUp.anime.animeActive {
    transition: all 0.5s 0.1s ease-in-out;
    transform: translateY(0);
    opacity: 1;
}

.fadeUp.anime.delay01 {
    transition-delay: 0.5s;
}

.fadeUp.anime.delay02 {
    transition-delay: 0.7s;
}

.fadeUp.anime.delay03 {
    transition-delay: 0.9s;
}

.fadeUp.anime.delay04 {
    transition-delay: 1.1s;
}

.leftRight.anime {
    transition: all 0.5s 0.5s ease-in-out;
    transform: translateX(-50%);
    opacity: 0;
}

.leftRight.anime.animeActive {
    transition: all 0.5s 1s ease-in-out;
    transform: translateX(0);
    opacity: 1;
}

.rightLeft.anime {
    transition: all 0.5s 0.5s ease-in-out;
    transform: translateX(50%);
    opacity: 0;
}

.rightLeft.anime.animeActive {
    transition: all 0.5s 1s ease-in-out;
    transform: translateX(0);
    opacity: 1;
}

.hukidashi {
    opacity: 0;
}

.hukidashi.anime.animeActive {
    visibility: visible;
    animation: bounce 1s 1.5s forwards;
}

@keyframes bounce {
    0% {
        visibility: hidden;
        opacity: 0;
        transform: scale(0.2);
    }

    20% {
        opacity: 1;
        transform: scale(1.5);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.fuwafuwa {
    display: inline-block;
    animation: fuwafuwa 3s ease-in-out infinite;
}

.fuwafuwa:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes fuwafuwa {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@media only screen and (max-width:480px) {
    .hukidashi.anime.animeActive {
        animation: bounce 1s 0.5s forwards;
    }

}


/*ヘッダー*/
header {
    height: 100vh;
    position: relative;
    background-image: url(./images/header.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

header .ready {
    transition: all 1s 0.5s ease-in-out;
    filter: blur(10px);
    opacity: 0;
}

header .ready.go {
    filter: blur(0px);
    opacity: 1;
}

.logo {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    max-width: 1100px;
    width: 100%;
}

.date {
    position: absolute;
    top: 70%;
    left: 70%;
    transform: translate(-50%, -50%);
    z-index: 10;
    max-width: 960px;
    width: 100%;
}

.overview {
    position: absolute;
    top: 70%;
    left: 20%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: rgba(145, 23, 64, 0.8);
    color: #fff;
    max-width: 480px;
    padding: 1em;
}

.overview-sp {
    display: none;
}

.date.ready.go {
    filter: blur(0px);
    opacity: 1;
}

@media only screen and (max-width:1470px) {
    .date {
        max-width: 800px;
    }
}

@media only screen and (max-width:1366px) {
    .logo {
        max-width: 900px;
    }

    .date {
        max-width: 700px;
    }
}

@media only screen and (max-width:1024px) and (orientation:portrait) {


    header {
        height: 70vh;
    }

    .date {
        left: 50%;
        max-width: 100%;
    }
}

@media only screen and (max-width:1024px) {
    .overview-sp {
        display: block;
        background: rgba(145, 23, 64, 1);
        color: #fff;
        max-width: 100%;
        padding: 10px;
        margin-top: 40px;
    }

    .overview {
        display: none;
    }
}

@media only screen and (max-width:1024px) {
    .date {
        max-width: 90%;
        top: 70%;
        left: 50%;
    }

}

@media only screen and (max-width:980px) and (orientation: landscape) {
    .logo {
        max-width: 480px;
    }

    .overview {
        display: none;
    }

    .date {
        width: 500px;
        left: 50%;
    }

}

@media only screen and (max-width:768px) and (orientation: landscape) {
    .date {
        width: 400px;
    }
}

@media only screen and (max-width:480px) {}

/*ハンバーガーメニュー*/
.menuBtn {
    position: fixed;
    right: 3%;
    top: 0;
    z-index: 999;
    mix-blend-mode: difference;
}

.menuBtn .menubtnArea {
    transition: all .6s;
    width: 40px;
    height: 40px;
}

.menuBtn span {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 3px;
    background: #fff;
    transition: 0.3s ease-in-out;
}

.menuBtn span:nth-child(1) {
    top: 10px;
}

.menuBtn span:nth-child(2) {
    top: 25px;
}

.menuBtn span:nth-child(3) {
    top: 40px;
}

.menuBtn.active {
    mix-blend-mode: normal;
}

.menuBtn.active span:nth-child(1) {
    top: 25px;
    left: 0px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-30deg);
    transform: rotate(-30deg);
    background: #fff;
}

.menuBtn.active span:nth-child(2),
.menuBtn.active span:nth-child(3) {
    top: 25px;
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(45deg);
    transform: rotate(30deg);
    background: #fff;
}


@media only screen and (max-width:768px) and (orientation: landscape) {
    .spmenu ul {
        display: flex;
        flex-wrap: wrap;
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .spmenu ul li {
        width: 50%;
        text-align: center;
    }
}



/*メニュー*/
.spmenu {
    height: 0;
    width: 100%;
    z-index: 998;
    background: #006934;
    position: fixed;
    top: 0;
    transform: translateY(-100px);
    transition: 0.5s ease-in-out;
    visibility: hidden;
    color: #fff;
}

.spmenu.active {
    height: 100vh;
    transform: translateY(0);
    visibility: visible;
}

.spmenu ul {
    width: 90%;
    height: auto;
    margin: 40px auto;
    opacity: 0;
    transition: 0.5s ease-in-out;
}

.spmenu.active ul {
    opacity: 1;
    transition: 0.5s ease-in-out;
}

.spmenu ul li {
    margin-bottom: 40px;
    padding: 10px;
}

.menu.pcOnly {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 20px;
    width: 100%;
    background: rgba(0, 105, 52, 0.8);
    color: #fff;
    font-weight: 700;
    height: 100px;
}

.menu ul li {
    width: calc(100% / 3 - 3%);
    margin-bottom: 20px;
    text-align: center;
}

/*meal-event*/
.meal-event {
    border-bottom: #911740 dashed 2px;
    padding-bottom: 20px;
}

.place {
    position: relative;
    padding-left: 30px;
}

.place::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 55px;
    background: url('./images/pin.webp') no-repeat;
}

.check {
    background: #911740;
    color: #fff;
    padding: 10px;
    display: inline-block;
    margin-bottom: 20px;
}

.gelato {
    position: absolute;
    bottom: 10%;
    right: 10%;
    max-width: 280px;
    z-index: 10;
}

@media only screen and (max-width:1470px) {
    .gelato {
        position: absolute;
        bottom: 0%;
        right: 0%;
        max-width: 280px;
    }
}

@media only screen and (max-width:1366px) {
    .gelato {
        max-width: 200px;
        bottom: 0%;
        right: 0%;
    }
}

@media only screen and (max-width:1024px) {
    .gelato {
        bottom: 10%;
        right: 10%;
        max-width: 280px;
    }

    .meal-image {
        width: 100%;
    }
}


@media only screen and (max-width:768px) {

    .place::before {
        width: 15px;
        height: 23px;
        background: url('./images/pin-sp.webp');
    }

    .gelato {
        max-width: 250px;
        right: 5%;
        bottom: 5%;
    }
}

@media only screen and (max-width:480px) {
    .gelato {
        max-width: 150px;
        right: 0;
        bottom: 0;
    }
}

/*shop*/
h2.shop {
    position: absolute;
    top: -40px;
    left: -10px;
    z-index: 10;
}

.bag {
    position: absolute;
    top: 0%;
    left: 40%;
    max-width: 700px;
    opacity: 0;
}

.bag_sp {
    display: none;
}

@media only screen and (max-width:1024px) {
    .bag {
        display: none;
    }

    .bag_sp {
        max-width: 500px;
        margin: 0 auto;
        opacity: 0;
        display: block;
    }

}


/*back-forest*/
.back-forest {
    height: 100vh;
}

.back-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: inset(0);
}

.back-forestbg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url(./images/back-forest.webp);
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.wave {
    position: relative;
    z-index: 5;
    top: 100.5px;
}

.white {
    background-color: rgba(255, 255, 255, 0.7);
    position: relative;
    top: 0;
    left: 0;
    z-index: 5;
}

.chapter-box {
    border-bottom: #911740 dashed 2px;
    padding-bottom: 100px;
}

.light-up {
    background: #911740;
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
}

.light-up .mark {
    max-width: 130px;
    display: inline-block;
}

h2.present {
    position: absolute;
    top: -40px;
    left: -10px;
    z-index: 10;
}

h2.workshop {
    position: absolute;
    top: -40px;
    left: -10px;
    z-index: 10;
}

.honey {
    display: inline-block;
}

.participation {
    position: absolute;
    top: 10px;
    right: -120px;
    max-width: 120px;
    transform: translateX(-50%);
}

.pilates {
    display: inline-block;
}

.pilates .participation {
    right: -50px;

}


.table-bottom {
    border-bottom: #fff 1px solid;
}

.table-left {
    border-left: #fff 1px solid;
}

.table-right {
    border-right: #fff 1px solid;
}

.middle {
    text-align: center;
    vertical-align: middle;
}

.chapter-hukidashi01 {
    position: absolute;
    z-index: 10;
    top: 0;
    right: 5%;
    max-width: 340px;
}

.chapter-hukidashi02 {
    position: absolute;
    z-index: 10;
    top: 0;
    right: 5%;
    max-width: 175px;
}

.photo01 {
    position: absolute;
    z-index: 10;
    bottom: 0;
    left: 0;
}

.photo02 {
    position: absolute;
    z-index: 10;
    bottom: 0;
    right: 50%;
}



@media only screen and (max-width:1470px) {
    #present {
        max-width: 600px;
    }

    #spot {
        max-width: 600px;
    }
}

@media only screen and (max-width:1470px) {
    .photo02 {
        right: 40%;
    }
}

@media only screen and (max-width:1366px) {
    .photo02 {
        right: 35%;
    }

    .chapter-hukidashi01 {
        right: 5%;
        max-width: 300px;
    }

    .chapter-hukidashi02 {
        right: 0%;
        max-width: 200px;
    }
}

@media only screen and (max-width:1024px) {
    .checkworkshop {
        display: block;
        max-width: 500px;
    }

    .checkpilates {
        display: block;
        max-width: 500px;
    }

    .light-up {
        background: #911740;
        color: #fff;
        padding: 20px;
        display: flex;
        align-items: center;
        width: 100%;
    }

    .chapter-image img {
        width: 100%;
    }

    .chapter-hukidashi01 {
        right: 0;
        max-width: 340px;
    }

    .chapter-hukidashi02 {
        right: 0;
        max-width: 175px;
    }

    .photo01 {
        max-width: 120px;
    }

    .photo02 {
        max-width: 120px;
        right: 38%;
    }

}



@media only screen and (max-width:768px) {
    .light-up {
        max-width: 100%;
    }

    .light-up .mark {
        max-width: 70px;
    }

    .participation {
        top: 0px;
        right: -150px;
    }

    .pilates .participation {
        top: 0px;
        right: -50px;

    }

    .check table {
        font-size: 1.1rem;
    }

    .chapter-hukidashi01 {
        right: 5%;
        max-width: 250px;
    }

    .chapter-hukidashi02 {
        right: 0%;
    }
.back-forest {
    height: 50vh;
}
.chapter-box{padding-bottom: 20px;}
}


@media only screen and (max-width:480px) {
    .photo01 {
        max-width: 60px;
    }

    .photo02 {
        max-width: 60px;
        right: 38%;
    }

    .chapter-hukidashi01 {
        max-width: 140px;
    }

    .chapter-hukidashi02 {
        max-width: 80px;
    }
}


/*コンテンツ概要*/
.inner {
    width: 90%;
    margin: 0 auto;
    position: relative;
}


@media only screen and (max-width:768px) {
    .inner {
        width: 90%;
    }
}

/*villa*/
.villa {
    background: #fff;
    padding: 100px 0;
}

@media only screen and (max-width:1536px) {}

@media only screen and (max-width:1470px) {}

@media only screen and (max-width:1365px) {}

@media only screen and (max-width:1024px) {}

@media only screen and (max-width:768px) {}

/*フッター*/
footer {
    background: #f5f1df;
    position: relative;
    z-index: 2;
}

footer p {
    font-size: 2rem;
}

.parking {
    padding: 10px;
    background: #006934;
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}

.tel {
    padding: 5px;
    background: #000;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.copyright {
    background: #006934;
    color: #fff;
}

@media only screen and (max-width:1470px) {
    .bus {
        max-width: 500px;
    }
}

@media only screen and (max-width:1365px) {}

@media only screen and (max-width:1024px) {}

@media only screen and (max-width:768px) {
    footer p {
        font-size: 1.4rem;
    }

    footer .w45p {
        margin-bottom: 20px !important;
    }

    .address {
        max-width: 100%;
        order: 2;
    }

    .parking {
        font-size: 1.6rem;
        display: inline-block;
        margin: 10px auto;
    }
}

@media only screen and (max-width:480px) {}

/*クーポン*/
.coupon {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    width: 10vw;
    height: 100%;
}
.coupon02 img{width: 100%;}

@media only screen and (max-width:480px) {
.coupon {width: 30vw;}
}

/*TOPに戻る*/
a.top {
    position: fixed;
    z-index: 100;
    bottom: 2%;
    right: 2%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    display: block;
    text-align: center;
    background: #006934;
}

a.top::before {
    content: '\f062';
    font-family: 'Font Awesome 6 Free';
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

a.top.down {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s linear;
}

a.top.up {
    opacity: 1;
    visibility: visible;
    transition: all 0.5s linear;
}