@charset "UTF-8";
:root {
  /* color */
  --main-color: #48B6AF;
  --text-color: #4A4A4A;
  --secondary: #001871;
  --section-border: #E8E8E8;
  /* shadow */
  --text-shadow: 0 0 9px rgba(0, 0, 0, 0.25);
  --box-shadow: 0 0 7px rgba(0, 0, 0, 0.12);
  /* font-family */
  --sans: "Noto Sans JP", sans-serif;
  --en: "Roboto", sans-serif;
  /* border-radius */
  --infinity: calc(infinity * 1px);
  /* ハーフレディング打ち消し */
  --leading-trim: calc((1em - 1lh)/2);
}

.-radius {
  border-radius: var(--infinity) !important;
}

/* ハーフレディング打ち消し */
.leading-trim:before, .leading-trim:after {
  content: "";
  display: block;
  inline-size: 0;
  block-size: 1px;
}
.leading-trim:before {
  -webkit-margin-after: var(--leading-trim);
          margin-block-end: var(--leading-trim);
}
.leading-trim:after {
  -webkit-margin-before: var(--leading-trim);
          margin-block-start: var(--leading-trim);
}

html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  line-height: 1.75;
  position: relative;
  color: var(--text-color);
}
@media only screen and (max-width: 768px) {
  body {
    line-height: 1.5714285714;
  }
}
body a {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
body a.text-link {
  position: relative;
}
body a.text-link:after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #4d4d4d;
  bottom: -4px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
body a.text-link:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
body a,
body button,
body label {
  -webkit-tap-highlight-color: transparent;
}

section {
  position: relative;
  z-index: 1;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media only screen and (max-width: 768px) {
  [data-pc-only] {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  [data-sp-only] {
    display: none !important;
  }
}

a[href^="tel:"] {
  color: inherit;
}
@media only screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}

figure {
  margin-bottom: 0;
  margin-top: 0;
}

dt {
  font-weight: normal;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.en-text {
  color: #B9B9B9;
  font-size: 12px;
  font-family: var(--en);
  letter-spacing: 0.025em;
}

.link-arrow a {
  color: var(--main-color);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.link-arrow a .top-text {
  display: grid;
  grid-template-columns: auto 1fr auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .link-arrow a .top-text {
    font-size: 15px;
  }
}
.link-arrow a .en-text {
  font-size: 12px;
  margin-top: 6px;
  font-family: var(--en);
  color: #B9B9B9;
}
.link-arrow a .arrow-icon {
  display: inline-block;
  position: relative;
  top: -2px;
  margin-left: 28px;
  width: 25px;
  height: 6px;
  background: url(../../asset/image/common/link_arrow.svg) no-repeat center center;
  background-size: contain;
  -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;
}
@media only screen and (max-width: 768px) {
  .link-arrow a .arrow-icon {
    margin-left: 20px;
    width: 16px;
  }
}
.link-arrow a .arrow-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border: 1px solid;
  border-radius: 50%;
  -webkit-transform: scale(0);
          transform: scale(0);
  translate: -50% -50%;
  -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;
}
.link-arrow a:hover .arrow-icon {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.link-arrow a:hover .arrow-icon::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.link-circle-arrow a {
  color: var(--main-color);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.link-circle-arrow .top-text {
  display: grid;
  grid-template-columns: auto 1fr auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 768px) {
  .link-circle-arrow .top-text {
    font-size: 15px;
  }
}
.link-circle-arrow .top-text:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: calc(infinity * 1px);
  background: var(--main-color);
  margin-right: 10px;
}
@media only screen and (max-width: 768px) {
  .link-circle-arrow .top-text:before {
    width: 7px;
    height: 7px;
  }
}

.link-circle-arrow a .en-text {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .link-circle-arrow a:hover {
    color: var(--text-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .link-circle-arrow a:hover .en-text {
    color: var(--main-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .link-circle-arrow a:hover .arrow-circle {
    background: var(--main-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .link-circle-arrow a:hover .arrow-circle:before {
    content: "";
    border-color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
.section-title {
  font-size: clamp(35px, 3.0201342282vw, 45px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--main-color);
}

.section-title__sub {
  font-size: 14px;
  letter-spacing: 0.075em;
  font-weight: 500;
  color: var(--main-color);
  border: 1px solid;
  border-radius: calc(infinity * 1px);
  padding: 6px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 6px;
}
.section-title__sub--wh {
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .section-title__sub {
    font-size: 12px;
  }
}

.section-title-secondary {
  color: var(--main-color);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
@media only screen and (max-width: 768px) {
  .section-title-secondary {
    font-size: 17px;
  }
}

.section-title-secondary__sub {
  color: #B9B9B9;
  font-size: 14px;
  letter-spacing: 0.025em;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .section-title-secondary__sub {
    font-size: 12px;
  }
}

.hgroup--center {
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.l-root {
  overflow-x: hidden;
}

.l-container {
  width: min(100% - 40px, 1100px);
  margin-inline: auto;
}
.l-container--lg {
  width: min(100% - 40px, 1400px);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (769px <= width <= 1024px) {
  .header {
    zoom: 0.8;
  }
}
@media only screen and (max-width: 768px) {
  .header {
    width: 100%;
  }
}

.header.is-visible {
  opacity: 1;
  visibility: visible;
}

.header__inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}

.header:before {
  content: "";
  position: absolute;
  width: 100%;
  background: white;
  height: 30px;
  right: -100%;
  top: 0px;
  -webkit-filter: drop-shadow(var(--box-shadow));
          filter: drop-shadow(var(--box-shadow));
}

.corner-gnav {
  position: absolute;
  right: -20px;
  top: 20px;
  rotate: 180deg;
}

.corner-gnav .corner {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 20px;
  bottom: 10px;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  rotate: 0;
}

.corner-gnav .corner::before {
  display: block;
  width: 200%;
  height: 200%;
  position: absolute;
  top: 0;
  left: 0px;
  overflow: hidden;
  content: "";
  background: transparent;
  border-radius: 50%;
  -webkit-box-shadow: 20px 20px 0 0 white;
  box-shadow: 30px 30px 0 0 white;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* ===== Logo ===== */
.logo {
  margin: 0;
}

.logo__link {
  display: block;
  padding: 14px 28px;
}

/* ===== Global Nav ===== */
/* グローバルナビゲーション */
.gnav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
  border-radius: 0 0 20px 0;
  position: relative;
  -webkit-transition: border-radius 0.2s;
  transition: border-radius 0.2s;
}
@media only screen and (max-width: 768px) {
  .gnav__list {
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: 0 0 15px 15px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-inline: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 62px 150px 104px 112px;
  }
}

.gnav__item:not(:first-child) {
  border-left: 1px solid #EBEBEB;
}
@media only screen and (max-width: 768px) {
  .gnav__item:not(:first-child) .gnav__link {
    border-left: 1px solid #EBEBEB;
    border: none;
  }
  .gnav__item:not(:first-child),
  .gnav__item:not(:first-child) .gnav__link--logo {
    border-left: none;
    padding-right: 0;
  }
}

.gnav__item.gnav__item--logo + .gnav__item .gnav__link {
  border-left: none;
}

.gnav__item {
  display: grid;
  place-items: center;
}

.gnav__item.-bd-l:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 35px;
  background: #EBEBEB;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}

.gnav__link {
  letter-spacing: 0.075em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-size: clamp(14px, 1.0738255034vw, 16px);
  padding: 1.5625vw 2.0833333333vw;
  font-weight: 700;
  color: var(--main-color);
}
@media only screen and (max-width: 768px) {
  .gnav__link {
    display: block;
    text-align: center;
    padding: 0;
    width: 100%;
    height: 100%;
    position: relative;
  }
  .gnav__link.-bd-l:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 35px;
    background: #EBEBEB;
    top: 50%;
    left: 0;
    translate: 0 -50%;
  }
}

.sub-text {
  display: block;
  color: #B9B9B9;
  font-size: 11px;
  font-weight: normal;
  margin-top: 2px;
  letter-spacing: 0.025em;
  line-height: 1;
}

.gnav__link--logo {
  padding: 1.71875vw 2.65625vw;
}
@media only screen and (max-width: 768px) {
  .gnav__link--logo {
    padding: 15px 15px 15px 12px;
  }
}
@media (769px <= width <= 1024px) {
  .gnav__link--logo img {
    zoom: 0.7;
  }
}

.gnav__link--hover {
  padding: 15px;
}

.hover-area {
  padding: 24px 28px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.-line .hover-area {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.-line .hover-area:before {
  content: "";
  -webkit-mask: url(../../asset/image/common/icon_calendar.svg) no-repeat center;
          mask: url(../../asset/image/common/icon_calendar.svg) no-repeat center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 25.88px;
  height: 24.89px;
  background-color: var(--main-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.-line .hover-area:hover {
  background: var(--main-color);
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.-line .hover-area:hover:before {
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.-recruit .hover-area {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.-recruit .hover-area:before {
  content: "";
  -webkit-mask: url(../../asset/image/common/icon_recruit.svg) no-repeat center;
          mask: url(../../asset/image/common/icon_recruit.svg) no-repeat center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 25.88px;
  height: 24.89px;
  background-color: var(--main-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.-recruit .hover-area:hover {
  background: var(--main-color);
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.-recruit .hover-area:hover:before {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.-recruit .hover-area:hover {
  background: #F7F7F7;
  color: #4A4A4A;
}

/* トグルアイコン */
.icon-toggle {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #189a94;
  /* 1pxボーダーを追加 */
  border-radius: 50%;
  /* 円形に */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* アイコンを中央に */
}

.icon-toggle::before,
.icon-toggle::after {
  content: "";
  position: absolute;
  background: #189a94;
  -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;
}

.icon-toggle::before {
  top: 50%;
  left: 4px;
  /* ボーダー分調整 */
  width: 8px;
  /* ボーダー内に収まるサイズ */
  height: 1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.icon-toggle::after {
  top: 4px;
  /* ボーダー分調整 */
  left: 50%;
  width: 1px;
  height: 8px;
  /* ボーダー内に収まるサイズ */
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.gnav__item.open .icon-toggle::after {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

/* メガメニュー */
.mega-menu {
  overflow: hidden;
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 10;
  background: var(--main-color);
  color: #fff;
  opacity: 0;
  border-radius: 0 0 20px 0;
}
@media only screen and (max-width: 768px) {
  .mega-menu {
    border-radius: 0;
  }
}

.mega-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 15px 40px;
  padding: 62px;
  padding-left: 13.0208333333vw;
}
@media only screen and (max-width: 768px) {
  .mega-menu__list {
    padding: 45px 35px;
    display: revert;
  }
}

.mega-menu__list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 24px;
}
@media only screen and (max-width: 768px) {
  .mega-menu__list li + * {
    margin-top: 15px;
  }
}

.mega-menu__list a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  letter-spacing: 0.025em;
}
.mega-menu__list a:before {
  content: "";
  width: 8px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.mega-menu__list a:hover {
  text-decoration: underline;
}

/* ボーダーラディウスの変更 */
.border-radius-modified {
  border-radius: 0;
  -webkit-transition: border-radius 0.2s;
  transition: border-radius 0.2s;
}

.treatment-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 100;
  opacity: 1;
  visibility: visible;
}
@media (769px <= width <= 1024px) {
  .treatment-header {
    zoom: 0.8;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-header {
    width: 100%;
  }
}

.about-header {
  position: fixed;
  top: 0;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 100;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 1;
  visibility: visible;
}
@media (769px <= width <= 1024px) {
  .about-header {
    zoom: 0.8;
  }
}
@media only screen and (max-width: 768px) {
  .about-header {
    width: 100%;
  }
}

/* ===== Header ===== */
.trial-header {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 100;
}
@media (769px <= width <= 1024px) {
  .trial-header {
    zoom: 0.8;
  }
}
@media only screen and (max-width: 768px) {
  .trial-header {
    width: 100%;
  }
}

.header__inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}

.gnav__list:before {
  content: "";
  position: absolute;
  width: 100%;
  background: white;
  height: 30px;
  right: -100%;
  top: 0px;
  -webkit-filter: drop-shadow(var(--box-shadow));
          filter: drop-shadow(var(--box-shadow));
}

.trial-header__corner-gnav {
  position: absolute;
  right: -20px;
  top: 20px;
  rotate: 180deg;
}

.trial-header__corner-gnav .trial-header__corner {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 20px;
  bottom: 10px;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  rotate: 0;
}

.trial-header__corner-gnav .trial-header__corner::before {
  display: block;
  width: 200%;
  height: 200%;
  position: absolute;
  top: 0;
  left: 0px;
  overflow: hidden;
  content: "";
  background: transparent;
  border-radius: 50%;
  -webkit-box-shadow: 20px 20px 0 0 white;
  box-shadow: 30px 30px 0 0 white;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* ===== Logo ===== */
.logo {
  margin: 0;
}

.logo__link {
  display: block;
  padding: 14px 28px;
}

/* ===== Global Nav ===== */
.trial-gnav {
  position: relative;
  z-index: 100;
}

/* グローバルナビゲーション */
.gnav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
  border-radius: 0 0 20px 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .gnav__list {
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: 0 0 15px 15px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-inline: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 62px 150px 104px 112px;
  }
}

.trial-gnav__item:not(:first-child) {
  border-left: 1px solid #EBEBEB;
}
@media only screen and (max-width: 768px) {
  .trial-gnav__item:not(:first-child) .gnav__link {
    border-left: 1px solid #EBEBEB;
  }
  .trial-gnav__item:not(:first-child),
  .trial-gnav__item:not(:first-child) .gnav__link--logo {
    border-left: none;
  }
}

.trial-gnav__item {
  display: grid;
  place-items: center;
}

.trial-gnav__link {
  letter-spacing: 0.075em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-size: clamp(14px, 1.0738255034vw, 16px);
  padding: 1.5625vw 2.0833333333vw;
  font-weight: 700;
  color: var(--main-color);
}
@media only screen and (max-width: 768px) {
  .trial-gnav__link {
    display: block;
    text-align: center;
    padding: 0 19px;
  }
}

.sub-text {
  display: block;
  color: #B9B9B9;
  font-size: 11px;
  font-weight: normal;
  margin-top: 2px;
  letter-spacing: 0.025em;
}

.trial-gnav__link--logo {
  padding: 1.71875vw 2.65625vw;
}
@media only screen and (max-width: 768px) {
  .trial-gnav__link--logo {
    padding: 15px 15px 15px 12px;
  }
}
@media (769px <= width <= 1024px) {
  .trial-gnav__link--logo img {
    zoom: 0.7;
  }
}

.trial-gnav__link--hover {
  padding: 15px;
}

.hover-area {
  padding: 24px 28px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.-line .hover-area {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.-line .hover-area:before {
  content: "";
  -webkit-mask: url(../../asset/image/common/icon_calendar.svg) no-repeat center;
          mask: url(../../asset/image/common/icon_calendar.svg) no-repeat center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 25.88px;
  height: 24.89px;
  background-color: var(--main-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.-line .hover-area:hover {
  background: var(--main-color);
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.-line .hover-area:hover:before {
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.-recruit .hover-area {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.-recruit .hover-area:before {
  content: "";
  -webkit-mask: url(../../asset/image/common/icon_recruit.svg) no-repeat center;
          mask: url(../../asset/image/common/icon_recruit.svg) no-repeat center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 25.88px;
  height: 24.89px;
  background-color: var(--main-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.-recruit .hover-area:hover {
  background: var(--main-color);
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.-recruit .hover-area:hover:before {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.-recruit .hover-area:hover {
  background: #F7F7F7;
  color: #4A4A4A;
}

/* トグルアイコン */
.icon-toggle {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #189a94;
  /* 1pxボーダーを追加 */
  border-radius: 50%;
  /* 円形に */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* アイコンを中央に */
}

.icon-toggle::before,
.icon-toggle::after {
  content: "";
  position: absolute;
  background: #189a94;
  -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;
}

.icon-toggle::before {
  top: 50%;
  left: 4px;
  /* ボーダー分調整 */
  width: 8px;
  /* ボーダー内に収まるサイズ */
  height: 1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.icon-toggle::after {
  top: 4px;
  /* ボーダー分調整 */
  left: 50%;
  width: 1px;
  height: 8px;
  /* ボーダー内に収まるサイズ */
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.trial-gnav__item.open .icon-toggle::after {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

/* メガメニュー */
.mega-menu {
  overflow: hidden;
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 10;
  background: var(--main-color);
  color: #fff;
  opacity: 0;
  border-radius: 0 0 20px 0;
}
@media only screen and (max-width: 768px) {
  .mega-menu {
    border-radius: 0;
  }
}

.mega-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 15px 40px;
  padding: 62px;
  padding-left: 13.0208333333vw;
}
@media only screen and (max-width: 768px) {
  .mega-menu__list {
    padding: 45px 35px;
    display: revert;
  }
}

.mega-menu__list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 24px;
}
@media only screen and (max-width: 768px) {
  .mega-menu__list li + * {
    margin-top: 15px;
  }
}

.mega-menu__list a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  letter-spacing: 0.025em;
}
.mega-menu__list a:before {
  content: "";
  width: 8px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.mega-menu__list a:hover {
  text-decoration: underline;
}

/* ===== Trial Logo ===== */
.trial-logo {
  margin: 0;
}

.trial-logo__link {
  display: block;
  padding: 14px 28px;
}

/* ===== Trial Global Nav ===== */
.trial-header__gnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  -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;
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
  pointer-events: none;
}
.trial-header__gnav.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}

.trial-gnav__item:not(:first-child) {
  border-left: 1px solid #EBEBEB;
}
@media only screen and (max-width: 768px) {
  .trial-gnav__item:not(:first-child) .trial-gnav__link {
    border-left: 1px solid #EBEBEB;
  }
  .trial-gnav__item:not(:first-child),
  .trial-gnav__item:not(:first-child) .trial-gnav__link--logo {
    border-left: none;
  }
}

.trial-gnav__item {
  display: grid;
  place-items: center;
}

/* SP版のgrid設定をnav要素に追加 */
.trial-gnav {
  position: relative;
  z-index: 150;
}
@media only screen and (max-width: 768px) {
  .trial-gnav {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px 20px;
    gap: 8px;
  }
}

/* ロゴ部分のSP対応 */
@media only screen and (max-width: 768px) {
  .trial-gnav__item--logo {
    /* gridの1列目に配置 */
    grid-column: 1;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}

/* メニュー項目のSP対応 */
@media only screen and (max-width: 768px) {
  .trial-gnav__item.js-gnav-toggle {
    display: none;
  }
}

/* PC版のLINE予約ボタン */
@media only screen and (max-width: 768px) {
  .trial-gnav__item[data-pc-only]:nth-last-child(2) {
    /* gridの3列目に配置 */
    grid-column: 3;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    display: block;
  }
}

/* PC版の採用情報ボタン */
@media only screen and (max-width: 768px) {
  .trial-gnav__item[data-pc-only]:nth-last-child(1) {
    /* gridの4列目に配置 */
    grid-column: 4;
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
    display: block;
  }
}

.trial-gnav__link {
  letter-spacing: 0.075em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-size: clamp(14px, 1.0738255034vw, 16px);
  padding: 1.5625vw 2.0833333333vw;
  font-weight: 700;
  color: var(--main-color);
}
@media only screen and (max-width: 768px) {
  .trial-gnav__link {
    display: block;
    text-align: center;
    padding: 0 19px;
  }
}

/* SP版でのボタンスタイル調整 */
@media only screen and (max-width: 768px) {
  .trial-gnav__item[data-pc-only] .trial-gnav__link {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    white-space: nowrap;
  }
}

/* LINE予約ボタンのSP版スタイル */
@media only screen and (max-width: 768px) {
  .trial-gnav__item[data-pc-only] .trial-gnav__link.-line {
    background: #00B900;
    color: white;
  }
  .trial-gnav__item[data-pc-only] .trial-gnav__link.-line .trial-hover-area {
    color: white;
  }
}

/* 採用情報ボタンのSP版スタイル */
@media only screen and (max-width: 768px) {
  .trial-gnav__item[data-pc-only] .trial-gnav__link.-recruit {
    background: #f5f5f5;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }
  .trial-gnav__item[data-pc-only] .trial-gnav__link.-recruit .trial-hover-area {
    color: var(--main-color);
  }
}

.trial-sub-text {
  display: block;
  color: #B9B9B9;
  font-size: 11px;
  font-weight: normal;
  margin-top: 2px;
  letter-spacing: 0.025em;
}

.trial-gnav__link--logo {
  padding: 1.71875vw 2.65625vw;
}
@media only screen and (max-width: 768px) {
  .trial-gnav__link--logo {
    padding: 15px 15px 15px 12px;
  }
}
@media (769px <= width <= 1024px) {
  .trial-gnav__link--logo img {
    zoom: 0.7;
  }
}

.trial-gnav__link--hover {
  padding: 15px;
}

.trial-hover-area {
  padding: 24px 28px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .trial-hover-area {
    display: block;
  }
}
.-line .trial-hover-area {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.-line .trial-hover-area:before {
  content: "";
  -webkit-mask: url(../../asset/image/common/icon_calendar.svg) no-repeat center;
          mask: url(../../asset/image/common/icon_calendar.svg) no-repeat center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 25.88px;
  height: 24.89px;
  background-color: var(--main-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.-line .trial-hover-area:hover {
  background: var(--main-color);
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.-line .trial-hover-area:hover:before {
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.-recruit .trial-hover-area {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.-recruit .trial-hover-area:before {
  content: "";
  -webkit-mask: url(../../asset/image/common/icon_recruit.svg) no-repeat center;
          mask: url(../../asset/image/common/icon_recruit.svg) no-repeat center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 25.88px;
  height: 24.89px;
  background-color: var(--main-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.-recruit .trial-hover-area:hover {
  background: var(--main-color);
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.-recruit .trial-hover-area:hover:before {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.-recruit .trial-hover-area:hover {
  background: #F7F7F7;
  color: #4A4A4A;
}

/* トグルアイコン */
.trial-icon-toggle {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #189a94;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 768px) {
  .trial-icon-toggle {
    display: none;
  }
}

.trial-icon-toggle::before,
.trial-icon-toggle::after {
  content: "";
  position: absolute;
  background: #189a94;
  -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;
}

.trial-icon-toggle::before {
  top: 50%;
  left: 4px;
  width: 8px;
  height: 1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.trial-icon-toggle::after {
  top: 4px;
  left: 50%;
  width: 1px;
  height: 8px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.trial-gnav__item.open .trial-icon-toggle::after {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

/* SP版では非表示するサブテキスト */
@media only screen and (max-width: 768px) {
  .trial-sub-text[data-sp-only] {
    display: none;
  }
}

/* メガメニュー */
.trial-mega-menu {
  overflow: hidden;
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 10;
  background: var(--main-color);
  color: #fff;
  opacity: 0;
  border-radius: 0 0 20px 0;
}
@media only screen and (max-width: 768px) {
  .trial-mega-menu {
    border-radius: 0;
    display: none;
  }
}

.trial-mega-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 15px 40px;
  padding: 62px;
  padding-left: 13.0208333333vw;
}
@media only screen and (max-width: 768px) {
  .trial-mega-menu__list {
    padding: 45px 35px;
    display: revert;
  }
}

.trial-mega-menu__list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 24px;
}
@media only screen and (max-width: 768px) {
  .trial-mega-menu__list li + * {
    margin-top: 15px;
  }
}

.trial-mega-menu__list a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  letter-spacing: 0.025em;
}
.trial-mega-menu__list a:before {
  content: "";
  width: 8px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.trial-mega-menu__list a:hover {
  text-decoration: underline;
}

/* ボーダーラディウスの変更 */
.trial-border-radius-modified {
  border-radius: 0;
}

.fv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .fv {
    position: revert;
    overflow: unset;
    height: auto;
  }
}

.fv__container {
  position: relative;
  margin-top: 25px;
}
@media only screen and (max-width: 768px) {
  .fv__container {
    margin-top: 0;
  }
}

.fv__logo {
  position: absolute;
  top: 50px;
  left: 60px;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .fv__logo {
    position: revert;
    margin-inline: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    padding-block: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .fv__logo img {
    width: 130px;
  }
}

.fv__row {
  display: grid;
  grid-template-columns: minmax(600px, 100%) minmax(200px, 24.4791666667vw);
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (769px <= width <= 1024px) {
  .fv__row {
    grid-template-columns: 2fr 1fr;
  }
}
@media only screen and (max-width: 768px) {
  .fv__row {
    display: block;
  }
}

.fv__image {
  display: block;
  width: 100%;
  position: relative;
}
.fv__image:before {
  content: "";
  background: #44B6AF;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(68, 182, 175, 0)), to(rgba(68, 182, 175, 0.6)));
  background: -webkit-linear-gradient(top, rgba(68, 182, 175, 0) 0%, rgba(68, 182, 175, 0.6) 100%);
  background: linear-gradient(180deg, rgba(68, 182, 175, 0) 0%, rgba(68, 182, 175, 0.6) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 445px;
  z-index: 1;
  border-radius: 0 0 20px 0;
}
@media only screen and (max-width: 768px) {
  .fv__image:before {
    border-radius: 0 0 20px 20px;
    height: 354px;
  }
}
@media only screen and (max-width: 768px) {
  .fv__image {
    margin-top: 0;
    width: calc(100% - 40px);
    margin-inline: auto;
  }
}

.fv__image img {
  width: 100%;
  height: calc(100vh - 50px);
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 20px 20px 0;
}
@media only screen and (max-width: 1024px) {
  .fv__image img {
    height: 75vh;
  }
}
@media (769px <= width <= 1024px) {
  .fv__image img {
    -o-object-position: -700px;
       object-position: -700px;
  }
}
@media only screen and (max-width: 768px) {
  .fv__image img {
    border-radius: 20px;
  }
}

.fv__copy {
  position: absolute;
  left: 4.84375vw;
  bottom: 74px;
  z-index: 3;
}
@media only screen and (max-width: 768px) {
  .fv__copy {
    left: 50px;
    bottom: 30px;
  }
}

.fv__copy h1 {
  font-size: clamp(19px, 2.0134228188vw, 30px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.2em;
  line-height: 2.1666666667;
  text-shadow: var(--text-shadow);
}
@media only screen and (max-width: 768px) {
  .fv__copy h1 {
    line-height: 2.1578947368;
  }
}

.scrolldown {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .scrolldown {
    margin-top: 35px;
  }
}

.fv__menu {
  margin-top: 2.9166666667vw;
}
@media only screen and (max-width: 768px) {
  .fv__menu {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .fv__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.fv__item {
  border-bottom: 1px solid #EBEBEB;
}
@media only screen and (max-width: 768px) {
  .fv__item {
    border-bottom: none;
  }
  .fv__item:nth-of-type(2) .summary_inner {
    border-left: 1px solid #EBEBEB;
    border-right: 1px solid #EBEBEB;
  }
}

summary {
  list-style-type: none;
}

/* Safariで表示されるデフォルトの三角形アイコンを消します */
summary::-webkit-details-marker {
  display: none;
}

.fv__item-accordion {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: var(--main-color);
  font-size: clamp(14px, 1.2080536913vw, 18px);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  letter-spacing: 0.075em;
  padding-top: 42px;
  padding-bottom: 42px;
  padding-inline: 2.6041666667vw;
  -webkit-transition: color 0.4s ease-out;
  transition: color 0.4s ease-out;
}
@media only screen and (max-width: 768px) {
  .fv__item-accordion {
    padding-block: 17px;
    padding-inline: 0;
    font-size: 13px;
  }
}

@media (any-hover: hover) {
  .fv__item-accordion:hover {
    color: #4a4a4a;
  }
}
.summary_inner {
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .summary_inner {
    padding-inline: 27px;
  }
}

.fv__item-subtitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.8;
  font-size: clamp(12px, 0.9395973154vw, 14px);
  font-weight: normal;
  gap: 6px;
  color: #B9B9B9;
  letter-spacing: 0.025em;
  opacity: 1;
  height: auto;
  overflow: hidden;
  -webkit-transition: opacity 0.4s ease-out, height 0.4s ease-out;
  transition: opacity 0.4s ease-out, height 0.4s ease-out;
}
@media only screen and (max-width: 768px) {
  .fv__item-subtitle {
    font-size: 11px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.fv__item-subtitle:before {
  content: "";
  width: 8px;
  height: 1px;
  background: #B9B9B9;
}
@media only screen and (max-width: 768px) {
  .fv__item-subtitle:before {
    display: none;
  }
}

/* トグルアイコン */
.icon-toggle--fv {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 768px) {
  .icon-toggle--fv {
    display: none;
  }
}

.icon-toggle--fv::before,
.icon-toggle--fv::after {
  content: "";
  position: absolute;
  background: var(--main-color);
  -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;
}

.icon-toggle--fv::before {
  top: 50%;
  left: 7px;
  width: 10px;
  height: 1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.icon-toggle--fv::after {
  top: 7px;
  left: 50%;
  width: 1px;
  height: 10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.fv__accordion.is-opened .icon-toggle--fv::after {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.fv__item-menu.content {
  overflow: hidden;
  background: #F7F7F7;
}
@media only screen and (max-width: 768px) {
  .fv__item-menu.content {
    width: max(100%, 388px);
    position: absolute;
    top: 100%;
    left: -5px;
    border-radius: 15px;
    z-index: 10;
  }
}

.content_inner {
  padding: 2.6041666667vw;
}
@media only screen and (max-width: 768px) {
  .content_inner {
    padding: 25px;
  }
}

.content_inner ul {
  display: grid;
  gap: 0.78125vw 0.9375vw;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .content_inner ul {
    gap: 10px 13px;
  }
}

.fv__item-menu-list li a {
  color: var(--text-color);
  font-size: clamp(12px, 0.7291666667vw, 14px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  word-break: keep-all;
  line-height: 1.3571428571;
}
@media only screen and (max-width: 768px) {
  .fv__item-menu-list li a {
    font-size: 12px;
  }
}

@media (any-hover: hover) {
  .fv__item-menu-list li a:hover {
    text-decoration: underline;
  }
}
.fv__item-menu-list li a:before {
  content: "";
  background: url(../../asset/image/common/icon_fv-menu.svg) no-repeat center;
  background-size: contain;
  display: inline-block;
  width: 18px;
  height: 18px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.fv__button {
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 33px 25px;
  padding: 1.71875vw 1.3020833333vw;
  text-decoration: none;
  font-size: clamp(14px, 0.9375vw, 18px);
  color: #fff;
  font-weight: 500;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .fv__button {
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-block: 17px;
  }
}
.fv__button:before {
  content: "";
  -webkit-mask: url(../../asset/image/common/arrow_right.svg) no-repeat center;
          mask: url(../../asset/image/common/arrow_right.svg) no-repeat center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 20px;
  top: 50%;
  translate: 0 -50%;
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
  scale: 0;
}
@media (any-hover: hover) {
  .fv__button:hover .fv__button-en {
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .fv__button:hover:before {
    scale: 1;
    -webkit-transition: scale 0.3s;
    transition: scale 0.3s;
  }
}

.fv__button .text {
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .fv__button .text {
    gap: 10px;
    letter-spacing: 0.075em;
  }
}

.fv__button--line {
  background: #00A7A7;
  color: #fff;
}
.fv__button--line:before {
  background-color: #fff;
}
.fv__button--line .text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.fv__button--line .text:before {
  content: "";
  -webkit-mask: url(../../asset/image/common/icon_calendar.svg) no-repeat center;
          mask: url(../../asset/image/common/icon_calendar.svg) no-repeat center;
  -webkit-mask-size: contain;
          mask-size: contain;
  display: inline-block;
  width: 1.4583333333vw;
  width: clamp(20px, 1.4583333333vw, 28px);
  height: 1.4583333333vw;
  height: clamp(20px, 1.4583333333vw, 28px);
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .fv__button--line .text:before {
    width: 20.36px;
    height: 19.59px;
  }
}

.fv__button--recruit {
  background: #f5f5f5;
  color: var(--main-color);
}
@media only screen and (max-width: 768px) {
  .fv__button--recruit {
    background: #fff;
  }
}
.fv__button--recruit:before {
  background-color: var(--main-color);
}
.fv__button--recruit .text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--text-color);
}
.fv__button--recruit .text:before {
  content: "";
  -webkit-mask: url(../../asset/image/common/icon_recruit.svg) no-repeat center;
          mask: url(../../asset/image/common/icon_recruit.svg) no-repeat center;
  -webkit-mask-size: contain;
          mask-size: contain;
  display: inline-block;
  width: 1.4583333333vw;
  height: 1.4583333333vw;
  width: clamp(20px, 1.4583333333vw, 28px);
  height: clamp(20px, 1.4583333333vw, 28px);
  background-color: var(--main-color);
}
@media only screen and (max-width: 768px) {
  .fv__button--recruit .text:before {
    width: 24.54px;
    height: 24.34px;
  }
}

.fv__button-area {
  margin-top: clamp(40px, 13.4228187919vw, 207px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: calc(100% - 5.2083333333vw);
  margin-inline: auto;
}
@media screen and (max-width: 1600px) {
  .fv__button-area {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 1024px) {
  .fv__button-area {
    margin-top: 110px;
  }
}
@media only screen and (max-width: 768px) {
  .fv__button-area {
    position: fixed;
    left: 50%;
    translate: -50% 0;
    bottom: 16px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: calc(100% - 40px);
    margin-top: unset;
    z-index: 10;
  }
}

@media only screen and (max-width: 768px) {
  .fv__button-area:not(.fv__button-area.--lower) {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
  }
}

@media only screen and (max-width: 768px) {
  .fv__button-area:not(.fv__button-area.--lower).is-visible {
    opacity: 1;
    pointer-events: auto;
  }
}

.fv__button-en {
  font-size: clamp(12px, 0.9395973154vw, 14px);
  font-family: var(--en);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 768px) {
  .fv__button-en {
    display: none;
  }
}

.treatment {
  padding-top: 143px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
  .treatment {
    padding-top: 0;
  }
}

.fv + * {
  margin-top: 100vh;
  position: relative;
  z-index: 2;
  background: #fff;
}
@media only screen and (max-width: 1024px) {
  .fv + * {
    margin-top: 75vh;
  }
}
@media only screen and (max-width: 768px) {
  .fv + * {
    margin-top: unset;
  }
}

.contents-wrapper {
  background: #fff;
  z-index: 2;
}

.corner-block {
  position: absolute;
  right: 0;
  top: -30px;
  background: #fff;
  width: 24.4791666667vw;
  height: 30px;
}
@media (769px <= width <= 1024px) {
  .corner-block {
    width: 33.3%;
  }
}
@media only screen and (max-width: 768px) {
  .corner-block {
    display: none;
  }
}

.corner {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.corner--right {
  left: unset;
  right: 20px;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  top: -20px;
  bottom: unset;
}

.corner::before {
  display: block;
  width: 200%;
  height: 200%;
  position: absolute;
  top: 0px;
  left: 0px;
  overflow: hidden;
  content: "";
  background: transparent;
  border-radius: 50%;
  -webkit-box-shadow: 20px 20px 0 0 white;
          box-shadow: 20px 20px 0 0 white;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.corner--reverse {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  left: unset;
  right: 0;
}
.corner--reverse:before {
  -webkit-box-shadow: -20px 20px 0 0 white;
          box-shadow: -20px 20px 0 0 white;
  left: unset;
  right: -40px;
}

.about {
  padding-top: clamp(80px, 10.2083333333vw, 196px);
  padding-bottom: clamp(500px, 36.0416666667vw, 682px);
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .about {
    padding-bottom: clamp(341px, 79.3023255814vw, 700px);
  }
}
@media only screen and (max-width: 768px) {
  .about {
    padding-top: 80px;
  }
}

.about__intro {
  display: grid;
  grid-template-columns: minmax(auto, 520px) 1fr;
  gap: clamp(40px, 5.3691275168vw, 80px) clamp(100px, 14.7651006711vw, 220px);
  grid-template-areas: "title lead" "text .";
}
@media only screen and (max-width: 1024px) {
  .about__intro {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "lead" "text";
    gap: 0;
  }
}
.about__intro hgroup {
  line-height: 1.5;
  grid-area: title;
}
.about__intro .about__lead {
  grid-area: lead;
}
.about__intro .about__text {
  grid-area: text;
}

.about__lead {
  color: var(--main-color);
  font-size: clamp(19px, 1.8791946309vw, 30px);
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.7;
}
@media only screen and (max-width: 1024px) {
  .about__lead {
    margin-top: 60px;
    line-height: 1.8421052632;
  }
}

.about__text {
  line-height: 2.1875;
}
@media only screen and (max-width: 1024px) {
  .about__text {
    margin-top: 35px;
  }
}
@media only screen and (max-width: 768px) {
  .about__text {
    line-height: 2.5;
    margin-top: 35px;
    font-size: 14px;
  }
}

.about__image {
  position: absolute;
}

.about__image--left {
  left: 0;
  bottom: 208px;
  width: 25.5208333333vw;
}
@media only screen and (max-width: 1024px) {
  .about__image--left {
    width: 62.7906976744vw;
    bottom: 4.6511627907vw;
  }
}

.about__image--right {
  right: 0;
  bottom: 120px;
  width: 52.0833333333vw;
}
@media only screen and (max-width: 1024px) {
  .about__image--right {
    width: 32.5581395349vw;
    bottom: 32.7906976744vw;
  }
}

.about__image--left img {
  border-radius: 0 20px 20px 0;
}
@media only screen and (max-width: 1024px) {
  .about__image--left img {
    border-radius: 0 15px 15px 0;
  }
}

.about__image--right img {
  border-radius: 20px 0 0 20px;
}
@media only screen and (max-width: 1024px) {
  .about__image--right img {
    border-radius: 15px 0 0 15px;
  }
}

.ellipse {
  -webkit-filter: blur(30px);
          filter: blur(30px);
  position: absolute;
  z-index: -1;
}
.ellipse--s {
  width: clamp(200px, 15.625vw, 300px);
  height: clamp(200px, 15.625vw, 300px);
  top: 1.5625vw;
  right: 4.6875vw;
}
@media only screen and (max-width: 768px) {
  .ellipse--s {
    width: 300px;
    height: 300px;
    top: 13.9534883721vw;
    right: -20px;
  }
}
.treatment .ellipse--s {
  top: 1.5625vw;
  right: 0;
}
@media only screen and (max-width: 1024px) {
  .treatment .ellipse--s {
    display: none;
  }
}
.ellipse--m {
  width: clamp(300px, 26.0416666667vw, 500px);
  height: clamp(300px, 26.0416666667vw, 500px);
  left: 12.5vw;
  bottom: 0;
}
@media only screen and (max-width: 768px) {
  .ellipse--m {
    width: 300px;
    height: 300px;
    left: unset;
    right: 4.6511627907vw;
    bottom: 18.6046511628vw;
  }
}
.treatment .ellipse--m {
  left: unset;
  bottom: unset;
  top: 4.1666666667vw;
  right: 4.6875vw;
}
@media only screen and (max-width: 1024px) {
  .treatment .ellipse--m {
    right: unset;
    top: 160px;
    left: 39.5348837209vw;
  }
}
.ellipse--l {
  width: clamp(500px, 52.0833333333vw, 1000px);
  height: clamp(500px, 52.0833333333vw, 1000px);
  top: 11.7708333333vw;
  right: -4.1145833333vw;
}
@media only screen and (max-width: 1024px) {
  .ellipse--l {
    display: none;
  }
}

.topics__border {
  width: 100%;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(#EBEBEB), color-stop(50%, #7CC8C3), to(#EBEBEB));
  background-image: -webkit-linear-gradient(left, #EBEBEB 0%, #7CC8C3 50%, #EBEBEB 100%);
  background-image: linear-gradient(90deg, #EBEBEB 0%, #7CC8C3 50%, #EBEBEB 100%);
  margin-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  .topics__border {
    margin-bottom: 20px;
    margin-top: 60px;
  }
}

.topics__slider {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .topics__slider {
    margin-top: 25px;
  }
}

.feature__intro {
  color: #fff;
  position: absolute;
  top: 37%;
  left: 9.375vw;
  width: min(100%, 541px);
}
@media (1025px <= width <= 1600px) {
  .feature__intro {
    top: 30%;
  }
}
@media only screen and (max-width: 768px) {
  .feature__intro {
    top: calc(50% + 70px);
    left: 60px;
    translate: 0 -50%;
    width: 72.0930232558vw;
  }
}
@media screen and (max-height: 700px) {
  .feature__intro {
    top: calc(50% + 25px);
  }
}

.feature__lead {
  font-size: clamp(20px, 2.0134228188vw, 30px);
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.6666666667;
  margin-top: 25px;
}
@media only screen and (max-width: 768px) {
  .feature__lead {
    line-height: 1.7;
    margin-top: 20px;
  }
}

.feature__text {
  letter-spacing: 0.075em;
  line-height: 1.875;
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .feature__text {
    margin-top: 25px;
    font-size: 14px;
    line-height: 1.8571428571;
  }
}

.treatment__intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(100px, 10.7382550336vw, 170px);
}
@media only screen and (max-width: 1024px) {
  .treatment__intro {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.treatment__intro hgroup {
  line-height: 1.5;
}

.treatment__lead {
  color: var(--main-color);
  font-size: clamp(19px, 1.8791946309vw, 28px);
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.7857142857;
}

.treatment__text {
  margin-top: 30px;
  letter-spacing: 0.075em;
  line-height: 1.875;
}
@media only screen and (max-width: 1024px) {
  .treatment__text {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment__text {
    font-size: 14px;
  }
}

.treatment__details {
  position: relative;
  background: #F7F7F7;
  margin-top: 72px;
  padding-bottom: 215px;
}
@media only screen and (max-width: 1024px) {
  .treatment__details {
    margin-top: 150px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment__details {
    padding-bottom: 120px;
  }
}

.treatment__details-link {
  position: absolute;
  left: 0;
  top: -102px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #f7f7f7;
  padding-top: 53px;
  padding-right: 69px;
  padding-bottom: 15px;
  padding-left: calc((100% - 1100px) / 2);
  border-radius: 0 20px 0 0;
}
@media only screen and (max-width: 1024px) {
  .treatment__details-link {
    padding-left: 24px;
    border-radius: 0 15px 0 0;
    padding-top: 40px;
    padding-right: 30px;
    padding-bottom: 10px;
    top: -89px;
  }
}
.treatment__details-link .corner {
  left: unset;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
@media only screen and (max-width: 768px) {
  .treatment__details-link .corner {
    display: block;
  }
}
.treatment__details-link .corner:before {
  -webkit-box-shadow: -20px 20px 0 0 #F7F7F7;
          box-shadow: -20px 20px 0 0 #F7F7F7;
  left: unset;
  top: -16px;
  right: -40px;
}
@media only screen and (max-width: 1024px) {
  .treatment__details-link .corner:before {
    top: -11px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment__details-link .corner:before {
    top: -5px;
  }
}

.treatment__details-link a {
  color: var(--main-color);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.treatment__details-link .top-text {
  display: grid;
  grid-template-columns: auto 1fr auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .treatment__details-link .top-text {
    font-size: 15px;
  }
}

.treatment__details-link .top-text:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: calc(infinity * 1px);
  background: var(--main-color);
  margin-right: 10px;
}
@media only screen and (max-width: 768px) {
  .treatment__details-link .top-text:before {
    width: 7px;
    height: 7px;
  }
}

.treatment__details-link .en-text,
.recruit-treatment__intro-link .en-text {
  padding-left: 18px;
}

.arrow-circle {
  display: inline-block;
  border-radius: calc(infinity * 1px);
  border: 1px solid var(--main-color);
  width: 20px;
  height: 20px;
  position: relative;
  margin-left: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 768px) {
  .arrow-circle {
    width: 18px;
    height: 18px;
    margin-left: 20px;
  }
}
.arrow-circle:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 4px;
  height: 4px;
  border: 1px solid var(--main-color);
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.treatment__details-link a .sub-text {
  font-size: 12px;
  color: #B9B9B9;
  padding-left: 19px;
  margin-top: 7px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .treatment__details-link a:hover {
    color: var(--text-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .treatment__details-link a:hover .sub-text {
    color: var(--main-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .treatment__details-link a:hover .arrow-circle {
    background: var(--main-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .treatment__details-link a:hover .arrow-circle:before {
    content: "";
    border-color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
.treatment__list {
  padding-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .treatment__list {
    padding-top: 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.treatment__item {
  background: #fff;
  padding: 10px 20px;
  border-radius: 7px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .treatment__item {
    padding: 15px;
    display: revert;
  }
  .treatment__item.wide {
    grid-column: span 2;
  }
}

.treatment__item-title {
  margin-top: 8px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .treatment__item-title {
    margin-top: unset;
    font-size: 13px;
  }
}

.treatment__item-title:before {
  content: "";
  background: url(../../asset/image/common/icon_check.svg) no-repeat center;
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 0.7em;
  margin-right: 10px;
}
@media only screen and (max-width: 768px) {
  .treatment__item-title:before {
    margin-right: 7px;
  }
}

@media only screen and (max-width: 768px) {
  .treatment__item img {
    width: 55px;
    height: 55px;
    margin-left: auto;
    display: block;
  }
}

.treatment__access {
  position: relative;
}

.treatment__access-title {
  position: absolute;
  top: -105px;
  left: 50%;
  translate: -50% 0;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  padding-block: 35px 11px;
  padding-inline: 300px;
  width: 730px;
}
@media only screen and (max-width: 768px) {
  .treatment__access-title {
    width: calc(100% - 40px);
    padding-block: 31px 6px;
    padding-inline: 20px;
    top: -80px;
  }
}

.treatment__access-container {
  padding-top: 70px;
}
@media only screen and (max-width: 768px) {
  .treatment__access-container {
    padding-top: 25px;
  }
}

.treatment__access-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-columns: repeat(auto-fill, minmax(min(330px, 100%), 1fr));
  gap: 37px 28px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .treatment__access-list {
    gap: 15px;
  }
}

.treatment__access-item {
  position: relative;
}

.treatment__access-item img {
  position: relative;
  z-index: -1;
}

.treatment__access-item:before {
  content: "";
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(68, 182, 175, 0)), to(rgb(68, 182, 175)));
  background-image: -webkit-linear-gradient(top, rgba(68, 182, 175, 0) 0%, rgb(68, 182, 175) 100%);
  background-image: linear-gradient(180deg, rgba(68, 182, 175, 0) 0%, rgb(68, 182, 175) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 0;
  border-radius: 7px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.treatment__access-item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.treatment__access-item a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.treatment__access-item a:after {
  content: "View";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: calc(infinity * 1px);
  border: 1px solid #fff;
  width: 106px;
  height: 106px;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--en);
  color: #fff;
  display: grid;
  place-content: center;
}

.treatment__access-item:hover:before {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.treatment__access-item a:hover:before {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.treatment__access-item a:hover:after {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.treatment__access-item a:hover .treatment__access-info {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.treatment__access-img {
  width: 100%;
}

.treatment__access-info {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 1;
  color: #fff;
  padding: 17px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.walk {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 13px;
  border-radius: calc(infinity * 1px);
  border: 1px solid #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1px 12px;
}
@media only screen and (max-width: 768px) {
  .walk {
    font-size: 11px;
    padding-inline: 10px;
    gap: 8px;
  }
}

.walk span:first-child:after {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  display: inline-block;
  width: 1px;
  height: 13px;
  margin-left: 10px;
  position: relative;
  top: 2px;
}
@media only screen and (max-width: 768px) {
  .walk span:first-child:after {
    margin-left: 8px;
  }
}

.store {
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.5;
  margin-top: 8px;
}
@media only screen and (max-width: 768px) {
  .store {
    font-size: 14px;
  }
}

.treatment__access-link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 41px;
}

.grad-border {
  width: 100%;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(#7CC8C3), color-stop(30%, #EBEBEB));
  background-image: -webkit-linear-gradient(left, #7CC8C3 0%, #EBEBEB 30%);
  background-image: linear-gradient(90deg, #7CC8C3 0%, #EBEBEB 30%);
}
.recruit {
  position: relative;
  height: 905px;
  height: 47.1354166667vw;
}
@media only screen and (max-width: 1024px) {
  .recruit {
    padding-block: 69.7674418605vw 37.2093023256vw;
    height: auto;
  }
}

.recruit__images img {
  -o-object-fit: cover;
     object-fit: cover;
}

.recruit__image01 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(100%, 1234px);
  width: 64.2708333333vw;
  height: 840px;
  height: 43.75vw;
  -o-object-position: right;
     object-position: right;
  border-radius: 0 20px 20px 0;
}
@media only screen and (max-width: 1024px) {
  .recruit__image01 {
    top: 0;
    bottom: unset;
    left: unset;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    height: auto;
    border-radius: 0;
  }
}

.recruit__image02 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32.6041666667vw;
  border-radius: 20px;
}
@media only screen and (max-width: 1024px) {
  .recruit__image02 {
    width: 53.488372093vw;
    border-radius: 0 20px 20px 0;
    right: unset;
    left: 0;
  }
}

.recruit__image03 {
  position: absolute;
  top: 0;
  right: 140px;
  right: 7.2916666667vw;
  width: min(100%, 453px);
  width: 23.59375vw;
  border-radius: 20px;
}
@media only screen and (max-width: 1024px) {
  .recruit__image03 {
    border-radius: 20px 0 0 20px;
    width: clamp(180px, 41.8604651163vw, 300px);
    width: 41.8604651163vw;
    top: unset;
    right: 0;
    bottom: 10.9302325581vw;
  }
}
@media (768px <= width <= 1024px) {
  .recruit__image03 {
    height: 25%;
  }
}
@media screen and (max-width: 767px) {
  .recruit__image03 {
    bottom: 10.9302325581vw;
  }
}

.recruit__container {
  position: relative;
}

.recruit__intro {
  border-radius: 20px;
  background: #fff;
  padding: 100px 110px 70px;
  width: min(100%, 660px);
  position: absolute;
  right: 16.5625vw;
  bottom: 2.8125vw;
}
@media (1025px <= width <= 1600px) {
  .recruit__intro {
    zoom: 0.8;
    padding: 60px;
  }
}
@media only screen and (max-width: 1024px) {
  .recruit__intro {
    padding: 50px 60px 50px 40px;
    border-radius: 0 15px 15px 0;
    width: 93.023255814vw;
    right: unset;
    bottom: unset;
    position: relative;
    z-index: 1;
  }
}

.recruit__lead {
  font-size: clamp(20px, 2.0134228188vw, 30px);
  font-size: clamp(1.25rem, 1.0696rem + 0.6711vw, 1.875rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.6666666667;
  margin-top: 20px;
  color: var(--main-color);
}
@media only screen and (max-width: 768px) {
  .recruit__lead {
    line-height: 1.7;
    margin-top: 13px;
  }
}

.recruit__text {
  margin-top: clamp(22px, 0.7991rem + 1.6779vw, 30px);
  margin-bottom: clamp(20px, 0.7991rem + 1.6779vw, 35px);
  letter-spacing: 0.075em;
  line-height: 1.875;
  font-size: clamp(0.875rem, 0.8389rem + 0.1342vw, 1rem);
}
@media only screen and (max-width: 768px) {
  .recruit__text {
    line-height: 1.8571428571;
  }
}

.recruit-treatment {
  padding: 6.8229166667vw 5.7291666667vw;
  position: relative;
  background: #fff;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .recruit-treatment {
    padding: 70px 20px;
  }
}

.recruit-treatment .recruit__text {
  margin-bottom: 0;
}

.recruit-treatment__bg {
  z-index: -1;
  border-radius: 20px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .recruit-treatment__bg {
    border-radius: 15px;
  }
}

.recruit-treatment__bg img {
  border-radius: 20px;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .recruit-treatment__bg img {
    border-radius: 15px;
  }
}

.recruit-treatment__intro {
  position: absolute;
  width: clamp(400px, 36.2416107383vw, 1920px);
  background: none;
  color: #fff;
  top: 50%;
  left: 13.6458333333vw;
  translate: 0 -50%;
}
@media only screen and (max-width: 1024px) {
  .recruit-treatment__intro {
    left: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .recruit-treatment__intro {
    width: 73.2558139535vw;
    top: 31.3953488372vw;
    translate: unset;
  }
}

.recruit-treatment__intro .section-title__sub {
  color: #fff;
}

.recruit-treatment__intro .recruit__lead {
  color: #fff;
}

.recruit-treatment__intro-link {
  position: absolute;
  right: -1px;
  bottom: -1px;
  background: #fff;
  padding-block: 50px 37px;
  padding-inline: 58px 86px;
  border-radius: 20px 0 0 0;
}
@media only screen and (max-width: 768px) {
  .recruit-treatment__intro-link {
    padding-block: 30px 11px;
    padding-inline: 35px 16px;
    border-radius: 15px 0 0 0;
  }
}

.footer-slide__item {
  margin-right: -36px;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .footer-slide__item {
    margin-right: -52px;
    border-radius: 0 36px 36px 0;
  }
}

footer {
  position: relative;
  z-index: 2;
  background: var(--main-color);
  padding: 120px 0 72px;
}
@media only screen and (max-width: 768px) {
  footer {
    padding-top: 60px;
    padding-bottom: 100px;
  }
}

.footer__logo {
  margin-top: 10px;
  width: 251.65px;
}
.footer__logo img {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .footer__logo {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: 18px;
    width: 155px;
  }
  .footer__logo img {
    width: 100%;
    margin-right: 18px;
  }
}

@media (any-hover: hover) {
  .footer__logo a:hover {
    opacity: 0.7;
  }
}
.footer__container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(40px, 35.3020134228vw, 526px);
}
@media (768px <= width <= 1024px) {
  .footer__container {
    gap: 100px;
  }
}
@media screen and (max-width: 767px) {
  .footer__container {
    display: revert;
  }
}

@media only screen and (max-width: 768px) {
  .footer__menu-container {
    margin-top: 30px;
  }
}

.footer__menu {
  color: #fff;
}

.footer__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
  margin-top: 47px;
}
@media only screen and (max-width: 768px) {
  .footer__bottom {
    margin-top: 56px;
    padding-top: 15px;
    border-top: 1px solid #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.footer__link-heading {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .footer__link-heading {
    font-size: 16px;
  }
}

@media (any-hover: hover) {
  .footer__menu:has(.footer__list) .footer__link-heading:hover {
    opacity: 0.7;
  }
}

.footer__link-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 768px) {
  .footer__link-arrow {
    gap: 10px;
  }
}
.footer__link-arrow:before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: calc(infinity * 1px);
  border: 1px solid #fff;
  scale: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  right: -3px;
  top: 50%;
  translate: 0 -50%;
}
.footer__link-arrow:after {
  content: "";
  -webkit-mask: url(../../asset/image/common/link_arrow.svg) no-repeat center;
          mask: url(../../asset/image/common/link_arrow.svg) no-repeat center;
  -webkit-mask-size: contain;
          mask-size: contain;
  display: inline-block;
  width: 20px;
  height: 5px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.footer__link-arrow:hover:before {
  scale: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__link-arrow:hover:after {
  scale: 0.8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer__menu + * {
  margin-top: 35px;
}
@media only screen and (max-width: 768px) {
  .footer__menu + * {
    margin-top: 35px;
  }
}

.footer__menu-horizontal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 43px;
}
@media only screen and (max-width: 768px) {
  .footer__menu-horizontal {
    gap: 66px;
  }
}

.footer__link-circle {
  letter-spacing: 0.075em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 768px) {
  .footer__link-circle {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.footer__link-circle span {
  display: inline-block;
  border-radius: calc(infinity * 1px);
  border: 1px solid #fff;
  background: #fff;
  width: 18px;
  height: 18px;
  position: relative;
  margin-right: 8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.footer__link-circle span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: calc(-50% - 1px) -50%;
  width: 5px;
  height: 5px;
  border: 1px solid var(--main-color);
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .footer__link-circle:hover span {
    background-color: var(--main-color);
    border-color: #fff;
  }
  .footer__link-circle:hover span:after {
    border-color: #fff;
  }
}
.footer__list {
  margin-top: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 6px 29px;
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .footer__list {
    font-size: 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 28px;
  }
}

.footer__external {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .footer__external {
    font-size: 12px;
  }
}
.footer__external:before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: 0px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.footer__external:after {
  content: "";
  background: url(../../asset/image/common/icon_external.svg) no-repeat center;
  background-size: contain;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 10px;
  -webkit-transition: rotate 0.3s;
  transition: rotate 0.3s;
}
@media only screen and (max-width: 768px) {
  .footer__external:after {
    width: 9px;
    height: 9px;
    margin-left: 16px;
  }
}

@media (any-hover: hover) {
  .footer__external:hover:before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  .footer__external:hover:after {
    rotate: 45deg;
    -webkit-transition: rotate 0.3s;
    transition: rotate 0.3s;
  }
}
.footer__copyright {
  font-size: 14px;
  letter-spacing: 0.025em;
}
@media only screen and (max-width: 768px) {
  .footer__copyright {
    margin-top: 39px;
    font-size: 12px;
  }
}

:root {
  --trial-font-en: "Cormorant", serif;
  --trial-font-jp: "Shippori Mincho B1", serif;
  --trial-font-number: "Roboto", sans-serif;
}

.trial-section__title-en {
  font-family: var(--trial-font-en);
  font-size: 80px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .trial-section__title-en {
    font-size: 45px;
  }
}

.trial-section__title-jp {
  font-family: var(--trial-font-jp);
  font-weight: 400;
  font-style: normal;
}

.trial__border {
  position: relative;
  width: 100%;
  max-width: 200px;
  margin-inline: auto;
  height: 1px;
  background-color: var(--main-color);
  margin-bottom: 18px;
}
.trial__border::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(-50vw + 50%);
  width: 100vw;
  height: 1px;
  background-color: var(--main-color);
  opacity: 0.3;
}
@media only screen and (max-width: 768px) {
  .trial__border {
    max-width: 130px;
    margin-bottom: 15px;
  }
}

.trial-title-secondary {
  color: #4A4A4A;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.35;
}
@media only screen and (max-width: 768px) {
  .trial-title-secondary {
    font-size: 14px;
  }
}

.pc_only {
  display: block;
}
@media only screen and (max-width: 768px) {
  .pc_only {
    display: inline;
  }
}

.sp_only {
  display: inline;
}
@media only screen and (max-width: 768px) {
  .sp_only {
    display: block;
  }
}

.trial-fv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
}
.trial-fv__container {
  position: relative;
}
.trial-fv__logo {
  display: block;
  padding-right: 77px;
}
@media only screen and (max-width: 1024px) {
  .trial-fv__logo {
    padding-right: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .trial-fv__logo {
    padding-right: 0;
  }
}
.trial-fv__logo img {
  width: 220px;
  height: auto;
}
@media only screen and (max-width: 1024px) {
  .trial-fv__logo img {
    width: 170px;
  }
}
@media only screen and (max-width: 768px) {
  .trial-fv__logo img {
    width: 132px;
    height: 42px;
  }
}

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

.trial-fv__content-wrapper {
  color: white;
  position: absolute;
  top: 40%;
  left: 50%;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin-top: 92px;
}
@media (1025px <= width <= 1550px) {
  .trial-fv__content-wrapper {
    zoom: 0.8;
  }
}
.trial-fv__badge {
  display: inline-block;
  background-color: #fff;
  color: #817E8F;
  padding: 5px 31px;
  border-radius: 30px;
  font-size: 27px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.8518518519;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .trial-fv__badge {
    font-size: 15px;
    padding: 4px 14px 3px 18px;
    margin-bottom: 20px;
  }
}

.trial-fv__title-main {
  font-size: clamp(31px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-right: 30px;
  margin-bottom: -3px;
}
@media only screen and (max-width: 768px) {
  .trial-fv__title-main {
    letter-spacing: 0.075em;
    margin-right: 12px;
    margin-bottom: 0;
  }
}

.trial-fv__title-sub {
  font-size: clamp(45px, 6vw, 98px);
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7px;
  border-bottom: 1px solid #fff;
  margin-bottom: 31px;
  padding-bottom: 39px;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-right: -40px;
}
@media only screen and (max-width: 768px) {
  .trial-fv__title-sub {
    gap: 0;
    padding-bottom: 24px;
    margin-bottom: 19px;
    margin-right: 0;
    letter-spacing: 0.075em;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.trial-fv__title-sub span {
  font-size: clamp(12px, 6vw, 22px);
  border-radius: calc(infinity * 1px);
  font-weight: 500;
  width: 120px;
  height: 120px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.2272727273;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .trial-fv__title-sub span {
    width: 56px;
    height: 56px;
    border: 1px solid #fff;
    font-size: 12px;
    line-height: 1.0833333333;
  }
}

.trial-fv__title-icon {
  width: 120px;
  height: 120px;
}
@media only screen and (max-width: 768px) {
  .trial-fv__title-icon {
    width: 56px;
    height: 56px;
  }
}

.trial-fv__description {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8181818182;
  margin-bottom: 37px;
}
@media only screen and (max-width: 768px) {
  .trial-fv__description {
    font-size: 14px;
    letter-spacing: 0.075em;
    line-height: 1.4285714286;
    margin-bottom: 30px;
  }
}

.trial-fv__cta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.trial-fv__cta-button {
  background-color: var(--main-color);
  color: white;
  padding: 35px 25px 35px 124px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 20px;
  gap: 74px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 0px 15px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0px 15px rgba(0, 0, 0, 0.12);
  letter-spacing: 0.1em;
  line-height: 1.35;
}
.trial-fv__cta-button:hover {
  background-color: #fff;
  color: var(--main-color);
}
.trial-fv__cta-button:hover .trial-arrow-circle {
  background-color: var(--main-color);
}
.trial-fv__cta-button:hover .trial-arrow-circle:before {
  border-color: #fff;
}
@media only screen and (max-width: 768px) {
  .trial-fv__cta-button {
    border-radius: 10px;
    font-size: 14px;
    gap: 35px;
    padding: 21px 15px 23px 63px;
    letter-spacing: 0.075em;
  }
}

.trial-arrow-circle {
  display: inline-block;
  border-radius: calc(infinity * 1px);
  border: 1px solid var(--main-color);
  background-color: #fff;
  width: 25px;
  height: 25px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 768px) {
  .trial-arrow-circle {
    width: 14px;
    height: 14px;
  }
}
.trial-arrow-circle:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 4px;
  height: 4px;
  border: 1px solid var(--main-color);
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.trial-fv__menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "logo list buttons";
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 50px 0 60px;
  z-index: 400;
}
@media only screen and (max-width: 768px) {
  .trial-fv__menu {
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    grid-template-areas: "logo buttons" "list list";
    padding: 27px 20px 0;
  }
}

.trial-fv__header {
  position: relative;
  display: block;
  width: 100%;
  height: 131px;
  z-index: 300;
}

/* ===== メニューリスト ===== */
.trial-fv__list {
  grid-area: list;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-pack: left;
  -webkit-justify-content: left;
      -ms-flex-pack: left;
          justify-content: left;
}
@media only screen and (max-width: 1024px) {
  .trial-fv__list {
    gap: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .trial-fv__list {
    gap: 42px;
    margin-inline: auto;
  }
}

.trial-fv__list.-pc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.trial-fv__list.-sp {
  display: none;
}

@media screen and (max-width: 1024px) {
  .trial-fv__list.-pc {
    display: none;
  }
  .trial-fv__list.-sp {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.trial-fv__accordion {
  position: relative;
  width: 100%;
}

.trial-fv__item-accordion {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #fff;
  gap: 15px;
  font-size: clamp(14px, 1.2080536913vw, 18px);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  letter-spacing: 0.075em;
  padding-top: 29px;
  padding-bottom: 29px;
  -webkit-transition: color 0.4s ease-out;
  transition: color 0.4s ease-out;
}
@media only screen and (max-width: 768px) {
  .trial-fv__item-accordion {
    padding-block: 17px;
    padding-inline: 0;
    font-size: 14px;
    gap: 8px;
  }
}

.trial-summary_inner {
  gap: 10px;
  white-space: nowrap;
}
.trial-fv__item-subtitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.8;
  font-size: clamp(12px, 0.9395973154vw, 14px);
  font-weight: normal;
  gap: 6px;
  color: #B9B9B9;
  letter-spacing: 0.025em;
  opacity: 1;
  height: auto;
  overflow: hidden;
  -webkit-transition: opacity 0.4s ease-out, height 0.4s ease-out;
  transition: opacity 0.4s ease-out, height 0.4s ease-out;
}
@media only screen and (max-width: 768px) {
  .trial-fv__item-subtitle {
    font-size: 11px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.trial-fv__item-subtitle:before {
  content: "";
  width: 8px;
  height: 1px;
  background: #B9B9B9;
}
@media only screen and (max-width: 768px) {
  .trial-fv__item-subtitle:before {
    display: none;
  }
}

/* トグルアイコン */
/* 1. プラス/マイナスアイコンのスタイル */
.icon-toggle--trial-fv {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #fff;
  border-radius: 50%;
}

/* 横線（常に表示） */
.icon-toggle--trial-fv::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  width: 8px;
  height: 1px;
  background: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* 縦線（ホバー/クリックで非表示） */
.icon-toggle--trial-fv::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  width: 1px;
  height: 8px;
  background: #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -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;
}

/* 基本スタイル */
.trial-fv__item-menu1 {
  position: absolute;
  top: 70%;
  right: -45%;
  background: #fff;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 200px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.trial-fv__item-menu2 {
  position: absolute;
  top: 70%;
  left: -60%;
  background: #fff;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 200px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.trial-fv__item-menu3 {
  position: absolute;
  top: 70%;
  right: 5%;
  background: #fff;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 200px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.trial-fv__item {
  position: relative;
}

.trial-fv__item-header {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-size: clamp(14px, 1.2080536913vw, 16px);
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.075em;
  padding-top: 20px;
  padding-bottom: 29px;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .trial-fv__item-header {
    gap: 8px;
    padding-top: 28px;
  }
}

.trial-fv__item:hover .trial-fv__item-menu1,
.trial-fv__item:hover .trial-fv__item-menu2,
.trial-fv__item:hover .trial-fv__item-menu3 {
  opacity: 1;
  visibility: visible;
}

.trial-fv__item:hover .icon-toggle--trial-fv::after {
  -webkit-transform: translateX(-50%) scaleY(0);
          transform: translateX(-50%) scaleY(0);
}

.trial-fv__item-menu1.content,
.trial-fv__item-menu2.content,
.trial-fv__item-menu3.content {
  overflow: hidden;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .trial-fv__item-menu1.content,
  .trial-fv__item-menu2.content,
  .trial-fv__item-menu3.content {
    width: max(100%, 250px);
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 15px;
  }
}

.content_inner {
  padding: 2.6041666667vw;
}
@media only screen and (max-width: 768px) {
  .content_inner {
    padding: 25px;
  }
}

.content_inner ul {
  display: grid;
  gap: 0.78125vw 0.9375vw;
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .content_inner ul {
    gap: 10px 13px;
  }
}

.trial-fv__item-menu-list li a {
  color: var(--text-color);
  font-size: clamp(12px, 0.7291666667vw, 14px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  word-break: keep-all;
  line-height: 1.3571428571;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .trial-fv__item-menu-list li a {
    font-size: 12px;
  }
}

@media (any-hover: hover) {
  .trial-fv__item-menu-list li a:hover {
    text-decoration: underline;
  }
}
.trial-fv__item-menu-list li a:before {
  content: "";
  background-size: contain;
  display: inline-block;
  width: 6px;
  height: 1px;
  background: #B9B9B9;
}

.trial-fv__button {
  border-radius: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.25vw 1.9791666667vw;
  text-decoration: none;
  font-size: clamp(14px, 0.9375vw, 16px);
  color: #fff;
  width: 188px;
  font-weight: 600;
  position: relative;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
  letter-spacing: 0.075em;
  white-space: nowrap;
}
@media only screen and (max-width: 1024px) {
  .trial-fv__button {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .trial-fv__button {
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    width: 101px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-block: 12px;
    border-radius: 10px;
  }
}

.trial-fv__button--line {
  background: #fff;
  color: var(--main-color);
}
.trial-fv__button--line:before {
  background-color: #fff;
}
.trial-fv__button--line .text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625vw;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.trial-fv__button--line .text:before {
  content: "";
  -webkit-mask: url(../../asset/image/common/icon_calendar.svg) no-repeat center;
          mask: url(../../asset/image/common/icon_calendar.svg) no-repeat center;
  -webkit-mask-size: contain;
          mask-size: contain;
  display: inline-block;
  width: 1.3541666667vw;
  height: 1.3020833333vw;
  background-color: var(--main-color);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .trial-fv__button--line .text:before {
    display: none;
  }
}
.trial-fv__button--line:hover {
  background-color: var(--main-color);
  color: #fff;
}
.trial-fv__button--line:hover .text {
  color: #fff;
}
.trial-fv__button--line:hover .text:before {
  background-color: #fff;
}

.trial-fv__button--recruit {
  background: #fff;
  color: var(--main-color);
}
.trial-fv__button--recruit:before {
  background-color: var(--main-color);
}
.trial-fv__button--recruit .text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  color: var(--main-color);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.trial-fv__button--recruit .text:before {
  content: "";
  -webkit-mask: url(../../asset/image/common/icon_recruit.svg) no-repeat center;
          mask: url(../../asset/image/common/icon_recruit.svg) no-repeat center;
  -webkit-mask-size: contain;
          mask-size: contain;
  display: inline-block;
  width: 1.25vw;
  height: 1.25vw;
  background-color: var(--main-color);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .trial-fv__button--recruit .text:before {
    display: none;
  }
}
.trial-fv__button--recruit:hover {
  background-color: var(--main-color);
  color: #fff;
}
.trial-fv__button--recruit:hover .text {
  color: #fff;
}
.trial-fv__button--recruit:hover .text:before {
  background-color: #fff;
}

.trial-fv__button-area {
  grid-area: buttons;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media only screen and (max-width: 768px) {
  .trial-fv__button-area {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 7px;
  }
}

.trial-fv__button-en {
  font-size: clamp(12px, 0.9395973154vw, 14px);
  font-family: var(--en);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 768px) {
  .trial-fv__button-en {
    display: none;
  }
}

.trial-fv__reception {
  position: absolute;
  bottom: 82px;
  left: 51px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 544px;
  gap: 20px;
  background-color: #fff;
  border-radius: 18px;
  padding: 0 30px 10px 0;
  white-space: nowrap;
  z-index: 3;
  height: 65px;
  opacity: 1;
}
@media (1025px <= width <= 1550px) {
  .trial-fv__reception {
    zoom: 0.8;
  }
}
@media only screen and (max-width: 768px) {
  .trial-fv__reception {
    padding: 0 25px 15px 0;
    max-width: 390px;
    margin-inline: auto;
    gap: 15px;
    border-radius: 10px;
    bottom: 115px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    height: 49px;
  }
}

.trial-fv__reception-label {
  position: relative;
  font-weight: 500;
  letter-spacing: 0.075em;
  color: #fff;
  padding: 14px 20px 12px;
}
.trial-fv__reception-label > .fade-up {
  display: inline-block;
  opacity: 0;
  -webkit-animation: fadeInUp 0.5s ease-out 0.5s forwards;
          animation: fadeInUp 0.5s ease-out 0.5s forwards;
}
@media only screen and (max-width: 768px) {
  .trial-fv__reception-label {
    font-size: 12px;
    padding: 11px 15px;
    line-height: 1;
    border-radius: 10px 0;
    height: 39px;
  }
}
.trial-fv__reception-label::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  background-color: var(--main-color);
  background-size: contain;
  border-radius: 18px 0;
  display: inline-block;
  width: 142px;
  height: 55px;
  margin-right: 5px;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .trial-fv__reception-label::before {
    width: 105px;
    height: 39px;
    border-radius: 10px 0;
  }
}

.trial-fv__reception-text {
  font-size: 18px;
  padding-top: 17px;
  letter-spacing: 0.075em;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-animation: fadeInUp 0.5s ease-out 0.5s forwards;
          animation: fadeInUp 0.5s ease-out 0.5s forwards;
}
@media only screen and (max-width: 768px) {
  .trial-fv__reception-text {
    font-size: 13px;
    padding-top: 15px;
    line-height: 1.3846153846;
    letter-spacing: 0.075em;
  }
}

/* 文字用キーフレーム */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* モバイル用キーフレーム */
@-webkit-keyframes fadeInUpMobile {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) translateY(20px);
            transform: translate(-50%, -50%) translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) translateY(0);
            transform: translate(-50%, -50%) translateY(0);
  }
}
@keyframes fadeInUpMobile {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) translateY(20px);
            transform: translate(-50%, -50%) translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) translateY(0);
            transform: translate(-50%, -50%) translateY(0);
  }
}
.trial-contents-wrapper {
  position: relative;
  z-index: 10;
  background: white;
  border-radius: 120px 120px 0 0;
  margin-top: 100vh;
}

.trial-contents-bg {
  background-color: var(--main-color);
  border-radius: 102px;
}
@media only screen and (max-width: 768px) {
  .trial-contents-bg {
    border-radius: 30px;
  }
}

.trial-message {
  padding-top: clamp(80px, 10.3125vw, 198px);
  padding-bottom: 112px;
  position: relative;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .trial-message {
    padding-bottom: 75px;
    padding-top: 0;
    text-align: center;
    border-radius: 30px 30px 0 0;
    margin-top: -68px;
  }
}

.trial-message__intro {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 114px;
  margin-bottom: 145px;
}
@media only screen and (max-width: 1024px) {
  .trial-message__intro {
    gap: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .trial-message__intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    margin-bottom: 38px;
  }
}

.trial-message__titlewrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 23px;
}
@media only screen and (max-width: 768px) {
  .trial-message__titlewrap {
    margin-left: 0;
    margin-top: 90px;
  }
}

.trial-message__title {
  color: #fff;
  font-size: clamp(16px, 2.5vw, 28px);
  font-family: var(--trial-font-en);
  letter-spacing: 0.1em;
  line-height: 2.3571428571;
  margin-bottom: 4px;
  margin-left: 7px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .trial-message__title {
    margin-left: 0;
  }
}

.trial-message__title::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: #fff;
  top: 50%;
  left: -20px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  .trial-message__title::before {
    width: 1px;
    height: 13px;
    top: -10px;
    left: 50%;
  }
}

.trial-message__lead {
  color: #fff;
  font-size: clamp(22px, 2.5vw, 36px);
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.6388888889;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .trial-message__lead {
    letter-spacing: 0.075em;
    margin-top: 15px;
    margin-left: 0;
    line-height: 1.5909090909;
  }
}

.font_large {
  font-size: clamp(32px, 2.5vw, 49px);
}

.trial-message__text {
  line-height: 2.625;
  color: #fff;
  max-width: 497px;
}
@media only screen and (max-width: 768px) {
  .trial-message__text {
    line-height: 2.4285714286;
    margin-top: 38px;
    font-size: 14px;
    letter-spacing: 0.075em;
  }
}

.trial-message__image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1024px) {
  .trial-message__image {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 768px) {
  .trial-message__image {
    padding: 0;
  }
}

.trial-message__image img {
  border-radius: 10px;
}
@media only screen and (max-width: 768px) {
  .trial-message__image img {
    border-radius: unset;
  }
}

.trial-program {
  position: relative;
  color: #fff;
  padding-bottom: 243px;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .trial-program {
    padding-bottom: 100px;
    border-radius: 0 0 30px 30px;
    margin-bottom: 74px;
  }
}

.trial-program__border {
  position: relative;
  width: 100%;
  max-width: 200px;
  margin-inline: auto;
  height: 1px;
  background-color: #fff;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .trial-program__border {
    margin-top: 6px;
    max-width: 130px;
  }
}
.trial-program__border::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(-50vw + 50%);
  width: 100vw;
  height: 1px;
  background-color: #fff;
  opacity: 0.3;
}

.trial-program-title-secondary {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.35;
  margin-bottom: 56px;
}
@media only screen and (max-width: 768px) {
  .trial-program-title-secondary {
    font-size: 14px;
    margin-top: -8px;
    margin-bottom: 45px;
  }
}

.trial-program__description {
  text-align: center;
  letter-spacing: 0.075em;
  line-height: 2.1875;
  margin-bottom: 75px;
}
@media only screen and (max-width: 768px) {
  .trial-program__description {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 2;
    margin-bottom: 46px;
  }
}

.trial-program__itembox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .trial-program__itembox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.trial-program__item {
  position: relative;
  width: calc(50% - 15px);
  width: 100%;
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .trial-program__item {
    width: 100%;
    border-radius: 5px;
  }
}

.trial-program__image {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
  border-radius: 10px;
}
@media only screen and (max-width: 768px) {
  .trial-program__image {
    height: 470px;
    border-radius: 5px;
  }
}

.trial-program__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media only screen and (max-width: 768px) {
  .trial-program__image img {
    border-radius: 5px;
  }
}

.trial-program__time {
  position: absolute;
  top: 25px;
  right: 25px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 5px;
  letter-spacing: 0.075em;
  border: 1px solid #fff;
}
@media only screen and (max-width: 768px) {
  .trial-program__time {
    font-size: 12px;
    padding: 7px 10px;
    top: 15px;
    right: 15px;
  }
}

.trial-program__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 30px 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .trial-program__content {
    padding: 38px 15px 15px;
  }
}

.trial-program__titlewrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.trial-program__number {
  font-size: 19px;
  font-family: var(--trial-font-number);
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .trial-program__number {
    font-size: 16px;
  }
}

.trial-program__title {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.9666666667;
  letter-spacing: 0.05em;
  font-family: var(--trial-font-jp);
}
@media only screen and (max-width: 768px) {
  .trial-program__title {
    font-size: 22px;
  }
}

.trial-program__bottom-content {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  padding: 21px;
}
@media only screen and (max-width: 768px) {
  .trial-program__bottom-content {
    padding: 20px;
  }
}

.trial-program__text {
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 1.5625;
  margin-left: 25px;
  margin-bottom: 5px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .trial-program__text {
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-left: 12px;
    margin-bottom: 3px;
  }
}

.trial-program__marker {
  display: inline-block;
  width: 10px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 0.8em;
  /* 1行目の中央付近に配置 */
  left: -20px;
}
@media only screen and (max-width: 768px) {
  .trial-program__marker {
    width: 7px;
    left: -12px;
  }
}

.trial-program__text-small {
  font-size: 14px;
  letter-spacing: 0.075em;
}
@media only screen and (max-width: 768px) {
  .trial-program__text-small {
    font-size: 12px;
    letter-spacing: 0.025em;
  }
}

.trial-flow {
  margin-bottom: 94px;
  padding-top: 220px;
  margin-top: -80px;
}
@media only screen and (max-width: 768px) {
  .trial-flow {
    margin-bottom: 60px;
  }
}

.trial-flow__title {
  color: var(--main-color);
}
@media only screen and (max-width: 768px) {
  .trial-flow__title {
    margin-bottom: 5px;
  }
}

.trial-flow-title-secondary {
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .trial-flow-title-secondary {
    margin-top: -4px;
    margin-bottom: 65px;
  }
}

.trial-flow__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 42px;
  background-color: #F7F7F7;
  border-radius: 20px;
  padding: 40px 40px 40px 89px;
  margin-bottom: 20px;
  margin-left: 20px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .trial-flow__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 10px;
    gap: 0;
    padding: 40px 30px 30px;
    margin-bottom: 37px;
    margin-left: 0;
  }
}

.trial-flow__item:last-child {
  margin-bottom: 0;
}

.trial-flow__number {
  width: 64px;
  height: 64px;
  background-color: var(--main-color);
  border-radius: 50%;
  border-radius: calc(infinity * 1px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 29px;
  font-family: var(--trial-font-en);
  line-height: 1;
  letter-spacing: 0.05em;
  position: absolute;
  left: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  padding-bottom: 4px;
}
@media only screen and (max-width: 768px) {
  .trial-flow__number {
    width: 50px;
    height: 50px;
    font-size: 21px;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

@media only screen and (max-width: 768px) {
  .trial-flow__icon {
    width: 56px;
    height: 49px;
    margin-bottom: 14px;
  }
}

.trial-flow__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .trial-flow__wrap {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.trial-flow__heading {
  color: var(--main-color);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.9545454545;
  margin-bottom: 7px;
}
@media only screen and (max-width: 768px) {
  .trial-flow__heading {
    font-size: 17px;
    margin-bottom: 3px;
  }
}

.trial-flow__text {
  letter-spacing: 0.075em;
  line-height: 1.5625;
}
@media only screen and (max-width: 768px) {
  .trial-flow__text {
    font-size: 14px;
    letter-spacing: 0.05em;
    text-align: center;
  }
}

.trial-voices {
  padding-bottom: 180px;
}
@media only screen and (max-width: 768px) {
  .trial-voices {
    padding-bottom: 78px;
  }
}

.trial-voices__title {
  color: var(--main-color);
}
@media only screen and (max-width: 768px) {
  .trial-voices__title {
    margin-bottom: 7px;
  }
}

.trial-voices-title-secondary {
  margin-bottom: 54px;
}
@media only screen and (max-width: 768px) {
  .trial-voices-title-secondary {
    margin-top: -4px;
    margin-bottom: 45px;
  }
}

.trial-voices__intro {
  text-align: center;
  margin-bottom: 82px;
  letter-spacing: 0.075em;
  line-height: 2.1875;
}
@media only screen and (max-width: 768px) {
  .trial-voices__intro {
    margin-bottom: 48px;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 2;
    padding: 0 10px;
  }
}

.trial-voices__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  background-color: #F7F7F7;
  border-radius: 20px;
  padding: 0 30px 80px;
}
@media only screen and (max-width: 768px) {
  .trial-voices__list {
    border-radius: 10px;
    padding-bottom: 40px;
    margin-bottom: 80px;
    gap: 40px;
  }
}

/* 参加者の声セクションのタイトル部分 */
.trial-voices__listtitle {
  background-color: #fff;
  border-radius: 20px;
  padding: 5px 191px 20px;
  font-size: 14px;
  text-align: center;
  position: relative;
  /* 相対位置に設定 */
}
@media only screen and (max-width: 1024px) {
  .trial-voices__listtitle {
    padding: 5px 100px 20px;
  }
}
@media only screen and (max-width: 768px) {
  .trial-voices__listtitle {
    padding: 0 70px 15px;
    border-radius: 10px;
  }
}

/* 左上の内角丸コンテナ */
.trial-voices__corner-left {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}

/* 左上の内角丸 */
.trial-voices__corner-left .trial-corner {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: -20px;
  -webkit-transform: translate(-100%, -100%);
          transform: translate(-100%, -100%);
  rotate: 270deg;
}
@media only screen and (max-width: 768px) {
  .trial-voices__corner-left .trial-corner {
    width: 10px;
    height: 10px;
    top: -10px;
  }
}

.trial-voices__corner-left .trial-corner::before {
  display: block;
  width: 200%;
  height: 200%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  content: "";
  background: transparent;
  border-radius: 50%;
  -webkit-box-shadow: 20px 20px 0 0 #fff;
          box-shadow: 20px 20px 0 0 #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  .trial-voices__corner-left .trial-corner::before {
    -webkit-box-shadow: 10px 10px 0 0 #fff;
            box-shadow: 10px 10px 0 0 #fff;
  }
}

/* 右上の内角丸コンテナ */
.trial-voices__corner-right {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}

/* 右上の内角丸 */
.trial-voices__corner-right .trial-corner {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: -20px;
  top: -40px;
  -webkit-transform: translate(100%, -100%);
          transform: translate(100%, -100%);
  rotate: 90deg;
}
@media only screen and (max-width: 768px) {
  .trial-voices__corner-right .trial-corner {
    width: 10px;
    height: 10px;
    left: -10px;
    top: -20px;
  }
}

.trial-voices__corner-right .trial-corner::before {
  display: block;
  width: 200%;
  height: 200%;
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  content: "";
  background: transparent;
  border-radius: 50%;
  -webkit-box-shadow: -20px 20px 0 0 #fff;
          box-shadow: -20px 20px 0 0 #fff;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
@media only screen and (max-width: 768px) {
  .trial-voices__corner-right .trial-corner::before {
    -webkit-box-shadow: -10px 10px 0 0 #fff;
            box-shadow: -10px 10px 0 0 #fff;
  }
}

.trial-voices__listtitle-main {
  color: var(--main-color);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .trial-voices__listtitle-main {
    font-size: 16px;
  }
}

.trial-voices__listtitle-sub {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3571428571;
  letter-spacing: 0.05em;
  color: #717171;
}
@media only screen and (max-width: 768px) {
  .trial-voices__listtitle-sub {
    font-size: 12px;
  }
}

.trial-voices__itembox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  gap: 60px;
}
@media only screen and (max-width: 1024px) {
  .trial-voices__itembox {
    gap: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .trial-voices__itembox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 70px;
  }
}

.trial-voices__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding-right: 60px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .trial-voices__item {
    padding-right: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .trial-voices__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 330px;
    gap: 20px;
    padding-right: 0;
  }
}

.trial-voices__item:last-child {
  padding-right: 0;
}

.trial-voices__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 33px;
  right: 0;
  width: 1px;
  height: 190px;
  background-color: #D9D9D9;
}
@media only screen and (max-width: 768px) {
  .trial-voices__item:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -35px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    height: 1px;
  }
}

.trial-voices__avatar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 35px;
}
@media only screen and (max-width: 768px) {
  .trial-voices__avatar {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 768px) {
  .trial-voices__avatar img {
    width: 90px;
    height: 90px;
  }
}

.trial-voices__dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .trial-voices__dots {
    width: 15px;
    height: 12px;
    margin-bottom: 12px;
  }
}

.trial-voices__text {
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7777777778;
}
@media only screen and (max-width: 768px) {
  .trial-voices__text {
    text-align: left;
  }
}

.fixed-cta {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
}

.trial__bottom-cta {
  position: fixed;
  left: 11px;
  bottom: 25px;
  width: calc(100% - 211px);
  z-index: 1000;
}

.trial__bottom-cta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.trial__bottom-cta .trial__bottom-cta-button {
  text-align: center;
  background-color: #fff;
  color: var(--main-color);
  font-weight: 600;
  padding: 15px;
  border-radius: 8px;
  width: 100%;
  height: 51px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
  letter-spacing: 0.05em;
  font-size: 14px;
}

.fixed-cta__button {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--main-color);
  color: white;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 21px;
  padding: 20px 80px 20px 50px;
  border-radius: 20px 0 0 0;
  -webkit-box-shadow: 0 0px 15px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0px 15px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.075em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: var(--trial-font-jp);
}
@media only screen and (max-width: 768px) {
  .fixed-cta__button {
    font-size: 14px;
    gap: 12px;
    padding: 21px 24px 25px 24px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 10px 0 0 0;
  }
}

.fixed-cta__button::before {
  content: "";
  position: absolute;
  width: 100vw;
  background: var(--main-color);
  height: 30px;
  right: 100%;
  bottom: 0;
  -webkit-box-shadow: 0 0px 15px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0px 15px rgba(0, 0, 0, 0.12);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .fixed-cta__button::before {
    height: 15px;
  }
}

@media only screen and (max-width: 768px) {
  .fixed-cta__link {
    position: absolute;
    width: 107px;
    height: 51px;
    z-index: 1001;
  }
}
@media only screen and (max-width: 1024px) {
  .fixed-cta__link {
    width: calc(10vw + 50px);
    min-width: 107px;
  }
}

@media only screen and (max-width: 768px) {
  .fixed-cta::before,
  .fixed-cta::after {
    width: 107px;
  }
}
@media only screen and (max-width: 1024px) {
  .fixed-cta::before,
  .fixed-cta::after {
    width: calc(10vw + 50px);
    min-width: 107px;
  }
}

/* LINE予約ボタンの位置調整 */
@media only screen and (max-width: 1024px) {
  .fixed-cta__link--line,
  .fixed-cta::after {
    right: calc(108% + 10vw + 65px);
  }
}

.fixed-cta__link--recruit {
  bottom: 25px;
  right: 105%;
}

.fixed-cta__link--line {
  bottom: 25px;
  right: calc(105% + 115px);
}

.fixed-cta__button img {
  width: 37px;
  height: 31px;
}

.fixed-cta:hover .trial-corner::before {
  -webkit-box-shadow: 20px 20px 0 0 #fff;
          box-shadow: 20px 20px 0 0 #fff;
}

.fixed-cta:hover .fixed-cta__button {
  background-color: #fff;
  color: var(--main-color);
}

.fixed-cta:hover .fixed-cta__button::before {
  background-color: #fff;
}

.fixed-cta:hover .trial-arrow-circle {
  background-color: var(--main-color);
}

.fixed-cta:hover .trial-arrow-circle:before {
  border-color: #fff;
  border: 1px solid #fff;
  border-left: none;
  border-bottom: none;
}

.fixed-cta:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(371%) hue-rotate(135deg) brightness(95%) contrast(94%);
          filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(371%) hue-rotate(135deg) brightness(95%) contrast(94%);
}

.corner-block {
  position: absolute;
  right: 0;
  top: -30px;
  background: #fff;
  width: 24.4791666667vw;
  height: 30px;
}
@media (769px <= width <= 1024px) {
  .corner-block {
    width: 33.3%;
  }
}
@media only screen and (max-width: 768px) {
  .corner-block {
    display: none;
  }
}

.trial-corner-gnav {
  position: absolute;
  left: 0;
  bottom: -93px;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .trial-corner-gnav {
    bottom: -85px;
  }
}

.trial-corner {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
@media only screen and (max-width: 768px) {
  .trial-corner {
    width: 10px;
    height: 10px;
  }
}
.trial-corner--right {
  left: unset;
  right: 20px;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  top: -20px;
  bottom: unset;
}

.trial-corner::before {
  display: block;
  width: 200%;
  height: 200%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  overflow: hidden;
  content: "";
  background: transparent;
  border-radius: 50%;
  -webkit-box-shadow: 20px 20px 0 0 var(--main-color);
          box-shadow: 20px 20px 0 0 var(--main-color);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .trial-corner::before {
    -webkit-box-shadow: 10px 10px 0 0 var(--main-color);
            box-shadow: 10px 10px 0 0 var(--main-color);
  }
}

.corner--reverse {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  left: unset;
  right: 0;
}
.corner--reverse:before {
  -webkit-box-shadow: -20px 20px 0 0 white;
          box-shadow: -20px 20px 0 0 white;
  left: unset;
  right: -40px;
}

.trial-apply {
  position: relative;
  min-height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  padding: 104px 0 94px;
  margin-top: -80px;
}
@media only screen and (max-width: 768px) {
  .trial-apply {
    padding: 88px 0 90px;
    border-radius: 30px 30px 0 0;
  }
}

.trial-apply__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 100px 100px 0 0;
}
.trial-apply__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 100px 100px 0 0;
}
@media only screen and (max-width: 768px) {
  .trial-apply__bg img {
    border-radius: 30px 30px 0 0;
  }
}

.trial-apply__container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 20px;
}
.trial-apply__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
}
@media only screen and (max-width: 768px) {
  .trial-apply__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (max-width: 768px) {
  .trial-apply__header {
    text-align: center;
    margin-bottom: 34px;
  }
}

.trial-apply__title {
  font-family: var(--trial-font-jp);
  font-size: clamp(20px, 5vw, 35px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6857142857;
  margin-bottom: 33px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .trial-apply__title {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 14px;
  }
}

.trial-apply__subtitle {
  font-size: 18px;
  letter-spacing: 0.075em;
  line-height: 1.9444444444;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .trial-apply__subtitle {
    font-size: 14px;
    letter-spacing: 0.05em;
  }
}

.trial-apply__form-content {
  position: relative;
  background-color: #fff;
  border-radius: 50%;
  border-radius: calc(infinity * 1px);
  width: clamp(160px, 20vw, 282px);
  aspect-ratio: 1/1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.trial-apply__form-content:hover {
  background-color: var(--main-color);
}
.trial-apply__form-content:hover .trial-apply__button {
  color: #fff;
}
.trial-apply__form-content:hover .trial-apply__button span {
  color: #fff;
}
.trial-apply__form-content:hover .trial-apply__button-icon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media only screen and (max-width: 768px) {
  .trial-apply__form-content {
    width: 160px;
    height: 160px;
  }
}

.trial-apply__button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: var(--main-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: var(--trial-font-jp);
  font-size: clamp(14px, 1.5vw, 22px);
  font-weight: 500;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.05em;
  line-height: 1.4545454545;
  white-space: nowrap;
  width: 100%;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .trial-apply__button {
    font-size: 14px;
  }
}

.trial-apply__button span {
  font-size: clamp(12px, 1vw, 17px);
  font-family: var(--trial-font-en);
  margin-top: 10px;
  color: #B9B9B9;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .trial-apply__button span {
    font-size: 12px;
    margin-top: 5px;
  }
}

.trial-apply__button-icon {
  margin-bottom: 20px;
}
.trial-apply__button-icon img {
  width: clamp(32px, 4vw, 51px);
  height: auto;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .trial-apply__button-icon {
    width: 32px;
    height: 21px;
    margin-bottom: 15px;
  }
}

/* ===== パンくずリスト ===== */
.trial-breadcrumb {
  position: relative;
  padding: 30px 0;
  background-color: var(--main-color);
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .trial-breadcrumb {
    padding: 16px 21px;
  }
}

.trial-breadcrumb__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trial-breadcrumb__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  letter-spacing: 0.075em;
}
@media only screen and (max-width: 768px) {
  .trial-breadcrumb__item {
    font-size: 12px;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
}
.trial-breadcrumb__item:not(:last-child) {
  margin-right: 15px;
}
@media only screen and (max-width: 768px) {
  .trial-breadcrumb__item:not(:last-child) {
    margin-right: 11px;
  }
}
.trial-breadcrumb__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 15px;
}
@media only screen and (max-width: 768px) {
  .trial-breadcrumb__item:not(:last-child)::after {
    width: 5px;
    height: 5px;
    margin-left: 6px;
  }
}

.trial-breadcrumb__link {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.trial-breadcrumb__current {
  color: #fff;
}

.trial-breadcrumb__link-circle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.trial-breadcrumb__link-circle span {
  display: inline-block;
  border-radius: calc(infinity * 1px);
  border: 1px solid #fff;
  background: #fff;
  width: 18px;
  height: 18px;
  position: relative;
  margin-right: 8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 768px) {
  .trial-breadcrumb__link-circle span {
    width: 14px;
    height: 14px;
    margin-right: 6px;
  }
}
.trial-breadcrumb__link-circle span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: calc(-50% - 1px) -50%;
  width: 6px;
  height: 6px;
  border: 1px solid var(--main-color);
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 768px) {
  .trial-breadcrumb__link-circle span:after {
    width: 4px;
    height: 4px;
  }
}

@media (any-hover: hover) {
  .trial-breadcrumb__link-circle:hover span {
    background-color: var(--main-color);
    border-color: #fff;
  }
  .trial-breadcrumb__link-circle:hover span:after {
    border-color: #fff;
  }
}
:root {
  --w: 450px;
  --gap: 36px;
  --n: 5;
  --dur: 40s;
  /* ちらつき軽減のため短縮 */
  --set: calc(var(--w) * var(--n) - var(--gap) * (var(--n) - 1));
}

.trial-footer-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
}

.trial-footer-slide__track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: calc(var(--set) * 2 - var(--gap));
  -webkit-animation: slideLoop var(--dur) linear infinite;
          animation: slideLoop var(--dur) linear infinite;
  will-change: transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}

.trial-footer-slide__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: var(--set);
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.trial-footer-slide__list--clone {
  z-index: 0;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: var(--set);
  margin-left: calc(var(--gap) * -1);
  /* -36px */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.trial-footer-slide__list:not(.trial-footer-slide__list--clone) {
  z-index: 1;
}

.trial-footer-slide__item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 var(--w);
      -ms-flex: 0 0 var(--w);
          flex: 0 0 var(--w);
  position: relative;
  margin-right: calc(var(--gap) * -1);
  z-index: var(--z);
  border-radius: 0 20px 20px 0;
  overflow: hidden;
  height: 100%;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

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

@-webkit-keyframes slideLoop {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-1 * var(--set)));
            transform: translateX(calc(-1 * var(--set)));
  }
}

@keyframes slideLoop {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-1 * var(--set)));
            transform: translateX(calc(-1 * var(--set)));
  }
}
@media (max-width: 768px) {
  .trial-footer-slide__item {
    border-radius: 0 36px 36px 0;
  }
}
/* デバッグ用：クローンの最初のスライドを可視化（必要に応じて削除百裂削除） */
.trial-footer-slide__list--clone .trial-footer-slide__item:first-child {
  background: rgba(255, 0, 0, 0.2);
}

.trial-footer-slide__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: var(--set);
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.trial-footer-slide__list--clone {
  z-index: 0;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: var(--set);
  margin-left: calc(var(--gap) * -1);
  /* -36px */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.trial-footer-slide__list:not(.trial-footer-slide__list--clone) {
  z-index: 1;
}

.trial-footer-slide__item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 var(--w);
      -ms-flex: 0 0 var(--w);
          flex: 0 0 var(--w);
  position: relative;
  margin-right: calc(var(--gap) * -1);
  z-index: var(--z);
  border-radius: 0 20px 20px 0;
  overflow: hidden;
  height: 100%;
}

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

@keyframes slideLoop {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-1 * var(--set)));
            transform: translateX(calc(-1 * var(--set)));
  }
}
@media (max-width: 768px) {
  .trial-footer-slide__item {
    border-radius: 0 36px 36px 0;
  }
}
/* デバッグ用：クローンの最初のスライドを可視化（必要に応じて削除） */
.trial-footer-slide__list--clone .trial-footer-slide__item:first-child {
  background: rgba(255, 0, 0, 0.2);
}

.trial-footer {
  position: relative;
  z-index: 2;
  background: var(--main-color);
  padding: 120px 0;
}

.trial-footer__logo {
  width: 252px;
}
@media only screen and (max-width: 768px) {
  .trial-footer__logo {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
}

@media (any-hover: hover) {
  .trial-footer__logo a:hover {
    opacity: 0.7;
  }
}
.trial-footer__container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(40px, 35.3020134228vw, 526px);
}
@media (768px <= width <= 1024px) {
  .trial-footer__container {
    gap: 100px;
  }
}
@media screen and (max-width: 767px) {
  .trial-footer__container {
    display: revert;
  }
}

@media only screen and (max-width: 768px) {
  .trial-footer__menu-container {
    margin-top: 30px;
  }
}

.trial-footer__menu {
  color: #fff;
}

.trial-footer__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .trial-footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.trial-footer__link-heading {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .trial-footer__link-heading {
    font-size: 16px;
  }
}

.trial-footer__link-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.trial-footer__link-arrow:before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: calc(infinity * 1px);
  border: 1px solid #fff;
  scale: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  right: -3px;
  top: 50%;
  translate: 0 -50%;
}
.trial-footer__link-arrow:after {
  content: "";
  -webkit-mask: url(../../asset/image/common/link_arrow.svg) no-repeat center;
          mask: url(../../asset/image/common/link_arrow.svg) no-repeat center;
  -webkit-mask-size: contain;
          mask-size: contain;
  display: inline-block;
  width: 20px;
  height: 5px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.trial-footer__link-arrow:hover:before {
  scale: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.trial-footer__link-arrow:hover:after {
  scale: 0.8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.trial-footer__menu + * {
  margin-top: 43px;
}
@media only screen and (max-width: 768px) {
  .trial-footer__menu + * {
    margin-top: 35px;
  }
}

.trial-footer__menu-horizontal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 43px;
}
@media only screen and (max-width: 768px) {
  .trial-footer__menu-horizontal {
    gap: 70px;
  }
}

.trial-footer__link-circle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.trial-footer__link-circle span {
  display: inline-block;
  border-radius: calc(infinity * 1px);
  border: 1px solid #fff;
  background: #fff;
  width: 18px;
  height: 18px;
  position: relative;
  margin-right: 8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.trial-footer__link-circle span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: calc(-50% - 1px) -50%;
  width: 5px;
  height: 5px;
  border: 1px solid var(--main-color);
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .trial-footer__link-circle:hover span {
    background-color: var(--main-color);
    border-color: #fff;
  }
  .trial-footer__link-circle:hover span:after {
    border-color: #fff;
  }
}
.trial-footer__list {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 12px 30px;
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .trial-footer__list {
    font-size: 12px;
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 10px 24px;
  }
}

.trial-footer__external {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.trial-footer__external:before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: 0px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.trial-footer__external:after {
  content: "";
  background: url(../../asset/image/common/icon_external.svg) no-repeat center;
  background-size: contain;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 10px;
  -webkit-transition: rotate 0.3s;
  transition: rotate 0.3s;
}

@media (any-hover: hover) {
  .trial-footer__external:hover:before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  .trial-footer__external:hover:after {
    rotate: 45deg;
    -webkit-transition: rotate 0.3s;
    transition: rotate 0.3s;
  }
}
@media only screen and (max-width: 768px) {
  .trial-footer__copyright {
    margin-top: 40px;
  }
}

:root {
  --font-en: "Roboto", sans-serif;
  --font-jp: "Shippori Mincho B1", serif;
  --font-number: "Cormorant", serif;
}

.treatment-fv {
  position: relative;
  padding: 0 30px;
  margin-bottom: 76px;
  margin-top: -86px;
}
@media (min-width: 1921px) {
  .treatment-fv {
    padding: 0 clamp(30px, 5vw, 200px);
    max-width: 2400px;
    margin: 30px auto 76px;
  }
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-fv {
    padding: 0 25px;
    margin-bottom: 60px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .treatment-fv {
    padding: 0 40px;
    margin-bottom: 65px;
  }
}
@media only screen and (max-width: 1024px) {
  .treatment-fv {
    padding: 0 20px;
    padding-top: 15px;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-fv {
    padding: 0 20px;
    margin-bottom: 50px;
    margin-top: 0;
  }
}

.l-treatment-root {
  contain: paint;
}

.treatment-fv__container {
  border-radius: 20px;
  position: relative;
  width: 100%;
  max-width: 2200px;
  margin: 0 auto;
}
@media (min-width: 1921px) {
  .treatment-fv__container {
    max-width: 2000px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-fv__container {
    z-index: auto;
    /* z-indexを制限 */
  }
}

.main-bg {
  background-color: #F7F7F7;
}

.treatment-fv__image {
  border-radius: 20px;
}

.treatment-fv__image img {
  display: block;
}
@media (769px <= width <= 1024px) {
  .treatment-fv__image img {
    min-height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 15px;
  }
}

.treatment-fv__content {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: -1px;
  left: -1px;
  background-color: #F7F7F7;
  padding: 54px 175px 0 190px;
  border-radius: 0 20px 0 0;
  background-clip: padding-box;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-fv__content {
    padding: 25px 100px 0 120px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .treatment-fv__content {
    padding: 50px 140px 0 160px;
  }
}
@media only screen and (max-width: 1024px) {
  .treatment-fv__content {
    padding: 20px 70px 0;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-fv__content {
    padding: 43px 120px 0 15px;
    border-radius: 0 10px 0 0;
  }
}

.treatment-fv__title-en {
  font-size: 14px;
  font-weight: 500;
  color: #B9B9B9;
  letter-spacing: 0.075em;
  line-height: 1.5;
  margin-bottom: -2px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-fv__title-en {
    font-size: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-fv__title-en {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

.treatment-fv__title-jp {
  font-size: clamp(22px, 2.0805369128vw, 31px);
  font-weight: 600;
  color: var(--main-color);
  line-height: 1.8214285714;
  letter-spacing: 0.075em;
  padding-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .treatment-fv__title-jp {
    padding-bottom: 25px;
    line-height: 1;
  }
}

/* 左下・右下角丸の実装（treatment-fv用） */
.treatment-fv-corner-left {
  position: absolute;
  left: -20px;
  top: 10px;
}

.treatment-fv-corner-right {
  position: absolute;
  right: -10px;
  bottom: -10px;
}
@media only screen and (max-width: 768px) {
  .treatment-fv-corner-right {
    right: 0;
  }
}

.treatment-fv-corner-left .treatment-corner {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 20px;
  bottom: 10px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
@media only screen and (max-width: 768px) {
  .treatment-fv-corner-left .treatment-corner {
    width: 10px;
    height: 10px;
  }
}

.treatment-fv-corner-right .treatment-corner {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 20px;
  bottom: 10px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
@media only screen and (max-width: 768px) {
  .treatment-fv-corner-right .treatment-corner {
    width: 10px;
    height: 10px;
    left: 10px;
  }
}

.treatment-fv-corner-left .treatment-corner::before {
  display: block;
  width: 200%;
  height: 200%;
  position: absolute;
  top: 0;
  left: 0px;
  overflow: hidden;
  content: "";
  background: transparent;
  border-radius: 50%;
  -webkit-box-shadow: -30px 30px 0 0 #F7F7F7;
          box-shadow: -30px 30px 0 0 #F7F7F7;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  .treatment-fv-corner-left .treatment-corner::before {
    -webkit-box-shadow: -10px 10px 0 0 #F7F7F7;
            box-shadow: -10px 10px 0 0 #F7F7F7;
  }
}

.treatment-fv-corner-right .treatment-corner::before {
  display: block;
  width: 200%;
  height: 200%;
  position: absolute;
  top: 0;
  right: 0px;
  overflow: hidden;
  content: "";
  background: transparent;
  border-radius: 50%;
  -webkit-box-shadow: -30px 30px 0 0 #F7F7F7;
          box-shadow: -30px 30px 0 0 #F7F7F7;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
@media only screen and (max-width: 768px) {
  .treatment-fv-corner-right .treatment-corner::before {
    -webkit-box-shadow: -10px 10px 0 0 #F7F7F7;
            box-shadow: -10px 10px 0 0 #F7F7F7;
  }
}

.treatment-fv__button {
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 33px 25px;
  padding: 1.71875vw 1.3020833333vw;
  text-decoration: none;
  font-size: clamp(14px, 0.9375vw, 18px);
  color: #fff;
  font-weight: 500;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .treatment-fv__button {
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-block: 17px;
    z-index: 10000 !important;
    position: relative;
  }
}
.treatment-fv__button:before {
  content: "";
  -webkit-mask: url(../../asset/image/common/arrow_right.svg) no-repeat center;
          mask: url(../../asset/image/common/arrow_right.svg) no-repeat center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 20px;
  top: 50%;
  translate: 0 -50%;
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
  scale: 0;
}
@media (any-hover: hover) {
  .treatment-fv__button:hover .fv__button-en {
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .treatment-fv__button:hover:before {
    scale: 1;
    -webkit-transition: scale 0.3s;
    transition: scale 0.3s;
  }
}

.treatment-fv__button--line {
  background: #00A7A7;
  color: #fff;
}
.treatment-fv__button--line:before {
  background-color: #fff;
}
.treatment-fv__button--line .text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.78125vw;
}
.treatment-fv__button--line .text:before {
  content: "";
  -webkit-mask: url(../../asset/image/common/icon_calendar.svg) no-repeat center;
          mask: url(../../asset/image/common/icon_calendar.svg) no-repeat center;
  -webkit-mask-size: contain;
          mask-size: contain;
  display: inline-block;
  width: 1.4583333333vw;
  height: 1.4583333333vw;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .treatment-fv__button--line .text:before {
    width: 20.36px;
    width: 19.59px;
  }
}

.treatment-fv__button--recruit {
  background: #F5F5F5;
  color: var(--main-color);
}
.treatment-fv__button--recruit:before {
  background-color: var(--main-color);
}
.treatment-fv__button--recruit .text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  color: var(--text-color);
}
.treatment-fv__button--recruit .text:before {
  content: "";
  -webkit-mask: url(../../asset/image/common/icon_recruit.svg) no-repeat center;
          mask: url(../../asset/image/common/icon_recruit.svg) no-repeat center;
  -webkit-mask-size: contain;
          mask-size: contain;
  display: inline-block;
  width: 1.4583333333vw;
  height: 1.4583333333vw;
  background-color: var(--main-color);
}

.treatment-fv__button-area {
  margin-top: clamp(40px, 13.4228187919vw, 200px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: calc(100% - 5.2083333333vw);
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .treatment-fv__button-area {
    position: fixed;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 16px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: calc(100% - 40px);
    margin-top: unset;
    z-index: 9999;
  }
}

/* サイドバーとメインコンテンツのレイアウト調整 */
.l-treatment__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1480px;
  gap: clamp(20px, 5.7291666667vw, 110px);
  margin-inline: auto;
  position: relative;
  width: calc(100% - 80px);
}
@media screen and (max-width: 820px) {
  .l-treatment__container {
    width: calc(100% - 40px);
    gap: 0;
  }
}

/* サイドバーのフェードアウトアニメーション */
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    visibility: hidden;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    visibility: hidden;
  }
}
/* サイドバーのフェードインアニメーション */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    visibility: visible;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    visibility: visible;
  }
}
.treatment__sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 29.9479166667vw;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  z-index: 1;
  height: auto;
  padding-bottom: 135px;
}

/* サイドバー */
.sidebar-sticky {
  width: 270px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  border-radius: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
  z-index: 999;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .sidebar-sticky {
    width: 250px;
  }
}
@media only screen and (max-width: 1024px) {
  .sidebar-sticky {
    width: 220px;
    z-index: -1;
  }
}
@media screen and (max-width: 820px) {
  .sidebar-sticky {
    display: none;
  }
}

/* 非表示状態 */
.treatment__sidebar.--hidden {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  pointer-events: none;
  /* クリック無効 */
  visibility: hidden;
  /* フォーカスも防止 */
}

.sidebar-menu__subtitle {
  padding: 20px 35px 0;
  color: #B9B9B9;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  position: relative;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .sidebar-menu__subtitle {
    padding: 18px 25px 0;
    font-size: 13px;
  }
}
@media only screen and (max-width: 1024px) {
  .sidebar-menu__subtitle {
    padding: 10px 15px 10px;
  }
}

.sidebar-menu__item {
  padding: 15px 30px;
  border-bottom: 1px solid #EBEBEB;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .sidebar-menu__item {
    padding: 13px 25px;
  }
}

.sidebar-menu__item:first-child {
  padding: 28px 30px 20px 30px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .sidebar-menu__item:first-child {
    padding: 25px 25px 18px 25px;
  }
}

.sidebar-menu__item:last-child {
  border-bottom: none;
  padding: 20px 30px 30px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .sidebar-menu__item:last-child {
    padding: 18px 25px 25px;
  }
}

.sidebar-menu__link {
  position: relative;
  padding-left: 0;
  color: #4A4A4A;
  -webkit-transition: all 0.3s ease, padding-left 0.3s ease, color 0.3s ease;
  transition: all 0.3s ease, padding-left 0.3s ease, color 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  text-decoration: none;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .sidebar-menu__link {
    font-size: 13px;
  }
}

/* 丸点の基本スタイル - 初期状態では非表示 */
.sidebar-menu__link::before {
  content: "";
  position: absolute;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--main-color);
  opacity: 0;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .sidebar-menu__link::before {
    width: 7px;
    height: 7px;
  }
}

/* アクティブ状態のスタイル */
.sidebar-menu__link.active {
  padding-left: 15px;
  color: var(--main-color);
  font-weight: 500;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .sidebar-menu__link.active {
    padding-left: 13px;
  }
}

/* アクティブ状態の丸点 */
.sidebar-menu__link.active::before {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* ===== パンくずリスト ===== */
.treatment-fv-breadcrumb__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin-bottom: 2px;
  padding: 0;
}

.treatment-fv-breadcrumb__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  letter-spacing: 0.075em;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-fv-breadcrumb__item {
    font-size: 13px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-fv-breadcrumb__item {
    font-size: 12px;
    letter-spacing: 0.05em;
  }
}
.treatment-fv-breadcrumb__item:not(:last-child) {
  margin-right: 16px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-fv-breadcrumb__item:not(:last-child) {
    margin-right: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-fv-breadcrumb__item:not(:last-child) {
    margin-right: 10px;
  }
}
.treatment-fv-breadcrumb__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #B9B9B9;
  border-right: 1px solid #B9B9B9;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 10px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-fv-breadcrumb__item:not(:last-child)::after {
    width: 7px;
    height: 7px;
    margin-left: 8px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-fv-breadcrumb__item:not(:last-child)::after {
    width: 6px;
    height: 6px;
    margin-left: 6px;
  }
}

.treatment-fv-breadcrumb__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--main-color);
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.treatment-fv-breadcrumb__current {
  color: #4A4A4A;
}

.treatment-fv__link-circle span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: calc(-50% - 1px) -50%;
  width: 5px;
  height: 5px;
  border: 1px solid #fff;
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-fv__link-circle span:after {
    width: 4px;
    height: 4px;
  }
}

@media (any-hover: hover) {
  .treatment-fv__link-circle:hover span {
    background-color: #fff;
    border-color: var(--main-color);
  }
  .treatment-fv__link-circle:hover span:after {
    border-color: var(--main-color);
  }
}
.treatment-fv__link-circle span {
  display: inline-block;
  border-radius: calc(infinity * 1px);
  border: 1px solid var(--main-color);
  background: var(--main-color);
  width: 18px;
  height: 18px;
  position: relative;
  margin-right: 8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-fv__link-circle span {
    width: 16px;
    height: 16px;
    margin-right: 7px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-fv__link-circle span {
    width: 14px;
    height: 14px;
    margin-right: 6px;
  }
}

/* メインコンテンツエリア */
.treatment-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.treatment-section__title-en {
  font-family: var(--font-en);
  font-size: 16px;
  color: #B9B9B9;
  letter-spacing: 0.075em;
  line-height: 1.5;
  margin-bottom: 2px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-section__title-en {
    font-size: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-section__title-en {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

.treatment-section__title-jp {
  font-size: clamp(18px, 1.8791946309vw, 28px);
  font-weight: 500;
  color: var(--main-color);
  line-height: 1.8214285714;
  letter-spacing: 0.075em;
  padding-bottom: 26px;
}
@media only screen and (max-width: 768px) {
  .treatment-section__title-jp {
    padding-bottom: 29px;
    line-height: 1;
  }
}

.treatment-border {
  width: 100%;
  max-width: 990px;
  margin-inline: auto;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(#EBEBEB), color-stop(25%, #EBEBEB), color-stop(50%, #7CC8C3), color-stop(75%, #EBEBEB), to(#EBEBEB));
  background-image: -webkit-linear-gradient(left, #EBEBEB 0%, #EBEBEB 25%, #7CC8C3 50%, #EBEBEB 75%, #EBEBEB 100%);
  background-image: linear-gradient(90deg, #EBEBEB 0%, #EBEBEB 25%, #7CC8C3 50%, #EBEBEB 75%, #EBEBEB 100%);
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-border {
    max-width: 850px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-border {
    max-width: 390px;
  }
}

.treatment-adaptation {
  position: relative;
  margin-bottom: 106px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-adaptation {
    margin-bottom: 90px;
  }
}
@media only screen and (max-width: 1024px) {
  .treatment-adaptation {
    margin-bottom: 70px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-adaptation {
    margin-bottom: 60px;
  }
}

.treatment-adaptation::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100%;
  margin-right: calc(50% - 50vw);
  background-color: #fff;
  border-radius: 20px 0 0 20px;
}
@media only screen and (max-width: 768px) {
  .treatment-adaptation::before {
    border-radius: 10px;
    width: 100%;
  }
}

.treatment-adaptation__container {
  position: relative;
  background-color: #fff;
  border-radius: 20px 0 0 20px;
  padding-top: 4.5833333333vw;
  padding-left: 5.2083333333vw;
  padding-bottom: 5.2083333333vw;
}
@media only screen and (max-width: 768px) {
  .treatment-adaptation__container {
    border-radius: 10px;
    padding: 40px 30px;
  }
}

.treatment-adaptation__hgroup {
  padding-left: 105px;
}
@media only screen and (max-width: 1024px) {
  .treatment-adaptation__hgroup {
    padding-left: 0;
  }
}

.treatment-border {
  width: 100%;
  max-width: 990px;
  margin-inline: auto;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(#EBEBEB), color-stop(25%, #EBEBEB), color-stop(50%, #7CC8C3), color-stop(75%, #EBEBEB), to(#EBEBEB));
  background-image: -webkit-linear-gradient(left, #EBEBEB 0%, #EBEBEB 25%, #7CC8C3 50%, #EBEBEB 75%, #EBEBEB 100%);
  background-image: linear-gradient(90deg, #EBEBEB 0%, #EBEBEB 25%, #7CC8C3 50%, #EBEBEB 75%, #EBEBEB 100%);
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-border {
    max-width: 850px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-border {
    max-width: 390px;
  }
}

.treatment-adaptation__border {
  width: calc(100% + 100px);
  margin-inline: auto;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(#EBEBEB), color-stop(25%, #EBEBEB), color-stop(50%, #7CC8C3), color-stop(75%, #EBEBEB), to(#EBEBEB));
  background-image: -webkit-linear-gradient(left, #EBEBEB 0%, #EBEBEB 25%, #7CC8C3 50%, #EBEBEB 75%, #EBEBEB 100%);
  background-image: linear-gradient(90deg, #EBEBEB 0%, #EBEBEB 25%, #7CC8C3 50%, #EBEBEB 75%, #EBEBEB 100%);
  margin-bottom: 35px;
  max-width: 1100px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-adaptation__border {
    max-width: 850px;
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-adaptation__border {
    max-width: 390px;
  }
}

.treatment-treatment__border {
  margin-bottom: 60px;
  max-width: 1100px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-treatment__border {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-treatment__border {
    margin-bottom: 30px;
    max-width: 390px;
  }
}

.treatment-adaptation__description {
  letter-spacing: 0.075em;
  line-height: 1.875;
  margin-bottom: 68px;
  text-align: center;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-adaptation__description {
    margin-bottom: 60px;
    font-size: 15px;
  }
}

.treatment-adaptation__itembox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 1024px) {
  .treatment-adaptation__itembox {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (601px <= width <= 820px) {
  .treatment-adaptation__itembox {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  .treatment-adaptation__itembox {
    grid-template-columns: 1fr;
    border-radius: 10px;
    gap: 10px;
  }
}

.treatment-adaptation__item {
  border: 1px solid #EBEBEB;
  border-radius: 7px;
  padding: 18px 10px 0px 40px;
  height: 340px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-adaptation__item {
    padding: 12px 8px 60px 35px;
    height: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .treatment-adaptation__item {
    padding: 20px 20px;
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-adaptation__item {
    padding: 6px 8px 37px 24px;
  }
}

.treatment-adaptation__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 22px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-adaptation__content {
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-adaptation__content {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 15px;
  }
}

.treatment-adaptation__title {
  font-size: 20px;
  font-weight: 500;
  color: var(--main-color);
  line-height: 1.2;
  letter-spacing: 0.075em;
  white-space: nowrap;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-adaptation__title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1024px) {
  .treatment-adaptation__title {
    white-space: unset;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-adaptation__title {
    font-size: 16px;
  }
}

.treatment-adaptation__icon {
  width: 91px;
  height: 91px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-adaptation__icon {
    width: 80px;
    height: 80px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-adaptation__icon {
    width: 55px;
    height: 55px;
  }
}
.treatment-adaptation__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.treatment-adaptation__text {
  font-size: 14px;
  line-height: 1.6428571429;
  letter-spacing: 0.05em;
  padding-right: 26px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-adaptation__text {
    font-size: 13px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .treatment-adaptation__text {
    padding-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-adaptation__text {
    font-size: 12px;
    line-height: 1.75;
    padding-right: 10px;
  }
}

.treatment-treatment {
  max-width: 1100px;
  margin-bottom: 110px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-treatment {
    max-width: 950px;
    margin-bottom: 90px;
  }
}
@media only screen and (max-width: 1024px) {
  .treatment-treatment {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-treatment {
    margin-bottom: 56px;
  }
}

.treatment-treatment__itembox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-treatment__itembox {
    gap: 35px;
  }
}
@media only screen and (max-width: 1024px) {
  .treatment-treatment__itembox {
    padding: 0 20px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-treatment__itembox {
    gap: 45px;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .treatment-treatment__itembox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.treatment-treatment__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-treatment__item {
    gap: 45px;
  }
}
@media only screen and (max-width: 1024px) {
  .treatment-treatment__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-treatment__item {
    gap: 35px;
  }
}

.treatment-treatment__item:last-child {
  margin-bottom: 0;
}

.treatment-treatment__image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .treatment-treatment__image {
    max-width: 480px;
  }
}
.treatment-treatment__image img {
  width: 100%;
  height: auto;
}

.treatment-treatment__content {
  max-width: 560px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-treatment__content {
    max-width: 480px;
  }
}
@media only screen and (max-width: 1024px) {
  .treatment-treatment__content {
    max-width: 480px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-treatment__content {
    padding: 0 20px;
  }
}

.treatment-treatment__subtitle {
  font-size: 12px;
  font-family: var(--font-en);
  color: #B9B9B9;
  letter-spacing: 0.025em;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-treatment__subtitle {
    font-size: 11px;
  }
}

.treatment-treatment__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--main-color);
  letter-spacing: 0.075em;
  margin-bottom: 25px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-treatment__title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-treatment__title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.treatment-treatment__text {
  line-height: 1.875;
  letter-spacing: 0.075em;
  color: #4A4A4A;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-treatment__text {
    font-size: 15px;
    line-height: 1.8666666667;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-treatment__text {
    font-size: 14px;
  }
}

.treatment-flow {
  position: relative;
}

.treatment-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100%;
  margin-right: calc(50% - 50vw);
  background-color: #fff;
  border-radius: 20px 0 0 0;
  z-index: -1;
}

.treatment-flow__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 20px 0 0 0;
  padding-top: 4.4791666667vw;
  padding-left: 5.2083333333vw;
  padding-bottom: 4.4791666667vw;
}
@media only screen and (max-width: 768px) {
  .treatment-flow__container {
    border-radius: 10px 10px 0 0;
    padding: 40px 0 5px;
  }
}

.treatment-flow__border {
  width: 100%;
  max-width: 990px;
  margin-bottom: 50px;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(#EBEBEB), color-stop(19%, #EBEBEB), color-stop(43.9%, #7CC8C3), color-stop(68.9%, #EBEBEB), to(#EBEBEB));
  background-image: -webkit-linear-gradient(left, #EBEBEB 0%, #EBEBEB 19%, #7CC8C3 43.9%, #EBEBEB 68.9%, #EBEBEB 100%);
  background-image: linear-gradient(90deg, #EBEBEB 0%, #EBEBEB 19%, #7CC8C3 43.9%, #EBEBEB 68.9%, #EBEBEB 100%);
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-flow__border {
    max-width: 850px;
    margin-bottom: 45px;
    background-image: -webkit-gradient(linear, left top, right top, from(#EBEBEB), color-stop(20%, #EBEBEB), color-stop(44.1%, #7CC8C3), color-stop(68.2%, #EBEBEB), to(#EBEBEB));
    background-image: -webkit-linear-gradient(left, #EBEBEB 0%, #EBEBEB 20%, #7CC8C3 44.1%, #EBEBEB 68.2%, #EBEBEB 100%);
    background-image: linear-gradient(90deg, #EBEBEB 0%, #EBEBEB 20%, #7CC8C3 44.1%, #EBEBEB 68.2%, #EBEBEB 100%);
  }
}
@media only screen and (max-width: 768px) {
  .treatment-flow__border {
    margin-left: 0;
    margin-inline: auto;
    max-width: 330px;
    margin-bottom: 50px;
    background-image: -webkit-gradient(linear, left top, right top, from(#EBEBEB), color-stop(25%, #EBEBEB), color-stop(50%, #7CC8C3), color-stop(75%, #EBEBEB), to(#EBEBEB));
    background-image: -webkit-linear-gradient(left, #EBEBEB 0%, #EBEBEB 25%, #7CC8C3 50%, #EBEBEB 75%, #EBEBEB 100%);
    background-image: linear-gradient(90deg, #EBEBEB 0%, #EBEBEB 25%, #7CC8C3 50%, #EBEBEB 75%, #EBEBEB 100%);
  }
}

.treatment-flow__items {
  max-width: 980px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-flow__items {
    max-width: 950px;
    padding: 0 40px 0 60px;
  }
}
@media only screen and (max-width: 1024px) {
  .treatment-flow__items {
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-flow__items {
    padding: 0 30px;
  }
}

.treatment-flow__item {
  position: relative;
  display: grid;
  grid-template-columns: 149px 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  padding: 25px 0;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-flow__item {
    grid-template-columns: 130px 1fr;
    gap: 25px;
    padding: 20px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .treatment-flow__item {
    gap: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-flow__item {
    grid-template-columns: 89px 1fr;
    gap: 25px;
    padding: 0;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 19px;
  }
}
.treatment-flow__item::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 75px;
  width: 1px;
  height: 100%;
  background: #DBDBDB;
  z-index: 0;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-flow__item::before {
    left: 65px;
  }
}
@media only screen and (max-width: 1024px) {
  .treatment-flow__item::before {
    left: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-flow__item::before {
    left: 45px;
  }
}
.treatment-flow__item:last-child::before {
  display: none;
}

.treatment-flow__item:first-child {
  padding-top: 0;
}

.treatment-flow__item:last-child {
  padding-bottom: 0;
}

.treatment-flow__circle {
  position: relative;
  z-index: 1;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 149px;
  height: 149px;
  border-radius: calc(infinity * 1px);
  background-color: #F7F7F7;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-flow__circle {
    width: 130px;
    height: 130px;
  }
}
@media only screen and (max-width: 1024px) {
  .treatment-flow__circle {
    width: 120px;
    height: 120px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-flow__circle {
    width: 89px;
    height: 89px;
  }
}

.treatment-flow__step-number {
  position: absolute;
  top: 30%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: var(--font-en);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 14px;
  font-weight: 500;
  color: var(--main-color);
  letter-spacing: 0.05em;
  line-height: 1;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-flow__step-number {
    font-size: 13px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-flow__step-number {
    font-size: 12px;
    white-space: nowrap;
  }
}

.treatment-flow__step-icon {
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 69px;
  height: 69px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-flow__step-icon {
    width: 60px;
    height: 60px;
  }
}
.treatment-flow__step-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 768px) {
  .treatment-flow__step-icon {
    width: 49px;
    height: 49px;
  }
}

.treatment-flow__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1024px) {
  .treatment-flow__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-flow__body {
    padding-top: 9px;
  }
}

.treatment-flow__title {
  font-size: 18px;
  font-weight: 500;
  color: var(--main-color);
  letter-spacing: 0.075em;
  width: 175px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 20px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-flow__title {
    font-size: 16px;
    width: 160px;
  }
}
@media only screen and (max-width: 1024px) {
  .treatment-flow__title {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-flow__title {
    font-size: 14px;
    text-align: left;
    margin-bottom: 8px;
  }
}

.treatment-flow__text {
  font-size: 14px;
  line-height: 1.6428571429;
  letter-spacing: 0.05em;
  color: #4A4A4A;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-flow__text {
    font-size: 13px;
    line-height: 1.6923076923;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-flow__text {
    font-size: 12px;
    text-align: left;
    line-height: 1.6666666667;
  }
}

.treatment-faq {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .treatment-faq {
    margin-bottom: 60px;
  }
}

.treatment-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100%;
  margin-right: calc(50% - 50vw);
  background-color: #fff;
  border-radius: 0 0 0 20px;
  z-index: -1;
}

.treatment-faq__container {
  padding-bottom: 130px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-faq__container {
    padding-bottom: 110px;
  }
}
@media only screen and (max-width: 1024px) {
  .treatment-faq__container {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-faq__container {
    border-radius: 0 0 10px 10px;
    padding: 30px 0;
  }
}

.treatment-faq__hgroup {
  padding-left: 110px;
}
@media only screen and (max-width: 1024px) {
  .treatment-faq__hgroup {
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-faq__hgroup {
    padding-left: 0;
  }
}

.treatment-faq__border {
  width: 100%;
  max-width: 990px;
  margin-left: 110px;
  margin-bottom: 53px;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(#EBEBEB), color-stop(20%, #EBEBEB), color-stop(44.4%, #7CC8C3), color-stop(68.8%, #EBEBEB), to(#EBEBEB));
  background-image: -webkit-linear-gradient(left, #EBEBEB 0%, #EBEBEB 20%, #7CC8C3 44.4%, #EBEBEB 68.8%, #EBEBEB 100%);
  background-image: linear-gradient(90deg, #EBEBEB 0%, #EBEBEB 20%, #7CC8C3 44.4%, #EBEBEB 68.8%, #EBEBEB 100%);
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-faq__border {
    max-width: 850px;
    margin-left: 60px;
    margin-bottom: 50px;
    background-image: -webkit-gradient(linear, left top, right top, from(#EBEBEB), color-stop(23%, #EBEBEB), color-stop(47.6%, #7CC8C3), color-stop(72.2%, #EBEBEB), to(#EBEBEB));
    background-image: -webkit-linear-gradient(left, #EBEBEB 0%, #EBEBEB 23%, #7CC8C3 47.6%, #EBEBEB 72.2%, #EBEBEB 100%);
    background-image: linear-gradient(90deg, #EBEBEB 0%, #EBEBEB 23%, #7CC8C3 47.6%, #EBEBEB 72.2%, #EBEBEB 100%);
  }
}
@media only screen and (max-width: 768px) {
  .treatment-faq__border {
    margin-left: 0;
    margin-inline: auto;
    margin-bottom: 30px;
    max-width: 330px;
    background-image: -webkit-gradient(linear, left top, right top, from(#EBEBEB), color-stop(25%, #EBEBEB), color-stop(50%, #7CC8C3), color-stop(75%, #EBEBEB), to(#EBEBEB));
    background-image: -webkit-linear-gradient(left, #EBEBEB 0%, #EBEBEB 25%, #7CC8C3 50%, #EBEBEB 75%, #EBEBEB 100%);
    background-image: linear-gradient(90deg, #EBEBEB 0%, #EBEBEB 25%, #7CC8C3 50%, #EBEBEB 75%, #EBEBEB 100%);
  }
}

.treatment-faq__items {
  max-width: 990px;
  margin-left: 5.7291666667vw;
}
@media only screen and (max-width: 1024px) {
  .treatment-faq__items {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-faq__items {
    padding: 0 20px;
    margin-left: 0;
  }
}

.treatment-faq__item {
  background: #F7F7F7;
  border-radius: 10px;
  margin-bottom: 9px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-faq__item {
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-faq__item {
    border-radius: 5px;
  }
}
.treatment-faq__item.is-opened {
  border-radius: 20px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-faq__item.is-opened {
    border-radius: 15px;
  }
}
.treatment-faq__item.is-opened .treatment-faq__question {
  border-bottom: 1px solid #DBDBDB;
  border-radius: 20px 20px 0 0;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-faq__item.is-opened .treatment-faq__question {
    border-radius: 15px 15px 0 0;
    padding: 20px 35px 20px 20px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-faq__item.is-opened .treatment-faq__question {
    padding: 16px 15px 35px;
  }
}
.treatment-faq__item.is-opened .treatment-faq__question::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
@media only screen and (max-width: 768px) {
  .treatment-faq__item.is-opened .treatment-faq__question::after {
    -webkit-transform: translateX(-50%) rotate(0);
            transform: translateX(-50%) rotate(0);
  }
}
.treatment-faq__item summary {
  list-style: none;
}
.treatment-faq__item summary::-webkit-details-marker {
  display: none;
}

.treatment-faq__answer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 30px 40px 40px 25px;
  gap: 60px;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.6428571429;
  color: #4A4A4A;
  overflow: hidden;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-faq__answer {
    padding: 25px 35px 35px 20px;
    gap: 45px;
    font-size: 13px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-faq__answer {
    padding: 18px 25px 25px;
    font-size: 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.treatment-faq__question {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  padding: 25px 40px 25px 25px;
  cursor: pointer;
  outline: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-faq__question {
    gap: 45px;
    padding: 20px 35px 20px 20px;
  }
}
.treatment-faq__question::before, .treatment-faq__question::after {
  content: "";
  position: absolute;
  right: 40px;
  top: 50%;
  width: 16px;
  height: 1px;
  background-color: #707070;
  -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;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-faq__question::before, .treatment-faq__question::after {
    right: 35px;
    width: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-faq__question::before, .treatment-faq__question::after {
    right: unset;
    left: 50%;
    top: unset;
    bottom: 22px;
    width: 10px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.treatment-faq__question::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-faq__question::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
@media only screen and (max-width: 768px) {
  .treatment-faq__question::after {
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
  }
}
@media only screen and (max-width: 768px) {
  .treatment-faq__question {
    padding: 16px 15px 39px;
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .treatment-faq__question::before, .treatment-faq__question::after {
    right: 20px;
  }
}

.treatment-faq__icon {
  position: relative;
  width: 45px;
  height: 45px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-faq__icon {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-faq__icon {
    width: 30px;
    height: 30px;
  }
}
.treatment-faq__icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.treatment-faq__icon-q {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.treatment-faq__icon-a {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

details[open] .treatment-faq__icon-a {
  opacity: 1;
}

.treatment-faq__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.075em;
  color: #4A4A4A;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-right: 40px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-faq__text {
    font-size: 15px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-faq__text {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    padding-right: 0;
    text-align: center;
  }
}

.treatment-faq__answer-icon {
  position: relative;
  width: 45px;
  height: 45px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-faq__answer-icon {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-faq__answer-icon {
    width: 30px;
    height: 30px;
  }
}
.treatment-faq__answer-icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.treatment-faq__answer-text {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media (hover: hover) {
  .treatment-faq__question:hover {
    opacity: 0.8;
  }
}
/* ===== パンくずリスト ===== */
.treatment-breadcrumb {
  padding: 30px 0;
  background-color: var(--main-color);
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-breadcrumb {
    padding: 17px 0;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-breadcrumb {
    padding: 17px 0;
  }
}

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

.treatment-breadcrumb__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  letter-spacing: 0.075em;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-breadcrumb__item {
    font-size: 13px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-breadcrumb__item {
    font-size: 12px;
    letter-spacing: 0.05em;
  }
}
.treatment-breadcrumb__item:not(:last-child) {
  margin-right: 15px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-breadcrumb__item:not(:last-child) {
    margin-right: 13px;
  }
}
.treatment-breadcrumb__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 15px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .treatment-breadcrumb__item:not(:last-child)::after {
    width: 7px;
    height: 7px;
    margin-left: 13px;
  }
}
@media only screen and (max-width: 768px) {
  .treatment-breadcrumb__item:not(:last-child)::after {
    width: 6px;
    height: 6px;
    margin-left: 10px;
  }
}

.treatment-breadcrumb__link {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.treatment-breadcrumb__current {
  color: #fff;
}

#treatment-treatment,
#treatment-adaptation,
#treatment-flow,
#treatment-faq {
  scroll-margin-top: 180px;
}
@media only screen and (max-width: 768px) {
  #treatment-treatment,
  #treatment-adaptation,
  #treatment-flow,
  #treatment-faq {
    scroll-margin-top: 100px;
  }
}

:root {
  --font-en: "Roboto", sans-serif;
  --font-jp: "Shippori Mincho B1", serif;
  --font-number: "Cormorant", serif;
}

.header.header-lower {
  opacity: 1;
  visibility: visible;
}

.fv__button-area.--lower {
  display: none;
}
@media only screen and (max-width: 768px) {
  .fv__button-area.--lower {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.about-l-root {
  overflow-x: hidden;
}

/* フェードアウト状態のクラス */
.about-sidebar__container.fade-out {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  pointer-events: none;
}

.about-sidebar__container.is-hidden {
  visibility: hidden;
}

/* フェードイン状態のクラス */
.about-sidebar__container.fade-in {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}

/* サイドバー */
.about-sidebar__container {
  position: fixed;
  bottom: 120px;
  z-index: 999;
  width: 270px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  border-radius: 20px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
  margin-left: 11.4583333333vw;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
  will-change: opacity, transform;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .about-sidebar__container {
    margin-left: 4.1666666667vw;
    width: 220px;
    zoom: 0.9;
  }
}
@media (1024px <= width <= 1600px) {
  .about-sidebar__container {
    margin-left: 70px;
    zoom: 0.9;
  }
}
@media only screen and (max-width: 1024px) {
  .about-sidebar__container {
    margin-left: 2.9296875vw;
    width: 220px;
    zoom: 0.8;
  }
}
@media screen and (max-width: 820px) {
  .about-sidebar__container {
    display: none;
  }
}

/* サイドバーのフェードアウトアニメーション */
@keyframes fadeOut {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    visibility: hidden;
  }
}
/* サイドバーのフェードインアニメーション */
@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    visibility: visible;
  }
}
/* 非表示状態 */
.about-sidebar__container {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
  pointer-events: none;
}

.about-sidebar__menu-subtitle {
  padding: 20px 35px 0;
  color: #B9B9B9;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  position: relative;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .about-sidebar__menu-subtitle {
    padding: 18px 25px 0;
    font-size: 13px;
  }
}
@media only screen and (max-width: 1024px) {
  .about-sidebar__menu-subtitle {
    padding: 10px 15px 10px;
  }
}

.about-sidebar__menu-item {
  padding: 15px 30px;
  border-bottom: 1px solid #EBEBEB;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .about-sidebar__menu-item {
    padding: 13px 25px;
  }
}

.about-sidebar__menu-item:first-child {
  padding: 28px 30px 20px 30px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .about-sidebar__menu-item:first-child {
    padding: 25px 25px 18px 25px;
  }
}

.about-sidebar__menu-item:last-child {
  border-bottom: none;
  padding: 20px 30px 30px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .about-sidebar__menu-item:last-child {
    padding: 18px 25px 25px;
  }
}

.about-sidebar__menu-link {
  position: relative;
  padding-left: 0;
  color: #4A4A4A;
  -webkit-transition: color 0.3s ease, padding-left 0.3s ease;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  text-decoration: none;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .about-sidebar__menu-link {
    font-size: 13px;
  }
}

/* 丸点の基本スタイル - 初期状態では非表示 */
.about-sidebar__menu-link::before {
  content: "";
  position: absolute;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--main-color);
  opacity: 0;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .about-sidebar__menu-link::before {
    width: 7px;
    height: 7px;
  }
}

/* アクティブ状態のスタイル */
.about-sidebar__menu-link.active {
  padding-left: 15px;
  color: var(--main-color);
  font-weight: 500;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .about-sidebar__menu-link.active {
    padding-left: 13px;
  }
}

/* アクティブ状態の丸点 */
.about-sidebar__menu-link.active::before {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.about-ellipse {
  -webkit-filter: blur(30px);
          filter: blur(30px);
  position: absolute;
  z-index: -1;
}
.about-ellipse--s {
  width: clamp(243px, 18.8020833333vw, 361px);
  height: clamp(243px, 18.8020833333vw, 361px);
  top: -3.3333333333vw;
  right: -18.2291666667vw;
}
@media screen and (max-width: 820px) {
  .about-ellipse--s {
    width: 243px;
    height: 243px;
    top: -43.2558139535vw;
    right: -28.1395348837vw;
  }
}
.treatment .about-ellipse--s {
  top: 1.5625vw;
  right: 0;
}
@media only screen and (max-width: 1024px) {
  .treatment .about-ellipse--s {
    display: none;
  }
}
.about-ellipse--m {
  width: clamp(193px, 18.8020833333vw, 361px);
  height: clamp(193px, 18.8020833333vw, 361px);
  left: -3.2291666667vw;
  top: 17.34375vw;
}
@media screen and (max-width: 820px) {
  .about-ellipse--m {
    width: 193px;
    height: 193px;
    top: unset;
    left: -12.5581395349vw;
    bottom: -18.6046511628vw;
  }
}
.treatment .about-ellipse--m {
  left: unset;
  bottom: unset;
  top: 4.1666666667vw;
  right: 4.6875vw;
}
@media only screen and (max-width: 1024px) {
  .treatment .about-ellipse--m {
    right: unset;
    top: 160px;
    left: 39.5348837209vw;
  }
}
.about-ellipse--l {
  width: clamp(500px, 52.0833333333vw, 1000px);
  height: clamp(500px, 52.0833333333vw, 1000px);
  top: 11.7708333333vw;
  right: -4.1145833333vw;
}
@media only screen and (max-width: 1024px) {
  .about-ellipse--l {
    display: none;
  }
}

.about-main-bg {
  overflow: visible;
}

.about-main-bg {
  overflow: visible;
}

.about-fv_bg {
  background-color: #F7F7F7;
  padding-right: 13.5416666667vw;
}
@media screen and (max-width: 1600px) {
  .about-fv_bg {
    padding-right: 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .about-fv_bg {
    padding-right: 40px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 820px) {
  .about-fv_bg {
    padding-right: 20px;
    margin-bottom: 40px;
  }
}

.about-fv {
  position: relative;
  background-color: #F7F7F7;
  padding-top: 106px;
}
@media screen and (max-width: 820px) {
  .about-fv {
    padding: 0;
    margin-top: 80px;
  }
}

.about-fv__titlrwrap {
  margin-left: 260px;
}
@media only screen and (max-width: 1024px) {
  .about-fv__titlrwrap {
    margin-left: 40px;
  }
}
@media screen and (max-width: 820px) {
  .about-fv__titlrwrap {
    margin-left: 0;
  }
}

.about-fv__title-en {
  font-size: 14px;
  letter-spacing: 0.075em;
  font-weight: 500;
  color: var(--main-color);
  border: 1px solid;
  border-radius: calc(infinity * 1px);
  padding: 4px 18px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 8px;
}
@media screen and (max-width: 820px) {
  .about-fv__title-en {
    font-size: 12px;
    padding: 5px 15px 4px;
    margin-bottom: 8px;
  }
}

.about-fv__title-jp {
  font-size: clamp(27px, 2.0833333333vw, 40px);
  font-weight: 600;
  color: var(--main-color);
  letter-spacing: 0.075em;
}
@media screen and (max-width: 820px) {
  .about-fv__title-jp {
    padding-bottom: 38px;
  }
}

.about-fv__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 140px 0 135px;
  border-radius: 0 20px 0 0;
}
@media only screen and (max-width: 1024px) {
  .about-fv__content {
    padding: 30px 70px;
    border-radius: 0 10px 0 0;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media screen and (max-width: 820px) {
  .about-fv__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 110px 0 118px 35px;
    border-radius: unset;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    white-space: nowrap;
  }
}

.about-section__title-en {
  font-family: var(--font-en);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 16px;
  color: #B9B9B9;
  letter-spacing: 0.025em;
  line-height: 1.5;
  margin-bottom: 2px;
}
@media screen and (max-width: 820px) {
  .about-section__title-en {
    font-size: 12px;
    line-height: 1;
    margin-bottom: 8px;
  }
}

.about-section__title-jp {
  font-size: 28px;
  font-weight: 500;
  color: var(--main-color);
  line-height: 1.8214285714;
  letter-spacing: 0.075em;
  padding-bottom: 2px;
}
@media screen and (max-width: 820px) {
  .about-section__title-jp {
    font-size: 18px;
    line-height: 1.7777777778;
    padding-bottom: 0;
  }
}

.about-fv-breadcrumb__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0;
}

.about-fv-breadcrumb__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  letter-spacing: 0.075em;
  margin-bottom: 22px;
}
@media only screen and (max-width: 1024px) {
  .about-fv-breadcrumb__item {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 820px) {
  .about-fv-breadcrumb__item {
    font-size: 12px;
    letter-spacing: 0.05em;
    margin-bottom: 0;
  }
}
.about-fv-breadcrumb__item:not(:last-child) {
  margin-right: 11px;
}
.about-fv-breadcrumb__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #B9B9B9;
  border-right: 1px solid #B9B9B9;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 15px;
}
@media screen and (max-width: 820px) {
  .about-fv-breadcrumb__item:not(:last-child)::after {
    width: 5px;
    height: 5px;
    margin-left: 6px;
  }
}

.about-fv-breadcrumb__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--main-color);
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.about-fv-breadcrumb__current {
  color: #4A4A4A;
}

.about-fv__link-circle span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: calc(-50% - 1px) -50%;
  width: 5px;
  height: 5px;
  border: 1px solid #fff;
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .about-fv__link-circle:hover span {
    background-color: #fff;
    border-color: var(--main-color);
  }
  .about-fv__link-circle:hover span:after {
    border-color: var(--main-color);
  }
}
.about-fv__link-circle span {
  display: inline-block;
  border-radius: 50%;
  border: 1px solid var(--main-color);
  background: var(--main-color);
  width: 18px;
  height: 18px;
  position: relative;
  margin-right: 8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 820px) {
  .about-fv__link-circle span {
    width: 14px;
    height: 14px;
    margin-right: 6px;
  }
}

.about-concept {
  background: #fff;
  position: relative;
  border-radius: 0 20px 0 0;
}
@media screen and (max-width: 820px) {
  .about-concept {
    border-radius: 0 10px 0 0;
  }
}

.about-concept__bg {
  background-color: #fff;
  border-radius: 0 20px 0 0;
  padding-bottom: clamp(372px, 22.0833333333vw, 424px);
  padding-top: 145px;
}
@media only screen and (max-width: 1024px) {
  .about-concept__bg {
    padding-bottom: clamp(372px, 63.4765625vw, 650px);
    padding-top: 80px;
    border-radius: 0 15px 0 0;
  }
}
@media (601px <= width <= 820px) {
  .about-concept__bg {
    padding-bottom: clamp(372px, 114.4366197183vw, 550px);
  }
}
@media screen and (max-width: 600px) {
  .about-concept__bg {
    border-radius: 0 10px 0 0;
  }
}

.about-concept__intro {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 9.0625vw;
  margin-left: 21.875vw;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .about-concept__intro {
    margin-left: 100px;
    margin-left: 20.8333333333vw;
  }
}
@media only screen and (max-width: 1024px) {
  .about-concept__intro {
    margin-left: 3.90625vw;
    margin-right: 3.90625vw;
    gap: 20px;
  }
}
@media screen and (max-width: 820px) {
  .about-concept__intro {
    margin: 0 30px 0 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 35px;
  }
}

.about-concept__title {
  font-size: 16px;
  color: var(--main-color);
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.7;
  padding-left: 40px;
  margin-bottom: 34px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .about-concept__title {
    font-size: 14px;
    padding-left: 30px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 820px) {
  .about-concept__title {
    font-size: 13px;
    letter-spacing: 0.1em;
    line-height: 2.5;
    padding-left: 20px;
    margin-bottom: 10px;
    margin-left: 10px;
  }
}
.about-concept__title::before {
  position: absolute;
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: var(--main-color);
  top: 50%;
  left: -3px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 1024px) {
  .about-concept__title::before {
    width: 25px;
  }
}
@media screen and (max-width: 820px) {
  .about-concept__title::before {
    width: 20px;
    left: -10px;
  }
}

.about-concept__lead {
  color: var(--main-color);
  font-size: clamp(21px, 1.5625vw, 30px);
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1.6666666667;
  white-space: nowrap;
}
@media only screen and (max-width: 1024px) {
  .about-concept__lead {
    line-height: 1.8421052632;
  }
}
@media screen and (max-width: 820px) {
  .about-concept__lead {
    line-height: 1.6666666667;
    letter-spacing: 0.075em;
    margin-bottom: 8px;
  }
}

.about-concept__texts {
  max-width: 620px;
  padding-right: 20px;
}
.about-concept__text {
  letter-spacing: 0.075em;
  line-height: 2.1875;
  margin-bottom: 35px;
}
@media screen and (max-width: 1600px) {
  .about-concept__text {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .about-concept__text {
    line-height: 1.875;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 820px) {
  .about-concept__text {
    letter-spacing: 0.05em;
    line-height: 1.8571428571;
    margin-bottom: 26px;
    font-size: 14px;
  }
}
.about-concept__text:last-child {
  margin-bottom: 0;
}

.about-concept__image {
  position: absolute;
}

.about-concept__image--left {
  left: 0;
  bottom: 100px;
  width: 36.875vw;
}
@media only screen and (max-width: 1024px) {
  .about-concept__image--left {
    width: 52.0833333333vw;
  }
}
@media screen and (max-width: 820px) {
  .about-concept__image--left {
    width: 60.4651162791vw;
    bottom: 50px;
  }
}

.about-concept__image--right {
  right: -13.5416666667vw;
  bottom: 0px;
  width: clamp(400px, 37.1140939597vw, 553px);
}
@media only screen and (max-width: 1024px) {
  .about-concept__image--right {
    right: -100px;
  }
}
@media screen and (max-width: 820px) {
  .about-concept__image--right {
    width: 32.5581395349vw;
    right: -20px;
  }
}

.about-concept__image--left img {
  border-radius: 0 20px 20px 0;
}
@media only screen and (max-width: 1024px) {
  .about-concept__image--left img {
    border-radius: 0 15px 15px 0;
  }
}

.about-concept__image--right img {
  border-radius: 20px 0 0 20px;
}
@media only screen and (max-width: 1024px) {
  .about-concept__image--right img {
    border-radius: 15px 0 0 15px;
  }
}

/* Philosophyセクション */
.about-philosophy {
  padding: 40px 37px 0;
  background: #fff;
}
@media screen and (max-width: 820px) {
  .about-philosophy {
    padding: 0 20px;
    margin-bottom: -14px;
  }
}

.about-philosophy__bg {
  position: relative;
  width: 100%;
  margin-inline: auto;
  height: 100%;
  background-color: #F7F7F7;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}
.about-philosophy__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../image/about/philosophy-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media only screen and (max-width: 1024px) {
  .about-philosophy__bg::before {
    background-image: url("../image/about/philosophy-bg_sp.png");
    border-radius: 10px;
  }
}
@media screen and (max-width: 820px) {
  .about-philosophy__bg {
    border-radius: 10px;
  }
}

.about-philosophy__container {
  display: grid;
  grid-template-columns: 370px 1fr;
  width: 100%;
  padding-left: 120px;
  gap: 110px;
  margin: 0;
  padding-top: 150px;
  padding-bottom: 184px;
}
@media (max-width: 1600px) and (min-width: 1441px) {
  .about-philosophy__container {
    grid-template-columns: 320px 1fr;
    padding-left: 0;
    gap: 0;
  }
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .about-philosophy__container {
    grid-template-columns: 280px 1fr;
    padding-left: 0;
    gap: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .about-philosophy__container {
    display: block;
    padding: 111px 0 73px;
  }
}
@media screen and (max-width: 820px) {
  .about-philosophy__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 111px 0 73px;
  }
}

.about-philosophy__content-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .about-philosophy__content-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 106px;
    padding-left: 100px;
  }
}
@media screen and (max-width: 820px) {
  .about-philosophy__content-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 106px;
    padding-left: 0;
  }
}

/* 左側エリア：ロゴと企業理念 */
.about-philosophy__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 820px) {
  .about-philosophy__left {
    padding-right: 63px;
  }
}

.about-philosophy__logo {
  width: 240px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.about-philosophy__logo img {
  width: 100%;
  height: auto;
  display: block;
}
@media only screen and (max-width: 1024px) {
  .about-philosophy__logo {
    width: 180px;
  }
}
@media screen and (max-width: 820px) {
  .about-philosophy__logo {
    padding-right: 0;
    width: 150px;
  }
}

.about-philosophy__heading {
  color: #717171;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.075em;
  padding: 5px 0 5px 25px;
  margin-left: 45px;
  border-left: 1px solid #DBDBDB;
  white-space: nowrap;
}
@media screen and (max-width: 820px) {
  .about-philosophy__heading {
    font-size: 14px;
    padding: 0 0 3px 16px;
    margin-left: 31px;
  }
}

/* 右側エリア：4つの項目 */
.about-philosophy__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and (min-width: 1921px) {
  .about-philosophy__right {
    right: -15.7392686804vw;
  }
}

.about-philosophy__itembox {
  margin-left: 230px;
  margin-bottom: 43px;
}
@media only screen and (max-width: 1024px) {
  .about-philosophy__itembox {
    margin-left: 0;
  }
}

.about-philosophy__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
  gap: 25px;
}
.about-philosophy__item:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 1024px) {
  .about-philosophy__item {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 820px) {
  .about-philosophy__item {
    margin-bottom: 38px;
    gap: 20px;
  }
}

.about-philosophy__icon {
  width: 7.8645833333vw;
}
.about-philosophy__icon img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 1024px) {
  .about-philosophy__icon {
    max-width: 120px;
  }
}
@media screen and (max-width: 820px) {
  .about-philosophy__icon {
    max-width: 100px;
  }
}

.about-philosophy__content {
  letter-spacing: 0.075em;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about-philosophy__label {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  color: #B9B9B9;
  margin-bottom: -7px;
}
@media screen and (max-width: 820px) {
  .about-philosophy__label {
    font-size: 12px;
    margin-bottom: 0;
  }
}

.about-philosophy__sublabel {
  color: #B9B9B9;
  font-weight: 500;
  margin-bottom: 12px;
}
@media screen and (max-width: 820px) {
  .about-philosophy__sublabel {
    font-size: 14px;
    margin-bottom: 3px;
  }
}

.about-philosophy__text {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 820px) {
  .about-philosophy__text {
    font-size: 16px;
  }
}

@media screen and (max-width: 820px) {
  .about-intro {
    margin-bottom: 60px;
  }
}

.about-intro__bg {
  position: relative;
  width: 100vw;
  padding: 0 0 228px;
}
@media only screen and (max-width: 1024px) {
  .about-intro__bg {
    padding: 0 0 228px;
  }
}
@media screen and (max-width: 820px) {
  .about-intro__bg {
    padding: 0 20px;
  }
}

.about-intro__container {
  display: grid;
  grid-template-columns: 370px 1fr;
  width: 100%;
  padding-left: 120px;
  gap: 110px;
  margin: 0;
  padding-top: 150px;
  padding-bottom: 198px;
}
@media (max-width: 1600px) and (min-width: 1441px) {
  .about-intro__container {
    grid-template-columns: 320px 1fr;
    padding-left: 0;
    gap: 0;
  }
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .about-intro__container {
    grid-template-columns: 280px 1fr;
    padding-left: 0;
    gap: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .about-intro__container {
    grid-template-columns: 200px 1fr;
    padding: 6ch 40px;
    gap: 0;
  }
}
@media screen and (max-width: 820px) {
  .about-intro__container {
    grid-template-columns: 1fr;
    padding-left: 0;
    gap: 0;
    padding: 85px 0 30px;
  }
}

/* 左側の空白エリア */
.about-intro__sidebar-space {
  /* サイドバーと同じ幅の空白エリア */
}
@media screen and (max-width: 820px) {
  .about-intro__sidebar-space {
    display: none;
  }
}

/* 右側のコンテンツエリア */
.about-intro__content-area {
  background-color: #fff;
  max-width: 1100px;
  width: 100%;
}
@media (max-width: 1600px) and (min-width: 1441px) {
  .about-intro__content-area {
    padding-left: 40px;
  }
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .about-intro__content-area {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .about-intro__content-area {
    padding: 0 20px;
    max-width: 100%;
  }
}
@media screen and (max-width: 820px) {
  .about-intro__content-area {
    max-width: 100%;
    padding: 0;
  }
}

.about-intro__hgroup {
  margin-bottom: 22px;
}

.about-intro__border {
  margin-bottom: 75px;
}
@media screen and (max-width: 820px) {
  .about-intro__border {
    margin-bottom: 45px;
  }
}

.about-intro__content {
  display: grid;
  grid-template-columns: minmax(auto, 520px) 1fr;
  gap: clamp(40px, 4.1666666667vw, 80px) clamp(100px, 11.4583333333vw, 220px);
  grid-template-areas: "title lead" "text .";
}
@media only screen and (max-width: 1024px) {
  .about-intro__content {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "lead" "text";
    gap: 0;
  }
}
.about-intro__content hgroup {
  grid-area: title;
}
.about-intro__content .about-intro__lead {
  grid-area: lead;
}
.about-intro__content .about-intro__text {
  grid-area: text;
}

.about-intro__lead {
  color: var(--main-color);
  font-size: clamp(17px, 1.3020833333vw, 25px);
  letter-spacing: 0.075em;
  font-weight: 600;
  line-height: 1.84;
  margin-bottom: 32px;
}
@media only screen and (max-width: 1024px) {
  .about-intro__lead {
    line-height: 2.0588235294;
    margin-bottom: -13px;
  }
}
@media (601px <= width <= 820px) {
  .about-intro__lead {
    margin-left: 40px;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 600px) {
  .about-intro__lead {
    margin-left: 0;
  }
}

.about-intro__text {
  letter-spacing: 0.075em;
  line-height: 1.875;
}
@media only screen and (max-width: 1024px) {
  .about-intro__text {
    margin-top: 35px;
  }
}
@media (601px <= width <= 820px) {
  .about-intro__text {
    margin: 0 40px;
  }
}
@media screen and (max-width: 600px) {
  .about-intro__text {
    margin: 35px 0 0;
    line-height: 1.8571428571;
    font-size: 14px;
  }
}

.about-intro__timeline-image {
  position: relative;
  width: 100%;
  z-index: -1;
}
.about-intro__timeline-image img {
  width: 100%;
  height: auto;
}

/* 講義実績セクション */
@media screen and (max-width: 820px) {
  .about-lecture {
    background: #fff;
  }
}

.about-lecture__bg {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -470px;
}
@media only screen and (max-width: 1024px) {
  .about-lecture__bg {
    min-height: clamp(1400px, 150vw, 1800px);
    margin-top: -200px;
  }
}
@media screen and (max-width: 820px) {
  .about-lecture__bg {
    min-height: 1200px;
    margin-top: -93px;
  }
}

.about-lecture__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -o-object-position: top top;
     object-position: top top;
}
.about-lecture__bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-lecture__bg-image picture {
  width: 100%;
  height: 100%;
  display: block;
}

.about-lecture__container {
  display: grid;
  grid-template-columns: 370px 1fr;
  width: 100%;
  padding-left: 120px;
  gap: 110px;
  margin: 0;
  margin-top: 484px;
  margin-bottom: 75px;
}
@media (max-width: 1600px) and (min-width: 1441px) {
  .about-lecture__container {
    grid-template-columns: 320px 1fr;
    padding-left: 0;
    gap: 40px;
  }
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .about-lecture__container {
    grid-template-columns: 320px 1fr;
    padding-left: 0;
    gap: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .about-lecture__container {
    display: block;
    padding-left: 0;
    gap: 0px;
    margin-top: 490px;
    margin-bottom: 0;
  }
}
@media (601px <= width <= 820px) {
  .about-lecture__container {
    margin-top: 270px;
  }
}
@media screen and (max-width: 600px) {
  .about-lecture__container {
    display: unset;
    padding-left: 0;
    margin-top: 143px;
    margin-bottom: 0;
  }
}

/* 左側の空白エリア */
.about-lecture__sidebar-space {
  /* サイドバーと同じ幅の空白エリア */
}
@media screen and (max-width: 820px) {
  .about-lecture__sidebar-space {
    display: none;
  }
}

/* 右側のコンテンツエリア */
.about-lecture__content-area {
  max-width: 1061px;
  width: 100%;
  margin-top: 70px;
}
@media screen and (max-width: 1600px) {
  .about-lecture__content-area {
    overflow: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .about-lecture__content-area {
    max-width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 170px;
    padding-left: 200px;
  }
}
@media screen and (max-width: 820px) {
  .about-lecture__content-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-left: 0;
    margin-top: 140px;
  }
}

.about-lecture__hgroup {
  margin-bottom: 22px;
  padding-left: 35px;
}
@media only screen and (max-width: 1024px) {
  .about-lecture__hgroup {
    padding-left: auto;
  }
}
@media screen and (max-width: 820px) {
  .about-lecture__hgroup {
    padding-left: 0;
    padding-bottom: 22px;
    margin-bottom: 0;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about-lecture__hgroup .about-section__title-en,
  .about-lecture__hgroup .about-section__title-jp {
    text-align: center;
  }
}

.about-lecture__border {
  margin-bottom: 80px;
}
@media screen and (max-width: 820px) {
  .about-lecture__border {
    margin-bottom: 40px;
  }
}

.about-border {
  width: 100%;
  max-width: 990px;
  margin-inline: auto;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(#EBEBEB), color-stop(25%, #EBEBEB), color-stop(50%, #7CC8C3), color-stop(75%, #EBEBEB), to(#EBEBEB));
  background-image: -webkit-linear-gradient(left, #EBEBEB 0%, #EBEBEB 25%, #7CC8C3 50%, #EBEBEB 75%, #EBEBEB 100%);
  background-image: linear-gradient(90deg, #EBEBEB 0%, #EBEBEB 25%, #7CC8C3 50%, #EBEBEB 75%, #EBEBEB 100%);
}
@media screen and (max-width: 820px) {
  .about-border {
    max-width: 390px;
  }
}

@media only screen and (max-width: 1024px) {
  .about-lecture__table-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  .about-lecture__table-wrapper {
    padding: 0 20px;
  }
}

.about-lecture__header {
  display: grid;
  grid-template-columns: 234px 1fr 1fr;
/*  background-color: #F7F7F7;*/
  border-radius: 10px 10px 0 0;
  margin-bottom: -8px;
  min-width: 1060px;
}
@media screen and (max-width: 820px) {
  .about-lecture__header {
    grid-template-columns: 100px 194px 1fr;
    width: 800px;
    min-width: 492px;
    padding-top: 10px;
  }
}
@media screen and (max-width: 500px) {
  .about-lecture__header {
    width: 492px;
  }
}

.about-lecture__header-place,
.about-lecture__header-content {
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.5;
  margin-bottom: 35px;
}
@media screen and (max-width: 820px) {
  .about-lecture__header-place,
  .about-lecture__header-content {
    font-size: 12px;
    margin-bottom: 20px;
  }
}

.about-lecture__year-group {
  display: grid;
  grid-template-columns: 234px 1fr;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  min-width: 1060px;
}
@media only screen and (max-width: 1024px) {
  .about-lecture__year-group {
    width: 800px;
  }
}
@media screen and (max-width: 820px) {
  .about-lecture__year-group {
    border-radius: 5px;
    grid-template-columns: 100px 1fr;
    min-width: 492px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 500px) and (max-width: 1024px) {
  .about-lecture__year-group {
    width: 492px;
  }
}

.about-lecture__year-group:last-child {
  margin-bottom: 0;
}

.about-lecture__year-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 2px solid #EBEBEB;
  border-radius: 10px 0 0 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #FFF;
  color: var(--main-color);
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.075em;
  line-height: 1.5;
  padding: 25px 20px;
  width: 234px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 820px) {
  .about-lecture__year-label {
    border-radius: 5px 0 0 5px;
    padding: 0;
    font-size: 12px;
    line-height: 2;
    width: 100px;
  }
}

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

.about-lecture__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 2px solid #EBEBEB;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 69px;
}
@media screen and (max-width: 820px) {
  .about-lecture__row {
    min-height: 65px;
  }
}

.about-lecture__row:last-child {
  border-bottom: none;
}

.about-lecture__place,
.about-lecture__content {
  padding: 25px 20px 24px 20px;
  text-align: center;
  letter-spacing: 0.075em;
  line-height: 1.7142857143;
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 820px) {
  .about-lecture__place,
  .about-lecture__content {
    line-height: 1.5;
    padding: 15px;
    font-size: 12px;
    width: 194px;
  }
}

.about-lecture__place {
  border-right: 2px solid #EBEBEB;
}

.about-lecture__discription {
  font-size: 12px;
  letter-spacing: 0.075em;
  margin-top: 20px;
  display: none;
}
@media screen and (max-width: 1024px) {
  .about-lecture__discription {
    display: block;
    padding: 0 20px;
    padding-left: 200px;
  }
}
@media screen and (max-width: 820px) {
  .about-lecture__discription {
    padding: 0 20px;
  }
}

/* 代表メッセージセクション */
.about-thought__contentbg {
  background: #F7F7F7;
  position: relative;
  overflow: hidden;
}

.about-thought {
  margin-bottom: 110px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .about-thought {
    margin-bottom: 60px;
  }
}

/* パララックス背景を含むラッパー */
.about-thought__parallax-container {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  width: 100%;
  height: 688px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  overflow: hidden;
  margin: 0;
}
@media screen and (max-width: 820px) {
  .about-thought__parallax-container {
    height: 340px;
    margin-bottom: 39px;
  }
}

.about-thought__parallax-container::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../image/about/thought-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -10;
}
@media screen and (max-width: 820px) {
  .about-thought__parallax-container::after {
    background-image: url("../image/about/thought-bg_sp.jpg");
  }
}

.about-thought__parallax-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.about-thought__blank {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 68.75vw;
  height: 200px;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .about-thought__blank {
    width: 90.6976744186vw;
    height: 32px;
    right: unset;
    left: 50%;
    translate: -50% 0;
  }
}
.about-thought__blank::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px 0 0 0;
  background-color: #F7F7F7;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .about-thought__blank::after {
    height: 40%;
  }
}
@media screen and (max-width: 820px) {
  .about-thought__blank::after {
    width: 90.6976744186vw;
    height: 32px;
    border-radius: 10px 10px 0 0;
  }
}

/* 左下の内角丸コンテナ */
.about-thought__corner-left {
  position: absolute;
  left: -44px;
  top: 100%;
  z-index: 10;
}
@media screen and (max-width: 820px) {
  .about-thought__corner-left {
    left: -30px;
  }
}

/* 左下の内角丸 */
.about-thought__corner-left .about-thought-corner {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  rotate: 90deg;
}
@media screen and (max-width: 820px) {
  .about-thought__corner-left .about-thought-corner {
    width: 10px;
    height: 10px;
  }
}

.about-thought__corner-left .about-thought-corner::before {
  display: block;
  width: 200%;
  height: 200%;
  position: absolute;
  top: 16px;
  left: -2px;
  overflow: hidden;
  content: "";
  background: transparent;
  border-radius: 50%;
  -webkit-box-shadow: 20px -20px 0 0 #F7F7F7;
          box-shadow: 20px -20px 0 0 #F7F7F7;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 820px) {
  .about-thought__corner-left .about-thought-corner::before {
    -webkit-box-shadow: 10px -10px 0 0 #F7F7F7;
            box-shadow: 10px -10px 0 0 #F7F7F7;
    top: 0;
    left: 0;
  }
}

/* 左上の内角丸コンテナ */
.trial-voices__corner-left {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}

@media screen and (max-width: 820px) {
  .about-thought__corner-right {
    position: absolute;
    right: -30px;
    bottom: 0;
    z-index: 10;
  }
}
/* 右下の内角丸 */
@media screen and (max-width: 820px) {
  .about-thought__corner-right .about-thought-corner {
    display: block;
    position: absolute;
    right: 30px;
    top: 0;
    -webkit-transform: translate(100%, -100%);
            transform: translate(100%, -100%);
    width: 10px;
    height: 10px;
    right: 30px;
    top: 0;
  }
}

@media screen and (max-width: 820px) {
  .about-thought__corner-right .about-thought-corner::before {
    display: block;
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    content: "";
    background: transparent;
    border-radius: 50%;
    -webkit-box-shadow: 20px 20px 0 0 #F7F7F7;
            box-shadow: 20px 20px 0 0 #F7F7F7;
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
    -webkit-box-shadow: -10px 10px 0 0 #F7F7F7;
            box-shadow: -10px 10px 0 0 #F7F7F7;
  }
}

.about-thought__fv-content {
  position: absolute;
  top: 38%;
  left: 63%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  width: auto;
}
@media screen and (max-width: 820px) {
  .about-thought__fv-content {
    top: 46%;
    left: 50%;
  }
}
.about-thought__fv-content .about-section__title-en {
  color: #fff;
  font-size: 18px;
}
@media screen and (max-width: 820px) {
  .about-thought__fv-content .about-section__title-en {
    font-size: 14px;
    margin-bottom: 4px;
  }
}
.about-thought__fv-content .about-section__title-jp {
  color: #fff;
  font-size: 33px;
  font-weight: 600;
}
@media screen and (max-width: 820px) {
  .about-thought__fv-content .about-section__title-jp {
    font-size: 22px;
  }
}

.about-thought__container {
  position: relative;
  display: grid;
  grid-template-columns: 370px 1fr;
  width: 100%;
  padding-left: 120px;
  gap: 110px;
  margin: 50px 0 0;
}
@media (max-width: 1600px) and (min-width: 1441px) {
  .about-thought__container {
    grid-template-columns: 320px 1fr;
    padding-left: 0;
    gap: 0;
  }
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .about-thought__container {
    grid-template-columns: 280px 1fr;
    padding-left: 0;
    gap: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .about-thought__container {
    grid-template-columns: 200px 1fr;
    padding: 0 20px;
    gap: 0;
  }
}
@media screen and (max-width: 820px) {
  .about-thought__container {
    grid-template-columns: 1fr;
    padding-left: 0;
    gap: 0;
    margin: 38px 0 0;
    padding: 0 20px;
  }
}

.about-thought__container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  top: -52px;
  left: 0;
  z-index: 1;
  background-color: #F7F7F7;
}
@media screen and (max-width: 820px) {
  .about-thought__container::before {
    top: -40px;
  }
}

/* 左側の空白エリア */
.about-thought__sidebar-space {
  /* サイドバーと同じ幅の空白エリア */
}
@media screen and (max-width: 820px) {
  .about-thought__sidebar-space {
    display: none;
  }
}

/* 右側のコンテンツエリア */
.about-thought__content-area {
  max-width: 1000px;
  margin-top: -100px;
  margin-left: 100px;
}
@media (max-width: 1600px) and (min-width: 1441px) {
  .about-thought__content-area {
    margin-left: 50px;
  }
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .about-thought__content-area {
    margin-left: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .about-thought__content-area {
    margin-left: 0;
  }
}
@media screen and (max-width: 820px) {
  .about-thought__content-area {
    margin-top: 0;
    margin-left: 0;
  }
}

.about-thought__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #DBDBDB;
}
@media screen and (max-width: 820px) {
  .about-thought__header {
    margin-bottom: 30px;
    padding-bottom: 26px;
  }
}

.about-thought__subtitle {
  font-size: 14px;
  letter-spacing: 0.075em;
  font-weight: 500;
  color: var(--main-color);
  border: 1px solid;
  border-radius: calc(infinity * 1px);
  padding: 4px 18px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 13px;
  position: relative;
}
@media screen and (max-width: 820px) {
  .about-thought__subtitle {
    font-size: 12px;
    margin-bottom: 10px;
    padding: 4px 12px;
  }
}

.about-thought__title {
  color: var(--main-color);
  font-size: clamp(17px, 1.3020833333vw, 25px);
  font-weight: 600;
  letter-spacing: 0.075em;
  margin-bottom: 10px;
}
@media screen and (max-width: 820px) {
  .about-thought__title {
    margin-bottom: 7px;
  }
}

.about-thought__author {
  letter-spacing: 0.075em;
  line-height: 1.5;
  color: #4A4A4A;
}
@media screen and (max-width: 820px) {
  .about-thought__author {
    font-size: 13px;
    letter-spacing: 0.05em;
    line-height: 1.8461538462;
  }
}

.about-thought__profile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
}
@media only screen and (max-width: 1024px) {
  .about-thought__profile {
    gap: 30px;
  }
}
@media screen and (max-width: 820px) {
  .about-thought__profile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 27px;
  }
}

.about-thought__image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 300px;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
}
@media only screen and (max-width: 1024px) {
  .about-thought__image {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    text-align: center;
  }
}
@media screen and (max-width: 820px) {
  .about-thought__image {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    text-align: center;
  }
}
.about-thought__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
@media screen and (max-width: 820px) {
  .about-thought__image img {
    border-radius: 5px;
  }
}

.about-thought__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about-thought__text {
  line-height: 1.875;
  letter-spacing: 0.075em;
  color: #4A4A4A;
  margin-bottom: 35px;
}
@media screen and (max-width: 820px) {
  .about-thought__text {
    font-size: 14px;
    line-height: 1.8571428571;
    margin-bottom: 24px;
  }
}
.about-thought__text:nth-child(2) {
  margin-bottom: 30px;
}
@media screen and (max-width: 820px) {
  .about-thought__text:nth-child(2) {
    margin-bottom: 25px;
  }
}
.about-thought__text:nth-child(3) {
  margin-bottom: 30px;
}
@media screen and (max-width: 820px) {
  .about-thought__text:nth-child(3) {
    margin-bottom: 26px;
  }
}
.about-thought__text:nth-child(4) {
  margin-bottom: 30px;
}
@media screen and (max-width: 820px) {
  .about-thought__text:nth-child(4) {
    margin-bottom: 26px;
  }
}
.about-thought__text:nth-child(5) {
  margin-bottom: 30px;
}
@media screen and (max-width: 820px) {
  .about-thought__text:nth-child(5) {
    margin-bottom: 26px;
  }
}
.about-thought__text:last-child {
  margin-bottom: 0;
}

.about-thought__emphasis {
  color: var(--main-color);
  font-weight: 500;
}

/* 会社概要セクション */
.about-company__container {
  display: grid;
  grid-template-columns: 370px 1fr;
  width: 100%;
  padding-left: 120px;
  gap: 110px;
  margin: 60px 0 0;
}
@media (max-width: 1600px) and (min-width: 1441px) {
  .about-company__container {
    grid-template-columns: 320px 1fr;
    padding-left: 0;
    gap: 0;
  }
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .about-company__container {
    grid-template-columns: 280px 1fr;
    padding-left: 0;
    gap: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .about-company__container {
    grid-template-columns: 220px 1fr;
    padding-left: 0;
    gap: 0;
  }
}
@media screen and (max-width: 820px) {
  .about-company__container {
    grid-template-columns: 1fr;
    padding-left: 0;
    gap: 0;
    margin: 30px 0 0;
    padding: 0 20px;
  }
}

/* 左側の空白エリア */
.about-company__sidebar-space {
  /* サイドバーと同じ幅の空白エリア */
}
@media screen and (max-width: 820px) {
  .about-company__sidebar-space {
    display: none;
  }
}

/* 右側のコンテンツエリア */
.about-company__content-area {
  border-radius: 20px 0 0 0;
  background-color: #fff;
  padding: 94px 100px 124px 100px;
}
@media (max-width: 1600px) and (min-width: 1441px) {
  .about-company__content-area {
    padding: 100px 100px 130px 100px;
  }
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .about-company__content-area {
    padding: 100px 100px 130px 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .about-company__content-area {
    padding: 60px 30px 80px 30px;
    border-radius: 15px 0 0 0;
  }
}
@media screen and (max-width: 820px) {
  .about-company__content-area {
    border-radius: 10px 10px 0 0;
    padding: 40px 30px 60px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.about-company__hgroup {
  padding-right: 115px;
  margin-bottom: 22px;
}
@media only screen and (max-width: 1024px) {
  .about-company__hgroup {
    padding-right: 0;
  }
}
@media screen and (max-width: 820px) {
  .about-company__hgroup {
    margin-bottom: 20px;
  }
}

.about-company__border {
  margin-bottom: 70px;
}
@media screen and (max-width: 820px) {
  .about-company__border {
    margin-bottom: 0;
  }
}

.about-company__info {
  max-width: 1000px;
}
@media only screen and (max-width: 1024px) {
  .about-company__info {
    padding: 0;
  }
}
@media screen and (max-width: 820px) {
  .about-company__info {
    padding: 0;
    border-radius: 10px;
  }
}

.about-company__dl {
  width: 100%;
}

.about-company__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 1px solid #EBEBEB;
  padding: 29px 0;
  gap: 70px;
}
@media only screen and (max-width: 1024px) {
  .about-company__row {
    gap: 20px;
  }
}
@media screen and (max-width: 820px) {
  .about-company__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 19px 0;
    gap: 0;
  }
}
.about-company__row:first-child {
  padding-top: 0;
}
@media screen and (max-width: 820px) {
  .about-company__row:first-child {
    padding-top: 40px;
  }
}

.about-company__dt {
  width: 220px;
  font-weight: 500;
  color: var(--main-color);
  letter-spacing: 0.075em;
  line-height: 1.5;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media only screen and (max-width: 1024px) {
  .about-company__dt {
    width: 150px;
  }
}
@media screen and (max-width: 820px) {
  .about-company__dt {
    font-size: 12px;
    width: 100%;
    margin-bottom: 8px;
    line-height: 1;
  }
}

.about-company__dd {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  letter-spacing: 0.075em;
  line-height: 1.6;
}
@media screen and (max-width: 820px) {
  .about-company__dd {
    font-size: 14px;
    width: 100%;
    line-height: 1.7142857143;
  }
}

.about-company__link {
  display: inline-block;
  position: relative;
}
.about-company__link:before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--main-color);
  bottom: 0px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

@media (any-hover: hover) {
  .about-company__link:hover:before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}
.about-company__contact {
  color: var(--main-color);
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.about-company__contact:hover {
  opacity: 0.8;
}

.about-company__name {
  letter-spacing: 0.075em;
  line-height: 1.5;
}
@media screen and (max-width: 820px) {
  .about-company__name {
    line-height: 1.7142857143;
  }
}

.about-company__name-en {
  font-size: 14px;
  color: #B9B9B9;
  font-family: var(--font-en);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 820px) {
  .about-company__name-en {
    font-size: 12px;
  }
}

/* パンくずリスト（フッター上部） */
.about-breadcrumb {
  padding: 30px 0;
  background-color: var(--main-color);
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 820px) {
  .about-breadcrumb {
    padding: 17px 0;
  }
}

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

.about-breadcrumb__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 820px) {
  .about-breadcrumb__item {
    font-size: 12px;
    letter-spacing: 0.05em;
  }
}
.about-breadcrumb__item:not(:last-child) {
  margin-right: 15px;
}
.about-breadcrumb__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 15px;
}
@media screen and (max-width: 820px) {
  .about-breadcrumb__item:not(:last-child)::after {
    width: 6px;
    height: 6px;
    margin-left: 10px;
  }
}

.about-breadcrumb__link {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.about-breadcrumb__current {
  color: #fff;
}

:root {
  --border-line-width: 600px;
}

.about-section__title-jp::after {
  width: var(--border-line-width);
}

@media screen and (max-width: 820px) {
  :root {
    --border-line-width: 300px;
  }
}
/* iPad Pro/Mini 背景画像調整 - 最適化版 */
.about-lecture__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: transparent;
}
.about-lecture__bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
  .about-lecture__bg-image img {
    -o-object-position: center 0%;
       object-position: center 0%;
  }
}
.about-lecture__bg-image picture {
  width: 100%;
  height: 100%;
  display: block;
}

.about-lecture__bg {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -470px;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
  .about-lecture__bg {
    min-height: 100vh;
    margin-top: -400px;
  }
}
@media only screen and (max-width: 1024px) {
  .about-lecture__bg {
    min-height: clamp(1400px, 150vw, 1800px);
    margin-top: -200px;
  }
}
@media screen and (max-width: 820px) {
  .about-lecture__bg {
    min-height: 1200px;
    margin-top: -93px;
    padding-bottom: 80px;
  }
}

#about-company {
  scroll-margin-top: 100px;
}