:root {
  --color-main: #4BBFDB;
  --color-navy: #1A3A5C;
  --color-green: #3DB87A;
  --color-orange: #F47C20;
  --color-line: #06C755;
  --color-bg-gray: #F5F5F5;
  --color-text: #222222;
  --color-white: #FFFFFF;
  --font-base: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  --container-width: 1024px;
  --padding-sp: 16px;
  --padding-tb: 32px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, ul, ol, li, figure, figcaption {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

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

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: var(--font-base);
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.7;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--padding-sp);
}

@media (min-width: 600px) {
  .container {
    padding: 0 var(--padding-tb);
  }
}

section {
  padding: 60px 0;
}

@media (min-width: 600px) {
  section {
    padding: 80px 0;
  }
}

/* =====================
   Header
   ===================== */
#header {
  background: var(--color-white);
  border-bottom: 2px solid var(--color-main);
}

.header__inner {
  padding: 12px var(--padding-sp);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo-img {
  height: 48px;
  width: auto;
}

.header__logo-sub {
  font-size: 11px;
  color: #888;
}

.header__logo-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-navy);
  margin-top: 2px;
}

.header__right {
  margin-top: 10px;
}

.header__area {
  font-size: 11px;
  color: #666;
  margin-bottom: 8px;
}

.btn-line {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-line);
  color: var(--color-white);
  border-radius: 50px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  width: 100%;
  justify-content: center;
}

.btn-line__label {
  background: var(--color-white);
  color: var(--color-line);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

@media (min-width: 600px) {
  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px var(--padding-tb);
  }

  .header__right {
    margin-top: 0;
    text-align: right;
  }

  .btn-line {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .header__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px 40px;
  }

  .header__logo-name {
    font-size: 26px;
  }

  .header__right {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .header__area {
    margin-bottom: 0;
  }
}

/* =====================
   Footer
   ===================== */
#footer {
  background: #0D2137;
  color: var(--color-white);
  text-align: center;
  padding: 40px 16px;
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 16px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__logo-img {
  height: 48px;
  width: auto;
}

.footer__logo-name {
  font-size: 24px;
}

.footer__area {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.footer__copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 600px) {
  .footer__top {
    flex-direction: row;
    align-items: flex-start;
  }

  .footer__info {
    text-align: left;
  }
}

/* =====================
   #hero
   ===================== */

#hero {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

/* ── hero__top ── */
.hero__top {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  z-index: 2;
}

.hero__main {
  padding: 20px var(--padding-sp) 16px;
  width: 100%;
}

.hero__visual {
  width: 100%;
  min-height: 240px;
  background:
    url('../images/sect_hero_01_mobile.jpg') center top / 100% auto no-repeat;
}

/* ── hero__catch ── */
.hero__catch {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 12px;
}

.hero__catch-em {
  color: #5885BF;
}

.hero__catch-large {
  font-size: 34px;
  color: #5885BF;
}

.hero__desc {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}

.hero__text {
  margin-bottom: 50px;
}

/* ── hero__campaign ── */
.hero__campaign {
  background: #fffbf0;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #f0d080;
  margin-bottom: 0;
  max-width: 400px;
  position: relative;
  margin: 0 auto;
}

.hero__campaign-ribbon {
  text-align: center;
  margin-bottom: 12px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero__campaign-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 24px;
}

.hero__campaign-ribbon-img {
  width: 270px;
  max-width: none;
  display: inline-block;
}

.hero__campaign-menu {
  font-size: 13px;
  color: #555;
}
.hero__campaign-normal-num {
  font-size: 20px;
}

.hero__campaign-price-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}

.hero__campaign-normal {
  font-size: 13px;
  color: #999;
}



.hero__campaign-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-orange);
  display: flex;
  align-items: baseline;
}

.hero__campaign-arrow {
  align-self: center;
  margin-right: 10px;
}

.hero__campaign-price small {
  vertical-align: bottom;
}

.hero__campaign-num {
  font-size: 42px;
  font-weight: 700;
  color: var(--color-orange);
}

.hero__campaign-period {
  font-size: 12px;
  color: #888;
  background: var(--color-white);
  border-radius: 50px;
  padding: 6px 16px;
  text-align: center;
  border: 1px solid #f0d080;
  margin-bottom: 20px;
}

