@charset "UTF-8";

/* ------------------------------
  Base
------------------------------ */

:root {
  --color-main: #00ABA3;
  --color-text: #0B1B2B;
  --color-muted: #6B7280;
  --color-bg: #ffffff;
  --color-bg-light: #F4FAFA;
  --color-border: #E5E7EB;

  --font-base: "Noto Sans JP", sans-serif;

  --inner-width: 1200px;
  --header-height: 80px;

  --side-padding: clamp(40px, 5vw, 80px);
  --section-padding-y: 96px;
}

body {
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
}

.inner {
  width: min(100% - 40px, var(--inner-width));
  margin-inline: auto;
}

.pc-only {
  display: inline;
}

.sp-only {
  display: none;
}

.c-heading-accent {
  color: var(--color-main);
  font-size: 1.07em;
  font-weight: inherit;
}

section[id] {
  scroll-margin-top: 80px;
}

@media screen and (max-width: 767px) {
  :root {
    --header-height: 64px;
    --section-padding-y: 72px;
  }

  .inner {
    width: min(100% - 32px, 100%);
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: inline;
  }

  section[id] {
    scroll-margin-top: 64px;
  }
}

/* ------------------------------
  Header
------------------------------ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 12px rgba(11, 27, 43, 0.06);
  backdrop-filter: blur(8px);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 var(--side-padding);
}

.header__logo {
  flex-shrink: 0;
  width: 146px;
}

.header__logo a {
  display: block;
}

.header__nav {
  margin-left: auto;
  margin-right: 32px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 56px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.header__nav-list a {
  transition: color 0.3s ease;
}

.header__nav-list a:hover {
  color: var(--color-main);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 44px;
  padding: 9px 20px;
  border: 1.5px solid var(--color-main);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* お問い合わせ */

.header__button--contact {
  color: var(--color-main);
  background: #fff;
}

.header__button--contact:hover {
  color: #fff;
  background: var(--color-main);
  transform: translateY(-1px);
}

/* 入会する */

.header__button--join {
  color: #fff;
  background: var(--color-main);
  box-shadow: 0 7px 18px rgba(0, 171, 163, 0.2);
}

.header__button--join:hover {
  border-color: #008f89;
  background: #008f89;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 171, 163, 0.28);
}

.header__hamburger {
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 1400px) {
  .header__inner {
    padding-inline: 32px;
  }

  .header__nav {
    margin-right: 24px;
  }

  .header__nav-list {
    gap: 28px;
    font-size: 15px;
  }

  .header__button {
    min-width: 104px;
    padding-inline: 16px;
    font-size: 13px;
  }
}

@media screen and (max-width: 767px) {
  .header {
    position: fixed;
    height: 48px;
    background: #fff;
    box-shadow: 0 1px 8px rgba(11, 27, 43, 0.06);
    z-index: 10000;
  }

  .header__inner {
    padding-inline: 16px;
  }

  .header__logo {
    width: 92px;
  }

  .header__nav {
    position: fixed;
    top: 48px;
    left: 0;
    z-index: 9999;
    display: block;
    width: 100%;
    height: calc(100vh - 48px);
    margin: 0;
    padding: 48px 32px;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }

  .header__nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    font-size: 18px;
  }

  .header__actions {
    display: none;
  }

  .header__hamburger {
    position: relative;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    margin-left: auto;
  }

  .header__hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-text);
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .header__hamburger.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .header__hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }

  .header__hamburger.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

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

/* ------------------------------
  fixed-qr
------------------------------ */

.pc-fixed-qr {
  position: fixed;
  top: 120px;
  right: 16px;
  z-index: 999;
  width: 104px;
  padding: 16px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 24px rgba(11, 27, 43, 0.08);
  backdrop-filter: blur(8px);

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pc-fixed-qr__icon {
  width: 26px;
  height: 26px;
  margin-bottom: 14px;
  object-fit: contain;
}

.pc-fixed-qr__text {
  display: block;
  width: 1em;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.pc-fixed-qr__label {
  margin-top: 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.pc-fixed-qr__code {
  width: 64px;
  height: 64px;
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .pc-fixed-qr {
    display: none;
  }
}

/* ------------------------------
  SP Fixed CTA
------------------------------ */

.sp-fixed-cta {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-fixed-cta {
    position: fixed !important;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999999 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    height: 68px;
    padding: 8px 14px;
    background: #fff;
    box-shadow: 0 -8px 24px rgba(11, 27, 43, 0.12);
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
  }

  .sp-fixed-cta__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    text-decoration: none;
    white-space: nowrap;
  }

  /* アプリボタン */
  .sp-fixed-cta__button--app {
    border: 1.5px solid var(--color-main);
    background: var(--color-main);
    color: #fff;
  }

  .sp-fixed-cta__button--app img {
    display: block;
    width: 22px;
    height: auto;
    flex-shrink: 0;
  }

  /* お問い合わせボタン */
  .sp-fixed-cta__button--contact {
    border: 1.5px solid var(--color-main);
    background: #fff;
    color: var(--color-main);
  }

  /* メールアイコン */
  .sp-fixed-cta__mail-icon {
    position: relative;
    display: block;
    width: 22px;
    height: 16px;
    border: 1.5px solid currentColor;
    border-radius: 2px;
    flex-shrink: 0;
  }

  .sp-fixed-cta__mail-icon::before,
  .sp-fixed-cta__mail-icon::after {
    content: "";
    position: absolute;
    top: 3px;
    width: 11px;
    height: 1.5px;
    background: currentColor;
  }

  .sp-fixed-cta__mail-icon::before {
    left: 1px;
    transform: rotate(35deg);
    transform-origin: left center;
  }

  .sp-fixed-cta__mail-icon::after {
    right: 1px;
    transform: rotate(-35deg);
    transform-origin: right center;
  }

  body {
    padding-bottom: 76px;
  }
}

/* ------------------------------
  FV
------------------------------ */

.fv {
  --fv-app-left: 55%;
  --fv-app-top: 51%;
  --fv-app-width: clamp(145px, 9.5vw, 175px);

  position: relative;
  min-height: 900px;
  overflow: hidden;
  background: #f8fbfb;
}

.fv__visual {
  position: absolute;
  inset: 0;
}

.fv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fv__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.fv__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* PCアプリ画面 */

.fv__app {
  position: absolute;
  top: var(--fv-app-top);
  left: var(--fv-app-left);
  z-index: 1;
  display: block;
  width: var(--fv-app-width);
  height: auto;
  transform: translate(35%, 9%);
  filter: drop-shadow(0 18px 30px rgba(11, 27, 43, 0.14));
}

/* FVテキスト */

.fv__content {
  position: relative;
  z-index: 2;
  width: min(820px, 58vw);
  margin-left: var(--side-padding);
  padding-top: 120px;
}

.fv__tag {
  margin-bottom: 4px;
  color: var(--color-main);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
}

.fv__eyebrow {
  margin-bottom: 29px;
  color: var(--color-text);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.12em;
}

.fv__label,
.fv__title {
  display: block;
  color: var(--color-text);
  font-size: clamp(40px, 3.2vw, 56px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.fv__accent {
  color: var(--color-main);
}

.fv__title {
  white-space: nowrap;
}

.fv__lead {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.fv__text {
  margin-top: 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}

.fv__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 56px;
  margin-top: 32px;
  padding: 0 36px;
  border-radius: 999px;
  background: linear-gradient(90deg,
      #0bb4ad 0%,
      #0ba59f 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 26px rgba(0, 171, 163, 0.24);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.fv__button::after {
  content: "→";
  margin-left: 16px;
  font-size: 18px;
  line-height: 1;
}

.fv__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 171, 163, 0.3);
}

/* FV下部の3つの特徴 */

.fv__features {
  position: absolute;
  bottom: 72px;
  left: var(--side-padding);
  z-index: 3;
  display: flex;
  align-items: flex-start;
  gap: 36px;
}

.fv__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 205px;
}

.fv__feature-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  flex-shrink: 0;
}

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

.fv__feature-title {
  color: var(--color-main);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.fv__feature-text {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.fv__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      radial-gradient(
        ellipse at 18% 10%,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.18) 34%,
        rgba(255, 255, 255, 0) 58%
      ),
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 0.25) 38%,
        rgba(255, 255, 255, 0.1) 52%,
        rgba(255, 255, 255, 0) 70%
      );
  }

/* ------------------------------
  SP
------------------------------ */

