@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Zen+Old+Mincho&display=swap');

body{
    margin: 0;
    box-sizing: border-box;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
}

html{
    font-size: 62.5%
}


/* header */
header{
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: space-between;
    padding-top: 2rem ;
    position: relative;
}

.back_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.back_video video{
    width: 100%;
    height: 100%;
    object-fit: cover; 
    position: absolute;
}

.back_video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1; 
}

header ul{
    display: flex;
    padding-left: 0;
}

header ul li{
    list-style: none;
    margin-left: 45px;
}

header ul li a{
    color: #eaeaea; 
    text-decoration: none;
    font-size: 1.7rem;
    font-weight: bold;
}

header ul li a:hover{
    opacity: 0.5;
}

.logo{
    padding-left: 2rem;
    height: 50px;
}

.logo a{
    color: #eaeaea; 
    text-decoration: none;
}

.logo a:hover{
    opacity: 0.5;
}


.menu{
    margin-right: 2rem;
    height: 50px;
}

.top{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    color: #ffff;
}

.top h1{
    font-size: 7rem;
    margin: 0;
    text-align: center;
}

.box{
    display: none;
}

/* お店紹介 */
.shop_introduction{
    width: 80%;
    display: flex;
    max-width: 980px;
    justify-content: space-between;
    align-items: center;
    margin: 5rem auto;
}

.shop_img{
    width: 40%;
}

.shop_img img{
    width: 100%;
}

.shop_text{
    width: 50%;
    color: black;
}

.shop_text h2{
    font-size: 3.4rem;
    line-height: 1.5;
}

.shop_text p{
    font-size: 1.5rem;
    margin-bottom: 50px;
}

/* おすすめ  */
.recommendation_title{
    font-size: 2rem;
    text-align: center;
}

.recommendation{
    display: flex;
    justify-content: space-between;
    width: 80%;
    max-width: 980px;
    margin: 0 auto;
}

.recommendation_box{
    width: 45%;
    border: 2px solid black;
    border-radius: 10px; 
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2); 
}

.recommendation_img{
    width: 100%;
}

.recommendation_img img{
    width: 100%;
     border-radius: 10px;
}

.recommendation_text_h2{
    display: flex;
    justify-content: space-around;
    font-size: 1.4rem;
}

.recommendation_text_p{
    font-size: 1.5rem;
    margin-left: 2rem;
}

.menu_button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5rem;
}

.menu_button .button {
    display: inline-block;
    background: linear-gradient(135deg, #e43f16, #feb47b);
    color: #fff; 
    text-decoration: none; 
    border: none; 
    border-radius: 30px; 
    padding: 1rem 2rem; 
    font-size: 1.6rem; 
    font-weight: bold; 
    cursor: pointer; 
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); 
    transition: all 0.3s ease; 
}

.menu_button .button:hover {
    background: linear-gradient(135deg, #feb47b, #ff7e5f); 
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3); 
    transform: translateY(-3px); 
}

.menu_button .button:active {
    transform: translateY(0); 
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); 
}

/* メニュー */
.menu_title h1{
    text-align: center;
    font-size: 5rem;
}

.menu_img{
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
}

.menu_block img{
    width: 100%;
}

.menu_block{
    width: 30%;
}

.menu_block h2{
    font-size: 1.7rem;
}

.menu_block p{
    font-size: 1.5rem;
}



/* お問い合わせ */
.form{
    text-align: center;
}

.form p{
    font-size: 1.6rem;
}

.button{
    margin: 20px;
}


/* 上に戻る矢印 */
.arrow {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff7e5f; 
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.arrow p {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}

.arrow:hover {
   opacity: 0.9;
}

/* footer */
footer {
    background-color: #2a2a2a; 
    color: #fff; 
    padding: 2rem 0; 
    text-align: center; 
}

.footer_nav ul {
    list-style: none; 
    padding: 0;
    margin: 0 0 1.5rem 0; 
    display: flex;
    justify-content: center; 
    gap: 2rem; 
}

.footer_nav ul li {
    display: inline-block;
}

.footer_nav ul li a {
    color: #fff; 
    text-decoration: none; 
    font-size: 1.4rem; 
    transition: color 0.3s ease; 
}

.footer_nav ul li a:hover {
    color: #ff7e5f; 
}

.footer_info p {
    margin: 0.5rem 0; 
    font-size: 1.2rem; 
}

.footer_copy {
    margin-top: 1.5rem; 
    font-size: 1rem; 
    color: #bbb; 
}

/* タブレットレスポンシブ */
@media (max-width:960px) {
header{
    height: 40vh;
}

.top h1{
    font-size: 5rem;
}

.menu{
    display: none;
}

.recommendation_text_h2{
    display: block;
}

.shop_introduction{
    display: flex;
    flex-direction: column;
}

.shop_img {
    order: 2; 
    width: 100%;
}

.shop_text {
    order: 1; 
    width: 100%;
}

.recommendation_text_h2{
    margin-left: 2rem;
}

.shop_text p{
    font-size: 1.7rem;
}

.humburger{
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background-color: black;
    z-index: 2;
}

.humburger span{
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: 0.5s;
    margin-left: 10px;
}

.humburger span:nth-of-type(1){
    top: 15px;
}

.humburger span:nth-of-type(2){
    top: 25px;
}

.humburger span:nth-of-type(3){
    top: 35px;
}

.humburger.open span:nth-of-type(1){
    transform:translateY(10px) rotate(45deg);
}

.humburger.open span:nth-of-type(2){
    opacity: 0;
}

.humburger.open span:nth-of-type(3){
    transform:translateY(-10px) rotate(-45deg);
}

.box{
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0d0d0d; 
    background-color: #1c1b29; 
    color: #eaeaea; 
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
}

.box.open{
    opacity: 1;
    pointer-events: auto;
}

.humburger_ul{
    width: 90%;
    margin: 0 auto;
    font-size: 1rem;
    text-align: center;
}

.humburger_ul ul{
    padding-left: 0;
    margin-top: 50%;
}

.humburger_ul li{     
    list-style: none;
    margin-bottom: 20px;
    font-size: 2rem;
}

.humburger_ul a{
    color: #eaeaea; 
    text-decoration: none;
}
}

/* スマホレスポンシブ */
@media (max-width: 480px){
.top h1{
    font-size: 3rem;
}

.menu_title h1{
    font-size: 3rem;
}

.shop_text h2{
    font-size: 3rem;
}

.recommendation{
    display: block;
}

.recommendation_box {
    width: 100%;
    margin: 3rem 0;
}

.menu_img{
    display: block;
}

.menu_block{
    width: 100%;
}

.menu_block h2{
    font-size: 2rem;
}

.menu_block p{
    font-size: 1.8rem;
}

.footer_nav ul li a {
    font-size: 1.2rem; 
}
}