.hero__campaign-period span {
  color: var(--color-orange);
  font-weight: 700;
}

.hero__campaign-link {
  display: block;
  text-align: center;
  color: var(--color-main);
}

.hero__campaign-extra-label {
  font-size: 13px;
  color: #555;
  margin-bottom: 8px;
}

.hero__campaign-extra-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}

.hero__campaign-extra-desc {
  font-size: 13px;
  color: #999;
}

.hero__campaign-extra-desc span {
  text-decoration: none;
}

.hero__campaign-extra-price {
  font-size: 16px;
  font-weight: 700;
  color: #C62828;
  display: flex;
  align-items: baseline;
}

.hero__campaign-extra-arrow {
  align-self: center;
  margin-right: 10px;
  color: #C62828;
}

.hero__campaign-extra-num {
  font-size: 42px;
  font-weight: 700;
  color: #C62828;
}

/* ── hero__bottom ── */
.hero__bottom {
  position: relative;
  z-index: 2;
}

.hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
  display: none;
}

.hero__wave-img {
  width: 100%;
  display: block;
  height: auto;
}

.hero__features {
  position: relative;
  z-index: 2;
  padding: 16px var(--padding-sp) 24px;
}

.hero__features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero__features-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-white);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.hero__features-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero__features-body {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
}

.hero__features-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
  margin-right: 8px;
}

.hero__features-desc {
  font-size: 12px;
  color: #555;
  line-height: 1.5;
}

/* ── hero__bg（デスクトップのみ） ── */
.hero__bg {
  display: none;
}

/* =====================
   タブレット（min-width: 600px and max-width: 1023px）
   ===================== */
@media (min-width: 600px) and (max-width: 1023px) {

  .hero__top {
    flex-direction: row;
    align-items: stretch;
    min-height: 480px;
    position: relative;
  }

  .hero__main {
    position: relative;
    z-index: 1;
    padding: 40px var(--padding-tb) 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero__text {
    width: 345px;
  }

  .hero__campaign {
    position: relative;
    z-index: 2;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin: 0;
  }

  .hero__visual {
    position: absolute;
    top: 0;
    right: 0;
    height: 400px;
    width: 80%;
    object-fit: cover;
    background:
      url('../images/sect_hero_01.jpg') center center / cover no-repeat;
    -webkit-mask-image: linear-gradient(to left, black 70%, transparent 100%);
    mask-image: linear-gradient(to left, black 70%, transparent 100%);
  }

  .hero__catch {
    font-size: 28px;
  }

  .hero__catch-large {
    font-size: 44px;
  }

  .hero__desc {
    width: 90%;
  }

  .hero__features-list {
    flex-direction: row;
    gap: 12px;
  }

  .hero__features-item {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 12px;
    gap: 8px;
  }

  .hero__features-icon {
    width: 44px;
    height: 44px;
  }

  .hero__features-title {
    font-size: 15px;
  }

  .hero__features {
    padding: 20px var(--padding-tb) 32px;
  }

  .hero__wave {
    display: block;
  }

  .hero__features-body {
    flex-direction: column;
  }
}

/* =====================
   デスクトップ（min-width: 1024px）
   ===================== */
@media (min-width: 1024px) {

  #hero {
    padding-bottom: 100px;
  }

  .hero__top {
    min-height: 560px;
    max-width: 1440px;
    margin: 0 auto;
  }

  .hero__main {
    box-sizing: content-box;
    width: 40%;
    min-width: 444px;
    flex-shrink: 0;
    padding: 60px 60px 24px;
  }

  .hero__visual {
    display: none;
  }

  .hero__catch {
    font-size: 36px;
  }

  .hero__catch-large {
    font-size: 52px;
  }

  .hero__desc {
    width: 70%;
  }

  .hero__campaign {
    margin: 0;
  }

  .hero__campaign-price-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .hero__features {
    padding: 60px 60px 40px;
    width: 100%;
    margin: 0 auto;
  }

  .hero__features-list {
    flex-direction: row;
    gap: 24px;
    justify-content: center;
  }

  .hero__features-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 215px;
    padding: 14px 16px;
    gap: 12px;
  }

  .hero__features-icon {
    width: 40px;
    height: 40px;
  }

  /* 背景画像 */
  .hero__bg {
    display: block;
    position: absolute;
    top: 0;
    right: -200px;
    bottom: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .hero__bg-img {
    position: absolute;
    top: 0;
    right: -200px;
    height: 690px;
    width: auto;
    max-width: none;
  }

  .hero__top {
    position: relative;
    z-index: 2;
  }

  .hero__bottom {
    position: relative;
    z-index: 2;
    bottom: 56px;
  }

  .hero__wave {
    display: block;
  }
}

