@charset "UTF-8";


/*
========================================
リセットCSS
=========================================
 */

/* http://meyerweb.com/eric/tools/css/reset/
    v2.0 | 20110126
    License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*
========================================
基本情報
=========================================
 */

 /* *{
	outline: 2px solid blue;
 } */

body{
    background-color: #FDFDEB;
    font-family: 'Comfortaa', cursive;
    font-family: 'Klee One', cursive;
    font-size: 16px;
    width: 100%;
    overflow-x: hidden;
}

@media (max-width: 281px){
    body{font-size: 10px;}
}

img{
    max-width: 100%;
}

.container__width{
    width: 90%;
    margin: 0 auto;
}

@media (min-width:1500px) {
    .container__width{
        width: 70%;
    }
}

html{
    scroll-behavior: smooth;
}

main{
    overflow-x: hidden;
}

.animate-title {
    font-size: 20px;
}

.main__title{
    text-align: center;
    padding-top: 8%;
    padding-bottom: 8%;
}

h1{
font-size: clamp(23px,2vw,28px);
margin-bottom: 8px;
}

body:not(is_home) h2{
font-size: clamp(23px,2vw,23px);
	margin-bottom: 8px;
}

body:not(is_home) h1{
font-size: clamp(23px,2vw,28px);
letter-spacing: 0.05em;
}

.main_col{
    margin-bottom: 120px;
}
.main_pa{
    padding-top: 120px;
    padding-bottom: 120px;
}

/*
========================================
ロード
=========================================
 */

#loading{
    transition: all 3s;
    background-color: #FDFDEB;
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: grid;
    place-items: center;
}

.spinner{
    width: 80px;
    animation: sk-tail 1.4s infinite;
}

@keyframes sk-tail {
    0%{
        transform: rotate(-5deg);
    }
    100%{
        transform: rotate(5deg);
    }
}

.loaded{
    opacity: 0;
    visibility: hidden;
}

/*
========================================
アニメーション
=========================================
 */

.mobile-menu-btn span {
  background-color: #fff;
  transition: background-color 0.4s;
}

.mobile-menu-btn span.dark {
  /* background-color: #707070; */
  background-color: #808080;
}

.innner__instagram img,
.innner__telephone img {
  transition: filter 0.4s;
  filter: invert(0%);
}

.innner__instagram img.dark,
.innner__telephone img.dark {
  filter: invert(50%);
}

/*
========================================
ヘッダー
=========================================
 */

header{
    position: relative;
    background-image: url(images/top-mb.jpg);
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

@media (min-width:540px) {
    header{
        background-image: url(images/top-tb.jpg);
        background-position: top center;
    }
}

@media (min-width:1024px) {
    header{
        background-image: url(images/top.jpg);
        background-position: center center;
    }
}

@media (max-width:375px) {
    header{
        background-image: url(images/top-mb-s.jpg);
        background-position: center center;
    }
}


h1{text-align: center;
    font-size: 25px;
    }

.header__logo{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 200px;
}

@media (min-width:768px) {
    .header__logo{
        width: 240px;
    }
}

@media (max-width:375px) {
    .header__logo{
        width: 150px;
    }
}

.innner__instagram{
    position: fixed;
    right: 32px;
    top: 5rem;
    width: 38px;
    z-index: 2;
}

.innner__telephone{
    position: fixed;
    right: 32px;
    top: 8rem;
    width: 38px;
    z-index: 2;
}

.innner__telephone img{
    mix-blend-mode: difference;
}

.innner__home{
    position: fixed;
    right: 2rem;
    top:3rem;
    border: none;
    background-color: transparent;
    cursor: pointer;
    z-index: 2;
    padding: 0px;
    width: 33px;
}

@media (min-width:768px) {
    .innner__home{
        width: 42px;
    }
}

.container__header{
    z-index: 999;
}

.title{
    text-align: center;
    /* margin-top: clamp(80px,8vw,120px); */
    margin-bottom: clamp(50px,4vw,60px);
}


/*
========================================
メニューアイコン
=========================================
 */

.mobile-menu-btn{
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: fixed;
    right: 32px;
    top: 2rem;
    /* z-index: 5; */
    padding: 0;
}

.mobile-menu-btn span{
    background-color: #fff;
    width: 35px;
    height: 2px;
    display: block;
    margin-bottom: 9px;
    transition: all 0.7s;
    /* border: 1px solid #6f7070; */
}

.mobile-menu-btn span:last-child{
    margin-bottom: 0;
}

.menu-open .mobile-menu-btn span{
    background-color: #707070;
}

.menu-open .mobile-menu-btn span:nth-child(1){
    transform: translateY(14px) rotate(135deg);
}

.menu-open .mobile-menu-btn span:nth-child(2){
    transform: translateX(-18px)  scaleX(0);
}

.menu-open .mobile-menu-btn span:nth-child(3){
    /* transform: translateY(-14px) rotate(-135deg); */
    transform: translateY(-11px) rotate(-135deg);
}

#global-container.menu-open {
    position: fixed;
    z-index: 4;
    width: 100%;
    height: 100vh;
    overflow: auto;
    background-image: url(images/bg.png);
    right: 0;

}

