@charset "UTF-8";

:root {
  --bg:           #ffffff;
  --bg-gray:      #fff4f6;
  --line:         #F676A6;
  --line-strong:  #cccccc;
  --text:         #333333;
  --text-mute:    #555555;
  --text-dim:     #888888;
  --pink:         #F676A6;
  --pink-hover:   #e05f8f;
  --pink-soft:    #fdf0f5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { 
  scroll-behavior: smooth; 
  font-size: 62.5%; 
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
@media (min-width: 641px) {
  .mb-20 { padding: 10px 10px 10px 180px; }
}

.mb-30 { margin-bottom: 30px; }
@media (min-width: 641px) {
  .mb-30 { padding: 10px 10px 10px 150px; }
}
.text-red { color: var(--pink); }

.em {
  color: var(--pink);
  font-weight: 700;
}

@media (max-width: 640px) {
  .pc_only { display: none !important; }
}
@media (min-width: 641px) {
  .sp_only { display: none !important; }
}

/* ============ TOP BAR ============ */
.topbar {
  background: var(--bg);
  border-bottom: 2px solid var(--pink); 
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 60px;
  display: flex;
  align-items: center;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-logo {
  display: flex;
  align-items: center;
  height: 22px; 
}
.header-logo img {
  height: 165%;
  width: auto;
  display: block;
}

/* ============ HERO ============ */
.hero {
  width: 100%;
}
.hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============ SECTIONS ============ */
.section-block {
  padding: 80px 24px;
}
.bg-gray {
  background-color: var(--bg-gray);
}
.container-narrow {
  max-width: 960px; 
  margin: 0 auto;
  width: 100%;
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}
.section-title {
  display: inline-block;
  font-family: 'Noto Serif JP', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text);
  border-bottom: 2px solid var(--pink);
  padding-bottom: 8px;
}

/* ============ INTRO ============ */
.intro-section {
  padding: 80px 24px 60px;
  overflow: hidden;
}

.main-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.4;
  position: relative;
  padding-bottom: 20px; 
}

.main-title::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 670px;
  height: 5px;
  background-color: var(--pink);
  border-radius: 3px;
}

.intro-text {
  font-size: 1.6rem;
  line-height: 2.0;
  text-align: left; 
}

@media (max-width: 640px) {
  .main-title {
    font-size: 2.4rem;
    margin-bottom: 30px;
    padding-bottom: 16px;
  }
  .main-title::after {
    width: 90%;
  }
  .intro-text p {
    margin-bottom: 1em;
  }
}

/* ============ TIMELINE ============ */
.img-schedule-title {
  background-color: #fcece3; 
  padding: 10px 15px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 24px;
}
.img-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 50px;
}
.is-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.is-date {
  font-weight: 700;
  font-size: 1.6rem;
  white-space: nowrap;
  min-width: 280px;
}
.is-content strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.is-content p {
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 640px) {
  .img-schedule-title {
    font-size: 1.6rem;
    text-align: center;
    padding: 12px 10px;
  }
  .img-schedule-list {
    gap: 28px;

  }
  .is-row { 
    flex-direction: column; 
    align-items: flex-start; 
    text-align: left; 
    gap: 8px; 
  }
  .is-date { 
    min-width: auto; 
    color: var(--pink);
    font-size: 1.7rem;
  }
  .is-content p {
    text-align: left; 
  }
}

.v-timeline-wrapper {
  width: 100%;
  overflow-x: auto; 
  padding-bottom: 10px;
}
.v-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  min-width: 800px; 
}

.vt-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vt-card {
  background: #ffffff;
  border: 1px solid #cccccc;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1); 
  padding: 15px;
  text-align: left; 
  width: 100%;
  flex-grow: 1; 
}
.vt-card strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 12px;
  line-height: 1.4;
  text-align: center; 
}
.vt-card p {
  font-size: 1.25rem;
  line-height: 1.5;
  margin: 0;
}

.vt-arrow-wrap {
  height: 25px;
  display: flex;
  align-items: flex-end;
}
.vt-arrow {
  width: 2px;
  height: 20px;
  background-color: #e46c14; 
  position: relative;
}
.vt-arrow::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -4px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 6px solid #e46c14;
}

