@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;
  }
}
.js-fade-up {
  opacity: 0;
  -webkit-filter: blur(6px);
          filter: blur(6px);
  -webkit-transform: translateY(18px);
          transform: translateY(18px);
  -webkit-transition: opacity 0.8s, visibility 0.8s, -webkit-transform 0.8s, -webkit-filter 0.8s;
  transition: opacity 0.8s, visibility 0.8s, -webkit-transform 0.8s, -webkit-filter 0.8s;
  transition: opacity 0.8s, visibility 0.8s, transform 0.8s, filter 0.8s;
  transition: opacity 0.8s, visibility 0.8s, transform 0.8s, filter 0.8s, -webkit-transform 0.8s, -webkit-filter 0.8s;
}
.js-fade-up[data-delay] {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media only screen and (max-width: 768px) {
  .js-fade-up[data-delay] {
    -webkit-transition-delay: unset;
            transition-delay: unset;
  }
}
.js-fade-up[data-delay=second] {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
@media only screen and (max-width: 768px) {
  .js-fade-up[data-delay=second] {
    -webkit-transition-delay: unset;
            transition-delay: unset;
  }
}
.js-fade-up[data-delay=third] {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
@media only screen and (max-width: 768px) {
  .js-fade-up[data-delay=third] {
    -webkit-transition-delay: unset;
            transition-delay: unset;
  }
}
.js-fade-up[data-delay=fourth] {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
@media only screen and (max-width: 768px) {
  .js-fade-up[data-delay=fourth] {
    -webkit-transition-delay: unset;
            transition-delay: unset;
  }
}

.js-fade-left {
  opacity: 0;
  -webkit-transform: translateX(-15px);
          transform: translateX(-15px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}

.js-fade-right {
  opacity: 0;
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}

.js-fade-load {
  opacity: 0;
  -webkit-transition: opacity 0.8s, visibility 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, visibility 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, visibility 0.8s, transform 0.8s;
  transition: opacity 0.8s, visibility 0.8s, transform 0.8s, -webkit-transform 0.8s;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

.scroll {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transform: translate(0);
          transform: translate(0);
}

.load {
  -webkit-animation-name: imageBlur;
          animation-name: imageBlur;
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(6px);
            filter: blur(6px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(6px);
            filter: blur(6px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
.scroll-indicator {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  color: #fff;
  font-size: clamp(12px, 1.4vw, 16px);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.scroll-indicator__circle {
  position: relative;
  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;
  width: 80px;
  height: 80px;
  border: 2px solid currentColor;
  border-radius: 50%;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .scroll-indicator__circle {
    width: 60px;
    height: 60px;
  }
}
.scroll-indicator__icon {
  width: 10px;
  height: auto;
  -webkit-animation: arrowMove 2.4s ease-out infinite;
          animation: arrowMove 2.4s ease-out infinite;
}
@media only screen and (max-width: 768px) {
  .scroll-indicator__icon {
    width: 7.5px;
  }
}
.scroll-indicator__text {
  white-space: nowrap;
  font-size: 14px;
  font-family: var(--en);
  letter-spacing: 0.025em;
}
@media only screen and (max-width: 768px) {
  .scroll-indicator__text {
    font-size: 12px;
  }
}

@-webkit-keyframes arrowMove {
  0% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  60% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
    opacity: 0;
  }
}

@keyframes arrowMove {
  0% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  60% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
    opacity: 0;
  }
}
.splide01 .splide__slide img {
  border-radius: 5px;
}
.splide01 .splide__track {
  overflow: visible;
}
.splide01 .splide__slide {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.splide01 .splide__slide:not(.is-visible) {
  pointer-events: none;
}

.splide02 .splide__slide {
  will-change: transform, z-index;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.feature {
  margin-top: 80px;
}
@media only screen and (max-width: 768px) {
  .feature {
    margin-top: -20px;
  }
}

.feature__slider {
  height: 100vh;
  position: relative;
}

.swiper-scroll {
  position: relative;
  top: 30px;
  left: 0;
  width: 100%;
  height: calc(100vh - 30px);
  overflow: hidden;
  z-index: 5;
}
@media only screen and (max-width: 768px) {
  .swiper-scroll {
    top: 100px;
    height: calc(100vh - 168px);
  }
}

.swiper-slide {
  height: 100%;
  position: relative;
}

.swiper-slide img {
  margin-inline: auto;
  width: calc(100% - 60px);
  height: calc(100% - 30px);
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
@media only screen and (max-width: 1024px) {
  .swiper-slide img {
    width: calc(100% - 40px);
  }
}

.feature-indicator__list {
  position: absolute;
  bottom: 29px;
  right: 29px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 10;
  background: #fff;
  border-radius: 20px 0 0 0;
}
@media only screen and (max-width: 1024px) {
  .feature-indicator__list {
    border-radius: 15px 0 0 0;
    right: 19px;
    padding-block: 20px;
  }
}

.feature-indicator__item {
  font-weight: bold;
  cursor: pointer;
  color: #B9B9B9;
  line-height: 1.5;
  padding: 40px 55px;
}
@media (1025px <= width <= 1600px) {
  .feature-indicator__item {
    padding: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .feature-indicator__item {
    font-size: 15px;
    padding: 0 28px;
  }
}
@media only screen and (max-width: 768px) {
  .feature-indicator__item .corner {
    display: block;
  }
}
.feature-indicator__item .corner:before {
  top: -1px;
}
@media only screen and (max-width: 1024px) {
  .feature-indicator__item .corner:before {
    top: 0;
  }
}
.feature-indicator__item .corner--right {
  top: -19px;
  right: 21px;
}
.feature-indicator__item:not(:first-child) {
  border-left: 1px solid #EBEBEB;
}

.feature-indicator__item.is-active {
  color: var(--main-color);
}

.feature-indicator__item .number {
  font-size: 14px;
  letter-spacing: 0.025em;
  font-family: var(--en);
}

.feature-indicator__item-text {
  font-weight: 600;
}
@media only screen and (max-width: 1024px) {
  .feature-indicator__item-text {
    display: none;
  }
}

.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;
}

.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-width: 1024px) and (max-height: 700px) {
  .feature__intro {
    top: calc(50% + 20px);
  }
}

.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;
  }
}

@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: 20px;
    flex-wrap: wrap;

}
@media only screen and (max-width: 768px) {
  .footer__menu-horizontal {
    gap: 40px;
  }
}

.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;
  }
}

/* 1. 丸い矢印アイコンのデザイン */
.treatment-adaptation__arrow {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #48b6af; /* 背景色：緑 */
  border: 1px solid #48b6af; /* 枠線 */
  border-radius: 50%; /* 正円にする */
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

/* タイトルと矢印のレイアウト（横並び・間隔調整） */
.treatment-adaptation__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px; /* タイトルと矢印の間隔 */
}

/* 矢印アイコン（円形の背景あり） */
.treatment-adaptation__arrow {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #48b6af; /* 通常時：背景緑 */
  border: 1px solid #48b6af; /* 通常時：枠線緑 */
  border-radius: 50%;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  /* アニメーション設定 */
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* 矢印のシェイプ（円の中の矢印） */
.treatment-adaptation__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 42%;
  width: 5px;
  height: 5px;
  /* 通常時：矢印白 */
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  margin-top: -0.5px;
  /* アニメーション設定 */
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* テキストのアニメーション設定 */
.treatment__item-title {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

/* ▼▼▼ ホバー時の設定（色反転） ▼▼▼ */

/* 矢印の背景を白に */
.treatment__item a:hover .treatment-adaptation__arrow {
  background-color: #ffffff;
}

/* 矢印の中身を緑に */
.treatment__item a:hover .treatment-adaptation__arrow::after {
  border-top-color: #48b6af;
  border-right-color: #48b6af;
}

/* タイトル文字を緑に */
.treatment__item a:hover .treatment__item-title {
  color: #48b6af;
}

/* リンク内のレイアウト調整（画像を右寄せ） */
.treatment__link {
  display: -webkit-box;
  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;
  width: 100%;
}

/* 4. ホバー時のインタラクション */
.treatment__item:hover {
  opacity: 0.5; /* ホバー時に透明度を下げる */
}