@charset "UTF-8";

/*全体*/
*{
    box-sizing: border-box;
}
:root{
    --font-color-main:#00414c;
}
html {
    scroll-behavior: smooth;
}

body{
    font-family: "Zen Kaku Gothic New", serif;
    font-weight:bold;
    margin:0;
    padding:0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color:#000;
    background:#218C46;
    transition:all .4s;
}
a{
    text-decoration: none;
    color:#000;
}
ul{
    list-style: none;
    padding:0;
    margin:0;
}
img{
    max-width:100%;
    height:auto;
    vertical-align: bottom;
}
section{
    display:block;
}
dl,dt,dd,h1,h2,h3,h4,p,figure{
    margin:0;
}

/*ヘッダー*/
.header{
    position:relative;
    top:0;
    left:0;
    width:100%;
    z-index:9998;
}
.header_inner{
    width:100%;
    height:80px;
    margin:0 auto;
    position: relative;
}
.header_logo img{
    max-width:250px;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align: center;
}

/*ハンバーガー*/
.no-scroll {
    overflow: hidden;
}
.hamburger {
    width: 80px;
    height: 50px;
    position: fixed;
    right:20px;
    top:10px;
    cursor: pointer;
    z-index: 9999;
    background:#FED52B;
    border-radius: 100px;
    display:flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 0 #282828;
    transition:all .4s;
}
.hamburger span {
    position: absolute;
    left: 0;
    width: 40%;
    height: 1px;
    left:50%;
    top:50%;
    transform:translateX(-50%);
    background: #282828;
    transition:all .4s;
}
.hamburger span:nth-child(1) { top: 34%; }
.hamburger span:nth-child(2) { top: 50%; }
.hamburger span:nth-child(3) { top: 65%; }
.hamburger.active span:nth-child(1) {
    transform:translateX(-50%) rotate(45deg);
    top: 50%;
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform:translateX(-50%) rotate(-45deg);
    top: 50%;
}
#hamburger-window {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #218C46;
    clip-path: circle(0% at 95% 5%);
    transition: clip-path .6s ease-in-out;
    z-index: 1000;
    overflow-y: scroll;
    display:flex;
    flex-direction: column;
    padding:0 100px;
}
#hamburger-window.active {
    clip-path: circle(150% at 95% 5%);
}
.hamburger-window_wrapper{
    height:100%;
    position:relative;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap:50px;
}
.ham_list{
    display:flex;
    flex-direction: column;
    gap:30px;
}
.ham_list li a{
    color:#fff;
    font-size:2em;
    position:relative;
    padding-left:1.5em;
    transition:all .4s;
}
.ham_list li a::before{
    content:"";
    position:absolute;
    top:50%;
    left:0;
    transform:translateY(-50%);
    width:20px;
    height:20px;
    background:#fff;
    border-radius: 50px;
}
.ham_foot li{
    background:#FED52B;
    border-radius:50px;
    text-align: center;
    box-shadow: 0 6px 0 #282828;
    transition:all .4s;
    font-size:1.2em;
    width:max-content;
    margin-right:auto;
}
.ham_foot li a{
    display:inline-block;
    width:100%;
    height:100%;
    padding:20px 50px;
}
.ham_foot_img{
    position:absolute;
    bottom:0;
    left:0;
    height:200px;
    width:100%;
    z-index:-1;
}
.ham_foot_img img{
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: top;
}

.animation08{
    position:absolute;
    left:10%;
    bottom:30px;
}
.animation08 img{
    animation: katakata 1.2s ease-in-out infinite;
    max-width:80px;
}
.animation09{
    position:absolute;
    right:10%;
    bottom:100px;
}
.animation09 img{
    animation: katakata 1.2s ease-in-out infinite;
    max-width:100px;
}
.animation10{
    position:absolute;
    right:10%;
}
.animation10 img{
    animation: katakata 1.2s ease-in-out infinite;
    max-width:80px;
}
.animation11{
    position:absolute;
    left:10%;
}
.animation11 img{
    animation: katakata 1.2s ease-in-out infinite;
    max-width:100px;
}

