/* =============================================
   style-sp.css — Mobile styles (max-width: 767px)
   フォントサイズ最小14px基準（旧11px → 14px、倍率×1.27）
   ============================================= */

@media (max-width: 767px) {
.br_pc { display: none; }   /* PCの改行をSPで消す */
.br_sp { display: block; }  /* SPでは改行する */
  /* ---- Hamburger Button ---- */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
    flex-shrink: 0;
  }

  .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #1c2248;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
  }

  /* ✕ 形に変形 */
  .hamburger.is-open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .hamburger.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ---- Overlay ---- */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 98;
  }

  .nav-overlay.is-visible {
    display: block;
  }

  /* ---- Mobile Nav Drawer ---- */
  .header-nav {
    display: block;
    position: fixed;
    top: 0;
    right: -280px;
    width: 260px;
    height: 100%;
    background-color: #1c2248;
    z-index: 99;
    padding: 80px 24px 40px;
    transition: right 0.35s ease;
  }

  .header-nav.is-open {
    right: 0;
  }

  .header-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .header-nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header-nav ul li a {
    display: block;
    padding: 18px 0;
    font-size: 18px; /* 旧15px → 19px */
    font-weight: 500;
    color: #ffffff;
  }

  /* SP用メニュー内CTAボタン */
.nav-cta-sp {
  display: block !important; /* PC側のdisplay:noneを上書き */
  border-bottom: none !important;
  padding-top: 24px;
}

  .nav-cta-sp a {
    background-color: #C96AA6;
    color: #ffffff !important;
    border-radius: 50px;
    text-align: center;
    padding: 14px 16px !important;
    font-size: 16px !important; /* 旧13px → 17px */
    display: block;
  }

  /* ---- Header ---- */
  .header-inner {
    padding: 10px 16px;
    gap: 12px;
  }

  .header-logo img {
    height: 28px;
  }

  /* PC用CTAボタンはスマホで非表示 */
  .header-cta-btn {
    display: none;
  }

  /* ---- Base ---- */
  body {
    font-size: 18px; /* 旧14px → 18px */
  }

  .section-inner {
    padding: 0 20px;
  }

  .btn-primary {
    font-size: 17px; /* 旧14px → 18px */
    padding: 15px 28px;
    width: 100%;
    display: block;
    text-align: center;
	  line-height: 25px;
  }

  /* ---- Hero ---- */
  .hero {
    padding: 100px 0 60px;
    text-align: center;
  }

  .hero-inner {
    padding: 0 20px;
  }

  .hero-sub {
    font-size: 15px; /* 旧12px → 15px */
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: 26px; /* 旧26px → 33px */
    margin-bottom: 22px;
    line-height: 1.6;
  }

  .hero-sns-icons {
    gap: 12px;
    margin-bottom: 22px;
  }

  .hero-sns-icons img {
    width: 32px;
    height: 32px;
  }

  .hero-body {
    font-size: 17px; /* 旧13px → 17px */
    margin-bottom: 18px;
  }

  .hero-price {
    font-size: 17px; /* 旧13px → 17px */
    margin-bottom: 26px;
    padding: 10px 0;
    border-bottom: solid 1px #ffffff;
    border-top: solid 1px #ffffff;
  }

  /* ---- Problem ---- */
  .problem {
    padding: 60px 0;
  }

  .problem-title {
    font-size: 25px; /* 旧20px → 25px */
    margin-bottom: 12px;
  }

  .problem-sub {
    font-size: 17px; /* 旧13px → 17px */
    margin-bottom: 34px;
  }

  .problem-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 14px;
    margin-bottom: 50px;
  }

  .problem-card {
    padding: 22px 14px 20px;
    font-size: 17px; /* 旧13px → 17px */
    border-radius: 14px;
  }

  /* SP吹き出し三角 */
  .problem-card::after {
    bottom: -17px;
    border-width: 17px 13px 0 13px;
  }

  .problem-card::before {
    bottom: -20px;
    border-width: 20px 15px 0 15px;
  }

  .problem-card-icon img {
    width: 44px;
    height: 44px;
  }

  .problem-solution {
    font-size: 31px; /* 旧24px → 31px */
    margin-top: 32px;
  }

  /* ---- About ---- */
  .about {
    padding: 0;
  }

  .about .section-inner {
    padding: 0;
  }

  .about-inner {
    grid-template-columns: 1fr; /* SP: 縦1カラム */
    min-height: auto;
  }

  .about-image {
    height: 260px;
  }

  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-text {
    padding: 40px 20px;
    max-width: 100%;
  }

  .about-title {
    font-size: 28px;
    margin-bottom: 22px;
  }

  .about-text p {
    font-size: 17px;
  }
  /* ---- Reasons ---- */
  .reasons {
    padding: 60px 0;
  }

  .reasons-title {
    font-size: 28px; /* 旧22px → 28px */
    margin-bottom: 34px;
  }

