/* =========================
   Base
========================= */
html {
  font-size: 62.5%;
}

:root {
  --color-text: #1f2430;
  --color-subtext: #374151;
  --color-muted: #5b6573;
  --color-border: #edf2f4;
  --color-tiffany: #81d8d0;
  --color-tiffany-soft: #e9fbfb;
  --color-pink: #c56a93;
  --color-pink-dark: #b95484;
}

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

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-text);
  background: #fff;
  line-height: 1.6;
}

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

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

.l-container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

/* =========================
   Header / Global Menu
========================= */
.site-header {
  position: relative;
  z-index: 300;
  background: #fff;
  border-bottom: 1px solid #ebeff2;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 0 4px;
}

.site-logo {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  display: block;
  width: auto;
  height: 85px;
  object-fit: contain;
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.header-line-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  background: #2fbe3b;
  color: #fff;
  text-decoration: none;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity .3s ease, transform .3s ease;
}

.header-line-btn:hover {
  opacity: .92;
  transform: translate(-50%, calc(-50% - 1px));
}

.header-line-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: #fff;
  line-height: 1;
}

.header-line-btn__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.header-line-btn__icon svg path {
  fill: currentColor;
  stroke: none;
}

.header-line-btn__text {
  display: inline-block;
  line-height: 1;
}

.menu-button {
  appearance: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  background: #111827;
  border-radius: 999px;
}

/* =========================
   Global Menu
========================= */
.global-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.global-menu[hidden] {
  display: none !important;
}

.global-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.global-menu__panel {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.global-menu__head {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 20px 32px 16px;
  display: grid;
  grid-template-columns: 140px 1fr 44px;
  align-items: center;
  gap: 20px;
}

.global-menu__logo img {
  display: block;
  width: auto;
  height: 62px;
  object-fit: contain;
}

.global-menu__line-btn {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  background: #2fbe3b;
  color: #fff;
  text-decoration: none;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.global-menu__line-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: #fff;
  line-height: 1;
}

.global-menu__line-btn-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.global-menu__line-btn-icon svg path {
  fill: currentColor;
  stroke: none;
}

.global-menu__close {
  appearance: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 0;
  position: relative;
  cursor: pointer;
  justify-self: end;
}

.global-menu__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 2px;
  background: #111827;
  border-radius: 999px;
}

.global-menu__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.global-menu__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.global-menu__nav {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 32px 28px;
  flex: 1 1 auto;
}

.global-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #edf0f2;
}

.global-menu__list li {
  border-bottom: 1px solid #edf0f2;
}

.global-menu__list a {
  display: block;
  padding: 22px 8px;
  color: #111827;
  text-decoration: none;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 600;
  transition: opacity .3s ease, padding-left .3s ease;
}

.global-menu__list a:hover {
  opacity: .72;
  padding-left: 16px;
}

.global-menu__bottom {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 32px 26px;
}

.global-menu__line-btn--bottom {
  display: flex;
  width: 100%;
  min-height: 60px;
  font-size: 1.7rem;
}

body.is-menu-open {
  overflow: hidden;
}

