@charset "UTF-8";
/* CSS Document */
/* PC */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
  /* スムーズな動きでスクロール（トップに戻る、リンクなど全体に反映） */
}
body {
  color: #333333;
  /* RGB */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.6rem;
  text-align: left;
}
main {
  padding-top: 184px;
  /* ヘッダーを固定表示するので、ヘッダーの高さ分余白をとる */
}
section h2 {
  color: #FFFFFF;
  font-size: 6.0rem;
  font-weight: 600;
  text-align: center;
}
section h3 {
  font-size: 4.0rem;
  font-weight: 600;
  line-height: 6.5rem;
  text-align: center;
  width: 90%;
  /* 線の幅（最大幅より小さくなったときの割合）*/
  max-width: 1320px;
  /* 線の最大幅 */
  margin: 0 auto 80px;
}
section h3::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #333333;
  margin-top: 30px;
}
section h4 {
  font-size: 3.6rem;
  line-height: 5.8rem;
  font-weight: 600;
  border-bottom: solid #333333 1px;
  /* 線 */
  padding-bottom: 20px;
  /* 文字と線の間の余白 */
  margin-bottom: 15px;
}
section h5 {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 3.9rem;
  margin-bottom: 20px;
}
/* PCとSPの間 */
@media(max-width: 1140px) {
  main {
    padding-top: 254px;
    /* ヘッダーを固定表示するので、ヘッダーの高さ分余白をとる */
  }
}
/* SP */
@media(max-width: 750px) {
  main {
    padding-top: 58px;
    /* ヘッダーを固定表示するので、ヘッダーの高さ分余白をとる */
  }
  section h2 {
    font-size: 2.4rem;
    line-height: 3.9rem;
  }
  section h3 {
    font-size: 3.0rem;
    line-height: 4.8rem;
    margin: 0 auto 60px;
    /* 中央寄せ */
  }
  section h4 {
    font-size: 2.4rem;
    line-height: 3.9rem;
    padding-bottom: 15px;
    /* 文字と線の間の余白 */
  }
  section h5 {
    font-size: 2.0rem;
    line-height: 3.2rem;
  }
}
/* ヘッダーPC */
.header {
  width: 100%;
  background-color: #E8F6F5;
  position: fixed;
  /* ヘッダーを固定表示 */
  z-index: 100;
  /* 優先度を上げる */
}
.header__wrapper {
  display: flex;
  /* ロゴと電話・診療時間を横並び */
  flex-wrap: wrap;
  /* マルチラインの表示。横幅収まらなくなったら縦配置に変わる */
  justify-content: space-between;
  /* 横方向の位置揃え */
  align-items: center;
  /* 縦方向の位置揃え */
  margin: 0 auto;
  max-width: 1320px;
  width: 90%;
}
.header__logo {
  margin-top: 25px;
}
.header__access {
  margin-top: 38px;
}
.header__access ul {
  display: flex;
  /* 電話と診療時間を横並びにする */
  flex-wrap: wrap;
  /* マルチラインの表示。横幅収まらなくなったら縦配置に変わる */
  align-items: center;
  /* 縦方向の位置揃え */
}
.header__access ul li a {
  text-decoration: none;
  /* テキストの装飾をなくす */
  margin-top: 30px;
}
.header__access-tell {
  margin-right: 50px;
  /* 電話と診療時間の間の余白 */
}
.header__access-tell a {
  color: #26C8BF;
  font-size: 3.0rem;
  font-weight: 600;
}
.header__access-btn a {
  margin: 0;
  padding: 15px 24px;
  /* 囲いと文字の間の余白 */
  border-radius: 16px;
  /* 角丸 */
  background-color: #26C8BF;
  color: #FFFFFF;
  font-size: 2.4rem;
  font-weight: 600;
}
.header__navigation ul {
  display: flex;
  /* メニューを横並び */
  flex-wrap: wrap;
  /* マルチラインの表示。横幅収まらなくなったら縦配置に変わる */
  justify-content: center;
  /* 横方向の位置揃え */
  align-items: center;
  /* 縦方向の位置揃え */
}
.header__navigation ul li {
  margin: 40px 0 22px;
  /* メニュー間の余白 上30px 左右0 下22px */
}
/* 最初（ホーム）以外の前に「｜」を追加する */
.header__navigation ul li:not(:first-child)::before {
  content: "｜";
  margin: 0 30px;
}
.header__navigation ul li a {
  text-decoration: none;
  /* テキストの装飾をなくす */
  color: #333333;
}
/* SP用のメニューを非表示にする */
#nav-text,
.none,
.header__sp-tell {
  display: none;
}
/* ヘッダーPCとSPの間 */
@media(max-width: 1140px) {
  .header__wrapper {
    flex-direction: column;
    /* アイテムを上から下に配置 */
  }
}
@media(max-width: 750px) {
  /* ヘッダーSP */
  .header__inner {
    display: flex;
    /* ロゴと電話・診療時間を横並び */
    flex-wrap: wrap;
    /* マルチラインの表示。横幅収まらなくなったら縦配置に変わる */
    justify-content: space-around;
    /* 横方向の位置揃え */
    align-items: center;
    /* 縦方向の位置揃え */
    margin: 0 auto;
    gap: 16px clamp(30px, 10%, 100px);
    /* gap＝フレックスアイテムの間の余白調整。比較関数：clamp(最小値,推奨値,最大値) */
  }
  /* PC分のキャンセル */
  .header__wrapper {
    display: contents;
    flex-wrap: nowrap;
    justify-content: normal;
    align-items: normal;
    gap: 0;
  }
  .header__logo {
    margin-top: 15px;
    margin-bottom: 15px;
    width: 165px;
    max-width: 80%;
  }
  .header__sp-wrapper {
    display: flex;
  }
  .header__sp-tell {
    display: block;
    width: 5.5rem;
    height: 5.5rem;
    background-color: #26C8BF;
  }
  .header__sp-tell a {
    text-decoration: none;
    color: #FFFFFF;
    text-align: center;
  }
  .header__sp-tell img {
    position: relative;
    left: 13px;
    top: 4px;
    width: 2.9rem;
  }
  .header__sp-tell span {
    position: relative;
    top: -7px;
    display: block;
    /* 中央寄せのために入れる */
    margin: 0 auto;
    font-size: 1.2rem;
    font-weight: 600;
  }
  /* PC用のメニューを非表示にする */
  .header__access,
  .header__navigation {
    display: none;
  }
  .header__navigation ul {
    display: block;
    /* PCの設定をキャンセルし縦並びにする */
  }
  .header__navigation ul li {
    margin: 0;
    /* PCの設定をキャンセル */
  }
  /* 最初（ホーム）以外の前の「｜」をキャンセル */
  .header__navigation ul li:not(:first-child)::before {
    content: "";
    margin: 0;
  }
  /* ハンバーガーボタン */
  #nav-drawer {
    position: relative;
  }
  /* アイコンのスペース */
  #nav-open {
    display: flex;
    justify-content: center;
    width: 5.5rem;
    /* 囲いの幅 */
    height: 5.5rem;
    /* 囲いの高さ */
    background-color: #26C8BF;
    /* 囲いの色 */
  }
  /* ハンバーガーの形をCSSで表現 */
  #nav-open span {
    position: absolute;
    bottom: 3.5rem;
    height: 4px;
    /* 線の太さ */
    width: 3.5rem;
    /* 線の長さ */
    background-color: #FFFFFF;
    /* 線の色 */
    display: block;
    content: "";
  }
  #nav-open span:nth-of-type(1) {
    top: 6px;
    /* 線の位置調整 */
  }
  #nav-open span:nth-of-type(2) {
    top: 16px;
    /* 線の位置調整 */
  }
  #nav-open span:nth-of-type(3) {
    top: 26px;
    /* 線の位置調整 */
  }
  #nav-open span:nth-of-type(2)::after {
    content: "メニュー";
    /* 2つ目の要素のafterにメニュー表示を指定 */
    position: absolute;
    top: 14px;
    left: -7px;
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 600;
    white-space: nowrap;
    /* テキストの折り返しをなくす */
  }
  /* メニューの中身 */
  #nav-content {
    display: block;
    position: fixed;
    /* スクロールしても固定表示する */
    left: 0;
    z-index: 9999;
    width: 100%;
    background-color: #E8F6F5;
    text-align: left;
    transform: scale(1, 0);
    /* 要素を拡大・縮小表示する */
    transform-origin: top;
    /* トップを原点にする */
    border-top: solid #333333 1px;
    /* 線 */
  }
  /* メニューの中身　並び方 */
  #nav-content ul li {
    display: block;
    border-bottom: solid #333333 1px;
    /* 線 */
  }
  /* メニューの中身　テキスト */
  #nav-content ul li a {
    display: flex;
    width: 100%;
    /* リンクの範囲を親要素いっぱいにする */
    height: 100%;
    /* リンクの範囲を親要素いっぱいにする */
    text-decoration: none;
    color: #333333;
    padding: 25px 18px;
    /* テキストとハンバーガーメニューの余白 */
  }
  /* チェックがついたら表示させる */
  #nav-input:checked ~ #nav-close {
    display: block;
  }
  #nav-input:checked ~ #nav-content {
    transform: translateX(0%);
  }
  /* メニューオープン時に三本線を×マークに変更する */
  #nav-input:checked ~ #nav-open span:nth-of-type(2) {
    background-color: rgba(255, 255, 255, 0);
    /* メニューオープン時は真ん中の線を透明にする */
  }
  #nav-input:checked ~ #nav-open span:nth-of-type(1) {
    top: 14px;
    transform: rotate(45deg);
  }
  #nav-input:checked ~ #nav-open span:nth-of-type(3) {
    top: 14px;
    transform: rotate(-45deg);
  }
  #nav-input:checked ~ #nav-open span:nth-of-type(2)::after {
    content: "閉じる";
    /* 2つ目の要素のafterに閉じる表示を指定し、メニューから閉じるに変化させる */
    left: 0;
  }
}
/* 下層ページトップPC */
.top {
  position: relative;
}
.top__image h2 {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top__image img {
  width: 100%;
  /* 画像をトップの幅に合わせる */
  height: auto;
  /* 画像の縦横比を維持したまま拡大する */
  vertical-align: bottom;
}
/* パンくずリスト */
.topic-path {
  margin: 40px auto 140px;
  /* autoは中央寄せ */
  padding: 0;
  list-style: none;
  width: 90%;
  max-width: 1320px;
  /* 線の幅（最大幅より小さくなったときの割合）*/
}
.topic-path li {
  display: inline;
  /* 横に並ぶように */
  list-style: none;
}
.topic-path li:after {
  /* >を表示 */
  content: '>';
  padding: 0 1.3rem;
  color: #333333;
}
.topic-path li:last-child:after {
  content: '';
}
.topic-path li a {
  text-decoration: none;
  color: #333333;
}
/* 下層ページトップSP */
@media(max-width: 750px) {
  .top__image h2 {
    top: 38%;
  }
  .topic-path {
    margin: 20px auto 100px;
    /* autoは中央寄せ */
  }
  .topic-path li {
    font-size: 1.2rem;
  }
}
/* 下層ページナビゲーションPC */
.navigation {
  width: 90%;
  margin: 140px auto;
}
.navigation__list {
  display: flex;
  /* メニューを横並び */
  flex-wrap: wrap;
  /* マルチラインの表示。横幅収まらなくなったら縦配置に変わる */
  justify-content: center;
  /* 横方向の位置揃え */
  align-items: flex-end;
  /* 縦方向の位置揃え */
  gap: 16px clamp(30px, 44%, 67px);
  /* gap＝フレックスアイテムの間の余白調整。比較関数：clamp(最小値,推奨値,最大値) */
  margin: 0 auto;
}
.navigation__list li {
  width: 100%;
  max-width: 395px;
}
.navigation__list li p {
  text-align: center;
  margin-bottom: 20px;
}
/* 下層ページナビゲーションSP */
@media(max-width: 750px) {
  .navigation {
    margin: 100px auto;
  }
  .navigation__list li {
    margin-top: 40px;
  }
  .navigation__list li p {
    margin-bottom: 15px;
  }
}
/* フッターPC */
.footer {
  width: 100%;
  background-color: #E8F6F5;
}
.footer__navigation {
  text-align: center;
  /* メニューを中央揃えにする */
}
.footer__navigation ul {
  display: flex;
  /* メニューを横並び */
  flex-wrap: wrap;
  /* マルチラインの表示。横幅収まらなくなったら縦配置に変わる */
  justify-content: center;
  /* 横方向の位置揃え */
  align-items: center;
  /* 縦方向の位置揃え */
}
.footer__navigation ul li {
  margin: 22px 0 22px;
  /* メニュー間の余白 上下22px　左右0 下15px */
}
/* 最初（ホーム）以外の前に「｜」を追加する */
.footer__navigation ul li:not(:first-child)::before {
  content: "｜";
  margin: 0 30px;
}
.footer__navigation ul li a {
  text-decoration: none;
  /* テキストの装飾をなくす */
  color: #333333;
}
.footer__wrapper {
  display: flex;
  /* ロゴ・電話・住所・診療時間と地図を横並び */
  flex-wrap: wrap;
  /* マルチラインの表示。横幅収まらなくなったら縦配置に変わる */
  justify-content: space-evenly;
  /* 横方向の位置揃え */
  align-items: center;
  /* 縦方向の位置揃え */
  gap: 16px clamp(30px, 44%, 102px);
  /* gap＝フレックスアイテムの間の余白調整。比較関数：clamp(最小値,推奨値,最大値) */
  margin: 60px auto 0;
  /* フッターメニューとロゴの間の余白と、中央寄せ */
  max-width: 1320px;
  width: 90%;
}
.footer__access {
  display: flex;
  /* 電話と住所を横並び */
  flex-wrap: wrap;
  /* マルチラインの表示。横幅収まらなくなったら縦配置に変わる */
  justify-content: flex-start;
  /* 横方向の位置揃え */
  align-items: center;
  /* 縦方向の位置揃え */
  list-style: none;
  /* リストの点を消す */
  margin-top: 20px;
}
.footer__access-tell {
  margin-right: 40px;
  /* 電話と住所の間の余白 */
}
.footer__access-tell a {
  color: #26C8BF;
  font-size: 3.0rem;
  font-weight: 600;
  text-decoration: none;
  /* テキストの装飾をなくす */
}
.footer__access-address {
  padding: 10px 0;
}
.footer__consultation {
  padding: 20px 30px;
  /* 囲いと文字の間の余白 */
  background-color: #FFFFFF;
  margin-top: 30px;
}
.footer__consultation table,
.footer__consultation table th,
.footer__consultation table td {
  text-align: center;
  padding: 3px 20px;
  border-bottom: solid #333333 1px;
  /* 表の線 */
  vertical-align: middle;
  font-weight: 600;
}
.footer__consultation table {
  width: 100%;
  margin: auto;
  /* 表の中央揃え */
}
.footer__consultation p {
  font-weight: 600;
  margin-top: 20px;
}
.footer__map {
  max-width: 100%;
  vertical-align: bottom;
}
.footer__copyright {
  text-align: center;
  padding: 75px 0 60px;
}
/* フッターSP */
@media(max-width: 750px) {
  .footer {
    padding: 100px 0;
  }
  .footer__wrapper {
    margin: 0 auto;
    /* フッターメニューとロゴの間の余白キャンセルと、中央寄せ */
  }
  .footer__logo {
    max-width: 100%;
    vertical-align: bottom;
  }
  .footer__access {
    margin-top: 60px;
  }
  .footer__consultation {
    padding: 20px 20px;
    /* 囲いと文字の間の余白 */
    margin: 20px auto 0;
    max-width: 95%;
  }
  .footer__consultation table,
  .footer__consultation table th,
  .footer__consultation table td {
    font-size: 1.2rem;
    padding: 0.3rem 0.8rem;
  }
  .footer__consultation table {
    margin: 0;
    /* 表の中央揃えをキャンセル */
  }
  /* PC用のメニューを非表示にする */
  .footer__navigation {
    display: none;
  }
}
/* ボタン */
.btn {
  max-width: 395px;
  width: 100%;
  padding: 15px 15px;
  /* 囲いと文字の間の余白 */
  border-radius: 16px;
  /* 角丸 */
  background-color: #26C8BF;
  text-align: center;
  /* 文字を中央配置 */
  margin: 0 auto;
  /* ボタン全体を中央配置 */
  box-sizing: border-box;
  /* paddingもwidthに含めるため記述*/
}
.btn a {
  display: block;
  /* ボタンの範囲を親要素いっぱいにする */
  text-decoration: none;
  font-size: 2.4rem;
  line-height: 3.9rem;
  font-weight: 600;
  color: #FFFFFF;
  /* 文字の色 */
}
.btn img {
  margin-left: 12.5px;
  /* 文字と矢印の間の余白 */
}
@media(max-width: 750px) {
  .btn a {
    font-size: 2.0rem;
    line-height: 3.2rem;
  }
}
/* トップへ戻るボタン */
.page-top__btn {
  position: fixed;
  /* 固定表示する */
  bottom: 0;
  right: 50px;
  font-weight: 600;
  padding: 2.0rem;
  text-align: center;
  background-color: #26C8BF;
  color: #FFFFFF;
  text-decoration: none;
}
@media(max-width: 750px) {
  .page-top__btn {
    display: none;
  }
}
/* 改行 */
.sp__only {
  display: none;
}
@media(max-width: 750px) {
  .sp__only {
    display: block;
  }
  .pc__only {
    display: none;
  }
}
/* hoverまとめ */
/* マウスカーソルを乗せた状態で色が少し薄くなる */
.header__logo:hover,
.header__access-btn:hover,
.page_top_btn:hover,
.footer__logo:hover,
.btn:hover {
  transition: all .3s;
  /* アニメーションの指定 */
  opacity: 0.5;
  /* 要素の不透明度 */
}
/* マウスカーソルを乗せた状態で色がつく */
.header__navigation ul li a:hover,
.topic-path li a:hover,
.footer__navigation ul li a:hover {
  transition: all .3s;
  /* アニメーションの指定 */
  color: #26C8BF;
}
@media(max-width: 750px) {
  /* マウスカーソルを乗せた状態で色が少し薄くなる */
  .header__access-tell:hover,
  .footer__access-tell:hover {
    transition: all .3s;
    /* アニメーションの指定 */
    opacity: 0.5;
    /* 要素の不透明度 */
  }
  /* マウスカーソルを乗せた状態で色がつく */
  #nav-content ul li a:hover {
    transition: all .3s;
    /* アニメーションの指定 */
    color: #26C8BF;
  }
}
/* 電話番号リンクをSPのみに適用 */
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}