@charset "UTF-8";
/* CSS Document */

/*---------------------------------
reset
---------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a,
a::before,
a::after {
    text-decoration: none;
    color: inherit;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    line-height: 1.4;
    font-weight: normal;
}

ul,
li {
    list-style-type: none;
}

/*---------------------------------
structure
---------------------------------*/
::selection {
    background: #41b1de;
    color: #fff;
}

body {
    background: #d9cebc;
    color: #51463a;
    display: flex;
    flex-direction: column;
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-feature-settings: "palt";
    font-size: 24px;
    letter-spacing: 0.08em;
    line-height: 1.6;
    word-break: break-all;
}

.contents{
    overflow: hidden;
}

.inr {
    margin: 0 auto;
    width: 90%;
    max-width: 1000px;
}
.inr .inr {
    width: 94%;
}


/*hover*/
@media (hover: hover) and (pointer: fine) {
    a,
    a img {
        transition: .3s all;
    }
    a:hover{
        opacity: .6;
    }
}

/*responsive*/
@media screen and (max-width: 999px) {
    body {
        font-size: 18px;
    }
}

@media screen and (max-width: 499px) {
    body {
        font-size: 15px;
    }
    .inr .inr {
        width: 100%;
    }
}


/*---------------------------------
element
---------------------------------*/
/*margin*/
.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt60 {
    margin-top: 60px;
}