#global-container{
    position: relative;
    top: 0;
    right: -120%;
    width: 100%;
    transition: all 0.6s;
}

#global-container ul {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    padding: 50px 100px;
    border-radius: 12px;
}

#global-container ul li a{
    text-decoration: none;
    color: #707070;
    line-height: 2;
    font-size: clamp(16px,3vw,23px);
}

.mobile-menu{
    position: fixed;
    left: 0;
    top: 60px;
    border: none;
    z-index: 2;
}

.menu__page .mobile-menu-btn span{
    background-color: #707070;
}


#global-container {
    position: fixed;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    transition: right 0.6s ease;
    background-image: url(images/bg.png);
    z-index: 2;
    /* z-index: 9999; */
}

/* 開いたとき */
#global-container.menu-open {
    right: 0;
}

/* メニュー内容 */
#global-container ul {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
    padding: 50px 100px;
    border-radius: 12px;
    opacity: 0;
    transition: all 0.5s ease;
}

/* 開いたときの文字表示 */
#global-container.menu-open ul {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}


.menu__inner{
    gap:clamp(14px,3vw,16px);
}

.menu__page-menu{
	gap: 48px !important
}

.menu__page-menu img{
margin-bottom: 16px;
}

.menu__img p{
line-height:1.5;
}

.fukidashi{
padding: 16px clamp(12px,3vw,32px);
}

.fukidashi{
line-height: 1.5;
}

.container__header,
.container__width,
#global-container {
  transform: none !important;
  will-change: auto !important;
}


/*
========================================
ニュース
=========================================
 */

#news{
    background-image: url(images/bg.png);
    background-attachment: fixed;
}

@media (min-width: 960px){
    #news{background-image: url(images/bg2.png);
    }
}

.schedule img{
    width: 275px;
}

.schedule{
    text-align: center;
}

/*
========================================
スライダー
=========================================
 */
.swiper {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    /* margin-top: 8%; */
}

@media (min-width: 960px){
    .swiper{height: 300px;}
}

/*
========================================
アバウト
=========================================
 */

.keito img{
    position: absolute;
    z-index: 999;
    /* top: 12px; */
    top: 4px;
    left: 50%;
    transform: translate(-50%);
    width: 350px;
	margin: 0 auto;
}

article{
    display: grid;
    place-items: center;
    position: relative;
    background-color: #fff;
    width: 300px;
    margin: 0 auto;
    padding: clamp(20px,3vw,32px);
    line-height: 1.5rem;
	padding-top: clamp(24px,3vw,32px);
}

@media (max-width:280px) {
    .keito img{
        width: 266px;
        height: 328px;
    }
    article{
        width: 200px;
    }
}

h2
{
    text-align: center;
}

span{
    /* display: grid; */
    /* place-items: center; */
    padding-top: 5%;
}