@media screen and (max-width: 767px) {
  .fv {
    min-height: auto;
    padding-top: 48px;
    overflow: hidden;
    background: #fff;
  }

  .fv__visual {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 585 / 800;
    min-height: 520px;
    max-height: 560px;
    overflow: hidden;
  }

  .fv__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    margin-left: 0;
    padding: 0;
  }

  .fv__top {
    position: absolute;
    top: 30px;
    left: 24px;
    right: 24px;
  }

  .fv__message {
    position: absolute;
    top: 22%;
    left: 24px;
    right: 16px;
  }

  .fv__bg {
    position: absolute;
    inset: 0;
     background: #fff;
  }

  .fv__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.3;
  }

  /* SPではアプリ画面を非表示 */

  .fv__app {
    display: none;
  }

  .fv__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    margin-left: 0;
    padding: 74px 24px 24px;
  }

  .fv__tag {
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.12em;
  }

  .fv__eyebrow {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }

  .fv__label,
  .fv__title {
    font-size: clamp(29px, 8vw, 34px);
    line-height: 1.54;
    letter-spacing: 0.01em;
  }

  .fv__label {
    white-space: nowrap;
  }

  .fv__title {
    white-space: normal;
  }

  .fv__lead {
    margin-top: 96px;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.04em;
  }

  .fv__button {
    display: none;
  }

  .fv__text {
    display: block;
    margin-top: 32px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.02em;
  }

  /* SPでは画像の下にアイコンを並べる */

  .fv__features {
    position: relative;
    bottom: auto;
    left: auto;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    width: 100%;
    min-height: 108px;
    padding: 14px 12px 16px;
    background: #fff;
    box-shadow: 0 -8px 24px rgba(11, 27, 43, 0.04);
  }

  .fv__feature {
    display: block;
    width: auto;
    text-align: center;
  }

  .fv__feature-icon-wrap {
    width: 46px;
    height: 46px;
    margin: 0 auto;
  }

  .fv__feature-title {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.5;
    white-space: nowrap;
  }

  .fv__feature-text {
    display: block;
    margin-top: 3px;
    color: var(--color-text);
    font-size: 9px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0;
  }
}

/* PCだけ左余白を広げる */

@media screen and (min-width: 768px) {
  .fv .fv__content {
    margin-left: 100px;
  }

  .fv .fv__features {
    left: 100px;
  }
}

/* ------------------------------
  Concept
------------------------------ */

