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

:root {
  --c-bg: #f5f2ed;
  --c-white: #ffffff;
  --c-pink: #e16975;
  --c-pink-dark: #be4450;
  --c-navy: #1e283f;
  --c-navy-mid: #3f5273;
  --c-navy-light: #4e5a6e;
  --c-gold: #94754d;
  --c-gold-light: #a78f70;
  --c-beige: #e1d0bb;
  --c-beige-light: #fcfbf9;
  --c-cream: #fff8ee;
  --c-text: #333333;
  --ff-mincho: "Zen Old Mincho", serif;
  --ff-gothic: "Zen Kaku Gothic New", sans-serif;
  --ff-crimson: "Crimson Text", serif;
  --w-max: 1512px;
  --w-inner: 1200px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--ff-gothic);
  font-weight: 500;
  color: var(--c-navy);
  background: var(--c-bg);
  line-height: 1.8;
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.tablet {
  display: none;
}
@media (max-width: 1024px) {
  .tablet {
    display: block;
  }
}

.sp {
  display: none;
}
@media (max-width: 640px) {
  .sp {
    display: block;
  }
}

.text-accent {
  color: var(--c-pink-dark);
}

.section-inner {
  max-width: var(--w-inner);
  margin: 0 auto;
  padding: 0 20px;
}

.section-label {
  font-family: var(--ff-gothic);
  font-size: 16px;
  text-align: center;
  color: var(--c-navy);
  margin-bottom: 8px;
}

.section-decoration {
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 640px) {
  .section-decoration {
    margin-bottom: 0;
  }
}
.section-decoration img {
  display: inline-block;
  vertical-align: bottom;
  width: 181px;
  height: auto;
}
@media (max-width: 640px) {
  .section-decoration img {
    width: 100px;
  }
}

.section-title {
  font-family: var(--ff-mincho);
  font-weight: 500;
  font-size: 40px;
  text-align: center;
  color: var(--c-navy);
  line-height: 1.4;
  margin-bottom: 56px;
}
@media (max-width: 1024px) {
  .section-title {
    font-size: 32px;
  }
}
.section-title--navy {
  color: var(--c-navy-mid);
}
@media (max-width: 640px) {
  .section-title {
    font-size: 26px;
    margin-bottom: 36px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0);
  transition: background 0.3s ease;
}
.header.is-scrolled {
  background: var(--c-beige-light);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.header__inner {
  max-width: var(--w-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 12px 32px;
  gap: 20px;
}
@media (max-width: 1024px) {
  .header__inner {
    justify-content: space-between;
    padding: 12px 16px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  z-index: 1001;
}
.header__logo-img {
  width: 44px;
  height: auto;
}
@media (max-width: 1024px) {
  .header__logo-img {
    width: 34px;
  }
}
.header__logo-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.header__logo-title {
  font-family: var(--ff-mincho);
  font-weight: 500;
  font-size: 29px;
  color: var(--c-navy);
  white-space: nowrap;
  line-height: 1;
}
@media (max-width: 1024px) {
  .header__logo-title {
    font-size: 20px;
  }
}
.header__logo-sub {
  font-family: var(--ff-gothic);
  font-size: 14px;
  color: var(--c-navy);
  white-space: nowrap;
  line-height: 1;
}
@media (max-width: 1024px) {
  .header__logo-sub {
    font-size: 10px;
  }
}
.header__nav {
  margin-left: auto;
}
@media (max-width: 1200px) {
  .header__nav {
    display: none;
  }
}
@media (max-width: 1200px) {
  .header__nav.is-open {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.97);
    z-index: 999;
    justify-content: center;
    align-items: center;
  }
}
.header__nav-list {
  display: flex;
  gap: 14px;
}
.header__nav-list a {
  font-family: var(--ff-gothic);
  font-size: 16px;
  color: var(--c-navy);
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.header__nav-list a:hover {
  color: var(--c-pink);
}
@media (max-width: 1200px) {
  .is-open .header__nav-list {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  .is-open .header__nav-list a {
    font-size: 20px;
  }
}
.header__phone {
  flex-shrink: 0;
  background: var(--c-white);
  border-radius: 5px;
  padding: 10px 15px;
  margin-left: auto;
  text-align: center;
}
@media (max-width: 1024px) {
  .header__phone {
    display: none;
  }
}
.header__phone-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: -0.5px;
}
.header__phone-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.header__phone-icon {
  width: 28px;
  height: 28px;
}
.header__phone-tel {
  font-family: var(--ff-crimson);
  font-size: 32px;
  color: var(--c-navy);
  letter-spacing: 2px;
  line-height: 1;
}
.header__phone-note {
  background: var(--c-gold-light);
  border-radius: 3px;
  padding: 1px 0 4px;
  line-height: 1;
}
.header__phone-note span {
  font-size: 13px;
  color: var(--c-white);
  letter-spacing: 0.5px;
}
.header__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--c-pink);
  border-radius: 3px;
  padding: 0;
  z-index: 1001;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 1024px) {
  .header__hamburger {
    display: flex;
    margin-left: auto;
  }
}
.header__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-white);
  transition: all 0.3s ease;
}
.header__hamburger span:nth-child(3) {
  display: none;
}
.header__hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 4px);
}
.header__hamburger.is-active span:nth-child(2) {
  transform: rotate(-45deg) translate(3px, -4px);
}

