@charset "UTF-8";
/* ===================== 共通 / 変数 ===================== */ :root {
  --header-h: 64px;
}
/* ===================== 改行制御（初期設定） =============== */
.sp-only {
  display: none;
}
.pc-tab-only {
  display: inline;
}
/* ======================== 固定ナビ ===================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h); /* 高さを厳守 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px; /* 余白は左右のみ */
  z-index: 100;
  background: #fff;
  backdrop-filter: blur(6px);
  color: #000;
}
.site-header .logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 16pt;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.site-header nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header nav a {
  color: #000;
  text-decoration: none;
  font-size: 15pt;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  letter-spacing: .05em;
}
.logo a {
  text-decoration: none; /* 下線を消す */
  color: inherit; /* 文字の色を親要素（ロゴの元の色）に合わせる */
  display: block; /* クリックできる範囲を広げる */
}
/* ===================== ハンバーガー / ドロワー ===================== */
.hamburger {
  display: none;
  background: none;
  border: 0;
  color: #000;
  font-size: 28px;
}
.drawer {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 80;
  background: #fff;
  transform: translateY(-100%);
  transition: transform .25s ease;
}
.drawer.open {
  transform: translateY(0);
}
.drawer ul {
  font-family: "Cormorant Garamond", serif;
  font-size: 15pt;
  list-style: none;
  letter-spacing: .05em;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.drawer a {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 12px 4px;
}
/* ===================== 固定ヘッダー下スペーサー ===================== */
.spacer {
  height: var(--header-h);
}
/* ======================== タイトル共通 ======================== */
.title {
  margin: auto 50px;
}
.title1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22pt;
  font-weight: 300;
  letter-spacing: .05em;
  text-align: center;
  margin-top: 60px;
  line-height: 1.2;
}
.title2 {
  display: block;
  font-size: 22pt;
  letter-spacing: .1em;
  text-align: center;
  margin-top: -10px;
  border-bottom: 1px solid #000;
  padding-bottom: 60px;
}
/* ナビゲーション全体の枠 */
.navi {
  display: flex;
  gap: 40px; /* アイテム同士の間隔 */
  margin: 40px auto; /* 上下の余白と中央寄せ */
  padding: 0; /* リストのデフォルトの余白を消す */
  list-style: none; /* ・（黒丸）を消す */
  align-items: center; /* 全体を中央揃え */
}
/* 各メニューの共通設定 */
.menu-item {
  width: 100%; /* 幅を確保 */
  text-align: center; /* 中身を中央寄せ */
}
/* リンクタグのデザイン */
.menu-item a {
  display: flex;
  flex-direction: column; /* 文字と矢印を縦に並べる */
  align-items: center; /* 中央揃え */
  text-decoration: none; /* 下線を消す */
  color: #000; /* 文字色 */
  gap: 15px; /* 文字と矢印の間隔 */
}
/* 文字のデザイン */
.text {
  /* 必要であればフォントサイズなどをここに追記 */
  font-size: 16px;
}
/* 矢印画像のデザイン */
.arrow-icon {
  width: 40px; /* ★重要：適切なサイズに固定する */
  height: auto; /* 高さは自動 */
  display: block;
}
/* ======================== ル・クルーゼ ======================== */
.lecreuset {
  margin-top: 200px;
  display: block;
}
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 auto;
}
.bb-images {
  display: flex;
  gap: 40px;
}
.bb-image01 img {
  max-width: 100%;
  height: auto;
}
.bb-image02 img {
  max-width: 100%;
  height: auto;
}
.lecreuset-copy-block1 {
  max-width: 548px;
  text-align: justify;
  margin-top: 20px;
  margin-left: 0;
}
.lead-copy {
  font-size: 16pt;
  line-height: 1.4;
}
.body-copy {
  line-height: 1.8;
  width: auto;
}
/* ======================== ル・クルーゼ 2======================== */
.lecreuset02 {
  display: flex;
  flex-direction: column;
  max-width: 1080px;
  margin: auto;
  margin-top: 200px;
  margin-bottom: 200px;
  align-items: center;
}
.lc-sub-image {
  text-align: center; /* 画像をdivの中でさらに真ん中にしたい場合の保険 */
  width: 100%;
}
.lc-sub-image img {
  max-width: 35%;
}
.lc-sub-copy-block {
  max-width: 625px;
  text-align: justify;
  margin-top: 20px;
}
/* ======================== ル・クルーゼ 3 ======================== */
.lecreuset03 {
  max-width: 1080px;
  margin: auto;
  margin-bottom: 200px;
  align-items: center;
}
.kitchen-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: auto;
  align-items: center;
}
.kitchen-images img {
  width: 100%;
  height: auto;
  display: block;
}
.lc-kitchen-copy-block3 {
  max-width: 625px;
  text-align: justify;
  margin-top: 20px;
}
.lead-copy {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}
.lead-copy a {
  text-decoration: none;
  color: #000;
  display: inline-block;
  position: relative;
  z-index: 1; /* 重なり順を上にする */
}
.lead-copy img.arrow-icon {
  margin-top: -5px;
}
.body-copy {
  margin-top: -5px;
  max-width: 550px;
}
/* ======================== ル・クルーゼ 4 ======================== */
.lecreuset04 {
  max-width: 1080px;
  margin: auto;
  margin-bottom: 200px;
  align-items: center;
}
.kitchen-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: auto;
  align-items: center;
}
.kitchen-images img {
  width: 100%;
  height: auto;
  display: block;
}
.lc-kitchen-copy-block4 {
  max-width: 625px;
  margin-top: 20px;
}
.lead-copy2 {
  display: flex;
  /* ↓ これが重要：左と右の両端に要素を配置する */
  justify-content: space-between;
  /* ↓ 矢印を下のラインに合わせる（中央ならcenter） */
  align-items: flex-end;
  font-size: 16pt;
  line-height: 1.4;
  margin-top: 50px;
}
/* リンク自体の設定 */
.lead-copy2 a {
  display: inline-block; /* 文字の横に並ぶようにする */
  vertical-align: middle; /* 文字の高さの中央に合わせる */
  margin-left: 8px; /* 文字とのスキマ */
  text-decoration: none;
  color: #000;
  position: relative;
  z-index: 10; /* 重なりを一番上にする */
}
/* テキスト部分の幅を確保 */
.lead-copy2 .text-inner {
  flex: 1; /* 残りのスペースをすべて使う */
}
.lead-copy2 .arrow-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-left: 20px; /* テキストとの最低限の隙間 */
  flex-shrink: 0; /* 矢印が潰れないようにする */
}
.lead-copy2 img.arrow-icon {
  width: 40px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}
