@charset "UTF-8";
* {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

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

a {
  text-decoration: none;
}

img {
  border: none;
  vertical-align: bottom;
}

address {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

body {
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  color: #303030;
  letter-spacing: 0.2em;
}

body.is-scroll {
  overflow: hidden;
}

@media (min-width: 820px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

.header {
  width: 100%;
  height: 120px;
  background: #9a8a61;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 80px;
  }
}
@media screen and (max-width: 820px) {
  .header {
    height: 50px;
  }
}

.header__logo {
  width: 244px;
  aspect-ratio: 244/78;
  flex-shrink: 0;
  margin-left: 60px;
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 150px;
    margin-left: 30px;
  }
}
@media screen and (max-width: 820px) {
  .header__logo {
    width: 94px;
    margin-left: 16px;
  }
}

.header__logo a {
  transition: 0.3s;
}
.header__logo a:hover {
  opacity: 0.7;
}

.header__link-box {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__nav {
  height: inherit;
}
@media screen and (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  height: inherit;
  display: flex;
  gap: 36px;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item:nth-child(3) {
  display: none;
}

.header__nav-item a {
  display: grid;
  place-content: center;
  height: inherit;
  padding: 16px 18px 0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 3.14;
  position: relative;
}

.header__nav-link:hover::after {
  content: "";
  width: 68px;
  height: 10px;
  background: #82734d;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}

.header__nav-sub-list {
  display: none;
  width: 260px;
  position: absolute;
  top: 120px;
  z-index: 10;
}

.header__nav-item:hover .header__nav-sub-list,
.header__nav-sub-list:hover {
  display: block;
}

.header__nav-item:nth-child(2) {
  position: relative;
}

.header__nav-sub-item {
  display: flex;
  align-items: center;
  height: 60px;
  background: #fff;
}

.header__nav-sub-item a {
  display: block;
  width: 100%;
  color: #000;
  font-size: 16px;
  letter-spacing: 0.1em;
  padding: 0 0 0 38px;
}

.header__nav-sub-item a:hover {
  background: #BCB39F;
}

.language-change {
  display: none;
  height: inherit;
}
@media screen and (max-width: 1024px) {
  .language-change {
    display: none;
  }
}

.language-change .header-btn {
  background: #bcb39f;
}

.header__contact-btn-box {
  margin-left: 78px;
  height: inherit;
}
@media screen and (max-width: 1024px) {
  .header__contact-btn-box {
    display: none;
  }
}

/*========= 追従ボタン追加 CSS ===============*/
body {
  position: relative;
}

.body__sns-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: fixed;
  bottom: 35vh;
  right: 10px;
  z-index: 100;
}

.body__sns-item {
  width: 36px;
  height: 36px;
}

.body__fixed-button {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.body__fixed-button.is-active {
  opacity: 1;
  visibility: visible;
}

.body__fixed-button.is-hidden {
  opacity: 0;
  visibility: hidden;
}

@media screen and (min-width: 500px) {
  .body__sns-item {
    width: 60px;
    height: 60px;
  }
}

/*========= ナビゲーションのためのCSS ===============*/
.g-nav {
  pointer-events: none;
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  /*ナビの高さ*/
  background: #EEE7D7;
  /*動き*/
  transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
.g-nav.panelactive {
  opacity: 1;
  z-index: 40;
  pointer-events: all;
}

/*ナビゲーション*/
.g-nav-contents {
  position: absolute;
  z-index: 40;
  top: 54px;
  left: 40px;
}

.g-nav.panelactive ul {
  display: block;
}

.g-nav-list {
  display: none;
}

.g-nav-item {
  color: #000;
  font-size: 16px;
  letter-spacing: 0.2em;
  line-height: 2.38;
}

.g-nav-item:nth-child(2) {
  margin-top: 4px;
}

.g-nav-item:nth-child(3) {
  margin-top: 16px;
  display: none;
}

.g-nav-item a {
  color: #000;
  display: block;
  font-size: 16px;
  letter-spacing: 0.2em;
  line-height: 2.38;
  transition: 0.3s;
}

.g-nav-sub-list {
  padding: 6px 0 0 42px;
}

.g-nav-sub-item a {
  line-height: 2.71;
}

.g-nav-language {
  display: none;
  margin-top: 32px;
  width: 210px;
  height: 50px;
  border: 1px solid #303030;
}

.g-nav-language a,
.g-nav-contact a {
  display: grid;
  place-content: center;
  color: #000;
  font-size: 14px;
  line-height: 2.71;
  letter-spacing: 0.2em;
}

.g-nav-contact {
  margin-top: 16px;
  width: 210px;
  height: 50px;
  border: 1px solid #303030;
}

.g-nav-contact a {
  height: 100%;
  display: grid;
  place-content: center;
}

/*========= ボタンのためのCSS ===============*/
.menu-btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .menu-btn {
    display: block;
    cursor: pointer;
    width: 54px;
    height: 50px;
    position: relative;
  }
}

.menu-btn.active {
  top: 57px;
  right: 16px;
  z-index: 50;
}

/*×に変化*/
.menu-btn span {
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: #fff;
  transition: all 0.4s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
}

.menu-btn span:nth-of-type(1) {
  top: 17px;
}

.menu-btn span:nth-of-type(2) {
  top: 26px;
}

.menu-btn span:nth-of-type(3) {
  top: 34px;
}

.menu-btn.active span:nth-of-type(1) {
  width: 50px;
  background: #303030;
  top: 18px;
  transform: translateX(-50%) translateY(6px) rotate(-45deg);
}

.menu-btn.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-btn.active span:nth-of-type(3) {
  width: 50px;
  background: #303030;
  top: 30px;
  transform: translateX(-50%) translateY(-6px) rotate(45deg);
}

.footer {
  background: #686868;
  background-size: cover;
  background-position: bottom;
  height: 427px;
  padding: 78px 0 105px;
}
@media screen and (max-width: 820px) {
  .footer {
    height: auto;
    padding: 50px 0 20px;
  }
}

.footer__contents {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 820px) {
  .footer__contents {
    flex-direction: column;
  }
}

.footer__logo {
  width: 281px;
  aspect-ratio: 281/90;
}
@media screen and (max-width: 1024px) {
  .footer__logo {
    width: 220px;
  }
}
@media screen and (max-width: 820px) {
  .footer__logo {
    width: 144px;
    margin-inline: auto;
  }
}

.footer__logo-link {
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.footer__logo-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (any-hover: hover) {
  .footer__logo-link:hover {
    opacity: 0.7;
  }
}
.footer__nav {
  display: flex;
  justify-content: end;
  align-items: center;
}
@media screen and (max-width: 820px) {
  .footer__nav {
    justify-content: end;
    gap: 65px;
    margin-top: 24px;
  }
}

.footer__sns-list {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 820px) {
  .footer__sns-list {
    gap: 15px;
  }
}

.footer__sns-item {
  width: 36px;
  height: 36px;
}
@media screen and (max-width: 820px) {
  .footer__sns-item {
    width: 28px;
    height: 28px;
  }
}

.footer__sns-link {
  display: block;
  transition: 0.3s;
}
.footer__sns-link img {
  width: 100%;
  height: 100%;
}

@media (any-hover: hover) {
  .footer__sns-link:hover {
    opacity: 0.7;
  }
}
.footer__contact-list {
  display: flex;
  margin-top: 29px;
}
@media screen and (max-width: 820px) {
  .footer__contact-list {
    justify-content: center;
    margin-top: 20px;
  }
}

.footer__contact-item {
  border: solid 1px #fff;
  font-size: 15px;
  letter-spacing: 0.3em;
}

.footer__contact-item:not(:first-child) {
  border-left: none;
}

.footer__contact-item:nth-child(3) a {
  letter-spacing: 0.1em;
}

.footer__contact-link {
  display: grid;
  place-content: center;
  width: 121px;
  height: 66px;
  color: #fff;
  font-size: 15px;
  line-height: 2.93;
  letter-spacing: 0.3em;
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  .footer__contact-link {
    width: 30vw;
    min-width: 80px;
    font-size: 12px;
  }
}

@media (any-hover: hover) {
  .footer__contact-link:hover {
    background: #414141;
  }
}
.footer__privacy-policy {
  margin-top: 20px;
}

.footer__privacy-policy a {
  display: block;
  -webkit-text-decoration: underline 1px solid;
          text-decoration: underline 1px solid;
  text-underline-offset: 3px;
  color: #fff;
  font-size: 12px;
  text-align: right;
}
@media screen and (max-width: 820px) {
  .footer__privacy-policy a {
    font-size: 10px;
  }
}

.footer__small {
  margin-top: 29px;
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 3.14;
  letter-spacing: normal;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .footer__small {
    margin-top: 50px;
    font-size: 8px;
  }
}

.top-main-visual__video-box {
  width: 100%;
}
@media screen and (max-width: 820px) {
  .top-main-visual__video-box {
    aspect-ratio: 320/360;
  }
}
.top-main-visual__video-box video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-main-visual__img {
  display: none;
  width: 100%;
  aspect-ratio: 1440/809;
}
@media screen and (max-width: 820px) {
  .top-main-visual__img {
    aspect-ratio: 320/360;
  }
}
.top-main-visual__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-news {
  display: none;
  height: 280px;
  background: #7a918d;
}
@media screen and (max-width: 820px) {
  .top-news {
    height: auto;
  }
}

.top-news__inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 820px) {
  .top-news__inner {
    justify-content: space-between;
    align-items: start;
    padding: 18px 0;
  }
}

.top-news__title-box {
  width: 185px;
}
@media screen and (max-width: 820px) {
  .top-news__title-box {
    width: auto;
    padding-top: 6px;
  }
}

.section-title.top-news__title {
  color: #fff;
  line-height: normal;
}
@media screen and (max-width: 820px) {
  .section-title.top-news__title {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
}

.top-news__sub-title {
  margin-top: 6px;
  color: #fff;
  line-height: 2.75;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 820px) {
  .top-news__sub-title {
    font-size: 10px;
    line-height: normal;
  }
}

.top-news__list {
  max-width: 600px;
  padding: 16px 0 16px 60px;
  border-left: 1px solid #fff;
}
@media screen and (max-width: 820px) {
  .top-news__list {
    padding: 0 0 0 32px;
  }
}

@media screen and (max-width: 820px) {
  .top-news__item:not(:first-child) {
    margin-top: 6px;
  }
}

.top-news__item-link {
  display: flex;
  gap: 33px;
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  .top-news__item-link {
    flex-direction: column;
    gap: 0px;
  }
}

@media (any-hover: hover) {
  .top-news__item-link:hover {
    opacity: 0.7;
  }
}
.top-news__item-date {
  color: #fff;
  font-size: 12px;
  line-height: 3.67;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 820px) {
  .top-news__item-date {
    font-size: 8px;
    line-height: 1.4;
  }
}

.top-news__item-text {
  color: #fff;
  font-size: 14px;
  line-height: 3.14;
  letter-spacing: 0.1em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 820px) {
  .top-news__item-text {
    font-size: 10px;
    line-height: 1.8;
  }
}

.top-about {
  padding: 120px 0 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .top-about {
    padding: 53px 0 70px;
  }
}

.top-about__inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-left: 13.8888888889vw;
}
@media screen and (max-width: 1024px) {
  .top-about__inner {
    padding: 0 0 0 15px;
  }
}

.top-about__title {
  width: 185px;
  color: #343434;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 820px) {
  .top-about__title {
    width: 105px;
  }
}
.top-about__title::after {
  content: "";
  display: block;
  width: calc(328px + 50vw);
  height: 1px;
  background: #303030;
  position: absolute;
  top: 50%;
  left: 192px;
}
@media screen and (max-width: 820px) {
  .top-about__title::after {
    left: 105px;
  }
}

.top-about__company-box {
  display: flex;
  margin-top: 37px;
}
@media screen and (max-width: 1024px) {
  .top-about__company-box {
    margin-top: 36px;
  }
}
@media screen and (max-width: 820px) {
  .top-about__company-box {
    flex-direction: column;
  }
}

.top-about__company {
  font-size: 36px;
  letter-spacing: 0.3em;
  line-height: 1.444;
}
@media screen and (max-width: 1024px) {
  .top-about__company {
    font-size: 30px;
  }
}
@media screen and (max-width: 820px) {
  .top-about__company {
    font-size: 24px;
    line-height: normal;
  }
}

.top-about__company-en {
  margin-left: 24px;
  font-family: "Amiri", serif;
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1.767;
  line-height: 53px;
}
@media screen and (max-width: 1024px) {
  .top-about__company-en {
    font-size: 26px;
  }
}
@media screen and (max-width: 820px) {
  .top-about__company-en {
    font-size: 16px;
    margin-top: 10px;
    margin-left: 0;
    line-height: normal;
  }
}

.top-about__head {
  margin-top: 41px;
  font-size: 34px;
  line-height: 1.44;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 1024px) {
  .top-about__head {
    font-size: 28px;
  }
}
@media screen and (max-width: 820px) {
  .top-about__head {
    margin-top: 10px;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.2em;
  }
}

.top-about__container {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .top-about__container {
    margin-top: 20px;
    flex-direction: column-reverse;
  }
}

.top-about__text {
  width: 41.1290322581%;
  line-height: 2.63;
}
@media screen and (max-width: 1024px) {
  .top-about__text {
    margin-top: 30px;
    width: 100%;
    padding-right: 15px;
  }
}
@media screen and (max-width: 820px) {
  .top-about__text {
    font-size: 12px;
    line-height: 2.5;
    letter-spacing: 0.2em;
  }
}

.top-about__img {
  width: 52.2580645161%;
  aspect-ratio: 648/510;
  margin-top: 13px;
}
@media screen and (max-width: 1024px) {
  .top-about__img {
    width: 100%;
    margin-top: 0px;
  }
}
@media screen and (max-width: 820px) {
  .top-about__img {
    aspect-ratio: 305/258;
  }
}
.top-about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-medical {
  padding: 87px 0 89px 0;
  background: #44655f;
}
@media screen and (max-width: 1024px) {
  .top-medical {
    padding: 60px 0 60px;
  }
}

.top-medical__inner {
  position: relative;
}

.top-medical__title {
  width: 185px;
  color: #fff;
  text-align: right;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 820px) {
  .top-medical__title {
    width: 87px;
  }
}
.top-medical__title::after {
  content: "";
  width: calc(335px + 50vw);
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 185px;
}
@media screen and (max-width: 820px) {
  .top-medical__title::after {
    right: 87px;
  }
}

.top-medical__list {
  margin-top: 33px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 2fr));
  gap: 0;
}
@media screen and (max-width: 1024px) {
  .top-medical__list {
    margin-top: 50px;
    grid-template-columns: 1fr;
  }
}

.top-medical__item {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 520/350;
  margin-inline: auto;
  border: 1px solid #fff;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .top-medical__item {
    width: 100%;
    max-width: 520px;
  }
}

.top-medical__item:nth-child(2) {
  border-left: none;
}
@media screen and (max-width: 1024px) {
  .top-medical__item:nth-child(2) {
    border-left: 1px solid #fff;
    border-top: none;
  }
}

.top-medical__item:nth-child(3),
.top-medical__item:nth-child(5) {
  border-top: none;
}

.top-medical__item:nth-child(4),
.top-medical__item:nth-child(6) {
  border-left: none;
  border-top: none;
}
@media screen and (max-width: 1024px) {
  .top-medical__item:nth-child(4),
  .top-medical__item:nth-child(6) {
    border-left: 1px solid #fff;
  }
}

@media screen and (max-width: 1024px) {
  .top-medical__item:not(:first-child) {
    border-top: none;
  }
}

.top-medical__item-link {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: 0.3em;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .top-medical__item-link {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  }
}
.top-medical__item-link img {
  width: 100%;
  height: 100%;
  mix-blend-mode: soft-light;
  transition: 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .top-medical__item-link img {
    mix-blend-mode: normal;
  }
}

@media (any-hover: hover) {
  .top-medical__item-link:hover {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    mix-blend-mode: normal;
    transform: scale(1.2, 1.2);
  }
}
.top-medical__item-text {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: 0.3em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
@media screen and (max-width: 820px) {
  .top-medical__item-text {
    font-size: 20px;
    line-height: 2.2;
  }
}

.top-medical__item-text .text-small {
  font-size: 16px;
}
@media screen and (max-width: 820px) {
  .top-medical__item-text .text-small {
    font-size: 12px;
  }
}

.top-medical__more {
  margin-top: 50px;
  display: none;
}
@media screen and (max-width: 1024px) {
  .top-medical__more {
    margin-top: 26px;
  }
}

.top-medical__more-link.more-btn {
  color: #fff;
}
.top-medical__more-link.more-btn::after {
  margin-left: 22px;
  border: solid 1px #fff;
}
@media screen and (max-width: 1024px) {
  .top-medical__more-link.more-btn::after {
    margin-left: 12px;
  }
}
.top-medical__more-link.more-btn::before {
  filter: brightness(0) invert(1);
}

@media (any-hover: hover) {
  .top-medical__more-link:hover::after {
    background: #fff;
  }
  .top-medical__more-link:hover::before {
    filter: brightness(0);
  }
}
.top-clinic {
  padding: 100px 0;
  background: #e8e8e8;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .top-clinic {
    padding: 60px 0 60px;
  }
}

.top-clinic__title {
  width: 135px;
  color: #343434;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 820px) {
  .top-clinic__title {
    width: 77px;
  }
}
.top-clinic__title::after {
  content: "";
  display: block;
  width: calc(369px + 50vw);
  height: 1px;
  background: #303030;
  position: absolute;
  top: 50%;
  left: 142px;
}
@media screen and (max-width: 820px) {
  .top-clinic__title::after {
    left: 77px;
  }
}

.top-clinic__container {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 39px;
}
@media screen and (max-width: 1024px) {
  .top-clinic__container {
    margin-top: 26px;
    flex-direction: column;
    align-items: start;
    gap: 30px;
  }
}

.top-clinic__text-box {
  width: 511px;
}
@media screen and (max-width: 1024px) {
  .top-clinic__text-box {
    width: 100%;
  }
}

.top-clinic__info {
  font-size: 18px;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 820px) {
  .top-clinic__info {
    font-size: 12px;
  }
}

.top-clinic__company {
  margin-top: 23px;
  font-size: 28px;
  letter-spacing: 0.3em;
  line-height: normal;
}
@media screen and (max-width: 820px) {
  .top-clinic__company {
    margin-top: 9px;
    font-size: 22px;
    line-height: 1.89;
  }
}
.top-clinic__company .text-small {
  font-size: 22px;
}
@media screen and (max-width: 820px) {
  .top-clinic__company .text-small {
    font-size: 19px;
  }
}

.top-clinic__address {
  margin-top: 20px;
  color: #000;
  line-height: 2.19;
  letter-spacing: 0.1em;
  padding: 0 11px 0 22px;
  position: relative;
}
@media screen and (max-width: 820px) {
  .top-clinic__address {
    margin-top: 21px;
    padding: 0 8px 0 22px;
    font-size: 12px;
    line-height: 2.17;
  }
}
.top-clinic__address a {
  color: #000;
}
.top-clinic__address::before {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 20px);
  background: #303030;
  position: absolute;
  top: 10px;
  left: 0;
}
@media screen and (max-width: 820px) {
  .top-clinic__address::before {
    height: calc(100% - 8px);
    top: 4px;
  }
}

