@charset "UTF-8";
/* ============================================
  つなぐ愛モール トップページ
============================================ */

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; vertical-align: bottom; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
table { border-collapse: collapse; }
em { font-style: normal; }

:root {
  --yellow: #ffe341;
  --coral: #ec6d56;
  --blue: #5fb8e9;
  --red: #e33b25;
  --text: #333;
}

/* ---- utility ---- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.u-red { color: var(--red); font-weight: 700; }
.u-coral { color: var(--coral); font-weight: 700; }
.u-sp-only { display: none; }
.u-pc-only { display: inline; }
.u-visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); border: 0;
}

/* ---- heading ---- */
.heading {
  font-size: 40px;
  font-weight: 900;
  text-align: center;
  line-height: 1.4;
  letter-spacing: .04em;
}
.heading::after {
  content: "";
  display: block;
  width: 61px;
  height: 5px;
  margin: 20px auto 0;
  background: linear-gradient(to right, var(--coral) 0 30px, transparent 30px 31px, var(--blue) 31px 61px);
}
.heading-sub {
  font-size: 30px;
  font-weight: 900;
  text-align: center;
  letter-spacing: .04em;
}
.lead {
  margin-top: 28px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  line-height: 2;
}

/* ---- button ---- */
.btn-wrap { text-align: center; margin-top: 56px; }
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 484px;
  min-height: 88px;
  padding: 10px 70px 10px 50px;
  background: var(--coral);
  border-radius: 10px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  transition: opacity .3s, transform .3s;
}
.btn::after {
  content: "";
  position: absolute;
  right: 36px;
  top: 50%;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
}
.btn::before {
  content: "";
  position: absolute;
  right: 46px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left: 8px solid var(--coral);
  border-right: 0;
  z-index: 1;
}
.btn:hover { opacity: .85; transform: translateY(-2px); }

/* ============================================
  header
============================================ */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  padding: 22px 30px 0;
}
.gnav__list {
  display: flex;
  align-items: center;
  gap: 34px;
}
.gnav__item { position: relative; }
.gnav__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
}
.gnav__link:hover { opacity: .7; }
.gnav__icon img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}
/* メガナビ */
.mega {
  position: absolute;
  top: calc(100% + 14px);
  left: -30px;
  display: none;
  padding: 26px 34px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
  white-space: nowrap;
}
.mega::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 60px;
  border: 8px solid transparent;
  border-bottom: 10px solid #fff;
  border-top: 0;
}
/* リンクとパネルの隙間でhoverが切れないよう透明ブリッジで埋める */
.mega::after {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.has-mega:hover .mega,
.has-mega.is-open .mega { display: block; }
.mega__list { display: flex; gap: 40px; }
.mega__list a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
}
.mega__list a::before {
  content: "";
  border: 5px solid transparent;
  border-left: 7px solid var(--coral);
  border-right: 0;
}
.mega__list a:hover { color: var(--coral); }

.header__merchant-btn {
  display: inline-block;
  padding: 13px 30px;
  background: var(--blue);
  border-radius: 27px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  transition: opacity .3s;
}
.header__merchant-btn:hover { opacity: .8; }

/* ============================================
  hamburger / drawer (SP)
============================================ */
.hamburger { display: none; }
.drawer { display: none; }
.drawer-overlay { display: none; }

/* ============================================
  固定サイドボタン (PC)
============================================ */
.side-contact {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: grid;
  grid-template-rows: auto 1fr 1fr; /* ボタン2つを同じ高さに揃える */
  justify-items: center;
  gap: 12px;
  width: 78px;
  padding: 20px 8px 14px;
  background: var(--coral);
  border-radius: 20px 0 0 20px;
}
.side-contact__label {
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .18em;
  padding-bottom: 8px;
}
.side-contact__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 62px;
  background: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 18px 0;
  border-radius: 14px;
  transition: opacity .3s;
}
.side-contact__btn span {
  writing-mode: vertical-rl;
  letter-spacing: .12em;
}
.side-contact__btn:hover { opacity: .85; }
.side-contact__btn img { width: 24px; height: auto; }

