@charset "UTF-8";
/* (!)style.css修正の場合/scss/内.scssを更新する */
/* ------------------------------
　　common
------------------------------ */
:root {
  --color-brand: #36b0bf;
  --color-brand-dark: #288793;
  --color-brand-light: #bbe5eb;
  --color-brand-lighter: #ebf9fb;
  --color-dark: #243034;
  --color-text: #222222;
  --color-white: #ffffff;
  --font-serif: 'EB Garamond', Georgia, serif;
  --font-sans: 'Noto Sans', sans-serif;
  --font-roboto: 'Roboto', sans-serif;
  --font-cormorant: 'Cormorant', Georgia, serif;
  --main-lh: 1.7;
  --header-height: 104px;
  --header-height-sp: 55px;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  background: var(--color-white);
  margin: 0;
  line-height: var(--main-lh);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  margin-top: var(--header-height);
}
@media screen and (max-width: 820px) {
  main {
    margin-top: var(--header-height-sp);
  }
}

article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
  display: block;
}

section,
[id] {
  scroll-margin-top: var(--header-height);
}

p + p {
  margin-top: 1em;
}

nav ul {
  list-style: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl {
  margin: 0;
}
dl + dl {
  margin-top: 30px;
}

dd {
  margin: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

figure {
  margin: 0;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

strong, .strong {
  font-weight: bold;
}

hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 0;
  height: 0;
  overflow: visible;
}

.hide-sp {
  display: block;
}

.hide-pc {
  display: none;
}

/* リンク
--------------------------*/
a {
  color: var(--color-text);
  text-decoration: none;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

a:visited {
  color: var(--color-text);
  text-decoration: none;
}

a:active {
  color: var(--color-text);
  text-decoration: none;
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.75;
    text-decoration: none;
  }
}
/* レスポンシブ表示
--------------------------*/
.br-sp {
  display: none;
}

.br-pc {
  display: inline-block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* テキストレイアウト
--------------------------*/
.f-palt {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.f-ZenMaru {
  font-family: "Zen Maru Gothic", sans-serif;
}

.f-notoSans {
  font-family: "Noto Sans JP", sans-serif;
}

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

.text-left {
  text-align: left;
}

.word-break {
  display: inline-block;
}

/* コンテナ
--------------------------*/
.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 30px;
}

.container--large {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.container--small {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 30px;
}

/* セクション
--------------------------*/
.section {
  margin: 100px 0;
}

/* タイトル
--------------------------*/
.title__wrap--page {
  padding: 77px 0 57px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.title__wrap--page:has(.title__sub) {
  padding: 55px 0 57px;
}
.title__wrap--page::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(54, 176, 191, 0.9);
  position: absolute;
  top: 0;
  left: 0;
}
.title__wrap--page > * {
  position: relative;
  z-index: 1;
}

.title--page {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--color-white);
  margin: 0 auto;
  padding-bottom: 22px;
  position: relative;
}
.title--page::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.title--page .title__sub {
  font-family: var(--font-roboto);
  font-style: normal;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  padding-bottom: 10px;
}

.title--caption {
  text-align: center;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(28px, 2.286vw, 32px);
  color: var(--color-base-brown);
  margin: 0 auto 30px;
}
.title--caption .title__ja {
  background: #FFF;
  padding: 6px 5px;
  line-height: 1.5;
}
.title--caption .title__en {
  display: block;
  color: var(--color-brand-red);
  font-size: clamp(18px, 1.429vw, 20px);
  margin-top: 10px;
}

.title--section {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-dark);
  margin: 0 auto 16px;
  padding-bottom: 24px;
  line-height: 1.5;
  position: relative;
}
.title--section::after {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--color-brand);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.title--section .title__sub {
  font-family: var(--font-roboto);
  font-style: normal;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-brand);
  display: block;
  padding-bottom: 10px;
}
.title--section .title__main {
  display: block;
}
.title--section .title__main.__large {
  font-size: 24px;
  line-height: 1.3;
}
.title--section.__nobar {
  font-size: 20px;
  padding-bottom: 0;
  margin-bottom: 24px;
}
.title--section.__nobar::after {
  content: none;
}
.title--section.__nobar .title__sub {
  padding-bottom: 8px;
}

.title--colored {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--color-brand);
  border-bottom: 1px solid var(--color-brand);
  padding-bottom: 9px;
  margin: 0 0 12px;
  line-height: 1.5;
}

/* ボタン：ベーススタイル（汎用）
--------------------------*/
.btn {
  width: 260px;
  max-width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 14px 32px;
  background: var(--color-brand);
  color: var(--color-white);
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.btn::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 13px;
  height: 13px;
  background: url("../img/common/arrow_circle-wh.png") no-repeat center/contain;
}
.btn.--heavy {
  padding: 22px 32px;
}
.btn.--border {
  border: 1px solid var(--color-brand);
  background: var(--color-white);
  color: #222;
}
.btn.--border:visited {
  color: #222;
}
.btn.--border::after {
  background: url(../img/common/arrow_circle-gr2.png) no-repeat center/contain;
}
@media (any-hover: hover) {
  .btn.--border:hover {
    background: #BBE5EC;
    opacity: 1;
  }
}
@media (any-hover: hover) {
  .btn:hover {
    opacity: 1;
    background: var(--color-brand-dark);
  }
}
.btn:visited {
  color: var(--color-white);
}

/* ボタン：ベース（配置モディファイア）
--------------------------*/
.btn--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.btn--left {
  margin-right: auto;
}

.btn--right {
  margin-left: auto;
}

/* ボタン：テキストリンク型（Learn More 等）
   塗り：brand teal / ホバー：brand dark
--------------------------*/
.btn--link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 260px;
  height: 65px;
  padding: 0 22px 0 28px;
  background: var(--color-brand);
  border-radius: 2px;
  color: var(--color-white);
  font-family: var(--font-roboto);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  -webkit-transition: background 0.25s ease;
  transition: background 0.25s ease;
}
@media (any-hover: hover) {
  .btn--link:hover {
    background: var(--color-brand-dark);
    opacity: 1;
    color: var(--color-white);
  }
}
.btn--link:visited {
  color: var(--color-white);
}

/* 右側サークル＋シェブロンアイコン */
.btn__icon--link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1.5px solid var(--color-white);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.btn__icon--link::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-top: 1.5px solid var(--color-white);
  border-right: 1.5px solid var(--color-white);
  -webkit-transform: translateX(-1px) rotate(45deg);
          transform: translateX(-1px) rotate(45deg);
}

/* ボタン：アウトライン型（Contact us 等）
	 暗背景用／枠と文字が白
--------------------------*/
.btn--contact {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 260px;
  height: 65px;
  padding: 0 22px 0 28px;
  background: transparent;
  border: 1px solid var(--color-white);
  border-radius: 2px;
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  -webkit-transition: background 0.25s ease;
  transition: background 0.25s ease;
}
@media (any-hover: hover) {
  .btn--contact:hover {
    background: rgba(255, 255, 255, 0.15);
    opacity: 1;
    color: var(--color-white);
  }
}
.btn--contact:visited {
  color: var(--color-white);
}

/* 右側シェブロンアイコン */
.btn__icon--contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 18px;
  height: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.btn__icon--contact::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid var(--color-white);
  border-right: 1.5px solid var(--color-white);
  -webkit-transform: translateX(-1px) rotate(45deg);
          transform: translateX(-1px) rotate(45deg);
}

/* 動画
--------------------------*/
.video__wrap:has(.btn--mute) {
  position: relative;
}
.video__wrap video {
  width: 100%;
  display: block;
}

.btn--mute {
  border: none;
  background: color-mix(var(--color-base-brown), transparent 20%);
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}
@media (any-hover: hover) {
  .btn--mute:hover {
    opacity: 0.65;
  }
}

/* テーブル
--------------------------*/
.table--info {
  width: 100%;
  border-top: 1px solid var(--color-base-gray);
  border-left: 1px solid var(--color-base-gray);
}
.table--info tr {
  border-bottom: 1px solid var(--color-base-gray);
}
.table--info th, .table--info td {
  padding: 1.25em;
  vertical-align: top;
  text-align: left;
  font-weight: 400;
  border-right: 1px solid var(--color-base-gray);
}
.table--info th {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  background: #FEF8F0;
}
.table--info td {
  font-size: 16px;
}

/* 背景
--------------------------*/
.stripe--orange {
  background: #FFC971 url(../img/common/stripe_or.png) 0% 0%/25px 25px repeat;
}

.stripe--yellow {
  background: #FFF0B0 url(../img/common/stripe_ye.png) 0% 0%/25px 25px repeat;
}

.stripe--green {
  background: #F9FCC8 url(../img/common/stripe_gr.png) 0% 0%/25px 25px repeat;
}

/* リスト
--------------------------*/
.list {
  list-style: disc;
  margin-left: 1.3em;
}

/* 通常のテキストリンク */
p a:not([class]) {
  color: var(--color-brand);
  text-decoration: underline;
}
p a:not([class]) .icon__external {
  vertical-align: sub;
  margin-left: 5px;
}
@media (any-hover: hover) {
  p a:not([class]):hover {
    opacity: 0.7;
  }
}

/* トピックパス
--------------------------*/
.breadcrumb {
  padding: 7px 0;
  border-bottom: 1px solid var(--color-base-gray);
}

.breadcrumb__inner {
  width: 100%;
  padding: 0 30px;
}

