@charset "UTF-8";
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

#root, #__next {
  isolation: isolate;
}

/*--------------------------------------------------------------------------
    Global Variables
---------------------------------------------------------------------------*/
/*＊-------------------------------------------------------
サイト全体の基本設定
------------------------------------------------------- **/
html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100dvh;
  font-family: "Noto Sans JP", sans-serif;
  color: #383838;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  position: relative;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
    line-height: 200%;
    letter-spacing: 0.01em;
  }
}
body.is-fixed {
  overflow: hidden;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: initial;
}

p {
  text-wrap: initial;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: initial;
}

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

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

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

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

button {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s;
  color: #383838;
}
button:hover {
  opacity: 0.7;
}

input[type=text] {
  padding: 0;
  outline: none;
  border: none;
  border-radius: 0;
  background: none;
}

textarea {
  padding: 0;
  outline: none;
  border: 0;
  background: transparent;
  resize: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.l-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  margin: 0 auto;
  z-index: 999;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(2px);
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 10px 16px;
}
@media (min-width: 1200px) {
  .l-header__inner {
    height: 76px;
    padding: 10px 24px;
  }
}
.l-header__logo {
  font-size: 16px;
  width: min(240px, 48vw);
  transition: opacity 0.3s ease-out;
}
@media (min-width: 1200px) {
  .l-header__logo {
    width: min(240px, 16.6666666667vw);
  }
}
.l-header__logo:hover {
  opacity: 0.7;
}
.l-header__nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.l-footer {
  position: sticky;
  top: 100%;
  background-color: #F0FBFF;
  padding-block: 24px 64px;
}
@media (min-width: 768px) {
  .l-footer {
    padding-block: 48px 20px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .l-footer {
    padding-bottom: 20px;
  }
}
.l-footer__inner {
  width: min(90svw, 1100px);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .l-footer__inner {
    display: flex;
    flex-direction: column-reverse;
  }
}
.l-footer__logo {
  width: 224px;
}
.l-footer__nav {
  border-bottom: 1px solid #D0DFE3;
  padding-block: 20px;
}
@media (min-width: 768px) {
  .l-footer__nav {
    border: none;
    border-top: 1px solid #D0DFE3;
    padding-block: 20px;
  }
}
.l-footer__info {
  display: grid;
  grid-auto-flow: row;
  gap: 24px;
}
@media (min-width: 768px) {
  .l-footer__info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 40px;
    max-width: 1000px;
    width: 100%;
    margin-inline: auto;
  }
}
@media (min-width: 768px) {
  .l-footer__info-basic {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .l-footer__info-reserve {
    width: 42%;
  }
}
.l-footer__access-text {
  margin-block: 20px;
}
.l-footer__access-map {
  aspect-ratio: 337/287;
  border-radius: 4px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .l-footer__access-map {
    aspect-ratio: 450/287;
  }
}
.l-footer__access-map iframe {
  width: 100%;
  height: 100%;
}
.l-footer__name {
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}
.l-footer__address {
  font-size: 13px;
  line-height: 175%;
  letter-spacing: 0.02em;
}
.l-footer__schedule.c-schedule {
  margin-bottom: 24px;
}
.l-footer__schedule.c-schedule th {
  font-weight: 400;
}
.l-footer__copyright {
  text-align: center;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .l-footer__copyright {
    margin-top: 0;
  }
}
.l-footer__copyright-text {
  font-size: 11px;
  color: #92A9B0;
  font-family: "Plus Jakarta Sans", sans-serif;
}
@media (min-width: 768px) {
  .l-footer__copyright-text {
    font-size: 12px;
  }
}

.l-main {
  margin-top: 70px;
}
@media (min-width: 1200px) {
  .l-main {
    margin-top: 76px;
  }
}

/*--------------------------------------------------------------------------
.l-sec
---------------------------------------------------------------------------*/
.l-sec__inner {
  width: min(90vw, 1000px);
  margin-inline: auto;
}

.l-accordion-list {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
@media (min-width: 768px) {
  .l-accordion-list {
    row-gap: 24px;
  }
}

/*--------------------------------------------------------------------------
TREATMENT MENU 診療内容メニュー
---------------------------------------------------------------------------*/
.l-treatment-menu {
  background-color: #fff;
  padding-block: 32px;
  border-radius: 0 0 16px 0;
}
@media (min-width: 768px) {
  .l-treatment-menu {
    padding-block: 48px 64px;
    border-radius: 0 0 26px 0;
  }
}
.l-treatment-menu__inner {
  width: min(80svw, 1000px);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .l-treatment-menu__inner {
    width: min(90svw, 1000px);
  }
}
.l-treatment-menu__title {
  margin-bottom: 24px;
}
.l-treatment-menu__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  row-gap: 12px;
}
@media (min-width: 768px) {
  .l-treatment-menu__list {
    column-gap: min(1.7vw, 26px);
    row-gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }
}

/*--------------------------------------------------------------------------

---------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------
ボタン
---------------------------------------------------------------------------*/
.c-button {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 16px;
  padding-bottom: 11px;
  border-bottom: 1px solid #9FD7E6;
  width: fit-content;
  color: #3E7895;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.3s;
}
@media (min-width: 768px) {
  .c-button {
    font-size: 16px;
  }
}
.c-button__arrow {
  position: relative;
  width: 42px;
  height: 42px;
  background: #8FD3F5;
  border-radius: 50%;
  display: block;
  background: url(/assets/img/common/arrow-white.svg), radial-gradient(50% 50% at 50% 50%, #8FD3F5 80%, #DDF2FC 81%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%, 100%;
  z-index: 1;
  border-radius: 50%;
}
.c-button__arrow::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
  border: 1px solid #DDF2FC;
}
.c-button:hover {
  color: #74B5D5;
}
.c-button:hover .c-button__arrow::before {
  animation: ripple 1.2s linear infinite;
}
.c-button--white {
  color: #fff;
  border-color: #fff;
}
.c-button--white:hover {
  color: #8FD3F5;
}
.c-button--white:hover .c-button__arrow::before {
  animation: ripple 1.2s linear infinite;
}
.c-button--center {
  margin-inline: auto;
}

@keyframes ripple {
  0% {
    scale: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    scale: 2;
    opacity: 0;
  }
}
/*--------------------------------------------------------------------------

---------------------------------------------------------------------------*/
.c-cta-btn {
  container-type: inline-size;
}
.c-cta-btn__link {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 0.6fr 2.1fr;
  padding-block: 8px;
  padding-left: 5.9347181009cqw;
  padding-right: 10.6824925816cqw;
  border-radius: 8px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.08);
  z-index: 1;
}
.c-cta-btn__link::before, .c-cta-btn__link::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: linear-gradient(0deg, #8FD3F5 0%, #6EC3ED 100%);
  z-index: -1;
  transition: opacity 0.3s ease-out;
}
.c-cta-btn__link::after {
  background: #9DDDFD;
  z-index: -2;
}
.c-cta-btn__link:hover::before {
  opacity: 0;
}
.c-cta-btn__text {
  text-align: center;
}
.c-cta-btn__text-sm, .c-cta-btn__text-lg {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  line-height: 140%;
  color: #fff;
}
.c-cta-btn__text-sm {
  font-size: 4.1543026706cqw;
  font-weight: 500;
}
.c-cta-btn__text-lg {
  font-size: 6.824925816cqw;
  font-weight: 700;
}
.c-cta-btn__note {
  font-size: 13px;
  color: #737373;
  line-height: 1.4;
  margin-top: 4px;
}
.c-cta-btn--md {
  grid-template-columns: 0.5fr 1.8fr;
}
.c-cta-btn--md .c-cta-btn__text-sm {
  font-size: 3.8575667656cqw;
}
.c-cta-btn--md .c-cta-btn__text-lg {
  font-size: max(20px, 5.9347181009cqw);
}

/*--------------------------------------------------------------------------
.c-fixed-btns
---------------------------------------------------------------------------*/
.c-fixed-btns {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 990;
}
@media (min-width: 1200px) {
  .c-fixed-btns {
    display: none;
  }
}
.c-fixed-btns__btn {
  padding-block: 12px;
  padding-left: 12px;
  padding-right: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 12px;
  background-image: linear-gradient(0deg, #92A9B0 0%, #74888F 100%);
  color: #fff;
  text-align: center;
  font-size: min(4.8vw, 16px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.01em;
}
.c-fixed-btns__btn--line {
  border-right: 2px solid #fff;
}
.c-fixed-btns__icon {
  width: min(8.5vw, 32px);
  height: min(8.5vw, 32px);
}

body:has(.c-drawer.is-open) .c-fixed-btns {
  display: none;
}

.c-rounded-btn {
  border-radius: 32px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  background-color: #5FBDD5;
  padding: 12px;
  color: #FFF;
  text-align: center;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  transition: background-color 0.3s ease-out;
}
@media (min-width: 768px) {
  .c-rounded-btn {
    padding: 16px;
  }
}
.c-rounded-btn:hover {
  opacity: 1;
  background-color: #7FCADD;
}

/* --------------------------------------------------------------------------
Component: PC Nav 
-------------------------------------------------------------------------- */
.c-nav {
  display: flex;
  gap: 16px;
}
.c-nav--pc {
  display: none;
}
@media (min-width: 1200px) {
  .c-nav--pc {
    display: flex;
    gap: min(16px, 1vw);
  }
}
.c-nav--footer {
  row-gap: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .c-nav--footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 32px;
  }
}
.c-nav--footer .c-nav__item a {
  font-size: 13px;
  padding-block: 4px;
  transition: opacity 0.3s;
}
.c-nav--footer .c-nav__item a:hover {
  opacity: 0.7;
}
.c-nav__item {
  position: relative;
}
.c-nav__item:has(.c-nav__sub-menu) {
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.3s ease;
}
.c-nav__item:has(.c-nav__sub-menu)::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #5FBDD5;
  border-bottom: 1px solid #5FBDD5;
  rotate: 45deg;
  transform: translateY(-4px);
}
.c-nav__item:has(.c-nav__sub-menu):hover {
  border-bottom: 1px solid #5FBDD5;
}
.c-nav__link {
  display: inline-block;
  padding-block: 8px 5px;
  line-height: 1.5;
  font-size: clamp(12px, 1vw, 14px);
  transition: opacity 0.3s ease-out;
}
.c-nav__link:hover {
  opacity: 0.7;
}
.c-nav__sub-menu {
  display: grid;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  background-color: #F0FBFF;
  box-shadow: 0 0 10px rgba(7, 61, 74, 0.15);
  padding: 20px min(4.4vw, 64px) 28px;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
  row-gap: 16px;
  border-radius: 8px;
  z-index: 11;
  font-size: 1.4rem;
}
.c-nav__item:hover .c-nav__sub-menu {
  visibility: visible;
  opacity: 1;
}
.c-nav__sub-link {
  position: relative;
  display: block;
  padding: 8px 0;
  padding-right: 32px;
  border-bottom: 1px solid #9FD7E6;
  white-space: nowrap;
  transition: opacity 0.3s ease-out;
}
.c-nav__sub-link:hover {
  opacity: 0.7;
}
.c-nav__sub-link::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url("../img/common/arrow-btn.svg") no-repeat center/contain;
}
.c-nav__icon-shoshinsha {
  display: inline-block;
  width: 9px;
  margin-right: 2px;
  margin-bottom: -1px;
}
.c-nav__btn {
  position: relative;
  border-radius: 32px;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  padding: 12px 24px;
}
.c-nav__btn::before, .c-nav__btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: linear-gradient(0deg, #82E2FB 0%, #5FBDD5 100%);
  z-index: -1;
  transition: opacity 0.3s ease-out;
}
.c-nav__btn::after {
  background: #8CDCF1;
  z-index: -2;
}
.c-nav__btn:hover::before {
  opacity: 0;
}
.c-nav__btn--header {
  display: none;
}
@media (min-width: 1200px) {
  .c-nav__btn--header {
    display: block;
  }
}

/* --------------------------------------------------------------------------
 Component: Drawer (SP Nav) 
 -------------------------------------------------------------------------- */
