
header,
header a,
header a:visited {
  color: white;
}


.logo img {
  height: 1em; /* 親要素のフォントサイズに合わせる */
  width: auto; /* アスペクト比を維持 */
  vertical-align: middle; /* テキストの中央揃えに近づける */
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* ここを絶対優先！ */
  min-height: 400px; /* 任意。スマホで縦長すぎる防止 */
  overflow: hidden;
  margin-top: 140px;
}

.hero img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  display: block;
  margin: 0;
  padding: 0;
}


.overlay-text {
  position: absolute;
  z-index: 2;
  left: 30px;
  top: 55%;
  transform: translateY(-50%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.8vw;
  text-align: left;
  padding: 0.8em 1.2em;
  border-radius: 8px;
  pointer-events: none;
  box-shadow: none;
  white-space: pre-line;  /* 改行表示 */
}


.btn {
  position: relative;
  display: inline-block;
  margin-top: 10px;  /* テキストのすぐ下に余白 */
  z-index: 1;
  left: 20px;        /* テキストと揃える */
}

.overlay-text-multi {
  position: absolute;
  top: 10%;
  left: 5%;
  color: black;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: bold;
  z-index: 2;
  max-width: 80%;
  padding: 1rem 1.5rem;
  border-radius: 8px;
}

.overlay-text-multi p {
  margin: 0 0 10px 0;
  line-height: 1.5;
}

.overlay-text-multi p:first-child {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}
.global-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.global-nav .menu-item {
  position: relative;
}
.global-nav .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px 0;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  z-index: 100;
}
.global-nav .submenu a {
  display: block;
  padding: 8px 20px;
  color: #333;
  text-decoration: none;
}
.global-nav .submenu a:hover {
  background-color: #eee;
}
.global-nav .menu-item:hover .submenu {
  display: block;
}