.breadcrumb__list {
  font-size: 10px;
  color: rgba(54, 176, 191, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -7px;
}
.breadcrumb__list li {
  padding: 0 7px;
}
.breadcrumb__list li + li {
  margin-left: 7px;
  position: relative;
}
.breadcrumb__list li + li::before {
  content: "/";
  font-size: 12px;
  font-weight: 400;
  color: rgba(54, 176, 191, 0.3);
  position: absolute;
  top: 50%;
  left: -6px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.breadcrumb__list li + li:last-child {
  color: rgba(36, 48, 52, 0.45);
}
.breadcrumb__list li > a {
  color: rgba(54, 176, 191, 0.6);
}
@media (any-hover: hover) {
  .breadcrumb__list li > a:hover {
    opacity: 0.75;
  }
}

/* アニメーション
--------------------------*/
.scrollUp {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}
.scrollUp.__02 {
  -webkit-transition: 0.8s ease-in-out 0.6s;
  transition: 0.8s ease-in-out 0.6s;
}
.scrollUp.__03 {
  -webkit-transition: 0.8s ease-in-out 1s;
  transition: 0.8s ease-in-out 1s;
}
.scrollUp.__04 {
  -webkit-transition: 0.8s ease-in-out 1.4s;
  transition: 0.8s ease-in-out 1.4s;
}
.scrollUp.__05 {
  -webkit-transition: 0.8s ease-in-out 1.8s;
  transition: 0.8s ease-in-out 1.8s;
}
.scrollUp.__06 {
  -webkit-transition: 0.8s ease-in-out 2.2s;
  transition: 0.8s ease-in-out 2.2s;
}
.scrollUp.animated {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.fadeIn {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  opacity: 0;
}
.fadeIn.animated {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  .hide-sp {
    display: none;
  }
  .hide-pc {
    display: block;
  }
  .br-pc {
    display: none;
  }
  .br-sp {
    display: inline-block;
  }
  .container,
  .container--small,
  .container--large {
    padding: 0 5.13vw;
  }
  .sp--large {
    padding: 0 6.154vw;
  }
  /* テーブル */
  .table--info th, .table--info td {
    padding: clamp(10px, 5.13vw, 20px);
  }
  /* タイトル */
  .title__wrap--page {
    background-position: center left;
  }
  .title__wrap--page:has(.title__sub) {
    padding: 55px 0 56px;
  }
  .title--page {
    font-size: clamp(30px, 9.23vw, 36px);
  }
  .title--caption {
    font-size: clamp(24px, 7.179vw, 28px);
  }
  .title--caption .title__ja {
    padding: 8px 5px;
  }
  .title--caption .title__en {
    font-size: clamp(18px, 5.13vw, 20px);
  }
  .title--labeled .title__label {
    font-size: clamp(18px, 5.13vw, 20px);
    margin-bottom: clamp(15px, 5.13vw, 20px);
  }
  .title--labeled .title__text {
    font-size: clamp(20px, 6.154vw, 24px);
  }
  .title--underbar {
    font-size: clamp(24px, 7.179vw, 28px);
    margin: clamp(40px, 15.38vw, 60px) auto clamp(20px, 10.256vw, 40px);
  }
  .title--sidebar {
    font-size: clamp(16px, 4.615vw, 18px);
    margin: clamp(20px, 7.69vw, 30px) auto clamp(15px, 5.13vw, 20px);
  }
  .title--bold {
    font-size: clamp(20px, 6.154vw, 24px);
  }
  .title--section {
    font-size: clamp(22px, 6.154vw, 24px);
  }
  .title--section .title__main {
    font-size: clamp(22px, 6.154vw, 24px);
  }
  .title--section .title__main.__large {
    font-size: clamp(22px, 6.154vw, 24px);
  }
  .title--section.__nobar {
    font-size: clamp(18px, 5.13vw, 20px);
  }
  .title--colored {
    font-size: clamp(20px, 5.641vw, 22px);
  }
  h2[class^=wp-block-] {
    font-size: clamp(24px, 7.179vw, 28px);
    margin: clamp(40px, 15.38vw, 60px) auto clamp(20px, 10.256vw, 40px);
  }
  h3[class^=wp-block-] {
    font-size: clamp(20px, 6.154vw, 24px);
    margin: clamp(20px, 7.69vw, 30px) auto clamp(15px, 5.13vw, 20px);
  }
  h4[class^=wp-block-] {
    font-size: clamp(16px, 4.615vw, 18px);
    margin: clamp(20px, 7.69vw, 30px) auto clamp(15px, 5.13vw, 20px);
  }
  blockquote[class^=wp-block-] {
    padding: clamp(15px, 5.13vw, 20px);
  }
  .btn {
    padding: 22px 32px;
  }
}
/* ------------------------------
　　header
------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-brand);
}
.header .hide-large {
  display: none;
}
.header .hide-small {
  display: block;
}

/* 上部バー（ロゴ・ボタン群）
--------------------------*/
.header__top {
  height: 56px;
}

.header__inner {
  max-width: var(--container-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo {
  margin: 0;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__logo a {
  display: block;
}
.header__logo img {
  display: block;
  width: 110px;
  height: 21px;
}

.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

/* 言語切替ボタン
--------------------------*/
.header__btn--lang {
  position: relative;
  width: 130px;
  height: 36px;
  padding: 0 12px;
  background: var(--color-white);
  border: 1px solid var(--color-brand);
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-dark);
  -webkit-transition: background 0.25s ease;
  transition: background 0.25s ease;
}
.header__btn--lang::before {
  content: "";
  width: 14px;
  aspect-ratio: 1/1;
  background: url(../img/common/icon_earth.svg) no-repeat center/cover;
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.header__btn--lang::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 7px;
  height: 4px;
  background: url(../img/common/arrow_bl.svg) no-repeat center/contain;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.header__btn--lang .hide-small {
  display: inline;
}
@media (any-hover: hover) {
  .header__btn--lang:hover {
    background: var(--color-brand-lighter);
  }
}

/* コンタクトボタン（PC）
--------------------------*/
.header__btn--contact {
  width: 130px;
  height: 37px;
  padding: 0 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: linear-gradient(93deg, #FF9CD0 0.1%, #E85CA6 99.9%);
  -webkit-box-shadow: 0 2px 10px 0 rgba(232, 92, 166, 0.4);
          box-shadow: 0 2px 10px 0 rgba(232, 92, 166, 0.4);
  border: none;
  border-radius: 6px;
  font-family: var(--font-roboto);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-white);
  text-decoration: none;
  -webkit-transition: -webkit-filter 0.25s ease;
  transition: -webkit-filter 0.25s ease;
  transition: filter 0.25s ease;
  transition: filter 0.25s ease, -webkit-filter 0.25s ease;
  position: relative;
}
.header__btn--contact.hide-small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__btn--contact::before {
  content: "";
  width: 14px;
  aspect-ratio: 1/1;
  background: url(../img/common/icon_chat.svg) no-repeat center/cover;
  position: absolute;
  left: 18px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.header__btn--contact::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 7px;
  height: 4px;
  background: url(../img/common/arrow_wh.svg) no-repeat center/contain;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media (any-hover: hover) {
  .header__btn--contact:hover {
    -webkit-filter: brightness(1.12);
            filter: brightness(1.12);
  }
}
.header__btn--contact:visited {
  color: var(--color-white);
}

/* ポップアップ開閉時の矢印回転 */
.header__btn--lang.is-open::after,
.header__btn--contact.is-open::after {
  -webkit-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
}

/* 言語切替ドロップダウン
--------------------------*/
.header__lang {
  position: relative;
}

.header__lang--panel {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  min-width: 120px;
  border-radius: 6px;
  border: 1px solid rgba(54, 176, 191, 0.25);
  background: var(--color-white);
  -webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  overflow: hidden;
}
.header__lang--panel.is-open {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

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

.header__lang--item + .header__lang--item {
  border-top: 2px solid rgba(54, 176, 191, 0.25);
}
.header__lang--item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 12px;
  color: var(--color-dark);
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.header__lang--item a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border: 2px solid rgba(36, 48, 52, 0.2);
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (any-hover: hover) {
  .header__lang--item a:hover {
    background: var(--color-brand-lighter);
    opacity: 1;
  }
}
.header__lang--item a:visited {
  color: var(--color-dark);
}

.header__lang--item a[data-stt-active] {
  font-weight: 600;
  color: var(--color-brand);
}
.header__lang--item a[data-stt-active]::before {
  background: var(--color-brand);
  border: 2px solid var(--color-brand);
}

/* コンタクトドロップダウン（PC）
--------------------------*/
.header__drop {
  position: relative;
}

.header__drop--panel {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  min-width: 208px;
  border-radius: 6px;
  border: 1px solid rgba(232, 92, 166, 0.25);
  background: var(--color-white);
  -webkit-box-shadow: 0 4px 16px 0 rgba(232, 92, 166, 0.15);
          box-shadow: 0 4px 16px 0 rgba(232, 92, 166, 0.15);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  overflow: hidden;
}
.header__drop--panel.is-open {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header__drop--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 10px 16px;
  text-decoration: none;
  font-size: 13px;
  color: var(--color-dark);
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.header__drop--item::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (any-hover: hover) {
  .header__drop--item:hover {
    background: #FEF2F8;
    opacity: 1;
  }
}
.header__drop--item:visited {
  color: var(--color-dark);
}

.header__drop--whatsapp::before {
  background-image: url(../img/common/icon_whatsapp.svg);
}

.header__drop--viber::before {
  background-image: url(../img/common/icon_viber.svg);
}

.header__drop--wechat::before {
  background-image: url(../img/common/icon_wechat.svg);
}

.header__drop--zalo::before {
  background-image: url(../img/common/icon_zalo.svg);
}

/* ハンバーガーボタン（SP のみ）
--------------------------*/
.header__toggle {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 29px;
  height: 29px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__toggle--bar {
  position: relative;
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, transform 0.3s ease;
  transition: background 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.header__toggle--bar::before, .header__toggle--bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.header__toggle--bar::before {
  top: -7px;
}
.header__toggle--bar::after {
  top: 7px;
}

/* ドロワー開閉中のハンバーガー変形 */
.header__toggle.is-open .header__toggle--bar {
  background: transparent;
}
.header__toggle.is-open .header__toggle--bar::before {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.header__toggle.is-open .header__toggle--bar::after {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

/* ナビゲーションバー / ドロワーメニュー（共通）
--------------------------*/
/* PC: nav bar として表示 */
.header__drawer {
  background: var(--color-brand);
  height: 47px;
  overflow: hidden;
}

.header__drawer--nav {
  max-width: var(--container-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__drawer--list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__drawer--list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__drawer--list > li:last-child::after {
  content: none;
}
.header__drawer--list > li::after {
  content: "/";
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
}
.header__drawer--list > li > a {
  display: inline-block;
  padding: 0 20px;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media (any-hover: hover) {
  .header__drawer--list > li > a:hover {
    opacity: 0.75;
  }
}
.header__drawer--list > li > a:visited {
  color: var(--color-white);
}

/* PC では contact セクション非表示 */
.header__drawer--contact {
  display: none;
  padding: 20px 6.154vw 60px;
}

.header__contact--head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--color-brand);
}
.header__contact--head::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 10px;
  background: url(../img/common/icon_mail.svg) no-repeat center/cover;
}

.header__contact--links {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.header__contact--link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 13px 14px;
  background: var(--color-brand-lighter);
  padding: 13px 14px;
  font-size: 12px;
  border: 1px solid rgba(54, 176, 191, 0.25);
  border-radius: 8px;
  text-decoration: none;
  -webkit-transition: background 0.25s ease;
  transition: background 0.25s ease;
}
@media (any-hover: hover) {
  .header__contact--link:hover {
    background: var(--color-brand-light);
    opacity: 1;
  }
}

.header__link--text {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-dark);
  line-height: 1.4;
}

.header__link--icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 33px;
  height: 33px;
  background: var(--color-white);
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px 15px;
}

.header__link--whatsapp {
  background-image: url(../img/common/icon_whatsapp.svg);
}

.header__link--viber {
  background-image: url(../img/common/icon_viber.svg);
}

.header__link--wechat {
  background-image: url(../img/common/icon_wechat.svg);
}

.header__link--zalo {
  background-image: url(../img/common/icon_zalo.svg);
}

.stt-lang-select {
  display: none;
}

@media screen and (max-width: 820px) {
  .header {
    border-bottom: none;
  }
  .header .hide-large {
    display: block;
  }
  .header .hide-small {
    display: none;
  }
  .header__inner {
    padding: 0 5.128vw;
  }
  .header__top {
    height: var(--header-height-sp);
    border-bottom: 1px solid rgba(54, 176, 191, 0.15);
  }
  .header__btn--lang {
    width: 68px;
    height: 31px;
    padding: 0 9px 0 8px;
    border-radius: 6px;
    border: 1px solid rgba(54, 176, 191, 0.4);
    text-transform: uppercase;
    color: var(--color-brand);
  }
  .header__btn--lang::before {
    width: 12px;
    left: 8px;
  }
  /* SP: ドロワーとしてフェードイン */
  .header__drawer {
    position: fixed;
    top: var(--header-height-sp);
    left: 0;
    width: 100%;
    height: calc(100dvh - var(--header-height-sp));
    background: var(--color-white);
    overflow-y: auto;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .header__drawer.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .header__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__drawer--nav {
    max-width: none;
    height: auto;
    margin: 0;
    padding: 0;
    display: block;
  }
  .header__drawer--list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .header__drawer--list > li {
    display: block;
    border-bottom: 1px solid rgba(54, 176, 191, 0.15);
  }
  .header__drawer--list > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 59px;
    padding: 0 5.128vw;
    font-size: 18px;
    color: var(--color-dark);
    letter-spacing: 0;
    white-space: normal;
    -webkit-transition: background 0.2s ease;
    transition: background 0.2s ease;
  }
}
@media screen and (max-width: 820px) and (any-hover: hover) {
  .header__drawer--list > li > a:hover {
    background: var(--color-brand-lighter);
  }
}
@media screen and (max-width: 820px) {
  .header__drawer--list > li > a:visited {
    color: var(--color-dark);
  }
  .header__drawer--list > li::after {
    display: none;
  }
  .header__drawer--contact {
    display: block;
  }
  .header__link--icon {
    background-size: 16px 16px;
    border: 1px solid rgba(54, 176, 191, 0.3);
  }
}
/* ------------------------------
　　footer
------------------------------ */
.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 32px 0;
}

/* ロゴ
--------------------------*/
.footer__logo {
  margin: 0 0 24px;
  line-height: 1;
  text-align: center;
}
.footer__logo img {
  width: 110px;
  height: 21px;
}

/* ナビゲーション
--------------------------*/
.footer__nav {
  margin-bottom: 29px;
}

.footer__nav--list {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__nav--list > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__nav--list > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  padding: 0 20px;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.78);
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
@media (any-hover: hover) {
  .footer__nav--list > li > a:hover {
    opacity: 0.7;
  }
}
.footer__nav--list > li > a:visited {
  color: rgba(255, 255, 255, 0.78);
}

/* コピーライト
--------------------------*/
.footer__copy {
  display: block;
  font-family: var(--font-roboto);
  font-size: 11px;
  font-weight: 400;
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
}

/* ページトップボタン
--------------------------*/
.page-top-btn {
  width: 46px;
  aspect-ratio: 1/1;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1000;
  border-radius: 28px;
  background: var(--color-brand);
  -webkit-box-shadow: 0 4px 20px 0 rgba(255, 255, 255, 0.4);
          box-shadow: 0 4px 20px 0 rgba(255, 255, 255, 0.4);
  display: none;
  place-content: center;
  -webkit-transition: background 0.25s ease;
  transition: background 0.25s ease;
  cursor: pointer;
}
@media (any-hover: hover) {
  .page-top-btn:hover {
    opacity: 0.6;
    background: var(--color-brand-dark);
  }
}

@media screen and (max-width: 767px) {
  .footer__nav {
    margin-bottom: 27px;
  }
  .footer__nav--list > li > a {
    height: 49px;
    padding: 0 5.128vw;
  }
  .page-top-btn {
    right: 5.128vw;
    bottom: 5.128vw;
  }
}
/* ------------------------------
　　parts
------------------------------ */
/* 2カラム レイアウト
--------------------------*/
.columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(35px, 3.889vw, 56px);
}

.columns__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.columns__side {
  width: 260px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1100px) {
  .columns__side {
    width: clamp(200px, 23.636vw, 260px);
  }
}

@media screen and (max-width: 767px) {
  .columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
  .columns__main {
    width: 100%;
  }
  .columns__side {
    width: 100%;
  }
}
/* ページネーション
--------------------------*/
.navigation.pagination {
  margin-top: 40px;
}
.navigation.pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
}
.navigation.pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-family: var(--font-roboto);
  font-size: 13px;
  color: var(--color-text);
  -webkit-transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
@media (any-hover: hover) {
  .navigation.pagination .page-numbers:hover {
    background: var(--color-brand-lighter);
    border-color: var(--color-brand-light);
    opacity: 1;
    color: var(--color-brand);
  }
}
.navigation.pagination .page-numbers.current {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: var(--color-white);
}
.navigation.pagination .page-numbers.prev, .navigation.pagination .page-numbers.next {
  border-color: var(--color-brand);
  position: relative;
}

/* ページネーション矢印
--------------------------*/
.pager__arrow {
  display: block;
  width: 10px;
  height: 6px;
  background: url(../img/common/arrow_bl.svg) no-repeat center/cover;
}

.pager__arrow--prev {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.pager__arrow--next {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/* メッセンジャー コンタクト
--------------------------*/
.messenger {
  padding: 40px 0 60px;
  background: url(../img/common/bg_contact.jpg) white center/cover no-repeat;
}

.messenger__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.02em;
  margin: 0 auto 30px;
}

.messenger__grid {
  max-width: 660px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.messenger__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  background: var(--color-white);
  border-radius: 4px;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
  padding: 22px 14px;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
@media (any-hover: hover) {
  .messenger__item:hover {
    background: var(--color-brand-lighter);
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .messenger__item {
    padding: 16px 20px;
  }
}

.messenger__icon {
  width: 35px;
  height: 35px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.messenger__text {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .messenger {
    padding: 43px 0 60px;
    background: url(../img/common/bg_contact.jpg) white -354.295px 0.128px/281.778% 59.054% no-repeat;
  }
  .messenger__grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
/* ------------------------------
　　top
------------------------------ */
.mv {
  position: relative;
  width: 100%;
  aspect-ratio: 1440/675;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.mv__splide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

/* ズーム */
.mv__splide .splide__slide img {
  -webkit-transition: 14s ease-out;
  transition: 14s ease-out;
}

.mv__splide .splide__slide.is-active img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.mv__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--Linear, linear-gradient(78deg, rgba(15, 80, 88, 0.32) 0%, rgba(54, 176, 191, 0.32) 100%));
  pointer-events: none;
  z-index: 2;
}

.mv__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 3;
  pointer-events: auto;
}

.mv__badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  font-family: var(--font-roboto);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.22em;
  color: var(--color-brand);
  margin: 0 auto 24px;
  text-transform: uppercase;
}

.mv__title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 4.44vw, 64px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--color-white);
  text-align: center;
  margin: 0 auto 20px;
}

.mv__subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  font-family: var(--font-roboto);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.14em;
  color: #FFED93;
  margin: 0 auto 19px;
  text-transform: uppercase;
  white-space: nowrap;
}
.mv__subtitle span {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.mv__description {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-white);
  text-align: center;
  opacity: 0.8;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  margin: 0 auto 28px;
  white-space: nowrap;
}

.mv__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: 260px;
  height: 65px;
  background: linear-gradient(134deg, #FF9CD0 0%, #E85CA6 100%);
  border: 1px solid var(--color-white);
  border-radius: 2px;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.14em;
  color: var(--color-white);
  position: relative;
}
.mv__btn::before {
  content: "";
  width: 13px;
  height: 13px;
  background: url(../img/common/icon_chat.svg) no-repeat center/contain;
  display: inline-block;
}
@media (any-hover: hover) {
  .mv__btn:hover {
    opacity: 0.5;
  }
}

@media screen and (max-width: 767px) {
  .mv {
    aspect-ratio: 390/550;
    max-width: 100%;
  }
  .mv__slide-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 390/550;
  }
  .mv__title {
    font-size: clamp(25px, 12.3vw, 48px);
    margin-bottom: 13px;
  }
  .mv__subtitle {
    font-size: 10px;
    margin-bottom: 15px;
    gap: 8px;
  }
  .mv__description {
    font-size: 20px;
    margin-bottom: 20px;
    white-space: initial;
  }
  .mv__badge {
    font-size: 10px;
    padding: 5px 15px;
    margin-bottom: 16px;
  }
  .mv__btn {
    padding: 12px 30px;
    font-size: 16px;
  }
  .mv__btn::before {
    width: 18px;
    height: 18px;
  }
}
.treatment {
  padding: 80px 0;
}

.treatment__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4.8% 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 4.8%;
  margin-top: 48px;
}

.treatment__card {
  position: relative;
}
@media screen and (min-width: 768px) {
  .treatment__card {
    padding-bottom: 65px;
  }
  .treatment__card .btn {
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

.treatment__img {
  margin-bottom: 20px;
}

.treatment__tag {
  font-family: var(--font-roboto);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin: 0 auto 9px;
}

.treatment__name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 auto 12px;
}

.treatment__text {
  color: #666;
  font-size: 13px;
  margin: 0 auto 47px;
}

@media screen and (max-width: 767px) {
  .treatment {
    padding-bottom: 60px;
  }
  .treatment__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .treatment__text {
    margin: 0 auto 23px;
  }
}
.results {
  background: url(../img/top/bg-results.webp) left center/cover no-repeat;
  padding: 80px 0;
}

.results-title.__nobar {
  margin-bottom: 16px;
}

.results-intro {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin: 0 auto;
}

.results__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.4% 1fr 2.4% 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 2.4%;
  margin-top: 30px;
}

.results__card {
  padding-bottom: 24px;
  border-radius: 2px;
  border-bottom: 3px solid var(--color-brand);
  background: var(--color-white);
}

.results__card-img {
  margin-bottom: 20px;
}
.results__card-img img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.results__card-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.34;
  color: #243034;
  margin: 0 auto 16px;
  text-align: center;
}

.results__card-list {
  list-style: none;
  padding: 0 6.3%;
  margin: 0;
}
.results__card-list li {
  position: relative;
  padding-left: 13px;
  font-size: 13px;
  color: #444;
}
.results__card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  background: var(--color-brand);
  border-radius: 50%;
}
.results__card-list li + li {
  margin-top: 5px;
}

.results__disclaimer {
  font-size: 12px;
  line-height: 1.95;
  color: #666;
  margin: 31px auto 0;
  padding-left: 0.5em;
  text-indent: -0.5em;
}

@media screen and (max-width: 767px) {
  .results {
    padding-bottom: 60px;
    background: url(../img/top/bg-results_sp.webp) left center/cover no-repeat;
  }
  .results__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 36px;
  }
  .results__disclaimer {
    margin-top: 10px;
    padding: 0 15px 0 calc(15px + 0.5em);
  }
}
.about {
  padding: 107px 0 80px;
  background: linear-gradient(240deg, rgba(101, 251, 248, 0.15) 0%, rgba(0, 0, 0, 0) 25%);
}

.about-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4% 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 4%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 48px;
}

.about-top__img img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-top__title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 auto 11px;
  padding: 0 3.33%;
}

