@charset "utf-8";
/* CSS Document */
/* 基本 */ :root {
  --v-space: clamp(90px, 9vw, 120px);
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background-color: #F1F8F9;
  color: #707070;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-kerning: normal;
  font-feature-settings: "kern";
}
h1, h2, h3, h4, h5, h6, p, ul, figure {
  margin: 0;
  padding: 0;
  list-style: none;
}
p {
  line-height: 1.8;
}
a {
  color: inherit;
  text-decoration: none;
}
a:active, a:hover {
  filter: brightness(80%) contrast(120%);
}
df, abbr, cite {
  text-decoration: none;
  font-style: normal;
}
img {
  display: block;
  max-width: 100%; /*オリジナルサイズ以上に拡大されない*/
  height: auto; /*縦横比維持*/
}
mark {
  background: linear-gradient(transparent 50%, #00ffff 0%);
}
figure {
  margin: 0;
}
figcaption {
  text-align: start;
  color: #707070;
  font-size: 5px;
}
blockquote {
  position: relative;
  padding: 15px 10px 5px;
  box-sizing: border-box;
  font-style: italic;
  background: #f3f3f3;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
  margin: 0;
}
blockquote:before {
  display: inline-block;
  position: absolute;
  top: -8px;
  left: 9px;
  width: 40px;
  height: 30px;
  text-align: center;
  content: "\f10d";
  font-family: FontAwesome;
  color: #FFF;
  font-size: 18px;
  line-height: 30px;
  background: #6fcdd9;
  font-weight: 900;
  box-shadow: 0 2px 2px rgba(26, 26, 26, 0.14);
}
blockquote:after {
  position: absolute;
  content: '';
  top: -8px;
  left: 49px;
  border: none;
  border-bottom: solid 8px #6cacb5;
  border-right: solid 9px transparent;
}
blockquote h3, p {
  position: relative;
  padding: 0;
  margin: 10px 0;
  z-index: 3;
  line-height: 1.8;
}
blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}
.noscroll {
  overflow: hidden;
}
/* 横幅と左右の余白 */
.w-container {
  width: min(92%, 1166px);
  margin: auto;
  position: relative; /*<h2>のタイトルにabsoluteを使うのに必要*/
}
/* ヘッダー */
.header {
  height: 112px;
  background-color: rgba(255, 255, 255, 0.8);
  position: sticky;
  top: 0;
  z-index: 10;
  transition: 0.5s;
}
.header-container {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}
/* メニューのデザイン */
/*メニューモーダルを開くボタン*/
.menu-modal-open {
  padding: 0;
  outline: none;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #aaaaaa;
  font-size: 30px;
  display: block;
  box-sizing: border-box;
  text-align: center;
}
/*メニューモーダル本体の指定 + モーダル外側の背景の指定*/
.menu-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
}
/*メニューモーダル本体の擬似要素の指定*/
.menu-modal-container:before, .menu-modal-container:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
/*メニューモーダル本体に「active」クラス付与した時のスタイル*/
.menu-modal-container.active {
  opacity: 1;
  visibility: visible;
}
/*メニューモーダル枠の指定*/
.menu-modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 500px;
  width: 80%;
}
/*メニューモーダルを閉じるボタンの指定*/
.menu-modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
/*メニューモーダル内のコンテンツの指定*/
.menu-modal-content {
  display: grid;
  justify-content: center;
  align-content: center;
  background: #fff;
  height: 100%;
  padding: 30px;
}
.nav-menu {
  display: grid;
  grid-gap: 50px;
  font-family: "Jost", sans-serif;
}
/* ヒーロー */
.hero {
  height: 650px;
  display: grid;
  grid-template-rows: 650px;
}
.hero > * {
  grid-area: 1/1;
}
.hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-container {
  display: grid;
  justify-items: center;
  align-content: center;
  height: 100%;
}
.hero h2 {
  margin-bottom: 120px;
  font-family: "Jost", sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  min-height: 0vw;
  font-weight: 300;
  line-height: 1.3;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
  text-shadow: -6px 6px 15px rgba(0, 0, 0, 0.5), 6px -6px 15px rgba(255, 255, 255, 0.8);
}
.hero h2::before {
  left: 0;
  width: 100px;
  height: 100px;
  top: -150px;
  z-index: 10;
  box-shadow: inset -6px 6px 15px rgba(0, 0, 0, 0.5), inset 6px -6px 15px rgba(255, 255, 255, 0.8);
}
.hero h2::after {
  left: -50px;
  width: 200px;
  height: 200px;
  top: -200px;
  box-shadow: -6px 6px 15px rgba(0, 0, 0, 0.5), 6px -6px 15px rgba(255, 255, 255, 0.8);
}
.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-family: "source-han-serif-jp-subset", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 40px;
  text-shadow: -6px 6px 15px rgba(0, 0, 0, 0.5), 6px -6px 15px rgba(255, 255, 255, 0.8);
}
.hero p::before {
  left: 0;
  width: 100px;
  height: 100px;
  top: -150px;
  z-index: 10;
  box-shadow: inset -6px 6px 15px rgba(0, 0, 0, 0.5), inset 6px -6px 15px rgba(255, 255, 255, 0.8);
}
.hero p::after {
  left: -50px;
  width: 200px;
  height: 200px;
  top: -200px;
  box-shadow: -6px 6px 15px rgba(0, 0, 0, 0.5), 6px -6px 15px rgba(255, 255, 255, 0.8);
}
/* ボタン */
.btn {
  display: block;
  width: 100%;
  max-width: 200px;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 4px;
  background-color: #40A9B3;
  color: #FFFFFF;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 1px;
  cursor: pointer;
}
.btn-2 {
  display: block;
  width: 100%;
  max-width: 200px;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 4px;
  background-color: lightgrey;
  color: #FFFFFF;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 1px;
  cursor: pointer;
}
.btn-2 i {
  margin-right: 1em; /* アイコンと文字の間のスペースを追加 */
}
.btn-2-accent {
  background-color: #40A9B3
}
/*モーダルを開くボタン*/
.modal-open {
  display: block;
  width: 200px;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 4px;
  background-color: #40A9B3;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 1px;
  color: #FFFFFF;
  cursor: pointer;
}
.modal-open :hover {
  filter: brightness(80%) contrast(120%);
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
  z-index: 10;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before, .modal-container:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active {
  opacity: 1;
  visibility: visible;
}
/*モーダル枠の指定*/
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: calc(100vw - 40px *2);
  width: 90%;
}
@media (min-width: 768px) {
  .modal-body {
    max-width: 500px;
  }
}
/*モーダルを閉じるボタンの指定*/
.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal-content {
  display: grid;
  justify-items: center;
  gap: 1rem;
  background: #fff;
  height: 100%;
  padding: 30px;
}
/* --------------------------------------
 ABOUT
-------------------------------------- */
/* 画像とテキスト */
.imgtext {
  padding: clamp(90px, 9vw, 120px)0;
  background-color: #F1F8F9;
}
.imgtext + .imgtext {
  padding-top: 0;
}
.imgtext-container {
  display: flex;
  flex-direction: column;
  gap: clamp(45px, 6vw, 80px);
  hyphens: manual;
}
.imgtext-container > .text {
  text-align: justify;
}
.read-more {
  display: flex;
  justify-content: flex-end;
}
.custom-btn {
  display: block;
  width: 160px;
  padding: 10px;
  box-sizing: border-box;
  font-family: "montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1rem;
  color: #40A9B3;
  text-align: center;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-1 {
  border: none;
}
.btn-1:hover {
  box-shadow:
    -7px -7px 20px 0px #fff9, -4px -4px 5px 0px #fff9, 7px 7px 20px 0px #0002, 4px 4px 5px 0px #0001;
}
@media (min-width: 768px) {
  .imgtext-container {
    flex-direction: row;
    align-items: center;
  }
  .imgtext-container.reverse {
    flex-direction: row-reverse;
  }
  .imgtext-container > .text {
    flex: 1;
    min-width: 17em;
  }
  .imgtext-container > .img {
    flex: 2;
  }
}
/* タイトルとサブタイトル */
.heading-decoration {
  font-size: clamp(30px, 3vw, 40px);
  min-height: 0vw;
  font-weight: 400;
}
/**飾り線**/
.heading-decoration::after {
  display: block;
  content: '';
  width: 160px;
  height: 0px;
  border-top: solid 1px #40A9B3;
  margin-top: 0.6em;
}
.heading-decoration + p {
  margin-top: 1em;
  margin-bottom: 2em;
  color: #707070;
  font-family: "montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
}
/* --------------------------------------
 News
-------------------------------------- */
.news-container ul {
  background-color: #FFFFFF;
  margin: clamp(90px, 9vw, 120px)0;
}
.news-list {
  margin: 0;
  padding: 0;
}
.news-list .item a {
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #40A9B3;
  padding: 20px 20px;
}
.news-list .item:first-child a {
  border-top: 1px solid #40A9B3;
}
.news-list .item .date {
  margin: 0;
  min-width: 140px;
  font-size: 16px;
  color: #999;
  padding: 0 20px 0 0;
}
.news-list .item .category {
  margin: 0;
  min-width: 140px;
  padding: 0 20px 0 0;
}
.news-list .item .category span {
  background: #999;
  color: #FFF;
  text-align: center;
  display: inline-block;
  padding: 5px 20px;
  font-size: 12px;
  line-height: 1;
}
.news-list .item .title {
  margin: 0;
  width: 100%;
}
.news-list .item a:hover .title {
  color: #64B8C0;
}
.news-list .item a {
  flex-wrap: wrap;
}
.news-list .item .date {
  min-width: 100px;
}
.news-list .item .title {
  margin-top: 10px;
}
/* --------------------------------------
 Services
-------------------------------------- */
.services {
  padding: clamp(90px, 9vw, 120px)0;
  /* background-color: #e9e5e9;*/
}
.services-container {
  display: grid;
  gap: 27px;
}
@media (min-width: 768px) {
  .services-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* トリートメント：カード */
.treatment {
  display: flex;
  flex-direction: column;
  padding: 60px 27px;
  border-radius: 20px;
  background-color: #ffffff;
}
.treatment h3 {
  margin-bottom: 38px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(25px, 3vw, 30px);
  font-weight: 400;
}
.treatment .treatment-desc {
  margin-bottom: 38px;
}
.treatment .treatment-menu {
  margin-top: auto;
  margin-bottom: 22px;
  font-size: 26px;
  font-weight: bold;
}
.treatment .btn-2 {
  width: auto;
}
/* --------------------------------------
 Access
-------------------------------------- */
.access-container {
  font-size: clamp(0.75rem, 0.3922rem + 1.5267vw, 1.125rem);
  padding: clamp(90px, 9vw, 120px)0;
}
.access-text {
  padding: clamp(90px, 9vw, 120px)0;
}
.access-text dl {
  display: flex;
  justify-content: space-between;
  color: #707070
}
.access-text dt {
  text-align: center;
  width: 20%;
  letter-spacing: 1.5px;
}
.access-text dd {
  margin: 0;
  width: 77%;
}
.read-more2 {
  display: flex;
  padding: 20px 20px;
  justify-content: center;
}
/* --------------------------------------
 Footer
-------------------------------------- */
.footer {
  padding: 70px 0;
  color: #707070;
  font-size: 13px;
  background-color: white;
  bottom: 0;
  transition: 0.5s;
}
.footer-container {
  display: grid;
  gap: 40px;
  justify-items: center;
}
.footer-title > h1 {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 2rem;
  color: #707070;
}
.footer-tel {
  letter-spacing: 2px;
  font-size: 24px;
  color: #40A9B3;
}
.footer-table {
  border-collapse: collapse;
  font-size: 1rem;
  line-height: 2;
  width: 100%;
  margin-bottom: 100px;
}
.footer-table th {
  /* １番上の線 */
  border-top: 1px solid #40A9B3;
}
.footer-table th, .footer-table td {
  text-align: center;
  /* ２番目以降の線 */
  border-bottom: 1px solid #40A9B3;
}
.footer-table th {
  font-weight: normal;
}
/* 「土」の文字色 */
.footer-table th.sat {
  color: #3db2da;
}
/* 「日」の文字色 */
/*.footer-table th*/ .sun {
  color: #e66a6a;
}
/* フッター：SNSメニュー */
.footer-sns {
  display: flex;
  gap: 24px;
  font-size: 24px;
}
.footer-sns a {
  display: grid;
  color: #40A9B3;
}
/* フッター：テキストメニュー */
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .footer-container {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto auto auto auto;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
  .footer-container > .footer-logo {
    grid-column: 1/2;
    grid-row: 1/2;
    justify-self: start;
    align-self: center;
  }
  .footer-container > .footer-title {
    grid-column: 1/2;
    grid-row: 1/2;
    justify-self: start;
    padding-left: 100px;
    align-self: center;
  }
  .footer-container > .footer-tel {
    grid-column: 1/2;
    grid-row: 2/3;
    justify-self: start;
    padding-left: 15px;
    letter-spacing: 1px;
  }
  .footer-container > .footer-table {
    grid-column: 1/2;
    grid-row: 3/4;
    justify-self: start;
  }
  .footer-container > .footer-menu {
    grid-column: 1/4;
    grid-row: 4/5;
  }
  .footer-container > .footer-copy {
    grid-column: 1/4;
    grid-row: 5/6;
    font-family: "montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  .footer-container > .footer-sns {
    grid-column: 3/4;
    grid-row: 1/3;
    justify-self: end;
    align-self: center;
  }
}
/* --------------------------------------
 記事一覧
-------------------------------------- */
.posts {
  padding: clamp(90px, 9vw, 120px)0;
  background-color: #f3f1ed;
}
.posts-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 25px;
}
@media (min-width: 768px) {
  .posts-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* --------------------------------------
 記事一覧の記事
-------------------------------------- */
.post a {
  display: block; /*マウスホバーの為の設定*/
}
.post h3 {
  margin: 1em 0 0.5em;
  font-size: clamp(12px, 2vw, 20px);
  min-height: 0vw;
}
.post p {
  max-width: 20em;
  font-size: clamp(10px, 1.6vw, 14px);
  min-height: 0vw;
}
.post img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
}
@supports not (aspect-ratio: 3 / 2) {
  .post img {
    height: 180px;
  }
}
.post2 a {
  display: block; /*マウスホバーの為の設定*/
}
.post2 h3 {
  margin: 1em 0 0.5em;
  font-size: clamp(12px, 2vw, 20px);
  min-height: 0vw;
}
.post2 p {
  max-width: 20em;
  font-size: clamp(10px, 1.6vw, 14px);
  min-height: 0vw;
}
.post2 img {
  aspect-ratio: 8 / 3;
  object-fit: cover;
  width: 100%;
}
@supports not (aspect-ratio: 3 / 2) {
  .post2 img {
    height: 180px;
  }
}
/* --------------------------------------
 記事
-------------------------------------- */
.entry {
  padding-bottom: clamp(90px, 9vw, 120px);
  /*background-color: #ffffff;*/
}
.entry-img img {
  width: 100%; /*拡大を許可*/
  max-height: 400px;
  object-fit: cover;
  margin-bottom: clamp(60px, 6vw, 80px);
}
/*.entry .heading-decoration {
  font-size: clamp(30px, 3vw, 40px);
}*/
/* --------------------------------------
 記事 entry-container
-------------------------------------- */
.entry-container {
  font-size: clamp(16px, 2.4vw, 18px);
  display: flex;
  flex-direction: column;
  gap: clamp(45px, 6vw, 80px);
  text-align: justify;
  margin-bottom: clamp(90px, 9vw, 120px);
}
.entry-container p {
  margin: 1em 0;
}
.entry-container > :first-child {
  margin-top: 0;
}
.entry-container > :last-child {
  margin-bottom: 0;
}
.entry-container.reverse {
  margin-bottom: clamp(90px, 9vw, 120px);
  margin-top: 30px;
}
@media (min-width: 768px) {
  .entry-container {
    flex-direction: row;
    align-items: center;
  }
  .entry-container.reverse {
    flex-direction: row-reverse;
  }
  .entry-container > .text {
    flex: 1;
    min-width: 17em;
  }
  .entry-container > .img {
    flex: 2;
  }
}
.heading-decoration2 {
  position: relative;
  padding-top: 10px;
  background-image: linear-gradient(90deg, #40A9B3 0%, #40A9B3 30%, rgba(0 0 0 / 0) 30%, rgba(0 0 0 / 0) 100%);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: left top;
}
.heading-decoration2::before {
  content: attr(data-number);
  display: block;
  margin-bottom: 20px;
  color: #40A9B3;
}
.heading-decoration2 + p {
  margin-top: 1em;
  margin-bottom: 2em;
  color: #707070;
  font-family: "montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
}
.heading-decoration3 {
  padding: 0.5rem 1rem;
  border-left: 10px solid #40A9B3;
}
/*経歴*/
.background-container {
  height: 100%;
  display: grid;
  padding: clamp(90px, 9vw, 120px)0;
}
/*.timeline {
  border-left: 3px solid #40A9B3; 
}*/
.timeline_item + .timeline_item {
  padding-top: 0;
}
.timeline_item {
  padding: clamp(1.25rem, 0.6536rem + 2.5445vw, 1.875rem) 0;
}
/*.time_date {
position: relative;
}*/
.time {
  font-size: clamp(2.5rem, -13.8107rem + 27.1845vw, 6rem);
  min-height: 0vw;
  font-family: serif;
  font-weight: bold;
  letter-spacing: 3px;
  color: rgba(64, 169, 179, 0.2);
  padding-left: 0%;
}
.flag {
  /*position: absolute;
  top: 50%; */
  /*font-size: clamp(1rem, 0.5079rem + 2.0997vw, 1.5rem);*/
  font-size: clamp(1rem, 0.6429rem + 1.7857vw, 1.5rem);
  font-weight: bold;
  color: #40A9B3;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-left: 4%;
}
.desc {
  font-size: clamp(0.8rem, 0.6031rem + 0.8399vw, 1rem);
  min-height: 0vw;
  padding-left: 4%;
  /*border-bottom: 1px solid #64B8C0;*/
}
/* --------------------------------------
BOOK
-------------------------------------- */
/* #book セクション内の imgtext-container のみ上揃え */
#book .imgtext-container {
  align-items: flex-start; /* 上揃え */
  margin-top: clamp(90px, 9vw, 120px);
}
#book .text {
  padding-top: 10px;
}
.book-p {
  margin: 1em 0;
  font-size: clamp(16px, 2.4vw, 18px);
}
/* dl, dt, dd の基本設定（.book-dl に限定） */
.book-dl {
  display: flex;
  flex-wrap: wrap; /* 複数行対応 */
  align-items: baseline; /* ベースラインで揃える */
  margin: 0 0 20px; /* 各 dl の間隔 */
  padding-bottom: 5px; /* 下線の前に余白 */
  border-bottom: 1px solid #40A9B3; /* .book-dl の下に下線を引く */
}
.book-dl dt {
  flex: 0 0 auto; /* 必要な幅のみ確保 */
  min-width: 120px; /* dt の最低幅（調整可能） */
  font-weight: bold; /* 強調 */
  margin-right: 10px; /* dd との間隔 */
}
.book-dl dd {
  flex: 1 1 0; /* 残りのスペースを占有 */
  margin: 0; /* 余白をリセット */
}
ul.translator {
  display: flex;
  flex-wrap: wrap; /* 横幅を超えると折り返し */
  gap: 0.8em;
}
.read {
  margin-top: 70px;
  display: flex;
  justify-content: center; /* 水平方向の中央揃え */
}
/* --------------------------------------
BILLBOARD
-------------------------------------- */
.billboard {
  display: grid;
}
.billboard > * {
  grid-area: 1/1;
}
.billboard h2 {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 400;
  color: white;
  font-style: normal;
  text-shadow: 0 0 10px #707070, 0 0 15px #707070;
}
/* --------------------------------------
COMMITMENT
-------------------------------------- */
.commitment {
  padding-bottom: clamp(90px, 9vw, 120px);
}
.commitment ul li {
  color: #707070;
  border-left: solid 6px #40A9B3; /*左側の線*/
  border-bottom: solid 2px #dadada; /*下に灰色線*/
  background: #ffffff;
  margin-bottom: 7px; /*下のバーとの余白*/
  line-height: 1.5;
  padding: 0.5em;
  font-size: clamp(16px, 2.4vw, 18px);
}
/* --------------------------------------
WORK FLOW
-------------------------------------- */
.workflow {
  padding: clamp(90px, 9vw, 120px)0;
  background-color: #f3f1ed;
}
/* パーツの見出し */
.heading {
  position: absolute;
  top: calc((var(--v-space) + 0.6em) * -1);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(30px, 3vw, 40px); /*clamp(40px, 5.2vw, 70px);*/
  min-height: 0vw;
  font-weight: 300;
}
.heading span {
  display: block;
  color: #666666;
  font-size: 18px;
}
.step {
  display: flex;
  background-color: white;
  flex-direction: column;
  padding-top: 27px;
  padding-right: 27px;
  padding-left: 27px;
  padding-bottom: 27px;
  border-radius: 20px;
}
.workflow-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 25px;
  padding-bottom: clamp(90px, 9vw, 120px);
}
@media (min-width: 768px) {
  .workflow-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
.step a {
  display: block; /*マウスホバーの為の設定*/
}
.step h3 {
  margin: 1em 0 0.5em;
  min-height: 0vw;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(25px, 3vw, 30px);
  font-weight: 300;
}
.step .text {
  margin-bottom: 27px;
}
.step p {
  font-size: clamp(10px, 1.6vw, 14px);
  min-height: 0vw;
}
.step figure {
  margin-top: auto;
}
.step img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
}
.step li {
  font-size: clamp(10px, 1.6vw, 14px);
}
/* --------------------------------------
Treatment Price List
-------------------------------------- */
.grid {
  margin-rightmargin-right: auto;
  display: grid;
  max-width: 960px;
  grid-template-columns: 1.5fr 1fr;
  font-size: clamp(16px, 2.4vw, 18px);
  /* font-size: clamp(0.75rem, 0.3922rem + 1.5267vw, 1.125rem); */
  gap: 10px;
  margin-left: auto;
  margin-right: auto;
}
.price {
  padding: clamp(90px, 9vw, 120px)0;
  background-color: #e9e5e9;
}
.price-title {
  grid-column: span 2;
  font-weight: bold;
  margin: 1.5em 0 0.5em;
  border-bottom: 1px solid #40A9B3;
}
.sub-title {
  grid-column: span 2;
  font-weight: bold;
  margin: 0.5em 0 0.5em;
}
.price-desc {
  padding-left: 1em;
}
.price-desc2 {
  padding-left: 1em;
  font-weight: bold;
}
.price-desc2 span {
  font-weight: normal;
}
.price-price {
  justify-self: end;
  align-self: center;
}
/* --------------------------------------
YouTube最大値指定
-------------------------------------- */
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.classb-container {
  font-size: clamp(0.75rem, 0.3922rem + 1.5267vw, 1.125rem);
  padding: clamp(90px, 9vw, 120px)0;
}
.classb-container h4 {
  color: #009FD8;
  font-size: 140%;
  font-weight: bold;
  letter-spacing: .05em;
  line-height: 1.6em;
}
.classb-text {
  padding: clamp(90px, 9vw, 120px)0;
}
.classb-text dl {
  display: flex;
  justify-content: space-between;
  color: #707070
}
.classb-text dt {
  text-align: center;
  width: 20%;
  min-width: 105px;
  box-sizing: border-box;
  background: #fff;
  border: solid 1px #00A0D9;
  padding: 1.5em 0;
  font-size: 110%;
  letter-spacing: .05em;
  line-height: 1.2em;
}
.classb-text dd {
  margin: 0;
  width: 75%;
}
/* --------------------------------------
 Whitening
-------------------------------------- */
.whitening {
  padding: clamp(90px, 9vw, 120px)0;
  /* background-color: #e9e5e9;*/
}
.whitening > .text {
  text-align: justify;
}
.whitening-container1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto auto;
  font-weight: 400;
  font-size: clamp(1rem, 0.6429rem + 1.7857vw, 1.5rem);
  color: #4497BC;
  grid-column-gap: 27px;
  grid-row-gap: 20px;
  justify-items: center;
  place-items: center;
  height: 100%;
  background-color: white;
  padding: clamp(90px, 9vw, 120px)20px;
  margin-bottom: clamp(90px, 9vw, 120px);
}
.whitening-container1 > .whitening-item1 {
  grid-area: 1 / 1 / 2 / 2;
}
.whitening-container1 > .whitening-item2 {
  grid-area: 1 / 2 / 2 / 3;
}
.whitening-container1 > .whitening-item3 {
  grid-area: 1 / 3 / 2 / 4;
}
.whitening-container1 > .whitening-item4 {
  grid-area: 2 / 1 / 3 / 2;
}
.whitening-container1 > .whitening-item5 {
  grid-area: 2 / 2 / 3 / 3;
}
.whitening-container1 > .whitening-item6 {
  grid-area: 2 / 3 / 3 / 4;
}
.whitening-container1 > .whitening-item7 {
  grid-area: 3 / 1 / 4 / 4;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}