/* =====================
   大画面（min-width: 1350px）
   ===================== */
@media (min-width: 1350px) {

  .hero__bg {
    right: 0;
  }
}


/* =====================
   Problem
   ===================== */
#problem {
  background: #F3F8FE;
}

.problem__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.problem__title {
  font-size: 20px;
  font-weight: 700;
  color: #5885BF;
  margin-bottom: 20px;
}

.problem__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.problem__item {
  font-size: 15px;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

.problem__item::before {
  content: "☑️";
  position: absolute;
  left: 0;
}

.problem__cause-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.5;
  margin-bottom: 16px;
}

.problem__cause-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

@media (min-width: 600px) {
  .problem__inner {
    flex-direction: row;
    gap: 40px;
  }

  .problem__left {
    flex: 1;
  }

  .problem__right {
    flex: 1;
  }

  .problem__title {
    font-size: 22px;
  }

  .problem__cause-title {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .problem__inner {
    gap: 60px;
  }

  .problem__title {
    font-size: 24px;
  }
}

/* =====================
   Before / After
   ===================== */
#before-after {
  background: var(--color-white);
}

.ba__title {
  font-size: 20px;
  font-weight: 700;
  color: #5885BF;
  text-align: center;
  margin-bottom: 32px;
}

.ba__set {
  margin-bottom: 40px;
}

.ba__set:last-child {
  margin-bottom: 0;
}

.ba__caption {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 12px;
  text-align: center;
}

.ba__images {
  display: flex;
  gap: 12px;
  margin-top:30px;
  justify-content: center;
}

.ba__item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.ba__img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  display: block;
}

.ba__img-placeholder {
  width: 100%;
  max-width: 300px;
  height: 180px;
  background: #ccc;
  border-radius: 8px;
}

.ba__label {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-white);
  padding: 3px 10px;
  border-radius: 4px;
}

.ba__label--before {
  background: #888;
}

.ba__label--after {
  background: var(--color-main);
}

@media (min-width: 600px) {
  .ba__img-placeholder {
    height: 240px;
  }

  .ba__title {
    font-size: 22px;
  }

  .ba__caption {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .ba__img-placeholder {
    height: 280px;
  }

  .ba__title {
    font-size: 24px;
  }

  .ba__set {
    margin-bottom: 56px;
  }
}


/* =====================
   Reasons
   ===================== */
#reasons {
  background: var(--color-white);
}

.reasons__title {
  font-size: 20px;
  font-weight: 700;
  color: #5885BF;
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.5;
}

.reasons__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  list-style: none;
  padding: 0;
}

.reasons__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
}

.reasons__img-placeholder {
  width: 100%;
  height: 200px;
  background: #ccc;
  border-radius: 8px;
}

.reasons__img {
  width: 100%;
  max-width:250px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin:0 auto;
}

.reasons__body {
  padding: 0 4px;
}

.reasons__num {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-main);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.reasons__heading {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.5;
  margin-bottom: 10px;
}