.about-top__text {
  font-size: 13px;
  line-height: 1.9;
  color: #666;
  margin: 0 auto 23px;
  padding: 0 3.33%;
}

.about-top__points {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.about-top__points li {
  padding: 20px 3.33% 20px calc(3.33% + 20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  position: relative;
}
.about-top__points li:last-child {
  border-bottom: none;
}
.about-top__points li::before {
  content: "";
  position: absolute;
  left: 3.33%;
  top: calc(20px + 0.5em);
  width: 8px;
  height: 8px;
  background: #E85CA6;
  border-radius: 50%;
}
.about-top__points li strong {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  margin-bottom: 5px;
}
.about-top__points li p {
  font-size: 12px;
  color: #666;
  margin: 0;
}
.about-top__points li:last-child {
  margin-bottom: 0;
}

.about-bottom {
  background: #EDF7F9;
  padding: 48px 4%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4.35% 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 4.35%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.about-bottom__content {
  max-width: 500px;
}

.about-bottom__title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.4;
  margin: 10px auto 14px;
}

.about-bottom__text {
  font-size: 13px;
  line-height: 1.85;
  color: #666;
  margin: 0 auto 31px;
}

.about-bottom__img {
  margin: 0;
}
.about-bottom__img img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .about {
    padding: 80px 0 107px;
    background: linear-gradient(183deg, rgba(54, 176, 191, 0.1) -0.01%, rgba(0, 0, 0, 0) 24.83%);
  }
  .about-top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }
  .about-top__title {
    padding: 0 4.29%;
  }
  .about-top__text {
    padding: 0 4.29%;
  }
  .about-top__points li {
    padding: 20px 4.29% 20px calc(4.29% + 20px);
  }
  .about-bottom {
    padding: 33px 8.57%;
    gap: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-bottom .btn {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin: 0 auto;
  }
  .about-bottom__content {
    display: contents;
  }
  .about-bottom__img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .about-bottom__title {
    width: 100%;
    margin-top: 29px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .about-bottom__text {
    margin-bottom: 24px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.languages {
  padding: 80px 0;
  background: url(../img/stem-cell/interpreter-bg_pc.webp) no-repeat right top/contain, -webkit-gradient(linear, left top, right top, from(#E6F5F7), to(#EDF3F5));
  background: url(../img/stem-cell/interpreter-bg_pc.webp) no-repeat right top/contain, linear-gradient(90deg, #E6F5F7 0%, #EDF3F5 100%);
}

.languages-title.__nobar {
  text-align: left;
  margin-bottom: 30px;
}
.languages-title .title__main.__large {
  font-size: 28px;
}

.languages__img {
  max-width: 450px;
  margin: 0;
}
.languages__img img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 767px) {
  .languages {
    padding: 30px 0 40px;
    background: url(../img/stem-cell/interpreter-bg_sp.webp) no-repeat right top/cover;
  }
  .languages-title.__nobar {
    text-align: center;
    margin-bottom: 24px;
  }
  .languages__img {
    width: 85.71%;
    margin: 0 auto;
  }
}
.works {
  padding: 80px 0;
  background: url(../img/common/bg01_pc.jpg) no-repeat center top/contain;
}

.works-container {
  max-width: 660px;
}

.works-title.__nobar {
  margin-bottom: 12px;
}
.works-title .title__main.__large {
  font-size: 28px;
}

.works-intro {
  color: #666;
  text-align: center;
  font-size: 13px;
  line-height: 1.8;
  margin: 0 auto 40px;
}

.works__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.works__step {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 26.67%;
  grid-template-columns: 1fr 26.67%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  margin-bottom: 40px;
  border-radius: 2px;
  background: var(--color-white);
  -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
}
.works__step:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -34px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: url(../img/common/arrow_circle-gr.png) no-repeat center/contain;
}
.works__step:last-child {
  margin-bottom: 0;
}

.works__step-head {
  padding: 20px 16px 20px 93px;
}

.works__step-badge {
  background: var(--color-brand);
  color: var(--color-white);
  font-size: 10px;
  font-style: italic;
  font-family: var(--font-serif);
  padding: 1px 10px;
  border-radius: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  letter-spacing: 0.12em;
  position: absolute;
  top: 20px;
  left: 20px;
}
.works__step-badge span {
  font-size: 14px;
  font-weight: bold;
}

.works__step-title {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-serif);
  color: var(--color-text);
  margin: 0 auto 7px;
}

.works__step-desc {
  font-size: 12px;
  line-height: 1.75;
  color: #666;
  margin: 0;
}

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

@media screen and (max-width: 767px) {
  .works {
    background: url(../img/common/bg01_pc.jpg) no-repeat center top/1920px auto;
  }
  .works__steps {
    gap: 0;
  }
  .works__step {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 20px 5.71%;
  }
  .works__step-head {
    margin-bottom: 16px;
    padding: 0;
  }
  .works__step-badge {
    display: inline-block;
    position: initial;
    margin-bottom: 5px;
  }
}
.article-index {
  padding: 80px 0;
}

.article-index-container {
  max-width: 1020px;
}

.article-index__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4.17% 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 4.17%;
}
.article-index__wrapper > hr {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.article-index__column-title {
  font-size: 28px;
  font-weight: 400;
  color: var(--color-text);
  margin: 0 0 25px;
  font-family: var(--font-serif);
}
.article-index__column-title span {
  display: none;
  color: var(--color-brand);
  font-family: var(--font-roboto);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.article-index__items {
  margin-bottom: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.article-index__items + .btn {
  margin: 0 auto;
}

.article-index__item {
  padding: 20px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 20px 1fr;
  grid-template-columns: auto 1fr;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.article-index__item--information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.article-index__item--information .article-index__item-title {
  font-size: 15px;
}

.article-index__item-img {
  width: 100px;
  height: 100px;
  border-radius: 2px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.article-index__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.article-index__item-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.article-index__item-date {
  display: block;
  font-size: 11px;
  font-family: var(--font-roboto);
  color: var(--color-brand);
  margin-bottom: 7px;
}

.article-index__item-title {
  font-size: 17px;
  font-family: var(--font-serif);
  font-weight: normal;
  line-height: 1.5;
  margin: 0;
}
.article-index__item-title a {
  color: var(--color-text);
  text-decoration: none;
}
@media (any-hover: hover) {
  .article-index__item-title a:hover {
    opacity: 0.75;
  }
}

.article-index__tags {
  margin-top: 10px;
}

.article-index__tag {
  display: inline-block;
  background: #E6F5F7;
  color: var(--color-brand);
  font-size: 10px;
  padding: 3px 11px;
  border-radius: 2px;
  margin-right: 6px;
  margin-bottom: 6px;
}

@media screen and (max-width: 767px) {
  .article-index__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .article-index__items {
    margin-bottom: 36px;
  }
  .article-index__column-title {
    text-align: center;
    margin-bottom: 37px;
  }
  .article-index__column-title span {
    display: block;
  }
  .article-index__item {
    gap: 5.71%;
  }
}
.social {
  padding: 80px 0;
  background: #E6F5F7;
}
.social #sb_instagram {
  padding-bottom: 0 !important;
}
.social #sb_instagram #sbi_images {
  padding: 13px 0 36px;
}
.social #sb_instagram .sbi_follow_btn {
  margin: 0 auto !important;
}
.social #sb_instagram .sbi_follow_btn a {
  width: 260px;
  max-width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 22px 32px;
  margin: 0;
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.1em;
  border-radius: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
}
.social #sb_instagram .sbi_follow_btn a::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 13px;
  height: 13px;
  background: url(../img/common/arrow_circle-wh.png) no-repeat center/contain;
}
.social #sb_instagram .sbi_follow_btn svg {
  display: none;
}

.social-title .title__main.__large {
  font-size: 28px;
}

@media screen and (max-width: 767px) {
  .social {
    padding: 40px 0 60px;
  }
}
/* ------------------------------
　　about
------------------------------ */
.about__introduction {
  padding: 29px 0 60px;
}

.about__introduction-container {
  max-width: 720px;
}

.about__introduction-text {
  font-size: 14px;
  line-height: 1.8;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .about__introduction {
    padding-top: 27px;
  }
}
/* Doctors */
.about__doctors {
  padding: 60px 0;
}

.about__doctors-container {
  max-width: 960px;
}

.about__doctors-title.__nobar {
  margin-bottom: 28px;
}

.about__doctors-body {
  position: relative;
}

.about__doctors-slider {
  width: 100%;
}

/* Doctor Card */
.about__doctor-card {
  text-align: center;
}

.about__doctor-img {
  margin: 0 auto 20px;
  width: 100%;
  overflow: hidden;
}
.about__doctor-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.about__doctor-name {
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-serif);
  line-height: 1.5;
  margin-bottom: 4px;
}

.about__doctor-specialty {
  font-size: 11px;
  color: var(--color-brand);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 auto 13px;
  line-height: 1.5;
}

/* Modal Toggle ボタン（汎用） */
.modal-toggle-btn {
  width: 158px;
  padding: 7px 30px 7px 14px;
  border: none;
  text-align: center;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.12);
  background: #F4F4F4;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.modal-toggle-btn:hover {
  background: #E8E8E8;
}
.modal-toggle-btn[aria-expanded=true] .modal-toggle-btn-icon {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.modal-toggle-btn-text {
  white-space: nowrap;
  text-transform: uppercase;
}

.modal-toggle-btn-icon {
  position: absolute;
  right: 10px;
  width: 16px;
  height: 16px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.modal-toggle-btn[aria-expanded=true] .modal-toggle-btn-icon {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* Modal Toggle コンテンツ（汎用） */
.modal-toggle {
  padding: 16px 4px;
  border-radius: 4px;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease;
}
.modal-toggle ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.modal-toggle p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.6;
}
.modal-toggle:has(.modal-toggle__lang-item) ul, .modal-toggle:has(.modal-toggle__lang-item) p, .modal-toggle:has(.modal-toggle__lang-item) > div {
  padding: 0;
}
.modal-toggle[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
  max-height: 500px;
}
.modal-toggle[aria-hidden=false]:has(.modal-toggle__lang-item) {
  padding: 16px 0 0;
}

.modal-toggle__title {
  font-size: 11px !important;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px !important;
  color: #888;
  text-align: center;
}

.modal-toggle__langs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 0 4px;
}
[aria-hidden=false] .modal-toggle__langs {
  padding: 0;
}

.modal-toggle__lang-item {
  display: block;
  padding: 13px;
  background: #fff;
  border: 1px solid rgba(54, 176, 191, 0.35);
  border-radius: 3px;
  text-align: center;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.modal-toggle__lang-item:hover {
  background: var(--color-brand-lighter);
}

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

.about__doctor-modal-item {
  margin-bottom: 6px;
}
.about__doctor-modal-item:last-child {
  margin-bottom: 0;
}

.about__doctor-modal-date {
  display: block;
  font-size: 11px;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-brand);
  letter-spacing: 0.06em;
}

.about__doctor-modal-text {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.02em;
}

/* Slider Buttons */
.about__doctors-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-brand);
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
}
.about__doctors-btn:hover {
  background: var(--color-brand-lighter);
}