.concept {
  position: relative;
  min-height: 720px;
  padding: 78px 0 90px;
  background-image: url("../images/pc-concept-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}

.concept__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.concept__label {
  color: var(--color-main);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.concept__label::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin: 12px auto 0;
  background: var(--color-main);
}

.concept__logo {
  width: 190px;
  margin: 36px auto 0;
}

.concept__title {
  margin-top: 42px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.16em;
}

.concept__title span {
  color: var(--color-main);
}

.concept__about {
  width: min(100%, 720px);
  margin: 22px auto 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.08em;
}

.concept__text {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.12em;
}

.concept__story {
  display: flex;
  align-items: center;
  width: min(100%, 780px);
  min-height: 96px;
  margin: 52px auto 0;
  padding: 24px 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(11, 27, 43, 0.1);
  text-align: left;
}

.concept__story-head {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 220px;
  flex-shrink: 0;
  padding-right: 30px;
  border-right: 1px solid rgba(0, 171, 163, 0.45);
}

.concept__story-icon {
  width: 42px;
  flex-shrink: 0;
}

.concept__story-label {
  color: var(--color-main);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.concept__story-title {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.concept__story-text {
  padding-left: 34px;
  font-size: 13px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .concept {
    min-height: auto;
    padding: 56px 0 64px;
    background-image: url("../images/sp-concept-bg.webp");
    background-size: 100% auto;
    background-position: center top;
  }

  .concept__inner {
    width: min(100% - 48px, 100%);
  }

  .concept__label {
    font-size: 14px;
    letter-spacing: 0.16em;
  }

  .concept__label::after {
    width: 34px;
    margin-top: 11px;
  }

  .concept__logo {
    width: 86px;
    margin: 28px auto 0;
  }

  .concept__title {
    width: fit-content;
    margin: 28px auto 0;
    margin-top: 26px;
    font-size: 30px;
    line-height: 1.45;
    letter-spacing: 0.12em;
    text-align: left;

  }

  .concept__title span {
    color: var(--color-main);
  }

  .concept__about {
    width: fit-content;
    margin: 22px auto 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.9;
    letter-spacing: 0.05em;
    text-align: left;
  }

  .concept__text {
    width: fit-content;
    margin: 22px auto 0;
    margin-top: 28px;
    font-size: 15px;
    line-height: 2.05;
    letter-spacing: 0.08em;
    text-align: left;
  }

  .concept__story {
    display: block;
    width: 100%;
    min-height: auto;
    margin-top: 34px;
    padding: 28px 30px 32px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 42px rgba(11, 27, 43, 0.1);
  }

  .concept__story-head {
    width: auto;
    gap: 14px;
    padding-right: 0;
    padding-bottom: 0;
    border-right: none;
  }

  .concept__story-icon {
    width: 34px;
  }

  .concept__story-label {
    font-size: 12px;
  }

  .concept__story-title {
    margin-top: 6px;
    font-size: 19px;
    letter-spacing: 0.08em;
  }

  .concept__story-text {
    padding-left: 0;
    margin-top: 20px;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.06em;
  }

  .concept__story-head,
  .concept__story-text {
    width: min(100%, 280px);
    margin-inline: auto;
  }

  .concept__text br.pc-only,
  .concept__story-text br.pc-only {
    display: none;
  }

  .concept__text br.sp-only,
  .concept__story-text br.sp-only {
    display: inline;
  }

}

/* ------------------------------
  For You
------------------------------ */

.for-you {
  position: relative;
  padding: 84px 0 92px;
  overflow: hidden;
  background: #f4fafa;
}

.for-you::before,
.for-you::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.for-you::before {
  top: -180px;
  left: -160px;
  width: 400px;
  height: 400px;
  background: rgba(216, 242, 242, 0.5);
  filter: blur(70px);
}

.for-you::after {
  right: -180px;
  bottom: -200px;
  width: 440px;
  height: 440px;
  background: rgba(222, 244, 244, 0.5);
  filter: blur(80px);
}

.for-you__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.for-you__label {
  color: var(--color-main);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.for-you .for-you__label::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin: 12px auto 0;
  background: var(--color-main);
}

.for-you__copy {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  margin-top: 34px;
  vertical-align: top;
}

.for-you__title,
.for-you__subcopy {
  display: flex;
  align-items: baseline;
  margin: 0;
  color: var(--color-text);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-align: left;
}

.for-you__subcopy {
  margin-top: 10px;
}

.for-you__brand {
  letter-spacing: 0.04em;
}

.for-you__brand span {
  color: var(--color-main);
}

.for-you__sub-brand {
  font-weight: 700;
}

.for-you__sub-brand span {
  color: var(--color-main);
}

.for-you__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 22px;
  width: min(100%, 1180px);
  margin: 54px auto 0;
}

.for-you__item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 116px;
  padding: 24px 28px;
  border: 1px solid #d5e4e7;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(11, 27, 43, 0.025);
  text-align: left;
}

.for-you__check {
  position: relative;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-main);
  box-shadow: 0 5px 12px rgba(0, 171, 163, 0.18);
}

.for-you__check::before {
  content: "";
  position: absolute;
  top: 46%;
  left: 50%;
  width: 8px;
  height: 14px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

.for-you__text {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.for-you__message {
  margin-top: 52px;
  color: var(--color-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.08em;
}

/* SP */

@media screen and (max-width: 767px) {
  .for-you {
    padding: 56px 0 64px;
  }

  .for-you::before {
    top: -100px;
    left: -130px;
    width: 260px;
    height: 260px;
    filter: blur(48px);
  }

  .for-you::after {
    right: -140px;
    bottom: -120px;
    width: 280px;
    height: 280px;
    filter: blur(52px);
  }

  .for-you__label {
    font-size: 14px;
    letter-spacing: 0.16em;
  }

  .for-you .for-you__label::after {
    width: 34px;
    height: 1px;
    margin-top: 11px;
  }

  .for-you__copy {
    margin-top: 24px;
  }

  .for-you__title,
  .for-you__subcopy {
    font-size: 27px;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }

  .for-you__title {
    margin-top: 0;
  }

  .for-you__subcopy {
    margin-top: 8px;
  }

  .for-you__list {
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(100%, 340px);
    margin-top: 32px;
  }

  .for-you__item {
    gap: 14px;
    min-height: 72px;
    padding: 16px 18px;
    border-radius: 10px;
  }

  .for-you__check {
    width: 30px;
    height: 30px;
  }

  .for-you__check::before {
    width: 6px;
    height: 11px;
  }

  .for-you__text {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.03em;
  }

  .for-you__message {
    margin-top: 32px;
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.05em;
  }

}

/* ------------------------------
  Reason
------------------------------ */

.reason {
  position: relative;
  padding: 96px 0 110px;
  overflow: hidden;
  background: #fff;
}

.reason::before,
.reason::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.reason::before {
  width: 420px;
  height: 420px;
  top: -80px;
  right: -120px;
  background: rgba(223, 243, 245, 0.9);
}

.reason::after {
  width: 360px;
  height: 360px;
  left: -120px;
  bottom: 40px;
  background: rgba(232, 247, 248, 0.85);
}

.reason__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 250px 1fr 1fr 280px;
  grid-template-rows: auto auto;
  column-gap: 34px;
  row-gap: 68px;
  align-items: center;
}

.reason__heading {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.reason__label {
  color: var(--color-main);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.reason__label::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 12px;
  background: var(--color-main);
}

.reason__title {
  margin-top: 36px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.reason__lead {
  margin-top: 24px;
  font-size: 13px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}

.reason__item {
  display: contents;
}

.reason__image {
  overflow: hidden;
}

.reason__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reason__item--01 .reason__image {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
  aspect-ratio: 16 / 7.2;
  border-radius: 18px;
  overflow: hidden;
}

.reason__item--01 .reason__content {
  grid-column: 4 / 5;
  grid-row: 1 / 2;
}

.reason__item--02 .reason__content {
  max-width: 220px;
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.reason__item--02 .reason__image {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  aspect-ratio: 10 / 14;
  border-radius: 18px;
  overflow: hidden;
}

.reason__item--03 .reason__image {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  aspect-ratio: 10 / 14;
  border-radius: 18px;
  overflow: hidden;
}

.reason__item--03 .reason__content {
  max-width: 250px;
  grid-column: 4 / 5;
  grid-row: 2 / 3;
}

.reason__number {
  color: var(--color-main);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.reason__number::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 14px;
  background: var(--color-main);
}

.reason__item-title {
  margin-top: 26px;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.reason__text {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .reason {
    padding: 56px 0 64px;
  }

  .reason::before {
    width: 220px;
    height: 220px;
    top: 60px;
    right: -80px;
    filter: blur(40px);
  }

  .reason::after {
    width: 200px;
    height: 200px;
    left: -70px;
    bottom: 180px;
    filter: blur(36px);
  }

  .reason__inner {
    display: block;
    width: min(100% - 48px, 100%);
  }

  .reason__heading {
    text-align: center;
  }

  .reason__label {
    font-size: 14px;
    letter-spacing: 0.16em;
  }

  .reason__label::after {
    width: 34px;
    margin: 11px auto 0;
  }

  .reason__title {
    width: fit-content;
    margin: 28px auto 0;
    font-size: 26px;
    line-height: 1.6;
    letter-spacing: 0.08em;
    text-align: left;
  }

  .reason__lead {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.9;
    letter-spacing: 0.06em;
    text-align: center;
  }

  .reason__item {
    display: block;
    margin-top: 34px;
  }

  .reason__item:first-of-type {
    margin-top: 36px;
  }

  .reason__item--01 .reason__image,
  .reason__item--02 .reason__image,
  .reason__item--03 .reason__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    overflow: hidden;
  }

  .reason__item--01 .reason__image img,
  .reason__item--02 .reason__image img,
  .reason__item--03 .reason__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .reason__content,
  .reason__item--02 .reason__content,
  .reason__item--03 .reason__content {
    width: 100%;
    max-width: none;
    margin-top: 16px;
  }

  .reason__number {
    font-size: 26px;
  }

  .reason__number::after {
    display: none;
  }

  .reason__item-title {
    margin-top: 4px;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.06em;
  }

  .reason__text {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.9;
    letter-spacing: 0.04em;
  }
}

/* ------------------------------
  Space
------------------------------ */

.space {
  position: relative;
  padding: 96px 0 110px;
  overflow: hidden;
  background: #fff;
}

.space::before {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(232, 247, 248, 0.9);
  filter: blur(70px);
  pointer-events: none;
}

.space__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 290px 1fr;
  column-gap: 56px;
  align-items: start;
}

.space__label {
  color: var(--color-main);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.space__label::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 12px;
  background: var(--color-main);
}

.space__title {
  margin-top: 44px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.08em;
}

.space__lead {
  margin-top: 28px;
  font-size: 13px;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.06em;
}

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

.space__card {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(11, 27, 43, 0.06);
}

.space__card--large {
  grid-column: 1 / 3;
}

.space__card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.space__card--large .space__card-image {
  aspect-ratio: 16 / 6;
}

.space__card:not(.space__card--large) .space__card-image {
  aspect-ratio: 16 / 9;
}

.space__card-body {
  padding: 18px 20px 20px;
}

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

.space__card-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.space__card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.space__card-text {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #4b5563;
}

@media screen and (max-width: 767px) {
  .space {
    padding: 56px 0 64px;
  }

  .space::before {
    left: -100px;
    bottom: 80px;
    width: 260px;
    height: 260px;
    filter: blur(40px);
  }

  .space__inner {
    display: block;
    width: min(100% - 48px, 100%);
  }

  .space__heading {
    text-align: center;
  }

  .space__label {
    font-size: 14px;
    letter-spacing: 0.16em;
  }

  .space__label::after {
    width: 34px;
    margin: 11px auto 0;
  }

  .space__title {
    width: fit-content;
    margin: 28px auto 0;
    font-size: 26px;
    line-height: 1.6;
    letter-spacing: 0.08em;
    text-align: left;
  }

  .space__lead {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.9;
    letter-spacing: 0.04em;
    text-align: center;
  }

  .space__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
  }

  .space__card--large {
    grid-column: auto;
  }

  .space__card,
  .space__card--large {
    border-radius: 16px;
  }

  .space__card-image,
  .space__card--large .space__card-image,
  .space__card:not(.space__card--large) .space__card-image {
    aspect-ratio: 16 / 10;
  }

  .space__card-body {
    padding: 16px;
  }

  .space__card-head {
    gap: 10px;
  }

  .space__card-icon {
    width: 24px;
    height: 24px;
  }

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

  .space__card-text {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.8;
  }
}

/* ------------------------------
  Flow
------------------------------ */

.flow {
  padding: 96px 0 110px;
  background: #fff;
}

.flow__inner {
  text-align: center;
}

.flow__label {
  color: var(--color-main);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.flow__label::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin: 12px auto 0;
  background: var(--color-main);
}

.flow__title {
  margin-top: 28px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.flow__lead {
  margin-top: 24px;
  font-size: 13px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.06em;
}

/* visual */

.flow__visual {
  position: relative;
  width: min(100%, 760px);
  height: 320px;
  margin: 36px auto 0;
}

.flow__phone {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 178px;
  transform: translate(-50%, -50%);
}

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

.flow__lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.flow__lines path {
  fill: none;
  stroke: var(--color-main);
  stroke-width: 1.4;
  opacity: 0.45;
}

.flow__lines circle {
  fill: var(--color-main);
  opacity: 0.9;
}

.flow__lines--sp {
  display: none;
}

.flow__app-label {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-align: left;
}

.flow__app-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(11, 27, 43, 0.08);
  flex-shrink: 0;
}

.flow__app-icon {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.flow__app-label--left {
  top: 138px;
  left: 40px;
}

.flow__app-label--right-top {
  top: 56px;
  right: 22px;
}

.flow__app-label--right-bottom {
  top: 184px;
  right: 0%;
}

/* steps */

.flow__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.flow__steps::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: #7ae1e4;
}

.flow__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}

.flow__step-node {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: 22px;
  height: 22px;
  border: 1px solid var(--color-main);
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px #fff;
}

.flow__step-node::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-main);
  transform: translate(-50%, -50%);
}

.flow__step-card {
  min-height: 250px;
  padding: 28px 18px 24px;
  border: 1px solid #edf1f4;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(11, 27, 43, 0.04);
  text-align: center;
  flex: 1;
  height: 100%;
}

.flow__step-number {
  color: var(--color-main);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}

.flow__step-en {
  margin-top: 8px;
  color: var(--color-main);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.14em;
}

.flow__step-icon {
  display: block;
  width: 52px;
  height: 52px;
  margin: 20px auto 0;
  object-fit: contain;
}

.flow__step-title {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.flow__step-title::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  margin: 10px auto 0;
  background: var(--color-main);
}

.flow__step-text {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

/* SP */

@media screen and (max-width: 767px) {
  .flow {
    padding: 56px 0 64px;
  }

  .flow__label {
    font-size: 14px;
    letter-spacing: 0.16em;
  }

  .flow__label::after {
    width: 34px;
    margin-top: 11px;
  }

  .flow__title {
    margin-top: 24px;
    font-size: 26px;
    line-height: 1.55;
    letter-spacing: 0.04em;
  }

  .flow__lead {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.9;
    letter-spacing: 0.04em;
  }

  /* mock-up visual */
  .flow__visual {
    width: min(100%, 340px);
    height: 260px;
    margin: 28px auto 0;
  }

  .flow__phone {
    width: 112px;
  }

  .flow__lines--pc {
    display: none;
  }

  .flow__lines--sp {
    display: block;
  }

  .flow__lines path {
    stroke-width: 1.15;
  }

  .flow__app-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 86px;
    font-size: 10px;
    line-height: 1.55;
    letter-spacing: 0.02em;
    text-align: center;
    white-space: normal;
  }

  .flow__app-icon-wrap {
    width: 50px;
    height: 50px;
  }

  .flow__app-icon {
    width: 24px;
    height: 24px;
  }

  .flow__app-label--left {
    left: 0;
    top: 108px;
  }

  .flow__app-label--right-top {
    right: 0;
    top: 36px;
  }

  .flow__app-label--right-bottom {
    right: 0;
    top: 150px;
  }

  /* steps */
  .flow__steps {
    display: block;
    position: relative;
    width: min(100%, 340px);
    margin: 36px auto 0;
  }

  .flow__steps::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 11px;
    width: 1px;
    height: calc(100% - 22px);
    background: #7ae1e4;
  }

  .flow__step {
    position: relative;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
    padding-top: 0;
    margin-top: 14px;
  }

  .flow__step:first-child {
    margin-top: 0;
  }

  .flow__step-node {
    position: absolute;
    z-index: 2;
    top: 46px;
    left: 11px;
    width: 22px;
    height: 22px;
    border: 1px solid var(--color-main);
    border-radius: 50%;
    background: #fff;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px #fff;
  }

  .flow__step-node::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--color-main);
    transform: translate(-50%, -50%);
  }

  .flow__step-card {
    grid-column: 2 / 3;
    display: grid;
    grid-template-columns: 58px 42px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    width: 100%;
    min-height: 122px;
    padding: 14px;
    border: 1px solid #edf1f4;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(11, 27, 43, 0.04);
    text-align: left;
  }

  .flow__step-number {
    font-size: 26px;
    line-height: 1;
  }

  .flow__step-en {
    margin-top: 4px;
    font-size: 9px;
    line-height: 1.35;
    letter-spacing: 0.08em;
  }

  .flow__step-icon {
    width: 34px;
    height: 34px;
    margin: 0;
    object-fit: contain;
  }

  .flow__step-title {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }

  .flow__step-title::after {
    display: none;
  }

  .flow__step-text {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.75;
    letter-spacing: 0.03em;
  }
}