.reasons__desc {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

@media (min-width: 600px) {
  .reasons__title {
    font-size: 22px;
  }

  .reasons__item {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    margin: 0;
  }

  .reasons__img-placeholder {
    width: 200px;
    flex-shrink: 0;
    height: 160px;
  }

  .reasons__img {
    height: 160px;
    margin: 0;
  }

  .reasons__heading {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .reasons__title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .reasons__list {
    flex-direction: row;
    gap: 32px;
  }

  .reasons__item {
    flex-direction: column;
    flex: 1;
  }

  .reasons__img-placeholder {
    width: 100%;
    height: 220px;
  }

  .reasons__img {
    height: auto;
  }

  .reasons__num {
    font-size: 32px;
  }
}

/* =====================
   Greeting
   ===================== */
#greeting {
  background: #F3F8FE;
}

.greeting__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.greeting__image {
  position: relative;
  max-width: 280px;
  margin: 0 auto;
}

.hero__badge {
  position: absolute;
  bottom: 0;
  right: 40px;
}

.greeting__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.greeting__quote {
  font-size: 18px;
  font-weight: 700;
  color: #5885BF;
  line-height: 1.6;
  margin-bottom: 20px;
}

.greeting__text {
  font-size: 14px;
  color: #444;
  line-height: 1.9;
  margin-bottom: 16px;
}

.greeting__closing {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
}

@media (min-width: 600px) {
  .greeting__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }

  .greeting__image {
    flex-shrink: 0;
    width: 280px;
  }

  .greeting__img {
    width: 280px;
    flex-shrink: 0;
  }

  .greeting__quote {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .greeting__image {
    width: 320px;
  }

  .greeting__img {
    width: 320px;
  }

  .greeting__quote {
    font-size: 22px;
  }

  .greeting__text {
    font-size: 15px;
  }
}

/* =====================
   Flow
   ===================== */
#flow {
  background: var(--color-white);
}

.flow__title {
  font-size: 20px;
  font-weight: 700;
  color: #5885BF;
  text-align: center;
  margin-bottom: 32px;
}

.flow__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
}

.flow__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 80px;
}

.flow__img {
  width: 100%;
  max-width: 240px;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

.flow__item {
  width: auto;
}

.flow__num {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-main);
}

.flow__num-label {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}

.flow__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-navy);
  text-align: center;
  line-height: 1.4;
}

.flow__arrow {
  font-size: 18px;
  color: var(--color-main);
  font-weight: 700;
  display: flex;
  align-items: center;
  display: none;
}

.flow__note {
  font-size: 12px;
  color: #888;
  text-align: center;
  margin-top: 24px;
  line-height: 1.8;
}

@media (min-width: 600px) {
  .flow__title {
    font-size: 22px;
  }

  .flow__img {
    max-width: 160px;
  }

  .flow__arrow {
    display: block;
  }
}

@media (min-width: 600px) and (max-width: 1023px) {
  .flow__arrow {
    display: none;
  }
}

@media (min-width: 1024px) {
  .flow__img {
    max-width: 180px;
  }

  .flow__list {
    gap: 20px;
    flex-wrap: nowrap;
  }

  .flow__label {
    font-size: 13px;
  }
}

/* =====================
   Voices
   ===================== */
#voices {
  background: #F3F8FE;
}

.voices__title {
  font-size: 20px;
  font-weight: 700;
  color: #5885BF;
  text-align: center;
  margin-bottom: 32px;
}

.voices__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.voices__item {
  background: var(--color-white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.voices__heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.voices__text {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.voices__customer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.voices__avatar-img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.voices__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ccc;
  flex-shrink: 0;
}

.voices__name {
  font-size: 13px;
  color: #888;
  font-weight: 700;
}

@media (min-width: 600px) {
  .voices__title {
    font-size: 22px;
  }
}

@media (min-width: 1024px) {
  .voices__title {
    font-size: 24px;
  }

  .voices__list {
    flex-direction: row;
    gap: 24px;
  }

  .voices__item {
    flex: 1;
  }
}

/* =====================
   Pricing
   ===================== */
#pricing {
  background: var(--color-white);
}

.pricing__title {
  font-size: 20px;
  font-weight: 700;
  color: #5885BF;
  text-align: center;
  margin-bottom: 32px;
}

.pricing__table-wrap {
  margin-bottom: 32px;
  width: 100%;
}

.pricing__table-wrap:last-of-type {
  margin-bottom: 0;
}

.pricing__subtitle {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-navy);
  padding: 8px 16px;
  border-radius: 4px 4px 0 0;
}

.pricing__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.pricing__table th {
  background: var(--color-bg-gray);
  padding: 10px 12px;
  text-align: center;
  font-size: 13px;
  border: 1px solid #ddd;
}

.pricing__th--campaign {
  background: #fff3e0;
  color: var(--color-orange);
}

.pricing__th--campaign span {
  font-size: 11px;
  font-weight: 400;
}

.pricing__table td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: center;
}

.pricing__table tbody tr:nth-child(even) {
  background: var(--color-bg-gray);
}

