/* ==========================================================
   いっかく スタートページ
   ========================================================== */

/* ---------- ベース ---------- */
html, body {
  margin: 0;
  padding: 0;
  background: #f6f1e4;
}
body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #2a3f5f;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #2a4a76;
  text-decoration-color: rgba(42, 74, 118, .4);
  text-underline-offset: 3px;
}
a:hover {
  color: #d9922e;
  text-decoration-color: rgba(217, 146, 46, .5);
}
.serif {
  font-family: 'Shippori Mincho', serif;
}

/* ---------- レイアウト ---------- */
.page {
  min-height: 100vh;
  background: #f6f1e4;
  background-image:
    radial-gradient(ellipse 800px 500px at 20% -10%, rgba(255, 252, 244, .9), transparent 60%),
    radial-gradient(ellipse 600px 400px at 90% 30%, rgba(233, 222, 196, .35), transparent 65%);
  padding: 0 20px;
}
.container {
  max-width: 620px;
  margin: 0 auto;
  padding: 56px 0 48px;
}
.section {
  padding: 48px 0;
}
.section--bordered {
  border-top: 1px dashed rgba(42, 63, 95, .25);
}
.section-title {
  margin: 0 0 24px;
  font-family: 'Shippori Mincho', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .12em;
  color: #22375a;
  text-align: center;
}

/* ---------- 1. ファーストビュー ---------- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  padding-bottom: 56px;
}
.hero-image {
  width: 100vw;
  align-self: flex-start;
  margin-left: calc(50% - 50vw);
  margin-top: -56px; /* コンテナ上余白ぶんを打ち消して最上部から表示 */
}
.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: cover;
  border-radius: 0;
}
.hero-titles {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-kicker {
  margin: 0;
  font-family: 'Shippori Mincho', serif;
  font-size: 15px;
  letter-spacing: .28em;
  color: #4a5d7c;
}
.hero-title {
  margin: 0;
  font-family: 'Shippori Mincho', serif;
  font-size: 52px;
  font-weight: 600;
  letter-spacing: .18em;
  color: #22375a;
  text-indent: .18em;
}
.hero-divider {
  width: 46px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, #e3a63f, #d9862e);
}
.hero-poem {
  margin: 0;
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  line-height: 2.2;
  color: #35496b;
  text-wrap: pretty;
}

/* ことば遊び 3枚 */
.wordplay {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  max-width: 560px;
}
.wordplay-card {
  flex: 1 1 160px;
  min-width: 150px;
  padding: 12px 14px;
  border: 1px solid rgba(42, 63, 95, .18);
  background: rgba(255, 253, 246, .6);
  text-align: left;
}
.wordplay-card:nth-child(1) { border-radius: 14px 8px 16px 8px; }
.wordplay-card:nth-child(2) { border-radius: 8px 16px 8px 14px; }
.wordplay-card:nth-child(3) { border-radius: 15px 9px 14px 9px; }
.wordplay-word {
  margin: 0 0 4px;
  font-family: 'Shippori Mincho', serif;
  font-size: 14px;
  font-weight: 700;
  color: #22375a;
}
.wordplay-roman {
  font-size: 11px;
  font-weight: 500;
  color: #7a89a3;
}
.wordplay-desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  color: #4a5d7c;
}

/* ---------- 2. こんな方に ---------- */
.konna-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.konna-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  background: rgba(255, 253, 246, .7);
  border: 1px solid rgba(42, 63, 95, .14);
}
.konna-item:nth-child(1) { border-radius: 16px 10px 18px 10px; }
.konna-item:nth-child(2) { border-radius: 10px 18px 10px 16px; }
.konna-item:nth-child(3) { border-radius: 17px 9px 15px 11px; }
.konna-check {
  flex: none;
  margin-top: 2px;
  width: 20px;
  height: 20px;
  border: 1.5px solid #d9922e;
  color: #d9922e;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
}
.konna-item:nth-child(1) .konna-check { border-radius: 50% 46% 52% 48%; }
.konna-item:nth-child(2) .konna-check { border-radius: 48% 52% 46% 54%; }
.konna-item:nth-child(3) .konna-check { border-radius: 52% 48% 55% 45%; }
.konna-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  text-wrap: pretty;
}