/* ------------------------------
  Plan
------------------------------ */

.plan {
  position: relative;
  padding: 96px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 15%, rgba(231, 247, 248, 0.95) 0, rgba(231, 247, 248, 0.95) 10%, transparent 32%),
    radial-gradient(circle at 85% 12%, rgba(231, 247, 248, 0.95) 0, rgba(231, 247, 248, 0.95) 10%, transparent 32%),
    linear-gradient(180deg, #f9fdfd 0%, #ffffff 42%, #f6fcfc 100%);
}

.plan__bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.plan__bg-shape--left {
  width: 380px;
  height: 380px;
  top: -220px;
  left: -180px;
  background: rgba(225, 245, 246, 0.85);
}

.plan__bg-shape--right {
  width: 360px;
  height: 360px;
  top: -180px;
  right: -160px;
  background: rgba(226, 246, 247, 0.82);
}

.plan__photo {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

.plan__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan__photo--left {
  top: 36px;
  left: 37px;
  width: 267px;
  opacity: 0.42;
}

.plan__photo--right {
  top: 36px;
  right: 90px;
  width: 257px;
}

.plan__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.plan__label {
  color: var(--color-main);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.plan__label::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin: 12px auto 0;
  background: var(--color-main);
}

.plan__title {
  margin-top: 28px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.plan__lead {
  margin-top: 26px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.plan__text {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}

.plan__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 54px;
  align-items: stretch;
}

.plan__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 34px 28px 24px;
  border: 1px solid #e8edef;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(11, 27, 43, 0.04);
  text-align: left;
}

.plan__card--standard {
  border: 2px solid var(--color-main);
  box-shadow: 0 12px 36px rgba(0, 171, 163, 0.08);
}

.plan__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  min-width: 74px;
  padding: 5px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0bb4ad 0%, #0ba59f 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
  transform: translateX(-50%);
}

.plan__card-head {
  text-align: center;
}

.plan__card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.plan__card-sub {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
  color: #4d5966;
}

.plan__price {
  margin-top: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e8edef;
  text-align: center;
}

.plan__price-label {
  margin-right: 6px;
  font-size: 15px;
  font-weight: 700;
}

.plan__price-value {
  color: var(--color-main);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.plan__price-unit {
  margin-left: 4px;
  font-size: 13px;
  font-weight: 700;
}

.plan__list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  flex: 1;
}

.plan__list li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.plan__list li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.plan__list li.is-active::before {
  background: var(--color-main);
}

.plan__list li.is-active::after {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 5px;
  width: 5px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-65%) rotate(45deg);
}

.plan__list li.is-muted {
  color: #9aa3ab;
}

.plan__list li.is-muted::before {
  background: #d4d8dc;
}

.plan__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 28px;
  border: 1.5px solid var(--color-main);
  border-radius: 999px;
  background: #fff;
  color: var(--color-main);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.plan__button::after {
  content: "›";
  margin-left: 12px;
  font-size: 18px;
  line-height: 1;
}

.plan__button--filled {
  background: linear-gradient(90deg, #0bb4ad 0%, #0ba59f 100%);
  color: #fff;
  border-color: transparent;
}

/* ビジター料金 */

.plan__visitor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1000px);
  min-height: 92px;
  margin: 36px auto 0;
  padding: 20px 38px;
  border: 1px solid #d9e7e9;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 26px rgba(11, 27, 43, 0.04);
  text-align: left;
}

.plan__visitor-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.plan__visitor-price {
  display: flex;
  align-items: baseline;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.plan__visitor-price strong {
  margin-right: 5px;
  color: var(--color-main);
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.04em;
}

/* 各種オプション */

.plan__options {
  margin-top: 68px;
}

.plan__options-head {
  text-align: center;
}

.plan__options-label {
  color: var(--color-main);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.18em;
}

.plan__options-label::after {
  content: "";
  display: block;
  width: 38px;
  height: 1px;
  margin: 10px auto 0;
  background: var(--color-main);
}

.plan__options-title {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.plan__options-lead {
  margin-top: 12px;
  color: #4d5966;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.plan__option-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.plan__option-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dfe8ea;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 26px rgba(11, 27, 43, 0.05);
}

.plan__option-image {
  margin: 9px 9px 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border-radius: 10px;
  background: #eef3f3;
}

.plan__option-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan__option-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 12px 20px;
  text-align: center;
}

.plan__option-en {
  color: var(--color-main);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.14em;
}

.plan__option-title {
  margin-top: 5px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.plan__option-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-top: 16px;
  white-space: nowrap;
}

.plan__option-price-label {
  margin-right: 4px;
  font-size: 11px;
  font-weight: 700;
}

.plan__option-price strong {
  color: var(--color-main);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
}

.plan__option-price-unit {
  margin-left: 3px;
  font-size: 10px;
  font-weight: 700;
}

.plan__option-note {
  margin-top: auto;
  padding-top: 14px;
  color: #68737d;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.plan__option-rate-list {
  margin-top: 12px;
}

.plan__option-rate-list > div {
  padding: 8px 0;
  border-top: 1px solid #e4ecee;
}

.plan__option-rate-list dt {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.6;
}

.plan__option-rate-list dd {
  margin-top: 2px;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.6;
}

.plan__option-rate-list dd strong {
  color: var(--color-main);
  font-size: 15px;
}

.plan__option-rate-list dd span {
  display: block;
  color: #68737d;
  font-size: 8px;
  font-weight: 500;
}

/* PCの並びだけ調整 */
@media screen and (min-width: 768px) {
  .plan__card--light {
    order: 1;
  }

  .plan__card--standard {
    order: 2;
  }

  .plan__card--day {
    order: 3;
  }
}

/* SP */
@media screen and (max-width: 767px) {
  .plan {
    padding: 56px 0 64px;
    background:
      linear-gradient(180deg, #eef9fa 0%, #ffffff 22%, #f7fcfc 100%);
  }

  .plan__bg-shape--left {
    width: 220px;
    height: 220px;
    top: -130px;
    left: -110px;
  }

  .plan__bg-shape--right {
    width: 220px;
    height: 220px;
    top: auto;
    bottom: -120px;
    right: -110px;
  }

  .plan__photo {
    display: none;
  }

  .plan__label {
    font-size: 14px;
    letter-spacing: 0.16em;
  }

  .plan__label::after {
    width: 34px;
    margin-top: 11px;
  }

  .plan__title {
    margin-top: 20px;
    font-size: 26px;
    line-height: 1.5;
  }

  .plan__lead {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.6;
  }

  .plan__text {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.9;
  }

  .plan__cards {
    grid-template-columns: 1fr;
    gap: 16px;
    width: min(100%, 340px);
    margin: 32px auto 0;
  }

  .plan__card {
    min-height: auto;
    padding: 20px 16px 18px;
    border-radius: 16px;
  }

  .plan__card-title {
    font-size: 17px;
  }

  .plan__card-sub {
    margin-top: 4px;
    font-size: 12px;
  }

  .plan__price {
    margin-top: 16px;
    padding-bottom: 14px;
  }

  .plan__price-label {
    font-size: 14px;
  }

  .plan__price-value {
    font-size: 22px;
  }

  .plan__price-unit {
    font-size: 12px;
  }

  .plan__list {
    gap: 10px;
    margin-top: 16px;
  }

  .plan__list li {
    padding-left: 24px;
    font-size: 12px;
    line-height: 1.7;
  }

  .plan__list li::before {
    width: 14px;
    height: 14px;
  }

  .plan__list li.is-active::after {
    left: 4px;
    width: 4px;
    height: 7px;
  }

  .plan__button {
    min-height: 48px;
    margin-top: 18px;
    font-size: 14px;
  }

  .plan__card--standard {
    order: 1;
  }

  .plan__card--light {
    order: 2;
  }

  .plan__card--day {
    order: 3;
  }

    .plan__visitor {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    width: min(100%, 340px);
    min-height: 104px;
    margin-top: 24px;
    padding: 18px;
    border-radius: 14px;
    text-align: center;
  }

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

  .plan__visitor-price {
    font-size: 12px;
  }

  .plan__visitor-price strong {
    font-size: 24px;
  }

  .plan__options {
    margin-top: 48px;
  }

  .plan__options-label {
    font-size: 13px;
  }

  .plan__options-title {
    margin-top: 18px;
    font-size: 21px;
  }

  .plan__options-lead {
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.8;
  }

  .plan__option-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(100%, 340px);
    margin: 24px auto 0;
  }

  .plan__option-card {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    min-height: 156px;
    padding: 8px;
    border-radius: 13px;
  }

  .plan__option-image {
    height: 100%;
    min-height: 140px;
    margin: 0;
    aspect-ratio: auto;
    border-radius: 9px;
  }

  .plan__option-body {
    justify-content: center;
    padding: 10px 10px 10px 14px;
    text-align: left;
  }

  .plan__option-en {
    font-size: 9px;
  }

  .plan__option-title {
    margin-top: 3px;
    font-size: 13px;
  }

  .plan__option-price {
    justify-content: flex-start;
    margin-top: 10px;
  }

  .plan__option-price-label {
    font-size: 9px;
  }

  .plan__option-price strong {
    font-size: 19px;
  }

  .plan__option-price-unit {
    font-size: 8px;
  }

  .plan__option-note {
    margin-top: 10px;
    padding-top: 0;
    font-size: 8px;
  }

  .plan__option-rate-list {
    margin-top: 8px;
  }

  .plan__option-rate-list > div {
    padding: 5px 0;
  }

  .plan__option-rate-list dt {
    font-size: 9px;
  }

  .plan__option-rate-list dd {
    font-size: 8px;
  }

  .plan__option-rate-list dd strong {
    font-size: 13px;
  }
}

/* ------------------------------
  Information
------------------------------ */

.information {
  padding: 96px 0 110px;
  background: #fff;
}

.information__inner {
  text-align: center;
}

.information__label {
  color: var(--color-main);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.information__label::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin: 12px auto 0;
  background: var(--color-main);
}

.information__title {
  margin-top: 28px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.18em;
}

.information__access-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(100%, 960px);
  margin: 34px auto 0;
}

