@charset "utf-8";

/* ==============================================
  オーナーズクラブ PC
  ブレークポイント: max-width 750px でSP
================================================ */

/* ----------------------------------------------
  共通
---------------------------------------------- */
.oc-inner {
  width: 1060px;
  margin: 0 auto;
}

.sp-only {
  display: none;
}

/* ----------------------------------------------
  イントロセクション
---------------------------------------------- */
.oc-intro {
  background: #fff;
  padding: 60px 0 0;
}

.oc-intro__en {
  font-size: 16px;
  letter-spacing: 0.25em;
  color: #aaa;
  text-align: center;
  margin: 0 0 16px;
}

.oc-intro__title-wrap {
  text-align: center;
  padding: 12px 0;
  margin: 0 0 32px;
}

.oc-intro__title {
  display: inline-block;
  font-size: 34px;
  font-weight: 700;
  color: #008CD6;
  letter-spacing: 0.1em;
  margin: 0;
  line-height: 1.4;
  box-shadow: inset 0 -0.4em 0 0 #ECF1F3;
}

.oc-intro__body {
  font-size: 16px;
  line-height: 2;
  color: #463F39;
  margin: 0 0 40px;
}

.oc-intro__body strong {
  font-weight: 700;
}

/* イントロ写真2枚並び */
.oc-intro__photos {
  display: flex;
}

.oc-intro__photo {
  flex: 1;
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.oc-intro__photo img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.oc-intro__photo-caption {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  line-height: 1.4;
}

/* ----------------------------------------------
  動画セクション
---------------------------------------------- */
.oc-movie {
  background: #fff;
  padding: 0 0 30px;
}

.oc-movie__heading {
  font-size: 24px;
  font-weight: 700;
  color: #008CD6;
  line-height: 1.6;
  padding: 50px 0 30px;
  margin: 0;
  text-align: center;
}

.oc-movie__list {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
}

.oc-movie__item {
  flex: 1;
  min-width: 0;
}

.oc-movie__thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  overflow: hidden;
}

.oc-movie__thumb img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.2s ease;
}

.oc-movie__thumb:hover img {
  opacity: 0.85;
}

.oc-movie__caption {
  margin: 10px 0 0;
  font-size: 16px;
  color: #463f39;
  text-align: center;
  line-height: 1.4;
}

/* CTAボタン */
.oc-movie__btn-wrap {
  /* 全幅ボタン */
}

.oc-movie__btn {
  display: block;
  width: 500px;
  background: #008BD5;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 20px 48px;
  position: relative;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.2s ease;
  border-radius: 6px;
  margin: 0 auto;
}

.oc-movie__btn::after {
  content: '▶';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 6px;
}

.oc-movie__btn:hover {
  background: #0079BB;
  opacity: 1;
}

/* ----------------------------------------------
  本文セクション
---------------------------------------------- */
.oc-about {
  background: #fff;
  padding: 30px 0;
}

.oc-about .oc-inner {
  font-size: 16px;
  line-height: 2;
  color: #463f39;
}

.oc-about .oc-inner p + p {
  margin-top: 20px;
}

.oc-about__photos {
  display: flex;
  margin: 32px 0;
}

.oc-about__photo {
  flex: 1;
  overflow: hidden;
  line-height: 0;
}

.oc-about__photo img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* ----------------------------------------------
  参加者様の声セクション
---------------------------------------------- */
.oc-voice {
  background: #fff;
  padding: 30px 0 80px;
}

.oc-voice__heading {
  font-size: 24px;
  font-weight: 700;
  color: #008CD6;
  text-align: center;
  margin: 0 0 40px;
  letter-spacing: 0.05em;
}

.oc-voice__list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.oc-voice__item {
  flex: 1;
  min-width: 0;
  background: #F9F9F9;
  padding: 24px 20px 28px;
  text-align: center;
}

.oc-voice__badge {
  display: inline-block;
  background: #008CD6;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  padding: 4px 24px;
  border-radius: 20px;
  margin: 0 0 16px;
}

.oc-voice__text {
  text-align: left;
  font-size: 16px;
  line-height: 1.9;
  color: #463f39;
}

/* ----------------------------------------------
  YouTubeモーダル
---------------------------------------------- */
.oc-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
}

.oc-modal.is-open {
  display: flex;
}

.oc-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.oc-modal__box {
  position: relative;
  z-index: 1;
  width: 800px;
  max-width: calc(100vw - 40px);
}

/* 閉じるボタン */
.oc-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin: 14px auto 0;
  background: #fff;
  border: none;
  border-radius: 30px;
  padding: 10px 20px 10px 120px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease;
}

.oc-modal__close:hover {
  opacity: 0.75;
}

.oc-modal__close-label {
  line-height: 1;
}

.oc-modal__close-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #555;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.oc-modal__close-icon::before,
.oc-modal__close-icon::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

.oc-modal__close-icon::before {
  transform: rotate(45deg);
}

.oc-modal__close-icon::after {
  transform: rotate(-45deg);
}

/* 動画エリア（16:9） */
.oc-modal__video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

.oc-modal__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ==============================================
  SP（max-width: 750px）
================================================ */
@media (max-width: 750px) {

  .oc-inner {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .sp-only {
    display: block;
  }

  /* イントロ */
  .oc-intro {
    padding: 36px 0 0;
  }

  .oc-intro__en {
    margin: 0;
  }

  .oc-intro__title {
    font-size: 24px;
  }

  .oc-intro__title-wrap {
    padding: 10px 0;
    margin: 0 0 20px;
  }

  .oc-intro__body {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .oc-intro__photos {
    display: block;
  }

  .oc-intro__photo img {
    height: 180px;
  }

  /* 動画 */
  .oc-movie {
    padding-bottom: 30px;
  }

  .oc-movie__heading {
    font-size: 18px;
    padding: 36px 0 24px;
  }

  .oc-movie__list {
    flex-wrap: wrap;
    gap: 12px;
  }

  .oc-movie__item {
    flex: 0 0 calc(50% - 6px);
  }

  .oc-movie__caption {
    font-size: 14px;
    margin-top: 8px;
  }

  .oc-movie__btn {
    width: 100%;
    font-size: 15px;
    padding: 20px 40px;
  }

  /* 本文 */
  .oc-about {
    padding: 20px 0;
  }

  .oc-about .oc-inner {
    font-size: 14px;
  }

  .oc-about__photos {
    display: block;
    margin: 24px 0;
  }

  .oc-about__photo img {
    height: 200px;
  }

  /* 声 */
  .oc-voice {
    padding: 20px 0 0;
  }

  .oc-voice__heading {
    font-size: 18px;
    margin-bottom: 28px;
  }

  .oc-voice__list {
    flex-direction: column;
    gap: 16px;
  }

  .oc-voice__item {
    flex: none;
    padding: 20px 16px 24px;
  }

  .oc-voice__text {
    font-size: 14px;
  }

  /* モーダル */
  .oc-modal__box {
    width: calc(100vw - 24px);
  }

  .oc-modal__close {
    top: -36px;
    right: 0;
  }

  .oc-modal__close {
    gap: 30px;
    padding: 5px 20px 5px 80px;
    font-size: 14px;
  }

}