.top-clinic__text-list {
  margin-top: 20px;
  padding-left: 16px;
}
@media screen and (max-width: 820px) {
  .top-clinic__text-list {
    margin-top: 27px;
  }
}

.top-clinic__text-item {
  list-style: disc;
  color: #000;
  line-height: 1.94;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 820px) {
  .top-clinic__text-item {
    font-size: 12px;
    line-height: 2.17;
  }
}
.top-clinic__text-item::marker {
  font-size: 6px;
}
@media screen and (max-width: 820px) {
  .top-clinic__text-item::marker {
    font-size: 4px;
  }
}

/* 診察時間テーブル */
.top-clinic__table {
  display: grid;
  grid-template-columns: 1fr repeat(7, 55px); /* 最初の列は幅を自動、残りは55pxずつ */
  gap: 1px;
  width: 100%;
  max-width: 490px;
  aspect-ratio: 490/300;
  background-color: #A5B9B6; /* 外側の枠線用カラー */
  position: relative;
}
@media screen and (max-width: 500px) {
  .top-clinic__table {
    grid-template-columns: 1.8fr repeat(7, 1fr);
  }
}
.top-clinic__table::before {
  content: "";
  width: 100%;
  height: 4px;
  background: #6d8782;
  position: absolute;
  top: -4px;
  left: 0;
}
@media screen and (max-width: 500px) {
  .top-clinic__table::before {
    height: 2px;
    top: -2px;
  }
}