/* =========================
   Mobile
========================= */
@media screen and (max-width: 767px) {
  .header-inner {
    min-height: 72px;
    padding: 0 2px;
  }

  .site-logo img {
    height: 70px;
  }

  .header-line-btn {
    min-height: 40px;
    padding: 0 14px;
    gap: 8px;
    font-size: 1.35rem;
    max-width: calc(100% - 110px);
  }

  .header-line-btn__icon {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
  }

  .menu-button {
    width: 38px;
    height: 38px;
  }

  .menu-button span {
    width: 20px;
  }

  .global-menu {
    padding: 0;
  }

  .global-menu__overlay {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .global-menu__panel {
    width: 100%;
    min-height: 100dvh;
    margin: 0;
    border-radius: 0;
    overflow-y: auto;
    box-shadow: none;
  }

  .global-menu__head {
    width: 100%;
    margin: 0;
    padding: 16px 18px 14px;
    grid-template-columns: 52px 1fr 32px;
    gap: 10px;
  }

  .global-menu__logo img {
    height: 40px;
  }

  .global-menu__line-btn {
    min-height: 40px;
    padding: 0 14px;
    gap: 8px;
    font-size: 1.35rem;
  }

  .global-menu__line-btn-icon {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
  }

  .global-menu__close {
    width: 32px;
    height: 32px;
  }

  .global-menu__close span {
    width: 20px;
  }

  .global-menu__nav {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .global-menu__list a {
    padding: 22px 18px;
    font-size: 1.9rem;
    line-height: 1.5;
  }

  .global-menu__list a:hover {
    padding-left: 18px;
  }

  .global-menu__bottom {
    width: 100%;
    margin-top: auto;
    padding: 22px 18px 24px;
  }

  .global-menu__line-btn--bottom {
    min-height: 48px;
    font-size: 1.5rem;
  }
}

/* =========================
   Front Hero
========================= */
.fv {
  padding: 56px 0 88px;
  background: #fff;
}

.fv-inner {
  min-height: calc(100vh - 92px - 56px);
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(420px, 1fr);
  align-items: center;
  gap: 70px;
}

.fv-logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv-logo {
  width: min(100%, 450px);
  object-fit: contain;
}

.fv-content {
  max-width: 580px;
}

.fv-copy-top {
  margin: 0 0 22px;
  font-size: clamp(2rem, 2vw, 2.8rem);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: var(--color-text);
}

.fv-copy-main {
  margin: 0 0 36px;
  font-size: clamp(2.8rem, 3vw, 4.4rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: var(--color-text);
}

.fv-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.fv-btn {
  min-width: 210px;
  height: 58px;
  padding: 0 28px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.7rem;
  font-weight: 700;
  transition: .25s ease;
}

.fv-btn-icon {
  width: 1.8rem;
  height: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.fv-btn-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fv-btn--outline {
  border: 2px solid var(--color-tiffany);
  background: #fff;
  color: var(--color-subtext);
}

.fv-btn--outline:hover {
  background: #f5fcfe;
}

.fv-btn--primary {
  border: 2px solid #D8818A;
  background: #D8818A;
  color: #fff;
  box-shadow: 0 10px 24px rgba(199, 101, 147, 0.18);
}

.fv-btn--primary:hover {
  opacity: .96;
  transform: translateY(-1px);
}

/* =========================
   Top News
========================= */
.top-news {
  padding: 0 0 90px;
}

.top-news__box {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  padding: 32px 36px;
}

.top-news__title {
  margin: 0 0 20px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
}

.top-news__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.top-news__item {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--color-text);
  transition: .25s ease;
}

.top-news__item:hover {
  opacity: .8;
}

.top-news__item--empty {
  pointer-events: none;
}

.top-news__date {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--color-muted);
}

.top-news__label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--color-tiffany);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.top-news__text {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--color-text);
}

/* =========================
   Online Step
========================= */
.online-step {
  padding: 0 0 110px;
}

.online-step__head {
  text-align: center;
  margin-bottom: 54px;
}

.online-step__title {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 2.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #111827;
}

.online-step__lead {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--color-subtext);
}

.online-step__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.online-step__card {
  text-align: center;
}

.online-step__icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--color-tiffany);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

.online-step__icon svg {
  width: 34px;
  height: 34px;
  display: block;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}


.online-step__step {
  margin: 0 0 20px;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-text);
}

.online-step__image {
  margin-bottom: 18px;
  border-radius: 24px;
  overflow: hidden;
}

.online-step__image img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
}

.online-step__card-title {
  margin: 0 0 12px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text);
}

.online-step__card-text {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.9;
  color: var(--color-subtext);
}

/* =========================
   Top CTA
========================= */
.top-cta {
  padding: 10px 0 120px;
}

