/* =========================
恋活・婚活ページ
白・ベージュ・淡いピンク多め
ゴールドはアクセント
========================= */

/* =========================
BASE（全体設定）
========================= */

.mc-page {
  --mc-pink: #f4a6ae;
  --mc-pink-dark: #df7f8b;
  --mc-pink-light: #fff3f5;
  --mc-beige: #fff8f3;
  --mc-beige-2: #f7eee6;
  --mc-gold: #b99642;
  --mc-text: #3a2a28;
  --mc-white: #fff;

  background: var(--mc-pink-light);
  color: var(--mc-text);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  line-height: 1.8;
  overflow: hidden;
}

.mc-page * {
  box-sizing: border-box;
}

.mc-page img {
  width: 100%;
  display: block;
}

/* =========================
SECTION共通（見出し・余白）
========================= */

/* PC */

.mc-section {
  padding: 80px 5%;
}

.mc-heading {
  text-align: center;
  margin-bottom: 36px;
}

.mc-heading span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--mc-pink);
  color: #fff;
  font-size: 15px;
}

.mc-heading h2 {
  margin: 0;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.mc-heading h2::after {
  content: "";
  display: block;
  width: 38px;
  height: 1px;
  background: var(--mc-gold);
  margin: 14px auto 0;
}

.mc-heading p {
  margin-top: 18px;
  font-size: 15px;
}

/* スマホ（SECTION共通） */

@media screen and (max-width: 767px) {

  .mc-section {
    padding: 52px 16px;
  }

  .mc-heading {
    margin-bottom: 26px;
  }

  .mc-heading span {
    width: 32px;
    height: 32px;
    font-size: 13px;
    margin-bottom: 10px;
  }

  .mc-heading h2 {
    font-size: 22px;
    line-height: 1.6;
    letter-spacing: 0.06em;
  }

  .mc-heading p {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* =========================
BUTTON（ボタン共通）
========================= */

/* PC */

.mc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mc-pink), var(--mc-pink-dark));
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 20px rgba(223, 127, 139, 0.25);
}

.mc-btn--line {
  background: #fff;
  color: var(--mc-gold);
  border: 1px solid var(--mc-gold);
  box-shadow: none;
}

/* スマホ（BUTTON） */

@media screen and (max-width: 767px) {

  .mc-btn {
    width: 100%;
    min-width: 0;
    height: 46px;
    font-size: 14px;
  }
}

/* =========================
HERO（FV）
========================= */

/* PC */

.mc-hero {
  display: grid;
  grid-template-columns: 43% 57%;
  align-items: center;
  min-height: 700px;
  background:
    radial-gradient(circle at 12% 18%, rgba(244,166,174,.22) 0 16px, transparent 17px),
    radial-gradient(circle at 23% 12%, rgba(244,166,174,.15) 0 10px, transparent 11px),
    linear-gradient(90deg, #fff 0%, var(--mc-pink-light) 100%);
}

.mc-hero__text {
  padding: 70px 8%;
  z-index: 2;
}

.mc-label {
  color: var(--mc-gold);
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  letter-spacing: 0.15em;
  margin-bottom: 34px;
}

.mc-hero h1 {
  margin: 0 0 24px;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.mc-hero h1 br + * ,
.mc-hero h1 {
  color: var(--mc-text);
}

.mc-hero h1::first-line {
  color: var(--mc-text);
}

.mc-lead {
  margin-bottom: 32px;
  font-size: 17px;
}

.mc-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.mc-hero__image {
  height: 700px;
}

.mc-hero__image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-bottom-left-radius: 110px;
}

/* スマホ（HERO） */

@media screen and (max-width: 767px) {

  .mc-hero {
    display: block;
    min-height: auto;
  }

  .mc-hero__text {
    padding: 34px 20px 22px;
  }

  .mc-label {
    font-size: 13px;
    margin-bottom: 22px;
  }

  .mc-hero h1 {
    font-size: 34px;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .mc-hero h1 br + * {
    color: var(--mc-pink-dark);
  }

  .mc-lead {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 24px;
  }

  .mc-hero__buttons {
    display: grid;
    gap: 12px;
  }

  .mc-hero__image {
    height: 300px;
  }

  .mc-hero__image img {
    border-bottom-left-radius: 56px;
  }
}

/* =========================
WORRIES（悩み）
========================= */

/* PC */

.mc-worries {
  background: linear-gradient(180deg, #fff, var(--mc-pink-light));
}

.mc-worry-box {
  max-width: 980px;
  margin: 0 auto;
}

.mc-worry-box ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mc-worry-box li {
  position: relative;
  min-height: 88px;
  padding: 20px 18px 20px 48px;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  font-size: 15px;
  box-shadow: 0 10px 28px rgba(190, 120, 130, 0.12);
  border: 1px solid rgba(244,166,174,.18);
}

.mc-worry-box li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mc-pink);
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* スマホ（WORRIES） */

@media screen and (max-width: 767px) {

  .mc-worry-box ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .mc-worry-box li {
    min-height: 86px;
    padding: 14px 10px 14px 34px;
    font-size: 14px;
    line-height: 1.6;
  }

  .mc-worry-box li::before {
    left: 10px;
    width: 18px;
    height: 18px;
    font-size: 11px;
  }
}

/* =========================
FEATURES（特徴・選ばれる理由）
========================= */

/* PC */

.mc-features {
  background: #fff;
}

.mc-feature-list {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mc-feature-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(190, 120, 130, 0.13);
  border: 1px solid rgba(244,166,174,.16);
}

.mc-feature-card img {
  height: 200px;
  object-fit: cover;
}

.mc-feature-card div {
  padding: 26px 24px 30px;
}

.mc-feature-card span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  background: var(--mc-pink);
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-bottom: 10px;
}

.mc-feature-card h3 {
  margin: 0 0 12px;
  color: var(--mc-pink-dark);
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 500;
}

.mc-feature-card p {
  margin: 0;
  font-size: 15px;
}

/* スマホ（FEATURES） */

@media screen and (max-width: 767px) {

  .mc-feature-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mc-feature-card {
    display: grid;
    grid-template-columns: 38% 62%;
    border-radius: 14px;
  }

  .mc-feature-card img {
    height: 100%;
    min-height: 165px;
  }

  .mc-feature-card div {
    padding: 16px 14px;
  }

  .mc-feature-card span {
    width: 28px;
    height: 28px;
    font-size: 11px;
    margin-bottom: 6px;
  }

  .mc-feature-card h3 {
    font-size: 17px;
    line-height: 1.45;
    margin-bottom: 8px;
  }

  .mc-feature-card p {
    font-size: 13px;
    line-height: 1.7;
  }
}

/* =========================
EVENTS（イベント一覧）
========================= */

/* PC */

.mc-events {
  background: var(--mc-pink-light);
}

.mc-event-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.mc-event-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  color: var(--mc-text);
  text-decoration: none;
  text-align: center;
  box-shadow: 0 10px 24px rgba(190, 120, 130, 0.12);
  border: 1px solid rgba(244,166,174,.18);
  transition: 0.3s;
}