.top-clinic__table-header,
.top-clinic__table-cell {
  padding: 6px;
  background-color: #7a918d; /* セルの背景色 */
  color: #fff;
  text-align: center;
  place-content: center;
  font-weight: 600;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 500px) {
  .top-clinic__table-header,
  .top-clinic__table-cell {
    font-size: 10px;
  }
}

.top-clinic__table-cell {
  line-height: 1.5;
}

.top-clinic__table-cell.circle {
  font-size: 20px;
}
@media screen and (max-width: 500px) {
  .top-clinic__table-cell.circle {
    font-size: 12px;
  }
}

.top-clinic__contact-list {
  margin-top: 71px;
  display: flex;
}
@media screen and (max-width: 820px) {
  .top-clinic__contact-list {
    margin-top: 30px;
    flex-direction: column;
  }
}

.top-clinic__contact-item {
  width: 346px;
  aspect-ratio: 346/200;
  mix-blend-mode: multiply;
  border: 1px solid #303030;
}
@media screen and (max-width: 820px) {
  .top-clinic__contact-item {
    width: 290px;
    height: 100px;
    max-width: 346px;
    margin-inline: auto;
  }
}

.top-clinic__contact-item:not(:first-child) {
  border-left: none;
}
@media screen and (max-width: 820px) {
  .top-clinic__contact-item:not(:first-child) {
    border-left: 1px solid #303030;
    border-top: none;
  }
}

.top-clinic__contact-item:nth-child(2) .top-clinic__contact-link::before {
  background: url(../img/clinic-contact02.png) no-repeat;
  background-size: contain;
  padding-bottom: 18px;
}
@media screen and (max-width: 820px) {
  .top-clinic__contact-item:nth-child(2) .top-clinic__contact-link::before {
    padding-bottom: 0;
  }
}

.top-clinic__contact-item:nth-child(3) .top-clinic__contact-link::before {
  background: url(../img/clinic-contact03.png) no-repeat;
  background-size: contain;
  padding-bottom: 18px;
}
@media screen and (max-width: 820px) {
  .top-clinic__contact-item:nth-child(3) .top-clinic__contact-link::before {
    padding-bottom: 0;
  }
}

.top-clinic__contact-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 200px;
  color: #303030;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.3em;
  padding-top: 50px;
  transition: 0.3s;
  white-space: nowrap;
}
@media screen and (max-width: 820px) {
  .top-clinic__contact-link {
    display: block;
    height: 100%;
    font-size: 12px;
    text-align: center;
    padding-top: 12px;
  }
}
.top-clinic__contact-link::before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background: url(../img/clinic-contact01.png) no-repeat;
  background-size: contain;
  padding-bottom: 6px;
}
@media screen and (max-width: 820px) {
  .top-clinic__contact-link::before {
    display: inline-block;
    width: 20px;
    height: 20px;
    padding-bottom: 0;
    margin-right: 10px;
    position: relative;
    bottom: -4px;
  }
}

.top-clinic__contact-link .font-large {
  font-size: 20px;
}
@media screen and (max-width: 820px) {
  .top-clinic__contact-link .font-large {
    font-size: 18px;
  }
}

.top-clinic__contact-item:nth-child(2) .top-clinic__contact-link,
.top-clinic__contact-item:nth-child(3) .top-clinic__contact-link {
  letter-spacing: 0.2em;
}
@media screen and (max-width: 820px) {
  .top-clinic__contact-item:nth-child(2) .top-clinic__contact-link,
  .top-clinic__contact-item:nth-child(3) .top-clinic__contact-link {
    padding-top: 30px;
  }
}

@media (any-hover: hover) {
  .top-clinic__contact-link:hover {
    background: #e8e8e8;
  }
}
.top-access {
  padding: 80px 0 100px 0;
}
@media screen and (max-width: 1024px) {
  .top-access {
    padding: 60px 0 60px;
  }
}

.top-access__title {
  margin-left: auto;
  width: 165px;
  color: #343434;
  position: relative;
  text-align: right;
}
@media screen and (max-width: 820px) {
  .top-access__title {
    width: 87px;
  }
}
.top-access__title::after {
  content: "";
  width: calc(375px + 50vw);
  height: 1px;
  background: #303030;
  position: absolute;
  top: 50%;
  right: 165px;
}
@media screen and (max-width: 820px) {
  .top-access__title::after {
    right: 87px;
  }
}

.top-access__map {
  margin-top: 46px;
  width: 100%;
  aspect-ratio: 1440/620;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-access__map {
    margin-top: 30px;
    aspect-ratio: 1/1;
  }
}
.top-access__map iframe {
  width: 100%;
  height: 100%;
}
.top-access__map::after {
  content: "";
  width: 72%;
  max-width: 1040px;
  height: 1px;
  background: #303030;
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .top-access__map::after {
    width: calc(100% - 30px);
    bottom: -59px;
  }
}

.top-access__youtube {
  margin-top: 160px;
  width: 100%;
  aspect-ratio: 560/315;
  position: relative;
}
.top-access__youtube iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 820px) {
  .top-access__youtube {
    margin-top: 100px;
  }
}
.top-access__youtube::after {
  content: "";
  width: 100%;
  max-width: 1040px;
  height: 1px;
  background: #303030;
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .top-access__youtube::after {
    width: calc(100% - 30px);
    bottom: -40px;
  }
}

.top-access__swiper {
  margin-top: 160px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-access__swiper {
    margin-top: 100px;
  }
}

.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  display: flex; /* 画像が縦方向に中央揃えされるように */
  justify-content: center;
  align-items: center;
  height: auto; /* 高さを自動に設定 */
}

.top-access__swiper-img {
  width: 52.2222222222vw;
  aspect-ratio: 752/500;
}
@media screen and (max-width: 820px) {
  .top-access__swiper-img {
    width: 89.3333333333vw;
    aspect-ratio: 1/1;
  }
}
.top-access__swiper-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.price .page-title {
  letter-spacing: 1em;
}
@media screen and (max-width: 1024px) {
  .price .page-title {
    letter-spacing: 0.5em;
  }
}

.price__nav {
  margin-top: 33px;
}
@media screen and (max-width: 1024px) {
  .price__nav {
    margin-top: 30px;
  }
}

.price__nav-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 100px;
  border-top: 1px solid #303030;
  border-left: 1px solid #303030;
}
@media screen and (max-width: 820px) {
  .price__nav-list {
    grid-template-columns: repeat(auto-fit, minmax(97px, 1fr));
    grid-auto-rows: 50px;
  }
}

.price__nav-item {
  border-right: 1px solid #303030;
  border-bottom: 1px solid #303030;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .price__nav-item:hover {
    background: #9a8a61;
  }
}
.price__nav-link {
  display: block;
  width: 100%;
  height: 100%;
  place-content: center;
  color: #303030;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .price__nav-link {
    font-size: 10px;
    line-height: 1.6;
  }
}

@media (any-hover: hover) {
  .price__nav-link:hover {
    color: #fff;
  }
}
.price-section {
  overflow: hidden;
  margin-top: 60px;
}
@media screen and (max-width: 820px) {
  .price-section {
    margin-top: 50px;
  }
}

.price-section:last-child {
  margin-bottom: 320px;
}
@media screen and (max-width: 820px) {
  .price-section:last-child {
    margin-bottom: 174px;
  }
}

.price__grid {
  width: 100%;
  max-width: 1040px;
  border-top: 1px solid #303030;
  border-left: 1px solid #303030;
  display: grid;
  align-items: stretch;
  line-height: 2.13;
  letter-spacing: 0.1em;
}

/* ヘッダーセルのスタイル */
.price__grid-header {
  display: grid;
  place-content: center;
  background-color: #e2e2e2;
  border-right: 1px solid #303030;
  border-bottom: 1px solid #303030;
}
@media screen and (max-width: 820px) {
  .price__grid-header {
    font-size: 10px;
    letter-spacing: 0.1em;
    line-height: normal;
  }
}

.price__grid-header.wide {
  letter-spacing: 0.2em;
}

/* メインアイテム（左の大項目） */
.price__grid-menu {
  display: grid;
  align-items: center;
  background-color: #eee7d7;
  padding-left: 21px;
  border-right: 1px solid #303030;
  border-bottom: 1px solid #303030;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .price__grid-menu {
    font-size: 14px;
    padding-left: 8px;
  }
}
@media screen and (max-width: 820px) {
  .price__grid-menu {
    font-size: 12px;
    padding-left: 0;
    text-align: center;
  }
}

@media screen and (max-width: 820px) {
  .price__grid-menu.narrow {
    letter-spacing: normal;
  }
}

/* サブアイテムのスタイル */
.price__grid-item {
  display: grid;
  align-items: center;
  border-right: 1px solid #303030;
  border-bottom: 1px solid #303030;
}
@media screen and (max-width: 1024px) {
  .price__grid-item {
    font-size: 14px;
  }
}
@media screen and (max-width: 820px) {
  .price__grid-item {
    font-size: 10px;
  }
}

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

.price__grida-item .font-bold {
  font-weight: bold;
}

.price__grid-price {
  padding-left: 30px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1024px) {
  .price__grid-price {
    padding-left: 14px;
  }
}
@media screen and (max-width: 820px) {
  .price__grid-price {
    padding-left: 7px;
  }
}

.price__grid-span9 {
  grid-row: auto/span 9;
}

.price__grid-span7 {
  grid-row: auto/span 7;
}

.price__grid-span6 {
  grid-row: auto/span 6;
}

.price__grid-span4 {
  grid-row: auto/span 4;
}

.price__grid-span3 {
  grid-row: auto/span 3;
}

.price__grid-span2 {
  grid-row: auto/span 2;
}

.price__grid-c-span2 {
  grid-column: auto/span 2;
}

.price__grid-c-span3 {
  grid-column: auto/span 3;
}

.price__grid-c-span4 {
  grid-column: auto/span 4;
}

@media screen and (max-width: 820px) {
  .sp-c-span4 {
    grid-column: auto/span 4;
    grid-row: auto;
  }
}

@media screen and (max-width: 820px) {
  .sp-c-span3 {
    grid-column: auto/span 3;
    grid-row: auto;
  }
}