.vt-dot-wrap {
  position: relative;
  width: 100%;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.vt-line-segment {
  position: absolute;
  left: 0;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  background-color: #e46c14;
  z-index: 1;
}

.vt-step:last-child .vt-line-segment {
  right: 0;
}
.vt-dot {
  position: relative;
  z-index: 2;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #f5a623;
  border: 4px solid #e46c14;
}

.vt-label {
  margin-top: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  width: 100%;
  text-align: left;
  padding-left: 10px;
}

@media (max-width: 640px) {
  .v-timeline-wrapper {
    overflow-x: hidden;
    padding-bottom: 0;
  }
  .v-timeline {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 0;
  }
  .vt-step {
    flex-direction: row-reverse;
    align-items: stretch;
    padding-bottom: 20px;
    position: relative;
  }
  .vt-card {
    text-align: left; 
    flex: 1;
  }
  .vt-arrow-wrap {
    width: 20px;
    height: auto;
    align-items: flex-start;
    padding-top: 34px;
  }
  .vt-arrow {
    width: 20px;
    height: 2px;
  }
  .vt-arrow::before {
    top: -4px;
    left: auto;
    right: -4px;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    border-left: 6px solid #e46c14;
    border-right: none;
  }
  .vt-dot-wrap {
    position: static;
    width: 40px;
    height: auto;
    align-items: flex-start;
    padding-top: 25px;
  }
  .vt-line-segment {
    width: 6px;
    height: 100%;
    top: 0;
    left: 20px;
    right: auto;
    transform: translateX(-50%);
  }
  .vt-step:last-child .vt-line-segment {
    height: 35px;
    right: auto;
  }
}

/* ============ NOTICE BOX ============ */
.notice-box {
  background: var(--pink-soft);
  border: 1px solid rgba(230,0,51,0.2);
  border-radius: 8px;
  padding: 24px 28px;
}
.notice-box ul {
  list-style: none;
}
.notice-box li {
  font-size: 1.4rem;
  line-height: 1.8;
  padding-left: 1.2em;
  text-indent: -1.2em;
  margin-bottom: 12px;
}
.notice-box li::before {
  content: '・';
  color: var(--pink);
}
.notice-sub-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.notice-image-block {
  margin-top: 50px;
}
.img-placeholder img {
  border: 1px solid var(--line-strong); 
  border-radius: 4px;
}

/* ============ CARDS ============ */
.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.info-card {
  background: var(--bg);
  border: 1px solid var(--line);

  padding: 30px 24px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.info-card.border-red {
  border-top: 3px solid var(--pink);
}
.card-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.card-desc {
  font-size: 1.4rem;
  color: var(--text-mute);
  text-align: left;
  flex-grow: 1;
}
.info-card .btn {
  width: 100%;
  max-width: 280px; 
  min-height: 72px; 
  padding: 10px 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .card-grid { grid-template-columns: 1fr; }
}

/* ============ PRICING TABLE ============ */
.table-wrap {
  overflow-x: auto;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  font-size: 1.4rem;
  background: var(--bg);
  border: 1px solid #cccccc; 
}
.pricing-table th, .pricing-table td {
  border: 1px solid #e2e2e2; 
  padding: 12px;
  text-align: center;
}
.pricing-table th {
  background: var(--bg-gray);
  font-weight: 700;
}
.pricing-table .price-cc {
  color: var(--pink);
  font-weight: 700;
  background: var(--pink-soft);
}
.pricing-table .bg-app {
  background: #f0f0f0;
  color: var(--text-mute);
}
.note-text {
  font-size: 1.2rem;
  color: var(--text-dim);
  margin-top: 8px;
}

.example-box {
  background: var(--bg);
  border: 2px solid var(--line-strong);
  padding: 24px;
  border-radius: 8px;
}
.example-box h4 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.example-box p {
  font-size: 1.4rem;
  line-height: 1.8;
}

/* ============ PRICING COMPARE TABLE ============ */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 20px;
  padding-bottom: 15px;
}

.pricing-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  margin: 0 auto;
  font-size: 1.4rem;
  background: var(--bg);
}

.pricing-compare-table th, 
.pricing-compare-table td {
  border: 1px solid #cccccc;
  padding: 10px 8px;
  text-align: center;
  vertical-align: middle;
}