.pricing__normal {
  color: #888;
  text-decoration: line-through;
  font-size: 13px;
}

.pricing__campaign {
  color: var(--color-orange);
  font-weight: 700;
  font-size: 16px;
}

.pricing__th--special {
  background: #fce4ec;
  color: #c62828;
  font-size: 13px;
  border: 1px solid #ddd;
  padding: 10px 12px;
  text-align: center;
}

.pricing__th--special span {
  font-size: 11px;
  font-weight: 400;
}

.pricing__special {
  color: #c62828;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  border: 1px solid #ddd;
  padding: 12px;
}

.pricing__sub {
  font-size: 11px;
  color: #888;
}

.pricing__notes {
  list-style: none;
  padding: 0;
  margin-top: 16px;
  text-align: left;
}

.pricing__notes li {
  font-size: 12px;
  color: #888;
  line-height: 1.8;
  text-align: left;
}

@media (min-width: 600px) {
  .pricing__title {
    font-size: 22px;
  }

  .pricing__table {
    font-size: 15px;
  }

  .pricing__campaign {
    font-size: 18px;
  }

  .pricing__special {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .pricing__title {
    font-size: 24px;
  }
}

/* =====================
   Campaign
   ===================== */
#campaign {
  background: var(--color-white);
}

.campaign__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.campaign__main {
  background: none;
  color: var(--color-text);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  width: 100%;
  max-width: 545px; /*450px*/
  position: relative;
  overflow: hidden;
}

.campaign__deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.campaign__deco--baloon1 {
  width: 30px;
  top: 8px;
  left: 8px;
  opacity: 0.9;
}

.campaign__deco--baloon2 {
  width: 25px;
  top: 8px;
  right: 8px;
  opacity: 0.9;
}

.campaign__deco--baloon3 {
  width: 28px;
  bottom: 8px;
  right: 16px;
  opacity: 0.9;
}

.campaign__deco--kira1 {
  width: 16px;
  top: 16px;
  left: 16%;
  transform: translateX(-60px);
  opacity: 0.8;
}

.campaign__deco--kira2 {
  width: 14px;
  bottom: 16px;
  left: 16px;
  opacity: 0.8;
}

.campaign__deco--kira3 {
  width: 15px;
  top: 30%;
  right: 36px;
  transform: translateY(-50%);
  opacity: 0.8;
}

@media (min-width: 600px) {
  .campaign__deco--baloon1 { width: 35px; }
  .campaign__deco--baloon2 { width: 30px; }
  .campaign__deco--baloon3 { width: 33px; }
  .campaign__deco--kira1   { width: 19px; }
  .campaign__deco--kira2   { width: 17px; }
  .campaign__deco--kira3   { width: 18px; }
}

@media (min-width: 1024px) {
  .campaign__deco--baloon1 { width: 40px; top: 12px; left: 12px; }
  .campaign__deco--baloon2 { width: 35px; top: 12px; right: 12px; }
  .campaign__deco--baloon3 { width: 38px; bottom: 12px; right: 24px; }
  .campaign__deco--kira1   { width: 82px; }
  .campaign__deco--kira2   { width: 80px; }
  .campaign__deco--kira3   { width: 81px; }
}

.campaign__label {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  background: var(--color-orange);
  color: var(--color-white);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 50px;
}

.campaign__main-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 8px 0 4px;
}

.campaign__discount {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-orange);
}

.campaign__discount span {
  font-size: 20px;
}

.campaign__more {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-orange);
  text-align: center;
}

.campaign__extras {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-white);
  width: 100%;
  max-width: 545px; /*450px*/
  border-radius: 12px;
  padding: 20px;
  border: 2px solid #c62828;
}

.campaign__extra-item {
  flex: 1;
  text-align: center;
}


.campaign__extra-line-img {
  display: block;
  margin: 10px auto 0;
}

.campaign__extra-label {
  font-size: 20px;
  font-weight: 700;
  color: #c62828;
  margin-bottom: 6px;
}

.campaign__extra-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
}

.campaign__extra-text strong {
  color: #c62828;
  font-size: 15px;
}

.campaign__extra-note {
  font-size: 15px;
  text-align: left;
}