.c-drawer {
  width: 100vw;
  height: 100dvh;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
  position: fixed;
  overflow-y: scroll;
  top: 0;
  left: 0;
  padding-block: 80px;
  background-color: rgba(240, 251, 255, 0.95);
}
@media (min-width: 1200px) {
  .c-drawer {
    display: none;
  }
}
.c-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  z-index: 998;
}
.c-drawer__container {
  width: min(800px, 90%);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .c-drawer__container {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 5vw;
  }
}
.c-drawer__logo {
  width: 78vw;
  padding-left: 5vw;
}
@media (min-width: 768px) {
  .c-drawer__logo {
    width: 90%;
    margin: 0;
    height: fit-content;
    position: sticky;
    top: 37%;
    padding-left: 0;
  }
}
.c-drawer__logo a {
  display: block;
  transition: opacity 0.3s ease-out;
  max-width: 272px;
}
.c-drawer__logo a:hover {
  opacity: 0.7;
}
.c-drawer__list {
  width: 78vw;
  margin: 0 auto;
  margin-block: 32px;
  gap: 0px;
  display: grid;
}
@media (min-width: 768px) {
  .c-drawer__list {
    width: unset;
    margin-top: 0;
    gap: 8px;
  }
}
.c-drawer__link {
  transition: opacity 0.3s ease-out;
  padding-block: 6px;
  font-weight: 500;
  font-size: 14px;
  display: block;
}
@media (min-width: 768px) {
  .c-drawer__link {
    font-size: 16px;
  }
}
.c-drawer__link:hover {
  opacity: 0.7;
}
.c-drawer__item > .c-drawer__link {
  position: relative;
}
.c-drawer__item > .c-drawer__link::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #7FCADD;
  border-radius: 50%;
  margin-right: 7px;
}
.c-drawer__item > .c-drawer__link:has(.c-nav__icon-shoshinsha)::before {
  display: none;
}
.c-drawer__item:first-child a {
  padding-top: 0;
}
.c-drawer__sub-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-left: 20px;
}
.c-drawer__cta-btn {
  margin-block: 24px 32px;
}
.c-drawer__address {
  font-size: 13px;
  line-height: 175%;
  letter-spacing: 0.02em;
  color: #737373;
  text-align: center;
  margin-bottom: 32px;
}
.c-drawer__icon {
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
Component: Hamburger Button 
-------------------------------------------------------------------------- */
.c-hamburger {
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 999;
  background-color: #E9F6FD;
  border-radius: 8px;
  transition: border-radius 0.2s, background-color 0.2s;
}
@media (min-width: 1200px) {
  .c-hamburger {
    display: none;
  }
}
.c-hamburger span {
  display: block;
  height: 2px;
  width: 22px;
  transition: all 0.3s;
  background: #5FBDD5;
}
.c-hamburger.is-open {
  row-gap: 0px;
  border-radius: 50%;
  background-color: #92A9B0;
}
.c-hamburger.is-open span {
  background: #fff;
}
.c-hamburger.is-open span:nth-child(1) {
  margin-bottom: -4px;
  rotate: 45deg;
}
.c-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-open span:nth-child(3) {
  rotate: -45deg;
}

/* --------------------------------------------------------------------------
Component: Anchor Navigation
-------------------------------------------------------------------------- */
.c-anchor-links {
  width: min(90svw, 1000px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.c-anchor-links__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  row-gap: 8px;
  column-gap: 16px;
}
@media (min-width: 768px) {
  .c-anchor-links__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 8px;
    column-gap: 32px;
  }
}
@media (min-width: 768px) {
  .c-anchor-links__item {
    width: 176px;
  }
}
.c-anchor-links__item--width-fit {
  width: fit-content;
}
.c-anchor-links__link {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  padding-block: 12px;
  padding-right: 16px;
  position: relative;
  border-bottom: 1px solid #9FD7E6;
  transition: opacity 0.3s ease-out;
}
@media (min-width: 768px) {
  .c-anchor-links__link {
    padding-right: 24px;
  }
}
.c-anchor-links__link:hover {
  opacity: 0.7;
}
.c-anchor-links__link::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(/assets/img/common/arrow-blue.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateX(-50%);
  rotate: 90deg;
}

/* --------------------------------------------------------------------------
Component: Accordion 
-------------------------------------------------------------------------- */
.c-accordion {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 1px 1px 4px 0 #DFE9ED;
  line-height: 1.6;
  background-color: #FFFFFF;
  color: #383838;
}
.c-accordion__btn {
  width: 100%;
  text-align: left;
  padding-block: 20px;
  padding-inline: 16px;
  padding-right: 40px;
  border: none;
  cursor: pointer;
  display: flex;
  column-gap: 8px;
  align-items: center;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease-out, font-weight 0.3s ease-out;
}
@media (min-width: 768px) {
  .c-accordion__btn {
    padding: 24px;
    padding-right: 48px;
    font-size: 16px;
  }
}
.c-accordion__btn::before {
  content: "Q";
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #5FBDD5;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}
.c-accordion__btn:hover {
  opacity: 1;
  color: #3E7895;
  font-weight: bold;
}
.c-accordion__icon {
  display: inline-block;
  width: 17px;
  height: 11px;
  background-color: #BCE5F9;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transition: transform 0.3s ease-out;
  position: absolute;
  top: 0;
  bottom: 0;
  margin-block: auto;
  right: 16px;
}
@media (min-width: 768px) {
  .c-accordion__icon {
    right: 24px;
  }
}
.c-accordion .c-accordion__btn.is-open .c-accordion__icon {
  transform: rotate(180deg);
}
.c-accordion__content {
  padding: 16px;
  position: relative;
}
@media (min-width: 768px) {
  .c-accordion__content {
    padding: 24px;
  }
}
.c-accordion__content::before {
  content: "";
  display: block;
  width: calc(100% - 32px);
  height: 1px;
  background-color: #EBEBEB;
  position: absolute;
  top: 0;
  left: 16px;
}
@media (min-width: 768px) {
  .c-accordion__content::before {
    width: calc(100% - 48px);
    left: 24px;
  }
}

/*--------------------------------------------------------------------------
.c-loading
---------------------------------------------------------------------------*/
.c-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #F0FBFF;
  z-index: 1000;
  justify-content: center;
  align-items: center;
  display: none;
}
.c-loading__inner {
  text-align: center;
  width: min(80%, 240px);
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .c-loading__inner {
    width: min(60%, 320px);
    padding-bottom: 64px;
  }
}
.c-loading__logo {
  margin-bottom: 36px;
  margin-inline: auto;
}
.c-loading__btn {
  font-family: "Plus Jakarta Sans", sans-serif;
  pointer-events: none;
  color: #5FBDD5;
  margin-inline: auto;
  border-bottom: none;
  padding-left: 20px;
}
.c-loading__arrow::before {
  animation: ripple 1.4s linear infinite;
}

/*--------------------------------------------------------------------------
診療時間
---------------------------------------------------------------------------*/
.c-schedule {
  container-type: inline-size;
}
.c-schedule__table-container {
  padding-block: 1.1869436202cqw;
  padding-inline: 4.1543026706cqw;
  border: 1px solid #9FD7E6;
  border-radius: 8px;
  background-color: #fff;
}
.c-schedule__table {
  width: 100%;
  font-size: 3.8575667656cqw;
}
.c-schedule__table-title {
  font-size: 4.7477744807cqw;
  text-align: left;
}
.c-schedule tr:not(:last-child) {
  border-bottom: 1px solid #9FD7E6;
}
.c-schedule th, .c-schedule td {
  font-weight: 500;
  padding-block: 4.1543026706cqw;
}
.c-schedule th {
  color: #4D99AC;
}
.c-schedule td {
  color: #5FBDD5;
  text-align: center;
}
.c-schedule__number {
  font-family: "Plus Jakarta Sans", sans-serif;
  text-align: left;
}
.c-schedule__note {
  font-size: 3.5608308605cqw;
  text-align: left;
  color: #4D99AC;
  margin-top: 4px;
}
.c-schedule--sm .c-schedule__table-title {
  font-size: 3.8575667656cqw;
  text-align: left;
}
.c-schedule--sm th, .c-schedule--sm td {
  padding-block: 3.5608308605cqw;
}

/*--------------------------------------------------------------------------
.c-treatment-card
---------------------------------------------------------------------------*/
.c-treatment-card {
  container-type: inline-size;
  border-radius: 0 0 26px 0;
  background-color: #FFF;
  box-shadow: 2px 2px 6px 0 rgba(18, 19, 20, 0.1);
  transition: background-color 0.3s ease-out;
}
.c-treatment-card--current {
  background-color: #DDF2FC;
}
.c-treatment-card:hover {
  background-color: #F7FAFA;
}
.c-treatment-card:hover .c-treatment-card__arrow::before {
  animation: ripple 1.2s linear infinite;
}
.c-treatment-card__inner {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 24px 16px 38px 16px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding-inline: 5cqw;
  padding-top: 15cqw;
  padding-bottom: 35cqw;
  position: relative;
}
@media (min-width: 768px) {
  .c-treatment-card__inner {
    gap: 16px;
    padding-top: 18.75cqw;
    padding-bottom: 38.5416666667cqw;
  }
}
.c-treatment-card__icon {
  width: 35cqw;
  height: 35cqw;
}
.c-treatment-card__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .c-treatment-card__title {
    font-size: 10.4166666667cqw;
  }
}
.c-treatment-card__title-en {
  color: #919191;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (min-width: 768px) {
  .c-treatment-card__title-en {
    font-size: 6.25cqw;
  }
}
.c-treatment-card__arrow {
  position: absolute;
  bottom: 7px;
  right: 7px;
  width: 23.75cqw;
  height: 23.75cqw;
}
@media (min-width: 768px) {
  .c-treatment-card__arrow {
    width: 21.875cqw;
    height: 21.875cqw;
  }
}
.c-treatment-card--menu .c-treatment-card__inner {
  display: flex;
  flex-direction: row;
  column-gap: 16px;
  text-align: left;
  position: relative;
  padding-inline: 5.2805280528cqw;
  padding-block: 3.9603960396cqw;
}
@media (min-width: 768px) {
  .c-treatment-card--menu .c-treatment-card__inner {
    width: 100%;
    height: 100%;
    padding: 24px 16px 38px 16px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding-inline: 5.5172413793cqw;
    padding-top: 16.5517241379cqw;
    padding-bottom: 38.6206896552cqw;
  }
}
.c-treatment-card--menu .c-treatment-card__icon {
  width: 12.5412541254cqw;
  height: 12.5412541254cqw;
}
@media (min-width: 768px) {
  .c-treatment-card--menu .c-treatment-card__icon {
    width: 38.6206896552cqw;
    height: 38.6206896552cqw;
  }
}
.c-treatment-card--menu .c-treatment-card__arrow {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  right: 7px;
  width: 7.9207920792cqw;
  height: 7.9207920792cqw;
}
@media (min-width: 768px) {
  .c-treatment-card--menu .c-treatment-card__arrow {
    bottom: 7px;
    width: 26.2068965517cqw;
    height: 26.2068965517cqw;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
Component: Table 
-------------------------------------------------------------------------- */
.c-table {
  width: 100%;
  border-collapse: collapse;
}
.c-table th,
.c-table td {
  padding-block: 12px;
  border-bottom: 1px solid #EBEBEB;
  text-align: left;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.01em;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .c-table th,
  .c-table td {
    padding-block: 16px;
    font-size: 16px;
  }
}
.c-table tr:last-child :is(th, td) {
  border-bottom: none;
}
.c-table th {
  vertical-align: top;
  font-weight: 500;
  width: 68px;
}
@media (min-width: 768px) {
  .c-table th {
    width: 140px;
  }
}
.c-table td {
  padding-left: 8px;
}
@media (min-width: 768px) {
  .c-table td {
    padding-left: 16px;
  }
}

/* --------------------------------------------------------------------------
Component: Media Item 画像つき横並びコンテンツ
-------------------------------------------------------------------------- */
.c-media-item {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .c-media-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    row-gap: 0;
  }
}
.c-media-item__img {
  width: 100%;
}
@media (min-width: 768px) {
  .c-media-item__img {
    width: 35%;
  }
}
.c-media-item__img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}
.c-media-item__textblock {
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.01em;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .c-media-item__textblock {
    font-size: 16px;
    line-height: 200%;
    letter-spacing: 0.01em;
    width: 60%;
  }
}
@media (min-width: 768px) {
  .c-media-item--pc-reverse {
    flex-direction: row-reverse;
  }
}