.pricing-compare-table th.spacer-col,
.pricing-compare-table td.spacer-col {
  border: none !important;
  background: transparent !important;
  width: 40px;
  min-width: 40px;
  padding: 0;
}

.arrow-cell {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--pink);
}

.bg-app-main {
  background-color: #777777 !important;
  color: #ffffff;
}

.bg-app-sub {
  background-color: #f0f0f0 !important;
  color: #333333;
}

.bg-browser-main {
  background-color: var(--pink) !important;
  color: #ffffff;
}

.bg-browser-sub {
  background-color: var(--pink-soft) !important;
  color: var(--text);
}

.pricing-compare-table .price-cc {
  font-weight: 700;
  color: var(--pink);
  background: var(--pink-soft);
}

/* ============ EXAMPLE FEE TABLE ============ */
.example-fee-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
  font-size: 1.4rem;
  background: var(--bg);
  border: 1px solid #cccccc; 
}
.example-fee-table th, .example-fee-table td {
  border: 1px solid #e2e2e2; 
  padding: 12px;
  text-align: center;
  vertical-align: middle;
}
.example-fee-table thead th {
  background: var(--bg-gray); 
  font-weight: 700;
}
.example-fee-table tbody th {
  background: #f5f5f5; 
  font-weight: 700;
}
.example-fee-table tbody td {
  font-weight: 700;
}

@media (max-width: 640px) {
  .example-fee-table {
    min-width: 100%;
    font-size: 1.2rem;
  }
  .example-fee-table th, 
  .example-fee-table td {
    padding: 8px 2px;
  }
  .example-fee-table tbody th {
    font-size: 1.1rem;
    width: 80px;
    line-height: 1.3;
  }
}

/* ▼ スマホ用 縦積み比較レイアウト ▼ */
@media (max-width: 640px) {
  .sp-pricing-container {
    width: 100%;
  }
  .sp-box-head {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    padding: 10px;
  }
  .sp-pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.15rem; 
    background: var(--bg);
    table-layout: fixed; 
  }
  .sp-pricing-table th, 
  .sp-pricing-table td {
    border: 1px solid #cccccc;
    padding: 8px 2px; 
    text-align: center;
    vertical-align: middle;
    word-wrap: break-word; 
  }
  .sp-pricing-table .price-cc {
    font-weight: 700;
    color: var(--pink);
    background: var(--pink-soft);
  }
  .sp-arrow-box {
    text-align: center;
    padding: 15px 0;
  }
  .sp-arrow-box .arrow-cell {
    display: inline-block;
    font-size: 3.2rem;
    line-height: 1;
  }
}

/* ============ FAQ (ACCORDION) ============ */
details.notice-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}
details.notice-card[open] { border-color: var(--pink); }
details.notice-card summary {
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
details.notice-card summary::-webkit-details-marker { display: none; }
details.notice-card summary::after {
  content: '＋';
  color: var(--pink);
  font-size: 1.8rem;
}
details.notice-card[open] summary::after { content: '−'; }
details.notice-card .notice-body {
  padding: 0 20px 20px;
  font-size: 1.4rem;
  color: var(--text-mute);
  border-top: 1px dashed var(--line);
  margin-top: 10px;
  padding-top: 16px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 40px;
  transition: all 0.3s;
  text-align: center;
}
.btn-primary {
  background: var(--pink);
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--pink-hover);
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid var(--pink);
  color: var(--pink);
  background: var(--bg);
}
.btn-outline:hover {
  background: var(--pink);
  color: #ffffff;
}

/* ============ FOOTER ============ */
footer {
  background: #f1f1f1;
  padding: 40px 24px;
  text-align: center; /* ← ★これを追加してください！ */
  border-top: 2px solid var(--pink);
}
.footer-msg {
  font-size: 1.4rem;
  margin-bottom: 30px;
  font-weight: 700;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.footer-links a {
  font-size: 1.2rem;
  color: var(--text-mute);
  text-decoration: underline;
}
.footer-links a:hover {
  color: var(--pink);
}
.footer-copy {
  font-size: 1.2rem;
  color: var(--text-dim);
}

/* ============ ANIMATION ============ */
.fade-in {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}