.campaign__line-btn {
  display: block;
  width: 70%;
  margin: 0 auto;
}

.campaign__extra-num {
  font-size: 30px;
}

.campaign__plus {
  font-size: 24px;
  font-weight: 700;
  color: #c62828;
  flex-shrink: 0;
}

.campaign__total {
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  width: 100%;
  max-width: 545px; /*450px*/
}

.campaign__total-text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.campaign__total-text strong {
  font-size: 22px;
  display: block;
}

.campaign__price {
  font-size: 15px;
  line-height: 1.6;
}

.campaign__price span {
  font-size: 32px;
  font-weight: 700;
  color: #FFD700;
  display: block;
}


@media (min-width: 1024px) {
  .campaign__inner {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    margin-right: auto;
  }

}

/* =====================
   CTA
   ===================== */
#cta {
  background: linear-gradient(135deg, #e8f7fb 0%, #c5edf5 100%);
}

.cta__inner {
  text-align: center;
  padding: 0 var(--padding-sp);
}

.cta__lead {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 24px;
}

.cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-line);
  color: var(--color-white);
  border-radius: 50px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  max-width: 400px;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta__btn-icon {
  background: var(--color-white);
  color: var(--color-line);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}

.cta__note {
  font-size: 13px;
  color: #555;
}

@media (min-width: 600px) {
  .cta__lead {
    font-size: 24px;
  }

  .cta__btn {
    font-size: 18px;
    padding: 18px 32px;
  }
}

@media (min-width: 1024px) {
  .cta__lead {
    font-size: 26px;
  }

  .cta__btn {
    max-width: 480px;
  }
}

/* =====================
   Pricing + Campaign wrap
   ===================== */
.pricing-campaign-wrap {
  display: flex;
  flex-direction: column-reverse;
  gap: 0;
}

#pricing .container {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 1024px) {
  .pricing-campaign-wrap {
    flex-direction: row;
    align-items: flex-start;
  }

  #pricing {
    flex: 1 1 50%;
    min-width: 0;
  }

  #campaign {
    flex: 1 1 50%;
    min-width: 0;
  }

  #pricing .container {
    margin-left: auto;
    margin-right: 0;
  }
}

/* まとめて割バッジ 共通 */
.hero__matome-badge {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4BBFDB 0%, #1A3A5C 100%);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  text-align: center;
  text-decoration: none;
  gap: 4px;
  z-index: 10;
  /* モバイル：hero__visualの左下 */
  top: 115px;
  left: 20px;
}

.hero__matome-badge-main {
  font-size: 11px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.4;
}

.hero__matome-badge-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
}

.hero__matome-badge-link {
  font-size: 10px;
  font-weight: 700;
  color: #FFE57F;
}

/* タブレット（600px〜1023px）：hero__mainの右隣・下端揃え */
@media (min-width: 600px) and (max-width: 1023px) {
  .hero__matome-badge {
    width: 130px;
    height: 130px;
    top: auto;
    bottom: 220px;
    left: 450px;
    right: auto;
  }
}

/* デスクトップ（1024px〜）：背景画像上・絶対配置 */
@media (min-width: 1024px) {
  .hero__matome-badge {
    width: 150px;
    height: 150px;
    top: auto;
    bottom: 335px;
    left: 500px;
    right: auto;
  }
  .hero__matome-badge-main { font-size: 13px; }
  .hero__matome-badge-sub { font-size: 11px; }
  .hero__matome-badge-link { font-size: 11px; }
}

@media (min-width: 1440px) {
  .hero__matome-badge {
    left: 37%;
  }
}

/* =====================
   施工例（Works）
   ===================== */

/* アーカイブページ */
.works-archive {
  padding: 60px 0;
  background: var(--color-bg-gray);
}

.works-archive__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 40px;
}

.works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .works-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.works-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.works-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.works-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.works-card__img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.works-card__body {
  padding: 16px;
}

.works-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 10px;
  line-height: 1.5;
}

.works-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}

.works-card__meta li {
  font-size: 12px;
  color: var(--color-white);
  background: var(--color-main);
  border-radius: 50px;
  padding: 3px 10px;
}