.whitening-container1 > .whitening-item8 {
  grid-area: 4 / 2 / 5 / 4;
  font-size: clamp(16px, 2.4vw, 18px);
}
.whitening-container1 > .whitening-item9 {
  grid-area: 4 / 1 / 5 / 2;
}
.whitening-item9 img {
  border-radius: 20px;
}
.whitening-container2 {
  display: flex;
  flex-direction: column;
  gap: 54px;
  height: 100%;
  align-items: center;
  background-color: white;
  margin-bottom: clamp(90px, 9vw, 120px);
  padding: clamp(90px, 9vw, 120px)20px;
}
@media (min-width: 600px) {
  .whitening-container2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto auto auto auto;
    justify-items: center;
  }
}
.whitening-container2 > .whitening-item1 {
  grid-area: 1 / 1 / 2 / 2;
  background-color: #95C4E2;
  color: white;
  padding: 0 20px;
}
.whitening-container2 > .whitening-item2 {
  grid-area: 2 / 1 / 3 / 2;
  color: #95C4E2;
}
.whitening-container2 > .whitening-item3 {
  grid-area: 3 / 1 / 4 / 2;
}
.whitening-container2 > .whitening-item4 {
  grid-area: 4 / 1 / 5 / 2;
}
.whitening-container2 > .whitening-item5 {
  grid-area: 5 / 1 / 6 / 2;
  color: #95C4E2;
}
.whitening-container2 > .whitening-item6 {
  grid-area: 6 / 1 / 7 / 2;
}
.whitening-container2 > .whitening-item7 {
  grid-area: 1 / 2 / 2 / 3;
  background-color: #9E9E9F;
  color: white;
  padding: 0 20px;
}
.whitening-container2 > .whitening-item8 {
  grid-area: 2 / 2 / 3 / 3;
  color: #9E9E9F;
}
.whitening-container2 > .whitening-item9 {
  grid-area: 3 / 2 / 4 / 3;
}
.whitening-container2 > .whitening-item10 {
  grid-area: 4 / 2 / 5 / 3;
}
.whitening-container2 > .whitening-item11 {
  grid-area: 5 / 2 / 6 / 3;
  color: #9E9E9F;
}
.whitening-container2 > .whitening-item12 {
  grid-area: 6 / 2 / 7 / 3;
}
.whitening-container3 {
  display: grid;
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto auto auto auto;
  background-color: white;
  padding: clamp(90px, 9vw, 120px)20px;
  margin-bottom: clamp(90px, 9vw, 120px);
}
.whitening-container3 p {
  padding-left: 10px;
  padding-right: 10px;
}
.whitening-container3 > .whitening-item1 {
  grid-area: 1 / 1 / 2 / 2;
}
.whitening-container3 > .whitening-item2 {
  grid-area: 2 / 1 / 3 / 2;
}
.whitening-container3 > .whitening-item3 {
  grid-area: 3 / 1 / 4 / 2;
}
.whitening-container3 > .whitening-item4 {
  grid-area: 4 / 1 / 5 / 2;
}
.whitening-container3 > .whitening-item5 {
  grid-area: 5 / 1 / 6 / 2;
}
.whitening-container3 > .whitening-item6 {
  grid-area: 1 / 2 / 2 / 3;
  background-color: #95C5E3;
  color: white;
  text-align: center;
  font-weight: 600;
}
.whitening-container3 > .whitening-item7 {
  grid-area: 2 / 2 / 3 / 3;
}
.whitening-container3 > .whitening-item8 {
  grid-area: 3 / 2 / 4 / 3;
}
.whitening-container3 > .whitening-item9 {
  grid-area: 4 / 2 / 5 / 3;
}
.whitening-container3 > .whitening-item10 {
  grid-area: 5 / 2 / 6 / 3;
}
.whitening-container3 > .whitening-item11 {
  grid-area: 1 / 3 / 2 / 4;
  background-color: #9BAFBA;
  color: white;
  text-align: center;
  font-weight: 600;
}
.whitening-container3 > .whitening-item12 {
  grid-area: 2 / 3 / 3 / 4;
}
.whitening-container3 > .whitening-item13 {
  grid-area: 3 / 3 / 4 / 4;
}
.whitening-container3 > .whitening-item14 {
  grid-area: 4 / 3 / 5 / 4;
}
.whitening-container3 > .whitening-item15 {
  grid-area: 5 / 3 / 6 / 4;
}
.whitening-container4 {
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
  margin-bottom: clamp(90px, 9vw, 120px);
}
@media (min-width: 900px) {
  .whitening-container4 {
    flex-direction: row;
    align-items: center;
  }
}
.whitening-container4 > * {
  margin: 0 10px;
}
.whitening-container4 > .cross-text {
  font-size: 60px;
}
.whitening-container5 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  margin-bottom: clamp(90px, 9vw, 120px);
}
@media (min-width: 600px) {
  .whitening-container5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto auto auto auto;
  }
}
.whitening-container5 > .whitening-item1 {
  grid-area: 1 / 1 / 2 / 4;
  background-color: #001B5C;
  color: white;
  text-align: center;
  font-weight: 600;
}
.whitening-container5 > .whitening-item2 {
  grid-area: 2 / 1 / 3 / 4;
}
.whitening-container5 > .whitening-item3 {
  grid-area: 3 / 1 / 4 / 4;
  background-color: #001B5C;
  color: white;
  text-align: center;
  font-weight: 600;
}
.whitening-container5 > .whitening-item4 {
  grid-area: 4 / 1 / 5 / 4;
}
.whitening-container5 > .whitening-item5 {
  grid-area: 1 / 4 / 2 / 6;
  background-color: #9E9E9F;
  color: white;
  text-align: center;
  font-weight: 600;
}
.whitening-container5 > .whitening-item6 {
  grid-area: 2 / 4 / 3 / 6;
}
/* --------------------------------------
 TMD
-------------------------------------- */
.tmd-treatment {
  padding: clamp(90px, 9vw, 120px)0;
  /* background-color: #e9e5e9;*/
}
.tmd-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 27px;
  margin-bottom: clamp(90px, 9vw, 120px);
}
@media (min-width: 768px) {
  .tmd-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
.tmd {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 27px 27px;
  border-radius: 20px;
  background-color: #ffffff;
}
.tmd h3 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  font-weight: 400;
}
.tmd-sx {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  margin-bottom: auto;
}
.tmd-container2 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: auto auto auto auto auto auto;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-bottom: clamp(90px, 9vw, 120px);
}
.div1 {
  grid-area: 4 / 1 / 7 / 2;
  display: flex;
  writing-mode: vertical-rl;
  background-color: #6fcdd9;
  padding: 20 0;
  color: white;
  justify-content: center;
  align-items: center;
}
.div2 {
  grid-area: 4 / 2 / 5 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
}
.div3 {
  grid-area: 5 / 2 / 6 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
}
.div4 {
  grid-area: 6 / 2 / 7 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
}
.div5 {
  grid-area: 1 / 3 / 2 / 8;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #6fcdd9;
  padding: 20 0;
  line-height: 3.0;
  color: white;
}
.div6 {
  grid-area: 2 / 3 / 4 / 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
}
.div7 {
  grid-area: 2 / 4 / 4 / 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
}
.div8 {
  grid-area: 2 / 5 / 3 / 7;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
}
.div9 {
  grid-area: 3 / 5 / 4 / 6;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}
