body {
  margin: 0; 
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #f7f2ed;
  color: #2e2a27;
  line-height: 1.7;
}


header,
header a,
header a:visited {
  color: white;
}


.logo img {
  height: 1em; /* 親要素のフォントサイズに合わせる */
  width: auto; /* アスペクト比を維持 */
  vertical-align: middle; /* テキストの中央揃えに近づける */
}
.hero {
  position: relative;
  width: 100%;
  height: auto;        /* ←heightを”auto” */
  min-height: 0;       /* ←min-heightも外す */
  margin: 0;           /* 必要ならmarginもゼロ */
  padding: 0;          /* 必要ならpaddingもゼロ */
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: auto;        /* ←画像の高さも”auto” */
  display: block;
  object-fit: cover;
  object-position: center;
}


.overlay-text {
  position: relative;  /* absolute→relativeに変更 */
  left: 5px;          /* 左寄せ */
  top: auto;           /* top指定を解除 */
  transform: none;     /* transform解除 */
  color: black;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 25px;
  text-align: left;
  pointer-events: none;
  white-space: nowrap;
  text-shadow: none;
  padding-left: 20px;
}

.btn {
  position: relative;
  display: inline-block;
  margin-top: 10px;  /* テキストのすぐ下に余白 */
  z-index: 1;
  left: 20px;        /* テキストと揃える */
}

.overlay-text-multi {
  position: absolute;
  top: 10%;
  left: 5%;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: bold;
  z-index: 2;
  max-width: 80%;
  background: rgba(0, 0, 0, 0.4); /* 任意の背景色 */
  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 .logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  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;
   text-align: center;
}
.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;
}
footer {
  text-align: center;
  padding: 28px 0;
  font-weight: 600;
  color: #6f5d43;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 900px) {
  .hero {
    height: 360px;
    padding-left: 24px;
    margin: 24px 0 24px 0; /* 上下左右の余白を縮小 */
    padding-top: 70px; /* 追加：上部パディングをゼロに */
    padding-bottom: 0; /* 追加：下部パディングをゼロに */
    width: 100%;
    max-width: 100%;
  }
  @media (max-width: 768px) {
    .hero {
      width: 100%;
      max-width: 100%;
    }
  }
  .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 {
    flex-direction: column;
    align-items: flex-start;
  }
  .online-shop-btn {
    margin-left: 0;
    margin-top: 12px;
    width: 100%;
    text-align: center;
  }
  .shop-list {
    width: 90%;
    padding: 28px 20px;
  }

}
.footer {
  background-color: #5a4c45; /* 画像の背景色に近いブラウン系 */
  padding: 20px 0;
  text-align: center;
}

.footer img {
  width: 240px;      /* 希望サイズ（例）で指定 */
  height: auto;      /* アスペクト比維持し自動調整 */
  display: block;
  margin: 0 auto;    /* 中央揃え（必要なら） */
}

@media (max-width: 900px) {
  .About {
    margin: 16px 16px;
    padding: 0;
  }
}

/* ハンバーガーボタン初期非表示 */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 3px;
  background-color: white;
  border-radius: 2px;
}

/* ナビメニュー（PC用） */
.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.nav-menu ul li a {
  color: white;
}

/* スマホ表示時 */
@media (max-width: 768px) {
  /* ハンバーガー表示 */
  .hamburger {
    display: flex;
  }

  /* ナビ非表示 */
  .nav-menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #808080;
    border-radius: 8px;
    width: 180px;
    padding: 10px 0;
  }

  /* メニューを縦並びに */
  .nav-menu.open {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 0;
  }

  .nav-menu ul li a {
    padding: 10px 20px;
    display: block;
    border-bottom: 1px solid #6b6b6b;
  }

  .nav-menu ul li:last-child a {
    border-bottom: none;
  }
}
/* ハンバーガー初期非表示 */
.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;
}

/* グローバルナビ - デフォルト */
.global-nav {
  display: flex;
}

/* モバイル対応 */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .global-nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background: white;
    width: 100%;
    padding: 1em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-direction: column;
  }

  /* チェックが入ったらメニュー表示 */
  .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%;
}


@media (max-width: 900px) {
  main, section {
    padding-top: 80px; /* ヘッダー高さぶん */
  }
}
@media (max-width: 768px) {
  main, section {
    padding-top: 80px; /* もしくはmargin-topでも可 */
  }
}
/* Global box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Responsive padding for small screens */
@media (max-width: 768px) {
  header {
    padding: 15px 10px;
  }
}
header nav ul li a {
  text-decoration: none;
}
section.hero {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: block;
}


header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(128,128,128,0.85); /* 半透明グレー */
  /* background: rgba(255,255,255,0.9); ※白帯で透過なら */
  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;
}
.section-title,
.subtitle,
.about-text {
  text-align: center;
}

@media (max-width: 900px) {
  section.hero,
  .hero {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .hero {
    height: 360px;
    margin-top: 70px;
    padding-top: 0;
  }
}
.hero, section.hero {
  width: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.hero img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

/* ハンバーガー初期非表示 - 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; }
}