.top-cta__button {
  width: min(100%, 340px);
  min-height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #D8818A,#D8818A );
  color: #fff;
  box-shadow: 0 14px 28px rgba(197, 106, 147, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  transition: .25s ease;
}

.top-cta__button:hover {
  opacity: .95;
  transform: translateY(-2px);
}

.top-cta__icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.top-cta__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================
   Top Reason
========================= */
.top-reason {
  padding: 0 0 120px;
}

.top-reason__head {
  text-align: center;
  margin-bottom: 44px;
}

.top-reason__title {
  margin: 0;
  font-size: clamp(2.6rem, 2.8vw, 4.2rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #111827;
}

.top-reason__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.top-reason__card {
  min-height: 280px;
  padding: 26px 24px 24px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.top-reason__icon {
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: var(--color-tiffany-soft);
  color: var(--color-tiffany);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

.top-reason__icon svg {
  width: 2.2rem;
  height: 2.2rem;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.top-reason__card-title {
  margin: 0 0 12px;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text);
}

.top-reason__card-text {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.9;
  color: var(--color-subtext);
}

/* =========================
   Responsive
========================= */
@media (max-width: 1024px) {
  .fv-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .fv-content {
    max-width: 100%;
  }

  .fv-buttons {
    justify-content: center;
  }

  .fv-logo {
    width: min(100%, 280px);
  }

  .top-news {
    padding-bottom: 72px;
  }

  .top-news__box {
    padding: 28px 24px;
  }

  .top-news__item {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .top-news__text {
    width: 100%;
  }

  .online-step {
    padding-bottom: 88px;
  }

  .online-step__cards {
    grid-template-columns: 1fr;
    gap: 46px;
    max-width: 720px;
    margin: 0 auto;
  }

  .top-cta {
    padding: 0 0 90px;
  }

  .top-cta__button {
    min-height: 64px;
    font-size: 2rem;
  }

  .top-reason {
    padding-bottom: 90px;
  }

  .top-reason__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .l-container {
    width: min(100% - 32px, 1200px);
  }

  .header-inner {
    min-height: 76px;
  }

  .site-logo img {
    width: 72px;
  }

  .header-actions {
    gap: 14px;
  }

  .header-line-btn {
    min-width: auto;
    height: 40px;
    padding: 0 14px;
    font-size: 1.3rem;
  }

  .menu-button {
    width: 36px;
    height: 36px;
  }

  .menu-button span {
    width: 22px;
  }

  .fv {
    padding: 36px 0 64px;
  }

  .fv-logo {
    width: min(100%, 220px);
  }

  .fv-copy-top {
    margin-bottom: 18px;
    font-size: 1.8rem;
    line-height: 1.7;
  }

  .fv-copy-main {
    margin-bottom: 26px;
    font-size: 2.4rem;
    line-height: 1.7;
  }

  .fv-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .fv-btn {
    width: 100%;
    min-width: 0;
    height: 54px;
    font-size: 1.6rem;
  }

  .top-news {
    padding-bottom: 56px;
  }

  .top-news__box {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .top-news__title {
    margin-bottom: 16px;
    font-size: 1.8rem;
  }

  .top-news__date {
    font-size: 1.3rem;
  }

  .top-news__label {
    min-width: 68px;
    height: 26px;
    font-size: 1.1rem;
  }

  .top-news__text {
    font-size: 1.4rem;
    line-height: 1.7;
  }

  .online-step {
    padding-bottom: 72px;
  }

  .online-step__head {
    margin-bottom: 36px;
  }

  .online-step__title {
    font-size: 2.6rem;
    line-height: 1.5;
  }

  .online-step__lead {
    font-size: 1.5rem;
    line-height: 1.9;
  }

  .online-step__cards {
    gap: 34px;
  }

.online-step__icon {
  width: 72px;
  height: 72px;
  margin-bottom: 14px;
}

.online-step__icon svg {
  width: 28px;
  height: 28px;
}

  .online-step__step {
    margin-bottom: 18px;
    font-size: 1.7rem;
  }

  .online-step__image {
    margin-bottom: 16px;
    border-radius: 18px;
  }

  .online-step__card-title {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }

  .online-step__card-text {
    font-size: 1.3rem;
    line-height: 1.9;
  }

  .top-cta {
    padding: 0 0 64px;
  }

  .top-cta__button {
    min-height: 58px;
    padding: 0 20px;
    border-radius: 14px;
    gap: 10px;
    font-size: 1.7rem;
  }

.top-cta__icon {
  width: 1.7rem;
  height: 1.7rem;
}

  .top-reason {
    padding-bottom: 72px;
  }

  .top-reason__head {
    margin-bottom: 28px;
  }

  .top-reason__title {
    font-size: 2.6rem;
  }

  .top-reason__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .top-reason__card {
    min-height: auto;
    padding: 22px 18px 20px;
    border-radius: 16px;
  }
.top-reason__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
}

.top-reason__icon svg {
  width: 1.9rem;
  height: 1.9rem;
}

  .top-reason__card-title {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }

  .top-reason__card-text {
    font-size: 1.35rem;
    line-height: 1.85;
  }
}

/* =========================
   Top Style
========================= */
.top-style {
  padding: 0 0 120px;
}

.top-style__head {
  text-align: center;
  margin-bottom: 42px;
}

.top-style__title {
  margin: 0;
  font-size: clamp(2.6rem, 2.8vw, 4.2rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #111827;
}

.top-style__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.top-style__card {
  padding: 28px 28px 30px;
  border: 2px solid var(--color-tiffany);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);

  display: flex;
  flex-direction: column;
}

.top-style__image {
  margin-bottom: 22px;
  border-radius: 18px;
  overflow: hidden;
}

.top-style__image img {
  width: 100%;
  aspect-ratio: 1 / 0.55;
  object-fit: cover;
}

.top-style__card-title {
  margin: 0 0 10px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  color: var(--color-text);
}

.top-style__sub {
  margin: 0 0 14px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  color: var(--color-tiffany);
}

.top-style__text {
  margin: 0 0 22px;
  font-size: 1.4rem;
  line-height: 1.9;
  text-align: center;
  color: var(--color-subtext);
}

.top-style__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #D8818A, #D8818A);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  transition: .25s ease;

  margin-top: auto; /* ←これ追加 */
}

.top-style__button:hover {
  opacity: .95;
  transform: translateY(-1px);
}
@media (max-width: 767px) {
  .top-style {
    padding-bottom: 72px;
  }

  .top-style__head {
    margin-bottom: 28px;
  }

  .top-style__title {
    font-size: 2.6rem;
  }

  .top-style__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .top-style__card {
    padding: 18px 18px 20px;
    border-radius: 18px;
  }

  .top-style__image {
    margin-bottom: 16px;
    border-radius: 14px;
  }

  .top-style__card-title {
    margin-bottom: 8px;
    font-size: 1.6rem;
  }

  .top-style__sub {
    margin-bottom: 10px;
    font-size: 1.35rem;
  }

  .top-style__text {
    margin-bottom: 16px;
    font-size: 1.3rem;
    line-height: 1.85;
  }

  .top-style__button {
    min-height: 46px;
    font-size: 1.4rem;
    border-radius: 10px;
  }
}


/* =========================
   Top Flow
========================= */
.top-flow {
  padding: 0 0 120px;
}

.top-flow__head {
  text-align: center;
  margin-bottom: 40px;
}

.top-flow__title {
  margin: 0;
  font-size: clamp(2.6rem, 2.8vw, 4.2rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #111827;
}

.top-flow__wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 56px;
  row-gap: 28px;
  align-items: start;
}

.top-flow__item {
  position: relative;
  text-align: center;
}

.top-flow__item:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 46px;
  right: -34px;
  transform: translateY(-50%);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-tiffany);
}

.top-flow__icon-wrap {
  position: relative;
  width: 120px;
  margin: 0 auto 20px;
}

.top-flow__num {
  position: absolute;
  top: -15px;
  left: -50px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #81d8d0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(47, 198, 207, 0.22);
}

.top-flow__icon {
  width: 96px;
  height: 96px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--color-tiffany);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-flow__icon svg {
  width: 3.6rem;
  height: 3.6rem;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.top-flow__item-title {
  margin: 0 0 10px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text);
}

.top-flow__item-text {
  max-width: 300px;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 1.9;
  color: var(--color-subtext);
}

/* =========================
   Top Flow Responsive
========================= */
@media (max-width: 1024px) {
  .top-flow {
    padding-bottom: 90px;
  }

  .top-flow__wrap {
    grid-template-columns: 1fr;
    row-gap: 28px;
    max-width: 560px;
    margin: 0 auto;
  }

  .top-flow__item:not(:last-child)::after {
    content: "↓";
    position: static;
    display: block;
    margin: 20px auto 0;
    transform: none;
    font-size: 4rem;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .top-flow {
    padding-bottom: 72px;
  }

  .top-flow__head {
    margin-bottom: 28px;
  }

  .top-flow__title {
    font-size: 2.6rem;
  }

  .top-flow__icon-wrap {
    width: 96px;
    margin-bottom: 14px;
  }

  .top-flow__num {
    width: 38px;
    height: 38px;
    top: -15px;
    left: -30px;
    font-size: 1.7rem;
  }

  .top-flow__icon {
    width: 78px;
    height: 78px;
  }

  .top-flow__icon svg {
    width: 2.8rem;
    height: 2.8rem;
  }

  .top-flow__item-title {
    margin-bottom: 8px;
    font-size: 1.6rem;
  }

  .top-flow__item-text {
    font-size: 1.3rem;
    line-height: 1.8;
  }

  .top-flow__item:not(:last-child)::after {
    font-size: 3.4rem;
    margin-top: 16px;
  }
}

/* =========================
   Footer
========================= */
.on-footer {
  background: linear-gradient(135deg, #81d8d0 100%);
  color: #fff;
}

.on-footer__inner {
  width: min(1200px, calc(100% - 72px));
  margin: 0 auto;
  padding: 58px 0 26px;
}

.on-footer__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.on-footer__info {
  padding-top: 4px;
}

.on-footer__logo {
  display: block;
  width: 90px;
  height: 90px;
  object-fit: cover;
  margin-bottom: 34px;
  background: #fff;
}

.on-footer__item {
  margin-bottom: 22px;
}

.on-footer__item:last-child {
  margin-bottom: 0;
}

.on-footer__row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.on-footer__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.95;
  margin-top: 2px;
}

.on-footer__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.on-footer__textgroup {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.on-footer__text,
.on-footer__tel,
.on-footer__text--single,
.on-footer__lead {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  color: #fff;
}

.on-footer__tel {
  text-decoration: none;
}

.on-footer__tel:hover {
  opacity: 0.85;
}

.on-footer__map {
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.18);
}

.on-footer__map iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}

.on-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 22px;
}

.on-footer__policy,
.on-footer__copy {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.7;
  font-weight: 400;
  color: #fff;
  opacity: 0.95;
}

.on-footer__policy:hover {
  opacity: 0.8;
}

@media screen and (max-width: 900px) {
  .on-footer__inner {
    width: min(100%, calc(100% - 32px));
    padding: 42px 0 22px;
  }

  .on-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 22px;
  }

  .on-footer__logo {
    width: 76px;
    height: 76px;
    margin-bottom: 24px;
  }

  .on-footer__text,
  .on-footer__tel,
  .on-footer__text--single,
  .on-footer__lead {
    font-size: 1.5rem;
  }

  .on-footer__map {
    max-width: 100%;
  }

  .on-footer__map iframe {
    height: 260px;
  }

  .on-footer__bottom {
    padding-top: 18px;
  }
}