.mt80 {
    margin-top: 80px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb60 {
    margin-bottom: 60px;
}

.mb80 {
    margin-bottom: 80px;
}

/*width*/
.w100 {
    width: 100%;
}

.w50 {
    width: 50%;
}

/*text*/
.fz80 {
    font-size: 80%;
}

.fz90 {
    font-size: 90%;
}

.fz110 {
    font-size: 110%;
}

.fz120 {
    font-size: 120%;
}

.fz140 {
    font-size: 140%;
}

.fz160 {
    font-size: 160%;
}

.fz180 {
    font-size: 180%;
}

.t_center {
    text-align: center;
}
.t_right {
    text-align: right;
}

.t_light{
    color: #a9aeb3;
}
.t_color1{
    color: #41b1de;
}

.f_bold {
    font-weight: bold;
}

.primary {
    color: #f84600;
}

.underline {
    text-decoration: underline;
}

/*layout*/
.flex_box {
    display: flex;
    column-gap: .6em;
    row-gap: .4em;
}

.flex_center {
    justify-content: center;
}

.flex_right {
    justify-content: flex-end;
}

.flex_wrap {
    flex-wrap: wrap;
}

.grid_box {
    display: grid;
    gap: 20px;
}
.two_grid{
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.three_grid{
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.btn{
    border: 2px solid currentColor;
    border-radius: 100px;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    line-height: 1.4;
    padding: 10px 16px;
    text-align: center;
}
.btn.arrow::after{
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    aspect-ratio: 1 / 1;
    border: 0;
    border-top: solid 2px currentColor;
    border-right: solid 2px currentColor;
    transform: rotate(45deg);
}

.back{
    position: relative;
    padding-left: 36px;
}
.back::before{
    content: '';
    background-color: #1a1a1a;
    width: 26px;
    height: 1px;
    display: block;
    margin: auto;
    position: absolute;
    bottom: 6px;
    left: 2px;
    transition: all .3s;
}
.back::after{
    content: '';
    background-color: #1a1a1a;
    width: 10px;
    height: 1px;
    display: block;
    position: absolute;
    bottom: 10px;
    left: 0px;
    transform: rotate(-45deg);
    transition: all .3s;
}

.youtube {
    font-size: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
}
.youtube iframe {
    width: 100%;
    height: 100%;
}

ul.list{
    margin-left: 1.2em;
}
ul.list li{
    list-style-type: disc;
}
ol li{
    text-indent: -2em;
    padding-left: 2em;
}


/*responsive*/
@media screen and (max-width: 999px) {
    .pc_only{
        display: none;
    }
    .two_grid{
        gap: 20px;
    }
}
@media screen and (max-width: 599px) {
    .two_grid.sp_break{
        grid-template-columns: 1fr;
    }
    .three_grid.sp_break{
        grid-template-columns: 1fr;
    }
}




/*---------------------------------
header
---------------------------------*/
input#menu{
    display: none;
}
header{
    position: relative;
}
header .logo{
    width: 80px;
}
header .gnav_wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 80%;
    padding: 0 2% 0;
}
header .gnav{
    background-color: #fff;
    border-radius: 100px;
    display: flex;
    gap: 30px;
    padding: 10px 50px;
}
header .shop a{
    display: flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
}
header .shop a::before{
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(../img/icon_shop.png);
    background-repeat: no-repeat;
    background-size: contain;
}

header .main_dish1{
    position: absolute;
    width: 25%;
    top: 20%;
    left: -2%;
    z-index:-1;
}
header .main_dish2{
    position: absolute;
    width: 15%;
    top: 30%;
    right: 8%;
    z-index:-1;
}
header .main_dish3{
    position: absolute;
    width: 15%;
    top: 60%;
    left: 2.5%;
    z-index:-1;
}
header .main_snow1{
    position: absolute;
    width: 70%;
    top: 0;
    right: 5%;
    z-index:-1;
}
header .main_snow2{
    position: absolute;
    width: 10%;
    bottom: 4%;
    left: 2%;
    z-index:2;
}
header .main_ttl{
    margin-inline: auto;
    position: relative;
    width: 46%;
    z-index: 2;
}
header .main_img{
    font-size: 0;
    line-height: 1.0;
    margin-top: -20%;
    position: relative;
    z-index: 1;
}


/*responsive*/
@media screen and (max-width: 999px) {
    /*spmenu*/
    .menu-btn {
        background: #51463a;
        border: 2px solid #fff;
        border-radius: 50%;
        display: block;
        width: 50px;
        height: 50px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 999;
    }
    .menu-btn span,
    .menu-btn span::before,
    .menu-btn span::after {
        position: absolute;
        display: block;
        content: "";
        width: 22px;
        height: 2px;
        background-color: #fff;
        transition: all 0.5s;
    }
        .menu-btn span::before {
        top: -6px;
    }
    .menu-btn span::after {
        bottom: -6px;
    }
    #menu:checked + .menu-btn span {
        background-color: transparent;
    }
    #menu:checked + .menu-btn span::before {
        top: 0;
        transform: rotate(45deg);
    }
    #menu:checked + .menu-btn span::after {
        bottom: 0;
        transform: rotate(-45deg);
    }
    .gnav_wrap{
        background-color: #fff;
        border-radius: 0 0 0 10px;
        position: fixed;
        max-width: 400px;
        width: 80%;
        top: 0;
        right: -82%;
        padding: 60px 24px 30px;
        transition: all 0.5s;
        z-index: 900;
        filter: drop-shadow(-2px -2px 5px rgba(149, 77, 59, 0.4));
    }
    .gnav_wrap nav{
        margin-right: auto;
        margin-left: auto;
        max-width: 400px;
    }
    #menu:checked ~ .contents .gnav_wrap {
        right: 0;
    }

    header .gnav_wrap{
        display: block;
        font-size: 100%;
        padding: 60px 40px 40px;
    }
    header .gnav{
        display: block;
        padding: 0;
    }
    header .gnav > li{
        border-bottom: 1px solid #d9cebc;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    header .main_ttl{
        width: 80%;
    }

    header .main_dish1{
        width: 40%;
        top: 20%;
        left: -2%;
    }
    header .main_dish2{
        width: 25%;
        top: 30%;
        right: 8%;
    }
    header .main_dish3{
        width: 20%;
        top: 65%;
        left: 0%;
    }
}


/*---------------------------------
main
---------------------------------*/
main p{
    text-align: justify;
    word-break: break-all;
}
.bg{
    background-image: url(../img/bk.jpg);
}
.bg_main{
    margin-top: -6%;
    padding-top: 8%;
}

