/*
Theme Name: サンプルテーマ
*/
/* この下に通常のcssを書いていく */

@charset "utf-8";

/* body */

* , *::before , *::after {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Noto Serif JP', serif;
}

a {
	text-decoration: none;
}


/* header */

.logo {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000000;
}

.logo img {
    width: 120px;
    margin-top: 10px;
    margin-left: 10px;
}

.hamburger {
    display : block;
    position: fixed;
    z-index : 10000;
    right : 13px;
    top   : 12px;
    width : 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
}

.hamburger span {
    display : block;
    position: absolute;
    width   : 30px;
    height  : 5px ;
    left    : 6px;
    background : #555;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition   : 0.3s ease-in-out;
    transition        : 0.3s ease-in-out;
}

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

.hamburger span:nth-child(2) {
    top: 20px;
}

.hamburger span:nth-child(3) {
    top: 30px;
}
  
/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
    top : 16px;
    left: 6px;
    background :#fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
}
  
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    top: 16px;
    background :#fff;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
}
  
nav.globalMenuSp {
    position: fixed;
    z-index : 5000;
    top  : 0;
    left : 0;
    color: #fff;
    background-color: rgba(0,0,0,.9);
    text-align: center;
    width: 100%;
    height: 100vh;
    transform: translateX(-100%);
}

@keyframes slide {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

nav.globalMenuSp.active {
      animation: slide .5s forwards;
}

  
nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
  
nav.globalMenuSp ul li {
    width: 100%;
    transition: .4s all;
}
  
nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 5% 0;
    font-family: 'IM Fell DW Pica', serif;
	font-size: 30px;
}
  
/* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.active {
    opacity: 100;
}

/* bg-slider */
.bg-slider {
	width: 100%;
	height: 50vh;
	background-size: cover;
	background-position: center;
	position: relative;
}

.bg-slider::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	clip-path: polygon(0 0, 0% 30%, 100% 0);
	z-index: 1;
	background-image: url(/wp-content/uploads/2023/02/893686.webp);
	background-position: top;
	filter: brightness(.3);
}

.bg-slider::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	clip-path: polygon(100% 70%, 0% 100%, 100% 100%);
	z-index: 1;
	background-image: url(/wp-content/uploads/2023/02/893686.webp);
	background-position: left;
	filter: brightness(.3);
}

.bg-slider_frame {
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    background-color: #000;
}

.frame_top {
	top: 0;
	left: 0;
	clip-path: polygon(0 0, 0% 20%, 100% 0);
}

.frame_bottom {
	bottom: 0;
	right: 0;
	clip-path: polygon(100% 80%, 0% 100%, 100% 100%);
	z-index: 2;
}



@media(min-width: 769px) {
	.bg-slider {
		height: 70vh;
	}
}

@media(min-width: 1500px) {
	.bg-slider {
		height: 100vh;
	}
}

/* contents */
.contents {
    padding: 10% 0 30%;
	background-image: url(/wp-content/uploads/2023/02/893686.webp);
	background-color: rgba(255,255,255,.9);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
}

.contents_title {
    font-size: 36px;
    font-weight: bold;
	font-family: 'IM Fell DW Pica', serif;
    text-align: center;
}

.content {
    text-align: center;
    position: relative;
	padding: 10% 0%;
}

.screen {
	background-image: url(/wp-content/uploads/2023/02/2-21_20190118.webp);
	width: 250px;
	height: 250px;
	display: block;
	background-size: cover;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
	margin: 0 auto;
	overflow: hidden;
	opacity: 0;
}

.screen2 {
	background-image: url(/wp-content/uploads/2023/02/09011833_54043d809d67f.webp);
}

@keyframes opa {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.screen.active {
    animation: opa .001s .5s forwards;
}

.screen::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #000;
	display: block;
	transform: translatex(-100%);
}

@keyframes screen {
	0% {
		opacity: 0;
		transform: translatex(-100%);
	}
	45% , 55% {
		transform: translatex(0);
	}
	100% {
		opacity: 1;
		transform: translatex(100%);
	}
}

.screen.active::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #000;
	display: block;
	opacity: 1;
	transform: translatex(100%);
	animation: screen .9s forwards;
}


.content_title {  
	opacity: 0;
}

@keyframes flow_down {
	0% {
		opacity: 0;
		transform: translatey(-50px) rotate(90deg);
	}
	100% {
		opacity: 1;
		transform: translatey(0) rotate(90deg);
	}
}

.content_title.active {
    font-size: 50px;
    font-weight: bold;
	font-family: 'IM Fell DW Pica', serif;
    position: absolute;
    top: 30%;
    right: -10%;
    letter-spacing: 5px;
	animation: flow_down 1s forwards;
}

.content_sub_title {
	opacity: 0;
}

@keyframes flow_up {
	0% {
		opacity: 0;
		transform: translatey(50px);
	}
	100% {
		opacity: 1;
		transform: translatey(0);
	}
}

.content_sub_title.active {
    font-size: 18px;
    font-weight: bold;
	font-family: 'Noto Serif JP', serif;
    padding: 5%;
    background-color: rgba(0,0,0,.8);
    writing-mode: vertical-rl;
    color: #fff;
    position: absolute;
	top: 30%;
    left: 5%;
    height: 230px;
	animation: flow_up 1s forwards;
}

.content_text {
	opacity: 0;
}

@keyframes slide {
	0% {
		opacity: 0;
		transform: translatex(100%)
	}
	100% {
		opacity: 1;
		transform: translatex(0);
	}
}