.reasons-grid {
  grid-template-columns: 1fr;
  gap: 36px;
  padding-top: 24px;
}

.reasons-grid .reason-card:nth-child(1),
.reasons-grid .reason-card:nth-child(2),
.reasons-grid .reason-card:nth-child(3),
.reasons-grid .reason-card:nth-child(4),
.reasons-grid .reason-card:nth-child(5) {
  grid-column: 1 / -1;
}

  .reason-card {
    padding: 26px 20px 26px;
  }

  .reason-icon {
    width: 44px;
    height: 44px;
    top: -18px;
    left: 20px;
  }

  .reason-icon img {
    width: 24px;
    height: 24px;
  }

  .reason-num {
    font-size: 46px;
    margin-top: 12px;
  }

  .reason-card h3 {
    font-size: 19px;
  }

  .reason-card p {
    font-size: 17px;
  }

  /* ---- Plan ---- */
  .plan {
    padding: 60px 0;
  }

  .plan-title {
    font-size: 28px; /* 旧22px → 28px */
    margin-bottom: 30px;
  }

  .plan-table {
    font-size: 15px; /* 旧12px → 15px */
    min-width: 620px;
  }

  .plan-th-empty {
    width: 140px;
  }

  .plan-th {
    padding: 14px 10px;
    font-size: 17px; /* 旧13px → 17px */
  }

  .plan-label {
    padding: 14px 12px;
    font-size: 15px; /* 旧12px → 15px */
  }

  .plan-label-sub {
    font-size: 14px; /* 旧11px → 14px (最小) */
  }

  .plan-cell {
    padding: 14px 8px;
  }

  .plan-note {
    font-size: 14px; /* 旧11px → 14px (最小) */
  }

  .plan-discount-note {
    font-size: 14px; /* 旧11px → 14px (最小) */
  }

  .price-unit {
    font-size: 14px; /* 旧11px → 14px (最小) */
  }

  .price-big {
    font-size: 28px; /* 旧22px → 28px */
  }

  .plan-note-bottom {
    font-size: 14px; /* 旧11px → 14px (最小) */
  }

  /* ---- FAQ ---- */
  .faq {
    padding: 60px 0;
  }

  .faq-title {
    font-size: 28px; /* 旧22px → 28px */
    margin-bottom: 30px;
  }

.faq-question {
  font-size: 18px;
  padding: 20px 48px 20px 20px; /* 右側に▼の分の余白 */
  display: block;               /* flexをやめてblockに */
  position: relative;
}

.faq-question-text {
  display: block;
  text-indent: -2em;
  padding-left: 2em;
}

.faq-arrow {
  font-size: 15px;
  position: absolute; /* 右上に固定 */
  top: 22px;
  right: 16px;
}
  .faq-answer {
    font-size: 17px; /* 旧14px → 18px */
  }

  /* ---- CTA Bottom ---- */
  .cta-bottom {
    padding: 60px 0;
  }

  .cta-bottom-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .cta-bottom-title {
    font-size: 25px; /* 旧20px → 25px */
    margin-bottom: 18px;
  }

  .cta-bottom-text p {
    font-size: 15px; /* 旧13px → 17px */
  }

  .cta-bottom-image {
    order: -1;
  }

  .cta-bottom-image img {
    width: 200px;
    margin: 0 auto;
  }

  /* ---- Footer ---- */
  .footer {
    padding: 38px 0;
  }

  .footer-logo img {
    height: 80px;
  }

  .footer-address {
    font-size: 15px; /* 旧12px → 15px */
  }

  .footer-nav a {
    font-size: 15px; /* 旧12px → 15px */
  }

  .footer-copy {
    font-size: 14px; /* 旧11px → 14px (最小) */
  }

  .footer-nav {
    flex-direction: column;
    gap: 5px;
  }

  .section-label,
  .section-label-light {
    font-size: 15px; /* 旧12px → 15px */
  }

}