@media screen and (max-width: 640px) {
  .on-footer__inner {
    width: min(100%, calc(100% - 24px));
    padding: 34px 0 18px;
  }

  .on-footer__grid {
    gap: 22px;
  }

  .on-footer__row {
    gap: 12px;
  }

  .on-footer__icon {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .on-footer__logo {
    width: 68px;
    height: 68px;
    margin-bottom: 18px;
  }

  .on-footer__text,
  .on-footer__tel,
  .on-footer__text--single,
  .on-footer__lead {
    font-size: 1.35rem;
    line-height: 1.75;
  }

  .on-footer__map {
    border-radius: 14px;
  }

  .on-footer__map iframe {
    height: 220px;
  }

  .on-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
  }

  .on-footer__policy,
  .on-footer__copy {
    font-size: 1.2rem;
  }
}

/* responsive */
@media (max-width: 1024px) {
  .on-hero__inner,
  .on-footer__grid,
  .on-styles__grid {
    grid-template-columns: 1fr;
  }

  .on-steps,
  .on-feature-grid,
  .on-flow__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .on-header__line {
    display: none;
  }
}

@media (max-width: 767px) {
  .on-section-title {
    font-size: 26px;
    margin-bottom: 28px;
  }

  .on-hero {
    padding: 48px 0;
  }

  .on-hero__inner {
    gap: 32px;
  }

  .on-hero__title {
    font-size: 28px;
    text-align: center;
  }

  .on-hero__buttons {
    justify-content: center;
  }

  .on-news__item {
    align-items: flex-start;
    gap: 10px;
  }

  .on-online,
  .on-features,
  .on-styles,
  .on-flow {
    padding: 56px 0;
  }

  .on-steps,
  .on-feature-grid,
  .on-flow__grid {
    grid-template-columns: 1fr;
  }

  .on-style-card h3 {
    font-size: 24px;
  }

  .on-header__logo img,
  .on-drawer__logo img,
  .on-footer__logo {
    height: 52px;
  }
}