.mc-event-card:hover {
  transform: translateY(-4px);
}

.mc-event-card img {
  height: 140px;
  object-fit: cover;
}

.mc-event-card h3 {
  margin: 16px 10px 6px;
  color: var(--mc-pink-dark);
  font-size: 17px;
  font-weight: 600;
}

.mc-event-card p {
  margin: 0 14px 20px;
  font-size: 13px;
  line-height: 1.65;
}

/* スマホ（EVENTS） */

@media screen and (max-width: 767px) {

  .mc-event-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .mc-event-card {
    border-radius: 10px;
  }

  .mc-event-card img {
    height: 74px;
  }

  .mc-event-card h3 {
    margin: 8px 4px 4px;
    font-size: 12px;
    line-height: 1.4;
  }

  .mc-event-card p {
    display: none;
  }
}

/* =========================
FLOW（ご利用の流れ）
========================= */

/* PC */

.mc-flow {
  background: #fff;
}

.mc-flow-list {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.mc-flow-card {
  position: relative;
  background: var(--mc-beige);
  border-radius: 16px;
  padding: 30px 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(190, 120, 130, 0.1);
  border: 1px solid rgba(244,166,174,.16);
}

.mc-flow-card span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  background: var(--mc-pink);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  margin-bottom: 12px;
}

.mc-flow-card h3 {
  margin: 0 0 10px;
  color: var(--mc-pink-dark);
  font-size: 17px;
}

.mc-flow-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

/* スマホ（FLOW） */

@media screen and (max-width: 767px) {

  .mc-flow-list {
    display: grid;
    grid-template-columns: repeat(5, 112px);
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .mc-flow-card {
    padding: 18px 10px;
  }

  .mc-flow-card span {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .mc-flow-card h3 {
    font-size: 13px;
    line-height: 1.4;
  }

  .mc-flow-card p {
    font-size: 11px;
    line-height: 1.5;
  }
}

/* =========================
FAQ（よくある質問）
========================= */

/* PC */

.mc-faq {
  background: var(--mc-pink-light);
}

.mc-faq-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mc-faq details {
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(244,166,174,.25);
  box-shadow: 0 8px 20px rgba(190, 120, 130, 0.08);
}

.mc-faq summary {
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  line-height: 1.6;
}

.mc-faq summary::before {
  content: "Q";
  display: inline-flex;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background: #f6c1c8;
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.mc-faq details p {
  margin: 12px 0 0;
  padding-left: 34px;
  font-size: 13px;
}

/* スマホ（FAQ） */

@media screen and (max-width: 767px) {

  .mc-faq-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mc-faq details {
    border-radius: 12px;
    padding: 13px 14px;
  }

  .mc-faq summary {
    font-size: 14px;
  }

  .mc-faq details p {
    padding-left: 0;
    font-size: 13px;
  }
}

/* =========================
   CTA
========================= */

.mc-cta {
  padding: 80px 5%;
  text-align: center;
  background: linear-gradient(135deg, #fff, #ffeef1);
}

.mc-cta h2 {
  margin: 0 0 14px;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 30px;
  font-weight: 500;
}

.mc-cta p {
  margin: 0 auto 32px;
  font-size: 15px;
  line-height: 1.9;
}

/* ボタン */

.mc-cta .mc-btn {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  max-width: 500px;
  height: 64px;

  margin: 0 auto;
}

.mc-cta .mc-btn + .mc-btn {
  margin-top: 20px;
}

/* =========================
   SP
========================= */

@media (max-width: 767px) {

  .mc-cta {
    padding: 56px 18px;
  }

  .mc-cta h2 {
    font-size: 23px;
    line-height: 1.6;
  }

  .mc-cta p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 28px;
  }

  .mc-cta .mc-btn {
    height: 58px;
  }

}