/* たびのしおり LP 共通スタイル(20代女性向け・モバイルファースト) */

:root {
  --pink: #E8738F;
  --pink-dark: #D75A78;
  --pink-light: #FFD9E3;
  --coral: #F09A6E;
  --mustard: #E9B94A;
  --sky: #BFE3F8;
  --cream: #FFF9F4;
  --brown: #5F463A;
  --brown-light: #85685A;
  --border: #F2E4D9;
  --radius: 26px;
  --shadow: 0 18px 40px rgba(107, 79, 67, .12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--brown);
  background: var(--cream);
  line-height: 1.9;
  letter-spacing: .05em;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* インラインSVGアイコン */
.icon {
  width: 1.05em;
  height: 1.05em;
  display: inline-block;
  vertical-align: -0.16em;
  flex: none;
}
.gallery figcaption .icon,
.plan h3 .icon,
.plans-note .icon,
.hero-note .icon { color: var(--pink-dark); margin-right: 3px; }

.container { width: min(1080px, 92%); margin: 0 auto; }

/* 見出しの上につく小さな英字ラベル */
.eyebrow {
  font-family: "Shippori Mincho", serif;
  font-size: .78rem;
  letter-spacing: .42em;
  color: var(--pink-dark);
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ---- header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 249, 244, .9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: .14em;
  color: var(--brown);
  text-decoration: none;
}
.logo .logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 5px 14px rgba(215, 90, 120, .18);
}
.nav { display: flex; gap: 20px; align-items: center; }
.nav a { font-size: .82rem; color: var(--brown-light); text-decoration: none; }
.nav a:hover { color: var(--pink-dark); }
.nav .cta {
  background: linear-gradient(135deg, #EE7895, #DF6685);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(232, 115, 143, .35);
}
@media (max-width: 640px) { .nav a:not(.cta) { display: none; } }

/* ---- hero ---- */
.hero {
  position: relative;
  background:
    radial-gradient(50% 64% at 88% 14%, rgba(255, 218, 229, .92) 0%, transparent 66%),
    radial-gradient(44% 56% at 4% 92%, rgba(213, 237, 251, .88) 0%, transparent 64%),
    linear-gradient(155deg, #FFF0F4 0%, #FFF9F5 58%, #FFFDF9 100%);
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  width: 280px;
  height: 280px;
  right: -100px;
  top: -110px;
  border: 1px solid rgba(232, 115, 143, .13);
  box-shadow: 0 0 0 34px rgba(255, 255, 255, .16), 0 0 0 68px rgba(232, 115, 143, .035);
}
.hero::after {
  width: 210px;
  height: 210px;
  left: -120px;
  bottom: -95px;
  background: rgba(255, 255, 255, .34);
}
.hero .container {
  display: grid;
  grid-template-areas:
    "copy"
    "visual"
    "actions";
  gap: 26px;
  padding: 38px 0 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy { grid-area: copy; }
.hero-actions { grid-area: actions; }
.hero-visual { grid-area: visual; }
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .74rem;
  font-weight: 500;
}
.hero .eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  flex: none;
  background: var(--pink);
}
.hero h1 {
  font-size: clamp(1.9rem, 5.6vw, 3rem);
  font-weight: 700;
  letter-spacing: .075em;
  line-height: 1.5;
  text-wrap: balance;
}
.hero .accent {
  color: var(--pink-dark);
  position: relative;
  display: inline-block;
  z-index: 0;
}
.hero .accent::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -.08em;
  right: -.03em;
  bottom: .18em;
  height: .3em;
  border-radius: 2px 8px 4px 3px;
  background: rgba(255, 195, 211, .78);
  transform: rotate(-1deg);
}
.hero p.lead {
  margin-top: 18px;
  font-size: clamp(.9rem, 2.6vw, 1rem);
  color: var(--brown-light);
  line-height: 2;
}
.hero-points {
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border: 1px solid rgba(232, 115, 143, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .66);
  color: #795D50;
  font-size: .72rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.hero-points li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 3px rgba(232, 115, 143, .13);
}
.badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.hero-actions .badges { margin-top: 0; }
.badge {
  min-height: 56px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.badge:hover { transform: translateY(-2px); }
.badge.primary {
  background: linear-gradient(135deg, #ED7894, #DE6382);
  color: #fff;
  box-shadow: 0 12px 28px rgba(215, 90, 120, .32);
}
.badge.primary:hover { box-shadow: 0 15px 32px rgba(215, 90, 120, .4); }
.badge.secondary { background: #fff; color: var(--brown); border: 1.5px solid var(--border); }
.badge-kicker {
  display: block;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .08em;
  opacity: .82;
}
.badge.soon { opacity: .62; cursor: default; }
.badge.soon:hover { transform: none; }
.hero-note { margin-top: 12px; font-size: .72rem; color: var(--brown-light); }

/* タイトル裏にうっすら覗かせるコラージュ写真 */
.hero-copy { position: relative; z-index: 0; }
.hero-copy .hero-bg {
  position: absolute;
  top: -78px;
  left: -12%;
  width: 122%;
  max-width: none;
  height: auto;
  z-index: -1;
  opacity: .52;
  filter: saturate(.9) contrast(.98);
  -webkit-mask-image: radial-gradient(44% 46% at 42% 42%, #000 14%, rgba(0, 0, 0, .58) 47%, transparent 91%);
  mask-image: radial-gradient(44% 46% at 42% 42%, #000 14%, rgba(0, 0, 0, .58) 47%, transparent 91%);
  pointer-events: none;
}
@media (max-width: 879px) {
  .hero-copy .hero-bg { left: -18%; width: 136%; top: -48px; }
}

.hero-visual {
  position: relative;
  width: min(430px, 88%);
  margin: 0 auto;
  isolation: isolate;
}
.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8% -12% 6%;
  border-radius: 48% 52% 46% 54%;
  background: rgba(255, 255, 255, .52);
  border: 1px solid rgba(232, 115, 143, .11);
  box-shadow: 0 26px 70px rgba(190, 117, 137, .12);
  transform: rotate(-4deg);
}
.visual-note {
  position: absolute;
  z-index: 4;
  padding: 7px 12px;
  border: 1px solid rgba(232, 115, 143, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 8px 22px rgba(107, 79, 67, .11);
  color: var(--brown-light);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.visual-note::before { content: "✦"; margin-right: 5px; color: var(--pink); }
.visual-note.note-top { top: 15%; right: -6%; transform: rotate(3deg); }
.visual-note.note-bottom { bottom: 16%; left: -11%; transform: rotate(-3deg); }
.hero-visual .photo {
  border-radius: 34px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

/* ---- アプリスクショ用のスマホフレーム ---- */
.phone {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 38px;
  padding: 10px;
  box-shadow: var(--shadow);
}
.phone img {
  border-radius: 28px;
  width: 100%;
  height: auto;
}
.hero-visual .phone {
  width: min(350px, 80%);
  margin: 0 auto;
  transform: rotate(1.5deg);
  box-shadow: 0 26px 64px rgba(107, 79, 67, .17);
}

/* 機能セクション内のスクショ */
.visual-phone { display: flex; justify-content: center; }
.visual-phone .phone { width: min(280px, 72%); }
.visual-phone.duo { gap: 18px; align-items: flex-start; }
.visual-phone.duo .phone { width: min(220px, 46%); }
.visual-phone.duo .phone:first-child { transform: rotate(-2deg) translateY(14px); }
.visual-phone.duo .phone:last-child { transform: rotate(2deg); }
.hero-visual .float {
  position: absolute;
  width: clamp(64px, 9vw, 104px);
  height: auto;
  filter: drop-shadow(0 10px 16px rgba(107, 79, 67, .22));
  animation: floaty 5s ease-in-out infinite;
}
.hero-visual .float.f1 { top: -18px; left: -2px; transform: rotate(-10deg); }
.hero-visual .float.f2 { bottom: -12px; right: -2px; transform: rotate(8deg); animation-delay: 1.2s; }
@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

@media (min-width: 880px) {
  .hero .container {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    grid-template-areas:
      "copy visual"
      "actions visual";
    column-gap: clamp(44px, 7vw, 92px);
    row-gap: 26px;
    padding: 68px 0 72px;
    align-items: center;
  }
  .hero h1 { font-size: clamp(2.25rem, 4.4vw, 3rem); }
  .hero-copy { align-self: end; }
  .hero-actions { align-self: start; }
}
@media (max-width: 879px) {
  .hero .container { text-align: center; }
  .hero .eyebrow, .hero-points { justify-content: center; }
  .badges { justify-content: center; }
  .hero-visual { width: min(430px, 82%); }
}
@media (max-width: 520px) {
  .site-header .container { padding: 10px 0; }
  .logo { font-size: .98rem; }
  .logo .logo-icon { width: 34px; height: 34px; }
  .nav .cta { padding: 9px 17px; font-size: .78rem; }
  .hero .container { gap: 22px; padding: 34px 0 44px; }
  .hero h1 { font-size: clamp(1.75rem, 8.1vw, 2.05rem); line-height: 1.48; }
  .hero p.lead { margin-top: 14px; font-size: .86rem; line-height: 1.9; }
  .desktop-break { display: none; }
  .hero-points { margin-top: 14px; }
  .hero-points li { padding: 5px 10px; font-size: .66rem; }
  .hero-visual { width: min(340px, 84%); }
  .hero-visual .phone { width: min(248px, 75%); padding: 8px; border-radius: 32px; }
  .hero-visual .phone img { border-radius: 24px; }
  .hero-visual .float { width: clamp(66px, 20vw, 86px); }
  .visual-note { font-size: .58rem; padding: 6px 9px; }
  .visual-note.note-top { right: -8%; }
  .visual-note.note-bottom { left: -9%; }
  .hero-actions .badges { gap: 10px; }
  .hero-actions .badge { width: min(310px, 100%); min-height: 54px; }
  .hero-note { max-width: 330px; margin: 11px auto 0; line-height: 1.75; }
}

/* ---- ステッカーのマーキー ---- */
.marquee {
  border-block: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: clamp(28px, 5vw, 64px);
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee img { height: clamp(52px, 8vw, 76px); width: auto; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- sections ---- */
section { padding: 84px 0; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-title {
  font-size: clamp(1.35rem, 3.8vw, 1.8rem);
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.7;
}
.section-sub { font-size: .85rem; color: var(--brown-light); margin-top: 8px; }

/* ジグザグ(画像+コピー) */
.split {
  display: grid;
  gap: 30px;
  align-items: center;
  margin-bottom: 72px;
}
.split:last-child { margin-bottom: 0; }
.split .visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.split .num {
  font-family: "Shippori Mincho", serif;
  font-size: 2.2rem;
  color: var(--pink-light);
  -webkit-text-stroke: 1px var(--pink);
  line-height: 1;
}
.split h3 {
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  letter-spacing: .1em;
  line-height: 1.7;
  margin: 12px 0 14px;
}
.split p { font-size: .88rem; color: var(--brown-light); }
.split .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.split .tags span {
  font-size: .74rem;
  background: var(--pink-light);
  color: var(--pink-dark);
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; gap: 56px; }
  .split.reverse .visual { order: 2; }
}

/* ---- スクショギャラリー ---- */
.gallery-section {
  background:
    radial-gradient(50% 60% at 90% 6%, #FFE3EB 0%, transparent 55%),
    radial-gradient(46% 56% at 6% 94%, #E3F2FC 0%, transparent 55%),
    var(--cream);
  overflow: hidden;
}
.gallery {
  display: flex;
  gap: clamp(16px, 3vw, 28px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px calc((100vw - min(1080px, 92vw)) / 2) 26px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery::-webkit-scrollbar { display: none; }
.gallery figure {
  flex: 0 0 auto;
  width: clamp(180px, 42vw, 230px);
  scroll-snap-align: center;
  text-align: center;
}
.gallery .phone { padding: 8px; border-radius: 30px; }
.gallery .phone img { border-radius: 22px; }
.gallery figure:nth-child(odd) .phone { transform: rotate(-1.5deg); }
.gallery figure:nth-child(even) .phone { transform: rotate(1.5deg); }
.gallery figcaption {
  margin-top: 14px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--brown);
}
.gallery-hint {
  text-align: center;
  font-size: .74rem;
  color: var(--brown-light);
  letter-spacing: .2em;
}

/* ミニ機能 */
.minis {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 860px) { .minis { grid-template-columns: repeat(4, 1fr); } }
.mini {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 22px 18px;
  text-align: center;
}
.mini .mini-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--pink-light);
  color: var(--pink-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini .mini-icon .icon { width: 22px; height: 22px; }
.mini h4 { font-size: .88rem; margin: 8px 0 4px; letter-spacing: .08em; }
.mini p { font-size: .74rem; color: var(--brown-light); }

/* plans */
.plans-section { background: #fff; }
.plans {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  max-width: 780px;
  margin: 0 auto;
}
@media (min-width: 720px) { .plans { grid-template-columns: 1fr 1fr; } }
.plan {
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1.5px solid var(--border);
  background: var(--cream);
}
.plan.premium {
  background: linear-gradient(160deg, #FFD9E3, #FFF3F6);
  border: 2px solid var(--pink);
  box-shadow: 0 14px 32px rgba(232,115,143,.24);
}
.plan h3 { font-size: 1.05rem; letter-spacing: .1em; }
.plan .price { font-size: 1.5rem; font-weight: 700; color: var(--pink-dark); margin: 6px 0 14px; }
.plan .price small { display: block; margin-top: 2px; font-size: .74rem; color: var(--brown-light); font-weight: 500; }
.plan ul { list-style: none; }
.plan li { font-size: .85rem; padding: 5px 0 5px 26px; position: relative; }
.plan li::before { content: "✓"; position: absolute; left: 4px; color: var(--pink-dark); font-weight: 700; }
.plan li.no { color: #C6B6AC; }
.plan li.no::before { content: "−"; color: #D5C8BF; }

/* 無料/プレミアム くらべっこ表 */
.compare-wrap {
  max-width: 780px;
  margin: 34px auto 0;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  overflow-x: auto;
}
.compare {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
  font-size: .84rem;
}
.compare th, .compare td { padding: 11px 14px; }
.compare thead th {
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--brown-light);
  background: #fff;
  border-bottom: 1.5px solid var(--border);
}
.compare thead th.prem {
  color: var(--pink-dark);
  background: var(--pink-light);
}
.compare tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--brown);
}
.compare tbody td { text-align: center; color: var(--brown-light); width: 110px; }
.compare tbody td.prem {
  background: rgba(255, 217, 227, .38);
  color: var(--pink-dark);
  font-weight: 700;
}
.compare tbody td.no { color: #D5C8BF; }
.compare tbody tr + tr th, .compare tbody tr + tr td { border-top: 1px solid var(--border); }
.compare .cell-note { display: block; font-size: .68rem; font-weight: 500; }
.plans-note {
  max-width: 780px;
  margin: 16px auto 0;
  font-size: .8rem;
  color: var(--brown-light);
  text-align: center;
}

/* CTAバンド */
.cta-band {
  background:
    radial-gradient(60% 90% at 14% 10%, rgba(255,255,255,.35) 0%, transparent 60%),
    linear-gradient(120deg, var(--pink) 0%, #F09AA9 55%, var(--coral) 100%);
  color: #fff;
  text-align: center;
  padding: 76px 0;
}
.cta-band h2 {
  font-size: clamp(1.3rem, 4vw, 1.9rem);
  letter-spacing: .14em;
  line-height: 1.8;
}
.cta-band p { font-size: .88rem; opacity: .92; margin-top: 10px; }
.cta-band .badges { justify-content: center; }
.cta-band .badge.primary { background: #fff; color: var(--pink-dark); }
.cta-band .badge.secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }

/* footer */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 36px 0 44px;
  text-align: center;
}
.footer-links { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }
.footer-links a { font-size: .8rem; color: var(--brown-light); text-decoration: none; }
.footer-links a:hover { color: var(--pink-dark); }
.copyright { font-size: .72rem; color: #C6B6AC; }

/* ---- document pages (terms / privacy) ---- */
.doc {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(22px, 5vw, 48px);
  margin: 40px auto 64px;
  max-width: 820px;
}
.doc h1 { font-size: 1.35rem; letter-spacing: .1em; margin-bottom: 6px; }
.doc .updated { font-size: .75rem; color: var(--brown-light); margin-bottom: 26px; }
.doc h2 { font-size: 1rem; margin: 28px 0 8px; letter-spacing: .06em; }
.doc p, .doc li { font-size: .86rem; color: #7A6357; }
.doc ol, .doc ul { padding-left: 1.4em; }
.doc li { margin: 4px 0; }

/* アニメーション低減設定への配慮 */
@media (prefers-reduced-motion: reduce) {
  .marquee-track, .hero-visual .float { animation: none; }
}