/*--------------------------------------------------------------------------
.c-dots-deco
---------------------------------------------------------------------------*/
.c-dots-deco {
  position: absolute;
  z-index: -1;
  width: min(46.4vw, 350px);
}
@media (min-width: 768px) {
  .c-dots-deco {
    width: min(21.1111111111vw, 360px);
  }
}
.c-dots-deco--left {
  left: 0;
}
.c-dots-deco--right {
  right: 0;
  transform: scale(-1, 1);
}
.c-dots-deco--subpage-1, .c-dots-deco--subpage-2, .c-dots-deco--subpage-3 {
  opacity: 0.6;
  z-index: 1;
}
.c-dots-deco--subpage-1 {
  top: 130px;
}
@media (min-width: 768px) {
  .c-dots-deco--subpage-1 {
    top: 200px;
  }
}
.c-dots-deco--subpage-2 {
  top: 29%;
}
.c-dots-deco--subpage-3 {
  top: 62%;
}

:is(.l-main, .l-sec):has(.c-dots-deco--subpage-1, .c-dots-deco--subpage-2, .c-dots-deco--subpage-3) {
  position: relative;
}
:is(.l-main, .l-sec):has(.c-dots-deco--subpage-1, .c-dots-deco--subpage-2, .c-dots-deco--subpage-3) .l-sec__inner {
  position: relative;
  z-index: 1;
}

/*--------------------------------------------------------------------------
セクションタイトル
---------------------------------------------------------------------------*/
.c-section-title__sub {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 38px;
  color: #9FD7E6;
  line-height: 1.1;
  margin-bottom: 6px;
  font-weight: 300;
}
.c-section-title__main {
  font-size: 16px;
  font-weight: 500;
  color: #565656;
  line-height: 1.5;
}
.c-section-title--center {
  text-align: center;
}
.c-section-title--darken .c-section-title__sub {
  color: #7FCADD;
}
.c-section-title--white .c-section-title__main {
  color: #fff;
}
.c-section-title--sm .c-section-title__sub {
  font-size: 32px;
}
@media (min-width: 768px) {
  .c-section-title--sm .c-section-title__sub {
    font-size: 36px;
  }
}

/*--------------------------------------------------------------------------
.c-subpage-title
---------------------------------------------------------------------------*/
.c-subpage-title {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 40%, #DCF9FF 100%);
  padding-block: 48px 24px;
}
@media (min-width: 768px) {
  .c-subpage-title {
    padding-block: 72px 48px;
  }
}
.c-subpage-title__inner {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  position: relative;
  z-index: 1;
  width: min(90vw, 1000px);
  margin-inline: auto;
}
.c-subpage-title__sub-en {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  line-height: 110%;
  color: #7FCADD;
  font-size: 15px;
}
@media (min-width: 768px) {
  .c-subpage-title__sub-en {
    font-size: 16px;
    font-weight: 400;
  }
}
.c-subpage-title__sub-jp {
  color: #55686D;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
@media (min-width: 768px) {
  .c-subpage-title__sub-jp {
    font-size: 16px;
  }
}
.c-subpage-title__sub-jp::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 12px;
  background-color: #5FBDD5;
  border-radius: 50%;
}
.c-subpage-title__main {
  font-size: min(7.2vw, 32px);
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.01em;
}

/*--------------------------------------------------------------------------
セクションタイトル
---------------------------------------------------------------------------*/
.c-title-line {
  padding-bottom: 10px;
  background-image: linear-gradient(to right, #9FD7E6 2px, transparent 2px);
  background-size: 4px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
@media (min-width: 768px) {
  .c-title-line {
    padding-bottom: 12px;
  }
}
.c-title-line__sub {
  font-size: 14px;
  line-height: 1;
  color: #5FBDD5;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 6px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .c-title-line__sub {
    font-size: 18px;
  }
}
.c-title-line__main {
  font-size: min(5.8666666667vw, 23px);
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .c-title-line__main {
    font-size: 23px;
  }
}
.c-title-line--center {
  text-align: center;
}

/*--------------------------------------------------------------------------
.c-dot-subtitle
---------------------------------------------------------------------------*/
.c-dot-subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.02em;
}
.c-dot-subtitle::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background-color: #5FBDD5;
  border-radius: 50%;
}
.c-dot-subtitle--white-dot::before {
  width: 8px;
  height: 8px;
  border: 1px solid #5FBDD5;
  background-color: #fff;
}

/*--------------------------------------------------------------------------
.c-title-accent
---------------------------------------------------------------------------*/
.c-title-accent {
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.02em;
  font-size: 16px;
  font-weight: 700;
  color: #3E7895;
}
@media (min-width: 768px) {
  .c-title-accent {
    font-size: 18px;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0.02em;
    font-weight: 700;
  }
}

