@charset "UTF-8";

/* 共通部分 */
html{
    font-size: 100%;
}
body{
    font-family: "Noto Sans JP", "Permanent Marker", sans-serif;
    line-height: 1.7;
    color: snow;
    background-color: #333;
}
a {
    text-decoration: none;
}
img{
    max-width: 100%;
}
.align-center{
    text-align: center;
}

/* 見出し */
.font-english{
    font-family: "Permanent Marker";
    font-weight: normal;
}
.font-japanese{
    font-family: "Noto Sans JP";
    font-weight: normal;
}
/* ヘッダー */
.page-header{
    padding-top: 1.5rem;
}
.logo{
    width: 210px;
    transition-duration: .4s;
}
.logo:hover{
    transform: scale(1.1);
}
.main-nav{
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    font-size: 1.5rem;
    list-style: none;
    padding-top: 1.5rem;
}
.main-nav a:hover{
    color: goldenrod;
}
/* ナビゲーションリンク */
.main-nav a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: snow;
  padding: 0.2rem 0;
}

/* 下線 */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: currentColor;

  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;

}

/* hover時 */
.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.page-title{
    font-size: 3rem;
    text-align: center;
    margin-top: 6rem;
    line-height: 1.4;
}
.top-text{
    font-size: 1.5rem;
    text-align: center;
    margin-top: 2rem;
    line-height: 1.4;
}
.time{
    text-align: center;
    font-size: 1rem;
    margin: 2.5rem auto 2.5rem;
    line-height: 1.6;

    width: 350px;
    padding: 1rem;

    color: #fff3c4;

    line-height: 2.5rem;

    /* 黄色っぽく透ける背景 */
    background: rgba(255, 215, 100, 0.15);

    border-radius: 14px;
    border: 1px solid rgba(255, 215, 100, 0.45);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.35),
        inset 0 0 12px rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    letter-spacing: 0.05em;
}
.top-menu{
    display: block;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 auto;
    line-height: 1.6;

    width: 200px;
    padding: 1rem;

    color: #333;

    background: gold;

    border-radius: 14px;
    border: 1px solid rgba(255, 215, 100, 0.45);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.35),
        inset 0 0 12px rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    letter-spacing: 0.05em;
    transition-duration: .4s;
}
.top-menu:hover{
    transform: scale(1.1);
}
.cover{
    position: relative;
    background-size: cover;
    background-position: center bottom;
    height: 900px;
}
.cover::before{
    content: "";
    position: absolute;
    inset: 0;                 /* 上下左右0 */
    background: rgba(0, 0, 0, 0.6); /* ← 黒ベール */
    z-index: 1;
}
.cover > *{
    position: relative;
    z-index: 2;
}
.cover-home{
    background-image: url(img/tennai.jpg);
}
.menu-title{
    font-size: 2.5rem;
    display: block;
    text-align: center;
    margin-top: 3.5rem;
}
#cutlery{
    width: 3.5rem;
    display: block;
    margin: 0.5rem  auto;
}
#food-title,#drink-title{
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1rem;
    margin: 2.5rem auto 2.5rem;
    line-height: 1.6;

    width: 300px;
    padding: 1.5rem;

    color: #fff3c4;

    /* 黄色っぽく透ける背景 */
    background: rgba(255, 215, 100, 0.15);

    border-radius: 14px;
    border: 1px solid rgba(255, 215, 100, 0.45);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.35),
        inset 0 0 12px rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    letter-spacing: 0.05em;
}
#food-text,#drink-text{
    text-align: center;
    margin-bottom: 3rem;
}
#drink-text{
    list-style: none;
}
#food1,#food2,#food3,#drink1,#drink2,#drink3,#lunch-img{
    width: 500px;
    display: block;
    margin: 0 auto 2rem;

    padding: 20px;
    background: #555;
    border-radius: 50px;

    box-shadow:
        0 0 0 3px #777,               /* 外枠 */
        0 12px 30px rgba(0,0,0,0.45), /* 浮き */
        inset 0 0 0 2px rgba(255,255,255,0.2);

    box-sizing: border-box;
}

/* スクロール前（非表示状態） */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 表示されたとき */
.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}
#beer{
    width: 10rem;
    display: block;
    margin: 5rem  auto -0.5rem;
    padding-top: 4rem;
}
.drink{
    background-color: #222;
    padding-bottom: 4rem;
    margin-bottom: 2rem;
}
.menu{
    position: relative;
    overflow: hidden; /* はみ出し防止（任意） */
}
.left,
.right{
    position: absolute;
    top: 100px;              /* MENUタイトルあたりに合わせる */
    width: 60px;            /* 装飾の大きさ */
    opacity: 0.6;            /* 主張しすぎない */
    pointer-events: none;    /* クリック無効（装飾なので） */
}