.slick-dots{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}
.slick-dots button{
    background-color: #8b8c8c;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0;
    border: none;
    width: 14px;
    height: 14px;
}
.slick-dots .slick-active button{
    background-color: #51463a;
}
.slick-track {
  display: flex;
}
.slick-slide {
  height: auto !important;
}
.slick-arrow{
    background-color: #39805e;
    border: none;
    border-radius: 50%;
    display: block;
    font-size: 0;
    width: 30px;
    height: 30px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    cursor: pointer;
}
.slick-arrow.slick-disabled{
    opacity: .6;
}
.slick-prev{
    left: -15px;
}
.slick-next{
    left: calc( (100% / 3 * 2) - 55px);
}
.slick-prev::before{
    content: '';
    background-color: #dedede;
    display: block;
    height: calc(tan(60deg) * 14px / 2);
    width: 14px;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    margin: auto;
    position: absolute;
    top: 9px;
    left: 7px;
}
.slick-next::before{
    content: '';
    background-color: #dedede;
    display: block;
    height: calc(tan(60deg) * 14px / 2);
    width: 14px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    margin: auto;
    position: absolute;
    top: 9px;
    left: 10px;
}

.w540{
    max-width: 540px;
    margin-inline: auto;
}
.w670{
    max-width: 670px;
    margin-inline: auto;
}
.w800{
    max-width: 800px;
    margin-inline: auto;
}

.news_ttl,
.news_btn{
    max-width: 130px;
}
.news_grid_box{
    grid-template-columns: 130px calc(100% - 210px);
    padding-left: 5%;
    gap: 80px;
}
.news_slider .news_article{
    background-color: #fff;
    border-radius: 20px;
    height: 100%;
    padding: 40px;
}
.news_slider .news_wrap{
    padding-right: 40px;
}
.news_slider .cate li{
    background-color: #d9cebc;
    border-radius: 100px;
    font-size: 70%;
    padding: 4px 16px;
}

#about{
    padding: 80px 0 0;
    position: relative;
}
#about .inr{
    position: relative;
    z-index: 1;
}
#about::before{
    content: '';
    display: block;
    width: 50%;
    aspect-ratio: 720 / 420;
    background-image: url(../img/about_bg_map.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom left;
    position: absolute;
    z-index: 0;
}
#about::after{
    content: '';
    display: block;
    width: 100%;
    aspect-ratio: 1200 / 168;
    background-image: url(../img/bg_line.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom left;
    margin-top: 80px;
}

.about_ttl,
.secret_ttl{
    max-width: 520px;
    margin-inline: auto;
}

.about_subttl{
    max-width: 340px;
}
.secret_slider_wrap{
    position: relative;
    overflow: hidden;
}
.secret_slider_wrap::before,
.secret_slider_wrap::after{
    content:'';
    display: block;
    width: 500px;
    height: 100%;
    background-image: url(../img/secret_tree.png);
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    z-index: 9;
}
.secret_slider_wrap::before{
    left: -250px;
}
.secret_slider_wrap::after{
    right: -250px;
}
.secret_slider .secret_wrap{
    display: flex;
    flex-direction: column;
    padding: 0 40px;
}

.secret_slider .bg_secret_box{
    background-color: #ece8df;
    border-radius: 100px;
    height: 100%;
    padding: 20px 60px 60px;
}
.secret_slider .secret_subttl{
    width: 90%;
    margin-inline: auto;
    margin-bottom: -5%;
    position: relative;
    z-index: 1;
}