@media screen and (max-width: 820px) {
  .sp-c-span2 {
    grid-column: auto/span 2;
    grid-row: auto;
  }
}

@media screen and (max-width: 820px) {
  .sp-c-span1 {
    grid-column: auto;
    grid-row: auto;
  }
}

@media screen and (max-width: 820px) {
  .sp-top {
    grid-row: 1;
    grid-column: auto/span 3;
  }
}

@media screen and (max-width: 820px) {
  .price__grid-header.only-pc,
  .price__grid-menu.only-pc,
  .price__grid-item.only-pc {
    display: none;
  }
}

.price__grid-header.only-sp,
.price__grid-item.only-sp {
  display: none;
}
@media screen and (max-width: 820px) {
  .price__grid-header.only-sp,
  .price__grid-item.only-sp {
    display: grid;
  }
}

.price-section.monshin {
  margin-top: 150px;
}
@media screen and (max-width: 820px) {
  .price-section.monshin {
    margin-top: 53px;
  }
}

@media screen and (max-width: 820px) {
  .monshin .price__heading {
    letter-spacing: 0.3em;
  }
}

.price-monshin__grid {
  margin-top: 48px;
  border-top: 1px solid #303030;
  grid-template-columns: 19.2307692308% 61.5384615385% 19.2307692308%;
  grid-template-rows: 80px 80px;
}
@media screen and (max-width: 820px) {
  .price-monshin__grid {
    grid-template-columns: 22% 56% 22%;
    margin-top: 20px;
  }
}

