/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ======================
  BASE
====================== */
body {
  font-family: "Noto Serif JP", serif;
  color: #fff;
  background-color: #1b2b3b;
  line-height: 1.8;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

html {
  scroll-behavior: smooth;
}

/* ======================
  HEADER / FOOTER 共通
====================== */
.header {
  position: fixed;
  background: #0e1b2c;
  opacity: 0.95;
  padding: 1.2rem 1%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.4s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  width: 100%;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-left h1 {
  font-size: 16px;
}

.site-logo {
  width: 100px;
  height: auto;
  display: block;
  transform: translateY(2px);
}

.site-title {
  font-size: 1rem;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}

.gnavi ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.gnavi li a {
  display: block;
  padding: 10px 30px;
  text-decoration: none;
  color: #b7b3b3;
}

.gnavi li {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  margin: 0 10px;
}

/*線の基点位置*/
.gnavi li::before,
.gnavi li::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  /*線の形状*/
  width: 0;
  height: 3px;
  background: #06617a;
  /*アニメーションの指定*/
  transition: all 0.2s linear;
  transition-delay: 0.2s;
}

.gnavi li::before {
  right: 0;
  top: 0;
}
.gnavi li::after {
  left: 0;
  bottom: 0;
}

/*線の基点位置2 spanタグ*/

.gnavi li span {
  display: block;
}

.gnavi li span::before,
.gnavi li span::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  /*線の形状*/
  width: 3px;
  height: 0;
  background: #06617a;
  /*アニメーションの指定*/
  transition: all 0.2s linear;
}

.gnavi li span::before {
  left: 0;
  top: 0;
}
.gnavi li span::after {
  right: 0;
  bottom: 0;
}

/*現在地とhoverした際の線の変化*/

.gnavi li.current::before,
.gnavi li.current::after,
.gnavi li:hover::before,
.gnavi li:hover::after {
  width: 100%; /*横幅を100%に*/
}

.gnavi li.current span::before,
.gnavi li.current span::after,
.gnavi li:hover span::before,
.gnavi li:hover span::after {
  height: 100%; /*縦幅を100%に*/
}

.footer {
  background: #0e1b2c;
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid;
  /* opacity: 0.8; */
}

.footer-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -40px;
}

.footer-left {
  display: flex;
  align-items: center;
}

.footer-logo h1 {
  font-size: 16px;
}

.footer-name {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-info p {
  font-size: 12px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 10px;
}

.copyright {
  font-size: 0.75rem;
  color: #0d1a2b;
  margin-top: 2rem;
  padding: 10px 0;
  background-color: #ccc;
}

/* ======================
   HERO
====================== */
.hero {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.hero-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-70%, -40%);
  color: #fff;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.7);
}

.hero-text h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5em;
  letter-spacing: 0.3em;
}

.hero-text .subtitle {
  font-size: 4rem;
  letter-spacing: 1em;
}

/* ======================
   MENU SECTIONS
====================== */

.menu-section {
  padding: 80px 0;
  background-color: #1b2b3b;
  color: #e0eeff;
}

.menu-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
  letter-spacing: 0.05em;
}

.menu-list {
  width: 80%;
  margin: 0 auto;
}

.menu-item {
  margin-bottom: 40px;
}

.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.menu-name {
  font-size: 1.2rem;
  font-weight: 600;
  white-space: nowrap;
}

.menu-line {
  flex: 1;
  height: 1px;
  background-color: #e0eeff;
  margin: 0 8px;
}

.menu-price {
  font-weight: 600;
  white-space: nowrap;
}

.menu-desc {
  margin-top: 10px;
  color: #cfe2ff;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* フェードイン */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.menu-list dd {
  text-align: right;
}
*/

/* ======================
   FADE IN ANIMATION
====================== */
.fade-target {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* =================================================
  スマホ・タブレット用レスポンシブ (768px以下)
================================================= */
@media screen and (max-width: 768px) {

  /* --- 1. ヘッダー共通 --- */
  .header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0 10px;
  }

  .header-left {
    flex-direction: column;
    margin-bottom: 5px;
  }

  .site-logo {
    width: 70px;
    margin-bottom: -15px;
  }

  .site-title {
    font-size: 0.7rem;
    margin-top: 5px;
    text-align: center;
  }

  /* ハンバーガーメニュー (Index等と共通) */
    .hamburger {
    display: flex;
    margin: 15px auto 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px; height: 30px;
    z-index: 3000;
  }
  .hamburger span {
    display: block;
    width: 24px; height: 2px;
    background-color: #fff;
    transition: all 0.4s;
    margin: 3px 0;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0 !important;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
  }

  .header .gnavi {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #0e1b2c;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 2500;
  }
  .header .gnavi.active {
    right: 0;
  }
  .gnavi ul {
    flex-direction: column;
    gap: 30px;
  }
  .gnavi li a {
    font-size: 1.5rem !important;
    color: #fff !important;
  }


  /* --- 2. メインコンテンツ --- */
  main {
    padding-top: 60px; /* 固定ヘッダー分の余白 */
  }

  /* HEROエリア */
.hero {
    position: relative;
    width: 100%;
    height: 60vh;
    display: block;
    overflow: hidden;
    margin-top: 0;
  }

  .hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    margin-top: 130px;
  }

  /* テキスト：画像の中央に絶対配置 */
  .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
  }

  .hero-text h2 {
    font-size: 0.85rem;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.15em;
    display: block;
    white-space: nowrap;
  }

  .hero-text .subtitle {
    font-size: 2.2rem;
    color: #fff;
    font-family: serif;
    letter-spacing: 0.1em;
    margin: 0;
    display: block;
    line-height: 1.2;
  }

  /* メニューセクション共通 */
  .menu-section {
    padding: 30px 0;
  }

  section {
    margin-bottom: 20px;
    width: 100%;
    padding: 0 20px;
  }

  /* セクションタイトルの微調整 */
  .menu-title {
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    width: 100%;
    padding-bottom: 10px;
  }
  .menu-item {
    margin-bottom: 20px;
  }

  .menu-header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 8px;
  }

  .menu-name {
    font-size: 0.95rem;
    font-weight: bold;
    flex: 1;
    text-align: left;
  }

  .menu-line {
    display: none;
  }

  .menu-price {
    font-size: 1rem;
    font-weight: bold;
    margin-left: 10px;
    color: #cfd8e8;
  }

  .menu-desc {
    font-size: 0.85rem;
    text-align: justify;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    padding-left: 0;
  }

  /* --- 4. フッター (他ページと統一) --- */
.footer {
    padding-top: 50px;
    background: #0e1b2c;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 20px;
  }

  .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 20px;
    gap: 10px;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
  }

  .footer-left .site-logo {
    width: 80px;
    margin: 0 auto;
    transform: none;
  }

  .footer-left .site-title {
    font-size: 0.7rem;
    margin-top: -10px;
    margin-bottom: 60px;
    text-align: center;
  }

  .footer-name {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .footer-info {
    padding: 0;
    margin-bottom: 30px;
  }

  .footer-info p {
    text-align: center;
    font-size: 12px;
    color: #ccc;
  }

  .footer-catch {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 40px;
  }

  .copyright {
    width: 100vw;
    background-color: #ccc;
    color: #0d1a2b;
    padding: 15px 0;
    text-align: center;
  }
}
/* =================================================
  さらに小さいスマホ用 (480px以下)
   ================================================= */
@media screen and (max-width: 480px) {
  .main-visual .main-text h2 {
    font-size: 4rem;
  }

  .gnavi li {
    margin: 0 5px;
  }
}