.about__doctors-btn--prev {
  left: -70px;
}
.about__doctors-btn--prev img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.about__doctors-btn--next {
  right: -70px;
}
.about__doctors-btn--next img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/* Splide Pagination */
.about__doctors-slider .splide__pagination {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-top: 45px;
  padding: 0;
  list-style: none;
}

.about__doctors-slider .splide__pagination__page {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #C8C8C8;
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.about__doctors-slider .splide__pagination__page.is-active {
  background: var(--color-brand);
  -webkit-transform: none;
          transform: none;
}

@media screen and (max-width: 1039px) {
  .about__doctors-slider .splide__pagination {
    margin-top: 88px;
  }
  .about__doctors-btn {
    width: 36px;
    height: 36px;
    top: auto;
    bottom: 0;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
  }
  .about__doctors-btn--prev {
    left: calc(50% - 38px);
    right: auto;
  }
  .about__doctors-btn--next {
    left: calc(50% + 38px);
    right: auto;
  }
}
@media screen and (max-width: 767px) {
  .about__doctor-img {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 400px) {
  .about__doctors-body {
    padding: 0 10%;
  }
}
/* Facility Section */
.about__facility {
  padding: 60px 0 176px;
  background: url(../img/common/bg02_pc.webp) no-repeat center top/contain;
}

.about__facility-container {
  max-width: 1180px;
}

.about__facility-header {
  max-width: 1000px;
  margin: 0 auto 60px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 66% 6% 1fr;
  grid-template-columns: 66% 1fr;
  gap: 6%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.about__facility-title {
  text-align: left;
}
.about__facility-title .title__main.__large {
  font-size: 28px;
}

.about__facility-introduction {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about__facility-text {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

/* Profile Section */
.about__facility-profile {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.about__facility-profile-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.about__facility-profile-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.about__facility-profile-name {
  font-size: 18px;
  font-family: var(--font-serif);
  margin: 0 0 4px;
  line-height: 1.5;
}

.about__facility-profile-specialty {
  font-size: 11px;
  color: var(--color-brand);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
  line-height: 1.5;
}

/* Slider Section */
.about__facility-slider-wrapper {
  position: relative;
  margin-bottom: 40px;
}

.about__facility-slider {
  width: 100%;
}

.about__facility-slide {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.about__facility-slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Slider Buttons */
.about__facility-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-brand);
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
}
.about__facility-btn:hover {
  background: var(--color-brand-lighter);
}

.about__facility-btn--prev {
  left: -60px;
}
.about__facility-btn--prev img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.about__facility-btn--next {
  right: -60px;
}
.about__facility-btn--next img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/* Splide Pagination */
.about__facility-slider .splide__pagination {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}

.about__facility-slider .splide__pagination__page {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #C8C8C8;
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.about__facility-slider .splide__pagination__page.is-active {
  background: var(--color-brand);
  -webkit-transform: none;
          transform: none;
}

/* Features List */
.about__facility-features {
  max-width: 660px;
  margin: 0 auto 32px;
}

.about__facility-features-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
  font-size: 14px;
  line-height: 1.6;
}
.about__facility-features-list li {
  position: relative;
  padding-left: 20px;
}
.about__facility-features-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-brand);
}

.about__facility-features-text {
  margin: 20px auto 0;
  font-size: 14px;
}

/* Description */
.about__facility-description {
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text);
}
.about__facility-description p {
  margin: 0;
}

/* Facility Images */
.about__facility-images {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.6% 1fr 1.6% 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6%;
  max-width: 1000px;
  margin: 0 auto;
}

.about__facility-image-item {
  text-align: center;
  background: #FFF;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
  padding: 20px 6.19%;
}

.about__facility-image-figure {
  margin: 0 auto 20px;
}

.about__facility-image-title {
  font-size: 17px;
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

@media screen and (max-width: 1039px) {
  .about__facility-btn {
    width: 36px;
    height: 36px;
    top: auto;
    bottom: 0;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
  }
  .about__facility-btn--prev {
    left: calc(50% - 38px);
    right: auto;
  }
  .about__facility-btn--next {
    left: calc(50% + 38px);
    right: auto;
  }
  .about__facility-slider .splide__pagination {
    margin-top: 75px;
  }
}
@media screen and (max-width: 767px) {
  .about__facility {
    padding: 60px 0 90px;
    background: url(../img/common/bg01_sp.jpg) repeat-x center top/contain;
  }
  .about__facility-header {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  .about__facility-title {
    text-align: center;
  }
  .about__facility-title .title__main.__large {
    font-size: clamp(24px, 7.18vw, 28px);
  }
  .about__facility-profile {
    width: 80%;
    margin: 0 auto;
  }
  .about__facility-images {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about__facility-slider-wrapper {
    width: 88.57%;
    margin: 0 auto 40px;
  }
  .about__facility-image-title {
    font-size: clamp(15px, 4.36vw, 17px);
  }
}
/* Support Section */
.about__support {
  padding: 60px 0 80px;
}

.about__support-title.__nobar {
  margin-bottom: 20px;
}

.about__support-intro {
  font-size: 14px;
  line-height: 1.8;
  margin: 0 auto 32px;
  max-width: 660px;
  text-align: left;
}

.about__support-cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
}

.about__support-card {
  background: #E6F5F7;
  border-radius: 4px;
  padding: 40px 6.1%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.about__support-card .modal-toggle-btn {
  margin: 16px auto 0;
}
.about__support-card .btn {
  margin: 16px auto 0;
}

.about__support-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  margin: 0 auto 16px;
  overflow: hidden;
}
.about__support-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.about__support-card-title {
  font-size: 18px;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 10px;
}

.about__support-card-text {
  font-size: 13px;
  text-align: left;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media screen and (max-width: 767px) {
  .about__support {
    padding: 60px 0;
  }
  .about__support-cards {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about__support-card {
    padding: 40px 8.57%;
  }
}
/* Clinics Section */
.about__clinics {
  padding: 60px 0;
  background: linear-gradient(240deg, rgba(101, 251, 248, 0.15) 0%, rgba(0, 0, 0, 0) 25%) no-repeat top center/100% clamp(300px, 31.74vw, 700px);
}

.about__clinics-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4% 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 4%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.about__clinics-content:first-of-type {
  margin-top: 65px;
}
.about__clinics-content + .about__clinics-content {
  margin-top: 60px;
}

.about__clinics-slider-wrapper {
  position: relative;
  width: 100%;
}

.about__clinics-slider {
  width: 100%;
  position: relative;
}

.about__clinics-slide {
  width: 100%;
}

.about__clinics-img {
  margin: 0;
  width: 100%;
  aspect-ratio: 480/360;
  overflow: hidden;
}
.about__clinics-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.about__clinics-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 37px;
  height: 37px;
  border-radius: 22px;
  background: var(--color-white);
  border: none;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  padding: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media (any-hover: hover) {
  .about__clinics-btn:hover {
    opacity: 0.75;
  }
}

.about__clinics-btn--prev {
  left: 10px;
}
.about__clinics-btn--prev img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.about__clinics-btn--next {
  right: 10px;
}
.about__clinics-btn--next img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.about__clinics-slider .splide__pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  z-index: 2;
  list-style: none;
  padding: 0;
  margin: 0;
}

.about__clinics-slider .splide__pagination__page {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.about__clinics-slider .splide__pagination__page.is-active {
  width: 18px;
  border-radius: 3px;
  background: var(--color-brand);
}

.about__clinics-info-title {
  font-size: 22px;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.23;
  margin: 0 0 17px;
}

.about__clinics-info-detail {
  margin: 0 auto 30px;
  border-left: 2px solid var(--color-brand);
  padding-left: 16px;
}

.about__clinics-info-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
}
.about__clinics-info-text + .about__clinics-info-text {
  margin-top: 6px;
}

.about__clinics-map {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.about__clinics-map-viewport {
  position: relative;
  width: 100%;
  height: 270px;
  overflow: hidden;
}
.about__clinics-map-viewport iframe {
  position: absolute;
  top: -135px;
  left: 0;
  width: 100%;
  height: 540px;
  border: none;
  display: block;
}

@media screen and (max-width: 767px) {
  .about__clinics {
    padding-bottom: 20px;
    background: linear-gradient(240deg, rgba(101, 251, 248, 0.15) 0%, rgba(0, 0, 0, 0) 25%) no-repeat top center/100% clamp(400px, 110.25vw, 430px);
  }
  .about__clinics-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding-bottom: 40px;
  }
  .about__clinics-content:first-of-type {
    margin-top: 30px;
  }
  .about__clinics-content + .about__clinics-content {
    margin-top: 0;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .about__clinics-info {
    display: contents;
  }
  .about__clinics-info-title {
    font-size: 18px;
    margin: 0 auto 16px;
    text-align: center;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .about__clinics-slider-wrapper {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 16px;
  }
  .about__clinics-info-detail {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-bottom: 16px;
  }
  .about__clinics-map {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .about__clinics-map-viewport {
    height: clamp(150px, 51.28vw, 200px);
  }
}
/* ------------------------------
　　therapy
------------------------------ */
.therapy__introduction {
  margin: 41px 0 48px;
}

/* therapy introduction
--------------------------*/
.therapy__intro-header {
  text-align: center;
  margin-bottom: 48px;
}

.therapy__intro-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--color-dark);
  margin: 0 auto 10px;
  line-height: 1.5;
}

.therapy__intro-subtitle {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-brand);
  margin: 0;
}

.therapy__intro-inner {
  background: var(--color-brand-lighter);
  border-radius: 8px;
  padding: 22px 35px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 51.667% 4.3% 1fr;
  grid-template-columns: 51.667% 1fr;
  -ms-grid-columns: 1fr 4.3% 44.1%;
  grid-template-columns: 1fr 44.1%;
  gap: 4.3%;
}

.therapy__intro-main {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.53;
  margin: 0 auto 17px;
}

.therapy__intro-description {
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
}

.therapy__intro-img img {
  width: 100%;
  max-width: 410px;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 870px) {
  .therapy__intro-inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .therapy__introduction {
    margin: 60px 0;
  }
  .therapy__introduction {
    margin: 60px 0;
  }
  .therapy__intro-inner {
    padding: clamp(17px, 5.64vw, 22px) clamp(25px, 7.69vw, 30px);
    gap: 20px;
  }
  .therapy__intro-header {
    margin-bottom: 24px;
  }
  .therapy__intro-title {
    font-size: clamp(30px, 9.23vw, 36px);
  }
  .therapy__intro-subtitle {
    font-size: clamp(17px, 5.13vw, 20px);
  }
  .therapy__intro-main {
    font-size: clamp(16px, 4.62vw, 18px);
    text-align: center;
  }
  .therapy__intro-content {
    display: contents;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .therapy__intro-description {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .therapy__intro-img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.therapy__reason {
  padding: 80px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#E6F5F7), to(#FFF));
  background: linear-gradient(180deg, #E6F5F7 0%, #FFF 100%);
}

.therapy__reason-container {
  max-width: 1020px;
}

.therapy__reason-header {
  text-align: center;
  margin-bottom: 30px;
}

.therapy__reason-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  margin: 0 auto 27px;
  line-height: 1.4;
}

.therapy__reason-text {
  font-size: 14px;
  line-height: 1.8;
  max-width: 660px;
  text-align: left;
  margin: 0 auto;
}

.therapy__reason-cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 31px;
}

.therapy__reason-card {
  background: var(--color-white);
  border: 1px solid var(--color-brand);
  border-left: none;
  padding: 20px 6.25%;
}
.therapy__reason-card:first-child {
  border-left: 1px solid var(--color-brand);
}

.therapy__reason-card__title {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.157vw, 22px);
  font-weight: 400;
  text-align: center;
  color: var(--color-brand);
  margin: 0 0 19px;
  padding: 10px;
  min-height: 110px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  line-height: 1.364;
  border-radius: 8px;
  background: #E6F5F7;
}

.therapy__reason-card__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.therapy__reason-card__list li {
  font-size: 13px;
  margin-bottom: 9px;
  padding-left: 13px;
  position: relative;
}
.therapy__reason-card__list li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #36B0BF;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.75em;
}
.therapy__reason-card__list li:last-child {
  margin-bottom: 0;
}

.therapy__reason-bottom {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3.125% 51.04%;
  grid-template-columns: 1fr 51.04%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px 3.125%;
}

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

.therapy__reason-score img {
  width: 100%;
  display: block;
}

@media screen and (max-width: 767px) {
  .therapy__reason {
    padding: 30px 0 80px;
  }
  .therapy__reason-title {
    font-size: clamp(20px, 6.154vw, 24px);
    margin: 0 auto 32px;
  }
  .therapy__reason-cards {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }
  .therapy__reason-card {
    padding: 20px clamp(15px, 6.45%, 20px);
    border-left: 1px solid var(--color-brand);
    border-bottom: none;
  }
  .therapy__reason-card:last-child {
    border-bottom: 1px solid var(--color-brand);
  }
  .therapy__reason-card__title {
    font-size: clamp(18px, 5.641vw, 22px);
  }
  .therapy__reason-card__list {
    padding: 0 5.16%;
  }
  .therapy__reason-bottom {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .therapy__reason-score img {
    width: 94.286%;
    margin: 0 auto;
  }
}
/* certification
--------------------------*/
.therapy__certification {
  background: url(../img/common/bg_contact.jpg) white center top/contain no-repeat;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.therapy__certification-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 32px;
  color: var(--color-white);
}

.therapy__section-title {
  margin: 0 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.therapy__section-title .__en {
  font-family: var(--font-roboto);
  font-size: 11px;
  font-weight: 400;
  color: var(--color-brand);
  letter-spacing: 0.22em;
  line-height: 1.5;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.therapy__section-title .__main {
  font-family: var(--font-serif);
  font-size: clamp(24px, 1.94vw, 28px);
  line-height: 1.4;
  font-weight: 400;
  text-align: center;
}

.therapy__certification-title {
  margin: 0 0 24px;
}
.therapy__certification-title .__en {
  color: var(--color-white);
}
.therapy__certification-title .__main {
  font-size: clamp(18px, 1.53vw, 22px);
}

.therapy__certification-badge {
  display: inline-block;
  background: var(--color-white);
  font-family: var(--font-roboto);
  color: var(--color-brand);
  background: #E6F5F7;
  border: 1px solid rgba(54, 176, 191, 0.3);
  padding: 6px 18px;
  border-radius: 20px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-size: 11px;
}
.therapy__certification-badge::before {
  content: "";
  width: 8px;
  height: 9px;
  background: url(../img/common/icon_check.png) no-repeat center/cover;
  display: inline-block;
  margin-right: 0.1em;
}

.therapy__certification-docs {
  max-width: 670px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.therapy__certification-doc {
  text-align: center;
}

.therapy__certification-doc--title {
  font-size: 16px;
  font-family: var(--font-serif);
  font-weight: 500;
  padding-left: 18px;
  margin: 0 0 10px;
  line-height: 1.5;
  display: inline-block;
  position: relative;
}
.therapy__certification-doc--title::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #E85CA6;
  border-radius: 50%;
  position: absolute;
  top: 0.5em;
  left: 0;
}

.therapy__certification-doc--img img {
  width: 75%;
  display: block;
  border-radius: 2px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .therapy__certification {
    padding: 80px 0;
    background: url(../img/common/bg_contact.jpg) white 56% top/1500px auto no-repeat;
  }
  .therapy__section-title .__main {
    font-size: clamp(22px, 7.18vw, 28px);
  }
  .therapy__certification-title .__main {
    font-size: clamp(16px, 5.13vw, 20px);
  }
  .therapy__certification-docs {
    gap: 16px;
  }
  .therapy__certification-doc {
    text-align: left;
  }
  .therapy__certification-doc--img img {
    width: 100%;
  }
}
/* therapy effects
--------------------------*/
.therapy__effects {
  padding: 80px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--color-white)), to(#E6F5F7));
  background: linear-gradient(180deg, var(--color-white) 0%, #E6F5F7 100%);
}

.therapy__effects-items {
  max-width: 760px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.therapy__effects-item {
  border-radius: 2px;
  border-right: 4px solid var(--color-brand);
  background: var(--color-white);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 37.04% 1fr;
  grid-template-columns: 37.04% 1fr;
}

.therapy__effects-item-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 280/210;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 4px 0 0 4px;
}

.therapy__effects-item-content {
  padding: 20px 20px 20px 24px;
}

.therapy__effects-item-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-brand);
  margin: 0 0 15px;
}

.therapy__effects-item-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.therapy__effects-item-list li {
  line-height: 1.38;
  margin-bottom: 8px;
  padding-left: 13px;
  position: relative;
}
.therapy__effects-item-list li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #36B0BF;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.75em;
}
.therapy__effects-item-list li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .therapy__effects-items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .therapy__effects-item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    border-right: none;
    border-bottom: 4px solid var(--color-brand);
  }
  .therapy__effects-item-content {
    padding: 16px clamp(16px, 5.13vw, 20px);
  }
  .therapy__effects-item-title {
    margin-bottom: 10px;
  }
}
/* therapy details
--------------------------*/
.therapy__details {
  padding: 80px 0;
}

.therapy__details-cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 18px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 0 auto;
}

.therapy__details-card {
  border-radius: 4px;
  overflow: hidden;
  background: #FFF;
  border: 1px solid #E0E0E0;
}

.therapy__details-card-header {
  background: #E6F5F7;
  margin: 0;
  font-size: 15px;
  padding: 16px 20px 16px 33px;
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.5;
  position: relative;
}
.therapy__details-card-header::before {
  content: "";
  width: 3px;
  height: 14px;
  border-radius: 2px;
  background: var(--color-brand);
  position: absolute;
  left: 20px;
  top: 20px;
}

.therapy__details-card-content {
  padding: 14px 20px;
  font-size: 13px;
  line-height: 1.75;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .therapy__details-cards {
    gap: 20px;
  }
  .therapy__details-cards {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .therapy__details-card-header {
    padding: 14px clamp(15px, 5.71vw, 20px) 14px calc(clamp(15px, 5.71vw, 20px) + 13px);
  }
  .therapy__details-card-header::before {
    top: 18px;
  }
  .therapy__details-card-content {
    padding: 14px clamp(15px, 5.71vw, 20px);
  }
}
/* therapy procedure
--------------------------*/
.therapy__procedure {
  padding: 80px 0;
  background: url(../img/common/bg01_pc.jpg) no-repeat center top/contain;
}

.therapy__procedure-container {
  max-width: 820px;
}

.therapy__procedure-header {
  text-align: center;
  margin-bottom: 36px;
}
.therapy__procedure-header:has(~ .therapy__procedure-overview) {
  margin-bottom: 16px;
}

.therapy__procedure-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 10px;
}

.therapy__procedure-text {
  font-size: 13px;
  line-height: 1.75;
  margin: 0 auto;
}

.therapy__procedure-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* Blood test */
.therapy__procedure-blood {
  background: #E8F5F7;
  padding: 0 20px 20px;
  margin-bottom: 66px;
  border: 1px solid var(--color-brand);
  border-radius: 2px;
  overflow: hidden;
}

.therapy__procedure-blood-title {
  background: var(--color-brand);
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  margin: 0 -30px 20px;
  border-radius: 2px 2px 0 0;
  padding: 7px 30px;
  text-align: center;
}

.therapy__procedure-blood-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 8px;
}

.therapy__procedure-blood-item {
  background: var(--color-white);
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  border-radius: 10px;
}
.therapy__procedure-blood-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.therapy__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #83CCD5;
  color: var(--color-brand);
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* Steps */
.therapy__procedure-step {
  position: relative;
}
.therapy__procedure-step:nth-child(2)::before {
  content: "";
  width: 2px;
  height: 40px;
  background: #83CCD5;
  position: absolute;
  left: 50%;
  top: -49px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.therapy__procedure-label {
  background: var(--color-brand);
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 2px 8px;
  display: inline-block;
  border-radius: 2px;
  position: absolute;
  top: -10px;
  left: 0;
  z-index: 2;
  white-space: nowrap;
}
.therapy__procedure-label .no {
  font-size: 14px;
  font-style: italic;
}
.therapy__procedure-label strong {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
}

.therapy__procedure-box {
  background: var(--color-white);
  border: 2px solid var(--color-brand);
  padding: 40px 4% 30px;
  margin-left: 10px;
  position: relative;
}

.therapy__procedure-desc {
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
  color: var(--color-dark);
}

.therapy__procedure-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.therapy__procedure-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px calc(160px - 4%);
  grid-template-columns: 1fr calc(160px - 4%);
  gap: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.therapy__procedure-bubble {
  background: url(../img/common/bubble.png) center/cover no-repeat;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  right: -2px;
  top: -15px;
}

.therapy__procedure-bubble-amount {
  font-family: var(--font-serif);
  font-size: 32px;
  font-style: italic;
  color: var(--color-brand);
  margin: 0;
  line-height: 1;
  text-align: center;
}

.therapy__procedure-bubble-unit {
  font-size: 16px;
  font-family: var(--font-serif);
  color: var(--color-brand);
  margin: 3px 0 0;
  text-align: center;
  line-height: 1.13;
}

.therapy__procedure-interval {
  position: relative;
}
.therapy__procedure-interval::before {
  content: "";
  width: 2px;
  height: calc(100% + 40px);
  background: #83CCD5;
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.therapy__procedure-interval > span {
  text-align: center;
  font-size: 16px;
  font-family: var(--font-serif);
  color: var(--color-brand);
  padding: 4px 14px;
  background: #E6F5F7;
  border: 1px solid var(--color-brand);
  border-radius: 15px;
  line-height: 1;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 39px auto;
  position: relative;
  z-index: 2;
}
.therapy__procedure-interval strong {
  font-weight: 400;
  font-size: 20px;
}

.therapy__procedure-note {
  font-size: 12px;
  font-style: italic;
  color: #666;
  text-align: center;
  margin: 32px 0 0;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .therapy__procedure {
    padding: 60px 0;
    background: url(../img/common/bg01_sp.jpg) no-repeat center top/cover;
  }
  .therapy__procedure-header {
    margin-bottom: 30px;
  }
  .therapy__procedure-blood {
    padding: 0 clamp(15px, 5.13vw, 20px) clamp(15px, 5.13vw, 20px);
    margin-bottom: 50px;
  }
  .therapy__procedure-blood-title {
    margin: 0 -20px 20px;
    padding: 11px clamp(15px, 5.13vw, 20px);
    font-size: 16px;
  }
  .therapy__procedure-blood-items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .therapy__procedure-blood-items p {
    font-size: 14px;
  }
  .therapy__procedure-blood-item {
    padding: 16px 10px;
    gap: 10px;
    font-size: 13px;
  }
  .therapy__procedure-step::before {
    left: 12px;
    height: calc(100% + 40px);
  }
  .therapy__procedure-step:nth-child(2)::before {
    content: none;
  }
  .therapy__procedure-label {
    left: 0;
    top: -12px;
  }
  .therapy__procedure-box {
    padding: 24px 4%;
    margin-left: 0;
  }
  .therapy__procedure-box::before {
    top: -14px;
    height: 14px;
  }
  .therapy__procedure-title {
    font-size: clamp(16px, 5.13vw, 20px);
    margin-bottom: 8px;
  }
  .therapy__procedure-desc {
    line-height: 1.63;
  }
  .therapy__procedure-inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .therapy__procedure-bubble {
    width: 100px;
    height: 100px;
    top: -24px;
  }
  .therapy__procedure-bubble-amount {
    font-size: 24px;
  }
  .therapy__procedure-bubble-unit {
    font-size: 14px;
    margin-top: 0;
  }
  .therapy__procedure-interval > span {
    margin: 28px auto 58px;
    width: 96.57%;
    padding: 7px 14px;
  }
  .therapy__procedure-note {
    margin-top: 20px;
    text-align: left;
  }
}
/* therapy risks
--------------------------*/
.therapy__risks {
  padding: 48px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#E6F5F7), to(#FFF));
  background: linear-gradient(180deg, #E6F5F7 0%, #FFF 100%);
}

.therapy__risks-title {
  background: #83CCD5;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  text-align: center;
  margin: 0;
  padding: 20px 15px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  max-width: 1020px;
  margin: 0 auto;
}

.therapy__risks-box {
  background: var(--color-white);
  border: 15px solid #83CCD5;
  border-top: none;
  padding: 20px 20px 28px;
  margin: 0 auto;
}

.therapy__risks-text {
  width: 98%;
  font-size: 18px;
  line-height: 1.83;
  letter-spacing: 0.037em;
  margin: 0 auto 20px;
  color: var(--color-dark);
}

.therapy__risks-list {
  list-style: disc;
  padding: 15px 20px 15px calc(20px + 1.5em);
  margin: 0;
  background: #E8F5F7;
}
.therapy__risks-list li {
  font-size: 14px;
  letter-spacing: 0.047em;
  line-height: 1.5;
}
.therapy__risks-list li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .therapy__risks-title {
    font-size: clamp(20px, 5.64vw, 22px);
    padding: clamp(15px, 5.13vw, 20px);
  }
  .therapy__risks-box {
    border: clamp(10px, 3.85vw, 15px) solid #83CCD5;
    border-top: none;
    padding: 20px clamp(15px, 5.13vw, 20px) 28px;
  }
  .therapy__risks-text {
    width: 100%;
    font-size: clamp(16px, 4.615vw, 18px);
  }
  .therapy__risks-list {
    padding: 15px clamp(7px, 2.82vw, 11px) 15px calc(clamp(5px, 2.3vw, 9px) + 1.5em);
  }
}
/* therapy reviews
--------------------------*/
.therapy__reviews {
  padding: 60px 0;
}

.therapy__reviews-items {
  padding: 0;
  margin: 0 auto 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.therapy__reviews-item {
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-white);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.therapy__reviews-item-media {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.therapy__reviews-item-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.therapy__reviews-item-play {
  display: block;
  text-decoration: none;
  position: relative;
}
.therapy__reviews-item-play::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #36B0BF;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
@media (any-hover: hover) {
  .therapy__reviews-item-play:hover::after {
    opacity: 0.3;
  }
}

.therapy__reviews-item-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 25%;
  aspect-ratio: 75/53;
  background: url("../img/common/icon-youtube.png") no-repeat center/contain;
  z-index: 2;
}

.therapy__reviews-item-text {
  padding: 16px 18px;
}
.therapy__reviews-item-text p {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  color: var(--color-dark);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.therapy__reviews-footer {
  text-align: center;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .therapy__reviews-items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .therapy__reviews-item-play {
    width: 100%;
  }
  .therapy__reviews-item-play-icon {
    width: 20%;
  }
  .therapy__reviews-item-text {
    padding: 14px 16px;
  }
  .therapy__reviews-item-text p {
    font-size: 12px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .therapy__reviews-footer {
    margin-top: 30px;
  }
}
/* therapy plans
--------------------------*/
.therapy__plans {
  padding: 80px 0;
}

.therapy__plans-cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  margin: 49px auto 24px;
  border: 1px solid var(--color-brand);
}

.therapy__plans-card {
  background: var(--color-white);
  position: relative;
}
.therapy__plans-card + .therapy__plans-card {
  border-left: 1px solid var(--color-brand);
}

.therapy__plans-card-header {
  padding: 10px;
  position: relative;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.therapy__plans-card:nth-child(1) .therapy__plans-card-header {
  background: #E8F5F7;
}
.therapy__plans-card:nth-child(1) .therapy__plans-card-header .therapy__plans-card-title {
  color: var(--color-dark);
}
.therapy__plans-card:nth-child(1) .therapy__plans-card-header .therapy__plans-card-title::before, .therapy__plans-card:nth-child(1) .therapy__plans-card-header .therapy__plans-card-title::after {
  background: url("../img/stem-cell/deco-plan-gr.png") no-repeat center/cover;
}

.therapy__plans-card:nth-child(2) .therapy__plans-card-header {
  background: #78C4CE;
}
.therapy__plans-card:nth-child(2) .therapy__plans-card-header .therapy__plans-card-title::before, .therapy__plans-card:nth-child(2) .therapy__plans-card-header .therapy__plans-card-title::after {
  background: url("../img/stem-cell/deco-plan-wh.png") no-repeat center/cover;
}

.therapy__plans-card:nth-child(3) .therapy__plans-card-header {
  background: #2499A8;
}

.therapy__plans-card-title {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.53vw, 22px);
  font-weight: 400;
  margin: 0;
  line-height: 1.22;
  color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.therapy__plans-card-title::before,
.therapy__plans-card-title::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 32px;
  background: url("../img/stem-cell/deco-plan-gl.png") no-repeat center/cover;
  margin: 0 clamp(3px, 0.69vw, 10px);
}

.therapy__plans-card-title::after {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.therapy__plans-card-badge {
  width: 16.82%;
  position: absolute;
  top: -1px;
  left: clamp(5px, 1.1vw, 16px);
}

.therapy__plans-card-inner {
  padding: 20px 7.85% 32px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.therapy__plans-card-details {
  margin-bottom: 4px;
}

.therapy__plans-card-sessions {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--font-serif);
  color: var(--color-brand);
  margin: 0 auto 5px;
  padding: 5px 22px;
  line-height: 1;
  border-radius: 10px;
  background: #F0F0F0;
}

.therapy__plans-card-price {
  font-family: var(--font-cormorant);
  font-size: clamp(40px, 3.89vw, 56px);
  text-align: center;
  color: #E85CA6;
  margin: 0 0 10px;
  line-height: 1;
  font-style: italic;
}
.therapy__plans-card-price .unit {
  font-size: 50%;
  margin-right: 5px;
}

.therapy__plans-card-info {
  font-size: clamp(12px, 0.97vw, 14px);
  text-align: center;
  margin: 0;
}

.therapy__plans-card-description {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.therapy__plans-card-note {
  background: rgba(54, 176, 191, 0.08);
  border-radius: 6px;
  padding: 10px clamp(5px, 0.83vw, 12px);
  margin: 0 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
}
.therapy__plans-card-note img {
  margin-top: 0.2em;
}
.therapy__plans-card-note p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  color: var(--color-brand);
}

.therapy__plans-card-list {
  border: 1px solid var(--color-brand);
  border-radius: 8px;
  padding: 20px 7.1%;
}
.therapy__plans-card-list li {
  font-size: 14px;
  line-height: 1.7;
  padding-left: 19px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #83CCD5;
  position: relative;
}
.therapy__plans-card-list li::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("../img/common/icon_check-circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0.4em;
}
.therapy__plans-card-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

/* medical interpreter
--------------------------*/
.therapy__interpreter {
  background: url(../img/stem-cell/interpreter-bg_pc.webp) no-repeat right top/contain, -webkit-gradient(linear, left top, right top, from(#E6F5F7), to(#EDF3F5));
  background: url(../img/stem-cell/interpreter-bg_pc.webp) no-repeat right top/contain, linear-gradient(90deg, #E6F5F7 0%, #EDF3F5 100%);
  padding: 39px clamp(35px, 3.47vw, 50px);
  margin-top: 24px;
}

.therapy__interpreter-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.therapy__interpreter-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}

.therapy__interpreter-badge {
  display: inline-block;
  background: var(--color-brand);
  color: var(--color-white);
  font-size: 13px;
  letter-spacing: 0.07em;
  padding: 2px 11px;
  border-radius: 20px;
  white-space: nowrap;
}

.therapy__interpreter-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.therapy__interpreter-description {
  line-height: 1.42;
  margin: 0 0 20px;
}

.therapy__interpreter-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.therapy__interpreter-price {
  background: var(--color-white);
  -webkit-box-shadow: 0 0 4px 0 rgba(54, 176, 191, 0.12);
          box-shadow: 0 0 4px 0 rgba(54, 176, 191, 0.12);
  border-radius: 2px;
  padding: 11px 27px;
  text-align: center;
}

.therapy__interpreter-price-amount {
  font-family: var(--font-cormorant);
  font-size: 28px;
  color: #E85CA6;
  margin: 0 0 4px;
  line-height: 1;
  font-style: italic;
}
.therapy__interpreter-price-amount .unit {
  font-size: 0.8em;
  margin-right: 2px;
}

.therapy__interpreter-price-unit {
  font-size: 10px;
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.therapy__plans-note {
  font-size: 12px;
  color: #999;
  text-align: center;
  margin: 20px 0 0;
  line-height: 1.5;
  font-style: italic;
}

@media screen and (max-width: 767px) {
  .therapy__plans {
    padding: 50px 0 60px;
  }
  .therapy__plans-cards {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin: 30px auto 20px;
  }
  .therapy__plans-card + .therapy__plans-card {
    border-left: none;
  }
  .therapy__plans-card-title {
    font-size: clamp(20px, 5.64vw, 22px);
  }
  .therapy__plans-card-title::before, .therapy__plans-card-title:after {
    margin: 0 10px;
  }
  .therapy__plans-card-badge {
    left: clamp(5px, 3.2vw, 16px);
  }
  .therapy__plans-card-inner {
    padding: 20px clamp(20px, 7.69vw, 30px) 30px;
  }
  .therapy__plans-card-sessions {
    font-size: 16px;
    border-radius: 15px;
    margin-bottom: 0;
  }
  .therapy__plans-card-price {
    font-size: clamp(40px, 14.36vw, 56px);
  }
  .therapy__plans-card-info {
    font-size: clamp(12px, 3.59vw, 14px);
  }
  .therapy__plans-card-note {
    padding: 10px 4.13%;
  }
  .therapy__plans-card-note p {
    font-size: 11px;
  }
  .therapy__plans-card-list {
    padding: 20px clamp(10px, 5.13vw, 20px);
  }
  .therapy__interpreter {
    background: url(../img/stem-cell/interpreter-bg_sp.webp) no-repeat right top/cover;
    padding: 30px 8.57% 58px;
    margin-top: 20px;
  }
  .therapy__interpreter-header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 30px;
  }
  .therapy__interpreter-title {
    font-size: clamp(20px, 5.13vw, 28px);
  }
  .therapy__interpreter-description {
    font-size: clamp(16px, 4.62vw, 18px);
    line-height: 1.83;
  }
  .therapy__interpreter-prices {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
/* therapy__faq"
--------------------------*/
.therapy__faq {
  padding: 60px 0;
  background: url(../img/common/bg01_pc.jpg) no-repeat center top/contain;
}

.therapy__faq-container {
  max-width: 720px;
}

.therapy__faq-footer {
  margin-top: 24px;
  text-align: center;
}

.therapy__faq-footer-text {
  font-size: 13px;
  color: var(--color-brand);
}
.therapy__faq-footer-text a {
  text-decoration: none !important;
}

@media screen and (max-width: 767px) {
  .therapy__faq {
    background: url(../img/common/bg01_sp.jpg) no-repeat center top/cover;
  }
  .therapy__faq-footer {
    margin-top: 36px;
  }
}
/* ------------------------------
　　fibroblast
------------------------------ */
/* procedure overview
--------------------------*/
.therapy__procedure-overview {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 44.44% 20px 1fr;
  grid-template-columns: 44.44% 1fr;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  margin-bottom: 36px;
}

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

.therapy__procedure-overview-text p {
  font-size: 13px;
  line-height: 1.85;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .therapy__procedure-overview {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 0;
    margin-bottom: 30px;
  }
  .therapy__procedure-overview-text p {
    text-align: center;
  }
}
/* plans subtitle
--------------------------*/
.therapy__plans-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.67vw, 24px);
  text-align: center;
  margin: 18px 0 14px;
  color: var(--color-brand);
  font-weight: 400;
}
.therapy__plans-subtitle + .therapy__plans-cards {
  margin-top: 0;
}
/* plans schedule
--------------------------*/
.therapy__plans-card-schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 10px;
}

.therapy__plans-card-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid var(--color-brand);
  border-radius: 8px;
  padding: 12px 16px;
}

.therapy__plans-card-step-title {
  font-size: 14px;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.therapy__plans-card-step-amount {
  font-size: 13px;
  margin: 0;
  white-space: nowrap;
}
.therapy__plans-card-step-amount strong {
  font-size: 22px;
  font-family: var(--font-cormorant);
  font-style: italic;
  line-height: 0.82;
  font-weight: normal;
  color: var(--color-brand);
}

.therapy__plans-card-interval {
  position: relative;
}
.therapy__plans-card-interval::before {
  content: "";
  width: 1px;
  height: calc(100% - 10px);
  background: var(--color-brand);
  position: absolute;
  top: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.therapy__plans-card-interval > span {
  text-align: center;
  font-size: 14px;
  font-family: var(--font-serif);
  color: var(--color-brand);
  padding: 7px 19px;
  background: #E6F5F7;
  border: 1px solid var(--color-brand);
  border-radius: 15px;
  line-height: 1;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 15px auto;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .therapy__plans-card-schedule {
    margin-top: 0;
  }
  .therapy__plans-card-step {
    padding: 10px clamp(15px, 5.13vw, 20px);
  }
}
/* ------------------------------
　　information
------------------------------ */
/* 投稿一覧セクション
--------------------------*/
.information {
  padding: 60px 0 100px;
}

@media screen and (max-width: 767px) {
  .information {
    padding: 50px 0 70px;
  }
}
/* 投稿リスト
--------------------------*/
.information__list {
  border-top: 1px solid #e5e5e5;
}

.information__item {
  border-bottom: 1px solid #e5e5e5;
}

.information__link {
  display: block;
  padding: 22px 0;
}
@media (any-hover: hover) {
  .information__link:hover {
    opacity: 1;
  }
  .information__link:hover .information__title {
    text-decoration-color: var(--color-brand);
    color: var(--color-brand);
  }
}

.information__date {
  display: block;
  font-family: var(--font-roboto);
  font-size: 13px;
  color: var(--color-brand);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.information__title {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.6;
  margin: 0 0 10px;
  -webkit-text-decoration: underline transparent 2px;
          text-decoration: underline transparent 2px;
  text-underline-offset: 2px;
  -webkit-transition: color 0.25s ease, text-decoration-color 0.25s ease;
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

.information__genres {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
}

.information__genre {
  display: inline-block;
  font-size: 11px;
  font-family: var(--font-roboto);
  color: var(--color-brand);
  background: var(--color-brand-lighter);
  border-radius: 2px;
  padding: 3px 10px;
  line-height: 1.6;
}
.information__genre:visited, .information__genre:active {
  color: var(--color-brand);
}

.information__empty {
  font-size: 14px;
  color: #888;
  padding: 40px 0;
  text-align: center;
}

/* SP カテゴリーフィルター
--------------------------*/
.filter__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .filter__list {
    margin-bottom: 40px;
  }
}

.filter__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px 15px;
  border: 1px solid #D8E8EA;
  border-radius: 2px;
  font-family: var(--font-roboto);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-dark);
  background: var(--color-white);
  -webkit-transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.filter__btn:visited, .filter__btn:active {
  color: var(--color-dark);
}
@media (any-hover: hover) {
  .filter__btn:hover {
    background: var(--color-brand-lighter);
    border-color: var(--color-brand-light);
    color: var(--color-brand);
    opacity: 1;
  }
}

.filter__btn--active {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: var(--color-white);
}
.filter__btn--active:visited, .filter__btn--active:active {
  color: var(--color-white);
}

/* カテゴリーサイドバー
--------------------------*/
.genre__label {
  font-family: var(--font-roboto);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin: 0 0 14px;
}

.genre__list {
  border-top: 1px solid #e5e5e5;
}

.genre__item {
  border-bottom: 1px solid #e5e5e5;
}

.genre__link {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  color: var(--color-text);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  border-left: 3px solid transparent;
}
@media (any-hover: hover) {
  .genre__link:hover {
    color: var(--color-brand);
    opacity: 1;
  }
}

.genre__link--active {
  color: var(--color-brand-dark);
  border-left-color: var(--color-brand);
  background: var(--color-brand-lighter);
}
.genre__link--active:visited, .genre__link--active:active {
  color: var(--color-brand-dark);
}

/* Briefing バナースライダー
--------------------------*/
.briefing {
  padding: 60px 0;
  background: #e6f5f7;
}
.briefing .splide__list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.briefing__head {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 24px;
}

.briefing__sub {
  font-size: 13px;
  line-height: 1.8;
  color: #444;
  margin: 0 0 20px;
}

.briefing__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-text);
  margin: 0;
  line-height: 1.4;
}

.briefing__body {
  position: relative;
  overflow: hidden;
}
.briefing__body::before {
  left: 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(40%, #e6f5f7), to(transparent));
  background: linear-gradient(to right, #e6f5f7 40%, transparent);
}
.briefing__body::after {
  right: 0;
  background: -webkit-gradient(linear, right top, left top, color-stop(40%, #e6f5f7), to(transparent));
  background: linear-gradient(to left, #e6f5f7 40%, transparent);
}

.briefing__single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.briefing__single .briefing__link a {
  height: 300px;
}

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

.briefing__link {
  display: block;
}
@media (any-hover: hover) {
  .briefing__link:hover {
    opacity: 0.8;
  }
}

.briefing__btn {
  position: absolute;
  top: 50%;
  top: calc(50% - 12px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 22px;
  background: var(--color-white);
  border: none;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  padding: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media (any-hover: hover) {
  .briefing__btn:hover {
    opacity: 0.75;
  }
}

.briefing__btn--prev {
  left: 6px;
}
.briefing__btn--prev img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.briefing__btn--next {
  right: 6px;
}
.briefing__btn--next img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.briefing__slider .splide__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}

.briefing__slider .splide__pagination__page {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(187, 229, 235, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.briefing__slider .splide__pagination__page.is-active {
  background: var(--color-brand);
  -webkit-transform: none;
          transform: none;
}

.splide:not(.is-overflow) .splide__pagination {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

@media screen and (max-width: 767px) {
  .briefing__head {
    margin-bottom: 20px;
  }
  .briefing__sub {
    font-size: 12px;
    margin-bottom: 16px;
  }
  .briefing__btn {
    top: calc((77.44vw - 24px) * 42 / 279);
  }
  .briefing__btn--prev {
    left: 3.08vw;
  }
  .briefing__btn--next {
    right: 3.08vw;
  }
}
/* ------------------------------
　　faq
------------------------------ */
.faq__main {
  padding: 60px 0 100px;
  background: url(../img/common/bg01_pc.jpg) no-repeat center top/190% auto;
}

.faq__inner {
  max-width: 720px;
}

.faq__group {
  margin-top: 0;
}
.faq__group + .faq__group {
  margin-top: 60px;
}

.faq__list {
  background: var(--color-white);
  overflow: hidden;
}

.faq__item:first-child .faq__answer {
  display: block;
}
.faq__item:last-child .faq__question {
  border-bottom: 1px solid var(--color-brand);
}

.faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: clamp(15px, 1.735vw, 25px) 29px clamp(15px, 1.736vw, 25px) 15px;
  border: 1px solid var(--color-brand);
  border-bottom-width: 0;
  cursor: pointer;
  -webkit-transition: background 0.25s ease, border-bottom-width 0.25s ease;
  transition: background 0.25s ease, border-bottom-width 0.25s ease;
}
@media (any-hover: hover) {
  .faq__question:hover {
    background: var(--color-brand-lighter);
    opacity: 1;
  }
}
.faq__question.--open {
  border-bottom-width: 1px;
}
.faq__question.--open .faq__arrow {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.faq__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-brand);
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 500;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.faq__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

.faq__arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid var(--color-brand);
  border-right: 1.5px solid var(--color-brand);
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.faq__answer {
  display: none;
  padding: 13px 20px 16px 44px;
}
.faq__answer p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #555;
}

@media screen and (max-width: 767px) {
  .faq__main {
    padding: 53px 0 60px;
    background: url(../img/common/bg01_sp.jpg) no-repeat center top/170% auto;
  }
  .faq__head {
    margin-bottom: 36px;
  }
  .faq__group + .faq__group {
    margin-top: 40px;
  }
  .faq__question {
    padding: clamp(10px, 3.85vw, 15px) clamp(20px, 6.41vw, 25px) clamp(10px, 3.85vw, 15px) clamp(12px, 4.359vw, 17px);
    gap: 9px;
  }
  .faq__answer {
    padding: clamp(11px, 2.82vw, 13px) clamp(20px, 5.13vw, 20px) clamp(16px, 4.36vw, 17px) clamp(44px, 11.28vw, 44px);
  }
}
/* ------------------------------
　　topics
------------------------------ */
/* 投稿リスト
--------------------------*/
.topic__list {
  border-top: 1px solid #e5e5e5;
}

.topic__item {
  border-bottom: 1px solid #e5e5e5;
}

.topic__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 20px 0;
}
@media (any-hover: hover) {
  .topic__link:hover {
    opacity: 1;
  }
  .topic__link:hover .topic__title {
    text-decoration-color: var(--color-brand);
    color: var(--color-brand);
  }
}

.topic__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100px;
}
.topic__img img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.topic__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.topic__date {
  display: block;
  font-family: var(--font-roboto);
  font-size: 11px;
  color: var(--color-brand);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.topic__title {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 12px;
  -webkit-text-decoration: underline transparent 2px;
          text-decoration: underline transparent 2px;
  text-underline-offset: 2px;
  -webkit-transition: color 0.25s ease, text-decoration-color 0.25s ease;
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

.topic__genres {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
}

.topic__genre {
  display: inline-block;
  font-size: 11px;
  font-family: var(--font-roboto);
  color: var(--color-brand);
  background: var(--color-brand-lighter);
  border-radius: 2px;
  padding: 3px 10px;
  line-height: 1.6;
}

.topic__empty {
  font-size: 14px;
  color: #888;
  padding: 40px 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .topic__link {
    gap: 14px;
  }
  .topic__img {
    width: 84px;
  }
}
/* ------------------------------
　　reviews
------------------------------ */
.review {
  padding: 60px 0 100px;
}

.review__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3.238% 1fr 3.238% 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 3.238%;
}

.review__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  border: 1px solid #E8F5F7;
  border-radius: 2px;
  padding: 0 24px 24px;
}
@media (any-hover: hover) {
  .review__link:hover {
    opacity: 1;
  }
  .review__link:hover .review__img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .review__link:hover .review__quote {
    text-decoration-color: var(--color-brand);
    color: var(--color-brand);
  }
  .review__link:hover .review__more::after {
    -webkit-transform: translateX(3px);
            transform: translateX(3px);
  }
}

.review__img {
  overflow: hidden;
  margin: 0 -24px 24px;
  border-radius: 2px 2px 0 0;
}
.review__img img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.review__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.review__single .review__tags {
  gap: 8px;
}

.review__tag {
  display: inline-block;
  font-size: 9px;
  font-family: var(--font-roboto);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand);
  border-radius: 2px;
  padding: 3px 12px;
  line-height: 1.5;
  border-radius: 2px;
  border: 1px solid #B8E2E8;
}
.review__single .review__tag {
  font-size: 10px;
  border: 1px solid var(--color-brand);
}

.review__quote {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-dark);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 0 17px;
  -webkit-text-decoration: underline transparent 1px;
          text-decoration: underline transparent 1px;
  text-underline-offset: 1px;
  -webkit-transition: color 0.25s ease, text-decoration-color 0.25s ease;
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}
.review__quote::before, .review__quote::after {
  content: '"';
}

.review__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #E8F5F7;
}

.review__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}

.review__name {
  display: block;
  font-family: var(--font-roboto);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-dark);
}

.review__country {
  display: block;
  font-family: var(--font-roboto);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brand);
}

.review__more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-family: var(--font-roboto);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand);
  white-space: nowrap;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.review__more::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 8px;
  background: url("../img/common/arrow02_bl.svg") no-repeat center/cover;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.review__empty {
  font-size: 14px;
  color: #888;
  padding: 40px 0;
  text-align: center;
}

.review__single {
  margin-bottom: 0;
}

.review__single--movie {
  position: relative;
  padding-bottom: 54.43%;
  margin-bottom: 64px;
  overflow: hidden;
}
.review__single--movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.review__single--quote {
  font-family: var(--font-serif);
  font-size: clamp(30px, 2.778vw, 40px);
  font-weight: 400;
  line-height: 1.325;
  color: var(--color-dark);
  margin: 20px 0;
}
.review__single--quote::before, .review__single--quote::after {
  content: '"';
  font-family: inherit;
}

.review__single--profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  padding-top: 17px;
  border-top: 1px solid #E8F5F7;
  margin-bottom: 40px;
}

.review__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}

.review__label {
  font-family: var(--font-roboto);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-brand);
}

.review__value {
  font-family: var(--font-roboto);
  font-size: 14px;
  color: var(--color-dark);
}

.review__detail--wrap {
  max-width: 670px;
  margin: 0 auto 80px;
}
.review__detail--wrap h2.wp-block-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 16px;
}
.review__detail--wrap h2.wp-block-heading::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-top: 1px solid #E8F5F7;
  margin-left: 14px;
}
.review__detail--wrap h2.wp-block-heading span {
  display: inline-block;
  font-family: var(--font-roboto);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-brand);
  padding: 4px 14px;
  margin: 0;
  white-space: nowrap;
}
.review__detail--wrap p.wp-block-paragraph {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
}
.review__detail--wrap p.wp-block-paragraph:last-child {
  margin-bottom: 0;
}
.review__detail--wrap p.wp-block-paragraph + h2.wp-block-heading {
  margin-top: 57px;
}