.price-monshin__grid .price__grid-menu {
  font-size: 20px;
  padding-left: 40px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1024px) {
  .price-monshin__grid .price__grid-menu {
    font-size: 16px;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}
@media screen and (max-width: 820px) {
  .price-monshin__grid .price__grid-menu {
    font-size: 10px;
    padding-left: 10px;
  }
}

@media screen and (max-width: 820px) {
  .price-monshin__grid .price__grid-price {
    padding-left: 10px;
  }
}

.price-monshin__grid-detail {
  padding-left: 53px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .price-monshin__grid-detail {
    font-size: 14px;
  }
}
@media screen and (max-width: 820px) {
  .price-monshin__grid-detail {
    font-size: 10px;
    padding: 0 10px;
    line-height: 1.6;
    letter-spacing: 0.1em;
  }
}

.price-section.jiko {
  margin-top: 150px;
}
@media screen and (max-width: 820px) {
  .price-section.jiko {
    margin-top: 60px;
  }
}

.jiko .price__heading {
  letter-spacing: 0.2em;
}

.price-jiko__grid {
  margin-top: 48px;
  grid-template-columns: 21.1538461538% 47.8846153846% 11.8269230769% 19.2307692308%;
  grid-template-rows: 80px 80px 160px 80px 140px;
}
@media screen and (max-width: 820px) {
  .price-jiko__grid {
    margin-top: 20px;
    grid-template-columns: 42% 26% 32%;
    grid-template-rows: 40px repeat(2, 80px) 160px repeat(2, 80px);
  }
}

.price-jiko__grid-detail {
  padding-left: 28px;
}
@media screen and (max-width: 1024px) {
  .price-jiko__grid-detail {
    padding-left: 20px;
  }
}
@media screen and (max-width: 820px) {
  .price-jiko__grid-detail {
    padding-inline: 10px;
    line-height: 1.6;
    letter-spacing: 0.1em;
  }
}

.price-jiko__grid-detail.inline .font-bold {
  font-weight: bold;
}

.price-jiko__grid-detail.inline {
  display: inline-block;
  padding-top: 35px;
}
@media screen and (max-width: 820px) {
  .price-jiko__grid-detail.inline {
    padding-top: 8px;
    line-height: 1.6;
  }
}

.price__small {
  display: block;
  margin-top: 20px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 820px) {
  .price__small {
    margin-top: 8px;
    font-size: 8px;
    line-height: 1.75;
  }
}

.price-shimpi__grid {
  margin-top: 48px;
  grid-template-columns: 21.1538461538% 40.3846153846% 19.2307692308% 19.2307692308%;
  grid-template-rows: repeat(8, 80px);
}
@media screen and (max-width: 820px) {
  .price-shimpi__grid {
    margin-top: 20px;
    grid-template-columns: 45% 24% 31%;
    grid-template-rows: 40px repeat(8, 80px);
  }
}

.price-shimpi__grid-detail {
  padding-left: 28px;
}
@media screen and (max-width: 1024px) {
  .price-shimpi__grid-detail {
    padding-left: 20px;
  }
}
@media screen and (max-width: 820px) {
  .price-shimpi__grid-detail {
    padding-left: 10px;
    line-height: 1.6;
    letter-spacing: 0.1em;
  }
}

.exosome .price__heading {
  letter-spacing: 0.2em;
}

.price-exo__grid {
  margin-top: 40px;
  grid-template-columns: 25.9615384615% 48.0769230769% 6.7307692308% 19.2307692308%;
  grid-template-rows: 80px repeat(21, 60px);
}
@media screen and (max-width: 820px) {
  .price-exo__grid {
    margin-top: 20px;
    grid-template-columns: 51% 18% 31%;
    grid-template-rows: 40px 80px repeat(10, 40px) 80px repeat(7, 40px) 80px repeat(4, 40px) 80px repeat(3, 40px);
  }
}

.price-exo__grid-detail {
  padding-left: 56px;
}
@media screen and (max-width: 1024px) {
  .price-exo__grid-detail {
    padding-left: 38px;
  }
}
@media screen and (max-width: 820px) {
  .price-exo__grid-detail {
    padding-left: 24px;
    line-height: 1.6;
    letter-spacing: 0.1em;
  }
}

.prp .price__heading {
  letter-spacing: 0.2em;
}

.price-prp__grid {
  margin-top: 43px;
  grid-template-columns: 21.1538461538% 40.3846153846% 19.2307692308% 19.2307692308%;
  grid-template-rows: 80px repeat(6, 60px);
}
@media screen and (max-width: 820px) {
  .price-prp__grid {
    margin-top: 20px;
    grid-template-columns: 44% 24% 32%;
    grid-template-rows: repeat(8, 40px);
  }
}

.prp .price__grid-header {
  letter-spacing: 0.2em;
}

.price-prp__grid-detail {
  padding-left: 56px;
}
@media screen and (max-width: 1024px) {
  .price-prp__grid-detail {
    padding-left: 38px;
  }
}
@media screen and (max-width: 820px) {
  .price-prp__grid-detail {
    padding-left: 13px;
    line-height: 1.6;
    letter-spacing: 0.1em;
  }
}

.price-section.nk {
  margin-top: 180px;
}
@media screen and (max-width: 820px) {
  .price-section.nk {
    margin-top: 124px;
  }
}

.nk .price__heading {
  letter-spacing: 0.2em;
}

.price-nk__grid {
  margin-top: 43px;
  grid-template-columns: 25.9615384615% 42.9807692308% 11.8269230769% 19.2307692308%;
  grid-template-rows: repeat(3, 80px);
}
@media screen and (max-width: 820px) {
  .price-nk__grid {
    margin-top: 20px;
    grid-template-columns: 44% 24% 32%;
    grid-template-rows: 40px 80px 80px 80px;
  }
}

.price-section.acrs {
  margin-top: 180px;
}
@media screen and (max-width: 820px) {
  .price-section.acrs {
    margin-top: 124px;
  }
}

.price-acrs__grid {
  margin-top: 43px;
  grid-template-columns: 25.9615384615% 48.0769230769% 6.7307692308% 19.2307692308%;
  grid-template-rows: 80px repeat(6, 60px);
}
@media screen and (max-width: 820px) {
  .price-acrs__grid {
    margin-top: 20px;
    grid-template-columns: 50% 18% 32%;
    grid-template-rows: 40px 80px repeat(4, 40px) 80px repeat(3, 40px);
  }
}

.acrs .price__grid-item {
  letter-spacing: 0.2em;
}

@media screen and (max-width: 820px) {
  .price-acrs__grid .sp-top {
    grid-row: 1;
    grid-column: auto/span 3;
  }
}

.price-section.vista {
  margin-top: 180px;
}
@media screen and (max-width: 820px) {
  .price-section.vista {
    margin-top: 124px;
  }
}

.vista .price__heading {
  letter-spacing: 0.2em;
}

.price-vista__grid {
  margin-top: 43px;
  grid-template-columns: 36.5384615385% 37.5% 6.7307692308% 19.2307692308%;
  grid-template-rows: repeat(3, 80px);
}
@media screen and (max-width: 820px) {
  .price-vista__grid {
    margin-top: 20px;
    grid-template-columns: 44% 24% 32%;
    grid-template-rows: 40px repeat(2, 80px) 40px repeat(2, 80px);
  }
}

.vista .price__grid-item {
  letter-spacing: 0.2em;
}

@media screen and (max-width: 820px) {
  .price-vista__grid .sp-top {
    grid-row: 1;
    grid-column: auto/span 3;
  }
}

.price-section.derma {
  margin-top: 180px;
}
@media screen and (max-width: 820px) {
  .price-section.derma {
    margin-top: 124px;
  }
}

.price-derma__grid {
  margin-top: 48px;
  grid-template-columns: 25.9615384615% 48.0769230769% 6.7307692308% 19.2307692308%;
  grid-template-rows: 80px repeat(3, 60px);
}
@media screen and (max-width: 820px) {
  .price-derma__grid {
    margin-top: 20px;
    grid-template-columns: 50% 18% 32%;
    grid-template-rows: 40px 80px repeat(3, 40px);
  }
}

.derma .price__grid-item {
  letter-spacing: 0.2em;
}

@media screen and (max-width: 820px) {
  .price-derma__grid .sp-top {
    grid-row: 1;
    grid-column: auto/span 3;
  }
}

.price-section.beam {
  margin-top: 180px;
}
@media screen and (max-width: 820px) {
  .price-section.beam {
    margin-top: 124px;
  }
}

.beam .price__heading {
  letter-spacing: 0.2em;
}

.price-beam__grid {
  margin-top: 43px;
  grid-template-columns: 25.9615384615% 48.0769230769% 6.7307692308% 19.2307692308%;
  grid-template-rows: repeat(3, 80px);
}
@media screen and (max-width: 820px) {
  .price-beam__grid {
    margin-top: 20px;
    grid-template-columns: 50% 18% 32%;
    grid-template-rows: 40px repeat(2, 80px) 40px repeat(2, 80px);
  }
}

.beam .price__grid-item {
  letter-spacing: 0.2em;
}

.beam .price-beam__grid-detail {
  padding-left: 39px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .beam .price-beam__grid-detail {
    padding-left: 24px;
  }
}
@media screen and (max-width: 820px) {
  .beam .price-beam__grid-detail {
    padding-left: 10px;
    line-height: normal;
    letter-spacing: 0.1em;
  }
}

@media screen and (max-width: 820px) {
  .price-beam__grid .sp-top {
    grid-row: 1;
    grid-column: auto/span 3;
  }
}

.price-section.chusha {
  margin-top: 180px;
}
@media screen and (max-width: 820px) {
  .price-section.chusha {
    margin-top: 124px;
  }
}

.chusha .price__heading {
  letter-spacing: 0.2em;
}

.price-chusha__grid {
  margin-top: 43px;
  grid-template-columns: 36.5384615385% 37.5% 6.7307692308% 19.2307692308%;
  grid-template-rows: repeat(2, 80px) repeat(2, 60px) repeat(2, 80px);
}
@media screen and (max-width: 820px) {
  .price-chusha__grid {
    margin-top: 20px;
    grid-template-columns: 44% 24% 32%;
    grid-template-rows: 40px repeat(2, 80px) 40px 80px repeat(3, 40px) repeat(2, 80px) 40px repeat(2, 80px);
  }
}

.price-chusha__grid-detail {
  padding-left: 37px;
}
@media screen and (max-width: 1024px) {
  .price-chusha__grid-detail {
    padding-left: 24px;
  }
}
@media screen and (max-width: 820px) {
  .price-chusha__grid-detail {
    padding-inline: 13px;
    line-height: normal;
    letter-spacing: 0.1em;
  }
}

.price-section.tofu {
  margin-top: 180px;
}
@media screen and (max-width: 820px) {
  .price-section.tofu {
    margin-top: 124px;
  }
}

.tofu .price__heading {
  letter-spacing: 0.2em;
}

.price-tofu__grid {
  margin-top: 40px;
  grid-template-columns: 27.5% 53.2692307692% 19.2307692308%;
  grid-template-rows: repeat(6, 80px);
}
@media screen and (max-width: 820px) {
  .price-tofu__grid {
    margin-top: 20px;
    grid-template-columns: 68% 32%;
    grid-template-rows: 40px repeat(2, 80px) 40px repeat(2, 80px) 40px repeat(2, 80px) 40px repeat(2, 80px) 40px repeat(2, 80px);
  }
}

.tofu .price__grid-header {
  letter-spacing: 0.2em;
}

.tofu .price__grid-menu {
  letter-spacing: 0.2em;
}

.price-tofu__grid-detail {
  padding-left: 43px;
}
@media screen and (max-width: 1024px) {
  .price-tofu__grid-detail {
    padding-left: 28px;
  }
}
@media screen and (max-width: 820px) {
  .price-tofu__grid-detail {
    padding-inline: 13px;
    line-height: normal;
    letter-spacing: 0.1em;
  }
}

@media screen and (max-width: 820px) {
  .price-tofu__grid .sp-top {
    grid-row: 1;
    grid-column: auto/span 2;
  }
}

.price-section.tenteki {
  margin-top: 180px;
}
@media screen and (max-width: 820px) {
  .price-section.tenteki {
    margin-top: 124px;
  }
}

.price-tenteki__grid {
  margin-top: 48px;
  grid-template-columns: 21.1538461538% 52.8846153846% 6.7307692308% 19.2307692308%;
  grid-template-rows: 80px repeat(22, 60px);
}
@media screen and (max-width: 820px) {
  .price-tenteki__grid {
    margin-top: 20px;
    grid-template-columns: 50% 18% 32%;
    grid-template-rows: 40px 80px repeat(7, 40px) 80px repeat(7, 40px) 80px repeat(10, 40px) repeat(2, 80px);
  }
}

.price-tenteki-bottom__grid {
  grid-template-columns: 21.1538461538% 35.9615384615% 16.9230769231% 6.7307692308% 19.2307692308%;
  grid-template-rows: repeat(12, 60px) 80px;
  border-top: none;
}
@media screen and (max-width: 820px) {
  .price-tenteki-bottom__grid {
    grid-template-columns: 50% 18% 32%;
    grid-template-rows: 40px 80px repeat(4, 40px) 80px repeat(4, 40px) 80px repeat(4, 40px) 80px repeat(4, 40px) repeat(2, 80px);
  }
}

.tenteki .price__grid-item {
  letter-spacing: 0.2em;
}

.tenteki .price-tenteki__grid-detail {
  padding-left: 28px;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .tenteki .price-tenteki__grid-detail {
    padding-left: 20px;
  }
}
@media screen and (max-width: 820px) {
  .tenteki .price-tenteki__grid-detail {
    padding-left: 13px;
    line-height: normal;
    letter-spacing: 0.1em;
  }
}

.tenteki .price-tenteki__grid-mg {
  padding-inline: 30px;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .tenteki .price-tenteki__grid-mg {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 820px) {
  .tenteki .price-tenteki__grid-mg {
    padding-inline: 7px;
    letter-spacing: normal;
  }
}

@media screen and (max-width: 820px) {
  .price-tenteki__grid .sp-c-span1,
  .price-tenteki-bottom__grid .sp-c-span1 {
    grid-column: auto;
    grid-row: auto/span 3;
  }
}

@media screen and (max-width: 820px) {
  .sp-c-span2 {
    grid-column: auto/span 2;
    grid-row: auto;
  }
}

.price-section.soushin {
  margin-top: 180px;
}
@media screen and (max-width: 820px) {
  .price-section.soushin {
    margin-top: 124px;
  }
}

.price-soushin__grid {
  margin-top: 43px;
  grid-template-columns: 25.9615384615% 42.9807692308% 11.8269230769% 19.2307692308%;
  grid-template-rows: 80px repeat(2, 60px) 80px repeat(8, 60px);
}
@media screen and (max-width: 820px) {
  .price-soushin__grid {
    margin-top: 20px;
    grid-template-columns: 44% 24% 32%;
    grid-template-rows: 40px 80px repeat(3, 40px) repeat(2, 80px) 40px 80px repeat(3, 40px) 80px repeat(4, 40px) 80px repeat(3, 40px);
  }
}

.price-section.kensa {
  margin-top: 180px;
}
@media screen and (max-width: 820px) {
  .price-section.kensa {
    margin-top: 124px;
  }
}

.price-kensa__grid {
  margin-top: 60px;
  grid-template-columns: 27.5% 53.2692307692% 19.2307692308%;
}
@media screen and (max-width: 820px) {
  .price-kensa__grid {
    margin-top: 20px;
    grid-template-columns: 68% 32%;
  }
}

.kensa .price__grid-menu {
  letter-spacing: 0.2em;
}

@media screen and (max-width: 820px) {
  .price-kensa__grid .sp-top {
    grid-row: 1;
    grid-column: auto/span 2;
  }
}

.price__grid-header.price__grid-kensa-header {
  background: #9a8a61;
  color: #fff;
}

.price-kensa__grid-detail {
  padding: 0 17px 0 43px;
  line-height: 1.75;
}
@media screen and (max-width: 1024px) {
  .price-kensa__grid-detail {
    padding: 0 14px 0 20px;
  }
}
@media screen and (max-width: 820px) {
  .price-kensa__grid-detail {
    padding: 0 12px 0 13px;
    line-height: normal;
    letter-spacing: 0.1em;
  }
}

.price-kensa__grid:first-of-type {
  margin-top: 43px;
  grid-template-rows: repeat(5, 80px);
}
@media screen and (max-width: 820px) {
  .price-kensa__grid:first-of-type {
    grid-template-rows: repeat(3, 40px) 80px repeat(2, 40px) 80px repeat(2, 40px) 80px repeat(2, 40px) 80px;
  }
}

.price-kensa__grid:nth-of-type(2),
.price-kensa__grid:nth-of-type(3),
.price-kensa__grid:nth-of-type(5) {
  grid-template-rows: repeat(4, 80px);
}
@media screen and (max-width: 820px) {
  .price-kensa__grid:nth-of-type(2),
  .price-kensa__grid:nth-of-type(3),
  .price-kensa__grid:nth-of-type(5) {
    margin-top: 40px;
    grid-template-rows: repeat(3, 40px) 80px repeat(2, 40px) 80px repeat(2, 40px) 80px;
  }
}

.price-kensa__grid:nth-of-type(4) {
  grid-template-rows: repeat(3, 80px);
}
@media screen and (max-width: 820px) {
  .price-kensa__grid:nth-of-type(4) {
    margin-top: 40px;
    grid-template-rows: repeat(3, 40px) 80px repeat(2, 40px) 80px;
  }
}

.price-kensa__grid .row2 {
  grid-row: 2;
}

.price__more-btn {
  margin-top: 40px;
}
@media screen and (max-width: 820px) {
  .price__more-btn {
    margin-top: 24px;
  }
}

@media (any-hover: hover) {
  .price__more-btn .more-btn:hover::after {
    background: #303030;
  }
  .price__more-btn .more-btn:hover::before {
    filter: brightness(0) invert(1);
  }
}
.treatment {
  overflow: hidden;
}

.treatment__heading-box {
  padding: 35px 0 72px;
}
@media screen and (max-width: 1024px) {
  .treatment__heading-box {
    padding: 40px 15px 107px;
  }
}

.treatment__heading {
  color: #000;
  font-size: 28px;
  line-height: 2.11;
  letter-spacing: 0.3em;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .treatment__heading {
    font-size: clamp(18px, 5.625vw, 28px);
    line-height: 2;
    letter-spacing: 0.26em;
  }
}

.treatment__heading-text {
  margin: 48px auto 0;
  max-width: 901px;
  color: #000;
  line-height: 2.38;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 1024px) {
  .treatment__heading-text {
    padding-inline: 15px;
    margin: 43px auto 0;
    font-size: 14px;
    line-height: 2.29;
  }
}

.treatment-cooperate {
  background: #44655f;
  padding: 70px 0 90px;
}
@media screen and (max-width: 1024px) {
  .treatment-cooperate {
    padding: 44px 0 60px;
  }
}

.treatment-cooperate__text,
.treatment-about__text,
.treatment-banking__text {
  margin-top: 40px;
  color: #fff;
  font-size: 18px;
  line-height: 2.22;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1024px) {
  .treatment-cooperate__text,
  .treatment-about__text,
  .treatment-banking__text {
    margin-top: 40px;
    font-size: 14px;
    line-height: 2.29;
  }
}

.treatment-cooporate__contents {
  margin-top: 54px;
  height: 340px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .treatment-cooporate__contents {
    margin-top: 30px;
    height: auto;
  }
}
@media screen and (max-width: 820px) {
  .treatment-cooporate__contents {
    flex-direction: column;
  }
}

.treatment-cooporate__point,
.treatment-about__feature {
  width: 40.6730769231%;
  padding: 20px 0;
  flex-shrink: 0;
}
@media screen and (max-width: 820px) {
  .treatment-cooporate__point,
  .treatment-about__feature {
    width: 100%;
  }
}

.treatment-cooporate__point-text {
  width: calc(100% - 20px);
  height: 300px;
  padding: 20px;
  background: #6d8782;
  color: #fff;
  font-size: 22px;
  line-height: 2;
  letter-spacing: 0.2em;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 1024px) {
  .treatment-cooporate__point-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 820px) {
  .treatment-cooporate__point-text {
    margin-inline: auto;
    max-width: 423px;
    height: auto;
    aspect-ratio: 289/127;
    font-size: 16px;
    line-height: 1.88;
  }
}

.treatment-cooporate__list {
  padding: 78px 0 0 71px;
  border-left: 1px solid #fff;
}
@media screen and (max-width: 820px) {
  .treatment-cooporate__list {
    border-left: none;
    border-top: 1px solid #fff;
    padding: 30px 16px;
  }
}

.treatment-cooporate__item {
  color: #fff;
  font-size: 22px;
  line-height: 2.5;
  letter-spacing: 0.2em;
  white-space: nowrap;
  list-style-type: disc;
}
@media screen and (max-width: 1024px) {
  .treatment-cooporate__item {
    font-size: 18px;
  }
}
@media screen and (max-width: 820px) {
  .treatment-cooporate__item {
    font-size: 16px;
    line-height: 2;
  }
}
.treatment-cooporate__item::marker {
  font-size: 12px;
}

.treatment-about {
  padding: 110px 0 93px;
  counter-reset: number;
}
@media screen and (max-width: 1024px) {
  .treatment-about {
    padding: 83px 0 75px;
  }
}

.treatment-about__text {
  color: #303030;
}

.treatment-about__contents {
  margin-top: 66px;
  border-top: 1px solid #303030;
  border-bottom: 1px solid #303030;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .treatment-about__contents {
    margin-top: 40px;
  }
}
@media screen and (max-width: 820px) {
  .treatment-about__contents {
    flex-direction: column;
  }
}

.treatment-about__feature-text {
  width: calc(100% - 20px);
  height: 100%;
  background: #e5ddc8;
  font-size: 22px;
  line-height: 2;
  letter-spacing: 0.2em;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 1024px) {
  .treatment-about__feature-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 820px) {
  .treatment-about__feature-text {
    max-width: 423px;
    height: auto;
    aspect-ratio: 289/127;
    margin-inline: auto;
    font-size: 16px;
  }
}

.treatment-about__text-box {
  padding: 40px 0 50px 60px;
  border-left: 1px solid #303030;
}
@media screen and (max-width: 820px) {
  .treatment-about__text-box {
    max-width: 640px;
    margin-inline: auto;
    padding: 40px 0;
    border-left: none;
    border-top: 1px solid #303030;
  }
}

.treatment-about__text-box-title {
  color: #000;
  font-size: 20px;
  letter-spacing: 0.2em;
  line-height: 1.7;
}
@media screen and (max-width: 1024px) {
  .treatment-about__text-box-title {
    font-size: 16px;
    line-height: 1.75;
  }
}

.treatment-about__text-box-title:not(:first-of-type) {
  margin-top: 50px;
}
@media screen and (max-width: 820px) {
  .treatment-about__text-box-title:not(:first-of-type) {
    margin-top: 24px;
  }
}

.treatment-about__text-box-text {
  margin-top: 15px;
  color: #000;
  font-size: 14px;
  line-height: 2.14;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 820px) {
  .treatment-about__text-box-text {
    margin-top: 12px;
    font-size: 12px;
    line-height: 2.17;
  }
}

.treatment-about__flow-inner {
  width: 100%;
  height: 100%;
  max-width: 1160px;
  padding-inline: 60px;
  margin-inline: auto;
}
@media screen and (max-width: 820px) {
  .treatment-about__flow-inner {
    padding: 0;
  }
}

.treatment-about__flow-box {
  margin-top: 96px;
  padding: 66px 70px 80px;
  background: #eaeaea;
  border: 1px solid #303030;
}
@media screen and (max-width: 820px) {
  .treatment-about__flow-box {
    width: 100%;
    margin-top: 60px;
    padding: 40px 15px 60px;
  }
}

.treatment-about__flow-title {
  font-size: 26px;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .treatment-about__flow-title {
    font-size: 18px;
    line-height: normal;
  }
}

.treatment-about__flow-list {
  margin-top: 44px;
  border-top: 1px solid #303030;
}
@media screen and (max-width: 1024px) {
  .treatment-about__flow-list {
    margin-top: 40px;
  }
}

.treatment-about__flow-item {
  padding: 20px 0 20px;
  display: flex;
  align-items: center;
  height: 139px;
  border-bottom: 1px solid #303030;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .treatment-about__flow-item {
    height: auto;
    padding: 22px 0 25px;
  }
}