body {

  margin: 0; 
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #f7f2ed;
  color: #2e2a27;
  line-height: 1.7;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(247, 242, 237, 0.95);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.3rem;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
header .logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #5e4f3c;
}
/* header nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  color: #5e4f3c;
} */
section {
  max-width: 960px;
  margin: 120px auto 80px;
  padding: 0 20px;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 3.6rem;
  letter-spacing: 0.15em;
  margin: 0 0 20px;
}
.hero a.btn {
  align-self: flex-start;
  padding: 12px 40px;
  background: #4a3e30;
  color: #f8f5f3;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.07em;
  transition: background-color 0.3s ease;
}
.hero a.btn:hover {
  background: #6c5b45;
}
h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #5e4f3c;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.concept-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}
.concept-text {
  flex: 1 1 330px;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: #3e392f;
}
.concept-images {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.concept-images img {
  width: 100%;
  box-shadow: 0 8px 15px rgb(0 0 0 / 0.1);
}
.section-img-text, .section-img-only {
  position: relative;
  overflow: hidden;
}
.section-img-text {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 36px;
  background-color: #e5ded5;
}
.section-img-text img {
  max-width: 350px;
  box-shadow: 0 12px 28px rgb(0 0 0 / 0.12);
}
.section-img-text .text {
  flex: 1;
  font-weight: 300;
  color:#554f47;
  font-size: 1.07rem;
  line-height: 1.6;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5e4f3c;
  margin-bottom: 24px;
  margin-left: 0;
  padding-left: 0;
  text-align: left;
  width: 100%;
}


.variation-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #ccc5b9;
}
.variation-item img {
  width: 120px;
}
.variation-info {
  font-weight: 300;
  color: #4a453d;
}
.variation-info strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #5c4c37;
}
.variation-price {
  margin-top: 6px;
  font-weight: 600;
  font-size: 1rem;
  color: #7a6a48;
}
.online-shop-btn {
  margin-left: auto;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid #5e4f3c;
  background: transparent;
  color: #5e4f3c;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.online-shop-btn:hover {
  background: #5e4f3c;
  color: #f7f2ed;
}
.shop-list {
  max-width: 480px;
  background: #f4efe7;
  margin: 0 auto;
  padding: 40px 30px;
  font-weight: 400;
  font-size: 0.95rem;
  color: #5e5242;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 900px) {
  .hero {
    height: 360px; padding-left: 24px;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
  .concept-content {
    flex-direction: column;
  }
  .section-img-text {
    flex-direction: column;
    padding: 24px;
  }
  .section-img-text img {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .variation-item {
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 1px !important;
    border-bottom: 1px solid #ccc5b9 !important;
  }
  .online-shop-btn {
    margin-left: 0;
    margin-top: 12px;
    width: 100%;
    text-align: center;
  }
  .shop-list {
    width: 90%;
    padding: 28px 20px;
  }
}
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slide {
  display: none;
  padding: 1rem;
  text-align: center;
}

.slide.active {
  display: block;
}

.slide img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
}

.variation-price {
  font-weight: bold;
  margin-top: 0.5rem;
}

.online-shop-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.slider-controls {
  text-align: center;
  margin-top: 1rem;
}

.slider-controls button {
  margin: 0 1rem;
  padding: 0.5rem 1rem;
  font-weight: bold;
  cursor: pointer;
}

  
  @media (max-width: 768px) {
    .slide-inner {
      flex-direction: column;
      gap: 16px;
    }
    .slide-image, .slide-text {
      width: 100%;
      max-width: 100%;
    }
  }  
  .footer {
    width: 100%;         /* 画面横幅にフィット */
    margin: 0;
    padding: 20px 0;
    background-color: #5a4c45;
    text-align: center;
  }
  
  .footer img {
    width: 240px;      /* 希望サイズ（例）で指定 */
    height: auto;      /* アスペクト比維持し自動調整 */
    display: block;
    margin: 0 auto;    /* 中央揃え（必要なら） */
  }
  
  @media (max-width: 768px) {
  header {
    flex-wrap: wrap; /* 折り返しを許可 */
  }

  .logo img {
    max-width: 100%; /* 必要に応じて調整 */
  }

  .global-nav ul {
    flex-direction: column; /* 縦並び */
    gap: 12px;
    width: 100%;
    margin-top: 10px;
  }

  .global-nav li {
    width: 100%;
  }

  .global-nav a {
    display: block;
    width: 100%;
  }
}
@media (max-width: 768px) {
  section {
    margin-bottom: 8px !important;
    margin-top: 10px !important;
    padding-bottom: 0 !important;
    /* margin: 10px !important; でも良い */
  }
}
@media (max-width: 768px) {
  footer {
    padding: 20px 15px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
      main {
        margin-top: 60px; /* スマホ表示時のヘッダー高さ分 */
      }
    } 
      .btn {
        font-size: 14px;
        padding: 7px 18px;
      }
      
    .slider-container {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 36px;
      flex-wrap: wrap; /* スマホなど狭い場合は縦並びに */
      flex-direction: row-reverse; /* ここを row → row-reverse に変更 */
      align-items: center;
      justify-content: center;
    }
    
    .variation-text {
      flex: 0 0 330px;        
    }
    
    .variation-price {
      font-weight: bold;
      margin-top: 0.5rem;
    }
    .variation-image img {
      width: 100%;
      max-width: 330px;
      height: auto;
      border-radius: 12px;
      display: block;
    }
    .variation-text {
      flex: 1 1 340px;           /* テキストボックス幅調整 */
      font-family: 'Montserrat', sans-serif;
      font-size: 1.07em;
      line-height: 1.6;
      color: #33261d;
      padding: 0 12px;
    }
    
    .online-shop-btn {
      display: inline-block;
      margin-top: 0.5rem;
      padding: 0.5rem 1rem;
      background-color: #333;
      color: #fff;
      text-decoration: none;
      border-radius: 4px;
    }
    
    .variation-image {
      max-width: 50%;
      cursor: pointer;
    }
    
    .variation-image img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      box-shadow: 0 0 8px rgba(0,0,0,0.2);

    }
    
    
    /* 共通 - 画像上にテキスト重ね表示（PCなど） */
.image-wrapper {
  position: relative;
  display: inline-block;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.image-wrapper .overlay-text {
  position: absolute;
  top: 20px;
  left: 20px;
  color: white;
  font-size: 24px;
  font-weight: bold;
  /* その他装飾 */
}

header {
  position: relative;
  padding: 10px 20px;
  background-color: #ececec;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* メニューはPCでは横並びで表示 */
.nav-menu ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

  .nav-menu ul li a {
    display: block;
    padding: 10px 15px;
    border-bottom: 1px solid #ccc;
    color: #333;
    text-decoration: none;
  }

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #808080;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.logo a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
}

.nav-menu ul li a {
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  display: block;
  border-bottom: 1px solid #6b6b6b;
  }

  .nav-menu ul li:last-child a {
    border-bottom: none;
  }
header {
  background-color: #808080 !important;
}
/* ハンバーガー初期非表示 */
.nav-toggle {
  display: none;
}

/* ハンバーガーアイコン */
.hamburger {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 25px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #333;
  border-radius: 2px;
}

  /* チェックが入ったらメニュー表示 */
  .nav-toggle:checked ~ .global-nav {
    display: flex;
  }

  .global-nav ul {
    flex-direction: column;
    gap: 1em;
  }

  .global-nav li {
    text-align: right;
  }

html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

* {
  box-sizing: border-box;
}

.mobile-menu {
  display: none;
  background: white;
  position: absolute;
  top: 60px;
  right: 0;
  width: 80%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

/* メニュー表示時に追加されるクラス */
.mobile-menu.active {
  display: block;
}

.online-shop-btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.6em 1.4em;
  background-color: #000;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;

  /* ▼ 左寄せにするポイント */
  margin: 1em 0;
  text-align: left;
}

/* PC・タブレット用（デフォルト） */
.overlay-text-multi {
  position: absolute;
  top: 10%;
  left: 5%;
  color: black;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  z-index: 2;
  max-width: 80%;
}

@media (max-width: 768px) {
  .hero {
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
    overflow: unset !important;
  }
    .hero img {
      position: static !important;
      z-index: auto !important;
      width: 100%;
      height: auto;
      object-fit: contain;
      margin: 0 auto;
      display: block;
    }
  

    @media (max-width: 768px) {
      .overlay-text,
      .overlay-text-multi {
        background: none !important;   /* ← 背景色を消す */
        position: static !important;
        display: block !important;
        width: 90vw;
        max-width: 98vw;
        margin: 24px auto 0 auto;
        padding: 1em 2vw;
        background: rgba(0,0,0,0.07);
        color: #222;
        text-align: center;
        border-radius: 8px;
        z-index: auto !important;
      }
    }
    

  .overlay-text-multi p:first-child {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
}
.triangle_arrow {
  position: absolute;
  top: 150px;        /* 画像上の位置, 適宜調整 */
  left: 90%;        /* 中央揃えしたい場合 */
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 16px solid #333; /* 三角形色・大きさ調整 */
}
/* 小さい画面用に調整したい場合はメディアクエリで追加 */
@media (max-width: 768px) {
  .triangle_arrow {
    width: 8vw;
    height: 8vw;
    border-left-width: 4vw;
    border-top-width: 4vw;
    border-bottom-width: 4vw;
    top: 40%;
    right: 5%;
  }
}
@media (max-width: 768px) {
  .overlay-text {
    position: static !important;
    display: block !important;
    width: 90vw;
    max-width: 98vw;
    margin: 24px auto 0 auto;
    padding: 1em 2vw;
    background: rgba(0,0,0,0.07);
    color: #222;
    text-align: center;
    border-radius: 8px;
    z-index: auto !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    pointer-events: auto !important;
    white-space: normal !important;
  }
}
@media (max-width: 768px) {
  .overlay-text,
  .overlay-text-multi p:first-child {
    font-size: 1.5rem !important;
  }
}
section.hero {
  max-width: 100vw !important;
  width: 100vw !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block;
}
body, html {
  width: 100vw;
  min-width: 100vw;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.overlay-text-multi {
  display: flex !important;
  flex-direction: column !important;   /* ←縦並びを強制 */
  align-items: flex-start !important;    /* ←テキストやロゴが左端に */
  justify-content: flex-start;
  width: 100%;
  padding: 24px 0;
  box-sizing: border-box;
  background: none;
  position: relative !important;
}

@media (max-width: 768px) {
  .logo-img {
    width: 120px;
    max-width: 140px;
  }
  .overlay-text-multi {
    padding: 16px 0;
  }
  .logo-overlay {
    margin-bottom: 10px;
  }
}
.overlay-text-multi p {
  text-align: left;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

.overlay-text-multi {
  position: relative !important;  /* ←絶対配置を解除して通常フローに */
  z-index: 10 !important;         /* ←画像より高く */
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  width: 100%;
}
.logo-overlay {
  position: relative !important;
  z-index: 20 !important;         /* ←hero imgより上 */
  margin-bottom: 16px;
  display: block;
}
.logo-img {
  z-index: 21 !important;
  position: relative !important;
  display: block;
  width: 180px;
  max-width: 200px;
  height: auto;
}
.cta-area {
  position: absolute;
  left: 70px;            /* 画像左からの横位置調整（例） */
  top: 70%;              /* 画像上部からの縦位置（例） */
  z-index: 10;           /* 画像・テキストより前面に出す */
  display: flex;
  align-items: center;
}

.shop-btn {
  display: block;
  background: #2a1a13;
  color: #fff;
  font-size: 1.0rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-align: center;
  padding: 15px 30px;
  border: none;
  margin-right: 22px;
  box-shadow: none;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .cta-area {
    position: static !important;     /* 通常のDOMフローで */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;  /* 子要素を中央揃え */
    justify-content: center !important;
    margin: 24px auto 0 auto !important; /* 下に余白 */
    right: auto !important;
    top: auto !important;
    width: 100%;
    z-index: 10;
  }
  .shop-btn {
    font-size: 1.15rem !important;
    padding: 14px 24px !important;
    margin-top: 8px;
    margin-left: 0 !important;
    border-radius: 8px;
  }
}
  .btn-annotation {
    font-size: 1rem;
    padding: 10px 10px 8px;
    margin-left: 0;
  }

  .cta-area-2 {
    margin-top: 18px;      /* 金額の下に余白 */
  }
  
  .shop-btn-2 {
    display: block;
    background: #fff;
    color: #000000;
    font-size: 1.0rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-align: center;
    padding: 15px 30px;
    border-radius: 6px;
    margin: 0 auto;
    max-width: 180px;      /* ボタン最大幅（必要なら調整） */
  }

  .shop-btn-3 {
    width: 180px;              /* 好みで160〜220pxなど調整可能 */
    display: block;            /* 横幅指定とmarginの効きを良くする */
    margin-left: 0;            /* 左寄せ */
    margin-right: auto;        /* 右余白を自動にして左端揃え */
    padding: 12px 0;           /* 左右余白を削減で細く */
    text-align: center;        /* テキスト中央（leftもOK） */
    background: #2a1a13;       /* 背景色（現状維持） */
    color: #fff;               /* 文字色（現状維持） */
    font-size: 1.1rem;         /* 必要に応じて */
    border: none;              /* 枠線不要なら */
    text-decoration: none;
  }
  
  
  @media (max-width: 768px) {
    .shop-btn {
      font-size: 1rem;
      padding: 10px 16px;
      max-width: 98%;
    }
    .cta-area-2 {
      margin-top: 14px;
    }
    .slider-container {
      flex-direction: column;
      gap: 20px;
      align-items: stretch;
    }
    .variation-image,
    .variation-text {
      max-width: 100%;
      padding: 0;
    }
  }
  header nav ul li a {
    text-decoration: none;
  }

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #808080;
    height: 70px;
    padding: 0 40px;
    font-size: 1.2rem;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    box-sizing: border-box;
  }
  header .logo a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
  }
  header nav ul li a {
    font-size: 1.05rem;
    color: white;
    padding: 0 18px;
  }
  .global-nav a {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
  }
 
  @media (max-width: 768px) {
    .slider-container {
      flex-direction: row !important;     /* ←縦並びを解除し横並び指定 */
      gap: 12px;
      align-items: center;
      width: 100%;
      justify-content: flex-start;
    }
    .variation-image {
      width: 48%;
      max-width: 140px;
      margin-right: 0;
      margin-left: 0;
    }
    .variation-image img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }
    .variation-text, .variation-info, .variation-price {
      width: 52%;
      padding: 0 0 0 8px;
      text-align: left;
      font-size: 1rem;
    }
  }
  /* チェックボックス自体は非表示 */
.nav-toggle {
  display: none;
}

  /* ハンバーガーONで表示 */
  .nav-toggle:checked ~ .global-nav {
    display: flex;
  }

@media (max-width: 768px) {
  .global-nav {
    display: none;
    /* ... */
  }
  .hamburger {
    display: flex;
    
  }
}
/* チェックボックスは非表示 */
.nav-toggle {
  display: none;
}

/* PC：ナビは常時表示、ハンバーガーは非表示 */
.global-nav {
  display: flex;
}
.hamburger {
  display: none;
}

/* スマホ：ハンバーガー表示・ナビ非表示→チェックON時にだけ表示 */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 28px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
  }
  .global-nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    width: 100vw;
    flex-direction: column;
    z-index: 99;
  }
  .nav-toggle:checked ~ .global-nav {
    display: flex;
  }
}
/* ナビ項目 */
/* header nav ul {
  list-style: none;
  display: flex;
  gap: 38px;
  margin: 0;
  padding: 0;
} */
header nav ul li {
  margin: 0;
  padding: 0;
}
header nav ul li a {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.15rem;
  padding: 0 6px;
}