/*
========================================
メニュー
=========================================
 */

#menu{
    overflow: hidden;
}


.menu1{
    display: flex;
    align-items: center;
    background-image: url(images/green-book.png);
    background-repeat: no-repeat;
    background-size: auto 250px ;
    padding-top: 40px;
    padding-bottom: 75px;
}

@media (min-width: 281px){
    .menu1{
        padding-bottom: 60px;
    }
}

.menu2{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    background-image: url(images/yellow-book.png);
    background-repeat: no-repeat;
    background-size: auto 250px ;
    background-position: right;
    padding-top: 40px;
    padding-bottom: 60px;
}

.menu2 img{
    width: 220px;
    height: 200px;
    transform: rotate(5deg);
    margin-left: 25px;
    object-fit: cover;
}

.menu3{
    display: flex;
    align-items: center;
    background-image: url(images/red-book.png);
    background-repeat: no-repeat;
    background-size: auto 250px ;
    padding-top: 40px;
    padding-bottom: 60px;
}

@media (min-width: 1330px) {
    .menu1{
        display: flex;
        background-size: 380px 250px ;
        padding-top: 40px;
        padding-bottom: 60px;
        background-position: center;
        padding-left:55px ;
    }

    .menu2{
        display: flex;
        flex-direction: row-reverse;
        background-size: 380px 250px ;
        background-position: center;
        padding-top: 40px;
        padding-bottom: 60px;
        padding-left:35px ;
    }

    .menu3{
        display: flex;
        background-size: 380px 250px ;
        padding-top: 40px;
        padding-bottom: 60px;
        background-position: center;
        padding-left: 55px;
    }
}

.menu__container{
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
}

@media (min-width: 414px){
    .menu__container{
        width: 80%;
        margin: 0 auto;
    }
}

@media (min-width: 960px){
    .menu__container{
        width: 70%;
        margin: 0 auto;
    }
}

@media (min-width: 1330px){
    .menu__container{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 90%;
        margin: 0 auto;
    }
}

@media (min-width: 1500px){
    .menu__container{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 80%;
        margin: 0 auto;
    }
}

.menu__container img{
    width: 220px;
    transform: rotate(-5deg);
    margin-right: 25px;
}

@media (max-width:280px) {
    .menu__container img{
        width: 180px;
    }
}

.menu__container p{
    text-align: center;
    background-color: #fff;
    width: 100px;
	line-height: 1.6;
}

@media (min-width: 414px){
    .menu__container p{
        font-size: 0.9rem;
    }
}

@media (max-width: 400px){
    #menu p{font-size: 14px;}
}

.menu-btn{
    border:none;
    background: none;
    display: block;
    width: 100%;
    /* padding: 5% 0; */
    cursor: pointer;
    margin-top: clamp(60px,6vw,80px);
}

.menu-btn:hover{
    transform: scale(1.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

/*
========================================
ギャラリー
=========================================
 */

#gallery{
    background-image: url(images/bg.png);
    background-attachment: fixed;
}

@media (min-width: 960px){
    #gallery{background-image: url(images/bg2.png);
    }
}

.gallery__container{
    position: relative;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery__warapper{
    width: 390px;
    height: 265px;
    margin: 0 auto;
    overflow: hidden;
}

@media (max-width:430px){
    .gallery__warapper{
        margin-bottom: 15px;
    }
}

@media (max-width:375px) {
    .gallery__warapper{
        width: 375px;
        height: 265px;
    }
}

@media (max-width:280px) {
    .gallery__warapper{
        width: 280px;
        height: 265px;
    }
}


.gallery__container:hover{
    transform: scale(1.3);
}


.gallery__btn:hover::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background-color: rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease;
}

.gallery__btn{
    border: none;
    box-shadow: none;
    background-color: #FDFDEB;
    padding: 0;
    cursor: pointer;
}

/*
========================================
アクセス
=========================================
 */

.acsess__container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.acsess__innner{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 275px;
    height: 235px;
    background-image: url(images/bus.png);
    background-repeat: no-repeat;
    margin: 0 auto;
}

