:root {
  --red: #a72a2f;
  --red-dark: #8e2025;
  --navy: #151d32;
  --blue: #314d7a;
  --line: #d9d9d6;
  --paper: #fff;
  --cream: #faf8f3;
  --sans: "Noto Sans JP", sans-serif;
  --serif: "Noto Serif JP", serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}
body {
  margin: 0;
  color: var(--navy);
  font-family: var(--sans);
  background: #fff;
  line-height: 1.8;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.inner {
  width: min(1440px, calc(100% - 80px));
  margin: auto;
}
.section-pad {
  padding: 90px 0;
}
.site-header {
  height: 90px;
  padding: 10px 4.2%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  background: rgba(255, 255, 255, 0.96);
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(15, 28, 52, 0.07);
  backdrop-filter: blur(10px);
}
.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}
.brand span,
.footer-brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand small,
.footer-brand small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.brand strong {
  font-size: 26px;
  letter-spacing: 0.02em;
}
.global-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 14px;
  font-weight: 600;
}
.global-nav > a:not(.nav-cta) {
  position: relative;
}
.global-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: 0.3s;
}
.global-nav > a:hover::after {
  width: 100%;
}
.nav-cta,
.main-cta {
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(135, 25, 31, 0.15);
  transition: 0.25s;
}
.nav-cta {
  padding: 13px 27px;
}
.nav-cta:hover,
.main-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}
.menu-button {
  display: none;
  border: 0;
  background: none;
  width: 46px;
  height: 46px;
  padding: 10px;
}
.menu-button span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
  transition: 0.3s;
}
.hero {
  min-height: calc(100vh - 90px);
  height: 820px;
  position: relative;
  overflow: hidden;
  background: #f8f7f3;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.9) 30%,
    rgba(255, 255, 255, 0.12) 59%,
    rgba(255, 255, 255, 0) 100%
  );
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 72px 0 30px 6.5%;
  width: 58%;
  font-family: var(--serif);
}
.year {
  font: 600 25px/1 var(--sans);
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}
h1 {
  margin: 0;
  line-height: 1.1;
  font-size: clamp(56px, 5vw, 92px);
  font-weight: 500;
  letter-spacing: 0.04em;
}
h1 span {
  display: block;
}
h1 span:first-child {
  display: inline;
}
h1 em {
  color: var(--red);
  font-style: normal;
  font-size: 1.25em;
}
.restart {
  font-size: 0.75em;
  white-space: nowrap;
  margin-top: 5px;
}
.hero-lead {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.7;
  margin: 20px 0;
}
.period {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 15px 0 18px;
}
.period strong {
  font-size: 52px;
  line-height: 1;
}
.period small {
  border: 1px solid;
  border-radius: 50%;
  font: 500 13px/25px var(--sans);
  text-align: center;
  width: 27px;
  height: 27px;
}
.period i {
  width: 70px;
  height: 1px;
  background: var(--navy);
}
.offer {
  display: flex;
  align-items: end;
  gap: 55px;
}
.offer dl {
  margin: 0;
  border: 1px solid #cfd2d6;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  font-family: var(--sans);
}
.offer dl div {
  display: flex;
  border-bottom: 1px solid #dfe1e3;
  min-width: 285px;
}
.offer dl div:last-child {
  border-bottom: 0;
}
.offer dt {
  font-size: 13px;
  font-weight: 700;
  width: 78px;
  padding: 5px 9px;
}
.offer dd {
  margin: 0;
  padding: 3px 12px;
  font-size: 17px;
  font-weight: 700;
}
.offer dd b {
  font-size: 28px;
  font-weight: 500;
}
.offer > p {
  color: var(--red);
  font-size: 40px;
  font-weight: 600;
  white-space: nowrap;
  margin: 0 0 22px;
}
.hero-side {
  position: absolute;
  right: 3.5%;
  top: 37%;
  z-index: 3;
  font: 600 20px/1.9 var(--serif);
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
}
.hero-en {
  position: absolute;
  right: 5%;
  bottom: 7%;
  z-index: 3;
  font: 500 14px/1.6 var(--serif);
  letter-spacing: 0.04em;
}
.section-title {
  font: 500 clamp(25px, 2.2vw, 38px)/1.4 var(--serif);
  text-align: center;
  margin: 0 0 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}
