/**
 * 追加・上書き用CSS（直接記述）
 * 本番とCSSの乖離を避けるため、追記するスタイルはこのファイルのみに記述する。
 */

/* ===== コンセプト詳細：注釈（※1 ※2など） ===== */
.page-concept-detail .concept-detail__note {
  font-size: 14px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  color: #666;
}
@media screen and (max-width: 767px) {
  .page-concept-detail .concept-detail__note {
    font-size: 12px;
    margin-bottom: 16px;
    padding-inline: 8px;
  }
}

/* ===== プライバシーページ：company__info の gap を広く ===== */
.page-privacy .company__info {
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .page-privacy .company__info {
    gap: 40px;
  }
}

/* プライバシーページ：セクションの右はみ出し防止（Grid子の min-width: auto を打ち消す） */
.page-privacy .company__info--item--section,
.page-privacy .company__info--section-body,
.page-privacy .company__info--section-item {
  min-width: 0;
  max-width: 100%;
}
.page-privacy .company__info--item--title,
.page-privacy .company__info--item--text {
  min-width: 0;
  overflow-wrap: break-word;
}

/* ===== 会社概要・プライバシー：セクション見出し（下線なし・大きめ）※直下のタイトルのみ ===== */
.page-company .company__info--item--section > .company__info--item--title {
  border-bottom: none;
  padding-bottom: 0;
  font-size: 32px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .page-company .company__info--item--section > .company__info--item--title {
    font-size: 16px;
    margin-bottom: 16px;
  }
}

/* 免責事項などセクション内：タイトル+本文をまとめたブロックの間隔 */
.page-company .company__info--section-item {
  margin-top: 48px;
}

/* ===== フッター：プライバシーポリシーリンク ===== */
.footer__privacy-policy {
  display: block;
  text-align: center;
  padding-top: 20px;
  transition: opacity 0.3s;
}
.footer__privacy-policy:hover {
  opacity: 0.8;
}
.footer__privacy-policy--text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .footer__privacy-policy--text {
    font-size: 10px;
  }
}

/* ===== コンセプト05：YouTube サムネイル・モーダル ===== */
.concept05-youtube-thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
}
.concept05-youtube-thumb picture,
.concept05-youtube-thumb img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.25s ease;
}
.concept05-youtube-thumb:hover picture,
.concept05-youtube-thumb:hover img {
  opacity: 0.85;
}

.concept05-youtube-modal__container {
  position: relative;
  width: 90%;
  max-width: 960px;
  padding: 0;
  min-height: 0;
  max-height: none;
  display: block;
  background: #000;
  overflow: visible;
}
.concept05-youtube-modal__inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.concept05-youtube-modal__inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.concept05-youtube-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.concept05-youtube-modal__close:hover {
  opacity: 0.75;
}
@media screen and (max-width: 767px) {
  .concept05-youtube-modal__close {
    top: -44px;
    right: 0;
    width: 32px;
    height: 32px;
    font-size: 24px;
  }
}