/* =========================
   Recruit Page
========================= */
.recruit-page {
  color: #1f2937;
  background: #fff;
}

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

.recruit-hero {
  background: #81d8d0;
  padding: 34px 20px 38px;
}

.recruit-hero__inner,
.recruit-details__inner,
.recruit-selection__inner,
.recruit-contact__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.recruit-hero__title {
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: clamp(3.8rem, 4.6vw, 6rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.recruit-details,
.recruit-selection {
  padding: 72px 20px 0;
}

.recruit-contact {
  padding: 56px 20px 96px;
}

.recruit-heading {
  text-align: center;
  margin-bottom: 42px;
}

.recruit-heading__en {
  margin: 0;
  font-size: clamp(2.4rem, 3.2vw, 4.6rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #111827;
}

.recruit-heading__line {
  display: block;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: #81d8d0;
  margin: 12px auto 0;
}

.recruit-block {
  background: #f7f9f9;
  padding: 42px 34px 46px;
}

.recruit-block__main-title {
  margin: 0 0 24px;
  font-size: clamp(2.2rem, 2.4vw, 3.6rem);
  line-height: 1.4;
  font-weight: 700;
  color: #111827;
}

.recruit-note {
  background: #eef5f5;
  border-left: 4px solid #81d8d0;
  padding: 20px 24px;
  margin-bottom: 28px;
}

.recruit-note__title {
  margin: 0 0 10px;
  font-size: 1.9rem;
  line-height: 1.6;
  font-weight: 700;
  color: #111827;
}

.recruit-note__text,
.recruit-note__sub {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.9;
  color: #374151;
}

.recruit-note__sub {
  margin-top: 6px;
}

.recruit-lead {
  margin-bottom: 24px;
}

.recruit-lead p {
  margin: 0 0 10px;
  font-size: 1.5rem;
  line-height: 1.9;
  color: #374151;
}

.recruit-lead p:last-child {
  margin-bottom: 0;
}

.recruit-info-list {
  display: grid;
  gap: 22px;
}

.recruit-info-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 22px;
  align-items: start;
}

.recruit-info-item__title {
  margin: 0;
  padding-left: 14px;
  border-left: 4px solid #81d8d0;
  font-size: 1.9rem;
  line-height: 1.5;
  font-weight: 700;
  color: #111827;
}

.recruit-info-item__body {
  min-width: 0;
}

.recruit-info-item__body p {
  margin: 0 0 8px;
  font-size: 1.5rem;
  line-height: 1.9;
  color: #374151;
}

.recruit-info-item__body p:last-child {
  margin-bottom: 0;
}

.recruit-info-item__lead {
  font-weight: 700;
  color: #111827;
  font-size: 1.6rem;
}

.recruit-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.recruit-list li {
  position: relative;
  margin: 0 0 8px;
  padding-left: 1.2em;
  font-size: 1.5rem;
  line-height: 1.9;
  color: #374151;
}

.recruit-list li:last-child {
  margin-bottom: 0;
}

.recruit-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #81d8d0;
  font-weight: 700;
}

.recruit-note-small {
  margin-top: 8px;
}

.recruit-note-small p {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.75;
  color: #4b5563;
}

.recruit-step-list {
  display: grid;
  gap: 18px;
}

.recruit-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
  padding: 20px 24px;
  border-left: 4px solid #81d8d0;
}

