/* ================================
   背景（コンクリ固定）
================================ */
body {
  background: url("img/bg_concrete.jpg") repeat top center fixed;
  background-size: 500px;
  margin: 0;
  font-family: sans-serif;
}


/* ================================
   黒バー
================================ */
.top-bar {
  width: 100%;
  height: 70px;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-logo {
  height: 45px;
}


/* ================================
   TOP画像
================================ */
.hero-bg {
  width: 100%;
  display: block;
}


/* ================================
   告知文
================================ */
.hero-text {
  text-align: center;
  color: #000;
  font-size: 20px;
  line-height: 1.9;
  margin: 40px 0 30px;
  padding: 0 20px;
}


/* ================================
   商品紹介タイトル
================================ */
.product {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 60px;
}
.product-title {
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.title-icon {
  height: 26px;
}


/* ================================
   大枠フレーム
================================ */
.product-box {
  border: 3px solid #333;
  padding: 25px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: rgba(255,255,255,0.75);
}


/* ================================
   左：時計
================================ */
.product-left {
  width: 40%;
  display: flex;
  justify-content: center;
}
.watch-main {
  width: 100%;
  max-width: 360px;
  height: auto;
}


/* ================================
   右：グリッド
================================ */
.product-right {
  width: 60%;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}


/* ================================
   画像＋テキスト（縦並び）
================================ */
.detail-block {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.detail-img {
  width: 100%;
  height: auto;
  border: 1px solid #aaa;
  margin-bottom: 10px;
}

.detail-text {
  width: 100%;
  font-size: 17px;
  line-height: 1.8;
}


/* 裏蓋：左下 */
.detail-case {
  grid-column: 1 / 2;
}

/* KV：右下 */
.detail-kv {
  grid-column: 2 / 3;
  display: flex;
  justify-content: flex-end;
}
.kv-two {
  width: 300px;
  height: auto;
}


/* ================================
   予約帯
================================ */
.reserve-banner {
  width: 100%;
  background: #fc5c00;
  color: #fff;
  text-align: center;
  font-size: 22px;
  padding: 18px 0;
  margin-top: 60px;
}


/* ================================
   商品ページボタン
================================ */
.product-link {
  text-align: center;
  margin: 30px 0;
}
.product-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 24px;
  font-size: 20px;
  text-decoration: none;
}


/* ================================
   SNS
================================ */
.sns {
  text-align: center;
  margin: 40px 0;
}
.sns img {
  width: 40px;
  margin: 0 10px;
}


/* ================================
   コピーライト
================================ */
.footer {
  text-align: center;
  font-size: 14px;
  margin-bottom: 30px;
  color: #444;
}


/* ================================
   スマホ版（767px）
================================ */
@media screen and (max-width: 767px) {

  .hero-text {
    text-align: left;
    padding: 0 15px;
    font-size: 16px;
    line-height: 1.7;
  }

  .product-title {
    font-size: 26px;
    margin-left: 10px;
  }

  .product-box {
    flex-direction: column;
    padding: 15px;
  }

  .product-left {
    width: 100%;
    justify-content: center;
    margin-bottom: 20px;
  }

  .watch-main {
    max-width: 240px;
  }

  .product-right {
    width: 100%;
  }

  /* グリッドを1列に変更 */
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .detail-block {
    width: 100%;
  }

  .detail-img,
  .detail-text {
    width: 100%;
  }

  .detail-kv {
    justify-content: center;
  }

  .kv-two {
    width: 75%;
    max-width: 300px;
  }
}
@media screen and (max-width: 767px) {

  /* 画像→テキストを縦並びで固定 */
  .detail-grid {
    display: block; /* ← これが一番効く */
  }

  .detail-block {
    display: block;
    width: 100%;
    margin-bottom: 30px;
  }

  .detail-img {
    width: 90%;
    max-width: 360px;
    margin: 0 auto 10px;
    display: block;
  }

  .detail-text {
    width: 90%;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
    word-break: break-all; /* ← 1文字ずつ落ちるのを防止 */
  }

  /* KVの調整 */
  .detail-kv .kv-two {
    width: 90%;
    max-width: 320px;
    margin: 0 auto;
  }
}