.movie_slider .movie_wrap{
    padding: 0 15px;
}
.movie_slider .bg_movie_box{
    background-color: #fff;
    padding: 20px;
}
.movie_slider figure{
    cursor: pointer;
    position: relative;
}
.movie_slider figure::after{
    content: '';
    display: block;
    width: 40%;
    height: 30%;
    background-image: url(../img/movie_btn_play.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.movie_ttl,
.recipe_ttl{
    margin-inline: auto;
    max-width: 400px;
}
.recipe_list{
    line-height: 1.4;
    padding-bottom: 80px;
    column-gap: 80px;
}
.recipe_list > div{
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 20px;
}
.recipe_list > div:first-child ul,
.recipe_list > div:nth-child(2) ul{
    position: relative;
}
.recipe_list > div:first-child ul::after,
.recipe_list > div:nth-child(2) ul::after{
    content: '';
    display: block;
    width: 4px;
    height: 100%;
    background-image: radial-gradient(circle, #8b8c8c 2px, transparent 2px);
    background-position: right top;
    background-repeat: repeat-y;
    background-size: 4px 20px;
    position: absolute;
    top: 0;
    right: -42px;
}
.recipe_list figure{
    font-size: 0;
}
.recipe_list .chara{
    margin-inline: auto;
    max-width: 180px;
}
.recipe_list h3{
    background-color: #51463a;
    border-radius: 8px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.recipe_list a{
    background-color: #eeefda;
    display: block;
    height: 100%;
}
.recipe_list a p{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 90%;
    padding: 10px 10px;
}
.recipe_list a p::after{
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    aspect-ratio: 1 / 1;
    border: 0;
    border-top: solid 2px currentColor;
    border-right: solid 2px currentColor;
    transform: rotate(45deg);
}

.fair_ttl{
    font-size: 0;
    position: relative;
}
.fair_ttl::before{
    content:'';
    background-image: url(../img/fair_ttl_option.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 25%;
    aspect-ratio: 22 / 6;
    max-width: 220px;
    max-height: 60px;
    position: absolute;
    left: 31%;
    bottom: -3%;
}

.fair_contents{
    background-color: #fff;
    border-radius: 60px;
    padding: 8%;
}
.fair_contents .term{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    row-gap: 10px;
}
.fair_contents .term dt{
    background-color: #39805e;
    border-radius: 40px;
    color: #fff;
    display: inline-block;
    padding: 5px 30px;
}
.fair_contents .two_grid{
    grid-template-columns: 2fr 3fr;
}


.inview {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 1.6s, opacity 1.6s;
}
.inview.show {
  transform: translateY(0);
  opacity: 1;
}

.side_chara1 {
  transition: all 1.0s;
  position: fixed;
  left: -140px;
  width: 120px;
  transform: rotate(90deg);
}
.side_chara1.show {
  left: -30px;
}

/*responsive*/
@media screen and (max-width: 999px) {
    .slick-prev{
        left: 15px;
    }
    .slick-next{
        left: initial;
        right: 15px;
    }
    .news_ttl_wrap{
        display: flex;
        justify-content: space-between;
    }
    .news_ttl,
    .news_btn{
        margin-inline: 5%;
    }
    .news_grid_box{
        grid-template-columns: 100%;
        padding: 0;
        gap: 20px;
    }
    .news_slider .news_wrap{
        padding: 0 10px;
    }
    .secret_slider .secret_wrap{
        padding: 0 20px;
    }
    .secret_slider .bg_secret_box{
        border-radius: 40px;
        padding: 20px 20px 40px;
    }
    .secret_slider_wrap::before,
    .secret_slider_wrap::after{
        display: none;
    }
    .recipe_list{
        column-gap: 40px;
    }
    .recipe_list > div:first-child ul::after,
    .recipe_list > div:nth-child(2) ul::after{
        right: -22px;
    }
}

@media screen and (max-width: 599px) {
    .news_slider .news_article{
        grid-template-columns: 1fr;
    }
    .recipe_list ul{
        grid-template-columns: 1fr 1fr;
    }
    .recipe_list > div:first-child ul::after,
    .recipe_list > div:nth-child(2) ul::after{
        display: none;
    }

    .fair_contents{
        border-radius: 20px;
    }
    .fair_contents .term{
        font-size: 88%;
    }
    .fair_contents .term .fz140{
        font-size: 120%;
    }
   .fair_contents .two_grid{
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.shop{
    padding: 60px 0;
}
.shop h1 span{
    display: inline-block;
}
.shop .shop_list{
    position: relative;
}
.shop .shop_list_top_chara{
    width: 83px;
    position: absolute;
    right: 4%;
    top: -200px;
    z-index: 0;
}
.shop .shop_list > article{
    background-color: #fff;
    border-radius: 60px;
    padding: 60px 8%;
    position: relative;
    z-index: 1;
}
.shop .shop_list > article + article{
    margin-top: 40px;
}
.shop .shop_list .shop_name{
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 10px;
    align-items: start;
}
.shop .shop_list .area{
    background-color: #d9cebc;
    display: inline-block;
    padding: 5px 10px;
}
.shop .shop_list .info_wrap{
    grid-template-columns: 1fr 2fr;
}
.shop .shop_list .shop_photo{
    font-size: 0;
    margin-inline: auto;
    max-width: 300px;
}
.shop .shop_list .info_wrap dt{
    border-left: 6px solid #382503;
    font-weight: bold;
    margin-bottom: 5px;
    padding-left: 6px;
}
.shop .shop_list .info_wrap dd + dt{
    margin-top: 20px;
}
.shop .shop_list .menu_list > li{
    background-color: #f9f8f6;
    border-radius: 20px;
    padding: 10px 20px;
}
.shop .shop_list .menu_list > li + li{
    margin-top: 10px;
}
.shop .shop_list .marker{
     background: linear-gradient(transparent 20%, #f1e2c9 20%);
}


/*responsive*/
@media screen and (max-width: 999px) {
    .shop{
        padding-top: 0;
    }
    .shop h1{
        padding: 0 50px;
    }
    .shop .shop_list_top_chara{
        width: 40px;
        top: -100px;
    }
    .shop .shop_list > article{
        border-radius: 40px;
        padding: 8% 8%;
    }
}

@media screen and (max-width: 599px) {
    .shop .shop_list .info_wrap{
        grid-template-columns: 1fr;
    }
}



.policy_wrap{
    background-color: #fff;
    border-radius: 60px;
    font-size: 80%;
    padding: 60px 8%;
}
.policy_wrap h2{
    margin-bottom: 20px;
}
.policy_wrap h2:not(:first-child){
    margin-top: 40px;
}

/*responsive*/
@media screen and (max-width: 999px) {
    .policy_wrap{
        border-radius: 40px;
        font-size: 90%;
        padding: 40px 8%;
    }
}


/*---------------------------------
footer
---------------------------------*/
.footer_wave{
    font-size: 0;
    margin-bottom: -1px;
}
.footer_contents{
    background-color: #382503;
    color: #fff;
    font-size: 80%;
    padding-bottom: 70px;
    word-break: break-all;
}
.footer_logo{
    margin-inline: auto;
    max-width: 340px;
}

#fixed_btn{
    width: 30%;
    min-width: 70px;
    max-width: 184px;
    right: 10px;
    bottom: 20px;
    transition: all .3s;
    position: fixed;
    z-index: 9;
    opacity: 0;
}
.fixed_btn{
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120%;
    line-height: 1.2;
    width: 100%;
    max-width: 184px;
    aspect-ratio: 1 / 1;
}
.fixed_btn p{
    position: relative;
    z-index: 1;
}
#shop{
    background-color: #c45957;
    opacity: 1.0 !important;
    transition: all .3s;
}
#shop::before{
    content: '';
    display: block;
    width: 40%;
    max-width: 83px;
    aspect-ratio: 83 / 259;
    background-image: url(../img/footer_chara2.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    transition: all .3s;
}
#pagetop{
    background-color: #3d805f;
    margin-top: 40px;
    position: relative;
    transition: all .3s;
}
#pagetop::before{
    content: '';
    display: block;
    width: 80%;
    max-width: 116px;
    aspect-ratio: 116 / 171;
    background-image: url(../img/footer_chara1.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    transition: all .3s;
}



/*hover*/
@media screen and (min-width: 1200px) {
    #shop::before{
        top: -40%;
        z-index: -1;
    }
    #pagetop::before{
        top: -40%;
        left: -40%;
        z-index: -1;
        transform: rotate(-45deg);
    }
}
@media (hover: hover) and (pointer: fine) {
    #shop:hover{
        background-color: #2b7d89;
    }
    #pagetop:hover{
        background-color: #2b7d89;
    }

    @media screen and (min-width: 1200px) {
        #shop:hover::before{
            top: -44%;
        }
        #pagetop:hover::before{
            top: -44%;
            left: -44%;
        }
    }
}


/*responsive*/
@media screen and (max-width: 1199px) {
    .footer_contents{
        padding-bottom: 20%;
    }
    #fixed_btn{
        display: flex;
        width: 100%;
        min-width: initial;
        max-width: initial;
        right: 0;
        bottom: 0;
        position: sticky;
    }
    #fixed_btn .pc_only{
        display: none;
    }
    .fixed_btn{
        border-radius: 0;
        color: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 120%;
        line-height: 1.2;
        padding: 20px 4% 20px 14%;
/*        width: 50%;*/
        max-width: initial;
        aspect-ratio: initial;
    }
    #shop::before{
        z-index: 2;
        bottom: 0;
        left: 4%;
        width: 8%;
        background-position: bottom center;
    }
    #pagetop{
        margin-top: 0;
    }
    #pagetop::before{
        z-index: 2;
        bottom: 0;
        left: 4%;
        width: 24%;
        transform: rotate(0);
        background-position: bottom center;
    }
}