.recruit-step__num {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border-radius: 50%;
  background: #81d8d0;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
}

.recruit-step__title {
  margin: 0 0 4px;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
  color: #111827;
}

.recruit-step__text {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.8;
  color: #4b5563;
}

.recruit-contact__inner {
  background: #81d8d0;
  padding: 44px 24px 48px;
  text-align: center;
}

.recruit-contact__title {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(2.4rem, 2.8vw, 3.8rem);
  line-height: 1.4;
  font-weight: 700;
}

.recruit-contact__text {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.8;
}

.recruit-contact__btn-wrap {
  margin-top: 22px;
}

.recruit-contact__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #fff;
  color: #81d8d0;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.recruit-contact__btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

@media screen and (max-width: 900px) {
  .recruit-details,
  .recruit-selection {
    padding: 56px 16px 0;
  }

  .recruit-contact {
    padding: 44px 16px 72px;
  }

  .recruit-block {
    padding: 28px 18px 34px;
  }

  .recruit-info-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .recruit-info-item__title {
    font-size: 1.75rem;
  }

  .recruit-info-item__body p,
  .recruit-list li,
  .recruit-step__text,
  .recruit-contact__text,
  .recruit-lead p,
  .recruit-note__text,
  .recruit-note__sub {
    font-size: 1.4rem;
  }

  .recruit-step {
    grid-template-columns: 46px 1fr;
    gap: 14px;
    padding: 16px 16px;
  }

  .recruit-step__title {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 640px) {
  .recruit-hero {
    padding: 26px 14px 30px;
  }

  .recruit-hero__title {
    font-size: 3.4rem;
  }

  .recruit-details,
  .recruit-selection {
    padding: 48px 14px 0;
  }

  .recruit-contact {
    padding: 40px 14px 60px;
  }

  .recruit-heading {
    margin-bottom: 34px;
  }

  .recruit-heading__en {
    font-size: 2rem;
  }

  .recruit-heading__line {
    width: 58px;
    margin-top: 10px;
  }

  .recruit-block__main-title {
    margin-bottom: 20px;
    font-size: 2rem;
  }

  .recruit-note {
    padding: 16px 14px;
    margin-bottom: 24px;
  }

  .recruit-note__title {
    font-size: 1.7rem;
  }

  .recruit-note__text,
  .recruit-note__sub,
  .recruit-lead p,
  .recruit-info-item__body p,
  .recruit-list li,
  .recruit-step__text,
  .recruit-contact__text {
    font-size: 1.35rem;
    line-height: 1.8;
  }

  .recruit-info-item__title {
    padding-left: 12px;
    font-size: 1.8rem;
  }

  .recruit-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .recruit-step__num {
    margin: 0;
  }

  .recruit-contact__inner {
    padding: 34px 16px 38px;
  }

  .recruit-contact__title {
    font-size: 2.2rem;
  }

  .recruit-contact__btn {
    width: 100%;
    min-width: 0;
  }
}

/* =========================
   Notice Page
========================= */
.notice-page {
  background: #f7faf9;
  color: #1f2937;
}

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

.notice-hero {
  padding: 64px 20px 28px;
}

.notice-hero__inner,
.notice-body__inner {
  width: min(100%, 1200px);
  margin: 0 auto;
}

.notice-hero__title {
  margin: 0;
  font-size: clamp(3.2rem, 3.8vw, 5rem);
  line-height: 1.3;
  font-weight: 700;
  color: #111827;
}

.notice-hero__date {
  margin: 10px 0 0;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #6b7280;
}

.notice-body {
  padding: 0 20px 96px;
}

.notice-divider {
  width: 20px;
  height: 3px;
  border-radius: 999px;
  background: #d97bc1;
  margin: 18px auto 28px;
}

.notice-card {
  background: #fff;
  border: 1px solid #e5ece9;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03);
  padding: 28px 30px;
  margin-bottom: 22px;
}

.notice-card--toc {
  padding: 28px 24px;
}

.notice-card__title {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #edf2f1;
  font-size: clamp(2rem, 2.2vw, 2.8rem);
  line-height: 1.5;
  font-weight: 700;
  color: #111827;
}

.notice-card p {
  margin: 0 0 14px;
  font-size: 1.5rem;
  line-height: 2;
  color: #374151;
}

.notice-card p:last-child {
  margin-bottom: 0;
}

.notice-toc {
  margin: 0;
  padding: 0;
  list-style: none;
}

.notice-toc li {
  margin: 0 0 10px;
}

.notice-toc li:last-child {
  margin-bottom: 0;
}

.notice-toc a {
  position: relative;
  display: inline-block;
  padding-left: 1.2em;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #81d8d0;
  text-decoration: none;
}

.notice-toc a::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.9em;
  color: #81d8d0;
}