.review__detail--head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.review__detail--head::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-top: 1px solid #E8F5F7;
  margin-left: 14px;
}

.review__detail--title {
  font-family: var(--font-roboto);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-brand);
  padding: 4px 14px;
  white-space: nowrap;
}

.review__detail--text {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
}
.review__detail--text p {
  margin: 0 0 1em;
}
.review__detail--text p:last-child {
  margin-bottom: 0;
}

.review__visual {
  padding: 60px 0;
  background: #F7FBFC;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.review__visual--title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--color-dark);
  text-align: center;
  margin: 0 0 36px;
}

.review__visual--label {
  display: block;
  font-family: var(--font-roboto);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: 9px;
}

.review__visual--grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.review__visual--item {
  position: relative;
  margin: 0;
}
.review__visual--item img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.review__visual--tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-roboto);
  font-size: 10px;
  letter-spacing: 0.16em;
  border-radius: 2px;
  text-transform: uppercase;
  color: #fff;
  background: #737A7D;
  padding: 4px 12px;
}
.review__visual--tag.--after {
  background: var(--color-brand);
}

.review__visual--note {
  margin: 12px 0 0;
  font-family: var(--font-roboto);
  font-size: 11px;
  color: #888;
  text-align: center;
}

.review__note {
  max-width: 670px;
  margin: 60px auto 0;
  background: #F7FBFC;
  border-left: 3px solid var(--color-brand);
  padding: 32px 36px;
}