@media (max-width:280px){
    .acsess__innner{
        width: 160px;
    }
}

.info__innner{
    display: grid;
    place-items: center;
    /* justify-content: center; */
    /* align-items: center; */
    /* margin-top: 25px; */
    margin-top: 30px;
    /* margin-bottom: clamp(80px,8vw,100px); */
	line-height: 1.6;
}

.info__innner dl{
    display: flex;
    width: 362px;
}
.info__innner dt{
    width: 27%;
}
.info__innner dd{
    width: 73%;
}

.bus{
    display: flex;
    align-items: flex-end;
    gap: 32px;
}

.bus img{
    width: 55px;
    height: 115px;
}

.acsess__container p{
    line-height: 1.5rem;
}

.map-btn{
    width: 40px;
    height: 36px;
    border: none;
    background-color: #FDFDEB;
    cursor: pointer;
    /* margin-top: 20px; */
    margin-top: 30px;
}

/*
========================================
フッター
=========================================
 */

.footprints{
    background-color: #fff;
    /* padding: 25px; */
    /* padding: 32px; */
    padding:40px clamp(20px,3vw,60px);
}

.footprints p{
    text-align: center;
    /* letter-spacing: 0.05em; */
}

.footer__container{
    background-color: #323157;
    display: flex;
    justify-content: center;
    gap: 25px;
    /* padding: 25px; */
    padding:80px 20px;
}

.footer__img{
    width: 100px;
}

.footer__nav ul li a{
    color: white;
    text-decoration: none;
    /* line-height: 1.6; */
    line-height: 2;
    letter-spacing: 0.05em;
}

/*
========================================
メニューページ list
=========================================
 */

.menu__list{
    background-color: #fff;
    /* padding-top: 3px; */
    /* padding-bottom: 100px; */
}

.menu__list__inner{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* display: flex;
    flex-direction: column;
    align-items: center; */
    /* background-image: url(images/house-lg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 250px 600px; */
    /* padding-top: 100px; */
    /* padding-bottom: 50px; */
    padding-bottom: 40px;
}

.menu-list_h3{
    display: block;
    font-size: 18px;
    padding-bottom: 36px;
    /* padding-top: 25px; */
    padding-top: 40px;
}

.menu__list__inner p{
    /* border-bottom: 1px dotted #707070; */
}

@media (min-width: 281px){
    .menu__list__inner{
        background-size: 320px 800px;
    }
}

@media (min-width: 1050px){
    /* .menu__list__inner{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    } */

    .menu-list_h3{
        padding-bottom: 30px;
        padding-top: 25px;
    }
}

.menu__list__date div{
    display: flex;
}

.menu__list__date dt{
    width: 14rem;
}

.oyatu{
    display: inline-block;
    margin-top: 1rem;
}

.menu__list__date__container{
    padding-bottom: 20px;
    /* border-bottom: 1px dotted #707070; */
    /* margin: 10px; */
    line-height: 1.5;
    padding: 30px;
}

@media(min-width:768px){
    .menu__list__date__container{
        /* padding: 20px; */
        margin: 0px;
    }
}

.bg-house{
    background: url(images/house.png);
    background-size: contain;
    background-repeat: no-repeat;
    /* border: 3px solid #e8c861; */
    height: auto;
    min-height: 360px;
    min-width: 350px;
}

.bg-house img{
    display: none;
}

.bg-house p{
    line-height: 1.5;
    padding: 30px;
}

@media (min-width: 1050px){
    .bg-house{
        position: relative;
    }

    .bg-house img{
        display: block;
        position: absolute;
        /* top: -20px; */
        left: 0;
        z-index: -1;
    }

    .bg-house p{
        padding: 20px;
    }
}

.lunch-menu{
    margin-bottom: 1rem;
}

.cake-menu{
    margin-bottom: 3rem;
}

/*
========================================
雪
=========================================
 */

.snow-container{
    position: relative;
    /* overflow: hidden; */
}