/*メインビジュアル*/
.mv{
    margin-top:20px;
    position:relative;
}
.mv_inner{
    max-width:1200px;
    margin:0 auto;
    position:relative;
}
.swiper {
    width: 100%;
    height: 638px;
    -webkit-mask-image: url(../images/mv_arc2.png);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-image: url(../images/mv_arc2.png);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 100% 100%;
}
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.slide-size {
    width: 100%;
    max-width: 1200px;
    height:100%;
}
.slide-size img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mv_txtArea_wrapper{
    margin-top:15px;
}
.mv_txtArea_wrapper > h1{
    color:#fff;
    font-size:1.5em;
    text-align: center;
}
.illust01{
    margin-top:100px;
    max-width:80%;
    height:150px;
    margin-bottom:-1px;
}
.illust01 img{
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: top;
}

/*information*/
.info{
    background:#fff;
    position:relative;
}
.info_inner{
    padding:100px 40px 250px;
    position:relative;
    max-width:1200px;
    margin:0 auto;
}
.animation01{
    position:absolute;
    left:25%;
    top:100px;
}
.animation01 img{
    animation: katakata 1.2s ease-in-out infinite;
    max-width:60px;
}
@keyframes katakata {
    0%   { transform: rotate(10deg); }
    50%  { transform: rotate(-10deg); }
    100% { transform: rotate(10deg); }
}
.ttl_ye{
    text-align:center;
    width:max-content;
    margin:0 auto;
    border:3px solid #FED52B;
    padding:20px 50px;
    border-radius:50px;
    background:#218C46;
    color:#fff;
}

.info_box{
    margin-top:50px;
    text-align: center;
}
.info_box img{
    box-shadow: 6px 6px 0 #282828;
    cursor:zoom-in;
    transition:all .4s;
}
.illust02{
    max-width:80%;
    width:100%;
    height:150px;
    position:absolute;
    bottom:0;
    right:0;
    margin-bottom:-2px;
}
.illust02 img{
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: top;
}

/*道の駅について*/
.about{
    padding:100px 0  0;
}
.about_inner{
    max-width:1200px;
    margin:0 auto;
    position:relative;
    padding:0 40px;
}
.animation02{
    position:absolute;
    right:25%;
    top:10px;
}
.animation02 img{
    animation: katakata 1.2s ease-in-out infinite;
    max-width:60px;
}
.animation03{
    position:absolute;
    left:25%;
    top:30px;
}
.animation03 img{
    animation: katakata 1.2s ease-in-out infinite;
    max-width:40px;
}
.ttl_wh{
    text-align: center;
    width:max-content;
    margin:0 auto;
    background:#FED52B;
    padding:20px 50px;
    border-radius:50px;
    border: 3px solid #000;
    position: relative;
}
/*.ttl_wh::after{
    content: "";
    position: absolute;
    top: 6px;
    left: -3px;
    width: 100%;
    height: 100%;
    background: #f5c400;
    border: 3px solid #000;
    border-radius: 50px;
    z-index: -1;
}*/
.about_content{
    max-width:900px;
    margin:0 auto;
}
.about_content > p{
    color:#fff;
    line-height: 2;
    margin-top:30px;
    font-weight:400;
}

.gallery_slide{
    margin-top:80px;
}
.slider{
    border-radius:50px;
    border:2px solid #000;
    overflow: hidden;
}
.slider .swiper-slide{
    aspect-ratio: 3 / 2;
}
.slider .swiper-slide a{
    display:block;
    width:100%;
    height:100%;
}
.slider .swiper-slide img{
    width:100%;
    height:100%;
    object-fit: cover;
    cursor:zoom-in;
}

.thumbnail-wrap{
    position:relative;
}
.thumbnail{
    margin-top:30px;
    overflow:hidden;
}
.thumbnail-img{
    aspect-ratio: 3 / 2;
    border-radius:20px;
    border:1px solid #000;
    overflow: hidden;
}
.thumbnail-img img{
    width:100%;
    height:100%;
    object-fit: cover;
}
/*矢印カスタマイズ*/
body .swiper-button-prev,
body .swiper-button-next{
    width:60px;
    height:60px;
    background:#FED52B;
    border-radius:50%;
    box-shadow:0 6px 0 #282828;
    top:70%;
    transform:translateY(-50%);
    transition:all .4s;
}
body .swiper-button-prev{
    left:-80px;
}
body .swiper-button-next{
    right:-80px;
}
body .swiper-button-prev::after,
body .swiper-button-next::after{
    font-size:20px;
    color:#000;
}