.review__note--label {
  font-family: var(--font-roboto);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin: 0 0 14px;
}

.review__note--body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 20px;
}
.review__note--body p {
  margin: 0 0 1em;
}
.review__note--body p:last-child {
  margin-bottom: 0;
}

.review__note--name {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--color-dark);
  margin: 0;
}

.review__note--position {
  font-family: var(--font-roboto);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin: 0;
}

@media screen and (max-width: 767px) {
  .review {
    padding: 50px 0 70px;
  }
  .review__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
  .review__single--quote {
    font-size: clmap(22px, 7.179vw, 28px);
  }
  .review__single--profile {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 12px;
    padding-top: 20px;
    margin-bottom: 40px;
  }
  .review__single--profile::after {
    content: "";
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    height: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .review__single--profile div:nth-child(-n+2) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .review__single--profile div:nth-child(n+3) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .review__visual--grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .review__note {
    padding: clamp(20px, 8.2vw, 32px) clamp(22px, 9.23vw, 36px);
  }
}
/* ------------------------------
　　投稿詳細（共通）
------------------------------ */
/* Back to list リンク
--------------------------*/
.post__back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-family: var(--font-roboto);
  font-size: 12px;
  color: var(--color-brand);
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}
.post__back:visited, .post__back:active {
  color: var(--color-brand);
}
.post__back::before {
  content: "";
  display: block;
  width: 9px;
  height: 5px;
  background: url(../img/common/arrow_bl.svg) no-repeat center/cover;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (any-hover: hover) {
  .post__back:hover {
    opacity: 0.7;
  }
}

/* 投稿メタ情報（日付・カテゴリー）
--------------------------*/
.post__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.post__date {
  font-family: var(--font-roboto);
  font-size: 11px;
  color: var(--color-brand);
  letter-spacing: 0.08em;
}

/* 記事タイトル
--------------------------*/
.post__title {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-dark);
  padding-bottom: 32px;
  border-bottom: 1px solid #E8F5F7;
  margin: 0 0 32px;
}