.information__access-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 10px 20px;
  border: 1.5px solid var(--color-main);
  border-radius: 999px;
  background: #fff;
  color: var(--color-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.information__access-icon {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.information__map {
  width: min(100%, 1040px);
  margin: 26px auto 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 10px 32px rgba(11, 27, 43, 0.08);
}

.information__map iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 5;
  height: auto;
  border: 0;
}

.information__address {
  margin-top: 32px;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.12em;
}

.information__table {
  width: min(100%, 820px);
  margin: 24px auto 0;
  border-top: 1px solid #dce5e8;
  text-align: left;
}

.information__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid #dce5e8;
}

.information__row dt,
.information__row dd {
  padding: 18px 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.information__row dt {
  color: var(--color-main);
  text-align: center;
}

.information__row dd {
  color: var(--color-text);
}

.information__row dd span {
  display: block;
}

.information__pending {
  color: #b7791f;
}

.information__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: var(--color-main);
  font-weight: 700;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.information__contact-link span {
  display: inline-block;
  flex-shrink: 0;
}

/* SP */

@media screen and (max-width: 767px) {
  .information {
    padding: 56px 0 64px;
  }

  .information__label {
    font-size: 14px;
    letter-spacing: 0.16em;
  }

  .information__label::after {
    width: 34px;
    margin-top: 11px;
  }

  .information__title {
    margin-top: 20px;
    font-size: 26px;
    line-height: 1.5;
    letter-spacing: 0.14em;
  }

  .information__access-list {
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(100%, 340px);
    margin-top: 28px;
  }

  .information__access-item {
    justify-content: flex-start;
    min-height: 46px;
    padding: 10px 18px;
    font-size: 13px;
    text-align: left;
  }

  .information__access-icon {
    width: 20px;
    height: 20px;
  }

  .information__map {
    width: min(100%, 340px);
    margin-top: 22px;
    border-radius: 14px;
  }

  .information__map iframe {
    aspect-ratio: 16 / 11;
  }

  .information__address {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.08em;
  }

  .information__table {
    width: min(100%, 340px);
    margin-top: 20px;
  }

  .information__row {
    grid-template-columns: 92px 1fr;
  }

  .information__row dt,
  .information__row dd {
    padding: 14px 0;
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }

  .information__row dt {
    padding-left: 4px;
    text-align: left;
  }

  .information__row dd {
    padding-left: 10px;
  }
}

/* ------------------------------
  FAQ
------------------------------ */

.faq {
  position: relative;
  padding: 96px 0 110px;
  overflow: hidden;
  background: #fff;
}

.faq::before,
.faq::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}

.faq::before {
  top: -180px;
  left: -160px;
  width: 420px;
  height: 420px;
  background: rgba(232, 247, 248, 0.9);
  filter: blur(60px);
}

.faq::after {
  right: -180px;
  bottom: -180px;
  width: 460px;
  height: 460px;
  background: rgba(232, 247, 248, 0.8);
  filter: blur(70px);
}

.faq__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.faq__filters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: min(100%, 900px);
  margin: 44px auto 0;
}

.faq__filter {
  min-height: 58px;
  padding: 12px 16px;
  border: 1px solid rgba(0, 171, 163, 0.25);
  border-radius: 12px;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    color 0.3s,
    background-color 0.3s,
    border-color 0.3s,
    transform 0.3s;
}

.faq__filter:hover {
  border-color: var(--color-main);
  transform: translateY(-2px);
}

.faq__filter.is-active {
  border-color: var(--color-main);
  color: #fff;
  background: var(--color-main);
  box-shadow: 0 8px 20px rgba(0, 171, 163, 0.18);
}

.faq__label {
  color: var(--color-main);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.faq__label::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin: 12px auto 0;
  background: var(--color-main);
}

.faq__title {
  margin-top: 28px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.14em;
}

.faq__lead {
  margin-top: 24px;
  font-size: 13px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.06em;
}

.faq__list {
  width: min(100%, 900px);
  margin: 20px auto 0;
}

.faq__item {
  border: 1px solid #edf1f4;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(11, 27, 43, 0.04);
  overflow: hidden;
}

.faq__item[hidden] {
  display: none;
}

.faq__item:not([hidden])+.faq__item:not([hidden]) {
  margin-top: 14px;
}