.body-copy {
  margin-top: 15px;
  max-width: 550px;
}
/* ========================== アクア ========================== */
.aqua {
  display: block;
  max-width: 1080px;
  margin: 200px auto;
}
.aqua-main {
  display: flex;
  gap: 15px;
  margin: auto;
  margin-bottom: 40px;
  align-items: center;
}
.aqua-main img {
  width: auto;
  height: 350px;
  display: block;
}
.aqua-copy-block {
  margin-left: 40px;
  margin-bottom: -45px;
}
.aqua-sub-images {
  display: flex;
  gap: 10px;
  max-width: 1080px;
  margin: auto;
  align-items: center;
}
.aqua-sub-images img {
  flex: 1;
  width: 100%;
  height: auto;
  min-width: 0;
}
/* ========================== プラスデオ ========================== */
.suntory-wellness {
  display: flex;
  max-width: 1080px;
  margin: 200px auto;
}
.suntory-wellness img {
  max-width: 50%;
  height: auto;
}
.suntory-copy-block {
  margin-left: 40px;
}

/* ===================== スマホ（〜440px）====================== */
@media screen and (max-width: 440px) {
  :root {
    --header-h: 46px;
  }
  .site-header .logo {
    margin-left: -20px;
  }
  .hamburger {
    display: block;
    position: absolute; /* ← header内で絶対配置 */
    right: 16px;
    bottom: 7px;
  }
  .site-header nav {
    display: none;
  }
  .sp-only {
    display: inline;
  }
  .pc-tab-only {
    display: none;
  }
  /* ================== navi スマホ（〜440px） ================== */
  .title {
    margin: auto 20px;
  }
  .title1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 16pt;
    font-weight: 300;
    letter-spacing: .05em;
    text-align: center;
    margin-top: 30px;
    line-height: 1.2;
  }
  .title2 {
    display: block;
    font-size: 18pt;
    letter-spacing: .1em;
    text-align: center;
    margin-top: -10px;
    border-bottom: 1px solid #000;
    padding-bottom: 30px;
  }
  /* ナビゲーション全体の枠 */
  .navi {
    display: flex;
    flex-direction: column; /* 縦並び */
    gap: 40px; /* アイテム同士の間隔 */
    margin: 40px auto; /* 上下の余白と中央寄せ */
    padding: 0; /* リストのデフォルトの余白を消す */
    list-style: none; /* ・（黒丸）を消す */
    align-items: center; /* 全体を中央揃え */
  }
  /* 各メニューの共通設定 */
  .menu-item {
    width: 100%; /* 幅を確保 */
    text-align: center; /* 中身を中央寄せ */
  }
  /* リンクタグのデザイン */
  .menu-item a {
    display: flex;
    flex-direction: column; /* 文字と矢印を縦に並べる */
    align-items: center; /* 中央揃え */
    text-decoration: none; /* 下線を消す */
    color: #000; /* 文字色 */
    gap: 15px; /* 文字と矢印の間隔 */
  }
  /* 文字のデザイン */
  .text {
    /* 必要であればフォントサイズなどをここに追記 */
    font-size: 16px;
  }
  /* 矢印画像のデザイン */
  .arrow-icon {
    width: 40px; /* ★重要：適切なサイズに固定する */
    height: auto; /* 高さは自動 */
    display: block;
    margin-top: auto;
  }
  /* ================= ル・クルーゼ スマホ（〜440px）================== */
  .lecreuset {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    max-width: 1080px;
    margin: auto;
    margin-top: 120px;
    padding: 0 40px;
  }
  .container {
    max-width: 1080px;
  }
  .bb-images {
    display: block;
    gap: 20px;
  }
  .bb-image01 img {
    max-width: 100%;
    height: auto;
  }
  .bb-image02 img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
  }
  .lecreuset-copy-block1 {
    margin-top: -20px;
    width: auto;
    text-align: left;
  }
  .lead-copy {
    font-size: 14pt;
    line-height: 1.4;
  }
  .body-copy {
    line-height: 1.8;
    width: auto;
  }
  /* ================= ル・クルーゼ 2 スマホ（〜440px）=================== */
  .lecreuset02 {
    display: block;
    gap: 40px;
    align-items: flex-start;
    max-width: 1080px;
    margin-bottom: 180px;
    padding: 0 40px;
  }
  .lc-sub-image {
    text-align: center; /* 画像をdivの中でさらに真ん中にしたい場合の保険 */
    width: 100%;
  }
  .lc-sub-image img {
    max-width: 100%;
  }
  .lc-sub-copy-block {
    margin-top: -20px;
    width: auto;
    text-align: left;
  }
  .lead-copy {
    font-size: 13pt;
    line-height: 1.4;
  }
  /* ================= ル・クルーゼ 3 スマホ（〜440px）=================== */
  .lecreuset03 {
    display: block;
    gap: 40px;
    align-items: flex-start;
    max-width: 1080px;
    padding: 0 40px;
  }
  .kitchen-images {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1080px;
    margin: auto;
    margin-bottom: 0px;
    align-items: center;
  }
  .kitchen-images img {
    width: 100%;
    height: auto;
  }
  .lc-kitchen-copy-block3 {
    max-width: 625px;
    text-align: justify;
    margin-top: -20px;
  }
  .lead-copy .text-inner {
    display: flex;
    font-size: 13pt;
    line-height: 1.4;
  }
  .lead-copy img.arrow-icon {
    width: 40px;
    margin-top: 5px;
  }
  .body-copy {
    margin-top: -5px;
    max-width: 550px;
  }
  /* ================= ル・クルーゼ 4 スマホ（〜440px）=================== */
  .lecreuset04 {
    display: block;
    gap: 40px;
    align-items: flex-start;
    max-width: 1080px;
    margin-bottom: 120px;
    padding: 0 40px;
  }
  .kitchen-images {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1080px;
    margin: auto;
    align-items: center;
  }
  .kitchen-images img {
    width: 100%;
    height: auto;
    display: block;
  }
  .lc-kitchen-copy-block4 {
    max-width: 625px;
    margin-top: -20px;
  }
  .lead-copy2 .text-inner {
    display: flex;
    gap: 20px;
    margin: auto;
    font-size: 13pt;
    line-height: 1.4;
  }
  .lead-copy2 img.arrow-icon {
    width: 40px;
    margin-bottom: 32px;
  }
  .body-copy {
    margin-top: 0px;
    max-width: 550px;
  }
  /* ====================== アクア スマホ（〜440px）===================== */
  .aqua {
    display: block;
    gap: 40px;
    align-items: flex-start;
    max-width: 1080px;
    margin: auto;
    margin-top: 0px;
    padding: 40px;
  }
  .aqua-main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1080px;
    margin: 70px auto;
    align-items: center;
  }
  .aqua-main img {
    width: 100%;
    height: auto;
    display: block;
  }
  .aqua-copy-block {
    margin: -20px auto;
    width: auto;
    text-align: justify;
  }
  .aqua-sub-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 1080px;
    margin: auto;
    align-items: center;
  }
  .aqua-sub-images img {
    width: 100%;
    height: auto;
    display: block;
  }
  /* ==================== プラスデオ スマホ（〜440px）=================== */
  .suntory-wellness {
    display: flex;
    flex-direction: column;
    gap: 0px;
    max-width: 1080px;
    margin: 160px 40px;
    align-items: center;
  }
  .suntory-wellness img {
  width: 100% !important;
  max-width: none !important; /* 最大幅の制限も解除 */
  height: auto !important;
}
  .suntory-copy-block {
    margin: 0px auto;
    width: 100%;
    text-align: justify;
  }
}
/* ==================== タブレット（441px〜1024px） ================== */
@media screen and (min-width:441px) and (max-width:1024px) {
  .hamburger {
    display: none;
  }
  .site-header nav {
    display: block;
  }
}
/* ========================= PC（1025px〜） ========================= */
@media screen and (min-width:1025px) {
  body {
    margin: 0 60px;
  }
  .hamburger {
    display: none;
  }
  .site-header nav {
    display: block;
  }
  .navi .menu-item:last-child {
    /* gap（40px）に加えて、さらに余白を足したい場合はプラスの数字（例: 20px）
      逆に詰めたい場合はマイナスの数字（例: -10px）を入れて調整してください
    */
    margin-top: -55px;
  }
}