.treatment-about__flow-item:not(:first-of-type)::before {
  content: "";
  width: 80px;
  height: 80px;
  border: 1px solid #303030;
  border-radius: 100%;
  position: absolute;
  top: -40px;
  left: 75px;
}
@media screen and (max-width: 1024px) {
  .treatment-about__flow-item:not(:first-of-type)::before {
    left: 115px;
  }
}
@media screen and (max-width: 820px) {
  .treatment-about__flow-item:not(:first-of-type)::before {
    width: 64px;
    height: 64px;
    top: -32px;
    left: 80px;
  }
}
.treatment-about__flow-item:not(:first-of-type)::after {
  content: "";
  width: 8px;
  height: 40px;
  background: url(../img/arrow-light.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 13px;
  left: 114.5px;
}
@media screen and (max-width: 1024px) {
  .treatment-about__flow-item:not(:first-of-type)::after {
    left: 152px;
  }
}
@media screen and (max-width: 820px) {
  .treatment-about__flow-item:not(:first-of-type)::after {
    width: 6px;
    height: 30px;
    top: 11px;
    left: 111px;
  }
}

.treatment-about__flow-item-title {
  width: 286px;
  color: #000;
  font-size: 20px;
  line-height: 1.4;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .treatment-about__flow-item-title {
    display: block;
    width: 200px;
  }
}
@media screen and (max-width: 820px) {
  .treatment-about__flow-item-title {
    width: 135px;
    font-size: 18px;
  }
}
.treatment-about__flow-item-title::before {
  counter-increment: number 1;
  content: "STEP 0" counter(number);
  display: block;
  margin-right: 30px;
  color: #000;
  font-family: "Amiri", serif;
  font-size: 20px;
  letter-spacing: 0.2em;
  line-height: 1.7;
}
@media screen and (max-width: 1024px) {
  .treatment-about__flow-item-title::before {
    display: block;
    font-size: 16px;
    margin-right: 0;
  }
}

.treatment-about__flow-item-text {
  height: 100%;
  padding: 0 0 0 46px;
  color: #000;
  font-size: 18px;
  line-height: 2.22;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .treatment-about__flow-item-text {
    margin-top: 8px;
    padding: 0;
    font-size: 12px;
    line-height: 2.17;
    letter-spacing: 0.1em;
  }
}
.treatment-about__flow-item-text::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100px;
  background: #303030;
  position: absolute;
  left: 0px;
}
@media screen and (max-width: 1024px) {
  .treatment-about__flow-item-text::before {
    display: none;
  }
}

.treatment-banking {
  background: #9a8a61;
  padding: 80px 0 230px;
}
@media screen and (max-width: 1024px) {
  .treatment-banking {
    padding: 40px 0 100px;
  }
}

.treatment-banking__small {
  display: block;
  margin-top: 16px;
  color: #fff;
  font-size: 14px;
  line-height: 2.86;
}
@media screen and (max-width: 1024px) {
  .treatment-banking__small {
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.8;
  }
}

.treatment__grid {
  width: 100%;
  max-width: 1040px;
  border-left: 1px solid #303030;
  display: grid;
  align-items: stretch;
  line-height: 2.13;
  letter-spacing: 0.1em;
  margin-top: 48px;
  border-top: 1px solid #303030;
  grid-template-columns: 23.0769230769% 76.9230769231%;
  grid-template-rows: 80px repeat(1, 160px);
}
@media screen and (max-width: 820px) {
  .treatment__grid {
    grid-template-columns: 1fr;
    grid-template-rows: 40px 110px 40px 160px;
  }
}

.treatment__grid-menu {
  display: grid;
  align-items: center;
  background-color: #eee7d7;
  padding: 0 30px;
  border-right: 1px solid #303030;
  border-bottom: 1px solid #303030;
  font-size: 20px;
  letter-spacing: 0.2em;
  line-height: normal;
}
@media screen and (max-width: 1024px) {
  .treatment__grid-menu {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 820px) {
  .treatment__grid-menu {
    padding: 0 8px;
    font-size: 14px;
    text-align: center;
  }
}

.treatment__grid-menu .text-small {
  display: inline-block;
  margin-top: 12px;
  color: #000;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .treatment__grid-menu .text-small {
    font-size: 10px;
  }
}
@media screen and (max-width: 820px) {
  .treatment__grid-menu .text-small {
    margin-top: 0;
    font-size: 8px;
    line-height: 1;
  }
}

.treatment__grid-detail {
  background: #fff;
  padding-left: 50px;
  border-right: 1px solid #303030;
  border-bottom: 1px solid #303030;
  display: grid;
  align-items: center;
  letter-spacing: 0.1em;
  line-height: 1.88;
}
@media screen and (max-width: 1024px) {
  .treatment__grid-detail {
    font-size: 14px;
  }
}
@media screen and (max-width: 820px) {
  .treatment__grid-detail {
    padding-inline: 20px;
    line-height: 2.17;
    font-size: 12px;
  }
}