.snow{
    background-color: #fff;
    position: absolute;
    width: clamp(35px,3vw,50px);
    height: 10px;
    /* aspect-ratio: 1/1; */
    animation: snowFall 10s linear;
    border-radius: 50%;
}

@keyframes snowFall {
    0%{
        opacity: 0;
        top: 0;
        transform: translateX(5px);
    }
    10%{
        opacity: 0.3;
        transform: translateX(-5px);
    }

    20%{
        transform: translateX(5px);
    }

    90%{
        opacity: 0.5;
    }
    100%{
        opacity: 0;
        top: 90vh;
    }
}

@media (min-width:769px) {
    .snow{
        /* width: 75px; */
        width: clamp(70px,6vw,100px);
        /* height:1px; */
        /* aspect-ratio: 1/1; */
    }
}

/* ギャラリー */

.gallery__backnumber{
/* margin-bottom:clamp(80px,8vw,120px) */
}

.gallery__list{
/* padding-top: 30px; */
padding: clamp(30px,6vw,60px);
}


@media (max-width:1280px){
    /* .menu__list__date__container{
        padding: clamp(8px,3vw,20px);
    }

    .bg-house p{
        padding: clamp(8px,3vw,20px);
    } */

    .menu-list_h3{
        padding-top: 20px;
    }


    .bg-house{
        border: none;
        min-height: auto;
        min-width: auto;
        background: none;
        width: 330px;
    }

    .menu__list__inner{
        display: flex;
        flex-direction: column;
        align-items: center;
        background-image: url(images/house-lg.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 250px 600px;
    }

    .menu__list__date__container{
        border-bottom: 1px dotted #707070;
    }

    .oyatu_wrap .menu__list__date__container{
        border-bottom: none;
    }

    .menu__list__date__container{
        padding: 20px
    }

    .bg-house p{
        padding: 20px;
    }

    .menu__list .title{
		margin-bottom: 30px;
	}

    .menu__list__inner {
        background-size: 350px 1000px;
        line-height: 1.6;
		padding-top: 120px;
    }

	.menu__list{
		padding-bottom: 50px;
    }

    .menu__inner{
        margin-bottom: 60px;
    }
}

@media (max-width:1024px){
    .bg-house{
        /* width: 33%; */
    }
    /* .bg-house{
        border: none;
        min-height: auto;
        background: none;
    }

    .menu__list__inner{
        background-image: url(images/house-lg.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 250px 600px;
    }

    .menu__list__date__container{
        border-bottom: 1px dotted #707070;
    }

    .menu__list__date__container{
        padding: 20px
    }

    .bg-house p{
        padding: 20px;
    }

    .menu__list .title{
		margin-bottom: 30px;
	}

    .menu__list__inner {
        background-size: 350px 1000px;
        line-height: 1.6;
		padding-top: 120px;
    }

	.menu__list{
		padding-bottom: 50px;
    }

    .menu__inner{
        margin-bottom: 60px;
    } */
}

@media (max-width:820px){
	/* .title{
		margin-bottom: 50px;
	}

    .menu__list__inner {
        background-size: 350px 1000px;
        line-height: 1.6;
		padding-top: 100px;
    }

	.menu__list{
		padding-bottom: 50px;
    }

    .menu__inner{
        margin-bottom: 60px;
    } */

}

@media (max-width:550px){

    .main_col{
    margin-bottom: 80px;
    }
    .main_pa{
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .mobile-menu-btn{
        right: 24px;
    }

    .innner__instagram{
        right: 24px;
    }

    .innner__telephone{
        right: 24px;
    }

    .bg-house{
        /* width: 90%; */
    }

	.menu__list__inner {
        background-size: 338px 1060px;
    }

    .gallery__list{
        padding: 40px 0px;
    }
}

@media (max-width:400px){
    .bg-house{
        /* width: 98%; */
    }
}

@media (max-width:360px){
    .bg-house{
        /* width: 101%; */
    }

    .menu__list__inner{
        background-size: 325px 1060px;
    }
}