/* ============================================
  固定キャンペーンバナー
============================================ */
.fixed-banner {
  position: fixed;
  right: 10px;
  bottom: 16px;
  z-index: 89;
  width: 320px;
}
.fixed-banner a { display: block; transition: opacity .3s; }
.fixed-banner a:hover { opacity: .85; }
.fixed-banner__close {
  position: absolute;
  top: 5px;
  right: 3px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

/* ============================================
  MV
============================================ */
.mv {
  background: var(--yellow);
  padding-top: 105px;
}
.mv__img { width: 100%; }

/* ============================================
  CTAバナー
============================================ */
.sec-mv-cta { padding: 56px 0 90px; }
.cta {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 26px;
}
.cta__item {
  display: flex;
  flex-direction: column;
  width: 484px;
  max-width: 100%;
}
.cta__label {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
.cta__label::before { content: "＼ "; }
.cta__label::after { content: " ／"; }
.cta__label--blue { color: var(--blue); }
.cta__label--coral { color: var(--coral); }
.cta__banner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 20px 20px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
  transition: opacity .3s, transform .3s, box-shadow .3s;
}
.cta__banner:hover {
  opacity: .85;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .25);
}
.cta__banner--blue { background: var(--blue); }
.cta__banner--coral { background: var(--coral); }
.cta__line1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.cta__tag {
  padding: 1px 12px;
  background: #fff;
  border-radius: 4px;
  font-size: 17px;
}
.cta__banner--blue .cta__tag { color: var(--blue); }
.cta__banner--coral .cta__tag { color: var(--coral); }
.cta__line1 em {
  font-size: 36px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1.2;
}
.cta__line1 em small { font-size: 22px; }
.cta__line2 {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
  margin-top: 2px;
}

/* ============================================
  つなぐ愛モールとは？
============================================ */
.sec-about { padding-bottom: 120px; }
.feature {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 60px;
}
.feature__item { width: 335px; text-align: center; }
.feature__title {
  margin-top: 18px;
  font-size: 22px;
  font-weight: 700;
}
.feature__title span {
  background: linear-gradient(transparent 62%, var(--yellow) 62%);
  padding: 0 4px;
}
.feature__text { margin-top: 6px; font-size: 16px; }
.carousel-dots { display: none; }

.point-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 70px;
  padding: 20px 0;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
  text-align: center;
}
.point-band__text { font-size: 24px; font-weight: 700; }
.point-band__em {
  display: inline-block;
  font-weight: 900;
  margin: 0 6px;
  padding: 0 14px;
  background: var(--yellow);
  border-radius: 8px;
}
.point-band__coins {
  width: 90px;
  flex-shrink: 0;
  margin-top: -50px;
}
.point-band__note {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
}

/* ============================================
  Aidポイントの貯め方
============================================ */
.sec-save {
  position: relative;
  z-index: 0;
  margin-top: 190px;
  padding-bottom: 60px;
  background: var(--yellow);
}
.sec-save::before,
.sec-save::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 340px;
  background: var(--yellow);
  z-index: -1;
}
.sec-save::before {
  top: -160px;
  clip-path: ellipse(75% 630px at 50% 630px);
}
.sec-save::after {
  bottom: -160px;
  clip-path: ellipse(75% 630px at 50% calc(100% - 630px));
}
.sec-save .heading { position: relative; top: -30px; }

.sec-save__illust {
  text-align: center;
  margin-top: 50px;
}
.sec-save__illust img { width: 1000px; }