/* ---------- 3. メニューと価格 ---------- */
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.menu-card {
  padding: 26px 24px;
  background: #fffdf6;
  border: 1.5px solid rgba(42, 63, 95, .22);
  border-radius: 22px 12px 24px 12px;
  box-shadow: 0 2px 10px rgba(42, 63, 95, .05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.menu-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.menu-num {
  font-family: 'Shippori Mincho', serif;
  font-size: 13px;
  color: #d9922e;
  font-weight: 700;
}
.menu-title {
  margin: 0;
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .06em;
  color: #22375a;
}
.menu-row {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.9;
  color: #4a5d7c;
}
.menu-row strong {
  color: #2a3f5f;
}
.menu-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 6px;
  border-top: 1px dashed rgba(42, 63, 95, .2);
}
.menu-price-label {
  font-size: 12px;
  color: #7a89a3;
}
.menu-price-value {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  font-weight: 700;
  color: #22375a;
}
.menu-note {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: #7a89a3;
}

/* ---------- 4. 受付開始キャンペーン ---------- */
.campaign-box {
  position: relative;
  padding: 32px 26px 30px;
  background: linear-gradient(160deg, #fdf6e6, #fbeed3);
  border: 1.5px solid #e0a742;
  border-radius: 14px 26px 14px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.campaign-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 18px;
  background: #d9922e;
  color: #fffdf6;
  font-family: 'Shippori Mincho', serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  border-radius: 999px;
  white-space: nowrap;
}
.campaign-line {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  color: #4a3a22;
  text-wrap: pretty;
}
.campaign-line--first {
  margin-top: 8px;
}
.campaign-price {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  color: #b26f14;
}
.campaign-kakko {
  margin: 0;
  font-size: 12px;
  line-height: 1.9;
  color: #8a7248;
}

/* ---------- 5. お申し込み・ご相談 ---------- */
.apply {
  padding: 8px 0 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.apply .section-title {
  margin: 0;
}
.apply-text {
  margin: 0;
  font-size: 15px;
  line-height: 2.1;
  color: #35496b;
  text-wrap: pretty;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 44px;
  background: #22375a;
  color: #fffdf6;
  font-family: 'Shippori Mincho', serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .1em;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(34, 55, 90, .25);
  transition: background .2s ease, box-shadow .2s ease;
}
.cta:hover {
  background: #2d477a;
  color: #fffdf6;
  box-shadow: 0 6px 18px rgba(34, 55, 90, .32);
}
.cta-arrow {
  font-size: 14px;
}
.apply-under {
  margin: 0;
  font-size: 12.5px;
  color: #7a89a3;
}

/* ---------- 6. プロフィール ---------- */
.profile-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
.profile-photo {
  width: min(220px, 56vw);
}
.profile-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px 14px 24px 14px;
  border: 1.5px solid rgba(42, 63, 95, .18);
  box-shadow: 0 2px 10px rgba(42, 63, 95, .08);
}
.profile-name {
  margin: 0;
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .3em;
  color: #22375a;
  text-indent: .3em;
}
.profile-text {
  margin: 0;
  max-width: 520px;
  font-size: 14px;
  line-height: 2.1;
  color: #4a5d7c;
  text-align: left;
  text-wrap: pretty;
}
.profile-shikaku {
  margin: 0;
  max-width: 520px;
  font-size: 12px;
  line-height: 2;
  color: #7a89a3;
}

/* ---------- 7. フッター ---------- */
.footer {
  padding: 48px 0 24px;
  border-top: 1px dashed rgba(42, 63, 95, .25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-bubbles {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.footer-bubbles span {
  border-radius: 50%;
}
.footer-bubbles span:nth-child(1) {
  width: 7px;
  height: 7px;
  background: rgba(42, 74, 118, .25);
}
.footer-bubbles span:nth-child(2) {
  width: 11px;
  height: 11px;
  background: rgba(42, 74, 118, .35);
  margin-bottom: 6px;
}
.footer-bubbles span:nth-child(3) {
  width: 6px;
  height: 6px;
  background: rgba(217, 146, 46, .5);
  margin-bottom: 12px;
}
.footer-message {
  margin: 0;
  font-family: 'Shippori Mincho', serif;
  font-size: 15px;
  line-height: 2.3;
  color: #35496b;
}
.footer-sig {
  margin: 0;
  font-family: 'Shippori Mincho', serif;
  font-size: 13px;
  letter-spacing: .3em;
  color: #7a89a3;
  text-indent: .3em;
}
.footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-links a {
  font-size: 13px;
  letter-spacing: .05em;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
}
.footer-legal a {
  font-size: 11.5px;
  color: #7a89a3;
  letter-spacing: .04em;
}
.footer-copy {
  margin: 0;
  font-size: 11px;
  color: #9aa6ba;
  letter-spacing: .08em;
}

/* ---------- 下層ページ（規約類） ---------- */
.legal-header {
  padding: 40px 0 8px;
  text-align: center;
}
.legal-home {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 12.5px;
  letter-spacing: .08em;
  text-decoration: none;
}
.legal-title {
  margin: 0;
  font-family: 'Shippori Mincho', serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: .12em;
  color: #22375a;
}
.legal-date {
  margin: 14px 0 0;
  font-size: 12px;
  color: #7a89a3;
}
.legal {
  padding: 24px 0 48px;
}
.legal h2 {
  margin: 40px 0 12px;
  font-family: 'Shippori Mincho', serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .08em;
  color: #22375a;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(42, 63, 95, .25);
}
.legal p,
.legal li {
  font-size: 14px;
  line-height: 2;
  color: #4a5d7c;
  text-wrap: pretty;
}
.legal p {
  margin: 0 0 12px;
}
.legal ol,
.legal ul {
  margin: 0 0 12px;
  padding-left: 22px;
}
.legal li {
  margin-bottom: 6px;
}
.legal-note {
  font-size: 12.5px;
  color: #7a89a3;
}

/* 特商法の表 */
.tokusho-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  background: rgba(255, 253, 246, .7);
  border: 1px solid rgba(42, 63, 95, .18);
  border-radius: 12px;
  overflow: hidden;
}
.tokusho-table th,
.tokusho-table td {
  padding: 14px 16px;
  font-size: 13.5px;
  line-height: 1.9;
  border-bottom: 1px dashed rgba(42, 63, 95, .18);
  vertical-align: top;
  text-align: left;
}
.tokusho-table tr:last-child th,
.tokusho-table tr:last-child td {
  border-bottom: none;
}
.tokusho-table th {
  width: 34%;
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  color: #22375a;
  background: rgba(42, 63, 95, .04);
}
.tokusho-table td {
  color: #4a5d7c;
}
@media (max-width: 480px) {
  .tokusho-table th,
  .tokusho-table td {
    display: block;
    width: auto;
  }
  .tokusho-table th {
    border-bottom: none;
    padding-bottom: 2px;
  }
}
