@charset "UTF-8";

/* =========================================
   基本設定
   ========================================= */
:root {
  --text-color: #333;
  --main-width: 1200px;
  --font-base: "Noto Sans JP", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-base);
  color: var(--text-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* 画像の基本設定：はみ出し防止 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  /* 画像下の隙間を消す */
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

/* コンテナ（中央寄せ枠） */
.container {
  width: 100%;
  max-width: var(--main-width);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* =========================================
   各セクション
   ========================================= */

/* メインビジュアル */
.mv-section {
  width: 100%;
  text-align: center;
}

/* 導入テキスト */
.intro-section {
  padding: 60px 0;
  text-align: center;
}

.intro-text {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 40px;
  line-height: 2;
}

.btn-check {
  display: inline-block;
  padding: 15px 60px;
  border: 1px solid #333;
  border-radius: 50px;
  color: #333;
  font-weight: bold;
  background: #fff;
}

/* POINTセクション */
.points-section {
  padding-bottom: 60px;
}

.point-item {
  margin-top: 80px;
  margin-bottom: 80px;
}

/* POINTタイトル画像 */
.point-title {
  text-align: center;
  margin-bottom: 30px;
}

.point-title img {
  width: 200px;
  /* PCでのタイトル幅 */
}

/* POINTコンテンツ画像（写真＋説明） */
.point-content {
  text-align: center;
}

/* 画像をPCでは程よいサイズに制限する場合 */
.point-content img {
  width: 100%;
  max-width: 1000px;
  /* 必要に応じて調整 */
}


/* 商品紹介セクション */
.product-section {
  padding: 80px 0;
  text-align: center;
}

.product-container {
  max-width: 585px;
  /* 商品エリアは少し幅を狭める */
}

.product-title {
  text-align: center;
  margin-bottom: 40px;
}

.product-title img {
  width: 400px;
  /* PCでのタイトル幅 */
}

.product-slider {
  margin-bottom: 30px;
}

/* 商品スペック情報 */
.product-info {
  text-align: left;
}

.catchphrase {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 30px;
  text-align: left;
}

.spec-list dt {
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 5px;
  font-size: 18px;
}

.spec-list dd {
  margin: 0;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
}

/* カラーバリエーション & ボタン */
.color-variations {
  margin-top: 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.label {
  font-size: 14px;
  color: #999;
  margin-right: 10px;
}

.color-chip {
  display: inline-block;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  border: 1px solid rgba(68, 68, 68, 0.5);
}

.btn-detail {
  margin-left: auto;
  background: #000;
  color: #fff;
  padding: 8px 50px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

/* ボトムリンク */
.bottom-links {
  padding: 60px 0;
  text-align: center;
}

.link-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 60px;
  border: 1px solid #ccc;
  border-radius: 40px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}

/* 既存の記述を上書き、または書き換えてください */
.home-link a {
  display: flex;
  /* 横並びモードにする */
  align-items: center;
  /* 上下（垂直方向）の中央に揃える */
  justify-content: center;
  /* 左右（水平方向）の中央に寄せる */
  gap: 5px;
  /* アイコンと文字の間に少し隙間をあける */
  font-weight: bold;
  /* 太文字 */
  text-decoration: none;
  /* 下線を消す */
}

/* もしアイコンの位置が微妙にズレると感じる場合の微調整 */
.home-link .material-symbols-outlined {
  font-size: 20px;
  /* アイコンの大きさを調整（文字サイズに合わせる） */
  line-height: 1;
  /* 行の高さをリセットしてズレを防ぐ */
  position: relative;
  /* 微調整用 */
  top: -1px;
  /* 必要なら1pxだけ上に上げるなどの調整 */
}

/* =========================================
   Splide (スライダー) カスタマイズ
   ========================================= */
.splide__arrow {
  background: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.splide__arrow:hover {
  background: #fff !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.splide__arrow svg {
  fill: #999 !important;
  width: 16px !important;
  height: 16px !important;
}

.splide__arrow--prev {
  left: 10px !important;
}

.splide__arrow--next {
  right: 10px !important;
}

/* =========================================
   SP用レスポンシブスタイル (768px以下)
   ========================================= */
@media screen and (max-width: 768px) {

  .container {
    padding: 0;
  }

  .intro-text {
    text-align: center;
    font-size: 16px;
    margin-bottom: 70px;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }

  .intro-section {
    padding: 30px 0;
  }

  .point-item {
    margin-bottom: 60px;
  }

  .point-title {
    margin-bottom: 0;
  }

  /* 画像タイトルサイズ調整 */
  .point-title img {
    width: 230px;
  }

  .product-title img {
    width: 370px;
  }

  .catchphrase {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: left;
    line-height: 1.3;
  }

  .product-section {
    padding: 70px 15px;
  }

  /* SP版のボタン調整 */
  .color-variations {
    justify-content: flex-start;
  }

  .btn-detail {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
    background: #1A1311;
    /* 紫色 */
    color: #fff;
    text-align: center;
    padding: 15px 0;
    border-radius: 50px;
    font-size: 16px;
  }

  /* リンクボタン縦並び */
  .link-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-box {
    width: 100%;
    max-width: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 390px;
    height: 60px;
    border: 1px solid #ccc;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
  }

  /* スライダー矢印調整 */
  .splide__arrow {
    width: 30px !important;
    height: 30px !important;
  }

  .splide__arrow svg {
    width: 12px !important;
    height: 12px !important;
  }
}

/* PC（デフォルト）では改行を無効化（非表示） */
.sp-only {
  display: none;
}

/* SP（768px以下）の時だけ改行を有効化 */
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

/* PC（デフォルト）では改行を有効化 */
.pc-only {
  display: block;
}

/* SP（768px以下）の時は改行を無効化（非表示） */
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}