@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;
}
/* ======================== エムアイ ======================== */
.mi {
  display: flex;
  max-width: 1080px;
  margin: 200px auto;
    align-items: flex-start;
}
.mi img {
  max-width: 45%;
  height: auto;
  margin-top: 100px;
    object-fit: contain;
}
.mi-copy-block {
  margin: 50px;
  margin-right: 0px;
  width: auto;
}
.lead-copy {
  font-size: 16pt;
  line-height: 1.4;
}
.body-copy {
  line-height: 1.8;
  width: auto;
}
/* ========================= ナイキ ======================= */
.nike {
  display: flex;
  max-width: 1080px;
  margin: 200px auto;
}
.nike img {
  max-width: 46%;
  height: auto;
}
.nike-copy-block {
  margin: 50px;
  margin-right: 0px;
  width: auto;
}
/* ========================= カゴメ ======================= */
.kagome {
  display: flex;
  max-width: 1080px;
  margin: 200px auto;
    margin-bottom: 350px;
}
.kagome img {
  max-width: 46%;
  height: 46%;
  margin-top: 45px;
}
.kagome-copy-block {
  margin: 50px;
  margin-right: 0px;
  width: auto;
}
/* ===================== スマホ（〜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）======================= */
.mi {
    display: block;
    gap: 40px;
    max-width: 1080px;
    margin: 20px auto;
    margin-top: 120px;
    padding: 40px;
    align-items: flex-start;
}
.mi img {
    max-width: 100%;
    margin: auto;
}
.mi-copy-block {
    margin: 40px auto;
    width: auto;
    text-align: justify;
}
    .lead-copy {
    font-size: 13pt;
    }
/* ======================= ナイキ（〜440px）======================= */
.nike {
    display: block;
    gap: 40px;
    align-items: flex-start;
    max-width: 1080px;
    margin: 0 auto;
    margin-top: 120px;
    padding: 40px;
}
.nike img {
    max-width: 100%;
    margin: 30px auto;
}
.nike-copy-block {
    margin: 0;
    width: 100%;
    text-align: justify;
}
/* ======================= カゴメ（〜440px）======================= */
.kagome {
    display: block;
    gap: 40px;
    align-items: flex-start;
    max-width: 1080px;
    margin: 20px auto;
    margin-top: 120px;
    padding: 40px;
    align-items: flex-start;
}
.kagome img {
    max-width: 100%;
    margin: 0 auto;
    object-fit: contain;
}
.kagome-copy-block {
    margin: 50px 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;
  }
}