.notice-toc a:hover {
  opacity: 0.8;
}

.notice-subblock {
  margin-top: 22px;
}

.notice-subblock:first-of-type {
  margin-top: 0;
}

.notice-subblock__title {
  margin: 0 0 8px;
  font-size: 1.8rem;
  line-height: 1.7;
  font-weight: 700;
  color: #111827;
}

.notice-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.notice-list li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 1.2em;
  font-size: 1.5rem;
  line-height: 1.9;
  color: #374151;
}

.notice-list li:last-child {
  margin-bottom: 0;
}

.notice-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #81d8d0;
  font-weight: 700;
}

.notice-alert {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid #eadfbd;
  background: #f9f4e8;
  border-radius: 10px;
}

.notice-alert__title {
  margin: 0 0 6px;
  font-size: 1.5rem;
  line-height: 1.7;
  font-weight: 700;
  color: #6b5b2a;
}

.notice-alert p {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #5b5b4b;
}

.notice-note {
  margin-top: 10px;
  font-size: 1.35rem;
  line-height: 1.8;
  color: #6b7280;
}

.notice-table-block {
  margin-top: 30px;
}

.notice-table-block__title {
  margin: 0 0 8px;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 700;
  color: #111827;
}

.notice-table-block__lead {
  margin: 0 0 14px;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #4b5563;
}

.notice-table-wrap {
  overflow-x: auto;
}

.notice-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  background: #fff;
}

.notice-table th,
.notice-table td {
  border: 1px solid #dbe8e4;
  padding: 14px 16px;
  font-size: 1.45rem;
  line-height: 1.7;
  text-align: left;
  color: #374151;
}

.notice-table th {
  background: #edf9f8;
  font-weight: 700;
  color: #111827;
}

.notice-contact {
  max-width: 760px;
  margin: 0 auto;
  background: #edf9f8;
  border: 1px solid #d7efee;
  border-radius: 14px;
  text-align: center;
  padding: 28px 20px 30px;
}

.notice-contact__text {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.8;
  color: #4b5563;
}

.notice-contact__tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 700;
  color: #59c8cb;
  text-decoration: none;
}