.faq__question {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr 32px;
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 18px 28px;
  cursor: pointer;
  list-style: none;
  text-align: left;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__q {
  color: var(--color-main);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.faq__question-text {
  color: var(--color-text);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.faq__icon {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  margin-left: auto;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-text);
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.faq__icon::before {
  width: 20px;
  height: 1.5px;
}

.faq__icon::after {
  width: 1.5px;
  height: 20px;
}

.faq__item[open] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq__answer {
  padding: 0 28px 24px 82px;
  text-align: left;
}

.faq__answer p {
  color: #4d5966;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}

/* SP */

@media screen and (max-width: 767px) {
  .faq {
    padding: 56px 0 64px;
  }

  .faq::before {
    top: -120px;
    left: -130px;
    width: 280px;
    height: 280px;
    filter: blur(44px);
  }

  .faq::after {
    right: -140px;
    bottom: -120px;
    width: 300px;
    height: 300px;
    filter: blur(48px);
  }

  .faq__filters {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: min(100%, 340px);
    margin-top: 32px;
  }

  .faq__filter {
    min-height: 52px;
    padding: 10px 8px;
    border-radius: 10px;
    font-size: 12px;
    letter-spacing: 0.02em;
  }

  .faq__filter:hover {
    transform: none;
  }

  .faq__label {
    font-size: 14px;
    letter-spacing: 0.16em;
  }

  .faq__label::after {
    width: 34px;
    margin-top: 11px;
  }

  .faq__title {
    margin-top: 20px;
    font-size: 26px;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }

  .faq__lead {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.9;
    letter-spacing: 0.04em;
  }

  .faq__list {
    width: min(100%, 340px);
    margin-top: 14px;
  }

  .faq__item {
    border-radius: 12px;
  }

  .faq__item:not([hidden])+.faq__item:not([hidden]) {
    margin-top: 10px;
  }

  .faq__question {
    grid-template-columns: 30px 1fr 24px;
    gap: 10px;
    min-height: 60px;
    padding: 14px 16px;
  }

  .faq__q {
    font-size: 22px;
  }

  .faq__question-text {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.04em;
  }

  .faq__icon {
    width: 18px;
    height: 18px;
  }

  .faq__icon::before {
    width: 18px;
  }

  .faq__icon::after {
    height: 18px;
  }

  .faq__answer {
    padding: 0 16px 18px 56px;
  }

  .faq__answer p {
    font-size: 12px;
    line-height: 1.9;
    letter-spacing: 0.03em;
  }

  .faq__answer--pending p {
    padding: 12px;
  }
}

/* 修正後追加分 */

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

.faq__answer-list li {
  position: relative;
  padding-left: 1.2em;
  color: #4d5966;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}

.faq__answer-list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-main);
  font-weight: 700;
}

.faq__answer-list li+li {
  margin-top: 8px;
}

.faq__answer-list strong {
  color: var(--color-text);
  font-weight: 700;
}

.faq__answer-link {
  color: var(--color-main);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq__answer-link:hover {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .faq__answer-list li {
    font-size: 12px;
    line-height: 1.9;
    letter-spacing: 0.03em;
  }

  .faq__answer-list li+li {
    margin-top: 6px;
  }
}

/* ------------------------------
  CTA
------------------------------ */

.cta {
  position: relative;
  padding: 78px 0 70px;
  overflow: hidden;
  background-image: url("../images/pc-cta-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta__title {
  color: var(--color-text);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.08em;
}

.cta__title span {
  color: var(--color-main);
}

.cta__text {
  margin-top: 22px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}

.cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  min-height: 58px;
  margin-top: 30px;
  padding: 0 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0bb4ad 0%, #0ba59f 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 26px rgba(0, 171, 163, 0.24);
  transition: 0.3s;
}

.cta__button::after {
  content: "→";
  margin-left: 16px;
  font-size: 18px;
  line-height: 1;
}

.cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 171, 163, 0.3);
}

.cta__note {
  margin-top: 22px;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

/* SP */

@media screen and (max-width: 767px) {
  .cta {
    padding: 56px 0 58px;
    background-image: url("../images/sp-cta-bg.webp");
    background-position: center top;
    background-size: cover;
  }

  .cta__inner {
    width: min(100% - 48px, 100%);
  }

  .cta__title {
    font-size: 24px;
    line-height: 1.7;
    letter-spacing: 0.06em;
  }

  .cta__text {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.9;
    letter-spacing: 0.04em;
  }

  .cta__button {
    min-width: 240px;
    min-height: 52px;
    margin-top: 26px;
    padding: 0 28px;
    font-size: 14px;
  }

  .cta__button::after {
    margin-left: 12px;
    font-size: 16px;
  }

  .cta__note {
    margin-top: 18px;
    font-size: 11px;
  }
}

/* ------------------------------
  Footer
------------------------------ */

.footer {
  position: relative;
  padding: 80px 0 32px;
  background:
    radial-gradient(circle at 12% 18%, rgba(225, 245, 246, 0.9) 0, transparent 28%),
    linear-gradient(180deg, #f5fbfb 0%, #edf8f9 100%);
}

.footer__inner {
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  gap: 72px;
  align-items: start;
}

.footer__logo {
  display: block;
  width: 150px;
}

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

.footer__copy {
  margin-top: 30px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}

.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.footer__nav-list {
  display: grid;
  gap: 28px;
}

.footer__nav-list a {
  position: relative;
  display: inline-block;
  padding-left: 18px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.footer__nav-list a::before {
  content: "›";
  position: absolute;
  top: 50%;
  left: 0;
  color: var(--color-main);
  font-size: 18px;
  line-height: 1;
  transform: translateY(-50%);
}

.footer__info {
  display: grid;
  gap: 30px;
}

.footer__info-title {
  padding-bottom: 12px;
  border-bottom: 1px solid #d5e3e5;
  color: var(--color-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.footer__info p {
  margin-top: 14px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.06em;
}

.footer__bottom {
  position: relative;
  margin-top: 70px;
  padding-top: 32px;
  border-top: 1px solid #d5e3e5;
  text-align: center;
}

.footer__copyright {
  color: var(--color-text);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* SP */

@media screen and (max-width: 767px) {
  .footer {
    padding: 48px 0 28px;
  }

  .footer__inner {
    display: block;
    width: min(100% - 48px, 100%);
  }

  .footer__brand {
    text-align: center;
  }

  .footer__logo {
    width: 100px;
    margin: 0 auto;
  }

  .footer__copy {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.9;
    letter-spacing: 0.06em;
  }

  .footer__nav {
    display: block;
    margin-top: 32px;
  }

  .footer__nav-list {
    gap: 0;
  }

  .footer__nav-list+.footer__nav-list {
    margin-top: 0;
  }

  .footer__nav-list li {
    border-bottom: 1px solid #d5e3e5;
  }

  .footer__nav-list:first-child li:first-child {
    border-top: 1px solid #d5e3e5;
  }

  .footer__nav-list a {
    display: block;
    padding: 13px 0 13px 18px;
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .footer__info {
    gap: 22px;
    margin-top: 32px;
  }

  .footer__info-title {
    padding-bottom: 10px;
    font-size: 12px;
  }

  .footer__info p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.9;
  }

  .footer__bottom {
    width: min(100% - 48px, 100%);
    margin-top: 32px;
    padding-top: 20px;
  }

  .footer__copyright {
    font-size: 10px;
  }
}

/* ------------------------------
  Page Top
------------------------------ */

.page-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 24px rgba(11, 27, 43, 0.08);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.page-top.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-top__arrow {
  width: 8px;
  height: 8px;
  margin-bottom: 6px;
  border-top: 2px solid var(--color-main);
  border-left: 2px solid var(--color-main);
  transform: rotate(45deg);
}

.page-top__text {
  text-align: center;
}

.page-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(11, 27, 43, 0.12);
}

.page-top.is-show:hover {
  transform: translateY(-3px);
}

@media screen and (max-width: 767px) {
  .page-top {
    right: 16px;
    bottom: 92px;
    width: 54px;
    height: 54px;
    font-size: 8px;
  }

  .page-top__arrow {
    width: 7px;
    height: 7px;
    margin-bottom: 5px;
  }
}

/* ------------------------------
  Lower Page
------------------------------ */

.lower-page {
  padding-top: var(--header-height);
  background: #fff;
}

.lower-page__hero {
  position: relative;
  padding: 72px 0 64px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(232, 247, 248, 0.95) 0, transparent 30%),
    linear-gradient(180deg, #f5fbfb 0%, #ffffff 100%);
}

.lower-page__hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(232, 247, 248, 0.8);
  filter: blur(60px);
  pointer-events: none;
}

.lower-page__hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.lower-page__label {
  color: var(--color-main);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.lower-page__label::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin: 12px auto 0;
  background: var(--color-main);
}

.lower-page__title {
  margin-top: 28px;
  color: var(--color-text);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
}

.lower-page__content {
  padding: 72px 0 96px;
}

.lower-page__inner {
  width: min(100% - 40px, 900px);
}

.lower-page__body {
  padding: 48px 56px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 36px rgba(11, 27, 43, 0.06);
}

.lower-page__body h2 {
  margin-top: 44px;
  padding-bottom: 12px;
  border-bottom: 1px solid #dce5e8;
  color: var(--color-main);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.lower-page__body h2:first-child {
  margin-top: 0;
}

.lower-page__body h3 {
  margin-top: 32px;
  color: var(--color-text);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.lower-page__body p {
  margin-top: 18px;
  color: #4d5966;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: 0.05em;
}

.lower-page__body ul,
.lower-page__body ol {
  margin-top: 18px;
  padding-left: 1.4em;
}

.lower-page__body li {
  color: #4d5966;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}

.lower-page__body a {
  color: var(--color-main);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media screen and (max-width: 767px) {
  .lower-page {
    padding-top: 48px;
  }

  .lower-page__hero {
    padding: 48px 0 44px;
  }

  .lower-page__label {
    font-size: 14px;
    letter-spacing: 0.16em;
  }

  .lower-page__label::after {
    width: 34px;
    margin-top: 11px;
  }

  .lower-page__title {
    margin-top: 22px;
    font-size: 26px;
    letter-spacing: 0.08em;
  }

  .lower-page__content {
    padding: 48px 0 64px;
  }

  .lower-page__inner {
    width: min(100% - 32px, 100%);
  }

  .lower-page__body {
    padding: 30px 22px;
    border-radius: 16px;
  }

  .lower-page__body h2 {
    margin-top: 36px;
    font-size: 17px;
    line-height: 1.7;
  }

  .lower-page__body h3 {
    margin-top: 28px;
    font-size: 15px;
  }

  .lower-page__body p,
  .lower-page__body li {
    font-size: 12px;
    line-height: 2;
    letter-spacing: 0.04em;
  }
}

/* 運営会社 */

.company-profile {
  width: min(100%, 880px);
  margin-inline: auto;
}

.company-profile__lead {
  margin-bottom: 32px;
  color: #4d5966;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}

.company-profile__list {
  overflow: hidden;
  border: 1px solid #dfe8ea;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(11, 27, 43, 0.04);
}

.company-profile__row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
}

.company-profile__row:not(:last-child) {
  border-bottom: 1px solid #dfe8ea;
}

.company-profile__row dt,
.company-profile__row dd {
  padding: 22px 26px;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.company-profile__row dt {
  display: flex;
  align-items: center;
  background: #f2f7f7;
  color: var(--color-main);
  font-weight: 700;
}

.company-profile__row dd {
  display: flex;
  align-items: center;
  margin: 0;
  color: #303943;
  font-weight: 500;
}

.company-profile__note {
  margin-top: 16px;
  color: #68737d;
  font-size: 11px;
  line-height: 1.8;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .company-profile__lead {
    margin-bottom: 24px;
    font-size: 13px;
    text-align: left;
  }

  .company-profile__list {
    border-radius: 13px;
  }

  .company-profile__row {
    grid-template-columns: 1fr;
  }

  .company-profile__row dt {
    padding: 14px 18px 4px;
    background: #fff;
    font-size: 12px;
  }

  .company-profile__row dd {
    padding: 4px 18px 14px;
    font-size: 13px;
  }

  .company-profile__note {
    margin-top: 12px;
    font-size: 10px;
    text-align: left;
  }
}

/* ------------------------------
  Contact Form 7
------------------------------ */

.olu-contact {
  text-align: center;
}

.olu-contact__lead {
  margin-top: 0 !important;
  color: #4d5966;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: 0.05em;
}

/* Contact Form 7が自動挿入する不要な改行を消す */

.olu-contact__lead>br:not(.sp-only),
.olu-contact__demo-note>br,
.olu-contact__field-label br {
  display: none;
}

.olu-contact__demo-note {
  margin-top: 24px !important;
  padding: 18px 22px;
  border-radius: 10px;
  background: #fff8e9;
  color: #59636e;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.olu-contact__fields {
  width: min(100%, 720px);
  margin: 44px auto 0;
}

.olu-contact__field+.olu-contact__field {
  margin-top: 26px;
}

.olu-contact__field p,
.olu-contact__acceptance p,
.olu-contact__submit-wrap p {
  margin: 0 !important;
}

.olu-contact__field-label {
  display: block;
  width: 100%;
  text-align: left;
}

.olu-contact__field-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.olu-contact__required,
.olu-contact__optional {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 22px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.olu-contact__required {
  background: #eaf8f7;
  color: var(--color-main);
}

.olu-contact__optional {
  background: #eef1f3;
  color: #66717c;
}

.olu-contact__field .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.olu-contact__control {
  display: block;
  width: 100%;
  min-height: 54px;
  padding: 13px 16px;
  border: 1px solid #d6e2e5;
  border-radius: 10px;
  outline: none;
  background: #f8fbfb;
  color: var(--color-text);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.olu-contact__control::placeholder {
  color: #a4adb5;
}

.olu-contact__control:focus {
  border-color: var(--color-main);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 171, 163, 0.1);
}

select.olu-contact__control {
  cursor: pointer;
}

.olu-contact__textarea {
  min-height: 180px;
  resize: vertical;
}

.olu-contact__acceptance {
  margin-top: 30px;
  color: #4d5966;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

.olu-contact__acceptance .wpcf7-list-item {
  margin: 0;
}

.olu-contact__acceptance label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.olu-contact__acceptance input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--color-main);
}

.olu-contact__acceptance a {
  color: var(--color-main);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.olu-contact__submit-wrap {
  position: relative;
  margin-top: 28px;
  text-align: center;
}

.olu-contact__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 320px);
  min-height: 56px;
  padding: 12px 32px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg,
      #0bb4ad 0%,
      #0ba59f 100%);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 171, 163, 0.22);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
}

.olu-contact__submit:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 171, 163, 0.3);
}

.olu-contact__submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.olu-contact__submit-wrap .wpcf7-spinner {
  position: absolute;
  top: 50%;
  margin: 0 0 0 12px;
  transform: translateY(-50%);
}

.olu-contact__fields .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #d85b5b;
  font-size: 12px;
  font-weight: 500;
}

.olu-contact__fields .wpcf7-response-output {
  margin: 24px 0 0 !important;
  padding: 14px 16px !important;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.8;
}

/* SP */

@media screen and (max-width: 767px) {
  .olu-contact__lead {
    font-size: 12px;
    line-height: 2;
    letter-spacing: 0.04em;
  }

  .olu-contact__demo-note {
    margin-top: 20px !important;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 11px;
    line-height: 1.8;
  }

  .olu-contact__fields {
    margin-top: 32px;
  }

  .olu-contact__field+.olu-contact__field {
    margin-top: 22px;
  }

  .olu-contact__field-title {
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
  }

  .olu-contact__required,
  .olu-contact__optional {
    min-width: 38px;
    min-height: 20px;
    font-size: 9px;
  }

  .olu-contact__control {
    min-height: 50px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 13px;
  }

  .olu-contact__textarea {
    min-height: 160px;
  }

  .olu-contact__acceptance {
    margin-top: 26px;
    font-size: 11px;
  }

  .olu-contact__acceptance input[type="checkbox"] {
    width: 17px;
    height: 17px;
  }

  .olu-contact__submit-wrap {
    margin-top: 24px;
  }

  .olu-contact__submit {
    width: 100%;
    min-height: 52px;
    font-size: 14px;
  }
}

/* ========================================
   COLUMN
======================================== */

.column-page {
  background: #f7faf9;
}

.column-archive {
  padding: 80px 40px 120px;
}

.column-archive__inner {
  width: min(100%, 1100px);
  margin-inline: auto;
}

.column-archive__lead {
  color: #4d5966;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}

/* カテゴリー */

.column-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.column-categories__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 22px;
  border: 1px solid #d8e5e5;
  border-radius: 999px;
  background: #fff;
  color: #4d5966;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition:
    border-color 0.3s,
    background-color 0.3s,
    color 0.3s;
}

.column-categories__link.is-current {
  border-color: var(--color-main);
  background: var(--color-main);
  color: #fff;
}

@media (hover: hover) {
  .column-categories__link:hover {
    border-color: var(--color-main);
    color: var(--color-main);
  }

  .column-categories__link.is-current:hover {
    color: #fff;
  }
}

/* 記事カード */

.column-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.column-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dfe8ea;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(11, 27, 43, 0.05);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.column-card__link {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.column-card__image {
  overflow: hidden;
  margin: 0;
  aspect-ratio: 3 / 2;
  background: #eaf1f1;
}

.column-card__thumbnail {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.column-card__placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      135deg,
      #edf5f4 0%,
      #d9e9e7 100%
    );
}

.column-card__placeholder span {
  color: var(--color-main);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.column-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 22px 24px;
}

.column-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}

.column-card__date {
  color: #7b858d;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.column-card__category {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #edf6f5;
  color: var(--color-main);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.5;
}

.column-card__title {
  margin-top: 14px;
  color: #26323a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.03em;
}

.column-card__more {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--color-main);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
}

.column-card__more::after {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  transition: width 0.3s;
}

@media (hover: hover) {
  .column-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 34px rgba(11, 27, 43, 0.09);
  }

  .column-card:hover .column-card__thumbnail {
    transform: scale(1.04);
  }

  .column-card:hover .column-card__more::after {
    width: 38px;
  }
}

/* 記事がない場合 */

.column-archive__empty {
  margin-top: 48px;
  padding: 48px 20px;
  border: 1px solid #dfe8ea;
  border-radius: 16px;
  background: #fff;
  color: #68737d;
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}

/* ページネーション */

.column-pagination {
  margin-top: 56px;
}

.column-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.column-pagination a.page-numbers,
.column-pagination span.page-numbers {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8e5e5;
  border-radius: 50%;
  background: #fff;
  color: #4d5966;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.column-pagination span.page-numbers.current {
  border-color: var(--color-main);
  background: var(--color-main);
  color: #fff;
}

@media (hover: hover) {
  .column-pagination a.page-numbers:hover {
    border-color: var(--color-main);
    color: var(--color-main);
  }
}

/* タブレット */

@media screen and (max-width: 900px) {
  .column-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* スマートフォン */

@media screen and (max-width: 767px) {
  .column-archive {
    padding: 52px 20px 88px;
  }

  .column-archive__lead {
    font-size: 13px;
    line-height: 1.9;
  }

  .column-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    overflow: visible;
    margin: 24px 0 0;
    padding: 0;
  }

  .column-categories__link {
    min-height: 38px;
    flex-shrink: 0;
    padding: 7px 16px;
    font-size: 10px;
    white-space: nowrap;
  }

  .column-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 30px;
  }

  .column-card {
    border-radius: 13px;
  }

  .column-card__link {
    display: grid;
    grid-template-columns: 126px minmax(0, 1fr);
    min-height: 154px;
  }

  .column-card__image {
    height: 100%;
    min-height: 154px;
    aspect-ratio: auto;
  }

  .column-card__body {
    padding: 16px 14px;
  }

  .column-card__meta {
    gap: 5px 8px;
  }

  .column-card__date {
    font-size: 8px;
  }

  .column-card__category {
    min-height: 20px;
    padding: 2px 7px;
    font-size: 7px;
  }

  .column-card__title {
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.65;
  }

  .column-card__more {
    padding-top: 12px;
    font-size: 8px;
  }

  .column-card__more::after {
    width: 20px;
  }

  .column-archive__empty {
    margin-top: 30px;
    padding: 36px 16px;
    font-size: 12px;
  }

  .column-pagination {
    margin-top: 40px;
  }

  .column-pagination a.page-numbers,
  .column-pagination span.page-numbers {
    width: 36px;
    height: 36px;
    font-size: 10px;
  }
}

/* ========================================
   COLUMN SINGLE
======================================== */

.column-single-page {
  background: #f7faf9;
}

.column-single__outer {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 42px 40px 120px;
}

/* パンくずリスト */

.column-breadcrumb {
  margin-bottom: 28px;
}

.column-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.column-breadcrumb__item {
  color: #7b858d;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.column-breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin-left: 7px;
  color: #b5bfc4;
}

.column-breadcrumb__item a {
  color: #68737d;
  text-decoration: none;
  transition: color 0.3s;
}

@media (hover: hover) {
  .column-breadcrumb__item a:hover {
    color: var(--color-main);
  }
}

/* 記事本体 */

.column-single {
  padding: 64px 72px 72px;
  border: 1px solid #dfe8ea;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(11, 27, 43, 0.05);
}

/* 記事ヘッダー */

.column-single__header {
  width: min(100%, 760px);
  margin-inline: auto;
}

.column-single__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.column-single__date {
  color: #7b858d;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.column-single__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.column-single__category {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 11px;
  border-radius: 999px;
  background: #edf6f5;
  color: var(--color-main);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition:
    background-color 0.3s,
    color 0.3s;
}

@media (hover: hover) {
  .column-single__category:hover {
    background: var(--color-main);
    color: #fff;
  }
}

.column-single__title {
  margin-top: 18px;
  color: #26323a;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

/* アイキャッチ */

.column-single__image {
  overflow: hidden;
  width: min(100%, 820px);
  margin: 42px auto 0;
  aspect-ratio: 3 / 2;
  border-radius: 16px;
  background: #eaf1f1;
}

.column-single__thumbnail {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 記事本文 */

.column-single__content {
  width: min(100%, 720px);
  margin: 56px auto 0;
  color: #3c4850;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}

.column-single__content > *:first-child {
  margin-top: 0;
}

.column-single__content > *:last-child {
  margin-bottom: 0;
}

.column-single__content p {
  margin-top: 1.8em;
}

.column-single__content h2 {
  margin: 64px 0 26px;
  padding: 17px 20px;
  border-left: 4px solid var(--color-main);
  border-radius: 0 10px 10px 0;
  background: #f1f7f6;
  color: #26323a;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.column-single__content h3 {
  margin: 46px 0 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid #cfdede;
  color: #26323a;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.column-single__content h4 {
  margin: 36px 0 18px;
  color: var(--color-main);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.column-single__content ul,
.column-single__content ol {
  margin: 28px 0;
  padding: 22px 24px 22px 46px;
  border-radius: 12px;
  background: #f6f9f9;
}

.column-single__content li + li {
  margin-top: 8px;
}

.column-single__content a {
  color: var(--color-main);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.column-single__content strong {
  color: #26323a;
  font-weight: 700;
}

.column-single__content blockquote {
  margin: 36px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--color-main);
  background: #f4f8f7;
  color: #56636b;
}

.column-single__content blockquote p {
  margin: 0;
}

.column-single__content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.column-single__content figure {
  margin: 40px 0;
}

.column-single__content figcaption {
  margin-top: 8px;
  color: #7b858d;
  font-size: 10px;
  line-height: 1.7;
  text-align: center;
}

/* 記事内の表 */

.column-single__content table {
  width: 100%;
  margin: 36px 0;
  border-collapse: collapse;
  font-size: 13px;
}

.column-single__content th,
.column-single__content td {
  padding: 14px 16px;
  border: 1px solid #d8e5e5;
  text-align: left;
}

.column-single__content th {
  background: #f1f7f6;
  color: #26323a;
  font-weight: 700;
}

/* 複数ページ記事 */

.column-single__page-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

/* 一覧へ戻る */

.column-single__footer {
  display: flex;
  justify-content: center;
  width: min(100%, 720px);
  margin: 64px auto 0;
  padding-top: 40px;
  border-top: 1px solid #dfe8ea;
}

.column-single__back {
  display: inline-flex;
  min-width: 220px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border: 1px solid var(--color-main);
  border-radius: 999px;
  background: #fff;
  color: var(--color-main);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition:
    background-color 0.3s,
    color 0.3s;
}

@media (hover: hover) {
  .column-single__back:hover {
    background: var(--color-main);
    color: #fff;
  }
}

/* タブレット */

@media screen and (max-width: 900px) {
  .column-single {
    padding: 52px 48px 60px;
  }

  .column-single__title {
    font-size: 28px;
  }
}

/* スマートフォン */

@media screen and (max-width: 767px) {
  .column-single__outer {
    padding: 28px 20px 88px;
  }

  .column-breadcrumb {
    margin-bottom: 18px;
  }

  .column-breadcrumb__list {
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .column-breadcrumb__item {
    flex-shrink: 0;
    font-size: 8px;
  }

  .column-breadcrumb__item:last-child {
    min-width: 0;
    overflow: hidden;
    flex-shrink: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .column-single {
    padding: 30px 20px 40px;
    border-radius: 15px;
  }

  .column-single__meta {
    gap: 7px 9px;
  }

  .column-single__date {
    font-size: 9px;
  }

  .column-single__category {
    min-height: 22px;
    padding: 2px 8px;
    font-size: 8px;
  }

  .column-single__title {
    margin-top: 13px;
    font-size: 22px;
    line-height: 1.55;
  }

  .column-single__image {
    margin-top: 28px;
    border-radius: 11px;
  }

  .column-single__content {
    margin-top: 36px;
    font-size: 13px;
    line-height: 2;
  }

  .column-single__content p {
    margin-top: 1.6em;
  }

  .column-single__content h2 {
    margin: 46px 0 20px;
    padding: 13px 14px;
    border-left-width: 3px;
    font-size: 18px;
  }

  .column-single__content h3 {
    margin: 34px 0 18px;
    padding-bottom: 9px;
    font-size: 16px;
  }

  .column-single__content h4 {
    margin: 28px 0 14px;
    font-size: 14px;
  }

  .column-single__content ul,
  .column-single__content ol {
    margin: 22px 0;
    padding: 17px 16px 17px 34px;
    border-radius: 10px;
  }

  .column-single__content blockquote {
    margin: 26px 0;
    padding: 18px 20px;
  }

  .column-single__content figure {
    margin: 28px 0;
  }

  .column-single__content table {
    font-size: 11px;
  }

  .column-single__content th,
  .column-single__content td {
    padding: 10px;
  }

  .column-single__footer {
    margin-top: 46px;
    padding-top: 30px;
  }

  .column-single__back {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    font-size: 11px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header__logo {
    width: 120px;
  }

  .header__nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    z-index: 9999;
    display: block;
    width: 100%;
    height: calc(100vh - var(--header-height));
    margin: 0;
    padding: 48px 40px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition:
      opacity 0.3s,
      visibility 0.3s,
      transform 0.3s;
  }

  .header__nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    font-size: 18px;
  }

  .header__actions {
    display: none;
  }

  .header__hamburger {
    position: relative;
    z-index: 10001;
    display: flex;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    margin-left: auto;
  }

  .header__hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-text);
    transition:
      transform 0.3s,
      opacity 0.3s;
  }

  .header__hamburger.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .header__hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }

  .header__hamburger.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}