.content_text.active {
    text-align: left;
    max-width: 250px;
    margin-top: 5%;
    margin-left: 30%;
	animation: slide 1s .5s forwards;
}

@media(min-width:769px) {
	.contents {
        margin: 0 auto;
		padding-bottom: 10%;
    }
	
	.contents_title {
        font-size: 80px;
    }
	
	.flexbox {
        display: flex;
        justify-content: space-evenly;
    }
	
	.content {
        padding: 10% 0;
    }
	
	.screen {
        width: 350px;
        height: 350px;
    }
	
	.content_title.active {
        font-size: 60px;
        right: -30%;
    }
	
	.content_sub_title.active {
        top: 30%;
        left: -10%;
        height: 250px;
}
	
	.content_text {
        max-width: 250px;
        margin-top: 10%;
        margin-left: 25%;
    }
}

/* menu */

.thumbnail {
	width: 150px;
    height: 150px;
	margin-bottom: 60%;
	opacity: 0;
}

.thumbnail.active {
	animation: flow_up 1s forwards;
}

.menu_flexbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
	margin-top: 10%;
}

.menu_content {
	position: relative;
	padding: 10% 0;
}

.menu_title , .menu_price {
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    background-color: rgba(0,0,0,.8);
    padding: 5% 3%;
    position: absolute;
	top: 0%;
    left: -10%;
	opacity: 0;
}

@keyframes left_slide {
	0% {
		transform: translatex(-100%);
	}
	100% {
		transform: translatex(0);
		opacity: 1;
	}
}

.menu_title.active {
    animation: left_slide 1s forwards;
}

.menu_price {
    top: 48%;
    left: 5%;
}

.menu_price1 {
    top: 43%;
    left: 18%;
}

.menu_price2 {
    top: 46%;
    left: 5%;
}

.menu_price.active {
    animation: slide 1s forwards;
}

.menu_text {
    font-size: 12px;
    width: 150px;
	opacity: 0;
}

.menu_text.active {
	animation: flow_up 1s forwards;
}

@media(min-width:769px) {
	.menu_content {
        padding: 5% 0;
        width: calc(100%/3);
		text-align: center;
    }
	
	.menu_content img {
        width: 300px;
        height: 300px;
        margin-bottom: 20%;
    }
	
	.menu_title {
        font-size: 24px;
        top: 5%;
        left: 5%;
    }
	
	.menu_text {
        font-size: 18px;
        width: 280px;
        margin-left: 20%;
    }
	
	.menu_price {
        top: 45%;
        left: 45%;
        font-size: 20px;
    }
}

/* access */
.access {
    text-align: center;
    background-image: url(/wp-content/uploads/2023/02/road-ga2f21f0f9_1280.webp);
    background-size: cover;
    background-position: center;
    background-color: rgba(255,255,255,.5);
    background-blend-mode: overlay;
    padding-top: 30%;
    clip-path: polygon(0 5%, 100% 0%, 100% 100%, 0 100%);
	opacity: 0;
}

@keyframes access_flow {
	0% {
		opacity: 0;
		transform: translatex(100%);
	}
	100% {
		opacity: 1;
		transform: translatex(0);
	}
}

.access.active {
	animation: access_flow 1s .5s forwards;
}

.business_hours {
    padding: 5%;
}

.access img {
    width: 100%;
	height: 300px;
    object-fit: cover;
	margin-top: 10%;
}

.access_content {
    display: flex;
    align-items: center;
	border-top: 1px solid;
    border-right: 1px solid;
	background-color: #fff;
}

.access_content:last-of-type {
	border-bottom: 1px solid;
}

.access_title {
	font-size: 12px;
	font-weight: bold;
    width: calc(100%/3.5);
    color: #fff;
    background-color: #000;
    padding: 3% 0;
	text-align: center;
}

.access_text {
    text-align: left;
    font-size: 11px;
    padding-left: 5px;
}

iframe {
	width: 100%;
	height: 350px;
	margin-top: 5%;
}

@media(min-width:769px) {
	.access_wrap {
        display: flex;
        flex-direction: column;
    }
	
	.access img {
        width: 500px;
    }
	
	.access_title {
		font-size: 18px;
	}
	
	.access_text {
		font-size: 16px;
	}
	
	.business_hours {
        padding: 10%;
    }
	
	iframe {
	    width: 100%;
	    height: 600px;
	    margin-top: 5%;
    }
}

/* footer */
footer {
	background-color: #000;
	text-align: center;
	color: #fff;
    padding: 10% 0 20%;
}

@media(min-width:769px) {
	footer {
        padding: 2% 0 10%;
    }
}

/* takeoutボタン */
.btn_wrap {
    display: flex;
    justify-content: space-evenly;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 200000;
}

p.btn {
    background-color: rgba(0,0,102,1);
    padding: 5% 3%;
	width: calc(100%/2);
	text-align: center;
}

p.btn:first-of-type {
	border-right: 2px solid #fff;
}

.btn a {
    color: #fff;
    font-weight: bold;
	font-family: 'Noto Serif JP', serif;
    font-size: 16px;
}

@media(min-width:769px) {
	p.btn {
        padding: 3%;
    }
	
	.btn a {
        font-size: 18px;
    }
}

/* movie */

.iframe_wrap {
	margin-bottom: 15px;
}

@media(min-width:769px) {
	
	.iframe_wrap {
        text-align: center;
		margin-bottom: 50px;
    }
	
	.iframe_wrap iframe {
		width: 800px;
		height: 500px;
	}
	
}