header nav ul li a:hover {
  text-decoration: underline;
  opacity: 0.85;
}

/* ページ内容にヘッダー分の隙間を設ける */
body {
  margin: 0;
  padding-top: 70px; /* ヘッダーの高さ分だけ下げる */
  background: #f7f2ed;
}
/* ハンバーガー初期非表示 - PC */
.hamburger { display: none; }

/* モバイルで表示 */
@media (max-width: 768px) {
  .hamburger { display: flex; position: absolute; top: 20px; right: 20px; z-index: 1002; }
  .global-nav { 
    display: none;         /* 基本非表示 */
    flex-direction: column;
    position: absolute; 
    top: 70px; right: 0; width: 100vw; 
    background: #808080;   /* ここを白 (#fff) →グレー (#808080) と統一すると◎ */
    color: #fff; z-index: 1001;
  }
  .nav-toggle:checked ~ .global-nav { display: flex; }
  .global-nav ul { flex-direction: column; gap: 0; margin: 0; padding: 0; }
  .global-nav li { padding: 16px 24px; border-bottom: 1px solid #6b6b6b; text-align: right; }
  .global-nav li:last-child { border-bottom: none; }
}

/* PCでは常時表示に */
@media (min-width: 769px) {
  .global-nav { display: flex !important; position: static; background: none; color: #fff; }
  .global-nav ul { flex-direction: row; gap: 38px; }
  .hamburger, .nav-toggle { display: none !important; }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  background: #808080;
  padding: 0 40px;
  width: 100vw; /* ヘッダー幅に合わせる */
  box-sizing: border-box;
}
.logo {
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #fff;
}
.nav-menu {
  display: flex;
  gap: 40px;
}
.nav-menu a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.2rem;
}