.works-card__excerpt {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

/* ページネーション */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.nav-links a,
.nav-links span {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  background: var(--color-white);
  color: var(--color-navy);
  border: 1px solid var(--color-main);
}

.nav-links .current {
  background: var(--color-main);
  color: var(--color-white);
}

/* 詳細ページ */
.works-single {
  padding: 60px 0;
}

.works-single__article {
  background: var(--color-white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 32px;
}

.works-single__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 20px;
  line-height: 1.5;
}

.works-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.works-single__meta li {
  font-size: 13px;
  background: var(--color-bg-gray);
  border-radius: 50px;
  padding: 6px 16px;
}

.works-single__meta-label {
  color: var(--color-main);
  font-weight: 700;
  margin-right: 4px;
}

.works-single__thumbnail {
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
}

.works-single__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.works-single__content {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
}

.btn-back {
  display: inline-block;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid var(--color-main);
  border-radius: 50px;
}

.btn-back:hover {
  background: var(--color-main);
  color: var(--color-white);
}

/* Before/After */
.works-ba {
  margin-bottom: 32px;
}

.works-ba__heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 12px;
  padding-left: 10px;
  border-left: 4px solid var(--color-main);
}

.works-ba__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.works-ba__item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.works-ba__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.works-ba__label {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-white);
  padding: 4px 12px;
  border-radius: 4px;
  margin: 0;
}

.works-ba__label--before {
  background: #888;
}

.works-ba__label--after {
  background: var(--color-main);
}

@media (max-width: 599px) {
  .works-ba__grid {
    grid-template-columns: 1fr;
  }
}

/* 施工例もっと見るボタン */
.works-more {
  text-align: center;
  padding: 40px 0 20px;
}

.works-more__btn {
  display: inline-block;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 48px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.works-more__btn:hover {
  background: var(--color-main);
}

.works-archive__nav {
  text-align: center;
  margin-bottom: 32px;
}

.works-archive__back {
  display: inline-block;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 24px;
  border: 2px solid var(--color-main);
  border-radius: 50px;
}

.works-archive__back:hover {
  background: var(--color-main);
  color: var(--color-white);
}

.header__logo-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* =====================
   FAQセクション（トップページ）
   ===================== */
#faq {
  background: var(--color-bg-gray);
  padding: 80px 0;
}

.faq__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 40px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.faq__item {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq__question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  cursor: pointer;
  line-height: 1.6;
}

.faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 24px 20px;
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  border-top: 1px solid var(--color-bg-gray);
  margin: 0;
}

.faq__q-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--color-main);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq__a-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--color-bg-gray);
  color: var(--color-navy);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq__more {
  text-align: center;
}

.faq__more-btn {
  display: inline-block;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 48px;
  border-radius: 50px;
  text-decoration: none;
}

.faq__more-btn:hover {
  background: var(--color-main);
}

/* =====================
   FAQページ
   ===================== */
.faq-page {
  padding: 60px 0;
}

.faq-page__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 16px;
}

.faq-page__nav {
  text-align: center;
  margin-bottom: 40px;
}

.faq-page__back {
  display: inline-block;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 24px;
  border: 2px solid var(--color-main);
  border-radius: 50px;
}

.faq-page__back:hover {
  background: var(--color-main);
  color: var(--color-white);
}

/* =====================
   料金ページ
   ===================== */
.pricing-page {
  padding: 60px 0;
}

.pricing-page__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 16px;
}

.pricing-page__nav {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-page__back {
  display: inline-block;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 24px;
  border: 2px solid var(--color-main);
  border-radius: 50px;
}

.pricing-page__back:hover {
  background: var(--color-main);
  color: var(--color-white);
}

.pricing-page__campaign {
  margin-top: 48px;
}

.pricing-page__cta {
  margin-top: 48px;
  text-align: center;
  background: linear-gradient(135deg, #e8f7fb 0%, #c5edf5 100%);
  border-radius: 16px;
  padding: 40px 24px;
}

.pricing-page__cta-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 24px;
}

.pricing-page__cta-note {
  font-size: 13px;
  color: #555;
  margin-top: 16px;
}

.pricing__section-lead {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  text-align: center;
  margin: 48px 0 24px;
}

.pricing__catch {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-orange);
  text-align: center;
  margin-bottom: 24px;
}

.pricing__table--option td:nth-child(3) {
  font-size: 13px;
  color: #555;
  text-align: left;
}