.section-title:not(.plain)::before,
.section-title:not(.plain)::after {
  content: "";
  width: 180px;
  height: 1px;
  background: #c77779;
}
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 65px;
}
.check-list li {
  font: 600 17px/1.8 var(--serif);
  position: relative;
  padding-left: 48px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border: 2px solid #bd565a;
  border-radius: 3px;
  color: var(--red);
  font: bold 29px/20px var(--sans);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 590px;
}
.about-visual {
  position: relative;
  overflow: hidden;
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-visual > p {
  position: absolute;
  left: 9%;
  top: 18%;
  font: 600 25px/1.9 var(--serif);
  letter-spacing: 0.12em;
  transform: rotate(-8deg);
}
.about-copy {
  padding: 75px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-copy h2 {
  font: 500 clamp(34px, 3vw, 52px)/1.55 var(--serif);
  letter-spacing: 0.05em;
  margin: 0 0 28px;
}
.about-copy > p {
  font: 500 19px/1.95 var(--serif);
  letter-spacing: 0.03em;
}
.text-link {
  color: var(--red);
  font-weight: 700;
  border-bottom: 1px solid;
  padding: 10px 0 6px;
  align-self: flex-start;
  margin-top: 10px;
}
.text-link span {
  padding-left: 45px;
}
.features {
  background: #fff;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.feature-grid article {
  text-align: center;
  padding: 10px 35px;
  border-right: 1px solid var(--line);
}
.feature-grid article:last-child {
  border: 0;
}
.feature-grid svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: var(--red);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-grid h3 {
  font: 600 23px var(--serif);
  margin: 13px 0;
}
.feature-grid p {
  font: 500 16px/2 var(--serif);
  margin: 0;
}
.plans {
  background: #fafafa;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
.plan-grid article {
  background: #fff;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(10, 20, 40, 0.07);
}
.plan-grid article > div {
  height: 245px;
  position: relative;
  overflow: hidden;
}
.plan-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.plan-grid span {
  position: absolute;
  left: 24px;
  top: 18px;
  font: 700 24px var(--serif);
}
.plan-grid .red {
  color: var(--red);
}
.plan-grid .blue {
  color: #345e9b;
}
.plan-grid ul {
  list-style: none;
  margin: 0;
  padding: 22px 25px 26px;
  font: 600 17px/1.9 var(--serif);
}
.price-layout {
  display: grid;
  grid-template-columns: 1.42fr 1fr;
  gap: 48px;
}
.price-heading {
  font: 600 31px var(--serif);
  margin: 0 0 15px;
}
.price-heading em {
  font-style: normal;
  color: var(--red);
}
.price-heading small {
  font-size: 14px;
  color: var(--red);
  margin-left: 8px;
}
table {
  border-collapse: collapse;
  width: 100%;
}
.price-table {
  font-size: 13px;
  text-align: center;
  white-space: nowrap;
}
.price-table caption {
  background: var(--red);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 7px;
  border-radius: 5px 5px 0 0;
}
.price-table th,
.price-table td,
.schedule-table th,
.schedule-table td {
  border: 1px solid #d8dcdf;
  padding: 7px;
}
.price-table thead th,
.schedule-table thead th {
  background: #f1f2f2;
}
.price-table tbody th {
  background: #fafafa;
}
.price-table td {
  font-weight: 700;
}
.notes {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.8;
}
.schedule-table {
  text-align: center;
  font-size: 13px;
}
.schedule-table td:nth-child(2) {
  font-weight: 700;
  white-space: nowrap;
}
.space-card {
  display: grid;
  grid-template-columns: 42% 58%;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 28px;
}
.space-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.space-card div {
  padding: 15px;
}
.space-card strong {
  color: var(--red);
  font: 700 18px/1.65 var(--serif);
}
.space-card p {
  font: 600 14px/1.8 var(--serif);
  margin: 10px 0 0;
}
.reasons {
  background: var(--cream);
}
.reasons-title,
.flow-title {
  font: 600 31px var(--serif);
  margin: 0 0 42px;
}
.reason-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.reason-grid article {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--line);
}
.reason-grid article:last-child {
  border: 0;
}
.reason-grid b {
  color: var(--red);
  font: 500 42px var(--serif);
}
.reason-grid h3 {
  font: 700 16px var(--serif);
  min-height: 52px;
}
.reason-grid p {
  font: 500 12px/2 var(--sans);
  margin: 0;
}
.flow-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.flow-grid li {
  position: relative;
  padding: 0 32px;
  border-right: 1px solid #d7dade;
}
.flow-grid li::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 70px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-top: 1px solid #d7dade;
  border-right: 1px solid #d7dade;
  transform: rotate(45deg);
}
.flow-grid li:last-child {
  border: 0;
}
.flow-grid li:last-child::after {
  display: none;
}
.flow-grid li > div {
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.flow-grid small {
  color: var(--red);
  font-weight: 800;
}
.flow-grid h3 {
  font: 700 19px var(--serif);
  margin: 0;
}
.flow-grid svg {
  width: 62px;
  height: 62px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin: 25px 0 0;
}
.flow-grid p {
  font: 600 14px/2 var(--serif);
  margin: -55px 0 0 90px;
}
.contact {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.contact-inner {
  position: relative;
  z-index: 2;
}
.campaign {
  border: 1px solid #c77a7d;
  border-radius: 7px;
  display: grid;
  grid-template-columns: 27% 73%;
  overflow: hidden;
}
.campaign-limit {
  background: linear-gradient(135deg, var(--red-dark), #b2383c);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
}
.campaign-limit strong {
  font-size: 45px;
  font-weight: 400;
  line-height: 1.2;
}
.campaign-limit strong small {
  font-size: 18px;
}
.campaign-limit span {
  font-size: 28px;
}
.benefit {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 4%;
  text-align: center;
}
.benefit p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 5px;
  margin: 0;
}
.benefit b {
  font: 600 29px var(--serif);
}
.benefit small {
  font-weight: 700;
}
.benefit strong {
  width: 100%;
  font: 600 27px var(--serif);
}
.benefit em {
  font-size: 45px;
  color: var(--red);
  font-style: normal;
}
.benefit > i {
  font: 300 54px var(--sans);
  font-style: normal;
}
.contact h2 {
  text-align: center;
  font: 600 25px var(--serif);
  margin: 42px 0 28px;
}
.contact-actions {
  display: grid;
  grid-template-columns: 1.25fr 0.92fr 0.92fr;
  gap: 28px;
  max-width: 1200px;
  margin: auto;
}
.main-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  font: 600 20px var(--serif);
  padding: 25px;
}
.main-cta span {
  margin-left: 35px;
}
.contact-box {
  border: 1px solid #d4d5d5;
  border-radius: 5px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.95);
}
.contact-box svg {
  width: 45px;
  height: 45px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-box.web svg {
  stroke: var(--red);
}
.contact-box span {
  display: flex;
  flex-direction: column;
}
.contact-box strong {
  font-size: 18px;
}
.contact-box.phone strong {
  font: 700 25px var(--serif);
}
.contact-box small {
  font-size: 12px;
  font-weight: 700;
}
.leaves {
  position: absolute;
  width: 330px;
  height: 330px;
  bottom: -100px;
  opacity: 0.3;
  background:
    radial-gradient(ellipse at center, #ba6c2f 0 12%, transparent 13%),
    conic-gradient(
      from 35deg at 50% 100%,
      transparent 0 32%,
      #c27a38 33% 39%,
      transparent 40% 100%
    );
  filter: blur(0.3px);
}
.leaves-left {
  left: -70px;
  transform: rotate(-25deg);
}
.leaves-right {
  right: -70px;
  transform: scaleX(-1) rotate(-25deg);
}
.site-footer {
  background: #121a2d;
  color: #fff;
  padding: 52px 0 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-brand strong {
  font-size: 24px;
}
.site-footer nav {
  display: flex;
  gap: 30px;
  font-size: 13px;
}
.site-footer nav a:hover {
  color: #e8a5a7;
}
.copyright {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px;
  margin: 35px 0 0;
}
.reveal,
.reveal-left,
.reveal-right,
.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal-left {
  transform: translateX(-25px);
}
.reveal-right {
  transform: translateX(25px);
}
.is-visible {
  opacity: 1;
  transform: none;
}
.stagger.is-visible > * {
  opacity: 1;
  transform: none;
}
.stagger.is-visible > *:nth-child(2) {
  transition-delay: 0.1s;
}
.stagger.is-visible > *:nth-child(3) {
  transition-delay: 0.2s;
}
.stagger.is-visible > *:nth-child(4) {
  transition-delay: 0.3s;
}
.stagger.is-visible > *:nth-child(5) {
  transition-delay: 0.4s;
}
.stagger.is-visible > *:nth-child(6) {
  transition-delay: 0.5s;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .reveal-left,
  .reveal-right,
  .stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media (max-width: 1100px) {
  .global-nav {
    gap: 17px;
    font-size: 12px;
  }
  .brand strong {
    font-size: 21px;
  }
  .price-layout {
    grid-template-columns: 1fr;
  }
  .reason-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 0;
  }
  .reason-grid article:nth-child(3) {
    border: 0;
  }
  .flow-grid p {
    margin: 14px 0 0;
  }
  .flow-grid li {
    text-align: center;
  }
  .flow-grid li > div {
    display: block;
  }
  .contact-actions {
    grid-template-columns: 1fr 1fr;
  }
  .main-cta {
    grid-column: 1/-1;
  }
  .hero-copy {
    width: 64%;
  }
}
@media (max-width: 780px) {
  .inner {
    width: min(100% - 36px, 620px);
  }
  .section-pad {
    padding: 62px 0;
  }
  .site-header {
    height: 72px;
    padding: 7px 18px;
  }
  .brand img {
    width: 48px;
    height: 48px;
  }
  .brand strong {
    font-size: 18px;
  }
  .brand small {
    font-size: 8px;
  }
  .menu-button {
    display: block;
    z-index: 32;
  }
  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .global-nav {
    display: flex;
    position: fixed;
    inset: 72px 0 auto 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 28px;
    gap: 0;
    transform: translateY(-130%);
    visibility: hidden;
    transition: 0.35s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }
  .global-nav.is-open {
    transform: none;
    visibility: visible;
  }
  .global-nav a {
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
  }
  .global-nav .nav-cta {
    text-align: center;
    margin-top: 16px;
    border: 0;
  }
  .hero {
    height: auto;
    min-height: 820px;
    padding-top: 355px;
  }
  .hero-image {
    height: 390px;
    object-position: 62% center;
  }
  .hero::after {
    background: linear-gradient(
      180deg,
      transparent 0,
      rgba(255, 255, 255, 0.02) 300px,
      #fff 390px
    );
  }
  .hero-copy {
    width: 100%;
    padding: 75px 22px 40px;
  }
  .year {
    font-size: 16px;
    margin-bottom: 8px;
    text-align: center;
    margin-top: 20px;
  }
  h1 {
    font-size: 52px;
    text-align: center;
  }

  .offer dl {
    border:none; 
    width: 300px;
    margin: 20px auto;
}

  .restart {
    font-size: 0.58em;
  }
  .hero-lead {
    font-size: 18px;
    margin: 13px 0px 20px;
    text-align: center;
  }
  .period {
    gap: 8px;
    justify-content: center;
  }
  .period strong {
    font-size: 35px;
  }
  .period i {
    width: 35px;
  }
  .offer {
    display: block;
  }
  .offer dl div {
    min-width: 0;
  }
  .offer > p {
    font-size: 34px;
    margin: 30px 0 12px;
    text-align: center;
  }
  .hero-side {
    top: 105px;
    left: 55px;
    font-size: 26px;
    width: 30px;
    line-height: 1.4;
  }

  .reasons-title, .flow-title {
    font: 600 24px var(--serif);
    text-align: center;
}

  h1 span {
      display: inline;
  }
  .hero-en {
    top: 300px;
    bottom: auto;
    font-size: 10px;
  }
  .section-title {
    font-size: 23px;
    gap: 12px;
  }
  .section-title:not(.plain)::before,
  .section-title:not(.plain)::after {
    width: 35px;
  }
  .check-list {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .check-list li br {
    display: none;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .about-visual {
    height: 360px;
  }
  .about-visual > p {
    font-size: 18px;
  }
  .about-copy {
    padding: 48px 24px;
  }
  .about-copy h2 {
    font-size: 33px;
  }
  .about-copy > p {
    font-size: 15px;
  }
  .about-copy > p br {
    display: none;
  }
  .feature-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 30px 5px;
  }
  .plan-grid {
    gap: 24px;
  }
  .plan-grid article > div {
    height: 205px;
  }
  .price-heading {
    font-size: 25px;
  }
  .table-scroll {
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .price-table {
    min-width: 720px;
  }
  .space-card {
    grid-template-columns: 1fr;
  }
  .space-card img {
    height: 190px;
  }
  .reason-grid {
    grid-template-columns: 1fr;
  }
  .reason-grid article,
  .reason-grid article:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 5px;
  }
  .reason-grid article:last-child {
    border: 0;
  }
  .reason-grid h3 {
    min-height: 0;
  }
  .flow-grid {
    grid-template-columns: 1fr;
    gap: 0;
    width: 80%;
    margin: 0 auto;
  }
  .flow-grid li {
    display: grid;
    grid-template-columns: 65px 1fr;
    padding: 26px 0;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid #ddd;
  }
  .flow-grid li::after {
    display: none;
  }
  .flow-grid li > div {
    grid-column: 2;
    grid-row: 1;
    display: block;
  }
  .flow-grid svg {
    grid-column: 1;
    grid-row: 1/3;
    width: 48px;
    height: 48px;
    margin: 10px 0;
  }
  .flow-grid p {
    grid-column: 2;
    grid-row: 2;
    margin: 5px 0 0;
  }
  .campaign {
    grid-template-columns: 1fr;
  }
  .campaign-limit {
    padding: 18px;
  }
  .campaign-limit strong {
    font-size: 35px;
  }
  .campaign-limit span {
    font-size: 21px;
  }
  .benefit {
    grid-template-columns: 1fr;
    padding: 22px 15px;
  }
  .benefit > i {
    font-size: 38px;
  }
  .benefit b {
    font-size: 23px;
  }
  .benefit em {
    font-size: 36px;
  }
  .contact-actions {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .main-cta {
    grid-column: auto;
    font-size: 17px;
  }
  .contact-box {
    justify-content: center;
  }
  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }
  .site-footer nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
    text-align: center;
  }
  .footer-brand strong {
    font-size: 20px;
  }
  .leaves {
    width: 180px;
    height: 180px;
  }
  .footer-brand small {
    font-size: 8px;
  }
}
@media (max-width: 390px) {
  h1 {
    font-size: 45px;
  }
  .brand strong {
    font-size: 16px;
  }
  .brand small {
    letter-spacing: 0;
  }
  .campaign-limit strong {
    font-size: 31px;
  }
  .benefit strong {
    font-size: 23px;
  }
}

/* PNG icon assets and mobile-safe pricing tables */
.feature-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin: 0 auto;
}
.flow-icon {
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin: 25px 0 0;
}
.contact-box > img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  flex: 0 0 auto;
}
.price-section {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.price-layout > div {
  min-width: 0;
  max-width: 100%;
}
.table-scroll {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}
.table-scroll::after {
  content: "左右にスクロールできます";
  display: none;
  color: #687080;
  font: 500 11px var(--sans);
  text-align: right;
  padding-top: 5px;
}
@media (max-width: 780px) {
  body {
    overflow-x: hidden;
  }
  .price-section .inner {
    width: calc(100% - 36px);
    max-width: 100%;
  }
  .price-table {
    width: 720px;
    min-width: 720px;
  }
  .schedule-table {
    width: 540px;
    min-width: 540px;
  }
  .table-scroll::after {
    display: block;
    position: sticky;
    left: 0;
    width: 100%;
  }
  .flow-grid .flow-icon {
    grid-column: 1;
    grid-row: 1/3;
    width: 48px;
    height: 48px;
    margin: 10px 0;
  }
}