/* 記事本文
--------------------------*/
.post__container {
  max-width: 772px;
}

.post__body {
  font-size: 15px;
  line-height: 2;
}
.post__body p {
  margin: 0 0 1em;
}
.post__body p:last-child {
  margin-bottom: 0;
}
.post__body {
  /* h2 */
}
.post__body h2.wp-block-heading {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-dark);
  border-bottom: 2px solid var(--color-brand);
  border-left: none;
  background: none;
  padding: 0 0 12px;
  margin: 36px 0 28px;
}
.post__body {
  /* h3 */
}
.post__body h3.wp-block-heading {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--color-dark);
  border-left: 3px solid var(--color-brand);
  line-height: 1.4;
  padding: 0 0 0 12px;
  margin: 28px 0;
}
.post__body {
  /* h4 */
}
.post__body h4.wp-block-heading {
  font-family: var(--font-roboto);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-brand);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.5;
  margin: 28px 0 12px;
}
.post__body {
  /* 画像ブロック */
}
.post__body .wp-block-image {
  margin: 24px 0;
}
.post__body .wp-block-image img {
  display: block;
  width: 100%;
  height: auto;
}
.post__body .wp-block-columns {
  gap: 16px;
  margin: 24px 0;
}
.post__body .wp-block-column .wp-block-image {
  margin: 0;
}
.post__body {
  /* 番号付きリスト */
}
.post__body ol.wp-block-list {
  list-style: none;
  counter-reset: ol-counter;
  padding: 0;
  margin: 0 0 1em;
}
.post__body ol.wp-block-list li {
  counter-increment: ol-counter;
  padding-left: 1.53em;
  position: relative;
  margin-bottom: 8px;
}
.post__body ol.wp-block-list li::before {
  content: counter(ol-counter) ".";
  font-size: 15px;
  color: var(--color-brand);
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0;
}
.post__body {
  /* 番号なしリスト */
}
.post__body ul.wp-block-list {
  padding: 0;
  margin: 0 0 1em;
}
.post__body ul.wp-block-list li {
  padding-left: 1.53em;
  position: relative;
  margin-bottom: 8px;
}
.post__body ul.wp-block-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 6px;
  height: 6px;
  background: var(--color-brand);
  border-radius: 50%;
}
.post__body {
  /* テーブル */
}
.post__body .wp-block-table {
  margin: 24px 0;
  overflow-x: auto;
}
.post__body .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.post__body .wp-block-table thead {
  border-bottom: none;
}
.post__body .wp-block-table thead tr {
  background: var(--color-brand);
}
.post__body .wp-block-table thead tr th {
  color: var(--color-white);
  font-weight: 500;
  font-size: 11px;
  font-family: var(--font-roboto);
  padding: 12px 16px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--color-brand);
  background: none;
}
.post__body .wp-block-table thead tr th.has-text-align-center {
  text-align: center;
}
.post__body .wp-block-table thead tr th.has-text-align-right {
  text-align: right;
}
.post__body .wp-block-table tbody tr {
  border-bottom: 1px solid #e5e5e5;
}
.post__body .wp-block-table tbody tr td {
  padding: 14px 16px;
  color: var(--color-text);
  border: none;
  vertical-align: top;
}
.post__body .wp-block-table tbody tr td.has-text-align-center {
  text-align: center;
}
.post__body .wp-block-table tbody tr td.has-text-align-right {
  text-align: right;
}
.post__body .wp-block-table tbody tr:nth-child(even) {
  background: #f9fdfd;
}