.header-sp-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--c-bg);
  z-index: 999;
  padding: 90px 0 0;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  flex-direction: column;
}
@media (max-width: 1200px) {
  .header-sp-menu {
    display: flex;
  }
}
.header-sp-menu.is-active {
  opacity: 1;
  visibility: visible;
}
.header-sp-menu__nav {
  padding: 0 30px 48px;
}
.header-sp-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-sp-menu__list li a {
  display: block;
  padding: 10px 0;
  font-family: var(--ff-gothic);
  font-weight: 500;
  font-size: 16px;
  color: var(--c-navy);
}
.header-sp-menu__bottom {
  padding: 0 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--c-white);
  margin: 0 20px;
  border-radius: 8px;
}
.header-sp-menu__phone {
  background: var(--c-white);
  padding: 20px 0;
  text-align: center;
  border-bottom: 1px solid var(--c-gold-light);
}
.header-sp-menu__phone-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 4px;
}
.header-sp-menu__phone-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.header-sp-menu__phone-icon {
  width: 28px;
  height: 28px;
}
.header-sp-menu__phone-tel {
  font-family: var(--ff-crimson);
  font-size: 36px;
  color: var(--c-navy);
  letter-spacing: 2px;
  line-height: 1;
}
.header-sp-menu__phone-note {
  background: var(--c-gold-light);
  border-radius: 3px;
  padding: 2px 0 4px;
  margin-top: 6px;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
.header-sp-menu__phone-note span {
  font-size: 13px;
  color: var(--c-white);
  letter-spacing: 0.5px;
  line-height: 1;
}

.btn--sp-menu {
  width: 100%;
  height: 60px;
  font-size: 18px;
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  padding-top: 80px;
}
@media (max-width: 640px) {
  .hero {
    min-height: 700px;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
@media (max-width: 640px) {
  .hero__bg {
    height: 400px;
  }
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 100px 80px 60px;
}
@media (max-width: 1024px) {
  .hero__content {
    padding: 80px 40px 50px;
  }
}
@media (max-width: 640px) {
  .hero__content {
    padding: 10px 20px 40px;
  }
}
.hero__sub {
  font-family: var(--ff-mincho);
  font-size: 22px;
  color: var(--c-pink);
  margin-bottom: 4px;
}
@media (max-width: 640px) {
  .hero__sub {
    font-size: 17px;
  }
}
.hero__sub-line {
  display: flex;
  width: 268px;
  margin-bottom: 24px;
}
@media (max-width: 640px) {
  .hero__sub-line {
    width: 200px;
  }
}
.hero__sub-line-left, .hero__sub-line-right {
  flex: 1;
  height: 10px;
  border-top: 1px solid var(--c-gold);
}
.hero__sub-line-left {
  border-right: 1px solid var(--c-gold);
  border-top-right-radius: 18px;
}
.hero__sub-line-right {
  border-left: 1px solid var(--c-gold);
  border-top-left-radius: 18px;
}
.hero__title {
  font-family: var(--ff-mincho);
  font-weight: 500;
  font-size: 48px;
  color: var(--c-navy-mid);
  line-height: 1.4;
  letter-spacing: 1.2px;
  margin-bottom: 40px;
}
.hero__title--accent {
  color: var(--c-gold);
}
@media (max-width: 1024px) {
  .hero__title {
    font-size: 38px;
  }
}
@media (max-width: 640px) {
  .hero__title {
    font-size: 25px;
    margin-bottom: 28px;
  }
}
.hero__badges {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .hero__badges {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 640px) {
  .hero__badges {
    gap: 8px;
  }
}
.hero__badge {
  width: 170px;
  height: 120px;
  background: var(--c-cream);
  border-radius: 8px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-align: center;
}
@media (max-width: 1024px) {
  .hero__badge {
    width: calc(50% - 5px);
    height: 100px;
  }
}
@media (max-width: 640px) {
  .hero__badge {
    width: calc(50% - 4px);
    height: 90px;
  }
}
.hero__badge-label {
  font-family: var(--ff-gothic);
  font-size: 15px;
  color: var(--c-navy);
  line-height: 1.4;
}
.hero__badge-value {
  font-family: var(--ff-mincho);
  font-weight: 500;
  color: var(--c-pink);
}
.hero__badge-value em {
  font-style: normal;
  font-size: 46px;
  line-height: 1;
}
@media (max-width: 640px) {
  .hero__badge-value em {
    font-size: 36px;
  }
}
.hero__badge-value::after {
  content: "";
}
.hero__badge-value--free {
  font-family: var(--ff-mincho);
  font-weight: 700;
  font-size: 32px;
}
.hero__badge-label-large {
  font-family: var(--ff-mincho);
  font-weight: 900;
  font-size: 26px;
  color: var(--c-pink);
  line-height: 1.3;
}
.hero__badge-label-large--small {
  font-size: 20px;
}
@media (max-width: 640px) {
  .hero__badge-label-large--small {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .hero__badge-label-large {
    font-size: 20px;
  }
}
.hero__cta {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .hero__cta {
    flex-direction: column;
    gap: 12px;
  }
}
.hero__note {
  font-size: 16px;
  color: var(--c-text);
  letter-spacing: -0.8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  font-family: var(--ff-mincho);
  font-weight: 700;
  font-size: 22px;
  color: var(--c-white);
  padding: 14px 30px;
  position: relative;
  transition: opacity 0.2s ease;
  cursor: pointer;
}
.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.btn--primary {
  background: var(--c-pink);
  width: 350px;
  height: 80px;
}
@media (max-width: 1024px) {
  .btn--primary {
    width: 100%;
    max-width: 400px;
    height: 64px;
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .btn--primary {
    max-width: 100%;
    height: 56px;
    font-size: 16px;
  }
}
.btn--secondary {
  background: var(--c-navy-light);
  width: 350px;
  height: 80px;
}
@media (max-width: 1024px) {
  .btn--secondary {
    width: 100%;
    max-width: 400px;
    height: 64px;
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .btn--secondary {
    max-width: 100%;
    height: 56px;
    font-size: 16px;
  }
}
.btn--medium {
  width: 330px;
  height: 64px;
  font-size: 18px;
  border-radius: 6px;
}
@media (max-width: 640px) {
  .btn--medium {
    width: 100%;
    height: 56px;
    font-size: 16px;
  }
}
.btn--large {
  width: 330px;
  height: 76px;
  font-size: 22px;
  border-radius: 6px;
}
@media (max-width: 640px) {
  .btn--large {
    width: 100%;
    height: 56px;
    font-size: 16px;
  }
}
.btn--submit {
  width: 330px;
  height: 50px;
  font-size: 18px;
  border-radius: 6px;
  border: none;
}
@media (max-width: 640px) {
  .btn--submit {
    width: 100%;
  }
}
.btn__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.btn__icon--small {
  width: 26px;
  height: 26px;
}
.btn__arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--c-white);
  border-right: 2px solid var(--c-white);
}

.worries {
  padding: 80px 0 100px;
}
@media (max-width: 1024px) {
  .worries {
    padding: 40px 20px 60px;
  }
}
@media (max-width: 640px) {
  .worries {
    padding: 0 20px 40px;
  }
}
.worries .section-inner {
  background: var(--c-beige);
  border-radius: 16px;
  padding-top: 60px;
  padding-bottom: 46px;
}
.worries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .worries__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 640px) {
  .worries__grid {
    grid-template-columns: 1fr;
  }
}

.worry-card {
  background: var(--c-bg);
  border-radius: 6px;
  padding: 48px 26px 20px;
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media (max-width: 640px) {
  .worry-card {
    min-height: auto;
    padding: 40px 20px 18px;
    gap: 14px;
  }
}
.worry-card__number {
  position: absolute;
  top: 9px;
  left: 19px;
  font-family: var(--ff-mincho);
  font-weight: 700;
  font-size: 65px;
  color: var(--c-pink-dark);
  opacity: 0.07;
  line-height: 1;
}
.worry-card__title {
  font-family: var(--ff-mincho);
  font-weight: 700;
  font-size: 22px;
  color: var(--c-navy);
  line-height: 1.4;
}
@media (max-width: 640px) {
  .worry-card__title {
    font-size: 19px;
  }
}
.worry-card__text {
  font-family: var(--ff-gothic);
  font-size: 17px;
  color: var(--c-navy);
  line-height: 1.6;
}
@media (max-width: 640px) {
  .worry-card__text {
    font-size: 15px;
  }
}

.message {
  padding: 0 0 14px;
}
.message__heading {
  font-family: var(--ff-mincho);
  font-weight: 500;
  font-size: 36px;
  color: var(--c-pink-dark);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .message__heading {
    font-size: 28px;
  }
}
@media (max-width: 640px) {
  .message__heading {
    font-size: 22px;
    margin-bottom: 40px;
  }
}
.message__body {
  max-width: 970px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 19px;
  color: var(--c-navy);
  line-height: 1.8;
}
.message__body p {
  margin-bottom: 20px;
  line-height: 1.46;
}
@media (max-width: 1024px) {
  .message__body {
    font-size: 17px;
  }
}
@media (max-width: 640px) {
  .message__body {
    font-size: 16px;
    text-align: left;
  }
}

.cta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: var(--c-white);
  border-radius: 5px;
  padding: 15px 40px;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .cta-bar {
    flex-direction: column;
    gap: 20px;
    padding: 25px 30px;
  }
}
.cta-bar--large {
  padding: 30px 40px;
  max-width: 860px;
}
@media (max-width: 1024px) {
  .cta-bar--large {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .cta-bar--large {
    padding: 20px;
  }
}
.cta-bar__phone {
  text-align: center;
  width: 330px;
  max-width: 100%;
}
.cta-bar__phone-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: -0.7px;
}
.cta-bar__phone-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.cta-bar__phone-icon {
  width: 28px;
  height: 28px;
}
.cta-bar__phone-icon--lg {
  width: 34px;
  height: 34px;
}
.cta-bar__phone-tel {
  font-family: var(--ff-crimson);
  font-size: 37px;
  color: var(--c-navy);
  letter-spacing: 2.5px;
  line-height: 1;
}
@media (max-width: 640px) {
  .cta-bar__phone-tel {
    font-size: 28px;
  }
}
.cta-bar__phone-tel--lg {
  font-size: 46px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .cta-bar__phone-tel--lg {
    font-size: 32px;
  }
}
.cta-bar__phone-note {
  background: var(--c-gold-light);
  border-radius: 3px;
  padding: 0 0 4px;
  margin-top: 2px;
  max-width: 272px;
  margin-left: auto;
  margin-right: auto;
}
.cta-bar__phone-note span {
  font-size: 13px;
  color: var(--c-white);
  letter-spacing: 0.65px;
  line-height: 1;
}
.cta-bar__divider {
  width: 1px;
  background: #ccc;
  align-self: stretch;
}
@media (max-width: 1024px) {
  .cta-bar__divider {
    width: 100%;
    height: 1px;
  }
}

.reasons {
  padding: 80px 0 0;
}
@media (max-width: 640px) {
  .reasons {
    padding-top: 40px;
  }
}

.reason {
  display: flex;
  align-items: center;
  gap: 62px;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .reason {
    flex-direction: column !important;
    gap: 30px;
  }
}
@media (max-width: 640px) {
  .reason:last-child {
    margin-bottom: 0;
  }
}
.reason--right {
  gap: 91px;
}
@media (max-width: 1024px) {
  .reason--right {
    gap: 30px;
  }
}
.reason__images {
  flex-shrink: 0;
  width: 550px;
}
@media (max-width: 1024px) {
  .reason__images {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    order: 1;
  }
}
.reason__img--main {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 550/360;
}
.reason__img--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reason__content {
  flex: 1;
}
@media (max-width: 1024px) {
  .reason__content {
    text-align: center;
    order: 2;
  }
}
.reason__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-pink);
  border-radius: 20px;
  padding: 2px 10px;
  font-family: var(--ff-crimson);
  font-weight: 600;
  font-size: 12px;
  color: var(--c-white);
  letter-spacing: 0.6px;
  margin-bottom: 9px;
}
.reason__title {
  font-family: var(--ff-mincho);
  font-weight: 600;
  font-size: 30px;
  color: var(--c-gold);
  letter-spacing: 1.8px;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media (max-width: 640px) {
  .reason__title {
    font-size: 24px;
  }
}
.reason__text {
  font-family: var(--ff-gothic);
  font-size: 17px;
  color: var(--c-navy-mid);
  line-height: 2;
}
@media (max-width: 640px) {
  .reason__text {
    font-size: 15px;
  }
}

.services {
  padding: 60px 0 100px;
}
@media (max-width: 640px) {
  .services {
    padding: 30px 0 48px;
  }
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1116px;
  margin: 0 auto 40px;
}
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 640px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.services__note {
  text-align: center;
  font-size: 16px;
  color: var(--c-navy);
}

.service-card {
  background: rgba(252, 251, 249, 0.75);
  border-radius: 10px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 223px;
}
@media (max-width: 640px) {
  .service-card {
    min-height: auto;
  }
}
.service-card__title {
  font-family: var(--ff-gothic);
  font-weight: 500;
  font-size: 22px;
  color: var(--c-gold);
  text-align: center;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}
.service-card__desc {
  font-family: var(--ff-gothic);
  font-size: 16px;
  color: var(--c-text);
  line-height: 1.6;
}
.service-card__price {
  text-align: center;
  color: var(--c-navy-mid);
  margin-top: auto;
}
.service-card__price--text {
  font-family: var(--ff-gothic);
  font-weight: 500;
  font-size: 23px;
  color: var(--c-navy-mid);
  text-align: center;
  margin-top: auto;
}
.service-card__yen {
  font-family: var(--ff-gothic);
  font-weight: 700;
  font-size: 21px;
}
.service-card__amount {
  font-family: var(--ff-gothic);
  font-weight: 700;
  font-size: 30px;
}

.flow {
  padding: 80px 0 100px;
  background: white;
}
@media (max-width: 640px) {
  .flow {
    padding: 40px 0 48px;
  }
}
.flow__steps {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding-left: 34px;
}
@media (max-width: 640px) {
  .flow__steps {
    padding-left: 0;
  }
}
.flow__line {
  position: absolute;
  left: 67px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: var(--c-gold-light);
  border-radius: 2px;
}
@media (max-width: 640px) {
  .flow__line {
    left: 33px;
  }
}
.flow__step {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding-bottom: 40px;
}
@media (max-width: 640px) {
  .flow__step {
    padding-bottom: 18px;
  }
}
.flow__step::before {
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  background: var(--c-gold-light);
  position: absolute;
  left: 32px;
  top: 0;
}
@media (max-width: 640px) {
  .flow__step::before {
    width: 2px;
    left: 18px;
    top: 4px;
  }
}
.flow__step:last-child {
  padding-bottom: 0;
}
.flow__step:last-child::before {
  display: none;
}
.flow__step-number {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--c-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mincho);
  font-weight: 500;
  font-size: 28px;
  color: var(--c-white);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 640px) {
  .flow__step-number {
    width: 38px;
    height: 38px;
    font-size: 22px;
    top: 4px;
    padding-bottom: 3px;
  }
}
.flow__step-content {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding-top: 10px;
}
.flow__step-title {
  font-family: var(--ff-mincho);
  font-weight: 500;
  font-size: 28px;
  color: var(--c-pink-dark);
  line-height: 1;
}
@media (max-width: 640px) {
  .flow__step-title {
    font-size: 18px;
  }
}
.flow__step-text {
  font-family: var(--ff-gothic);
  font-size: 16px;
  color: var(--c-text);
}
@media (max-width: 640px) {
  .flow__step-text {
    font-size: 14px;
  }
}

.faq {
  padding: 80px 0 100px;
}
@media (max-width: 640px) {
  .faq {
    padding: 40px 0 48px;
  }
}
.faq__list {
  max-width: 908px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq__item {
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 640px) {
  .faq__item {
    border-radius: 8px;
  }
}
.faq__item.is-open .faq__question {
  border-radius: 8px 8px 0 0;
}
@media (max-width: 640px) {
  .faq__item.is-open .faq__question {
    border-radius: 4px 4px 0 0;
  }
}
.faq__item.is-open .faq__toggle::after {
  transform: translateX(-50%) rotate(90deg);
}
.faq__item.is-open .faq__answer {
  padding: 24px;
  max-height: 400px;
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--c-beige);
  padding: 14px 34px;
  font-family: var(--ff-mincho);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-text);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
  border-radius: 8px;
}
.faq__question:hover {
  background: #d8c7b0;
}
@media (max-width: 640px) {
  .faq__question {
    font-size: 16px;
    padding: 12px 20px;
    line-height: 1.3;
  }
}
.faq__toggle {
  display: block;
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
  margin-left: 20px;
}
.faq__toggle::before, .faq__toggle::after {
  content: "";
  position: absolute;
  background: var(--c-text);
  transition: transform 0.3s ease;
}
.faq__toggle::before {
  width: 18px;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.faq__toggle::after {
  width: 2px;
  height: 18px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.faq__answer {
  background: var(--c-beige-light);
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq__answer p {
  font-family: var(--ff-gothic);
  font-size: 17px;
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 8px;
}
.faq__answer p:last-child {
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .faq__answer p {
    font-size: 15px;
  }
}

.profile {
  background: var(--c-beige);
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .profile {
    padding: 48px 0;
  }
}
.profile__inner {
  max-width: var(--w-inner);
  margin: 0 auto;
  display: flex;
  gap: 80px;
  padding: 0 20px;
}
@media (max-width: 1024px) {
  .profile__inner {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.profile__photo-area {
  flex-shrink: 0;
  width: 422px;
}
@media (max-width: 1024px) {
  .profile__photo-area {
    width: 300px;
    display: none;
  }
}
@media (max-width: 640px) {
  .profile__photo-area {
    width: 240px;
  }
}
.profile__photo-frame {
  border: 1px solid var(--c-gold-light);
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 390/605;
}
@media (max-width: 640px) {
  .profile__photo-frame {
    aspect-ratio: 1;
    border: none;
  }
}
.profile__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile__info {
  flex: 1;
}
@media (max-width: 1024px) {
  .profile__info {
    padding-top: 0;
    text-align: center;
  }
}
.profile__info .profile__photo-frame {
  display: none;
}
@media (max-width: 1024px) {
  .profile__info .profile__photo-frame {
    display: block;
    margin: 0 auto 10px;
    width: 300px;
  }
}
@media (max-width: 640px) {
  .profile__info .profile__photo-frame {
    width: 90%;
  }
}
.profile__heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .profile__heading {
    align-items: center;
  }
}
.profile__heading-deco {
  width: 139px;
  height: auto;
}
.profile__heading-label {
  font-family: var(--ff-mincho);
  font-size: 20px;
  color: var(--c-pink-dark);
}
.profile__name {
  font-family: var(--ff-mincho);
  font-weight: 500;
  font-size: 30px;
  color: var(--c-navy);
  margin-bottom: 4px;
}
@media (max-width: 1024px) {
  .profile__name {
    font-size: 26px;
  }
}
.profile__role {
  font-family: var(--ff-gothic);
  font-size: 16px;
  color: var(--c-navy);
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .profile__role {
    font-size: 14px;
  }
}
.profile__divider {
  border: none;
  border-top: 1px solid var(--c-gold-light);
  margin-bottom: 24px;
}
.profile__bio {
  font-family: var(--ff-gothic);
  font-size: 16px;
  color: var(--c-navy);
  line-height: 1.8;
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .profile__bio {
    font-size: 15px;
    text-align: left;
  }
}
.profile__bio p {
  margin-bottom: 8px;
}
.profile__career {
  background: rgba(252, 251, 249, 0.8);
  border-radius: 5px;
  padding: 25px 30px;
  position: relative;
}
@media (max-width: 1024px) {
  .profile__career {
    text-align: left;
  }
}
.profile__career .profile__career-deco {
  position: absolute;
  display: block;
  right: 20px;
  bottom: 20px;
}
@media (max-width: 640px) {
  .profile__career .profile__career-deco {
    display: none;
  }
}
.profile__career-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.profile__career-heading img {
  width: 12px;
  height: auto;
}
.profile__career-heading span {
  font-family: var(--ff-mincho);
  font-weight: 700;
  font-size: 22px;
  color: var(--c-pink);
  line-height: 1.8;
}
.profile__career-list {
  list-style: disc;
  padding-left: 24px;
  font-family: var(--ff-gothic);
  font-size: 16px;
  color: var(--c-navy-light);
  line-height: 1.7;
}
.profile__career-list li {
  list-style: disc;
  margin-bottom: 2px;
}

.final-cta {
  padding: 80px 0;
}
@media (max-width: 640px) {
  .final-cta {
    padding: 48px 0 0;
  }
}
.final-cta__box {
  border: 2px solid #cfc0ad;
  border-radius: 24px;
  padding: 70px 100px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
@media (max-width: 1024px) {
  .final-cta__box {
    padding: 50px 40px;
  }
}
@media (max-width: 640px) {
  .final-cta__box {
    padding: 30px 20px;
    gap: 30px;
    border-radius: 16px;
  }
}
.final-cta__badge {
  background: var(--c-navy-mid);
  padding: 10px 20px;
  font-family: var(--ff-gothic);
  font-size: 22px;
  color: var(--c-white);
  line-height: 1;
}
@media (max-width: 640px) {
  .final-cta__badge {
    font-size: 16px;
    padding: 8px 14px;
  }
}
.final-cta__heading {
  font-family: var(--ff-mincho);
  font-weight: 500;
  font-size: 36px;
  color: var(--c-pink);
  text-align: center;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .final-cta__heading {
    font-size: 28px;
  }
}
@media (max-width: 640px) {
  .final-cta__heading {
    font-size: 22px;
  }
}
.final-cta__body {
  font-family: var(--ff-gothic);
  font-size: 19px;
  color: var(--c-navy);
  text-align: center;
  line-height: 1.8;
}
.final-cta__body p {
  margin-bottom: 4px;
}
@media (max-width: 640px) {
  .final-cta__body {
    font-size: 16px;
    text-align: left;
  }
}

.contact {
  padding: 80px 0 100px;
}
@media (max-width: 640px) {
  .contact {
    padding: 48px 0;
  }
}
.contact__title {
  font-family: var(--ff-mincho);
  font-weight: 500;
  font-size: 30px;
  color: var(--c-pink);
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 640px) {
  .contact__title {
    font-size: 24px;
  }
}
.contact__form-wrapper {
  max-width: 786px;
  margin: 0 auto;
  background: var(--c-white);
  border-radius: 14px;
  padding: 60px 80px 70px;
}
@media (max-width: 1024px) {
  .contact__form-wrapper {
    padding: 40px;
  }
}
@media (max-width: 640px) {
  .contact__form-wrapper {
    padding: 28px 20px 36px;
    border-radius: 10px;
  }
}

.contact-form__group {
  margin-bottom: 28px;
}
.contact-form__label {
  display: block;
  font-family: var(--ff-gothic);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-text);
  margin-bottom: 8px;
}
.contact-form__required {
  display: inline-block;
  background: var(--c-pink);
  color: var(--c-white);
  font-size: 12px;
  font-weight: 500;
  padding: 1px 8px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}
.contact-form__row {
  display: flex;
  gap: 20px;
}
@media (max-width: 640px) {
  .contact-form__row {
    flex-direction: column;
    gap: 16px;
  }
}
.contact-form__field {
  flex: 1;
}
.contact-form__field-label {
  display: block;
  font-size: 14px;
  color: var(--c-text);
  margin-bottom: 4px;
}
.contact-form__input, .contact-form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  font-family: var(--ff-gothic);
  font-size: 16px;
  color: var(--c-text);
  background: var(--c-white);
  transition: border-color 0.2s ease;
  outline: none;
}
.contact-form__input:focus, .contact-form__textarea:focus {
  border-color: var(--c-gold-light);
  box-shadow: 0 0 0 3px rgba(167, 143, 112, 0.15);
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder {
  color: #aaa;
}
.contact-form__input.is-error, .contact-form__textarea.is-error {
  border-color: var(--c-pink);
}
.contact-form__textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-form__counter {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}
.contact-form__error {
  display: block;
  font-size: 13px;
  color: var(--c-pink);
  margin-top: 4px;
  min-height: 18px;
}
.contact-form__submit {
  text-align: center;
  margin-top: 40px;
}

.contact-complete {
  text-align: center;
  padding: 60px 20px;
}
.contact-complete__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--c-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-complete__icon svg {
  width: 36px;
  height: 36px;
}
.contact-complete__title {
  font-family: var(--ff-mincho);
  font-weight: 700;
  font-size: 24px;
  color: var(--c-pink-dark);
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .contact-complete__title {
    font-size: 20px;
  }
}
.contact-complete__text {
  font-family: var(--ff-gothic);
  font-size: 16px;
  color: var(--c-text);
  line-height: 1.8;
  margin-bottom: 32px;
}
@media (max-width: 640px) {
  .contact-complete__text {
    font-size: 15px;
  }
}
.contact-complete__retry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--c-white);
  border: 2px solid var(--c-beige);
  border-radius: 8px;
  padding: 14px 32px;
  font-family: var(--ff-gothic);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-navy);
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-complete__retry:hover {
  background: var(--c-beige-light);
  border-color: var(--c-gold-light);
}

.privacy {
  padding: 120px 0 80px;
}
@media (max-width: 1024px) {
  .privacy {
    padding: 100px 0 60px;
  }
}
.privacy__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}
.privacy__title {
  font-family: var(--ff-mincho);
  font-weight: 500;
  font-size: 36px;
  color: var(--c-navy);
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 640px) {
  .privacy__title {
    font-size: 26px;
    margin-bottom: 32px;
  }
}
.privacy__content {
  background: var(--c-white);
  border-radius: 14px;
  padding: 60px 64px;
}
@media (max-width: 1024px) {
  .privacy__content {
    padding: 40px 32px;
  }
}
@media (max-width: 640px) {
  .privacy__content {
    padding: 28px 20px;
    border-radius: 10px;
  }
}
.privacy__lead {
  font-family: var(--ff-gothic);
  font-size: 16px;
  color: var(--c-text);
  line-height: 1.8;
  margin-bottom: 40px;
}
.privacy__section {
  margin-bottom: 36px;
}
.privacy__section:last-of-type {
  margin-bottom: 40px;
}
.privacy__section p {
  font-family: var(--ff-gothic);
  font-size: 16px;
  color: var(--c-text);
  line-height: 1.8;
  margin-bottom: 12px;
}
@media (max-width: 640px) {
  .privacy__section p {
    font-size: 15px;
  }
}
.privacy__heading {
  font-family: var(--ff-mincho);
  font-weight: 700;
  font-size: 20px;
  color: var(--c-navy);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-beige);
}
@media (max-width: 640px) {
  .privacy__heading {
    font-size: 18px;
  }
}
.privacy__list {
  list-style: disc;
  padding-left: 24px;
  font-family: var(--ff-gothic);
  font-size: 16px;
  color: var(--c-text);
  line-height: 1.8;
  margin-bottom: 8px;
}
.privacy__list li {
  list-style: disc;
  margin-bottom: 4px;
}
@media (max-width: 640px) {
  .privacy__list {
    font-size: 15px;
  }
}
.privacy__contact {
  background: var(--c-beige-light);
  border-radius: 8px;
  padding: 20px 24px;
  margin-top: 12px;
}
.privacy__contact p {
  margin-bottom: 4px;
  font-size: 15px;
}
.privacy__contact p strong {
  font-weight: 700;
  color: var(--c-navy);
}
.privacy__contact p a {
  color: var(--c-pink-dark);
  text-decoration: underline;
}
.privacy__contact p a:hover {
  text-decoration: none;
}
.privacy__date {
  font-family: var(--ff-gothic);
  font-size: 15px;
  color: #888;
  text-align: right;
}

.footer {
  background: var(--c-navy-light);
  color: var(--c-white);
  padding: 40px 0;
}
@media (max-width: 640px) {
  .footer {
    padding-bottom: 20px;
  }
}
.footer__inner {
  max-width: var(--w-inner);
  margin: 0 auto;
  padding: 0 20px;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .footer__top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.footer__logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__logo-img {
  height: 47px;
  width: auto;
}
.footer__logo-text {
  display: none;
}
.footer__nav {
  display: flex;
  gap: 20px;
}
@media (max-width: 1024px) {
  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
}
@media (max-width: 640px) {
  .footer__nav {
    gap: 10px;
    display: none;
  }
}
.footer__nav a {
  font-size: 15px;
  color: var(--c-white);
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.footer__nav a:hover {
  opacity: 0.7;
}
@media (max-width: 640px) {
  .footer__nav a {
    font-size: 13px;
  }
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 20px;
}
@media (max-width: 1024px) {
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
.footer__address {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.75px;
}
@media (max-width: 640px) {
  .footer__address {
    font-size: 13px;
  }
}
.footer__links {
  margin-left: auto;
}
@media (max-width: 1024px) {
  .footer__links {
    margin-left: 0;
  }
}
.footer__links a {
  font-size: 13px;
  color: var(--c-white);
  transition: opacity 0.2s ease;
}
.footer__links a:hover {
  opacity: 0.7;
}
.footer__copy {
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: var(--c-white);
  letter-spacing: 0.65px;
  margin-top: 12px;
}
@media (max-width: 640px) {
  .footer__copy {
    font-size: 10px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/*# sourceMappingURL=style.css.map */