/*--------------------------------------------------------------------------
アイコン
---------------------------------------------------------------------------*/
.c-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  position: relative;
}
.c-icon::before, .c-icon::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: linear-gradient(0deg, #82E2FB 0%, #5FBDD5 100%);
  z-index: -1;
  transition: opacity 0.3s ease-out;
}
.c-icon::after {
  background: #8CDCF1;
  z-index: -2;
}
.c-icon:hover::before {
  opacity: 0;
}
.c-icon--gray::before {
  background: linear-gradient(0deg, #92A9B0 0%, #74888F 100%);
}
.c-icon--gray::after {
  background: linear-gradient(0deg, #C0D4DA 0%, #B0C9D1 100%);
  z-index: -2;
}
.c-icon--header-tel {
  display: none;
}
@media (min-width: 1200px) {
  .c-icon--header-tel {
    display: inline-flex;
  }
}
.c-icon--header-ig {
  width: 48px;
  height: 48px;
}
@media (min-width: 1200px) {
  .c-icon--header-ig {
    width: 42px;
    height: 42px;
  }
  .c-icon--header-ig::before {
    background: linear-gradient(0deg, #92A9B0 0%, #74888F 100%);
  }
  .c-icon--header-ig::after {
    background: linear-gradient(0deg, #C0D4DA 0%, #B0C9D1 100%);
    z-index: -2;
  }
}
.c-icon img {
  display: block;
  width: 55%;
  height: 55%;
}

/*--------------------------------------------------------------------------
アイコン
---------------------------------------------------------------------------*/
.c-number-icon {
  text-align: center;
  display: flex;
  width: 56px;
  height: 56px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #5FBDD5;
}
.c-number-icon__label, .c-number-icon__number {
  color: #5FBDD5;
  font-family: "Plus Jakarta Sans", sans-serif;
  display: block;
  line-height: 100%;
}
.c-number-icon__label {
  font-size: 10px;
  font-weight: 600;
}
.c-number-icon__number {
  font-size: 22px;
  font-weight: 500;
}

/*--------------------------------------------------------------------------
link
---------------------------------------------------------------------------*/
.c-link {
  display: inline-block;
  text-decoration: underline;
  color: #28505B;
  transition: opacity 0.3s ease-out;
}
.c-link--arrow::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  transform: translateY(5px);
  background: url(/assets/img/common/arrow-blue.svg) no-repeat center/contain;
}
.c-link:hover {
  opacity: 0.7;
}

/*--------------------------------------------------------------------------
.c-fixed-banner
---------------------------------------------------------------------------*/
.c-fixed-banner {
  border-radius: 8px;
  overflow: hidden;
  max-width: 360px;
}
@media (min-width: 768px) {
  .c-fixed-banner {
    position: fixed;
    bottom: 72px;
    right: 16px;
    width: 360px;
    z-index: 990;
    transition: visibility 0.3s, opacity 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
}
.c-fixed-banner:has(a) {
  cursor: pointer;
  transition: filter 0.3s ease-out, visibility 0.3s, opacity 0.3s;
}
.c-fixed-banner:has(a):hover {
  filter: brightness(1.05);
}
.c-fixed-banner.is-hide {
  visibility: hidden;
  opacity: 0;
}
.c-fixed-banner--pc {
  display: none;
}
@media (min-width: 1200px) {
  .c-fixed-banner--pc {
    display: block;
  }
}
@media (min-width: 768px) {
  .c-fixed-banner--unfixed {
    position: static;
    box-shadow: none;
  }
}
.c-fixed-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/*--------------------------------------------------------------------------
.c-cookie-consent
---------------------------------------------------------------------------*/
.c-cookie-consent {
  background: rgba(77, 153, 172, 0.8);
  padding: 16px 5%;
  position: fixed;
  bottom: 60px;
  left: 0;
  width: 100%;
  z-index: 1;
  display: none;
}
@media (min-width: 1200px) {
  .c-cookie-consent {
    padding: 16px 64px;
    z-index: 995;
    bottom: 0;
  }
}
.c-cookie-consent.is-show {
  display: block;
}
.c-cookie-consent.is-hide {
  display: none;
}
.c-cookie-consent__inner {
  display: flex;
  align-items: center;
  column-gap: 10px;
  row-gap: 8px;
  justify-content: center;
}
@media (min-width: 1200px) {
  .c-cookie-consent__inner {
    flex-wrap: nowrap;
    column-gap: 32px;
  }
}
.c-cookie-consent__text {
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
.c-cookie-consent__btn {
  flex-shrink: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  border-radius: 999px;
  border: 1px solid #fff;
  padding: 8px 16px;
}
@media (min-width: 1200px) {
  .c-cookie-consent__btn {
    padding: 8px 24px;
  }
}

/*--------------------------------------------------------------------------
チェックボックス付きテキスト
---------------------------------------------------------------------------*/
.c-check-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
}
.c-check-item::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  background-image: url(/assets/img/common/icon-checkbox.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (min-width: 768px) {
  .c-check-item::before {
    width: 18px;
    height: 18px;
  }
}

/*--------------------------------------------------------------------------
FV
---------------------------------------------------------------------------*/
.p-top-fv {
  position: relative;
}
.p-top-fv__dots-deco {
  top: 72%;
}
@media (min-width: 768px) {
  .p-top-fv__dots-deco {
    top: 80%;
  }
}
@media (min-width: 768px) {
  .p-top-fv__img {
    margin-left: 89.3333333333vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-top-fv__img {
    margin-left: 23.2638888889vw;
  }
}
.p-top-fv__textblock {
  width: 90%;
  margin-inline: auto;
  margin-top: -22svw;
}
@media (min-width: 768px) {
  .p-top-fv__textblock {
    width: 118.6666666667vw;
    position: absolute;
    top: 19.2vw;
    left: 19.2vw;
    margin-top: 0;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-top-fv__textblock {
    width: 30.9027777778vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-top-fv__textblock {
    top: 5vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-top-fv__textblock {
    left: 5vw;
  }
}
.p-top-fv__title {
  font-size: 7.2vw;
}
@media (min-width: 768px) {
  .p-top-fv__title {
    font-size: 1.875vw;
  }
}
.p-top-fv__title {
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .p-top-fv__title {
    font-size: 10.1333333333vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-top-fv__title {
    font-size: 2.6388888889vw;
  }
}
.p-top-fv__title-line-2 {
  padding-block: 8px;
  display: inline-block;
}
.p-top-fv__title-highlight {
  display: inline-block;
  border-radius: 6px;
  background-color: #F0FBFF;
  padding: 5px 8px 6px;
}
@media (min-width: 768px) {
  .p-top-fv__title-highlight {
    border-radius: 8px;
  }
}
.p-top-fv__subject {
  color: #3E7895;
  font-size: 3.7333333333vw;
}
@media (min-width: 768px) {
  .p-top-fv__subject {
    font-size: 0.9722222222vw;
  }
}
.p-top-fv__subject {
  font-weight: 500;
  line-height: 120%;
  padding-top: 12px;
  border-top: 1px solid #9FD7E6;
  margin-top: 12px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  column-gap: 6px;
}
@media (min-width: 768px) {
  .p-top-fv__subject {
    font-size: 4.8vw;
    padding-top: 16px;
    column-gap: 8px;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-top-fv__subject {
    font-size: 1.25vw;
  }
}
.p-top-fv__subject-label {
  color: #3E7895;
  font-size: 3.2vw;
}
@media (min-width: 768px) {
  .p-top-fv__subject-label {
    font-size: 0.8333333333vw;
  }
}
.p-top-fv__subject-label {
  font-weight: 500;
  line-height: 100%;
  border-radius: 999px;
  border: #3E7895 1px solid;
  padding: 4px 5px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .p-top-fv__subject-label {
    font-size: 3.4666666667vw;
    padding: 5px 8px;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-top-fv__subject-label {
    font-size: 0.9027777778vw;
  }
}
@media (min-width: 768px) {
  .p-top-fv__schedule, .p-top-fv__cta-btn {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .p-top-fv__schedule, .p-top-fv__cta-btn {
    width: 88%;
  }
}
.p-top-fv__schedule {
  margin-block: 16px;
}
@media (min-width: 768px) {
  .p-top-fv__schedule {
    margin-block: 9.6vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-top-fv__schedule {
    margin-block: 2.5vw;
  }
}

/*--------------------------------------------------------------------------
Message
---------------------------------------------------------------------------*/
.p-top-message {
  padding-block: 32px 56px;
}
@media (min-width: 768px) {
  .p-top-message {
    padding-block: 124px;
  }
}
@media (min-width: 768px) {
  .p-top-message__container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    max-width: 880px;
    margin-inline: auto;
  }
}
.p-top-message__img {
  width: 66.1333333333vw;
}
@media (min-width: 768px) {
  .p-top-message__img {
    width: 17.2222222222vw;
  }
}
.p-top-message__img {
  margin-left: auto;
  margin-bottom: 10px;
  position: relative;
}
@media (min-width: 768px) {
  .p-top-message__img {
    width: 43%;
  }
}
.p-top-message__img img {
  border-radius: 8px;
}
.p-top-message__img::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 248/170;
  position: absolute;
  bottom: -35px;
  left: -35px;
  background: linear-gradient(270deg, #F4FBFE 0%, #E9F6FD 100%);
  opacity: 0.9;
  z-index: -1;
}
@media (min-width: 768px) {
  .p-top-message__img::before {
    width: 72%;
    aspect-ratio: 273/332;
    bottom: -16%;
    left: unset;
    right: -45px;
  }
}
@media (min-width: 768px) {
  .p-top-message__textblock {
    width: 52%;
  }
}
.p-top-message__text {
  margin-block: 32px;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  .p-top-message__text {
    font-size: 16px;
    line-height: 200%;
    letter-spacing: 0.01em;
  }
}

/*--------------------------------------------------------------------------
Feature
---------------------------------------------------------------------------*/
.p-top-feature {
  position: relative;
  border-radius: 36px;
  padding-top: 40px;
  padding-bottom: 40px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 77%, #DCF9FF 100%);
}
@media (min-width: 768px) {
  .p-top-feature {
    border-radius: 88px;
    padding-top: 72px;
    padding-bottom: 48px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 84%, #DCF9FF 100%);
  }
}
.p-top-feature__dots-deco-1 {
  top: 34%;
}
@media (min-width: 768px) {
  .p-top-feature__dots-deco-1 {
    top: 42%;
  }
}
.p-top-feature__dots-deco-2 {
  top: 83%;
}
@media (min-width: 768px) {
  .p-top-feature__dots-deco-2 {
    top: 81%;
  }
}
.p-top-feature__title {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .p-top-feature__title {
    margin-bottom: 64px;
  }
}
.p-top-feature__list {
  display: flex;
  flex-direction: column;
  row-gap: 64px;
}
@media (min-width: 768px) {
  .p-top-feature__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.p-top-feature__item:first-child .p-top-feature__item-number::after {
  background: #F3FDFF;
}
@media (min-width: 768px) {
  .p-top-feature__item:first-child .p-top-feature__item-number::after {
    background-color: #F9FEFF;
  }
}
@media (min-width: 768px) {
  .p-top-feature__item:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
.p-top-feature__item-img {
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-top-feature__item-img {
    width: 44%;
  }
}
.p-top-feature__item-textblock {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .p-top-feature__item-textblock {
    margin-top: 0;
    width: 47%;
  }
}
.p-top-feature__item-title {
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .p-top-feature__item-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
  }
}
.p-top-feature__item-number {
  margin-bottom: 8px;
  display: block;
  font-size: 48px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300;
  line-height: 100%;
  color: #7FCADD;
  position: relative;
  margin-left: 36px;
}
.p-top-feature__item-number::after {
  content: "Feature";
  font-size: 14px;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", sans-serif;
  display: block;
  position: absolute;
  padding: 4px;
  background: #fff;
  left: -38px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}
.p-top-feature__item-heading {
  color: #3E7895;
  font-size: 18px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.02em;
  text-wrap: auto;
}
@media (min-width: 768px) {
  .p-top-feature__item-heading {
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.02em;
  }
}
.p-top-feature__item-text {
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  .p-top-feature__item-text {
    font-size: 16px;
    line-height: 200%;
    letter-spacing: 0.01em;
  }
}

/*--------------------------------------------------------------------------
Treatment
---------------------------------------------------------------------------*/
.p-top-treatment {
  position: relative;
  padding-top: 32px;
}
@media (min-width: 768px) {
  .p-top-treatment {
    padding-top: 100px;
  }
}
.p-top-treatment::before {
  content: "";
  display: block;
  width: 80vw;
}
@media (min-width: 768px) {
  .p-top-treatment::before {
    width: 20.8333333333vw;
  }
}
.p-top-treatment::before {
  height: 80%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #F0FBFF;
  z-index: -1;
}
@media (min-width: 768px) {
  .p-top-treatment::before {
    width: 352.5333333333vw;
    aspect-ratio: unset;
    height: 63%;
    top: 25%;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-top-treatment::before {
    width: 91.8055555556vw;
  }
}
.p-top-treatment__dots-deco {
  top: 0;
}
@media (min-width: 768px) {
  .p-top-treatment__dots-deco {
    top: 25%;
    width: clamp(190px, 17vw, 256px);
  }
}
@media (min-width: 768px) {
  .p-top-treatment__container {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 48px;
  }
}
@media (min-width: 1024px) {
  .p-top-treatment__container {
    margin-left: max(-50px, -3.5vw);
    margin-right: min(50px, 3.5vw);
  }
}
.p-top-treatment__title {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .p-top-treatment__title {
    margin-bottom: 0;
    padding-bottom: 48px;
  }
}
.p-top-treatment__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 15px;
}
@media (min-width: 768px) {
  .p-top-treatment__list {
    display: flex;
    flex-wrap: wrap;
    gap: min(1.6vw, 24px);
    width: 74%;
  }
}
@media (min-width: 768px) {
  .p-top-treatment__card {
    width: 27%;
  }
}
@media (min-width: 768px) {
  .p-top-treatment__card:nth-child(3) {
    margin-right: min(4.4vw, 64px);
  }
}
@media (min-width: 768px) {
  .p-top-treatment__card:nth-child(4) {
    margin-left: min(4.4vw, 64px);
  }
}

/*--------------------------------------------------------------------------
Clinic
---------------------------------------------------------------------------*/
.p-top-clinic {
  padding-block: 56px;
}
@media (min-width: 768px) {
  .p-top-clinic {
    padding-block: 128px;
  }
}
.p-top-clinic__container {
  display: flex;
  align-items: center;
  padding-bottom: 16px;
  padding-inline: 8.5333333333vw;
}
@media (min-width: 768px) {
  .p-top-clinic__container {
    padding-inline: 2.2222222222vw;
  }
}
.p-top-clinic__container {
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 337/449;
}
@media (min-width: 768px) {
  .p-top-clinic__container {
    aspect-ratio: unset;
    padding-block: min(12.5vw, 125px);
    padding-inline: min(12.5vw, 100px);
    border-radius: 16px;
  }
}
.p-top-clinic__container::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/assets/img/top/clinic-bg-sp.jpg);
  background-size: cover;
  border-radius: inherit;
  transition: transform 0.5s ease-out, opacity 0.3s ease-out;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (min-width: 768px) {
  .p-top-clinic__container::before {
    background-image: url(/assets/img/top/clinic-bg-pc.jpg);
  }
}
.p-top-clinic__container:hover::before {
  transform: scale(1.05);
  opacity: 0.9;
}
.p-top-clinic__container:hover .p-top-clinic__arrow::before {
  animation: ripple 1.2s linear infinite;
}
@media (min-width: 768px) {
  .p-top-clinic__content {
    display: flex;
    justify-content: space-between;
    column-gap: 40px;
  }
}
.p-top-clinic__title {
  text-align: center;
}
@media (min-width: 768px) {
  .p-top-clinic__title {
    text-align: left;
  }
}
.p-top-clinic__text {
  color: #FFFFFF;
  margin-block: 24px 32px;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  .p-top-clinic__text {
    margin-block: 0 24px;
    font-size: 16px;
    line-height: 200%;
    letter-spacing: 0.01em;
  }
}
.p-top-clinic__button {
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-top-clinic__button {
    margin-inline: 0;
  }
}

/*--------------------------------------------------------------------------
FAQ
---------------------------------------------------------------------------*/
.p-top-faq {
  padding-block: 32px 56px;
  position: relative;
}
@media (min-width: 768px) {
  .p-top-faq {
    padding-block: 116px 96px;
  }
}
.p-top-faq::before {
  content: "";
  display: block;
  width: 80vw;
}
@media (min-width: 768px) {
  .p-top-faq::before {
    width: 20.8333333333vw;
  }
}
.p-top-faq::before {
  height: 89%;
  background-color: #F0FBFF;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media (min-width: 768px) {
  .p-top-faq::before {
    width: 282.6666666667vw;
    height: 365px;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-top-faq::before {
    width: 73.6111111111vw;
  }
}
@media (min-width: 768px) {
  .p-top-faq__container {
    display: grid;
    grid-template-columns: 246px 1fr;
    gap: 6.4%;
  }
}
.p-top-faq__title {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .p-top-faq__title {
    margin-bottom: 32px;
  }
}
.p-top-faq__list {
  margin-block: 32px;
}
@media (min-width: 768px) {
  .p-top-faq__list {
    margin-block: 0;
  }
}

/*--------------------------------------------------------------------------
STEP
---------------------------------------------------------------------------*/
.p-first-time-step {
  padding-bottom: 56px;
  position: relative;
}
@media (min-width: 768px) {
  .p-first-time-step {
    padding-bottom: 104px;
  }
}
.p-first-time-step__dots-deco-1, .p-first-time-step__dots-deco-2, .p-first-time-step__dots-deco-3 {
  opacity: 0.6;
}
.p-first-time-step__dots-deco-1 {
  top: 1%;
}
.p-first-time-step__dots-deco-2 {
  top: 29%;
}
.p-first-time-step__dots-deco-3 {
  top: 62%;
}
.p-first-time-step__title {
  margin-bottom: 24px;
}
.p-first-time-step__item {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding: 16px;
  box-shadow: 1px 1px 4px 0 rgba(18, 19, 20, 0.1);
  border-radius: 8px;
  background-color: #F4F7F7;
  position: relative;
}
@media (min-width: 768px) {
  .p-first-time-step__item {
    padding: 32px 32px 40px 32px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.p-first-time-step__item:not(:last-child) {
  margin-bottom: 54px;
}
.p-first-time-step__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 32px;
  height: auto;
  aspect-ratio: 32/21;
  background-color: #BCE5F9;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
}
.p-first-time-step__item-textblock {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
@media (min-width: 768px) {
  .p-first-time-step__item-textblock {
    width: 63%;
  }
}
.p-first-time-step__item-title {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.p-first-time-step__item-title-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.02em;
}
.p-first-time-step__item-desc {
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  .p-first-time-step__item-desc {
    font-size: 16px;
    line-height: 200%;
    letter-spacing: 0.01em;
  }
}
@media (min-width: 768px) {
  .p-first-time-step__item-img {
    width: 28%;
  }
}
.p-first-time-step__item-img img {
  border-radius: 8px;
}

.p-contact-form__dots-deco-1,
.p-contact-form__dots-deco-2,
.p-contact-finish__dots-deco-1,
.p-contact-finish__dots-deco-2 {
  opacity: 0.5;
}

/*--------------------------------------------------------------------------
お問い合わせフォーム
---------------------------------------------------------------------------*/
.p-contact-form {
  padding-top: 24px;
  padding-bottom: 56px;
  position: relative;
}
@media (min-width: 768px) {
  .p-contact-form {
    padding-bottom: 104px;
  }
}
.p-contact-form__dots-deco-1 {
  top: 0%;
}
.p-contact-form__dots-deco-2 {
  bottom: 2%;
}
.p-contact-form input:not([type=submit]),
.p-contact-form textarea,
.p-contact-form select {
  border-radius: 5px;
  background: #FFF;
  padding: 14px 16px;
  line-height: 1.6;
  width: 100%;
  color: #383838;
  font-size: 16px;
}
.p-contact-form input:not([type=submit])::placeholder,
.p-contact-form textarea::placeholder,
.p-contact-form select::placeholder {
  color: #919191;
  font-size: 16px;
}
.p-contact-form input[type=text],
.p-contact-form input[type=email],
.p-contact-form textarea {
  box-shadow: 1px 1px 4px 0 #EFF4F6;
  border: 1px solid #EBEBEB;
}
.p-contact-form input[type=text] {
  font-size: 16px;
  border-radius: 4px;
  background: #fff;
}
.p-contact-form label.check-line {
  display: block;
}
.p-contact-form input[type=checkbox],
.p-contact-form input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 2px solid #5FBDD5;
  width: 18px;
  height: 18px;
  position: relative;
  cursor: pointer;
  margin-right: 3px;
  padding: 0;
  vertical-align: text-top;
  transition: all 0.2s ease;
  border-radius: 2px;
  vertical-align: sub;
}
.p-contact-form input[type=checkbox]:checked::after {
  position: absolute;
  top: 7%;
  left: 34%;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #5FBDD5;
  border-bottom: 2px solid #5FBDD5;
  content: "";
}
.p-contact-form input[type=radio] {
  border-radius: 50%;
}
.p-contact-form input[type=radio]:checked::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background-color: #5FBDD5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-contact-form__form {
  grid-template-columns: 1fr;
  display: grid;
  row-gap: 24px;
  padding: 24px 16px;
  background-color: #F4F7F7;
  border-radius: 8px;
  max-width: 900px;
  margin-inline: auto;
  box-shadow: 2px 2px 6px 0 rgba(18, 19, 20, 0.1);
}
@media (min-width: 768px) {
  .p-contact-form__form {
    row-gap: 40px;
    padding: 48px min(8vw, 80px);
  }
}
.p-contact-form__input-block {
  font-size: 16px;
}
.p-contact-form__input-block--flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.p-contact-form__input-block--flex:has(+ .p-contact-form__input-block--flex) {
  margin-bottom: 8px;
}
.p-contact-form__input-block--row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: center;
}
.p-contact-form__input-block--row:has(+ .p-contact-form__input-block--row) {
  margin-bottom: 8px;
}
.p-contact-form__input-block--radio {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.p-contact-form__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.p-contact-form__label-text {
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.01em;
  font-weight: 500;
  line-height: 1.6;
}
.p-contact-form__label-sub {
  font-size: 15px;
  width: 88px;
  font-weight: 500;
}
.p-contact-form .p-postal-code {
  max-width: 240px;
}
.p-contact-form__item--privacy a {
  text-decoration: underline;
  transition: opacity 0.3s ease-out;
}
.p-contact-form__item--privacy a:hover {
  opacity: 0.7;
}
.p-contact-form__item--privacy .p-contact-form__input-block--flex {
  justify-content: center;
  text-align: center;
}
.p-contact-form__item--privacy .error {
  order: 3;
  width: 100%;
}
.p-contact-form .error {
  color: #B00020;
  font-size: 14px;
}
.p-contact-form .p-extended-address + .error {
  width: 200px;
}
.p-contact-form__required-icon {
  color: #3E7895;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .p-contact-form__required-icon {
    font-size: 13px;
  }
}
.p-contact-form__btn {
  width: 196px;
  margin-inline: auto;
}

/*--------------------------------------------------------------------------
確認画面
---------------------------------------------------------------------------*/
.p-contact-confirm__btnlist {
  display: grid;
  row-gap: 16px;
  justify-content: center;
}
.p-contact-confirm__back-btn {
  background-color: #888;
}
.p-contact-confirm__back-btn:hover {
  background-color: #999;
}

/*--------------------------------------------------------------------------
完了画面
---------------------------------------------------------------------------*/
.p-contact-finish__dots-deco-1 {
  top: 0%;
}
.p-contact-finish__dots-deco-2 {
  bottom: 2%;
}
.p-contact-finish__section {
  padding-block: 56px;
  position: relative;
}
@media (min-width: 768px) {
  .p-contact-finish__section {
    padding-block: 64px 136px;
  }
}
.p-contact-finish__title {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.02em;
  text-align: center;
}
@media (min-width: 768px) {
  .p-contact-finish__title {
    font-size: 23px;
  }
}
.p-contact-finish__desc {
  margin-top: 24px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 16px;
  line-height: 200%;
}
@media (min-width: 768px) {
  .p-contact-finish__desc {
    text-align: center;
  }
}

/*--------------------------------------------------------------------------
Privacy Page
---------------------------------------------------------------------------*/
.p-privacy-sec {
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.01em;
}
.p-privacy-sec__container {
  padding-block: 56px;
  display: flex;
  flex-direction: column;
  row-gap: 48px;
}
@media (min-width: 768px) {
  .p-privacy-sec__container {
    row-gap: 96px;
  }
}
.p-privacy-sec__item-title {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .p-privacy-sec__item-title {
    margin-bottom: 24px;
  }
}

/*--------------------------------------------------------------------------
FAQ
---------------------------------------------------------------------------*/
.p-faq-sec {
  padding-block: 24px 56px;
  background: linear-gradient(180deg, #FFF 0%, #F7FAFA 10%);
}
@media (min-width: 768px) {
  .p-faq-sec {
    padding-block: 24px 104px;
  }
}
.p-faq-sec__list {
  max-width: 800px;
  margin-inline: auto;
}

/*--------------------------------------------------------------------------
CLINIC
---------------------------------------------------------------------------*/
.p-clinic-sec:first-child {
  padding-top: 24px;
}
@media (min-width: 768px) {
  .p-clinic-sec:first-child {
    padding-top: 24px;
  }
}
.p-clinic-sec:not(:last-child) {
  margin-bottom: 56px;
}
@media (min-width: 768px) {
  .p-clinic-sec:not(:last-child) {
    margin-bottom: 96px;
  }
}
.p-clinic-sec:last-child {
  margin-bottom: 56px;
}
@media (min-width: 768px) {
  .p-clinic-sec:last-child {
    margin-bottom: 104px;
  }
}
.p-clinic-sec__list {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .p-clinic-sec__list {
    margin-top: 32px;
  }
}
.p-clinic-sec__item {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
@media (min-width: 768px) {
  .p-clinic-sec__item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.p-clinic-sec__item-img img {
  border-radius: 8px;
}
@media (min-width: 768px) {
  .p-clinic-sec__item-img {
    width: 35%;
  }
}
@media (min-width: 768px) {
  .p-clinic-sec__item-textblock {
    width: 60%;
    padding-bottom: 24px;
  }
}
.p-clinic-sec__item-text {
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.01em;
  line-height: 1.8;
  margin-top: 4px;
}
@media (min-width: 768px) {
  .p-clinic-sec__item-text {
    margin-top: 8px;
    line-height: 2;
  }
}

/*--------------------------------------------------------------------------
施設基準について
*/
.p-clinic-facility-standards__container {
  background-color: #F7FAFA;
  border-radius: 8px;
  padding: 16px 12px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .p-clinic-facility-standards__container {
    padding: 32px 24px;
    margin-top: 24px;
  }
}
.p-clinic-facility-standards__section {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .p-clinic-facility-standards__section {
    margin-top: 24px;
  }
}
.p-clinic-facility-standards__section h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .p-clinic-facility-standards__section h4 {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
.p-clinic-facility-standards__section p {
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.01em;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-clinic-facility-standards__section p {
    font-size: 16px;
    line-height: 200%;
    letter-spacing: 0.01em;
    line-height: 1.8;
  }
}

/*--------------------------------------------------------------------------
TREATMENT 
---------------------------------------------------------------------------*/
.p-treatment__dots-deco-1, .p-treatment__dots-deco-2, .p-treatment__dots-deco-3 {
  opacity: 1;
}
.p-treatment__dots-deco-1 {
  top: 230px;
}

/*--------------------------------------------------------------------------
グラデーション背景  
*/
.p-treatment-gradient-bg {
  background-image: linear-gradient(to bottom, #fff, #F0FBFF 100px);
}
@media (min-width: 768px) {
  .p-treatment-gradient-bg {
    background-image: linear-gradient(to bottom, #fff, #F0FBFF 220px);
  }
}

/*--------------------------------------------------------------------------
治療内容紹介イントロダクションセクション 
*/
.p-treatment-intro {
  padding-block: 0 32px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .p-treatment-intro {
    padding-block: 0 48px;
  }
}
.p-treatment-intro__text {
  font-size: 16px;
}
@media (min-width: 768px) {
  .p-treatment-intro__text {
    line-height: 2;
  }
}

/*--------------------------------------------------------------------------
治療内容紹介セクション 
*/
.p-treatment-subject-list {
  padding-block: 56px;
  position: relative;
}
@media (min-width: 768px) {
  .p-treatment-subject-list {
    padding-block: 72px;
  }
}

.p-treatment-subject {
  background-color: #fff;
  border-bottom-right-radius: 48px;
  position: relative;
  box-shadow: 2px 2px 6px 0 rgba(18, 19, 20, 0.1);
  padding-block: 56px 40px;
}
@media (min-width: 768px) {
  .p-treatment-subject {
    padding-block: 72px 48px;
  }
}
.p-treatment-subject:not(:last-of-type) {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .p-treatment-subject:not(:last-of-type) {
    margin-bottom: 56px;
  }
}
.p-treatment-subject__inner {
  width: 90%;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-treatment-subject__inner {
    width: 88%;
  }
}
.p-treatment-subject__label {
  display: block;
  width: fit-content;
  position: absolute;
  top: 16px;
  left: 0;
  color: #fff;
  border-radius: 0 4px 4px 0;
  padding: 7px 10px;
  line-height: 1;
  font-size: 14px;
  background-color: #7FCADD;
}
@media (min-width: 768px) {
  .p-treatment-subject__label {
    font-size: 15px;
    padding: 8px 10px;
  }
}
.p-treatment-subject__title {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .p-treatment-subject__title {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: baseline;
    gap: 6px;
  }
}
.p-treatment-subject__title-en {
  color: #919191;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .p-treatment-subject__title-en {
    font-size: 16px;
  }
}
.p-treatment-subject__paragraph:has(.p-treatment-subject__img) {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .p-treatment-subject__paragraph:has(.p-treatment-subject__img) {
    display: flex;
    flex-direction: row-reverse;
  }
}
@media (min-width: 768px) {
  .p-treatment-subject__paragraph:has(.p-treatment-subject__img) .p-treatment-subject__textblock {
    width: 57%;
    padding-top: 10px;
  }
}
@media (min-width: 768px) {
  .p-treatment-subject__paragraph:has(.p-treatment-subject__img) .p-treatment-subject__img {
    width: 40%;
  }
}
.p-treatment-subject__paragraph:not(:last-child) {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .p-treatment-subject__paragraph:not(:last-child) {
    margin-bottom: 40px;
  }
}
.p-treatment-subject__img img {
  border-radius: 8px;
}
.p-treatment-subject__title-sm {
  font-size: 77%;
}
.p-treatment-subject__para-title {
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .p-treatment-subject__para-title {
    margin-bottom: 16px;
  }
}
.p-treatment-subject__text {
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.01em;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-treatment-subject__text {
    line-height: 2;
  }
}
.p-treatment-subject__check-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 8px;
}
@media (min-width: 768px) {
  .p-treatment-subject__check-list {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 16px;
    row-gap: 12px;
  }
}

/*--------------------------------------------------------------------------
限定解除要件テーブル 
*/
.p-treatment-conditions {
  background-color: #F0FBFF;
}
.p-treatment-conditions__inner {
  padding-block: 56px;
  background-image: linear-gradient(to right, #9FD7E6 2px, transparent 2px);
  background-size: 4px 2px;
  background-repeat: repeat-x;
  background-position: left top;
}
@media (min-width: 768px) {
  .p-treatment-conditions__inner {
    padding-block: 72px 104px;
  }
}
.p-treatment-conditions__container {
  background-color: #fff;
  border: 1px solid #5FBDD5;
  border-radius: 8px;
  padding-block: 8px;
  padding-inline: 10px;
}
@media (min-width: 768px) {
  .p-treatment-conditions__container {
    padding-block: 24px;
    padding-inline: 32px;
  }
}
.p-treatment-conditions__table-subtitle {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .p-treatment-conditions__table-subtitle {
    font-size: 16px;
  }
}
.p-treatment-conditions__table li:not(:last-child) {
  margin-bottom: 12px;
}

/*--------------------------------------------------------------------------
メリットセクション 
*/
.p-treatment-merits__container {
  padding-block: 32px 24px;
  padding-inline: 16px;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #5FBDD5;
  position: relative;
}
@media (min-width: 768px) {
  .p-treatment-merits__container {
    padding-block: 40px 48px;
    padding-inline: 48px;
  }
}
.p-treatment-merits__container::before {
  content: "";
  position: absolute;
  width: 145px;
  height: 42px;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(/assets/img/treatment/merit-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .p-treatment-merits__container::before {
    top: -23px;
  }
}
.p-treatment-merits__title {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .p-treatment-merits__title {
    margin-bottom: 28px;
  }
}
.p-treatment-merits__title .c-title-line__main {
  font-size: min(4.8vw, 23px);
}
.p-treatment-merits__list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media (min-width: 768px) {
  .p-treatment-merits__list {
    row-gap: 12px;
  }
}
.p-treatment-merits__item {
  display: flex;
  gap: 12px;
}
@media (min-width: 768px) {
  .p-treatment-merits__item {
    align-items: center;
  }
}
.p-treatment-merits__icon {
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .p-treatment-merits__textblock {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
.p-treatment-merits__item-title-text {
  color: #3E7895;
  font-weight: 500;
  font-size: 16px;
  width: 180px;
}
@media (min-width: 768px) {
  .p-treatment-merits__desc {
    font-size: 16px;
  }
}
.p-treatment-merits__desc--md {
  font-size: 16px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-treatment-merits__desc--md {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------------------
TREATMENT - GENERAL 一般歯科
---------------------------------------------------------------------------*/
.p-general__dots-deco-1, .p-general__dots-deco-2, .p-general__dots-deco-3 {
  opacity: 1;
}
.p-general__dots-deco-1 {
  top: 330px;
}
@media (min-width: 768px) {
  .p-general__dots-deco-1 {
    top: 290px;
  }
}
@media (min-width: 768px) {
  .p-general__anchor-item {
    width: 156px;
  }
}

/*--------------------------------------------------------------------------
TREATMENT - ORTHODONTICS 歯科矯正
---------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------
TREATMENT - PREVENTIVE 予防歯科
---------------------------------------------------------------------------*/
.p-preventive__content-container {
  padding-block: 24px 56px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
@media (min-width: 768px) {
  .p-preventive__content-container {
    padding-block: 80px 104px;
    gap: 96px;
  }
}

/*--------------------------------------------------------------------------
予防⻭科の主な内容 
*/
.p-preventive-about__inner {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
@media (min-width: 768px) {
  .p-preventive-about__inner {
    row-gap: 40px;
  }
}

/*--------------------------------------------------------------------------
予防⻭科のメリット 
*/
/*--------------------------------------------------------------------------
TREATMENT - IMPLANT インプラント
---------------------------------------------------------------------------*/
.p-implant__content-container {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 48px;
  padding-block: 56px;
}
@media (min-width: 768px) {
  .p-implant__content-container {
    row-gap: 72px;
    padding-block: 104px 72px;
  }
}
.p-implant .p-treatment__dots-deco-1 {
  top: 40px;
}

.p-implant-method__inner {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
@media (min-width: 768px) {
  .p-implant-method__inner {
    row-gap: 40px;
  }
}
.p-implant-method__chart-container {
  overflow-x: auto;
}
.p-implant-method__chart {
  display: flex;
  margin-bottom: 24px;
  min-width: 600px;
}
@media (min-width: 768px) {
  .p-implant-method__chart {
    min-width: 1000px;
  }
}
.p-implant-method__chart-item {
  position: relative;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.01em;
  height: 96px;
  width: 25%;
  padding-right: 1%;
  padding-left: 4%;
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%, 8% 50%);
  display: flex;
  align-items: center;
  margin-left: -1%;
}
@media (min-width: 768px) {
  .p-implant-method__chart-item {
    font-size: 16px;
  }
}
.p-implant-method__chart-item:nth-child(1) {
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
  background: #5FBDD5;
  padding-left: 2%;
  margin-left: 0;
}
@media (min-width: 768px) {
  .p-implant-method__chart-item:nth-child(1) {
    padding-left: 2%;
  }
}
.p-implant-method__chart-item:nth-child(2) {
  background: #4D99AC;
}
.p-implant-method__chart-item:nth-child(3) {
  background: #3A7584;
}
.p-implant-method__chart-item:nth-child(4) {
  background: #28505B;
}
.p-implant-method__chart-num {
  position: absolute;
  bottom: -4px;
  right: 14px;
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.02em;
  color: #fff;
  opacity: 0.2;
}
.p-implant-method__desc-list {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding-left: 16px;
  padding-block: 8px;
  border-left: 1px solid #5FBDD5;
}
@media (min-width: 768px) {
  .p-implant-method__desc-list {
    row-gap: 16px;
    padding-left: 24px;
    padding-block: 24px;
  }
}
.p-implant-method__desc-item {
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-implant-method__desc-item {
    display: flex;
  }
}
.p-implant-method__desc-title {
  display: flex;
  column-gap: 8px;
  font-weight: 500;
  font-size: 16px;
}
@media (min-width: 768px) {
  .p-implant-method__desc-title {
    width: 300px;
    flex-shrink: 0;
  }
}
.p-implant-method__desc-num {
  color: #3E7895;
  font-weight: 500;
  letter-spacing: 0.03em;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.p-implant-method__duration-list {
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background-color: #fff;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .p-implant-method__duration-list {
    padding: 32px;
  }
}
.p-implant-method__duration-text {
  font-size: 14px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-implant-method__duration-text {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------------------
TREATMENT - WHITENING ホワイトニング
---------------------------------------------------------------------------*/
.p-whitening__anchor-list {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .p-whitening__anchor-list {
    display: flex;
  }
}
@media (min-width: 768px) {
  .p-whitening__anchor-item {
    width: 210px;
  }
}
.p-whitening .p-treatment__dots-deco-1 {
  top: 40px;
}

/*--------------------------------------------------------------------------
TREATMENT - GUMMY SMILE ガミースマイル
---------------------------------------------------------------------------*/
.p-gummy-smile__content-container {
  position: relative;
  padding-block: 24px 56px;
}
@media (min-width: 768px) {
  .p-gummy-smile__content-container {
    padding-block: 104px 72px;
  }
}
.p-gummy-smile .p-treatment__dots-deco-1 {
  top: 40px;
}

.p-gummy-smile-cause__inner {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  background-color: #fff;
  padding: 24px 16px;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .p-gummy-smile-cause__inner {
    row-gap: 48px;
    padding: 48px;
    padding-bottom: 0;
  }
}
.p-gummy-smile-cause__item {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .p-gummy-smile-cause__item {
    row-gap: 24px;
    padding-bottom: 48px;
  }
}
.p-gummy-smile-cause__title {
  font-size: min(5.3333333333vw, 23px);
}
.p-gummy-smile-cause__treatment-content {
  background-color: #F7FAFA;
  padding: 16px;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .p-gummy-smile-cause__treatment-content {
    padding: 32px;
  }
}

/*--------------------------------------------------------------------------
ABOUT
---------------------------------------------------------------------------*/
.p-about__content-container {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  padding-block: 16px 56px;
}
@media (min-width: 768px) {
  .p-about__content-container {
    row-gap: 96px;
    padding-block: 24px 104px;
  }
}

/*--------------------------------------------------------------------------
メッセージ
*/
.p-about-greeting__container {
  border-radius: 8px;
  border: 1px solid #5FBDD5;
  background-color: #E6F6FB;
  padding: 16px;
}
@media (min-width: 768px) {
  .p-about-greeting__container {
    padding: 38px 48px 48px 48px;
  }
}
.p-about-greeting__content {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.01em;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-about-greeting__content {
    margin-top: 24px;
    font-size: 16px;
    line-height: 200%;
    letter-spacing: 0.01em;
    grid-template-columns: 0.66fr 0.32fr;
    gap: 16px;
  }
}
.p-about-greeting__img img {
  border-radius: 8px;
}
.p-about-greeting__signature {
  color: #3E7895;
  margin-top: 4px;
  text-align: right;
}
@media (min-width: 768px) {
  .p-about-greeting__signature {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------------------
略歴
*/
.p-about-history__table-container {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .p-about-history__table-container {
    padding-inline: 24px;
  }
}

/*--------------------------------------------------------------------------
  Animation Utilities
---------------------------------------------------------------------------*/
.u-fade-up {
  opacity: 0;
}

.u-fade-up.is-show {
  animation-name: fadeUpAnime;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*--------------------------------------------------------------------------
  Color Utilities
---------------------------------------------------------------------------*/
.text-white {
  color: #fff !important;
}

.text-black {
  color: #000000 !important;
}

/*--------------------------------------------------------------------------
  Display Utilities
--------------------------------------------------------------------------*/
.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

.inline-block {
  display: inline-block !important;
}

.flex {
  display: flex !important;
}

.inline-flex {
  display: inline-flex !important;
}

.grid {
  display: grid !important;
}

.inline-grid {
  display: inline-grid !important;
}

.hidden {
  display: none !important;
}

.sp {
  display: block;
}
@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media (min-width: 768px) {
  .pc {
    display: block;
  }
}

.sp-flex {
  display: flex;
}
@media (min-width: 768px) {
  .sp-flex {
    display: none;
  }
}

.pc-flex {
  display: none;
}
@media (min-width: 768px) {
  .pc-flex {
    display: flex;
  }
}

.no-link {
  pointer-events: none;
  text-decoration: none !important;
  cursor: initial;
}

/*--------------------------------------------------------------------------
 Size Utilities
---------------------------------------------------------------------------*/
.mlr-auto {
  margin-inline: auto !important;
}

/* 8pxごと */
/* マージン関連クラス */
.m-0 {
  margin: 0px !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mtb-0 {
  margin-block: 0px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.mlr-0 {
  margin-inline: 0px !important;
}

@media (min-width: 768px) {
  .m-0-pc {
    margin: 0px !important;
  }
  .mt-0-pc {
    margin-top: 0px !important;
  }
  .mb-0-pc {
    margin-bottom: 0px !important;
  }
  .mtb-0-pc {
    margin-block: 0px !important;
  }
  .ml-0-pc {
    margin-left: 0px !important;
  }
  .mr-0-pc {
    margin-right: 0px !important;
  }
  .mlr-0-pc {
    margin-inline: 0px !important;
  }
}
/* パディング関連クラス */
.p-0 {
  padding: 0px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.ptb-0 {
  padding-block: 0px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.plr-0 {
  padding-inline: 0px !important;
}

@media (min-width: 768px) {
  .p-0-pc {
    padding: 0px !important;
  }
  .pt-0-pc {
    padding-top: 0px !important;
  }
  .pb-0-pc {
    padding-bottom: 0px !important;
  }
  .ptb-0-pc {
    padding-block: 0px !important;
  }
  .pl-0-pc {
    padding-left: 0px !important;
  }
  .pr-0-pc {
    padding-right: 0px !important;
  }
  .plr-0-pc {
    padding-inline: 0px !important;
  }
}
.fs-0 {
  font-size: 0px !important;
}

@media (min-width: 768px) {
  .fs-0-pc {
    font-size: 0px !important;
  }
}
/* マージン関連クラス */
.m-8 {
  margin: 8px !important;
}

.mt-8 {
  margin-top: 8px !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.mtb-8 {
  margin-block: 8px !important;
}

.ml-8 {
  margin-left: 8px !important;
}

.mr-8 {
  margin-right: 8px !important;
}

.mlr-8 {
  margin-inline: 8px !important;
}

@media (min-width: 768px) {
  .m-8-pc {
    margin: 8px !important;
  }
  .mt-8-pc {
    margin-top: 8px !important;
  }
  .mb-8-pc {
    margin-bottom: 8px !important;
  }
  .mtb-8-pc {
    margin-block: 8px !important;
  }
  .ml-8-pc {
    margin-left: 8px !important;
  }
  .mr-8-pc {
    margin-right: 8px !important;
  }
  .mlr-8-pc {
    margin-inline: 8px !important;
  }
}
/* パディング関連クラス */
.p-8 {
  padding: 8px !important;
}

.pt-8 {
  padding-top: 8px !important;
}

.pb-8 {
  padding-bottom: 8px !important;
}

.ptb-8 {
  padding-block: 8px !important;
}

.pl-8 {
  padding-left: 8px !important;
}

.pr-8 {
  padding-right: 8px !important;
}

.plr-8 {
  padding-inline: 8px !important;
}

@media (min-width: 768px) {
  .p-8-pc {
    padding: 8px !important;
  }
  .pt-8-pc {
    padding-top: 8px !important;
  }
  .pb-8-pc {
    padding-bottom: 8px !important;
  }
  .ptb-8-pc {
    padding-block: 8px !important;
  }
  .pl-8-pc {
    padding-left: 8px !important;
  }
  .pr-8-pc {
    padding-right: 8px !important;
  }
  .plr-8-pc {
    padding-inline: 8px !important;
  }
}
.fs-8 {
  font-size: 8px !important;
}

@media (min-width: 768px) {
  .fs-8-pc {
    font-size: 8px !important;
  }
}
/* マージン関連クラス */
.m-16 {
  margin: 16px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.mtb-16 {
  margin-block: 16px !important;
}

.ml-16 {
  margin-left: 16px !important;
}

.mr-16 {
  margin-right: 16px !important;
}

.mlr-16 {
  margin-inline: 16px !important;
}

@media (min-width: 768px) {
  .m-16-pc {
    margin: 16px !important;
  }
  .mt-16-pc {
    margin-top: 16px !important;
  }
  .mb-16-pc {
    margin-bottom: 16px !important;
  }
  .mtb-16-pc {
    margin-block: 16px !important;
  }
  .ml-16-pc {
    margin-left: 16px !important;
  }
  .mr-16-pc {
    margin-right: 16px !important;
  }
  .mlr-16-pc {
    margin-inline: 16px !important;
  }
}
/* パディング関連クラス */
.p-16 {
  padding: 16px !important;
}

.pt-16 {
  padding-top: 16px !important;
}

.pb-16 {
  padding-bottom: 16px !important;
}

.ptb-16 {
  padding-block: 16px !important;
}

.pl-16 {
  padding-left: 16px !important;
}

.pr-16 {
  padding-right: 16px !important;
}

.plr-16 {
  padding-inline: 16px !important;
}

@media (min-width: 768px) {
  .p-16-pc {
    padding: 16px !important;
  }
  .pt-16-pc {
    padding-top: 16px !important;
  }
  .pb-16-pc {
    padding-bottom: 16px !important;
  }
  .ptb-16-pc {
    padding-block: 16px !important;
  }
  .pl-16-pc {
    padding-left: 16px !important;
  }
  .pr-16-pc {
    padding-right: 16px !important;
  }
  .plr-16-pc {
    padding-inline: 16px !important;
  }
}
.fs-16 {
  font-size: 16px !important;
}

@media (min-width: 768px) {
  .fs-16-pc {
    font-size: 16px !important;
  }
}
/* マージン関連クラス */
.m-24 {
  margin: 24px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.mtb-24 {
  margin-block: 24px !important;
}

.ml-24 {
  margin-left: 24px !important;
}

.mr-24 {
  margin-right: 24px !important;
}

.mlr-24 {
  margin-inline: 24px !important;
}

@media (min-width: 768px) {
  .m-24-pc {
    margin: 24px !important;
  }
  .mt-24-pc {
    margin-top: 24px !important;
  }
  .mb-24-pc {
    margin-bottom: 24px !important;
  }
  .mtb-24-pc {
    margin-block: 24px !important;
  }
  .ml-24-pc {
    margin-left: 24px !important;
  }
  .mr-24-pc {
    margin-right: 24px !important;
  }
  .mlr-24-pc {
    margin-inline: 24px !important;
  }
}
/* パディング関連クラス */
.p-24 {
  padding: 24px !important;
}

.pt-24 {
  padding-top: 24px !important;
}

.pb-24 {
  padding-bottom: 24px !important;
}

.ptb-24 {
  padding-block: 24px !important;
}

.pl-24 {
  padding-left: 24px !important;
}

.pr-24 {
  padding-right: 24px !important;
}

.plr-24 {
  padding-inline: 24px !important;
}

@media (min-width: 768px) {
  .p-24-pc {
    padding: 24px !important;
  }
  .pt-24-pc {
    padding-top: 24px !important;
  }
  .pb-24-pc {
    padding-bottom: 24px !important;
  }
  .ptb-24-pc {
    padding-block: 24px !important;
  }
  .pl-24-pc {
    padding-left: 24px !important;
  }
  .pr-24-pc {
    padding-right: 24px !important;
  }
  .plr-24-pc {
    padding-inline: 24px !important;
  }
}
.fs-24 {
  font-size: 24px !important;
}

@media (min-width: 768px) {
  .fs-24-pc {
    font-size: 24px !important;
  }
}
/* マージン関連クラス */
.m-32 {
  margin: 32px !important;
}

.mt-32 {
  margin-top: 32px !important;
}

.mb-32 {
  margin-bottom: 32px !important;
}

.mtb-32 {
  margin-block: 32px !important;
}

.ml-32 {
  margin-left: 32px !important;
}

.mr-32 {
  margin-right: 32px !important;
}

.mlr-32 {
  margin-inline: 32px !important;
}

@media (min-width: 768px) {
  .m-32-pc {
    margin: 32px !important;
  }
  .mt-32-pc {
    margin-top: 32px !important;
  }
  .mb-32-pc {
    margin-bottom: 32px !important;
  }
  .mtb-32-pc {
    margin-block: 32px !important;
  }
  .ml-32-pc {
    margin-left: 32px !important;
  }
  .mr-32-pc {
    margin-right: 32px !important;
  }
  .mlr-32-pc {
    margin-inline: 32px !important;
  }
}
/* パディング関連クラス */
.p-32 {
  padding: 32px !important;
}

.pt-32 {
  padding-top: 32px !important;
}

.pb-32 {
  padding-bottom: 32px !important;
}

.ptb-32 {
  padding-block: 32px !important;
}

.pl-32 {
  padding-left: 32px !important;
}

.pr-32 {
  padding-right: 32px !important;
}

.plr-32 {
  padding-inline: 32px !important;
}

@media (min-width: 768px) {
  .p-32-pc {
    padding: 32px !important;
  }
  .pt-32-pc {
    padding-top: 32px !important;
  }
  .pb-32-pc {
    padding-bottom: 32px !important;
  }
  .ptb-32-pc {
    padding-block: 32px !important;
  }
  .pl-32-pc {
    padding-left: 32px !important;
  }
  .pr-32-pc {
    padding-right: 32px !important;
  }
  .plr-32-pc {
    padding-inline: 32px !important;
  }
}
.fs-32 {
  font-size: 32px !important;
}

@media (min-width: 768px) {
  .fs-32-pc {
    font-size: 32px !important;
  }
}
/* マージン関連クラス */
.m-40 {
  margin: 40px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mtb-40 {
  margin-block: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mlr-40 {
  margin-inline: 40px !important;
}

@media (min-width: 768px) {
  .m-40-pc {
    margin: 40px !important;
  }
  .mt-40-pc {
    margin-top: 40px !important;
  }
  .mb-40-pc {
    margin-bottom: 40px !important;
  }
  .mtb-40-pc {
    margin-block: 40px !important;
  }
  .ml-40-pc {
    margin-left: 40px !important;
  }
  .mr-40-pc {
    margin-right: 40px !important;
  }
  .mlr-40-pc {
    margin-inline: 40px !important;
  }
}
/* パディング関連クラス */
.p-40 {
  padding: 40px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.ptb-40 {
  padding-block: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.plr-40 {
  padding-inline: 40px !important;
}

@media (min-width: 768px) {
  .p-40-pc {
    padding: 40px !important;
  }
  .pt-40-pc {
    padding-top: 40px !important;
  }
  .pb-40-pc {
    padding-bottom: 40px !important;
  }
  .ptb-40-pc {
    padding-block: 40px !important;
  }
  .pl-40-pc {
    padding-left: 40px !important;
  }
  .pr-40-pc {
    padding-right: 40px !important;
  }
  .plr-40-pc {
    padding-inline: 40px !important;
  }
}
.fs-40 {
  font-size: 40px !important;
}

@media (min-width: 768px) {
  .fs-40-pc {
    font-size: 40px !important;
  }
}
/* マージン関連クラス */
.m-48 {
  margin: 48px !important;
}

.mt-48 {
  margin-top: 48px !important;
}

.mb-48 {
  margin-bottom: 48px !important;
}

.mtb-48 {
  margin-block: 48px !important;
}

.ml-48 {
  margin-left: 48px !important;
}

.mr-48 {
  margin-right: 48px !important;
}

.mlr-48 {
  margin-inline: 48px !important;
}

@media (min-width: 768px) {
  .m-48-pc {
    margin: 48px !important;
  }
  .mt-48-pc {
    margin-top: 48px !important;
  }
  .mb-48-pc {
    margin-bottom: 48px !important;
  }
  .mtb-48-pc {
    margin-block: 48px !important;
  }
  .ml-48-pc {
    margin-left: 48px !important;
  }
  .mr-48-pc {
    margin-right: 48px !important;
  }
  .mlr-48-pc {
    margin-inline: 48px !important;
  }
}
/* パディング関連クラス */
.p-48 {
  padding: 48px !important;
}

.pt-48 {
  padding-top: 48px !important;
}

.pb-48 {
  padding-bottom: 48px !important;
}

.ptb-48 {
  padding-block: 48px !important;
}

.pl-48 {
  padding-left: 48px !important;
}

.pr-48 {
  padding-right: 48px !important;
}

.plr-48 {
  padding-inline: 48px !important;
}

@media (min-width: 768px) {
  .p-48-pc {
    padding: 48px !important;
  }
  .pt-48-pc {
    padding-top: 48px !important;
  }
  .pb-48-pc {
    padding-bottom: 48px !important;
  }
  .ptb-48-pc {
    padding-block: 48px !important;
  }
  .pl-48-pc {
    padding-left: 48px !important;
  }
  .pr-48-pc {
    padding-right: 48px !important;
  }
  .plr-48-pc {
    padding-inline: 48px !important;
  }
}
.fs-48 {
  font-size: 48px !important;
}

@media (min-width: 768px) {
  .fs-48-pc {
    font-size: 48px !important;
  }
}
/* マージン関連クラス */
.m-56 {
  margin: 56px !important;
}

.mt-56 {
  margin-top: 56px !important;
}

.mb-56 {
  margin-bottom: 56px !important;
}

.mtb-56 {
  margin-block: 56px !important;
}

.ml-56 {
  margin-left: 56px !important;
}

.mr-56 {
  margin-right: 56px !important;
}

.mlr-56 {
  margin-inline: 56px !important;
}

@media (min-width: 768px) {
  .m-56-pc {
    margin: 56px !important;
  }
  .mt-56-pc {
    margin-top: 56px !important;
  }
  .mb-56-pc {
    margin-bottom: 56px !important;
  }
  .mtb-56-pc {
    margin-block: 56px !important;
  }
  .ml-56-pc {
    margin-left: 56px !important;
  }
  .mr-56-pc {
    margin-right: 56px !important;
  }
  .mlr-56-pc {
    margin-inline: 56px !important;
  }
}
/* パディング関連クラス */
.p-56 {
  padding: 56px !important;
}

.pt-56 {
  padding-top: 56px !important;
}

.pb-56 {
  padding-bottom: 56px !important;
}

.ptb-56 {
  padding-block: 56px !important;
}

.pl-56 {
  padding-left: 56px !important;
}

.pr-56 {
  padding-right: 56px !important;
}

.plr-56 {
  padding-inline: 56px !important;
}

@media (min-width: 768px) {
  .p-56-pc {
    padding: 56px !important;
  }
  .pt-56-pc {
    padding-top: 56px !important;
  }
  .pb-56-pc {
    padding-bottom: 56px !important;
  }
  .ptb-56-pc {
    padding-block: 56px !important;
  }
  .pl-56-pc {
    padding-left: 56px !important;
  }
  .pr-56-pc {
    padding-right: 56px !important;
  }
  .plr-56-pc {
    padding-inline: 56px !important;
  }
}
.fs-56 {
  font-size: 56px !important;
}

@media (min-width: 768px) {
  .fs-56-pc {
    font-size: 56px !important;
  }
}
/* マージン関連クラス */
.m-64 {
  margin: 64px !important;
}

.mt-64 {
  margin-top: 64px !important;
}

.mb-64 {
  margin-bottom: 64px !important;
}

.mtb-64 {
  margin-block: 64px !important;
}

.ml-64 {
  margin-left: 64px !important;
}

.mr-64 {
  margin-right: 64px !important;
}

.mlr-64 {
  margin-inline: 64px !important;
}

@media (min-width: 768px) {
  .m-64-pc {
    margin: 64px !important;
  }
  .mt-64-pc {
    margin-top: 64px !important;
  }
  .mb-64-pc {
    margin-bottom: 64px !important;
  }
  .mtb-64-pc {
    margin-block: 64px !important;
  }
  .ml-64-pc {
    margin-left: 64px !important;
  }
  .mr-64-pc {
    margin-right: 64px !important;
  }
  .mlr-64-pc {
    margin-inline: 64px !important;
  }
}
/* パディング関連クラス */
.p-64 {
  padding: 64px !important;
}

.pt-64 {
  padding-top: 64px !important;
}

.pb-64 {
  padding-bottom: 64px !important;
}

.ptb-64 {
  padding-block: 64px !important;
}

.pl-64 {
  padding-left: 64px !important;
}

.pr-64 {
  padding-right: 64px !important;
}

.plr-64 {
  padding-inline: 64px !important;
}

@media (min-width: 768px) {
  .p-64-pc {
    padding: 64px !important;
  }
  .pt-64-pc {
    padding-top: 64px !important;
  }
  .pb-64-pc {
    padding-bottom: 64px !important;
  }
  .ptb-64-pc {
    padding-block: 64px !important;
  }
  .pl-64-pc {
    padding-left: 64px !important;
  }
  .pr-64-pc {
    padding-right: 64px !important;
  }
  .plr-64-pc {
    padding-inline: 64px !important;
  }
}
.fs-64 {
  font-size: 64px !important;
}

@media (min-width: 768px) {
  .fs-64-pc {
    font-size: 64px !important;
  }
}
/* マージン関連クラス */
.m-72 {
  margin: 72px !important;
}

.mt-72 {
  margin-top: 72px !important;
}

.mb-72 {
  margin-bottom: 72px !important;
}

.mtb-72 {
  margin-block: 72px !important;
}

.ml-72 {
  margin-left: 72px !important;
}

.mr-72 {
  margin-right: 72px !important;
}

.mlr-72 {
  margin-inline: 72px !important;
}

@media (min-width: 768px) {
  .m-72-pc {
    margin: 72px !important;
  }
  .mt-72-pc {
    margin-top: 72px !important;
  }
  .mb-72-pc {
    margin-bottom: 72px !important;
  }
  .mtb-72-pc {
    margin-block: 72px !important;
  }
  .ml-72-pc {
    margin-left: 72px !important;
  }
  .mr-72-pc {
    margin-right: 72px !important;
  }
  .mlr-72-pc {
    margin-inline: 72px !important;
  }
}
/* パディング関連クラス */
.p-72 {
  padding: 72px !important;
}

.pt-72 {
  padding-top: 72px !important;
}

.pb-72 {
  padding-bottom: 72px !important;
}

.ptb-72 {
  padding-block: 72px !important;
}

.pl-72 {
  padding-left: 72px !important;
}

.pr-72 {
  padding-right: 72px !important;
}

.plr-72 {
  padding-inline: 72px !important;
}

@media (min-width: 768px) {
  .p-72-pc {
    padding: 72px !important;
  }
  .pt-72-pc {
    padding-top: 72px !important;
  }
  .pb-72-pc {
    padding-bottom: 72px !important;
  }
  .ptb-72-pc {
    padding-block: 72px !important;
  }
  .pl-72-pc {
    padding-left: 72px !important;
  }
  .pr-72-pc {
    padding-right: 72px !important;
  }
  .plr-72-pc {
    padding-inline: 72px !important;
  }
}
.fs-72 {
  font-size: 72px !important;
}

@media (min-width: 768px) {
  .fs-72-pc {
    font-size: 72px !important;
  }
}
/* マージン関連クラス */
.m-80 {
  margin: 80px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mtb-80 {
  margin-block: 80px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.mlr-80 {
  margin-inline: 80px !important;
}

@media (min-width: 768px) {
  .m-80-pc {
    margin: 80px !important;
  }
  .mt-80-pc {
    margin-top: 80px !important;
  }
  .mb-80-pc {
    margin-bottom: 80px !important;
  }
  .mtb-80-pc {
    margin-block: 80px !important;
  }
  .ml-80-pc {
    margin-left: 80px !important;
  }
  .mr-80-pc {
    margin-right: 80px !important;
  }
  .mlr-80-pc {
    margin-inline: 80px !important;
  }
}
/* パディング関連クラス */
.p-80 {
  padding: 80px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.ptb-80 {
  padding-block: 80px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.plr-80 {
  padding-inline: 80px !important;
}

@media (min-width: 768px) {
  .p-80-pc {
    padding: 80px !important;
  }
  .pt-80-pc {
    padding-top: 80px !important;
  }
  .pb-80-pc {
    padding-bottom: 80px !important;
  }
  .ptb-80-pc {
    padding-block: 80px !important;
  }
  .pl-80-pc {
    padding-left: 80px !important;
  }
  .pr-80-pc {
    padding-right: 80px !important;
  }
  .plr-80-pc {
    padding-inline: 80px !important;
  }
}
.fs-80 {
  font-size: 80px !important;
}

@media (min-width: 768px) {
  .fs-80-pc {
    font-size: 80px !important;
  }
}
/* マージン関連クラス */
.m-88 {
  margin: 88px !important;
}

.mt-88 {
  margin-top: 88px !important;
}

.mb-88 {
  margin-bottom: 88px !important;
}

.mtb-88 {
  margin-block: 88px !important;
}

.ml-88 {
  margin-left: 88px !important;
}

.mr-88 {
  margin-right: 88px !important;
}

.mlr-88 {
  margin-inline: 88px !important;
}

@media (min-width: 768px) {
  .m-88-pc {
    margin: 88px !important;
  }
  .mt-88-pc {
    margin-top: 88px !important;
  }
  .mb-88-pc {
    margin-bottom: 88px !important;
  }
  .mtb-88-pc {
    margin-block: 88px !important;
  }
  .ml-88-pc {
    margin-left: 88px !important;
  }
  .mr-88-pc {
    margin-right: 88px !important;
  }
  .mlr-88-pc {
    margin-inline: 88px !important;
  }
}
/* パディング関連クラス */
.p-88 {
  padding: 88px !important;
}

.pt-88 {
  padding-top: 88px !important;
}

.pb-88 {
  padding-bottom: 88px !important;
}

.ptb-88 {
  padding-block: 88px !important;
}

.pl-88 {
  padding-left: 88px !important;
}

.pr-88 {
  padding-right: 88px !important;
}

.plr-88 {
  padding-inline: 88px !important;
}

@media (min-width: 768px) {
  .p-88-pc {
    padding: 88px !important;
  }
  .pt-88-pc {
    padding-top: 88px !important;
  }
  .pb-88-pc {
    padding-bottom: 88px !important;
  }
  .ptb-88-pc {
    padding-block: 88px !important;
  }
  .pl-88-pc {
    padding-left: 88px !important;
  }
  .pr-88-pc {
    padding-right: 88px !important;
  }
  .plr-88-pc {
    padding-inline: 88px !important;
  }
}
.fs-88 {
  font-size: 88px !important;
}

@media (min-width: 768px) {
  .fs-88-pc {
    font-size: 88px !important;
  }
}
/* マージン関連クラス */
.m-96 {
  margin: 96px !important;
}

.mt-96 {
  margin-top: 96px !important;
}

.mb-96 {
  margin-bottom: 96px !important;
}

.mtb-96 {
  margin-block: 96px !important;
}

.ml-96 {
  margin-left: 96px !important;
}

.mr-96 {
  margin-right: 96px !important;
}

.mlr-96 {
  margin-inline: 96px !important;
}

@media (min-width: 768px) {
  .m-96-pc {
    margin: 96px !important;
  }
  .mt-96-pc {
    margin-top: 96px !important;
  }
  .mb-96-pc {
    margin-bottom: 96px !important;
  }
  .mtb-96-pc {
    margin-block: 96px !important;
  }
  .ml-96-pc {
    margin-left: 96px !important;
  }
  .mr-96-pc {
    margin-right: 96px !important;
  }
  .mlr-96-pc {
    margin-inline: 96px !important;
  }
}
/* パディング関連クラス */
.p-96 {
  padding: 96px !important;
}

.pt-96 {
  padding-top: 96px !important;
}

.pb-96 {
  padding-bottom: 96px !important;
}

.ptb-96 {
  padding-block: 96px !important;
}

.pl-96 {
  padding-left: 96px !important;
}

.pr-96 {
  padding-right: 96px !important;
}

.plr-96 {
  padding-inline: 96px !important;
}

@media (min-width: 768px) {
  .p-96-pc {
    padding: 96px !important;
  }
  .pt-96-pc {
    padding-top: 96px !important;
  }
  .pb-96-pc {
    padding-bottom: 96px !important;
  }
  .ptb-96-pc {
    padding-block: 96px !important;
  }
  .pl-96-pc {
    padding-left: 96px !important;
  }
  .pr-96-pc {
    padding-right: 96px !important;
  }
  .plr-96-pc {
    padding-inline: 96px !important;
  }
}
.fs-96 {
  font-size: 96px !important;
}

@media (min-width: 768px) {
  .fs-96-pc {
    font-size: 96px !important;
  }
}
/* width */
.w-fit {
  width: fit-content !important;
}

.w-100 {
  width: 100% !important;
}

/* Max Width */
.max-w-content {
  max-width: 1000px !important;
}

.max-w-100 {
  max-width: 100% !important;
}

/*--------------------------------------------------------------------------
  Text Utilities
---------------------------------------------------------------------------*/
/* Text Alignment */
.text-center {
  text-align: center !important;
}

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

.text-right {
  text-align: right !important;
}

/* Font Weight */
.font-300 {
  font-weight: 300 !important;
}

.font-400 {
  font-weight: 400 !important;
}

.font-500 {
  font-weight: 500 !important;
}

.font-600 {
  font-weight: 600 !important;
}

.font-700 {
  font-weight: 700 !important;
}

.font-800 {
  font-weight: 800 !important;
}

.font-900 {
  font-weight: 900 !important;
}

/* Line Height */
.lh-10 {
  line-height: 1 !important;
}

.lh-11 {
  line-height: 1.1 !important;
}

.lh-12 {
  line-height: 1.2 !important;
}

.lh-13 {
  line-height: 1.3 !important;
}

.lh-14 {
  line-height: 1.4 !important;
}

.lh-15 {
  line-height: 1.5 !important;
}

.lh-16 {
  line-height: 1.6 !important;
}

.lh-18 {
  line-height: 1.8 !important;
}

.lh-20 {
  line-height: 2 !important;
}

/* Text Decoration */
.underline {
  text-decoration: underline;
}

/* Text Transform */
.uppercase {
  text-transform: uppercase !important;
}

.capitalize {
  text-transform: capitalize !important;
}

.normal-case {
  text-transform: none !important;
}

/*--------------------------------------------------------------------------
  List Utilities
--------------------------------------------------------------------------*/
.dotted-list {
  list-style: "・";
  list-style-position: outside;
  padding-left: 14px;
}
.dotted-list li {
  margin-bottom: 8px;
}/*# sourceMappingURL=style.css.map */