/* 左側 */
.left{
    left: 150px;
    height: 9%;
}

/* 右側 */
.right{
    right: 150px;
    height: 9%;
}
.food,
.drink{
    /* max-width: 700px; */
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.left2,
.right2{
    position: absolute;
    top: 100px;              /* MENUタイトルあたりに合わせる */
    width: 60px;            /* 装飾の大きさ */
    opacity: 0.6;            /* 主張しすぎない */
    pointer-events: none;    /* クリック無効（装飾なので） */
}

/* 左側 */
.left2{
    left: 160px;
    height: 17%;
}

/* 右側 */
.right2{
    right: 160px;
    height: 17%;
}
.lunch{
    position: relative;
}

.lunch-time{
    text-align: center;
    font-size: 2rem;
}
.lunch-text{
    text-align: center;
    margin: 2rem;
}
.lunch-menu h3{
    color: gold;
}
.left3,
.right3{
    position: absolute;
    top: 100px;              /* MENUタイトルあたりに合わせる */
    width: 60px;            /* 装飾の大きさ */
    opacity: 0.6;            /* 主張しすぎない */
    pointer-events: none;    /* クリック無効（装飾なので） */
    z-index: 2;
}

/* 左側 */
.left3{
    left: 160px;
    height: 25%;
}

/* 右側 */
.right3{
    right: 160px;
    height: 25%;
}
.lunch-menu{
    width: 500px;
    margin: 3rem auto;
    text-align: center;
    border: 1px solid gold;
    padding: 2rem;
    background-color: #222;
}
#lunch-list{
    list-style: none;
    display: inline-block;
    text-align: left;
    margin-top: 1.5rem;
}
.gold{
    color: gold;
}
.about{
    background-color: #333;
}
#about-title{
    padding: 3rem 2rem;
}
.about-text{
    text-align: center;
}
.about p{
    display: inline-block;
    text-align: left;
    margin-top: 2rem;
}
.about-img{
    width: 500px;
    padding-top: 3rem;
    display: block;
    margin: 0 auto;
}
.about2 ul{
    list-style: none;
    padding-left: 0;
}
.about2 li::before{
    content: "✦";
    color: gold;
    margin-right: 0.6rem;
}
.about2{
    text-align: center;
    margin-top: 3rem;
}
.about2 ul{
    display: inline-block;
    text-align: left;
}
.about2 li{
    display: block;
    margin-bottom: 2rem; 
    padding-bottom: 0.8rem;
    margin-top: 2rem;
}
.about2 h2{
    font-size: 3rem;
}
#contact-title{
    position: relative;
    display: block;

    width: 500px;
    height: 200px;
    margin: 3rem auto;

    background-image: url(img/tennnaisoto.jpeg);
    background-size: cover;
    background-position: center;

    text-align: center;
}

#contact-title::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

#contact-title span{
    position: relative;
    z-index: 2;

    display: inline-block;
    line-height: 200px;

    color: snow;
    font-size: 3rem;
    letter-spacing: 0.2em;

    text-shadow:
      0 2px 6px rgba(0,0,0,0.8),
      0 0 12px rgba(255,215,100,0.4);
}
.contact{
    text-align: center;
}
.contact ul{
    display: inline-block;
    text-align: left;
    margin: 3rem auto;
    list-style: none;
}
.contact li::before{
    content: "✦";
    color: gold;
    margin-right: 0.6rem;
}
.contact li{
    padding: 0.5rem;
    border-bottom: 1px snow solid;
}
.contact-img{
    height: 350px;
    transition-duration: .4s;
}
.contact-img:hover{
    transform: scale(1.1);
}
.contact-text{
    margin-top: 3rem;
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1rem;
    margin: 2.5rem auto 2.5rem;
    line-height: 1.6;

    width: 350px;
    padding: 1.5rem;

    color: #fff3c4;

    /* 黄色っぽく透ける背景 */
    background: rgba(255, 215, 100, 0.15);

    border-radius: 14px;
    border: 1px solid rgba(255, 215, 100, 0.45);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.35),
        inset 0 0 12px rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    letter-spacing: 0.05em;
}
footer{
    background-color: #222;
}

.footer-inner{
    display: flex;
    align-items: center;      /* 縦位置を中央に */
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-logo{
    width: 100px;
}

.footer-nav .main-nav{
    display: flex;
    gap: 2rem;
}

.copyright{
    text-align: center;
    padding: 1.5rem;
}
.header2{
    background-color: #222;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#logo2{
    display: block;
    margin: 0 autos;
}