/* 前後記事ナビゲーション
--------------------------*/
.post__nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #E8F5F7;
  margin-top: 60px;
  padding-top: 33px;
}

.post__nav--prev a,
.post__nav--next a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
  font-size: 13px;
  font-family: var(--font-roboto);
  font-weight: 500;
  color: var(--color-dark);
  letter-spacing: 0.1em;
  padding: 10px 22px;
  border-radius: 2px;
  border: 1px solid #D0DEE0;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
@media (any-hover: hover) {
  .post__nav--prev a:hover,
  .post__nav--next a:hover {
    background-color: var(--color-brand-lighter);
    opacity: 1;
  }
}

.post__nav--prev a::before {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  background: url(../img/common/arrow_bk.svg) no-repeat center/cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.post__nav--all {
  font-family: var(--font-roboto);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand);
  padding: 0 30px;
}
.post__nav--all:visited, .post__nav--all:active {
  color: var(--color-brand);
}
@media (any-hover: hover) {
  .post__nav--all:hover {
    opacity: 0.7;
  }
}

.post__nav--next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.post__nav--next a::after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  background: url(../img/common/arrow_bk.svg) no-repeat center/cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

@media screen and (max-width: 767px) {
  .post__title {
    font-size: clamp(20px, 6.154vw, 24px);
  }
  .post__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .post__nav--prev a,
  .post__nav--next a {
    font-size: 12px;
    padding: 10px clamp(10px, 5.64vw, 22px);
  }
  .post__nav--next {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .post__nav--all {
    padding: 0 15px;
  }
}
/* ------------------------------
　　privacy
------------------------------ */
.privacy__main {
  padding: 40px 0 80px;
  margin-bottom: 50px;
  background: url(../img/common/bg01_pc.jpg) center 20px repeat-x;
  background-size: 1920px auto;
}

.privacy__about {
  max-width: 800px;
  margin: 0 auto 37px;
}
.privacy__about .privacy__text {
  font-family: var(--font-serif);
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-size: 20px;
}

.privacy__frame {
  padding: 35px 20px;
  border: 15px solid #83ccd5;
}

@media screen and (min-width: 1025px) {
  .privacy__frame {
    padding: 85px 90px;
  }
}
.privacy__sect:not(:last-child) {
  margin-bottom: 35px;
  padding-bottom: 36px;
  border-bottom: 1px solid #83ccd5;
}
@media screen and (min-width: 768px) {
  .privacy__sect:not(:last-child) {
    margin-bottom: 55px;
    padding-bottom: 55px;
  }
}

.privacy__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.44px;
  color: var(--color-brand);
  text-align: center;
  margin: 0 auto 12px;
}

.privacy__text {
  margin: 0;
  line-height: 1.8;
}
.privacy__text:not(:last-child) {
  margin-bottom: 30px;
}

/* 通常の番号リスト（1. 2.形式） */
.privacy__list--num {
  padding-left: 0;
  counter-reset: privacy-num;
  line-height: 1.8;
}
.privacy__list--num li {
  counter-increment: privacy-num;
  margin-bottom: 22px;
  padding-left: 1.8em;
  position: relative;
}
.privacy__list--num li::before {
  content: counter(privacy-num) ".";
  position: absolute;
  left: 0;
  top: -0.3em;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--color-brand);
}
.privacy__list--num p {
  margin-bottom: 22px;
}

/* [1][2]形式の番号リスト */
.privacy__list--bracket {
  padding-left: 0;
  counter-reset: bracket-num;
  margin-bottom: 25px;
  line-height: 1.8;
}
.privacy__list--bracket > li {
  counter-increment: bracket-num;
  padding-left: 2em;
  position: relative;
}
.privacy__list--bracket > li::before {
  content: "[" counter(bracket-num) "]";
  position: absolute;
  left: 0;
  top: -0.3em;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--color-brand);
}
.privacy__list--bracket ol {
  counter-reset: paren-num;
}
.privacy__list--bracket ol li {
  counter-increment: paren-num;
  padding-left: 2em;
  position: relative;
}
.privacy__list--bracket ol li::before {
  content: "(" counter(paren-num) ")";
  position: absolute;
  left: 0;
  top: -0.3em;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--color-brand);
}

/* 箇条書きリスト（ul） */
.privacy__list li {
  margin-bottom: 22px;
}
.privacy__list li::before {
  content: "・";
}

@media screen and (max-width: 767px) {
  .privacy__main {
    padding: 35px 0 40px;
    background: url(../img/common/bg01_sp.jpg) center 35px repeat-x;
    background-size: 100% auto;
  }
  .privacy__about .privacy__text {
    padding: 0 4.286vw;
    font-size: clamp(18px, 5.128vw, 20px);
  }
  .privacy__title {
    font-size: clamp(20px, 5.641vw, 22px);
  }
}
/*# sourceMappingURL=style.css.map */