.slider-wrapper{
    display:flex;
    overflow: hidden;
    width:100%;
    line-height: 1;
}
.slider2 {
    flex:0 0 auto;
    white-space: nowrap;
    font-size:6em;
    overflow: hidden;
    padding-right:1em;
    color:#FED52B;
    text-shadow: 4px 4px 0 #282828;
    font-weight:400;
    letter-spacing: 0.05em;
    font-family: "Secular One" , serif;
}
.slider2:nth-child(odd) {
    animation: loop 80s -40s linear infinite;
}
.slider2:nth-child(even) {
    animation: loop2 80s linear infinite;
}
@keyframes loop {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
@keyframes loop2 {
    0% {
    transform: translateX(0);
    }
    to {
    transform: translateX(-200%);
    }
}
/*追加紹介*/
.about_pick{
    padding:150px 0 100px;
}
.about_pick_list{
    display:flex;
    flex-direction: column;
    gap:8vw;
}
.about_pick_item{
    display:flex;
    gap:50px;
}
.about_pick_item2{
    flex-direction: row-reverse;
}
.pick_ttl{
    display:flex;
    align-items: center;
    gap:10px;
}
.pick_ttl > h2{
    color:#FED52B;
    text-shadow: 0 4px 0 #282828;
    font-size:1.6em;
}
.pick_txt{
    color:#fff;
    font-weight:500;
    line-height: 2;
    margin-top:50px;
}
.about_pick_left{
    width:50%;
}
.about_pick_right{
    display:flex;
    flex-direction: column;
    gap:30px;
    width:50%;
}
.about_pick_item2 .about_pick_right{
    align-items: flex-end;
}
.pick_img1{
    aspect-ratio: 4 / 3;
    max-width:400px;
}
.pick_img1 img,
.pick_img2 img{
    width:100%;
    height:100%;
    object-fit: cover;
    border-radius:30px;
    border:2px solid #000;
}
.pick_img2{
    aspect-ratio: 3 / 2;
    max-width:300px;
    margin-left:auto;
}
.about_pick_item2 .pick_img2{
    margin-right:auto;
    margin-left:unset;
}

/*施設案内*/
.guide{
    background:#fff;
}
.guide_inner{
    max-width:1000px;
    margin:0 auto;
    padding:100px 40px;
    position:relative;
}
.animation04{
    position:absolute;
    right:25%;
    top:130px;
}
.animation04 img{
    animation: katakata 1.2s ease-in-out infinite;
    max-width:70px;
}
.animation05{
    position:absolute;
    left:25%;
    top:80px;
}
.animation05 img{
    animation: katakata 1.2s ease-in-out infinite;
    max-width:60px;
}
.guide_map{
    margin-top:50px;
}
.guide_map a{
    cursor:zoom-in;
}
.guide_wrapper{
    margin-top:50px;
}
.guide_wrapper > dl{
    display:flex;
    align-items: center;
    padding:30px;
    border-top:2px solid #218C46;
    border-bottom:2px solid #218C46;
    margin-bottom:-2px;
}
.guide_wrapper > dl dt{
    width:30%;
}
.guide_wrapper > dl dd{
    flex:1;
    font-weight:400;
}
.guide_wrapper > dl dd ul{
    display:flex;
    flex-direction: column;
    gap:10px;
}
.guide_wrapper > dl dd ul li{
    display:flex;
    align-items: center;
    gap:8px;
}

/*ショップ案内*/
.shop{
    background:#fff;
    position:relative;
}
.shop_inner{
    max-width:1200px;
    margin:-1px auto 0;
    padding:0 40px 200px;
    position:relative;
}
.animation06{
    position:absolute;
    right:25%;
    top:0;
}
.animation06 img{
    animation: katakata 1.2s ease-in-out infinite;
    max-width:60px;
}
.animation07{
    position:absolute;
    left:25%;
    top:30px;
}
.animation07 img{
    animation: katakata 1.2s ease-in-out infinite;
    max-width:40px;
}
.shop_map{
    margin-top:50px;
    text-align: center;
}
.shop_map a{
    cursor:zoom-in;
}
.shop_list_wrapper{
    margin-top:50px;
}
.shop_list{
    display: flex;
    flex-wrap: wrap;
    gap: 60px 40px;
}
.shop_item{
    width: calc(50% - 20px);
}
.shop_item:nth-child(even){
    margin-top: 80px;
}
.curtain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #218c46;
    border-radius:50px;
    z-index: 10;
    transform: translateY(0);
    transition: transform 0.8s ease;
}
.curtain.open {
    transform: translateY(-100%);
}
.swiper2{
    overflow: hidden;
    position:relative;
    border-radius:50px;
    border:2px solid #282828;
    box-shadow: 6px 6px 0 #282828;
}
.swiper-wrapper2{
    cursor: pointer;
}
.swiper-img2{
    aspect-ratio: 4 / 3;
    
}
.swiper-img2 img{
    width:100%;
    height:100%;
    object-fit: cover;
}
.swiper-pagination{
    position:absolute;
}
.swiper-pagination-bullets{
    justify-content: flex-start;
    display:flex;
    padding-left:40px;
    padding-bottom:10px;
}
.swiper-pagination-bullet-active{
    background:#FED52B !important;
}