.treatment__grid-menu.inline {
  padding-top: 45px;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .treatment__grid-menu.inline {
    padding-top: 30px;
  }
}
@media screen and (max-width: 820px) {
  .treatment__grid-menu.inline {
    padding-top: 8px;
  }
}

.treatment__grid-detail.inline {
  padding-top: 30px;
  display: inline-block;
  line-height: normal;
}
@media screen and (max-width: 820px) {
  .treatment__grid-detail.inline {
    padding-top: 10px;
  }
}

.treatment__grid-detail.inline .text-small {
  display: inline-block;
  margin-left: 10px;
  color: #000;
  font-size: 12px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1024px) {
  .treatment__grid-detail.inline .text-small {
    font-size: 10px;
  }
}
@media screen and (max-width: 820px) {
  .treatment__grid-detail.inline .text-small {
    margin-left: 0;
    font-size: 8px;
    letter-spacing: 0.1em;
  }
}

.treatment__grid-detail.inline .text-bottom {
  display: inline-block;
  margin-top: 12px;
  color: #000;
  font-size: 12px;
  line-height: 1.83;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1024px) {
  .treatment__grid-detail.inline .text-bottom {
    font-size: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .treatment__grid-detail.inline .text-bottom {
    margin-top: 6px;
    font-size: 8px;
  }
}

.treatment__grid-detail.wide {
  line-height: 2.13;
}

.treatment-banking__table {
  margin-top: 46px;
  width: 100%;
  border-collapse: collapse;
}

.treatment-banking__table-row:nth-child(2) .treatment-banking__table-title {
  padding-top: 14px;
}

.treatment-banking__table-row:nth-child(2) .treatment-banking__table-desc {
  line-height: 1.4;
}
.treatment-banking__table-row:nth-child(2) .treatment-banking__table-desc .mt10 {
  display: block;
  line-height: 1.76;
  margin-top: 12px;
}

.treatment-banking__table-cell {
  height: 80px;
  border: solid 1px #303030;
  vertical-align: middle;
}

.treatment-banking__table-row:not(:first-of-type) .treatment-banking__table-cell {
  height: 160px;
}

.treatment-banking__table-title {
  background: #eee7d7;
  width: 240px;
  padding: 0 32px 0 31px;
  font-size: 20px;
  line-height: 1.65;
}
.treatment-banking__table-title .text-small {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.treatment-banking__table-desc {
  background: #fff;
  padding-left: 60px;
  line-height: 1.88;
  letter-spacing: 0.1em;
}
.treatment-banking__table-desc .text-small {
  font-size: 12px;
  letter-spacing: 0.2em;
  line-height: 1;
}

.treatment-banking__table-row:nth-of-type(3) .treatment-banking__table-desc {
  line-height: 2.13;
}

@media screen and (max-width: 1024px) {
  .fibroblast .treatment__heading-box {
    padding: 40px 15px 60px;
  }
}

.fibroblast .treatment-cooporate__list {
  border-left: none;
  padding-left: 22px;
}
@media screen and (max-width: 820px) {
  .fibroblast .treatment-cooporate__list {
    border-top: none;
  }
}

.fibroblast .treatment-about__flow-item-title {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .fibroblast .treatment-about__flow-item-title {
    width: 200px;
    flex-direction: column;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}
@media screen and (max-width: 820px) {
  .fibroblast .treatment-about__flow-item-title {
    width: 135px;
  }
}

.fibroblast .treatment__grid {
  grid-template-rows: 80px repeat(1, 160px);
}
@media screen and (max-width: 820px) {
  .fibroblast .treatment__grid {
    grid-template-rows: 40px 110px 40px 160px;
  }
}

.fibroblast .treatment__grid-detail.inline {
  padding: 10px 20px;
  display: inline-block;
  line-height: normal;
}
@media screen and (max-width: 1024px) {
  .fibroblast .treatment__grid-detail.inline {
    padding-top: 12px;
    font-size: 14px;
  }
}
@media screen and (max-width: 820px) {
  .fibroblast .treatment__grid-detail.inline {
    font-size: 12px;
    padding: 8px 12px;
  }
}

.fibroblast .detail-grid {
  grid-template-columns: 2fr 0.4fr auto;
}

.exosome .treatment__heading-box {
  padding: 40px 15px 47px;
}

.exosome__heading-list {
  margin: 40px auto 0;
  max-width: 800px;
  color: #000;
  line-height: 2.38;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 1024px) {
  .exosome__heading-list {
    width: 100%;
    font-size: 14px;
    padding: 0 15px;
  }
}

.exosome__heading-item {
  list-style: decimal;
  margin-left: 27px;
}

.exosome__heading-small {
  display: block;
  margin-top: 33px;
  width: 900px;
  margin-inline: auto;
  color: #000;
  font-size: 12px;
  line-height: 3.16;
}
@media screen and (max-width: 1024px) {
  .exosome__heading-small {
    width: 100%;
    font-size: 10px;
  }
}
@media screen and (max-width: 820px) {
  .exosome__heading-small {
    font-size: 8px;
  }
}

.exosome .treatment-title.first {
  -moz-text-align-last: right;
       text-align-last: right;
}
.exosome .treatment-title.first::after {
  left: auto;
  right: 0;
}

.exosome .treatment-title.second {
  margin-top: 60px;
}

.exosome-about__item {
  position: relative;
  font-size: 24px;
  line-height: 2.08;
  letter-spacing: 0.1em;
  padding-left: 24px;
}
@media screen and (max-width: 1024px) {
  .exosome-about__item {
    font-size: 20px;
  }
}
@media screen and (max-width: 820px) {
  .exosome-about__item {
    font-size: 18px;
  }
}
.exosome-about__item::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 24px;
  line-height: 1;
  top: 11px;
}
@media screen and (max-width: 1024px) {
  .exosome-about__item::before {
    font-size: 20px;
    top: 9px;
  }
}
@media screen and (max-width: 820px) {
  .exosome-about__item::before {
    font-size: 18px;
    top: 8px;
  }
}

.exosome .treatment__grid {
  margin-top: 76px;
  grid-template-rows: 80px repeat(1, 160px);
}
@media screen and (max-width: 820px) {
  .exosome .treatment__grid {
    grid-template-rows: 40px 110px 40px auto 40px 1fr;
  }
}

.exosome .treatment__grid-detail {
  padding: 10px 16px 10px 40px;
}

.exosome .treatment__grid-detail.inline {
  padding: 10px 20px;
  display: inline-block;
  line-height: normal;
}
@media screen and (max-width: 1024px) {
  .exosome .treatment__grid-detail.inline {
    padding-top: 12px;
    font-size: 14px;
  }
}
@media screen and (max-width: 820px) {
  .exosome .treatment__grid-detail.inline {
    font-size: 12px;
    padding: 8px 12px;
  }
}

.exosome .detail-grid {
  grid-template-columns: 0.7fr 0.9fr 0.6fr 1.1fr;
  max-width: 500px;
}

.exosome .detail-grid__title {
  margin-top: 10px;
}

@media screen and (max-width: 1024px) {
  .cpc .treatment__heading-box {
    padding: 40px 15px 47px;
  }
}

.cpc .treatment-about.onnetsu {
  padding-top: 20px;
}

.cpc .treatment-about.misev {
  padding-top: 10px;
}

.news__article {
  padding-bottom: 140px;
}
@media screen and (max-width: 820px) {
  .news__article {
    padding-bottom: 100px;
  }
}

.news__inner {
  width: 100%;
  height: 100%;
  max-width: 960px;
  padding-inline: 60px;
  margin-inline: auto;
}
@media screen and (max-width: 820px) {
  .news__inner {
    padding-inline: 15px;
  }
}

.news__title-box {
  margin-top: 37px;
  padding: 0 0 50px 0;
  border-top: 1px solid #303030;
  border-bottom: 1px solid #303030;
}
@media screen and (max-width: 820px) {
  .news__title-box {
    margin-top: 30px;
    padding: 0 0 31px 0;
  }
}

.news__title-time {
  color: #000;
  font-size: 16px;
  line-height: 2.38;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 820px) {
  .news__title-time {
    font-size: 10px;
    line-height: 3.8;
  }
}

.news__title {
  margin-top: 8px;
  color: #000;
  font-size: 28px;
  line-height: 2.11;
  text-align: center;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 820px) {
  .news__title {
    margin-top: 0;
    font-size: 18px;
    line-height: 2;
  }
}

.news__text {
  margin-top: 63px;
  color: #000;
  font-size: 16px;
  line-height: 2.38;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 820px) {
  .news__text {
    margin-top: 24px;
    font-size: 10px;
    line-height: 2.6;
  }
}

.news__top-btn {
  margin-top: 120px;
}
@media screen and (max-width: 820px) {
  .news__top-btn {
    margin-top: 50px;
  }
}

.news__top-btn .more-btn::after {
  margin-left: 24px;
}
@media screen and (max-width: 820px) {
  .news__top-btn .more-btn::after {
    margin-left: 12px;
  }
}

.flora__list {
  margin-top: 44px;
}

.flora__item {
  list-style: disc;
  margin-left: 22px;
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.2em;
  line-height: 2.5;
}
@media screen and (max-width: 1024px) {
  .flora__item {
    font-size: 18px;
  }
}
@media screen and (max-width: 820px) {
  .flora__item {
    font-size: 16px;
    line-height: 2;
  }
}
.flora__item::marker {
  font-size: 12px;
}

.flora .treatment-about__feature-text {
  text-align: right;
}

.flora-about__text-box-item {
  list-style: decimal;
  margin-left: 24px;
  color: #000;
  font-size: 14px;
  line-height: 2.14;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 820px) {
  .flora-about__text-box-item {
    font-size: 12px;
  }
}

.flora .treatment-about__flow-item-title {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .flora .treatment-about__flow-item-title {
    width: 200px;
    flex-direction: column;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}
@media screen and (max-width: 820px) {
  .flora .treatment-about__flow-item-title {
    width: 135px;
  }
}

@media screen and (max-width: 1150px) {
  .flora .treatment-about__flow-item-text .pc-br {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .flora .treatment-about__flow-item-text .pc-br {
    display: block;
  }
}
@media screen and (max-width: 520px) {
  .flora .treatment-about__flow-item-text .pc-br {
    display: none;
  }
}

.flora .treatment__grid {
  grid-template-rows: 1fr;
}

.flora .treatment__grid-menu.inline {
  padding: 10px 30px;
}

.flora .treatment__grid-detail.inline {
  padding: 10px 20px;
  line-height: 1.8;
}
@media screen and (max-width: 820px) {
  .flora .treatment__grid-detail.inline {
    padding: 8px 10px;
  }
}

.flora .treatment__grid-detail.inline .option {
  display: inline-block;
  margin-top: 12px;
}

.flora .detail-grid {
  grid-template-columns: 1fr 0.4fr;
  max-width: 540px;
}
@media screen and (max-width: 1024px) {
  .flora .detail-grid {
    max-width: 470px;
  }
}
@media screen and (max-width: 820px) {
  .flora .detail-grid {
    max-width: 410px;
  }
}

@media screen and (max-width: 820px) {
  .flora .detail-grid__title {
    font-size: 10px;
  }
}

.sfmt .treatment__heading-box {
  padding: 40px 15px 47px;
}

.sfmt .treatment.treatment-about {
  padding: 15px 0 60px;
}

.sfmt-treatment-about__list {
  margin-top: 48px;
}

.sfmt-treatment-about__item {
  list-style: decimal;
  margin-left: 26px;
  color: #303030;
  font-size: 16px;
  line-height: 2.375;
  letter-spacing: 0.2em;
}

.sfmt .treatment-about__text-box-text.mt-small {
  margin-top: 4px;
}

.sfmt-about__text-box-list {
  margin-top: 15px;
}

.sfmt-about__text-box-item {
  list-style: disc;
  margin-left: 24px;
  color: #000;
  font-size: 14px;
  line-height: 2.14;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 820px) {
  .sfmt-about__text-box-item {
    font-size: 12px;
  }
}
.sfmt-about__text-box-item::marker {
  font-size: 12px;
}

.sfmt .treatment-about__text .font-weight-bold {
  display: block;
  font-weight: bold;
}

.sfmt .treatment-about__flow-item:nth-child(2) {
  height: auto;
}

.sfmt .treatment-about__flow-item-title {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .sfmt .treatment-about__flow-item-title {
    width: 200px;
    flex-direction: column;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}
@media screen and (max-width: 820px) {
  .sfmt .treatment-about__flow-item-title {
    width: 135px;
  }
}

@media screen and (max-width: 820px) {
  .sfmt .treatment__grid {
    grid-template-rows: 40px 110px 40px 110px;
  }
}

.sfmt .detail-grid {
  max-width: 410px;
  grid-template-columns: 1fr 0.6fr 0.8fr;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .sfmt .detail-grid {
    max-width: 360px;
  }
}

@media screen and (max-width: 820px) {
  .sfmt .detail-grid__item {
    line-height: 2;
  }
}

.privacy-policy .news__title {
  margin-top: 50px;
}
@media screen and (max-width: 820px) {
  .privacy-policy .news__title {
    margin-top: 31px;
  }
}

.privacy__text.mt {
  margin-top: 16px;
}

.privacy__text span {
  display: block;
  margin-left: 16px;
}
@media screen and (max-width: 820px) {
  .privacy__text span {
    margin-left: 10px;
  }
}

.privacy__heading {
  margin-top: 40px;
  font-size: 20px;
}
@media screen and (max-width: 820px) {
  .privacy__heading {
    margin-top: 26px;
    font-size: 14px;
  }
}

.privacy__contents {
  margin-top: 16px;
  margin-left: 20px;
}
@media screen and (max-width: 820px) {
  .privacy__contents {
    margin-top: 10px;
    margin-left: 14px;
  }
}

.privacy__list {
  margin-top: 10px;
}

.privacy__item {
  list-style-type: disc;
  margin-left: 16px;
}
.privacy__item::marker {
  font-size: 8px;
}

.inner {
  width: 100%;
  height: 100%;
  max-width: 1160px;
  padding-inline: 60px;
  margin-inline: auto;
}
@media screen and (max-width: 820px) {
  .inner {
    padding-inline: 15px;
  }
}

.sp-br {
  display: none;
}
@media screen and (max-width: 820px) {
  .sp-br {
    display: block;
  }
}

.lg-br {
  display: none;
}
@media screen and (max-width: 1024px) {
  .lg-br {
    display: block;
  }
}

.sm-br {
  display: none;
}
@media screen and (max-width: 500px) {
  .sm-br {
    display: block;
  }
}

@media screen and (max-width: 820px) {
  .pc-br {
    display: none;
  }
}

@media screen and (max-width: 1160px) {
  .large-br {
    display: none;
  }
}

.header-btn {
  display: grid;
  place-content: center;
  width: 160px;
  height: inherit;
  background: #414141;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 3.14;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .header-btn {
    width: 120px;
  }
}

@media (any-hover: hover) {
  .header-btn:hover {
    opacity: 0.7;
  }
}
.header-btn::after {
  content: "";
  background: url(../img/arrow-down.png) no-repeat center/contain;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  bottom: 11px;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .header-btn::after {
    width: 14px;
    height: 14px;
    bottom: 6px;
  }
}

.more-btn {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-left: auto;
  color: #303030;
  font-size: 18px;
  line-height: 2.44;
  letter-spacing: 0.3em;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .more-btn {
    font-size: 16px;
  }
}
@media screen and (max-width: 820px) {
  .more-btn {
    font-size: 12px;
    line-height: 1;
  }
}

@media (any-hover: hover) {
  .more-btn:hover {
    opacity: 0.7;
  }
}
.more-btn::after {
  content: "";
  margin-left: 14px;
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: solid 1px #303030;
  flex-shrink: 0;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .more-btn::after {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 820px) {
  .more-btn::after {
    margin-left: 8px;
    width: 50px;
    height: 50px;
  }
}

.more-btn::before {
  content: "";
  width: 26px;
  height: 26px;
  background: url(../img/arrow-right.png) no-repeat;
  background-size: contain;
  position: absolute;
  margin-right: 27px;
}
@media screen and (max-width: 1024px) {
  .more-btn::before {
    width: 20px;
    height: 20px;
    margin-right: 21px;
  }
}
@media screen and (max-width: 820px) {
  .more-btn::before {
    width: 16px;
    height: 16px;
    margin-right: 17px;
  }
}

.section-title {
  font-family: "Bentham", serif;
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: normal;
}
@media screen and (max-width: 820px) {
  .section-title {
    font-size: 16px;
  }
}

.price__title {
  font-size: 30px;
  font-family: "Bentham", serif;
  letter-spacing: 0.1em;
  color: #343434;
  position: relative;
}
@media screen and (max-width: 820px) {
  .price__title {
    font-size: 16px;
  }
}
.price__title::after {
  content: "";
  display: block;
  width: calc(420px + 50vw);
  height: 1px;
  background: #303030;
  position: absolute;
  top: 50%;
  left: 117px;
}
@media screen and (max-width: 820px) {
  .price__title::after {
    left: 79px;
  }
}

.price-section:nth-child(even) .price__title {
  text-align: right;
}
.price-section:nth-child(even) .price__title::after {
  left: auto;
  right: 117px;
}
@media screen and (max-width: 820px) {
  .price-section:nth-child(even) .price__title::after {
    right: 79px;
  }
}

.price-section:nth-child(even) .price__heading {
  text-align: right;
}

.price__heading {
  margin-top: 40px;
  font-size: 34px;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 1024px) {
  .price__heading {
    font-size: 24px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 820px) {
  .price__heading {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.2em;
  }
}

.treatment-title {
  color: #fff;
  font-size: 26px;
  line-height: 1.69;
  letter-spacing: 0.2em;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .treatment-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 820px) {
  .treatment-title {
    font-size: 18px;
    line-height: 2;
  }
}
.treatment-title::after {
  content: "";
  display: block;
  width: calc(511px + 50vw);
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: -19px;
  left: 0;
}
@media screen and (max-width: 820px) {
  .treatment-title::after {
    width: 100%;
    bottom: -20px;
  }
}

.treatment:nth-of-type(even) .treatment-title {
  text-align: right;
}
.treatment:nth-of-type(even) .treatment-title::after {
  left: auto;
  right: 0;
}

.treatment-about .treatment-title {
  color: #303030;
}
.treatment-about .treatment-title::after {
  background: #303030;
}

.page-mv {
  width: 100%;
  aspect-ratio: 1440/450;
  background: #9b9b9b;
  position: relative;
}
.page-mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 820px) {
  .page-mv {
    aspect-ratio: 320/140;
  }
}

.page-title {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.5em;
  white-space: nowrap;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .page-title {
    min-width: 250px;
    width: auto;
    margin-inline: auto;
    font-size: clamp(18px, 5.625vw, 36px);
    letter-spacing: 0.2em;
    text-align: center;
  }
}

.page-map {
  margin-top: 30px;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .page-map {
    margin-top: 12px;
    font-size: 8px;
  }
}

.page-map__link {
  color: #303030;
  font-size: 14px;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 1024px) {
  .page-map__link {
    font-size: clamp(8px, 2.5vw, 14px);
  }
}
@media screen and (max-width: 820px) {
  .page-map__link {
    font-size: 8px;
  }
}

.page-mv.treatment-mv {
  background: #d6cfcf;
}

.detail-grid {
  display: grid;
  max-width: 600px;
  line-height: 2.17;
}

.grid-span2 {
  grid-row: auto/span 2;
}

.grid-span3 {
  grid-row: auto/span 3;
}

.grid-span4 {
  grid-row: auto/span 4;
}

.grid-span6 {
  grid-row: auto/span 6;
}

.grid-c-span2 {
  grid-column: auto/span 2;
}

.grid-c-span3 {
  grid-column: auto/span 3;
}

.grid-c-span4 {
  grid-column: auto/span 4;
}

.detail-grid__title {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .detail-grid__title {
    font-size: 14px;
  }
}
@media screen and (max-width: 820px) {
  .detail-grid__title {
    font-size: 12px;
  }
}

.detail-grid__item {
  font-size: 14px;
  text-align: left;
  place-content: center;
}
@media screen and (max-width: 1024px) {
  .detail-grid__item {
    font-size: 12px;
  }
}
@media screen and (max-width: 820px) {
  .detail-grid__item {
    font-size: 10px;
  }
}

.detail-grid__price {
  text-align: right;
  font-weight: bold;
}

.detail-grid__item.tar {
  text-align: right;
  padding-right: 6px;
}

.detail-grid__item.tac {
  text-align: center;
}/*# sourceMappingURL=style.css.map */