.div10 {
  grid-area: 3 / 6 / 4 / 7;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}
.div11 {
  grid-area: 2 / 7 / 4 / 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
}
.div12 {
  grid-area: 4 / 3 / 5 / 4;
  display: flex;
  justify-content: center;
  align-items: center;
}
.div13 {
  grid-area: 4 / 4 / 5 / 5;
  display: flex;
  justify-content: center;
  align-items: center;
}
.div14 {
  grid-area: 4 / 5 / 5 / 6;
  display: flex;
  justify-content: center;
  align-items: center;
}
.div15 {
  grid-area: 4 / 6 / 5 / 7;
  display: flex;
  justify-content: center;
  align-items: center;
}
.div16 {
  grid-area: 4 / 7 / 5 / 8;
  display: flex;
  justify-content: center;
  align-items: center;
}
.div17 {
  grid-area: 5 / 3 / 6 / 4;
  display: flex;
  justify-content: center;
  align-items: center;
}
.div18 {
  grid-area: 5 / 4 / 6 / 5;
  display: flex;
  justify-content: center;
  align-items: center;
}
.div19 {
  grid-area: 5 / 5 / 6 / 6;
  display: flex;
  justify-content: center;
  align-items: center;
}
.div20 {
  grid-area: 5 / 6 / 6 / 7;
  display: flex;
  justify-content: center;
  align-items: center;
}
.div21 {
  grid-area: 5 / 7 / 6 / 8;
  display: flex;
  justify-content: center;
  align-items: center;
}
.div22 {
  grid-area: 6 / 3 / 7 / 4;
  display: flex;
  justify-content: center;
  align-items: center;
}
.div23 {
  grid-area: 6 / 4 / 7 / 5;
  display: flex;
  justify-content: center;
  align-items: center;
}
.div24 {
  grid-area: 6 / 5 / 7 / 6;
  display: flex;
  justify-content: center;
  align-items: center;
}
.div25 {
  grid-area: 6 / 6 / 7 / 7;
  display: flex;
  justify-content: center;
  align-items: center;
}
.div26 {
  grid-area: 6 / 7 / 7 / 8;
  display: flex;
  justify-content: center;
  align-items: center;
}
.div27 {
  grid-area: 1 / 1 / 4 / 3;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* --------------------------------------
 FAQ
-------------------------------------- */
.faq-container {
  margin-bottom: clamp(90px, 9vw, 120px);
  font-family: "Montserrat", sans-serif;
}
.faq {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  font-weight: 400;
}
.qa-7 {
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 4px 4px rgb(0 0 0 / 2%), 0 2px 3px -2px rgba(0 0 0 / 5%);
  background-color: #fff;
}
.qa-7 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em 1em 3em;
  font-weight: 600;
  cursor: pointer;
}
.qa-7 summary::before, .qa-7 p::before {
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: 1.3em;
}
.qa-7 summary::before {
  color: #6fcdd9;
  content: "Q";
}
.qa-7 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #333333b3;
  border-right: 3px solid #333333b3;
  content: '';
  transition: transform .5s;
}
.qa-7[open] summary::after {
  transform: rotate(225deg);
}
.qa-7 p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 3em 1.5em;
  transition: transform .5s, opacity .5s;
}
.qa-7[open] p {
  transform: none;
  opacity: 1;
}
.qa-7 p::before {
  color: #ff8d8d;
  line-height: 1.2;
  content: "A";
}
/* --------------------------------------
 施設基準
-------------------------------------- */
.standards {
  padding: clamp(90px, 9vw, 120px) 0;
  line-height: 1.8;
}
/* セクション内のh4に余白追加 */
.standards-container h4 {
  margin-top: 1.5rem;
}
/* 両端揃えをリスト項目にのみ適用 */
.standards-container ol li, .standards-container ul li {
  text-align: justify;
  text-justify: inter-ideograph;
  margin-bottom: 1em; /* 各項目の間隔を見やすく */
}

/* list-style-type指定 */
.katakana {
  list-style-type: katakana;
}
.katakana-iroha {
  list-style-type: katakana-iroha;
}