.shop_name{
    display:flex;
    align-items: center;
    gap:10px;
}
.shop_name span{
    display:flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width:40px;
    height:40px;
    aspect-ratio: 1 / 1;
    background:#FED52B;
    border-radius: 50px;
    border:1px solid #282828;
    font-size:1.2em;
}
.shop_name h2{
    font-size:1.2em;
}
.shop_content{
    margin-top:20px;
}
.shop_content ul{
    display:flex;
    align-items: center;
    gap:10px;
    margin-top:10px;
}
.shop_content ul li{
    background: #218c46;
    border:1px solid #282828;
    border-radius:30px;
    width:3em;
    box-shadow: 0 3px 0 #282828;
    transition:all .4s;
}
.shop_content ul li a{
    color:#FED52B;
    display:flex;
    align-items: center;
    justify-content: center;
    width:100%;
    height:100%;
    line-height: 1;
    padding:5px 0;
    font-size:.9em;
}

/*アクセス*/
.access{
    padding:100px 40px;
}
.access_inner{
    max-width:1000px;
    margin:0 auto;
}
.access_content{
    color:#fff;
    text-align: center;
    margin:60px 0;
}
.access_content2{
    max-width:650px;
    margin:0 auto;
}
.access_content h4{
    font-size:1.4em;
    margin-bottom:10px;
}
.access_content p a{
    color:#fff;
    text-decoration: underline;
    text-underline-offset: 5px;
}
.access_txt{
    font-weight:400;
}
.access_content ul{
    text-align: left;
    font-weight:400;
    display:flex;
    flex-direction: column;
    gap:10px;
}
.map{
    border:2px solid #282828;
    border-radius:30px;
    overflow: hidden;
    height:450px;
}
.map iframe{
    max-width:1000px;
    width:100%;
    border-radius:30px;
    height:100%;
}

/*フッター*/
.footer{
    background:#FED52B;
}
.footer_inner{
    padding:60px 40px 20px;
    text-align: center;
    display:flex;
    flex-direction: column;
    gap:40px;
}
.f_logo img{
    max-width:250px;
}
.f_btn{
    background:#fff;
    width:max-content;
    margin:0 auto;
    border:2px solid #282828;
    border-radius:50px;
    box-shadow: 0 4px 0 #282828;
    transition:all .4s;
}
.f_btn a{
    padding:20px 40px;
    display:block;
}

/*
ポンっとでるアニメーション
*/
.pop-in {
    opacity: 0;
    transform: scale(0.8);
}
@keyframes popBounce {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }
    60% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.pop-in.show {
    animation: popBounce 0.6s ease-out forwards;
}