.save-block { margin-top: 90px; }
.save-block .heading-sub { margin-bottom: 36px; }
.table-wrap { position: relative; }
.table {
  width: 100%;
  background: #fff;
  border-collapse: separate;
  border-spacing: 0;
  border: 2px solid #333;
  border-radius: 10px;
  overflow: hidden;
}
.table th, .table td {
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  padding: 20px 24px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
}
.table th:last-child, .table td:last-child { border-right: none; }
.table tbody tr:last-child td { border-bottom: none; }
.table th { font-weight: 700; }
.table td:first-child, .table th:first-child { width: 49%; }
.table--orange thead th { background: #ffd9af; }
.table--blue thead th { background: #bfe5fa; }
.badge {
  position: absolute;
  top: -46px;
  right: -34px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  background: var(--coral);
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  transform: rotate(14deg);
}
.save-block__note {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.9;
}

/* ============================================
  どんなところで使えるの？
============================================ */
.sec-place { position: relative; padding: 250px 0 120px; }
.sec-place__deco {
  position: absolute;
  top: 240px;
  width: clamp(220px, 23vw, 392px);
}
.sec-place__deco--l { left: max(calc(50% - 810px), 0px); }
.sec-place__deco--r { right: max(calc(50% - 810px), 0px); }

.place-cards {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  text-align: center;
}
.place-cards img { width: 100%; }
.sec-place__text {
  margin-top: 48px;
  font-size: 18px;
  line-height: 2;
}

/* ============================================
  JTB
============================================ */
.sec-jtb {
  position: relative;
  z-index: 0;
  margin-top: 180px;
  background: var(--yellow);
}
.sec-jtb::before {
  content: "";
  position: absolute;
  top: -160px;
  left: 0;
  right: 0;
  height: 340px;
  background: var(--yellow);
  clip-path: ellipse(75% 630px at 50% 630px);
  z-index: -1;
}
.sec-jtb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -160px;
  height: 340px;
  background: var(--yellow);
  clip-path: ellipse(75% 630px at 50% calc(100% - 630px));
  z-index: -1;
}
.sec-jtb__more {
  position: absolute;
  top: -208px;
  left: 50%;
  transform: translateX(-50%);
  width: 170px;
  height: 170px;
  padding-top: 50px;
  background: var(--yellow);
  border-radius: 50%;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  z-index: -1;
}
.sec-jtb__more span {
  display: inline-block;
  transform: rotate(-10deg);
}
.sec-jtb__title {
  font-size: 30px;
  font-weight: 900;
  text-align: center;
  letter-spacing: .04em;
}
.jtb-banner { position: relative; margin-top: 34px; }
.jtb-banner__deco {
  position: absolute;
  bottom: calc(100% - 16px);
  z-index: 3;
}
.jtb-banner__deco--l { left: 12px; width: 138px; }
.jtb-banner__deco--r { right: 8px; width: 194px; }
.jtb-banner__box {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  padding: 24px 26px;
}
.jtb-scroll__img { width: 100%; }
.jtb-scroll__bar { display: none; }
.sec-jtb__body {
  padding: 36px 0 90px;
}
.sec-jtb__note {
  font-size: 18px;
  text-align: left;
}
.heading-line {
  margin-top: 62px;
  padding: 17px 0;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-cards__item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px 36px;
  background: #fff;
  border-radius: 10px;
}
.service-cards__icon { width: 96px; }
.service-cards__title { font-size: 26px; font-weight: 700; }
.service-cards__text { margin-top: 2px; font-size: 18px; }

.member-card {
  margin-top: 26px;
  padding: 34px 30px 38px;
  background: #fff;
  border-radius: 10px;
}
.member-card__title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}
.member-card__list {
  display: flex;
  justify-content: center;
  gap: 46px;
  margin-top: 18px;
}
.member-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
}
.member-card__list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: #3eb370;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

/* ============================================
  今すぐ始める
============================================ */
.sec-start { padding: 280px 0 170px; }
.sec-start .cta { margin-top: 56px; }

/* ============================================
  footer
============================================ */
.footer {
  position: relative;
  z-index: 0;
  margin-top: 170px;
  padding: 40px 0 50px;
  background: var(--yellow);
  text-align: center;
}
.footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -160px;
  height: 340px;
  background: var(--yellow);
  clip-path: ellipse(75% 630px at 50% 630px);
  z-index: -1;
}
.footer__logo { position: relative; top: -60px; margin-bottom: -30px; }
.footer__logo img { width: 245px; }
.footer__links {
  display: flex;
  justify-content: center;
  gap: 26px;
}
.footer__links a {
  display: inline-block;
  min-width: 200px;
  padding: 12px 30px;
  background: #fff;
  border-radius: 26px;
  font-size: 16px;
  font-weight: 300;
  transition: opacity .3s;
}
.footer__links a:hover { opacity: .7; }
.footer__copyright { margin-top: 40px; font-size: 16px; font-weight: 300; }