.notice-contact__tel:hover {
  opacity: 0.85;
}

.notice-contact__btn-wrap {
  margin-top: 18px;
}

.notice-contact__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #81d8d0;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.notice-contact__btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

@media screen and (max-width: 900px) {
  .notice-hero {
    padding: 52px 16px 24px;
  }

  .notice-body {
    padding: 0 16px 72px;
  }

  .notice-card {
    padding: 22px 18px;
    margin-bottom: 18px;
  }

  .notice-card__title {
    font-size: 1.9rem;
  }

  .notice-card p,
  .notice-list li,
  .notice-toc a,
  .notice-table th,
  .notice-table td {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 640px) {
  .notice-hero {
    padding: 42px 14px 20px;
  }

  .notice-body {
    padding: 0 14px 56px;
  }

  .notice-hero__title {
    font-size: 2.8rem;
  }

  .notice-hero__date {
    font-size: 1.35rem;
  }

  .notice-card {
    border-radius: 12px;
    padding: 18px 14px;
  }

  .notice-card__title {
    margin-bottom: 12px;
    padding-bottom: 10px;
    font-size: 1.75rem;
  }

  .notice-card p,
  .notice-list li,
  .notice-toc a,
  .notice-subblock__title,
  .notice-table-block__title,
  .notice-table-block__lead,
  .notice-contact__text {
    font-size: 1.35rem;
  }

  .notice-contact__tel {
    font-size: 1.6rem;
  }

  .notice-contact__btn {
    width: 100%;
    min-width: 0;
  }
}

/* =========================
   Privacy Policy Page
========================= */
.privacy-page {
  background: #fff;
  color: #1f2937;
}

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

.privacy-hero {
  padding: 72px 20px 46px;
}

.privacy-hero__inner,
.privacy-content__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.privacy-hero__title {
  margin: 0;
  text-align: center;
  font-size: clamp(3.4rem, 4vw, 5.2rem);
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #111827;
}

.privacy-content {
  padding: 0 20px 110px;
}

.privacy-block {
  max-width: 920px;
  margin: 0 auto 54px;
}

.privacy-block:last-child {
  margin-bottom: 0;
}

.privacy-heading {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 2.2vw, 3rem);
  line-height: 1.6;
  font-weight: 500;
  color: #81d8d0;
  letter-spacing: 0.01em;
}

.privacy-block p {
  margin: 0 0 16px;
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 400;
  color: #1f2937;
}

.privacy-block p:last-child {
  margin-bottom: 0;
}

.privacy-list {
  margin: 20px 0 0;
  padding: 0;
}

.privacy-list li {
  margin: 0 0 14px;
  font-size: 1.8rem;
  line-height: 2;
  color: #1f2937;
}

.privacy-list li:last-child {
  margin-bottom: 0;
}

.privacy-list--numbered {
  list-style: none;
  counter-reset: item;
}

.privacy-list--numbered > li {
  position: relative;
  padding-left: 1.9em;
}

.privacy-list--numbered > li::before {
  counter-increment: item;
  content: counter(item) "）";
  position: absolute;
  left: 0;
  top: 0;
  color: #1f2937;
  font-weight: 400;
}

.privacy-contact {
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fafafa;
}

.privacy-contact__name {
  margin: 0 0 10px;
  font-size: 1.9rem;
  line-height: 1.8;
  font-weight: 500;
  color: #111827;
}

@media screen and (max-width: 900px) {
  .privacy-hero {
    padding: 60px 16px 36px;
  }

  .privacy-content {
    padding: 0 16px 88px;
  }

  .privacy-block {
    margin-bottom: 42px;
  }

  .privacy-heading {
    margin-bottom: 14px;
    font-size: 2.2rem;
  }

  .privacy-block p,
  .privacy-list li {
    font-size: 1.65rem;
    line-height: 1.9;
  }
}

@media screen and (max-width: 640px) {
  .privacy-hero {
    padding: 46px 14px 30px;
  }

  .privacy-content {
    padding: 0 14px 68px;
  }

  .privacy-hero__title {
    font-size: 2.8rem;
    line-height: 1.45;
  }

  .privacy-block {
    margin-bottom: 34px;
  }

  .privacy-heading {
    font-size: 1.95rem;
    line-height: 1.6;
  }

  .privacy-block p,
  .privacy-list li {
    font-size: 1.5rem;
    line-height: 1.9;
  }

  .privacy-contact {
    padding: 18px 16px;
  }

  .privacy-contact__name {
    font-size: 1.7rem;
  }
}

