/* =================
共通
================= */
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

.wrapper {
  overflow: hidden;
}

section {
  padding: 80px 0px;
}
.section-full {
  padding: 80px 0;
}

h1,
h2,
h3 {
  margin: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

hr {
  border-bottom: 0;
}
/* PCでは改行しない */
.sp-br {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}

/* スマホだけ改行 */
@media (max-width: 1024px) {
  .sp-br {
    display: block;
  }
}
.pc-br {
  display: block;
}

@media (max-width: 980px) {
  .pc-br {
    display: none;
  }
}

/* =================
FV
================= */
.fv {
  background-image: url("img/fv-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: flex-end; /* ← 下寄せに変更 */
  justify-content: center; /* ← 横中央 */
  padding-bottom: 20vh; /* ← 微調整（超重要） */
  margin-top: 22vh; /* SALE */
}

.fv::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.5); */
}

.fv-inner {
  position: relative;
  z-index: 2;
  margin: 0;
}
.fv-title img {
  width: 80vw;
  display: block;
}
.fv-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.fv-subtitle img {
  display: block;
  height: 1em; /* ← 文字サイズに合わせると綺麗 */
}

/* タブレット */
@media screen and (max-width: 1024px) {
  .fv {
    background-image: url(img/fv-bg-sp.webp);
    height: 85vh;
    padding-bottom: 80px;
    margin-top: 10vh;
  }
  .fv-title img {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .fv {
    background-image: url(img/fv-bg-sp.webp);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    height: 85vh;
    padding-bottom: 80px;
    margin-top: 10vh;
    align-items: flex-end;
  }

  .fv-title img {
    display: none;
  }

  .fv-subtitle {
    gap: 6px; /* スマホは詰める */
  }
}

/* スマホ */
@media screen and (max-width: 519px) {
  .fv {
    background-image: url(img/fv-bg-sp.webp);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    height: 64vh;
    padding-bottom: 80px;
    margin-top: 10vh;
    align-items: flex-end;
  }
  .fv-title img {
    display: none;
  }
}

/* =================
サムネ
================= */

.thumbs {
  text-align: center;
}

.thumbs h2 {
  font-size: clamp(28px, 5cqw, 140px);
  line-height: 1em;
  color: #ff0033ff;
}

.fv-lead {
  font-size: clamp(22px, 4cqw, 90px);
  line-height: 1.3em;
  font-weight: bold;
  color: #fff;
}

.thumb-list {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.thumb-list img {
  width: 30%;
}

.note {
  width: 60vw;
  font-size: clamp(18px, 2cqw, 28px);
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .thumbs h2 {
    font-size: clamp(38px, 6cqw, 140px);
    padding: 20px 0;
  }
  .note {
    width: 90vw;
    font-size: clamp(20px, 2cqw, 32px);
    margin: 0 auto;
    text-align: left;
  }
  .fv-subtitle {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .fv-subtitle img {
    height: 1.5em; /* ←ここでサイズアップ */
  }
}

@media (max-width: 1024px) {
  section.thumbs {
    padding: 0px 15px 50px;
    margin-top: -230px;
  }
}
@media (max-width: 768px) {
  section.thumbs {
    padding: 0px 15px 50px;
    margin-top: -230px; /* SALE */
  }
  .thumb-list {
    flex-wrap: wrap;
  }
  .thumb-list img {
    width: 48%;
  }
  /* 並び替え */
  .thumb-list img:nth-child(1) {
    order: 2;
  }
  .thumb-list img:nth-child(2) {
    order: 1;
    width: 100%; /* 上に1枚ドン */
  }
  .thumb-list img:nth-child(3) {
    order: 3;
  }
}
@media (max-width: 519px) {
  section.thumbs {
    padding: 0px 15px 50px;
    margin-top: -130px;
  }
}


/* =================
オートサロン帯
================= */
.ladies {
  font-family: "Rounded Mplus 1c", "Noto Sans JP", sans-serif;
  background-image: url(img/ladies-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 80px;
  align-items: flex-end;
}
.autosalon {
  text-align: center;
  font-weight: bold;
  margin-bottom: 50px;
}
.autosalon h2 {
  font-size: clamp(28px, 4vw, 80px);
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  padding: 20px 10px;
}
.autosalon h2 .autosalon-st {
  font-size: clamp(28px, 7vw, 80px);
}
@media (max-width: 1024px) {
  .autosalon h2 {
    padding: 0px 10px 20px 20px;
    text-align: left;
  }
}
/* =================
女性向け
================= */
.ladies-wrapper {
  width: 80cqw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin: 0 auto;
}

/* 左側 */
.ladies-sub {
  width: 45%;
}

.ladies-img img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.ladies-desc {
  width: 100%;
  font-size: clamp(18px, 2cqw, 24px);
  line-height: 1.75;
  /* padding-left: clamp(10px, 4vw, 80px);
  padding-right: clamp(10px, 4vw, 80px); */
  margin: 0 auto;
  text-align: left;
  letter-spacing: 0.05em;
}
.ladies-inner {
  width: 50%;
}
.ladies-sub-inner {
  display: grid;
  text-align: left;
  gap: 10px;
}
.ladies-parts-title {
  border: 1px solid #fff;
  padding: 5px 19px;
  width: max-content;
  font-size: clamp(16px, 2cqw, 18px);
}
.ladies-parts {
  display: flex;
  gap: 20px;
}
.ladies-parts p {
  font-size: clamp(20px, 2cqw, 24px);
  color: #ff0196;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 15px 30px;
  width: calc(50% - 5px); /* 2列にする */
  text-align: center;
  transition: all 0.35s ease;
}
.ladies-parts p:hover {
  transform: translateY(-8px) scale(1.03);
  filter: brightness(1.15);
  box-shadow:
    0 3px 5px #fa4f88,
    0 14px 20px rgba(200, 11, 99, 0.4);
}

@media (max-width: 1780px) {
}
@media (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
  .ladies-wrapper {
    flex-direction: column;
    width: 90vw;
  }

  .ladies-sub,
  .ladies-inner {
    width: 100%;
  }

  .ladies-inner-top-right {
    position: static;
    margin-top: 20px;
    text-align: right;
  }
  .ladies-parts {
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
  }

  .ladies-parts p {
    padding: 10px 16px; /* 少しコンパクトに */
    font-size: 14px;
  }
}
@media (max-width: 519px) {
}

/* =================
メディア紹介
================= */

.media-coverage {
  width: 80cqw;
  background: #000;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  margin: 0 auto 80px;
}

/* タイトル */
.media-coverage__title {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  font-size: 3cqw;
  font-weight: bold;
  margin-bottom: 40px;
}

.media-coverage__title img {
  display: block;
  height: 6cqw; /* ← 好きなサイズに調整 */
  width: auto;
}

/* 枠（白線） */
.media-coverage__list {
  text-align: left;
  border: 1px solid #fff;
  padding: 30px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

/* 各カード */
.media-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ロゴ */
.media-item__logo img {
  max-width: 100%;
        height: auto;
        display: block;
  margin-bottom: 10px;
}

/* 日付 */
.media-item__meta {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 8px;
}

/* 本文 */
.media-item__text {
  font-size: 18px;
  margin-top: auto;
  margin-bottom: 10px;
  flex-grow: 1; /* ← これが重要 */
}

/* 画像 */
.media-item__image img {
  width: 100%;
  display: block;
}

.media-memo p {
    font-size: 16px;
    line-height: 2.8;
    text-align: right;
    font-weight: 200;
}

/* ================= タブレット ================= */
@media (max-width: 1024px) {
  .media-coverage {
    width: 100cqw;
    padding: 60px 15px;
  }
  .media-coverage__title {
  font-size: 5cqw;
}
  .media-coverage__title img {
  height: 10cqw; /* ← 好きなサイズに調整 */
}
}

/* ================= SP ================= */
@media (max-width: 768px) {

  .media-coverage {
    width: 100cqw;
    padding: 30px 15px;
  }

  .media-coverage__title {
    display: block;
    font-size: 2.5em;
  }

  .media-coverage__title img {
    width: 100%;
    height: auto;
  }

  .media-coverage__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 20px;
    row-gap: 40px;
    column-gap: 10px;
  }

  .media-item__logo img {
      max-width: 100%;
  height: auto;
  display: block;
  }
  .media-item__text {
    font-size: 16px;
    line-height: 1.4rem;
}
}

/* =================
PRODUCTタイトル
================= */
.product-heading img {
  width: 80vw;
  height: auto;
  display: block;
  margin: 0 auto;
}
.product-title {
  text-align: center;
  padding: 0 20px;
}
.product-title h3 {
  font-size: clamp(24px, 6vw, 80px);
  font-weight: 900;
}

/* =================
商品セクション共通
================= */
.product {
  text-align: center;
}

.heading-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  color: #00ff88;
  letter-spacing: 2px;
}

.heading-line::before,
.heading-line::after {
  content: "";
  flex: 1;
  height: 8px;
  background: #00ff88;
  box-shadow:
    0 15px 0 #00ff88,
    0 30px 0 #00ff88;
}

.product h3 {
  font-family: Impact, sans-serif;
  color: #00ff88;
  font-size: clamp(28px, 20vw, 200px);
  line-height: 1.2em;
}

.product .desc {
  width: 65vw;
  font-size: clamp(18px, 1.5cqw, 24px);
  margin: 0 auto;
  color: #00ff88;
}

.product .label {
  align-items: center;
  justify-content: center;
  margin: 50px 0;
}

.label-pc {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product .label-pc span {
  flex: 1;
  text-align: center;
  background: #969696;
  color: #000;
  font-weight: bold;
  height: 99px;
  line-height: 99px;
  position: relative;
  font-size: clamp(32px, 5vw, 95px);
  font-family: Impact, sans-serif;
}

.product .label h4 {
  padding: 0 70px; /* ← 120px→100pxに合わせて微調整 */
  font-size: clamp(32px, 5vw, 84px);
  white-space: nowrap;
  color: #969696;
}

.product .label-pc span:first-child::after {
  content: "";
  position: absolute;
  right: -49px;

  top: 50%;
  transform: translateY(-50%);

  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-left: 50px solid #969696;
}

.product .label-pc span:last-child::before {
  content: "";
  position: absolute;
  left: -49px;

  top: 50%;
  transform: translateY(-50%);

  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-right: 50px solid #969696;
}

.product-grid-wrap {
  position: relative;
}

.product-grid-title {
  position: absolute;
  width: 100%;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  /* background: #000; */
  color: #fff;
  padding: 0;
  font-size: clamp(32px, 3vw, 90px);
  font-weight: bold;
  /* font-family: Impact, sans-serif; */
  line-height: 1.2;
  z-index: 2;
  text-shadow:
    0 8px 9px rgba(0, 0, 0, 1),
    0 4px 8px rgba(0, 0, 0, 1),
    0 7px 25px rgba(0, 0, 0, 1);
}

.product-grid-title span {
  font-size: 0.7em;
}
.product-grid-title span {
  font-size: 0.7em;
}

.product-grid {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 80px;
  margin: 0 auto;
}

/* 親を基準にする */
.product-item {
  position: relative;
}

/* 共通ボタン */
.product-btn {
  min-width: 300px;
  position: absolute;
  bottom: -40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  color: #000000;
  font-size: clamp(14px, 1.5cqw, 16px);
  font-weight: bold;
  letter-spacing: normal;
  text-decoration: none;
  border-radius: 999px;
  background: #f0ff25;
  border: none;
  box-shadow:
    0 1px 8px #00000070,
    0 10px 20px rgb(0 0 0 / 78%);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
  z-index: 2;
}

/* hover（安定版） */
.product-btn:hover {
  transform: translateY(-5px);
  filter: brightness(1.15);

  box-shadow:
    0 3px 5px #000000,
    0 14px 20px rgba(0, 0, 0, 0.6);
}

/* active */
.product-btn:active {
  transform: translateY(6px);
}

/* 左画像 */
.product-btn.left {
  left: clamp(25px, 2cqw, 200px);
}

/* 右画像 */
.product-btn.right {
  right: clamp(25px, 2cqw, 200px);
}

.product-item img {
  width: 100%;
  display: block;
}

@media (max-width: 1024px) {
  .product-btn {
    position: absolute;
    bottom: -30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    color: #000000;
    font-size: clamp(15px, 1.5cqw, 16px);
    text-decoration: none;
    border-radius: 999px;
    background: #f0ff25;
    border: none;
    box-shadow:
      0 1px 8px #00000070,
      0 10px 20px rgb(0 0 0 / 78%);
    transition:
      transform 0.15s ease,
      box-shadow 0.15s ease,
      filter 0.15s ease;
    z-index: 2;
  }
}

@media (max-width: 519px) {
  .product-grid-title {
    margin-bottom: 20px;
  }
  /* 左側のボタン */
  .product-item:first-child .product-btn {
    margin-right: 10px; /* ← 内側へ */
  }

  /* 右側のボタン */
  .product-item:last-child .product-btn {
    margin-left: 10px; /* ← 内側へ */
  }
  .product-btn {
    position: static;
    margin: 12px auto 0;
    width: 80%;
    padding: 10px 20px;
    font-size: clamp(15px, 2vw, 16px);
    box-shadow:
      0 3px 0 #000000,
      0 10px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: normal;
  }

  /* 左右指定は無効化 */
  .product-btn.left,
  .product-btn.right {
    left: auto;
    right: auto;
  }

  .product-sp .sp-item {
    position: relative;
    margin-bottom: 20px;
  }
  .product-sp .product-btn {
    position: absolute;
    width: auto;
    min-width: 165px;
    max-width: 250px;
    margin: 0 5px;
    padding: 10px 10px;
    bottom: 5px;
  }
  .product-sp .product-btn.left {
    left: 1cqw;
  }
  .product-sp .product-btn.right {
    right: 1cqw;
  }
  .product-sp img {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* ===== 表示切替 ===== */
.product-grid-wrap .pc-only {
  display: grid;
  margin-bottom: 70px;
}

.product-grid-wrap .sp-only {
  display: none;
}

@media screen and (max-width: 519px) {
  .product-grid-wrap .pc-only {
    display: none;
  }

  .product-grid-wrap .sp-only {
    display: block;
    order: 2;
  }
}

/* ===== 初期（PC） ===== */
.label-sp {
  display: none;
}

@media (max-width: 1024px) {
  .product .desc {
    width: 90vw;
    text-align: left;
  }
}

@media (max-width: 980px) {
  .product .desc {
    width: 90vw;
    font-size: clamp(18px, 1.5cqw, 36px);
    margin: 0 auto;
    color: #00ff88;
    text-align: left;
  }
  .product {
    padding: 0px;
    margin-bottom: 100px;
  }
  .product-title {
    padding: 0px;
  }
  .product-grid-title {
    position: static;
    transform: none;
    margin-top: 12px;
    margin-bottom: 20px;
    text-align: center;
  }
  .product-grid {
    gap: 10px; /* 少し詰めるとそれっぽくなる */
    order: 1; /* 先に表示 */
    margin-bottom: 0px;
  }
  .product-grid-title {
    width: fit-content;
    font-size: clamp(20px, 4vw, 32px);
    line-height: 1.4;
    order: 1;
    border-top: 0.5px solid;
    border-bottom: 0.5px solid;
    padding: 10px 30px;
    margin: 30px auto 20px;
  }

  .product-grid-title span {
    font-size: 0.8em;
  }
  .product-grid-wrap {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
  }

  /* シリーズ名 */
  .label-pc {
    display: none;
  }

  .label-sp {
    display: flex; /* ← blockじゃなくてflexに */
    flex-direction: column;
    align-items: center; /* ← これが超重要（中央寄せ） */
    width: 100%;
  }
  .product .label-sp h4 {
    font-size: clamp(42px, 5vw, 84px);
  }

  .label-row {
    display: flex;
    justify-content: space-between; /* ← これが核心 */
    width: 100%;
    gap: 18px; /* ← 消す */
  }

  .label-row span {
    padding: 6px 12px;
    font-size: clamp(45px, 5vw, 95px);
    font-family: Impact, sans-serif;
    flex: 1; /* ← 左右いっぱい使う */
    text-align: center;
    color: #000;
  }

  .label-row span {
    /* flex: none; */
    height: 65px; /* ← 固定 */
    line-height: 65px; /* ← 中央揃え */
    padding: 0 20px; /* ← 横だけ余白 */
    background: #969696;
    position: relative;
  }

  /* ▶ FRONT */
  .label-row span:first-child::after {
    content: "";
    position: absolute;
    right: -16px; /* ← 少し外に出す */
    top: 50%;
    transform: translateY(-50%);
    border-top: 32px solid transparent; /* ← 65pxの半分 */
    border-bottom: 32px solid transparent;
    border-left: 16px solid #969696;
  }

  /* ◀ REAR */
  .label-row span:last-child::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 32px solid transparent;
    border-bottom: 32px solid transparent;
    border-right: 16px solid #969696;
  }
}
.product-grid-title {
  pointer-events: none;
}

/* =================
Others
================= */
.others h3 {
  font-family: Impact, sans-serif;
  color: #00ff88;
  font-size: clamp(28px, 20vw, 200px);
  line-height: 1.2em;
  /* align-items: stretch; */
}

.others-grid-wrap {
    width: 90vw;
    max-width: 1280px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 80px auto;
}
.others-text {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.others-text .product-btn {
  margin-top: auto;
}

.others-item {
  position: relative;
}

.others-item p {
  position: absolute;
  width: 100%;
  bottom: 5%;
  left: 47%;
  transform: translateX(-50%);
  /* background: #000; */
  color: #fff;
  padding: 0;
  font-size: clamp(32px, 3vw, 65px);
  font-weight: bold;
  line-height: 1.2;
  z-index: 2;
  text-shadow:
    0 8px 9px rgba(0, 0, 0, 1),
    0 4px 8px rgba(0, 0, 0, 1),
    0 7px 25px rgba(0, 0, 0, 1);
}

.others-item img {
  width: 100%;
  display: block;
}
.others .desc {
  width: 90%;
  text-align: left;
  font-size: clamp(18px, 2cqw, 20px);
  margin: 0 auto;
  color: #00ff88;
}

.others .product-btn {
  position: static;
  margin-top: 12px;
  display: block;
  /* min-width: 300px; */
  margin-left: auto;
  margin-right: auto;
  padding: 30px 30px;
  border-radius: 3px;
  font-size: clamp(17px, 2cqw, 20px);
  transition: transform 0.25s ease;
}
/* hover */
.others .product-btn:hover {
  transform: translateY(-10px);
}

/* active */
.others .product-btn:active {
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .others .desc {
    width: 100%;
    text-align: left;
    font-size: clamp(18px, 1.5cqw, 36px);
    line-height: 1.5;
    margin: 0 auto 35px;
    color: #00ff88;
  }
  .others-item {
    position: static; /* ← これ超重要 */
  }

  .others-item p {
    position: relative;
    margin-top: 45px;
    /* text-align: center; */
  }
  .others-item img {
    display: block;
    width: 100%;
  }

  section.others {
    margin-bottom: 200px;
  }
}

@media (max-width: 980px) {
  .others-grid-wrap {
    display: flex; /* ← gridやめる */
    flex-direction: column;
  }

  /* reverseだけ順番変更 */
  .others-item.reverse {
    order: -1;
  }
  .others-item p {
    font-size: clamp(28px, 5cqw, 42px);
    margin-top: 20px;
  }
}

/* =================
ブランド
================= */
.brand {
  background: url(img/brand_bg.jpg) center/cover no-repeat;
  position: relative;
}

.brand::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.brand-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
  text-align: center;
}


/* ================= 
メディアリンク
 ================= */
.media-link {
  padding: 60px 20px 120px;
  text-align: center;
  background: #111; /* 少し変えて差を出す */
  color: #fff;
}

/* タイトル */
.media-link__title {
    width: 90vw;
    max-width: 1280px;
    font-size: clamp(24px, 3cqw, 38px);
    font-weight: bold;
    padding: 20px;
    margin: 30px auto;
    border-bottom: 1px solid #fff;
}

/* リスト枠 */
.media-list-wrap {
    width: 90vw;
    max-width: 1280px;
    margin: 0 auto;
}

/* リスト */
.media-link__list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 各リンク */
.media-link__list li {
  border-bottom: 1px solid #444;
}

.media-link__list a {
  display: grid;
  grid-template-columns: 0.4fr 0.3fr 1fr;
  gap: 20px;
  padding: 14px 10px;
  color: #fff;
  text-decoration: none;
  align-items: center;
  font-size: 1rem;
  transition: 0.3s;
}

/* hover */
.media-link__list a:hover {
  background: #222;
}

/* 各要素 */
.media-name {
  font-weight: bold;
  font-size: clamp(16px, 1cqw, 20px);
}

.media-date {
  font-size: clamp(16px, 1cqw, 20px);
  color: #aaa;
}

.media-title {
  font-size: clamp(16px, 1cqw, 20px);
}

/* ================= SP ================= */
@media (max-width: 768px) {
  .media-link {
    padding: 40px 15px;
  }

  .media-link__title {
    font-size: 18px;
  }


  .media-link__list a {
    grid-template-columns: 1fr;
    gap: 6px;
    align-items: flex-start;
  }

  .media-name {
    font-size: 14px;
  }

  .media-date {
    font-size: 12px;
  }

  .media-title {
    font-size: 14px;
  }
}

/* =================
フッター+エンドコンテンツ
================= */
/* END CONTENTS2 */

/* CONTENTS3 */
.contents3 {
  width: 100%;
  height: 130vh;
  background: url(img/contents3-img-pc.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 0;
  margin-top: 100px;
}

/* グラデーションオーバーレイ */
.contents3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgb(0 0 0) 0%,
    /* 上端：濃い黒 */ rgba(0, 0, 0, 0) 30%,
    /* 中央に向けて透明 */ rgba(0, 0, 0, 0) 70%,
    rgb(0 0 0) 100% /* 下端：濃い黒 */
  );
  z-index: 1;
}

.contents3 > * {
  position: relative;
  /* 子要素をフィルターの上に出す */
  z-index: 2;
}

.contents3-title {
  color: #fff;
  text-align: center;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
}

.contents3-title h2 {
  font-size: clamp(28px, 4cqw, 90px);
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.contents3-title p {
  font-size: clamp(20px, 3cqw, 26px);
  line-height: 3rem;
  text-shadow:
    1px 1px 2px #000,
    -1px 1px 2px #000,
    1px -1px 2px #000,
    -1px -1px 2px #000;
}

@media (max-width: 1024px) {
  .contents3-title p {
    width: 80vw;
    font-size: clamp(18px, 3cqw, 26px);
    line-height: 1.5em;
    text-shadow:
      1px 1px 2px #000,
      -1px 1px 2px #000,
      1px -1px 2px #000,
      -1px -1px 2px #000;
    margin: 20px auto;
  }
  .contents3-title h2 {
    font-size: clamp(32px, 9cqw, 90px);
    line-height: 1.2em;
    margin: 0;
   padding-top: 50px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
}

@media (max-width: 834px) {
  .contents3-title h2 span {
    display: block;
  }

  .contents3-title {
    width: 95%;
    margin: auto;
  }
}

@media (max-width: 519px) {
  .contents3 {
    background: url(img/contents3-img_sp.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    padding: 0;
  }
  .contents3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 67%;
    background: linear-gradient(
      to bottom,
      rgb(0 0 0) 0%,
      /* 上端：濃い黒 */ rgba(0, 0, 0, 0) 30%,
      /* 中央に向けて透明 */ rgba(0, 0, 0, 0) 70%,
      rgb(0 0 0) 100% /* 下端：濃い黒 */
    );
    z-index: 1;
  }

  .contents3-title {
    top: 50%;
  }

  .contents3-title h2 {
    font-size: clamp(40px, 4cqw, 76px);
    font-weight: bolder;
  }

  .contents3-title p {
    width: 82vw;
    font-size: clamp(18px, 4cqw, 24px);
    line-height: 1.8rem;
    letter-spacing: 0.2em;
    margin: 20px auto;
    text-align: left;
  }

  .contents3-note {
    margin: 45vh auto 100px auto;
  }
}

@media (max-width: 320px) {
  .contents3-title {
    top: 45%;
    width: 80%;
  }

  .contents3-title h2 {
    font-size: 1.5rem;
  }

  .contents3-title p {
    font-size: 0.6rem;
    line-height: 1.3rem;
    margin: 45vh auto 20px auto;
  }
}

/* END CONTENTS3 */

/* FOOTER */

.footer-container {
  width: 90vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-container img {
  object-fit: contain;
  width: 20vw;
  display: block;
  margin: 20px auto;
}

.footer-container ul {
  display: flex;
  justify-content: space-around;
  padding: 0;
  width: 100%;
  margin: auto;
}

.footer-container ul li {
  list-style: none;
  border-left: 2px solid #fff;
  margin: 30px 0;
  width: calc(100% / 3);
  text-align: center;
  height: 50px;

  display: flex;
  align-items: center; /* ← 縦中央 */
  justify-content: center; /* ← 横中央 */
}

.footer-container ul li:last-child {
  border-right: 2px solid #fff;
}

.footer-container ul li a {
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  color: #fff;
}

.footer-container ul li a:hover {
  color: #fff;
}

footer .copy {
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 0.06em;
  text-align: center;
  margin: 0;
  padding: 10px 0;
  color: #fff;
}

@media (max-width: 1024px) {
  .footer-container {
    width: 100%;
  }
}

@media (max-width: 834px) {
  .footer-container {
    display: block;
  }

  .footer-container {
    width: 95%;
    margin-top: 50px;
  }

  .footer-container ul li a {
    font-size: 0.8em;
  }
}

@media (max-width: 519px) {
  .footer-container ul {
    display: block;
    line-height: 2em;
    margin: 0 auto 50px;
  }

  .footer-container ul li {
    border-left: none;
    border-bottom: 1px solid #fff;
    width: 100%;
    margin: 0 auto;
    padding: 10px 30px;
  }

  .footer-container ul li a {
    font-size: 0.9em;
  }

  .footer-container p {
    color: #fff;
    font-size: 10px;
    line-height: 30px;
    font-family: none;
  }

  .footer-container ul li:last-child {
    border-right: none;
  }

  .footer-container img {
    width: 75%;
    display: block;
    margin: 20px auto;
  }

  footer .copy {
    font-size: 10px;
  }
}

@media (max-width: 320px) {
  .footer-container img {
    width: 70%;
    display: block;
    margin: 20px auto;
  }

  .footer-container ul li a {
    font-size: 0.6em;
  }

  footer .copy {
    font-size: 6px;
  }
}

/* END FOOTER */
/* =================
レスポンシブ
================= */

@media (max-width: 768px) {
  section {
    padding: 50px 15px;
  }

  .fv h1 {
    font-size: 28px;
  }

  .fv h2 {
    font-size: 20px;
  }

  .ladies-inner {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}


/* アニメーション */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }


/* トップへ戻る */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #333;
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 9999;
}

#backToTop.show {
  opacity: 1;
}

/* ステータスバー透過防止 */
.for-status-bars {
  position: fixed;
  top: 0;
  pointer-events: none;
  height: 5px;
  width: 100%;
  background-color: #000;
  mix-blend-mode: lighten;
}

/* タブバー透過防止 */
.for-tab-bars {
  position: fixed;
  bottom: 0;
  pointer-events: none;
  height: 4px;
  width: 100%;
  background-color: #000;
  mix-blend-mode: lighten;
}