/* ============================================
  SP
============================================ */
@media (max-width: 767px) {
  body { font-size: 15px; }
  .container { padding: 0 23px; }
  .u-sp-only { display: inline; }
  .u-pc-only { display: none; }

  .heading { font-size: 24px; }
  .heading::after {
    margin-top: 14px;
    height: 3px;
  }
  .heading-sub { font-size: 20px; }
  .lead { margin-top: 20px; font-size: 14px; line-height: 2; }

  .btn-wrap { margin-top: 32px; }
  .btn {
    min-width: 100%;
    min-height: 60px;
    padding: 8px 50px 8px 30px;
    font-size: 16px;
    border-radius: 8px;
  }
  .btn::after { width: 24px; height: 24px; right: 22px; }
  .btn::before { right: 30px; border-width: 4px; border-left-width: 7px; }

  /* header → drawer */
  .header { display: none; }
  .side-contact { display: none; }
  .fixed-banner { display: none; }

  .hamburger {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 50%;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
    transition: transform .3s;
  }
  body.is-drawer-open .hamburger span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
  body.is-drawer-open .hamburger span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

  .drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: var(--yellow);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .4s;
  }
  .drawer.is-open { transform: translateX(0); }
  .drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 12px 14px 30px;
  }
  .drawer__logo { width: 170px; }
  .drawer__close { width: 54px; height: 54px; }
  .drawer__contact {
    background: var(--coral);
    padding: 10px 20px 24px;
  }
  .drawer__contact-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
  }
  .drawer__contact-btns { display: flex; gap: 14px; }
  .drawer__contact-btn {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 10px 15px 34px;
    background: #fff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
  }
  .drawer__contact-btn img {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
  }
  .drawer__nav { padding: 20px 40px 60px; }
  .drawer__item { border-bottom: 1px solid rgba(51, 51, 51, .5); }
  .drawer__item:first-child .drawer__link { border-top: none; }
  .drawer__link {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 22px 4px;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
  }
  .drawer__icon img { width: 34px; height: 34px; border-radius: 50%; }
  .drawer__arrow {
    margin-left: auto;
    width: 10px;
    height: 10px;
    border-top: 3px solid #333;
    border-right: 3px solid #333;
    transform: rotate(45deg);
    transition: transform .3s;
  }
  .drawer__arrow--acc { transform: rotate(135deg); }
  .js-acc[aria-expanded="true"] .drawer__arrow--acc { transform: rotate(-45deg); }
  .drawer__sub {
    display: none;
    margin: 0 0 26px;
    background: #fff;
  }
  .drawer__sub.is-open { display: block; }
  .drawer__sub li + li { border-top: 1px solid #333; }
  .drawer__sub a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px 13px 28px;
    font-size: 16px;
    font-weight: 700;
  }
  .drawer__sub a::before {
    content: "";
    border: 4px solid transparent;
    border-left: 6px solid #333;
    border-right: 0;
  }
  .drawer__merchant-btn {
    display: block;
    margin: 36px auto 0;
    padding: 17px 10px;
    background: var(--blue);
    border-radius: 32px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
  }
  .drawer__policy { margin-top: 40px; }
  .drawer__policy li + li { margin-top: 14px; }
  .drawer__policy a {
    display: block;
    padding: 13px 10px;
    background: #fff;
    border-radius: 28px;
    font-size: 15px;
    text-align: center;
  }

  /* MV */
  .mv { padding-top: 0; }

  /* CTA */
  .sec-mv-cta { padding: 36px 0 60px; }
  .cta { flex-direction: column; gap: 20px; align-items: center; }
  .cta__item { width: 100%; }
  .cta__label { font-size: 15px; margin-bottom: 8px; }
  .cta__banner { padding: 12px 14px 14px; border-radius: 8px; }
  .cta__line1 { font-size: 15px; gap: 8px; }
  .cta__tag { font-size: 13px; padding: 1px 8px; }
  .cta__line1 em { font-size: 26px; }
  .cta__line1 em small { font-size: 16px; }
  .cta__line2 { font-size: 18px; }

  /* とは？ */
  .sec-about { padding-bottom: 70px; }
  .feature {
    display: flex;
    justify-content: flex-start;
    gap: 0;
    margin-top: 30px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 20vw;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .feature::-webkit-scrollbar { display: none; }
  .feature__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 60vw;
    scroll-snap-align: center;
    padding: 0 10px;
  }
  .feature__img { width: 210px; }
  .feature__title { font-size: 18px; margin-top: 12px; }
  .feature__text { font-size: 14px; }
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
  }
  .carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
  }
  .carousel-dots button.is-active { background: var(--yellow); background: #f0c400; }

  .point-band { display: block; position: relative; margin-top: 40px; padding: 16px 0; }
  .point-band__text { font-size: 16px; padding: 0 4px; }
  .point-band__em { padding: 0 8px; margin: 0 2px; }
  .point-band__coins {
    position: absolute;
    right: -15px;
    top: -35px;
    width: 58px;
    margin-top: 0;
  }
  .point-band__note { font-size: 12px; }

  /* 貯め方 */
  .sec-save { margin-top: 120px; padding-bottom: 40px; }
  .sec-save::before,
  .sec-save::after { height: 200px; }
  .sec-save::before {
    top: -50px;
    clip-path: ellipse(75% 196px at 50% 196px);
  }
  .sec-save::after {
    bottom: -50px;
    clip-path: ellipse(75% 196px at 50% calc(100% - 196px));
  }
  .sec-save .heading { top: 0; }
  .sec-save__illust { margin-top: 26px; }
  .save-block { margin-top: 56px; }
  .save-block .heading-sub { margin-bottom: 24px; }
  .table th, .table td { padding: 12px 8px; font-size: 14px; }
  .table td:first-child, .table th:first-child { width: 44%; }
  .table-wrap { margin-top: 48px; }
  .badge {
    top: -60px;
    right: -12px;
    width: 80px;
    height: 80px;
    font-size: 12px;
  }
  .save-block__note { margin-top: 16px; font-size: 15px; }

  /* どこで使える */
  .sec-place { padding: 90px 0 70px; }
  .sec-place__deco { display: none; }
  .place-cards { margin-top: 30px; }
  .place-cards { grid-template-columns: repeat(2, 1fr); gap: 16px 13px; margin-top: 30px; }
  .place-cards__item { order: var(--sp-order, 0); }
  .sec-place__text { margin-top: 28px; font-size: 15px; }

  /* JTB */
  .sec-jtb { margin-top: 90px; }
  .sec-jtb::before {
    top: -50px;
    height: 200px;
    clip-path: ellipse(75% 196px at 50% 196px);
  }
  .sec-jtb::after {
    bottom: -50px;
    height: 200px;
    clip-path: ellipse(75% 196px at 50% calc(100% - 196px));
  }
  .sec-jtb__more {
    top: -85px;
    width: 120px;
    height: 120px;
    padding-top: 32px;
    font-size: 15px;
  }
  .sec-jtb__title { font-size: 20px; line-height: 1.6; }
  .jtb-banner { margin-top: 20px; }
  .jtb-banner__deco { display: none; }
  .jtb-banner__box { border-radius: 12px; padding: 14px; }
  .jtb-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .jtb-scroll::-webkit-scrollbar { display: none; }
  .jtb-scroll__img {
    width: 760px;
    max-width: none;
  }
  .jtb-scroll__bar {
    display: block;
    width: 180px;
    height: 10px;
    padding: 1.5px;
    margin: 16px auto 0;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
  }
  .jtb-scroll__bar span {
    display: block;
    height: 100%;
    width: 30%;
    background: #ffe341;
    border-radius: 4px;
  }
  .sec-jtb__body { padding: 30px 0 60px; }
  .sec-jtb__note { font-size: 15px; text-align: left; line-height: 2; }
  .heading-line {
    font-size: 20px;
    padding: 5px 0;
  }
  .service-cards { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
  .service-cards__item { gap: 18px; padding: 18px 22px; }
  .service-cards__icon { width: 72px; }
  .service-cards__title { font-size: 18px; }
  .service-cards__text { font-size: 14px; }
  .member-card { margin-top: 24px; padding: 26px 20px; }
  .member-card__title { font-size: 16px; text-align: left; }
  .member-card__list {
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
  }
  .member-card__list li { font-size: 15px; }

  /* 今すぐ始める */
  .sec-start { padding: 130px 0 90px; }
  .sec-start .cta { margin-top: 30px; }

  /* footer */
  .footer { margin-top: 100px; padding: 10px 0 40px; }
  .footer::before {
    top: -50px;
    height: 200px;
    clip-path: ellipse(75% 196px at 50% 196px);
  }
  .footer__logo { top: -40px; margin-bottom: -14px; }
  .footer__logo img { width: 165px; }
  .footer__links { flex-direction: column; align-items: center; gap: 12px; }
  .footer__links a { min-width: 250px; padding: 11px 20px; font-size: 14px; }
  .footer__copyright { margin-top: 30px; font-size: 12px; }
}

/* PC幅で中間サイズ調整 */
@media (min-width: 768px) and (max-width: 1240px) {
  .cta__item { width: 40%; }
  .btn { min-width: 420px; }
  .sec-place__deco { width: 30%; }
  .point-band__coins { right: 12%; }
}
