@charset "UTF-8";
/* PCとSPの適用切り替え
--------------------------------- */
/* ホバー用メディアクエリ
--------------------------------- */
/* メディアクエリ調整関数
--------------------------------- */
/* 画面サイズ
--------------------------------- */
/* アンダーライン
--------------------------------- */
/* flex-boxのMixin
--------------------------------- */
/* カラー
--------------------------------- */
/* スクロールバーサイズ
--------------------------------- */
/* 基本設定
--------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  color: #222;
  font-weight: 400;
  scroll-behavior: smooth;
}

section, body, div, h1, h2, h3, h4, h5, h6, p, ul, li, span, figure, img, a, button, input, textarea {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul, li {
  list-style: none;
}

img, figure {
  width: 100%;
  vertical-align: bottom;
  object-fit: cover;
}

a, a:visited {
  text-decoration: none;
  color: inherit;
}

/* ハンバーガーを隠す
--------------------------------- */
html {
  overflow-x: hidden;
}

body {
  position: relative;
  overflow-x: hidden;
}

/* ボタン
--------------------------------- */
.btn {
  cursor: pointer;
  transition: all 0.2s;
}
.btn:hover {
  opacity: 0.9;
}

/* 設定
--------------------------------- */
@media (min-width: 768px) {
  .link-disable-pc {
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  .link-disable-sp {
    pointer-events: none;
  }
}
html {
  font-size: 10px;
}

@media (min-width: 1400px) {
  html {
    font-size: 0.7142857143vw;
  }
}
/* リキッドレイアウト適用用のMixin
--------------------------------- */
body.fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.anchor {
  margin-top: -5rem;
  padding-top: 5rem;
}

@media (max-width: 767px) {
  .anchor {
    margin-top: max(-4rem, -56px);
    padding-top: min(4rem, 56px);
  }
}
/* pc sp
--------------------------------- */
.dp-pc {
  display: block;
}

.dp-sp {
  display: none;
}

.dp-pc-ib {
  display: inline-block;
}

.dp-pc-im {
  display: block !important;
}

.dp-sp-im {
  display: none !important;
}

@media (max-width: 767px) {
  .dp-pc {
    display: none;
  }
  .dp-pc-ib {
    display: none;
  }
  .dp-sp {
    display: block;
  }
  .dp-pc-im {
    display: none !important;
  }
  .dp-sp-im {
    display: block !important;
  }
}
.dp-n {
  display: none;
}

.dp-n-im {
  display: none !important;
}

.dp-tb {
  display: none;
}

.dp-md-im {
  display: block !important;
}

.dp-tb-im {
  display: none !important;
}

@media (max-width: 980px) {
  .dp-tb {
    display: block;
  }
  .dp-md-im {
    display: none !important;
  }
  .dp-tb-im {
    display: block !important;
  }
}
/* font
--------------------------------- */
.ff-noto {
  font-family: "Noto Sans JP", sans-serif;
}

.ff-maru {
  font-family: "Zen Maru Gothic", sans-serif;
}

/* アニメーション
--------------------------------- */
.triger-by-scroll-in {
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 0.5s, transform 0.5s;
}
.triger-by-scroll-in.on {
  opacity: 1;
  transform: translateY(0);
}

/* header
--------------------------------- */
.header {
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0.1rem 0.6rem rgba(0, 0, 0, 0.2666666667);
}
.header .header__inner {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 8.8rem;
  padding: 0 3rem;
}
.header .header__inner .header__logo {
  width: 20.3rem;
  margin-left: 120px;
}
@media (max-width: 1430px) and (min-width: 768px) {
  .header .header__inner .header__logo {
    margin-left: calc(20vw - 166px);
  }
}
.header .header__inner .header__nav {
  margin-left: auto;
  margin-right: 43px;
}
.header .header__inner .header__nav .header__nav-list {
  display: flex;
  align-items: center;
  column-gap: 2rem;
}
.header .header__inner .header__nav .header__nav-list a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 19rem;
  height: 4.8rem;
  font-size: 2rem;
  font-weight: 700;
  background-color: #fff;
  border: 0.1rem solid #0D164A;
  border-radius: 4rem;
  transition: all 0.3s;
}
.header .header__inner .header__nav .header__nav-list a::before {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0D164A;
  border-radius: 4rem;
  transition: all 0.3s;
}
@media (hover: hover) {
  .header .header__inner .header__nav .header__nav-list a:hover {
    background-color: #0D164A;
    color: #fff;
  }
}
.header .header__inner .hamburger {
  position: relative;
  display: flex;
  align-items: center;
  width: 38px;
  height: 28px;
  user-select: none;
  outline: none;
  cursor: pointer;
}
.header .header__inner .hamburger span {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header .header__inner .hamburger::before, .header .header__inner .hamburger::after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: transform 0.3s ease;
  transform-origin: left;
}
.header .header__inner .hamburger::before {
  top: 0;
}
.header .header__inner .hamburger::after {
  bottom: 0;
}
.header .header__inner .hamburger.is_open span {
  opacity: 0;
}
.header .header__inner .hamburger.is_open::before {
  transform: rotate(45deg);
}
.header .header__inner .hamburger.is_open::after {
  transform: rotate(-45deg);
}

/* ハンバーガーで開いたメニュー
--------------------------------- */
.hamburger-menu {
  overflow-y: auto;
  z-index: 999;
  position: fixed;
  top: 8.8rem;
  left: 0;
  display: none;
  width: 100%;
  height: calc(100% - 8.8rem);
  padding-bottom: 40px;
  background-color: rgba(0, 0, 0, 0.8);
}
.hamburger-menu .hamburder-inner {
  width: calc(100% - 4rem);
  max-width: 978px;
  margin: 0 auto;
  padding-top: 6.2rem;
  padding-bottom: 6.2rem;
}
.hamburger-menu .hamburder-inner .hamburger-blk {
  display: flex;
  justify-content: space-between;
}
.hamburger-menu .hamburder-inner .hamburger-blk a.nav-link,
.hamburger-menu .hamburder-inner .hamburger-blk div.nav-link p.accordion-btn,
.hamburger-menu .hamburder-inner .hamburger-blk div.nav-link ul li a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: calc(33.3333333333% - 10px);
  height: 60px;
  font-size: 18px;
  font-weight: 700;
}
.hamburger-menu .hamburder-inner .hamburger-blk.link-clinic h3,
.hamburger-menu .hamburder-inner .hamburger-blk div.nav-link p.accordion-btn,
.hamburger-menu .hamburder-inner .hamburger-blk div.nav-link ul li a, .hamburger-menu .hamburder-inner .hamburger-blk.link-treat-price a {
  height: 60px;
  padding: 20px 30px 20px 20px;
  font-size: 16px;
  color: #fff;
}
.hamburger-menu .hamburder-inner .hamburger-blk a.nav-link,
.hamburger-menu .hamburder-inner .hamburger-blk div.nav-link ul li a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.hamburger-menu .hamburder-inner .hamburger-blk a.nav-link::after,
.hamburger-menu .hamburder-inner .hamburger-blk div.nav-link ul li a::after {
  position: absolute;
  content: "";
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.hamburger-menu .hamburder-inner .hamburger-blk.link-treat-type {
  margin-bottom: 20px;
}
.hamburger-menu .hamburder-inner .hamburger-blk.link-treat-type a.nav-link {
  justify-content: center;
  color: #0D164A;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #fff;
  transition: all 0.3s;
}
.hamburger-menu .hamburder-inner .hamburger-blk.link-treat-type a.nav-link::after {
  border-color: #0D164A;
}
@media (hover: hover) {
  .hamburger-menu .hamburder-inner .hamburger-blk.link-treat-type a.nav-link:hover {
    background-color: #0D164A;
    color: #fff;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-treat-type a.nav-link:hover::after {
    border-color: #fff;
  }
}
.hamburger-menu .hamburder-inner .hamburger-blk.link-clinic {
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.hamburger-menu .hamburder-inner .hamburger-blk.link-clinic h3 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid #fff;
  text-align: center;
  transition: all 0.3s;
}
.hamburger-menu .hamburder-inner .hamburger-blk.link-clinic h3::before, .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic h3::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 14px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s;
}
.hamburger-menu .hamburder-inner .hamburger-blk.link-clinic h3::after {
  transform: translateY(-50%) rotate(90deg);
  transition: all 0.3s;
}
.hamburger-menu .hamburder-inner .hamburger-blk.link-clinic h3.is-open::after {
  transform: translateY(-50%) rotate(0);
}
@media (hover: hover) {
  .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic h3:hover {
    background-color: #fff;
    color: #0D164A;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic h3:hover::before, .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic h3:hover::after {
    background-color: #0D164A;
  }
}
.hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap {
  display: none;
  width: 100%;
}
.hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap .hamburger-link-pc {
  display: flex;
}
.hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap .hamburger-link-pc .nav-link .accordion-btn, .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap .hamburger-link-pc .nav-link ul li {
  transition: all 0.3s;
}
@media (hover: hover) {
  .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap .hamburger-link-pc .nav-link .accordion-btn:hover, .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap .hamburger-link-pc .nav-link ul li:hover {
    opacity: 0.8;
  }
}
.hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap .hamburger-link-sp {
  display: none;
}
.hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap > div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap > div > div {
  width: calc(33.3333333333% - 10px);
}
.hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap > div > div .nav-link {
  width: 100%;
  border-radius: 0;
  margin-bottom: 10px;
}
.hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap > div > div .nav-link p.accordion-btn {
  position: relative;
  justify-content: flex-start;
  width: 100%;
  background-color: #525050;
}
.hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap > div > div .nav-link p.accordion-btn::before, .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap > div > div .nav-link p.accordion-btn::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 14px;
  height: 2px;
  background-color: #fff;
}
.hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap > div > div .nav-link p.accordion-btn::after {
  transform: translateY(-50%) rotate(90deg);
  transition: all 0.3s;
}
.hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap > div > div .nav-link p.accordion-btn.is-open::after {
  transform: translateY(-50%) rotate(0);
}
.hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap > div > div .nav-link ul {
  display: none;
}
.hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap > div > div .nav-link ul li:first-child {
  border-top: 1px solid #ADA9A9;
}
.hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap > div > div .nav-link ul li:not(:last-child) {
  border-bottom: 1px solid #ADA9A9;
}
.hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap > div > div .nav-link ul li a {
  position: relative;
  width: 100%;
  background-color: #898989;
}
.hamburger-menu .hamburder-inner .hamburger-blk.link-treat-price a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: calc(33.3333333333% - 10px);
  background-color: #898989;
  transition: all 0.3s;
}
@media (hover: hover) {
  .hamburger-menu .hamburder-inner .hamburger-blk.link-treat-price a:hover {
    opacity: 0.8;
  }
}

@media (max-width: 860px) {
  .hamburger-menu .hamburder-inner .hamburger-blk a.nav-link,
  .hamburger-menu .hamburder-inner .hamburger-blk div.nav-link p.accordion-btn,
  .hamburger-menu .hamburder-inner .hamburger-blk div.nav-link ul li a {
    height: 54px;
    font-size: 14px;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic h3,
  .hamburger-menu .hamburder-inner .hamburger-blk div.nav-link p.accordion-btn,
  .hamburger-menu .hamburder-inner .hamburger-blk div.nav-link ul li a, .hamburger-menu .hamburder-inner .hamburger-blk.link-treat-price a {
    height: 54px;
    padding: 20px 30px 20px 20px;
    font-size: 14px;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk a.nav-link,
  .hamburger-menu .hamburder-inner .hamburger-blk div.nav-link ul li a {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk a.nav-link::after,
  .hamburger-menu .hamburder-inner .hamburger-blk div.nav-link ul li a::after {
    right: 16px;
    width: 10px;
    height: 10px;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-treat-type {
    margin-bottom: 20px;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic {
    margin-bottom: 10px;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic h3 {
    margin-bottom: 10px;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic h3::before, .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic h3::after {
    right: 12px;
    width: 14px;
    height: 2px;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap > div > div .nav-link {
    margin-bottom: 10px;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap > div > div .nav-link p.accordion-btn::before, .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap > div > div .nav-link p.accordion-btn::after {
    right: 12px;
    width: 14px;
    height: 2px;
  }
}
@media (max-width: 674px) {
  .hamburger-menu .hamburder-inner .hamburger-blk a.nav-link,
  .hamburger-menu .hamburder-inner .hamburger-blk div.nav-link p.accordion-btn,
  .hamburger-menu .hamburder-inner .hamburger-blk div.nav-link ul li a {
    height: 50px;
    font-size: 12px;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic h3,
  .hamburger-menu .hamburder-inner .hamburger-blk div.nav-link p.accordion-btn,
  .hamburger-menu .hamburder-inner .hamburger-blk div.nav-link ul li a, .hamburger-menu .hamburder-inner .hamburger-blk.link-treat-price a {
    height: 50px;
    padding: 18px 20px 18px 16px;
    font-size: 12px;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk a.nav-link,
  .hamburger-menu .hamburder-inner .hamburger-blk div.nav-link ul li a {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk a.nav-link::after,
  .hamburger-menu .hamburder-inner .hamburger-blk div.nav-link ul li a::after {
    right: 12px;
    width: 8px;
    height: 8px;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-treat-type {
    margin-bottom: 20px;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic {
    margin-bottom: 10px;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic h3 {
    margin-bottom: 10px;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic h3::before, .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic h3::after {
    right: 8px;
    width: 12px;
    height: 2px;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap > div > div .nav-link {
    margin-bottom: 10px;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap > div > div .nav-link p.accordion-btn::before, .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap > div > div .nav-link p.accordion-btn::after {
    right: 8px;
    width: 12px;
    height: 2px;
  }
}
@media (max-width: 580px) {
  .hamburger-menu .hamburder-inner {
    width: 100%;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk a.nav-link,
  .hamburger-menu .hamburder-inner .hamburger-blk div.nav-link p.accordion-btn,
  .hamburger-menu .hamburder-inner .hamburger-blk div.nav-link ul li a {
    height: 60px;
    font-size: 16px;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic h3,
  .hamburger-menu .hamburder-inner .hamburger-blk div.nav-link p.accordion-btn,
  .hamburger-menu .hamburder-inner .hamburger-blk div.nav-link ul li a, .hamburger-menu .hamburder-inner .hamburger-blk.link-treat-price a {
    height: 60px;
    padding: 18px 50px 18px 20px;
    font-size: 16px;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk a.nav-link::after,
  .hamburger-menu .hamburder-inner .hamburger-blk div.nav-link ul li a::after {
    right: 35px;
    width: 12px;
    height: 12px;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-treat-type {
    width: calc(100% - 20px);
    margin: 0 auto 20px;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-treat-type a.nav-link {
    height: 100px;
    padding-bottom: 26px;
    font-size: 16px;
    line-height: 1.4;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-treat-type a.nav-link::after {
    top: unset;
    bottom: 10px;
    right: 50%;
    width: 11px;
    height: 11px;
    transform: translateX(50%) rotate(45deg);
    border-width: 1px;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-treat-type a.nav-link::before {
    position: absolute;
    content: "詳細はこちら";
    bottom: 21px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    font-size: 9px;
    font-weight: 400;
    text-align: center;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic {
    margin-bottom: 0;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic h3 {
    justify-content: flex-start;
    margin-bottom: 0;
    border-left: none;
    border-right: none;
    border-color: #ADA9A9;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic h3::before, .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic h3::after {
    right: 30px;
    width: 18px;
    height: 2px;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap .hamburger-link-pc {
    display: none;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap .hamburger-link-sp {
    display: block;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap > div {
    flex-direction: column;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap > div > div {
    width: 100%;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap > div > div .nav-link {
    margin-bottom: 0;
    border-bottom: 1px solid #ADA9A9;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap > div > div .nav-link p.accordion-btn::before, .hamburger-menu .hamburder-inner .hamburger-blk.link-clinic .link-clinic-wrap > div > div .nav-link p.accordion-btn::after {
    right: 30px;
    width: 18px;
    height: 2px;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-treat-price {
    flex-direction: column;
  }
  .hamburger-menu .hamburder-inner .hamburger-blk.link-treat-price a {
    width: 100%;
    border-bottom: 1px solid #ADA9A9;
  }
  .hamburger-menu .contact-btns {
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .header .header__inner {
    height: 6.6rem;
    padding: 0 1.5rem;
  }
  .header .header__inner .header__logo {
    width: 12.4rem;
    margin-left: 0;
  }
  .header .header__inner .header__nav {
    margin-right: 1rem;
  }
  .header .header__inner .header__nav .header__nav-list {
    column-gap: 0.4rem;
  }
  .header .header__inner .header__nav .header__nav-list li.header__nav-item a {
    width: fit-content;
    height: 3rem;
    padding: 0 1.3rem;
    font-size: 1rem;
  }
  .header .header__inner .header__nav .header__nav-list li.header__nav-item a::before {
    bottom: -4px;
  }
  .header .header__inner .hamburger {
    width: 30px;
    height: 22px;
  }
  .header .header__inner .hamburger span {
    height: 1px;
  }
  .header .header__inner .hamburger::before, .header .header__inner .hamburger::after {
    height: 1px;
  }
  .hamburger-menu {
    top: 6.6rem;
    height: calc(100% - 6.6rem);
  }
  .hamburger-menu .contact-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    margin-top: 40px;
  }
  .hamburger-menu .contact-btns a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: calc((100% - 20px) / 3);
    height: 55px;
    padding: 10px 4px;
    border-radius: 10px;
  }
  .hamburger-menu .contact-btns a img {
    margin-bottom: 2px;
  }
  .hamburger-menu .contact-btns a h3 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
  }
  .hamburger-menu .contact-btns a::before {
    z-index: -1;
    position: absolute;
    content: "";
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  .hamburger-menu .contact-btns a:nth-child(1) {
    background: linear-gradient(#F7B029, #F79029, #F78029);
  }
  .hamburger-menu .contact-btns a:nth-child(1)::before {
    background-color: #B9561B;
  }
  .hamburger-menu .contact-btns a:nth-child(1) img {
    width: 20px;
  }
  .hamburger-menu .contact-btns a:nth-child(2) {
    background: linear-gradient(#FF9565, #C62A16);
  }
  .hamburger-menu .contact-btns a:nth-child(2)::before {
    background-color: #792014;
  }
  .hamburger-menu .contact-btns a:nth-child(2) img {
    width: 31px;
  }
  .hamburger-menu .contact-btns a:nth-child(3) {
    background-color: #fff;
    border: 2px solid #FF9565;
  }
  .hamburger-menu .contact-btns a:nth-child(3) img {
    width: 21px;
  }
  .hamburger-menu .contact-btns a:nth-child(3) h3 {
    color: #F78029;
  }
  .hamburger-menu .contact-btns a:nth-child(3)::before {
    left: -2px;
    width: calc(100% + 4px);
    background-color: #F78029;
    border-radius: 7px;
  }
}
/* Floating button
--------------------------------- */
.floating-pc {
  position: fixed;
  bottom: 50px;
  right: 0;
  z-index: 10000;
}
.floating-pc .floating-btn {
  position: relative;
  width: 121px;
  height: 100px;
  transition: all 0.3s;
}
.floating-pc .floating-btn:not(:last-child) {
  margin-bottom: 12px;
}
@media (hover: hover) {
  .floating-pc .floating-btn:hover:hover {
    opacity: 0.8;
  }
}
.floating-pc .floating-btn a {
  display: block;
  width: 100%;
  height: 100%;
}
.floating-pc .floating-btn a img {
  width: 100%;
  object-fit: contain;
}

@media (max-width: 767px) {
  .contact-btns {
    z-index: 10000;
    position: fixed;
    width: 100%;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.6);
  }
  .contact-btns a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: calc((100% - 20px) / 3);
    height: 55px;
    padding: 10px 4px;
    border-radius: 10px;
  }
  .contact-btns a img {
    margin-bottom: 2px;
  }
  .contact-btns a h3 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
  }
  .contact-btns a::before {
    z-index: -1;
    position: absolute;
    content: "";
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  .contact-btns a:nth-child(1) {
    background: linear-gradient(#F7B029, #F79029, #F78029);
  }
  .contact-btns a:nth-child(1)::before {
    background-color: #B9561B;
  }
  .contact-btns a:nth-child(1) img {
    width: 20px;
  }
  .contact-btns a:nth-child(2) {
    background: linear-gradient(#FF9565, #C62A16);
  }
  .contact-btns a:nth-child(2)::before {
    background-color: #792014;
  }
  .contact-btns a:nth-child(2) img {
    width: 31px;
  }
  .contact-btns a:nth-child(3) {
    background-color: #fff;
    border: 2px solid #FF9565;
  }
  .contact-btns a:nth-child(3) img {
    width: 21px;
  }
  .contact-btns a:nth-child(3) h3 {
    color: #F78029;
  }
  .contact-btns a:nth-child(3)::before {
    left: -2px;
    width: calc(100% + 4px);
    background-color: #F78029;
    border-radius: 7px;
  }
}
/* footer
--------------------------------- */
.footer .footer__inner .footer__sns {
  padding: 64px 10px 40px;
  background-color: #fff;
}
.footer .footer__inner .footer__sns h3 {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}
.footer .footer__inner .footer__sns ul {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 50px;
}
.footer .footer__inner .footer__sns ul li a {
  display: block;
  transition: all 0.3s;
}
@media (hover: hover) {
  .footer .footer__inner .footer__sns ul li a:hover {
    opacity: 0.8;
  }
}
.footer .footer__inner .footer__sns ul li a img {
  width: 60px;
}
.footer .footer__inner .footer__contents {
  padding: 55px 10px 25px;
  background-color: #000;
}
.footer .footer__inner .footer__contents ul {
  display: flex;
  justify-content: center;
  column-gap: 20px;
}
.footer .footer__inner .footer__contents ul li a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: all 0.3s;
}
@media (hover: hover) {
  .footer .footer__inner .footer__contents ul li a:hover {
    opacity: 0.8;
  }
}
.footer .footer__inner .footer__contents .footer-copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  font-size: 12px;
  text-align: center;
  color: #fff;
}

@media (max-width: 767px) {
  .footer .footer__inner .footer__sns {
    padding: 70px 10px 18px;
  }
  .footer .footer__inner .footer__sns h3 {
    margin-bottom: 20px;
    font-size: 13px;
  }
  .footer .footer__inner .footer__sns ul {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 30px;
  }
  .footer .footer__inner .footer__sns ul li a {
    display: block;
    transition: all 0.3s;
  }
}
@media (max-width: 767px) and (hover: hover) {
  .footer .footer__inner .footer__sns ul li a:hover {
    opacity: 0.8;
  }
}
@media (max-width: 767px) {
  .footer .footer__inner .footer__sns ul li a img {
    width: 42px;
  }
  .footer .footer__inner .footer__contents {
    padding: 30px 10px 110px;
  }
  .footer .footer__inner .footer__contents ul {
    flex-wrap: wrap;
    row-gap: 20px;
    max-width: 260px;
    margin: 0 auto 40px;
  }
  .footer .footer__inner .footer__contents ul li a {
    font-size: 12px;
  }
  .footer .footer__inner .footer__contents .footer-copyright {
    height: auto;
    font-size: 10px;
  }
}
/* CTA
--------------------------------- */
/* mv
--------------------------------- */
.mv {
  padding-top: 8.8rem;
}
.mv .container {
  position: relative;
  height: 59.2rem;
}
.mv .container span.mv-bg {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  height: 100%;
}
.mv .container span.mv-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv .container div.mv-contents {
  position: relative;
  width: 48.5714285714%;
  margin: 0 3.1rem 0.8rem auto;
  padding-top: 8.1rem;
}
.mv .container div.mv-contents ul.mv-tag {
  display: flex;
  column-gap: 1rem;
  margin-bottom: 0.8rem;
}
.mv .container div.mv-contents ul.mv-tag li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 4.4rem;
  padding: 0 1.6rem;
  font-size: 2.8rem;
  font-weight: 700;
  color: #0D164A;
  background-color: #FCE047;
}
.mv .container div.mv-contents h2.mv-lead {
  margin-bottom: 2.3rem;
  font-size: 5.6rem;
  color: #FCE047;
}
.mv .container div.mv-contents .mv-features {
  margin-left: 9.6rem;
}
.mv .container div.mv-contents .mv-features > div {
  display: flex;
  align-items: flex-end;
}
.mv .container div.mv-contents .mv-features > div:not(:last-child) {
  margin-bottom: 2rem;
}
.mv .container div.mv-contents .mv-features > div > span {
  width: 6.6rem;
  margin-right: 1.3rem;
}
.mv .container div.mv-contents .mv-features > div > div {
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
.mv .container div.mv-contents .mv-features > div > div p:nth-child(1) {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
.mv .container div.mv-contents .mv-features > div > div p:nth-child(2) {
  font-size: 3.3rem;
  letter-spacing: 0.1em;
}
.mv .container div.mv-contents .mv-features > div > div p:nth-child(2) span {
  display: inline-block;
  width: fit-content;
  color: #FCE047;
  line-height: 1;
}
.mv .container div.mv-contents .mv-features > div > div p:nth-child(2) span:nth-child(1) {
  position: relative;
  top: 0.4rem;
  margin: 0 0.4rem 0 0.5rem;
  font-size: 6.5rem;
  letter-spacing: -0.02em;
}
.mv .container div.mv-contents .mv-features > div > div p:nth-child(2) span:nth-child(2) {
  margin: 0 0.4rem 0 0;
  font-size: 2.8rem;
}
.mv .container div.mv-contents .mv-features > div > div small {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 1.4rem;
  font-weight: 500;
}
.mv .container div.mv-contents .mv-features > div.mv-features-clock p br {
  display: none;
}
.mv .container div.mv-contents .mv-features > div.mv-features-train {
  position: relative;
  top: -0.8rem;
}
.mv .container div.mv-contents .mv-features > div.mv-features-drug {
  margin-top: 2.6rem;
}
.mv .container div.mv-contents .mv-features > div.mv-features-drug > div {
  position: relative;
  top: -0.8rem;
}
.mv .container div.mv-contents .mv-features > div.mv-features-drug > div p:nth-child(1) {
  margin-bottom: 0.8rem;
}
.mv .container div.mv-contents .mv-features > div.mv-features-drug > div p:nth-child(1) span {
  color: #FCE047;
}
.mv .container div.mv-contents .mv-features > div.mv-features-drug > div p:nth-child(2) span:nth-child(1) {
  top: 0;
  margin: 0;
  font-size: 3.3rem;
}

@media (max-width: 1400px) and (min-width: 768px) {
  .mv .container div.mv-contents {
    width: 49.2857142857%;
    margin: 0 2rem 0.8rem auto;
    padding-top: 8.1rem;
  }
  .mv .container div.mv-contents ul.mv-tag li {
    height: 4.4rem;
    padding: 0 1.4rem;
    font-size: 2.6rem;
  }
  .mv .container div.mv-contents h2.mv-lead {
    margin-bottom: 2.3rem;
    font-size: 4.8rem;
  }
}
@media (max-width: 1190px) and (min-width: 768px) {
  .mv .container div.mv-contents {
    width: 52.8571428571%;
    margin: 0 1rem 0.8rem auto;
    padding-top: 7.1rem;
  }
  .mv .container div.mv-contents ul.mv-tag li {
    height: 4.4rem;
    padding: 0 1.4rem;
    font-size: 2.4rem;
  }
  .mv .container div.mv-contents h2.mv-lead {
    margin-bottom: 2.3rem;
    font-size: 4.25rem;
  }
}
@media (max-width: 980px) {
  .mv {
    padding-top: 6.6rem;
  }
  .mv .container {
    height: auto;
  }
  .mv .container span.mv-bg {
    position: relative;
  }
  .mv .container div.mv-contents {
    width: 100%;
    margin: 0;
    padding: 5rem 9.5%;
    padding-top: 3rem;
    background: url(../img/mv-bg-sp.jpg) no-repeat center center/cover;
  }
  .mv .container div.mv-contents ul.mv-tag {
    margin-bottom: 0.8rem;
  }
  .mv .container div.mv-contents ul.mv-tag li {
    height: auto;
    padding: 0.5rem 1.2rem;
    font-size: 1.4rem;
  }
  .mv .container div.mv-contents h2.mv-lead {
    margin-bottom: 2.5rem;
    font-size: 5rem;
  }
  .mv .container div.mv-contents .mv-features {
    margin-left: 0;
  }
  .mv .container div.mv-contents .mv-features > div:not(:last-child) {
    margin-bottom: 2rem;
  }
  .mv .container div.mv-contents .mv-features > div > span {
    width: 5.2rem;
    margin-right: 0.8rem;
  }
  .mv .container div.mv-contents .mv-features > div > div p:nth-child(1) {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
  .mv .container div.mv-contents .mv-features > div > div p:nth-child(2) {
    font-size: 2.2rem;
    letter-spacing: 0.1em;
  }
  .mv .container div.mv-contents .mv-features > div > div p:nth-child(2) span:nth-child(1) {
    top: 0.4rem;
    margin: 0 0 0 0.2rem;
    font-size: 4.2rem;
  }
  .mv .container div.mv-contents .mv-features > div > div p:nth-child(2) span:nth-child(2) {
    margin: 0 0.2rem 0 0;
    font-size: 1.8rem;
  }
  .mv .container div.mv-contents .mv-features > div > div small {
    position: relative;
    top: 0.4rem;
    margin-top: 0;
    margin-left: 0.4rem;
    padding-left: 1em;
    text-indent: -1em;
    font-size: 1rem;
  }
  .mv .container div.mv-contents .mv-features > div > div small br {
    display: none;
  }
  .mv .container div.mv-contents .mv-features > div.mv-features-clock > div {
    display: flex;
    align-items: center;
  }
  .mv .container div.mv-contents .mv-features > div.mv-features-clock > div p:nth-child(1) {
    position: relative;
    top: 0.2rem;
    margin-right: 0.8rem;
    line-height: 1.5;
  }
  .mv .container div.mv-contents .mv-features > div.mv-features-clock > div p:nth-child(1) br {
    display: block;
  }
  .mv .container div.mv-contents .mv-features > div.mv-features-clock > div p:nth-child(2) {
    position: relative;
    top: -0.2rem;
  }
  .mv .container div.mv-contents .mv-features > div.mv-features-clock > div p:nth-child(2) span:nth-child(1) {
    margin-right: 0.3rem;
  }
  .mv .container div.mv-contents .mv-features > div.mv-features-train, .mv .container div.mv-contents .mv-features > div.mv-features-drug {
    top: 0;
    margin-top: 2.6rem;
  }
  .mv .container div.mv-contents .mv-features > div.mv-features-train > div, .mv .container div.mv-contents .mv-features > div.mv-features-drug > div {
    top: 0;
    display: flex;
    align-items: center;
  }
  .mv .container div.mv-contents .mv-features > div.mv-features-train > div p:nth-child(1), .mv .container div.mv-contents .mv-features > div.mv-features-drug > div p:nth-child(1) {
    margin-right: 0;
    margin-bottom: 0;
    line-height: 1.5;
  }
  .mv .container div.mv-contents .mv-features > div.mv-features-train > div p:nth-child(2) span:nth-child(1), .mv .container div.mv-contents .mv-features > div.mv-features-drug > div p:nth-child(2) span:nth-child(1) {
    margin-right: 0.3rem;
  }
  .mv .container div.mv-contents .mv-features > div.mv-features-drug > div p:nth-child(1) {
    margin-right: 0.4rem;
  }
}
@media (max-width: 980px) {
  .mv .container div.mv-contents h2.mv-lead {
    font-size: 4.6rem;
  }
  .mv .container div.mv-contents .mv-features > div > div p:nth-child(1) {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
  .mv .container div.mv-contents .mv-features > div > div p:nth-child(2) {
    font-size: 2.6rem;
    letter-spacing: 0.1em;
  }
  .mv .container div.mv-contents .mv-features > div > div p:nth-child(2) span:nth-child(1) {
    top: 0.4rem;
    margin: 0 0 0 0.2rem;
    font-size: 5.2rem;
  }
  .mv .container div.mv-contents .mv-features > div > div p:nth-child(2) span:nth-child(2) {
    margin: 0 0.2rem 0 0;
    font-size: 2rem;
  }
  .mv .container div.mv-contents .mv-features > div > div small {
    top: 1.4rem;
    font-size: 1.5rem;
  }
}
@media (max-width: 690px) {
  .mv .container div.mv-contents {
    position: relative;
    padding: 5rem 9%;
  }
  .mv .container div.mv-contents::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 24px;
    background: url(../img/common/parts-filter-line.png) no-repeat center/cover;
    opacity: 0.3;
  }
  .mv .container div.mv-contents h2.mv-lead {
    font-size: 4.2rem;
  }
  .mv .container div.mv-contents ul.mv-tag {
    margin-bottom: 2px;
  }
  .mv .container div.mv-contents .mv-features > div > div p:nth-child(1) {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
  .mv .container div.mv-contents .mv-features > div > div p:nth-child(2) {
    font-size: 2.6rem;
    letter-spacing: 0.1em;
  }
  .mv .container div.mv-contents .mv-features > div > div p:nth-child(2) span:nth-child(1) {
    top: 0.4rem;
    margin: 0 0 0 0.2rem;
    font-size: 5.2rem;
  }
  .mv .container div.mv-contents .mv-features > div > div p:nth-child(2) span:nth-child(2) {
    margin: 0 0.2rem 0 0;
    font-size: 2rem;
  }
  .mv .container div.mv-contents .mv-features > div > div small {
    top: 1.4rem;
    width: 100%;
    margin-left: 0;
    font-size: 1.5rem;
  }
  .mv .container div.mv-contents .mv-features > div small br {
    display: block !important;
  }
  .mv .container div.mv-contents .mv-features > div.mv-features-train {
    margin-top: 0;
  }
  .mv .container div.mv-contents .mv-features > div.mv-features-train > div {
    flex-wrap: wrap;
  }
  .mv .container div.mv-contents .mv-features > div.mv-features-drug {
    margin-top: 3.6rem;
  }
}
@media (max-width: 616px) {
  .mv .container div.mv-contents {
    padding: 3rem 1.5rem 2.6rem 5rem;
  }
  .mv .container div.mv-contents h2.mv-lead {
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    letter-spacing: 0.1em;
  }
  .mv .container div.mv-contents ul.mv-tag {
    column-gap: 0.5rem;
  }
  .mv .container div.mv-contents .mv-features > div.mv-features-train, .mv .container div.mv-contents .mv-features > div.mv-features-drug {
    margin-left: 0;
  }
  .mv .container div.mv-contents .mv-features > div:not(:last-child) {
    margin-bottom: 1rem;
  }
  .mv .container div.mv-contents .mv-features > div > div {
    width: calc(100% - 5.2rem);
  }
  .mv .container div.mv-contents .mv-features .mv-features-train {
    margin-top: 2rem !important;
  }
  .mv .container div.mv-contents .mv-features .mv-features-train small {
    line-height: 1;
  }
  .mv .container div.mv-contents .mv-features .mv-features-drug {
    margin-top: 3.6rem !important;
  }
}
@media (max-width: 450px) {
  .mv .container div.mv-contents {
    padding: 3.6rem 1.5rem 3.6rem 3rem;
  }
  .mv .container div.mv-contents .mv-features .mv-features-clock {
    margin-bottom: 0rem !important;
  }
  .mv .container div.mv-contents .mv-features .mv-features-train {
    margin-top: 0.2rem !important;
  }
  .mv .container div.mv-contents .mv-features .mv-features-train > div small {
    top: 0.4rem;
    font-size: 1.2rem;
  }
  .mv .container div.mv-contents .mv-features .mv-features-drug {
    margin-top: 1.4rem !important;
  }
}
@media (max-width: 420px) {
  .mv .container div.mv-contents {
    padding: 3.6rem 1.5rem 3.6rem 2.2rem;
  }
  .mv .container div.mv-contents h2.mv-lead {
    font-size: 2.4rem;
  }
  .mv .container div.mv-contents .mv-features > div > div p:nth-child(1) {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }
  .mv .container div.mv-contents .mv-features > div > div p:nth-child(2) {
    font-size: 2.2rem;
    letter-spacing: 0.1em;
  }
  .mv .container div.mv-contents .mv-features > div > div p:nth-child(2) span:nth-child(1) {
    top: 0.4rem;
    margin: 0 0 0 0.2rem;
    font-size: 4.8rem;
  }
  .mv .container div.mv-contents .mv-features > div > div p:nth-child(2) span:nth-child(2) {
    margin: 0 0.2rem 0 0;
    font-size: 2rem;
  }
}
/* cta
--------------------------------- */
.cta {
  width: 100%;
  max-width: 866px;
  margin: 0 auto;
  padding: 32px 15px 26px;
}
.cta.cta-top .cta-top-links {
  display: flex;
  justify-content: center;
  column-gap: 27px;
  margin-bottom: 60px;
}
.cta.cta-top .cta-top-links li {
  width: calc((100% - 32px) / 2);
}
.cta .cta-large-btns {
  display: flex;
  justify-content: center;
  column-gap: 20px;
}
.cta .cta-large-btns a {
  transition: all 0.3s;
}
@media (hover: hover) {
  .cta .cta-large-btns a:hover {
    opacity: 0.8;
  }
}
.cta.cta-2 {
  padding: 50px 15px 50px;
}
.cta.cta-3 {
  max-width: none;
  padding: 70px 15px 70px;
  background: url(../img/common/bg-2.jpg) no-repeat center center/cover;
}
.cta.cta-3 .cta__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 50px;
  background-color: #fff;
}
.cta.cta-3 .cta__inner h2 {
  margin-bottom: 30px;
  font-size: 29px;
  text-align: center;
}
.cta.cta-3 .cta__inner h2 br {
  display: none;
}
.cta.cta-3 .cta__inner h2 span {
  color: #162680;
}
.cta.cta-3 .cta__inner h2 span:nth-child(1),
.cta.cta-3 .cta__inner h2 span:nth-child(2) {
  font-size: 36px;
}
.cta.cta-3 .cta__inner h2 span:nth-child(3) {
  font-size: 40px;
}
.cta.cta-3 .cta__inner > div {
  display: flex;
  justify-content: space-between;
}
.cta.cta-3 .cta__inner > div > div a {
  z-index: 0;
  position: relative;
  display: block;
  margin-bottom: 30px;
  transition: all 0.3s;
}
@media (hover: hover) {
  .cta.cta-3 .cta__inner > div > div a:hover {
    opacity: 0.8;
  }
}
.cta.cta-3 .cta__inner > div .left {
  width: 47.7272727273%;
}
.cta.cta-3 .cta__inner > div .left > div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border: 1px solid #999EBC;
  border-radius: 10px;
  padding: 12px 20px;
}
.cta.cta-3 .cta__inner > div .left > div h4 {
  width: 25%;
  padding-right: 12px;
  font-size: 14px;
  font-weight: 400;
}
.cta.cta-3 .cta__inner > div .left > div ul {
  width: 60%;
  padding-left: 12px;
  padding-right: 12px;
  border-left: 1px solid #999EBC;
}
.cta.cta-3 .cta__inner > div .left > div ul li {
  display: flex;
  font-size: 14px;
}
.cta.cta-3 .cta__inner > div .left > div ul li span:nth-child(1) {
  width: 49%;
}
.cta.cta-3 .cta__inner > div .left > div ul li span:nth-child(2) {
  width: 51%;
}
.cta.cta-3 .cta__inner > div .left > div small {
  width: 27%;
  padding-left: 1em;
  font-size: 12px;
  text-indent: -1em;
}
.cta.cta-3 .cta__inner > div .right {
  width: 47.7272727273%;
}
.cta.cta-3 .cta__inner > div .right > div p {
  font-size: 13px;
  text-align: center;
}

.cta-btn-1 {
  position: relative;
}
.cta-btn-1 a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  font-size: 18px;
  font-weight: 700;
  color: #162680;
  background-color: #fff;
  border: 1px solid #162680;
  border-radius: 60px;
  transition: all 0.3s;
}
.cta-btn-1 a::before {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #162680;
  border-radius: 60px;
  transition: all 0.3s;
}
.cta-btn-1 a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: url(../img/icon/icon-arrow-1.png) no-repeat center/contain;
  transition: all 0.3s;
}
@media (hover: hover) {
  .cta-btn-1 a:hover {
    background-color: #162680;
    color: #fff;
  }
  .cta-btn-1 a:hover::after {
    top: 55%;
    background: url(../img/icon/icon-arrow-2.png) no-repeat center/contain;
  }
}

.btn-square,
.btn-rect {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 275px;
  height: 140px;
  border-radius: 10px;
  transition: all 0.3s;
}
.btn-square::before,
.btn-rect::before {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.btn-square.btn-reserve,
.btn-rect.btn-reserve {
  background: linear-gradient(#F7B029, #F79029, #F78029);
}
.btn-square.btn-reserve::before,
.btn-rect.btn-reserve::before {
  background-color: #B9561B;
}
.btn-square.btn-reserve > div,
.btn-rect.btn-reserve > div {
  column-gap: 20px;
}
.btn-square.btn-reserve > div img,
.btn-rect.btn-reserve > div img {
  width: 41.5px;
}
.btn-square.btn-online,
.btn-rect.btn-online {
  background: linear-gradient(#FF9565, #C62A16);
}
.btn-square.btn-online::before,
.btn-rect.btn-online::before {
  background-color: #792014;
}
.btn-square.btn-online > div,
.btn-rect.btn-online > div {
  column-gap: 11px;
}
.btn-square.btn-online > div img,
.btn-rect.btn-online > div img {
  width: 60px;
}
.btn-square.btn-freecall,
.btn-rect.btn-freecall {
  background-color: #fff;
  border: 3px solid #F78029;
}
.btn-square.btn-freecall::before,
.btn-rect.btn-freecall::before {
  left: -3px;
  bottom: -8px;
  width: calc(100% + 6px);
  background-color: #F78029;
}
.btn-square.btn-freecall > div,
.btn-rect.btn-freecall > div {
  column-gap: 11px;
}
.btn-square.btn-freecall > div img,
.btn-rect.btn-freecall > div img {
  width: 33px;
}
.btn-square.btn-freecall > div h3,
.btn-rect.btn-freecall > div h3 {
  color: #F78029;
}
.btn-square.btn-freecall p,
.btn-rect.btn-freecall p {
  width: max-content;
  padding: 3px 12px 4px;
  font-size: 14px;
  color: #fff;
  background-color: #F78029;
}
.btn-square > div,
.btn-rect > div {
  position: relative;
  top: -4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.btn-square > div h3,
.btn-rect > div h3 {
  font-size: 22px;
  font-weight: 700;
}
.btn-square > div h3 br,
.btn-rect > div h3 br {
  display: none;
}
.btn-square > div small br,
.btn-rect > div small br {
  display: none;
}
.btn-square p,
.btn-rect p {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 144px;
  padding: 2px 5px 3px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #C62A16;
  background-color: #fff;
  border-radius: 23px;
}
.btn-square small,
.btn-rect small {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.btn-square small br,
.btn-rect small br {
  display: none;
}

.btn-rect {
  width: 100%;
  height: 90px;
}
.btn-rect > div {
  top: unset;
}
.btn-rect > div h3 {
  font-size: 26px;
}
.btn-rect > div p {
  position: relative;
  inset: unset;
  transform: none;
}
.btn-rect.btn-freecall > div {
  align-items: baseline;
}
.btn-rect.btn-freecall > div img {
  width: 26px;
}
.btn-rect.btn-freecall > div p {
  padding: 0;
  font-size: 32px;
  background-color: unset;
  color: #F78029;
}
.btn-rect.btn-mail-consult {
  background: linear-gradient(#F7B029, #F79029, #F78029);
}
.btn-rect.btn-mail-consult::before {
  background-color: #B9560E;
}
.btn-rect.btn-mail-consult > div {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
}
.btn-rect.btn-mail-consult > div img {
  width: 40px;
}
.btn-rect.btn-mail-consult > div p {
  font-size: 16px;
  background-color: #fff;
  color: #F78029;
}

@media (max-width: 970px) {
  .cta.cta-3 .cta__inner {
    padding: 30px 30px;
  }
  .cta.cta-3 .cta__inner h2 {
    margin-bottom: 20px;
    font-size: 24px;
  }
  .cta.cta-3 .cta__inner h2 span:nth-child(1),
  .cta.cta-3 .cta__inner h2 span:nth-child(2) {
    font-size: 30px;
  }
  .cta.cta-3 .cta__inner h2 span:nth-child(3) {
    font-size: 36px;
  }
  .cta.cta-3 .cta__inner > div > div a {
    margin-bottom: 20px;
  }
  .cta.cta-3 .cta__inner > div .left {
    width: 51.1363636364%;
  }
  .cta.cta-3 .cta__inner > div .left > div {
    padding: 8px;
  }
  .cta.cta-3 .cta__inner > div .left > div h4 {
    width: 20%;
    padding-right: 8px;
    font-size: 13px;
  }
  .cta.cta-3 .cta__inner > div .left > div ul {
    width: 56%;
    padding-left: 8px;
    padding-right: 8px;
  }
  .cta.cta-3 .cta__inner > div .left > div ul li {
    font-size: 13px;
  }
  .cta.cta-3 .cta__inner > div .left > div ul li span:nth-child(1) {
    width: 49%;
  }
  .cta.cta-3 .cta__inner > div .left > div ul li span:nth-child(2) {
    width: 51%;
  }
  .cta.cta-3 .cta__inner > div .left > div small {
    width: 24%;
    font-size: 10px;
  }
  .cta.cta-3 .cta__inner > div .right {
    width: 46.5909090909%;
  }
  .cta.cta-3 .cta__inner > div .right > div p {
    font-size: 13px;
    text-align: left;
  }
  .btn-rect {
    width: 100%;
    height: 90px;
  }
  .btn-rect > div h3 {
    font-size: 20px;
  }
  .btn-rect.btn-freecall > div img {
    width: 23px;
  }
  .btn-rect.btn-freecall > div p {
    font-size: 26px;
  }
  .btn-rect.btn-mail-consult > div {
    column-gap: 10px;
  }
  .btn-rect.btn-mail-consult > div img {
    width: 30px;
  }
  .btn-rect.btn-mail-consult > div p {
    width: fit-content;
    padding: 2px 14px 3px;
    font-size: 14px;
    text-align: center;
  }
}
@media (max-width: 900px) {
  .cta.cta-2 .cta-large-btns {
    column-gap: 15px;
  }
  .cta.cta-2 .cta-large-btns a .btn-square {
    width: 200px;
  }
  .cta.cta-2 .cta-large-btns a .btn-square > div {
    top: -14px;
    flex-direction: column;
  }
  .cta.cta-2 .cta-large-btns a .btn-square > div img {
    margin-bottom: 6px;
  }
  .cta.cta-2 .cta-large-btns a .btn-square > div h3 {
    font-size: 18px;
    text-align: center;
    line-height: 1.2;
  }
  .cta.cta-2 .cta-large-btns a .btn-square > div h3 br {
    display: block;
  }
  .cta.cta-2 .cta-large-btns a .btn-square > p {
    bottom: 8px;
    font-size: 13.5px;
  }
  .cta.cta-2 .cta-large-btns a .btn-square small br {
    display: block;
  }
}
@media (max-width: 800px) {
  .cta.cta-3 {
    padding: 50px 10px 50px;
    background: url(../img/common/bg-2-sp.jpg) no-repeat center center/cover;
  }
  .cta.cta-3 .cta__inner {
    max-width: 650px;
    padding: 40px 10px;
  }
  .cta.cta-3 .cta__inner h2 {
    margin-bottom: 14px;
    font-size: 18px;
  }
  .cta.cta-3 .cta__inner h2 br {
    display: block;
  }
  .cta.cta-3 .cta__inner h2 span:nth-of-type(1),
  .cta.cta-3 .cta__inner h2 span:nth-of-type(2) {
    font-size: 24px;
  }
  .cta.cta-3 .cta__inner h2 span:nth-of-type(3) {
    font-size: 30px;
  }
  .cta.cta-3 .cta__inner > div {
    flex-direction: column;
    row-gap: 20px;
    max-width: 400px;
    margin: 0 auto;
  }
  .cta.cta-3 .cta__inner > div > div a {
    margin-bottom: 14px;
  }
  .cta.cta-3 .cta__inner > div .left {
    width: 100%;
  }
  .cta.cta-3 .cta__inner > div .left > div {
    padding: 12px 20px;
  }
  .cta.cta-3 .cta__inner > div .left > div h4 {
    width: 25%;
    padding-right: 12px;
    font-size: 14px;
  }
  .cta.cta-3 .cta__inner > div .left > div ul {
    width: 65%;
    padding-left: 18px;
    padding-right: 18px;
  }
  .cta.cta-3 .cta__inner > div .left > div ul li {
    font-size: 14px;
  }
  .cta.cta-3 .cta__inner > div .left > div ul li span:nth-child(1) {
    width: 49%;
  }
  .cta.cta-3 .cta__inner > div .left > div ul li span:nth-child(2) {
    width: 51%;
  }
  .cta.cta-3 .cta__inner > div .left > div small {
    width: 27%;
    padding-left: 1em;
    font-size: 12px;
    text-indent: -1em;
  }
  .cta.cta-3 .cta__inner > div .right {
    width: 100%;
  }
  .cta.cta-3 .cta__inner > div .right > div p {
    font-size: 13px;
  }
}
@media (max-width: 660px) {
  .cta.cta-top .cta-top-links {
    align-items: center;
    flex-direction: column;
    row-gap: 20px;
    margin: 0 auto 40px;
  }
  .cta.cta-top .cta-top-links li {
    width: 70%;
    min-width: 300px;
    max-width: 350px;
  }
  .cta.cta-top .cta-top-links li a {
    font-size: 17px;
  }
  .cta.cta-2 .cta-large-btns {
    column-gap: 10px;
  }
  .cta.cta-2 .cta-large-btns a {
    width: 32%;
  }
  .cta.cta-2 .cta-large-btns a .btn-square {
    width: 100%;
    min-width: 115px;
    height: 126px;
  }
  .cta.cta-2 .cta-large-btns a .btn-square > div {
    top: -16px;
  }
  .cta.cta-2 .cta-large-btns a .btn-square > div img {
    margin-bottom: 4px;
  }
  .cta.cta-2 .cta-large-btns a .btn-square > div h3 {
    font-size: 19px;
  }
  .cta.cta-2 .cta-large-btns a .btn-square > p {
    width: max-content;
    min-width: 94px;
    padding: 2px 10px 3px;
    font-size: 16px;
  }
  .cta.cta-2 .cta-large-btns a .btn-square small {
    font-size: 10px;
  }
  .cta.cta-2 .cta-large-btns a:nth-child(1) .btn-square > div img {
    width: 30px;
  }
  .cta.cta-2 .cta-large-btns a:nth-child(2) .btn-square > div img {
    width: 47px;
  }
  .cta.cta-2 .cta-large-btns a:nth-child(3) .btn-square > div img {
    width: 33px;
  }
  .cta.cta-2 .cta-large-btns a:nth-child(3) .btn-square p {
    bottom: 4px;
  }
}
@media (max-width: 620px) {
  .cta .cta-large-btns {
    column-gap: 10px;
  }
  .cta .cta-large-btns a {
    width: 35%;
  }
  .cta .cta-large-btns a .btn-online p {
    min-width: unset;
    width: max-content;
    padding: 2px 15px 3px;
  }
  .btn-square,
  .btn-rect {
    width: auto;
    height: 126px;
    border-radius: 10px;
  }
  .btn-square::before,
  .btn-rect::before {
    bottom: -5px;
    border-radius: 10px;
  }
  .btn-square.btn-reserve > div img,
  .btn-rect.btn-reserve > div img {
    width: 29px;
    margin-bottom: 8px;
  }
  .btn-square.btn-online > div img,
  .btn-rect.btn-online > div img {
    width: 47px;
  }
  .btn-square > div,
  .btn-rect > div {
    top: -15px;
    flex-direction: column;
  }
  .btn-square > div img,
  .btn-rect > div img {
    margin-bottom: 4px;
  }
  .btn-square > div h3,
  .btn-rect > div h3 {
    font-size: 18px;
    line-height: 1.1;
    text-align: center;
  }
  .btn-square > div h3 br,
  .btn-rect > div h3 br {
    display: block;
  }
  .btn-square p,
  .btn-rect p {
    bottom: 8px;
    width: fit-content;
    min-width: 116px;
    padding: 2px 15px 3px;
    font-size: 16px;
  }
  .btn-square small,
  .btn-rect small {
    font-size: 9px;
    line-height: 1.4;
  }
  .btn-square small br,
  .btn-rect small br {
    display: block;
  }
  .cta.cta-3 .cta__inner > div .left > div {
    position: relative;
    padding: 20px 10px 20px;
  }
  .cta.cta-3 .cta__inner > div .left > div h4 {
    width: 30%;
    padding-right: 30px;
    font-size: 14px;
    text-align: right;
  }
  .cta.cta-3 .cta__inner > div .left > div ul {
    width: 70%;
    padding-left: 30px;
    padding-right: 12px;
  }
  .cta.cta-3 .cta__inner > div .left > div small {
    position: absolute;
    bottom: 12px;
    width: calc(100% - 40px);
    padding-left: 0;
    text-align: center;
  }
  .cta.cta-3 .cta__inner > div .right > div p {
    font-size: 12px;
  }
  .btn-rect {
    height: 86px;
  }
  .btn-rect > div h3 {
    font-size: 19px;
  }
  .btn-rect.btn-freecall::before {
    bottom: -6px;
  }
  .btn-rect.btn-freecall > div {
    position: relative;
    top: 0;
    align-items: center;
  }
  .btn-rect.btn-freecall > div img {
    position: absolute;
    top: 0;
    left: calc(50% - 60px);
    width: 18px;
  }
  .btn-rect.btn-freecall > div h3 {
    margin-bottom: 4px;
    margin-left: 10px;
  }
  .btn-rect.btn-freecall > div p {
    font-size: 26px;
  }
  .btn-rect.btn-mail-consult > div {
    position: relative;
    top: 0;
    column-gap: 10px;
  }
  .btn-rect.btn-mail-consult > div img {
    position: absolute;
    top: 0;
    left: calc(50% - 80px);
    width: 32px;
  }
  .btn-rect.btn-mail-consult > div h3 {
    margin-bottom: 4px;
    margin-left: 10px;
  }
  .btn-rect.btn-mail-consult > div p {
    width: fit-content;
    padding: 2px 14px 3px;
    font-size: 16px;
    text-align: center;
  }
}
/* 共通
--------------------------------- */
.tel-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
.tel-modal-overlay.modal-overlay--show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.tel-modal-overlay .modal-content {
  position: relative;
  background-color: #fff;
  padding: 40px 50px;
  width: 96%;
  max-width: 820px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}
.tel-modal-overlay .modal-header {
  background-color: #0D164A;
  color: #fff;
  margin-bottom: 30px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tel-modal-overlay .modal-header h2 {
  font-size: 24px;
  margin: 0;
}
.tel-modal-overlay .modal-header .tag {
  position: relative;
  top: -3px;
  background-color: #d1e1ff;
  color: #002776;
  font-size: 14px;
  margin-left: 10px;
  margin-bottom: 5px;
  padding: 5px 10px;
  border-radius: 5px;
}
.tel-modal-overlay .modal-contact {
  z-index: 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tel-modal-overlay .modal-contact .modal-phone-number {
  position: relative;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f78028;
  width: 66%;
}
.tel-modal-overlay .modal-contact .modal-phone-number::before {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: -8px;
  left: -2px;
  width: 100%;
  height: 100%;
  background-color: #f78028;
  border: 2px solid #f78028;
  border-radius: 10px;
}
.tel-modal-overlay .modal-contact .modal-phone-number img {
  width: 46px;
  margin-right: 14px;
}
.tel-modal-overlay .modal-contact .modal-phone-number .phone-number {
  font-size: 52px;
  color: #f78028;
  font-weight: bold;
}
.tel-modal-overlay .modal-contact .modal-phone-number.dp-pc {
  display: flex;
}
.tel-modal-overlay .modal-contact .modal-phone-number.dp-sp {
  display: none;
}
.tel-modal-overlay .modal-contact .modal-hours {
  width: calc(34% - 20px);
  text-align: left;
}
.tel-modal-overlay .modal-contact .modal-hours h3 {
  font-size: 16px;
  color: #0D164A;
  margin-bottom: 4px;
}
.tel-modal-overlay .modal-contact .modal-hours ul {
  list-style: none;
  padding: 0;
}
.tel-modal-overlay .modal-contact .modal-hours ul li {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}
.tel-modal-overlay .modal-contact .modal-hours ul li span {
  display: inline-block;
  width: 110px;
}
.tel-modal-overlay .modal-contact .modal-hours .note {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}
.tel-modal-overlay .modal-flow {
  position: relative;
  z-index: 0;
  margin-top: 30px;
}
.tel-modal-overlay .modal-flow h3 {
  position: relative;
  font-size: 20px;
  color: #002776;
  margin-bottom: 20px;
}
.tel-modal-overlay .modal-flow h3::before {
  z-index: -1;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10em;
  height: 2em;
  background-color: #fff;
}
.tel-modal-overlay .modal-flow h3::after {
  z-index: -2;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background-color: #002776;
}
.tel-modal-overlay .modal-flow .flow-steps {
  display: flex;
  justify-content: space-between;
}
.tel-modal-overlay .modal-flow .flow-steps .flow-step {
  background-color: #f0f3fa;
  border-radius: 10px;
  padding: 15px 10px;
  width: 23%;
  text-align: center;
}
.tel-modal-overlay .modal-flow .flow-steps .flow-step .step-number {
  background-color: #0D164A;
  color: #fff;
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: inline-block;
  line-height: 40px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.tel-modal-overlay .modal-flow .flow-steps .flow-step p {
  font-size: 13px;
  font-weight: 500;
  color: #0D164A;
  line-height: 1.7;
}
.tel-modal-overlay .modal-close {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  width: 34px;
  height: 34px;
  font-size: 34px;
  font-weight: 300;
  color: #fff;
  line-height: 27px;
  background-color: #333;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
}

@media (max-width: 852px) {
  .tel-modal-overlay .modal-content {
    padding: 30px 40px;
  }
  .tel-modal-overlay .modal-header {
    margin-bottom: 20px;
  }
  .tel-modal-overlay .modal-header h2 {
    font-size: 22px;
  }
  .tel-modal-overlay .modal-header .tag {
    top: -3px;
    font-size: 14px;
  }
  .tel-modal-overlay .modal-contact .modal-phone-number {
    padding: 20px;
    width: 66%;
  }
  .tel-modal-overlay .modal-contact .modal-phone-number img {
    width: 40px;
    margin-right: 10px;
  }
  .tel-modal-overlay .modal-contact .modal-phone-number .phone-number {
    font-size: 46px;
  }
  .tel-modal-overlay .modal-contact .modal-hours {
    width: calc(34% - 20px);
  }
  .tel-modal-overlay .modal-contact .modal-hours h3 {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .tel-modal-overlay .modal-contact .modal-hours ul li {
    font-size: 16px;
  }
  .tel-modal-overlay .modal-contact .modal-hours .note {
    font-size: 12px;
    margin-top: 5px;
  }
  .tel-modal-overlay .modal-flow {
    margin-top: 30px;
  }
  .tel-modal-overlay .modal-flow h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .tel-modal-overlay .modal-flow .flow-steps .flow-step {
    border-radius: 10px;
    padding: 15px 10px;
    width: 23.2%;
  }
  .tel-modal-overlay .modal-flow .flow-steps .flow-step .step-number {
    font-size: 24px;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  .tel-modal-overlay .modal-flow .flow-steps .flow-step p {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .tel-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
  }
  .tel-modal-overlay--show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .tel-modal-overlay .modal-content {
    overflow: auto;
    position: relative;
    background-color: #fff;
    max-height: 70svh;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    text-align: center;
  }
  .tel-modal-overlay .modal-header {
    background-color: #002776;
    color: #fff;
    margin-bottom: 12px;
    padding: 15px;
  }
  .tel-modal-overlay .modal-header h2 {
    font-size: 18px;
    margin: 0;
  }
  .tel-modal-overlay .modal-header .tag {
    background-color: #d1e1ff;
    color: #002776;
    font-size: 12px;
    margin-left: 5px;
    padding: 2px 6px;
    border-radius: 5px;
  }
  .tel-modal-overlay .modal-contact {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .tel-modal-overlay .modal-contact .modal-phone-number {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
    padding: 10px 16px;
  }
  .tel-modal-overlay .modal-contact .modal-phone-number img {
    width: 34px;
    margin-right: 12px;
  }
  .tel-modal-overlay .modal-contact .modal-phone-number .phone-number {
    font-size: 36px;
  }
  .tel-modal-overlay .modal-contact .modal-phone-number.dp-pc {
    display: none;
  }
  .tel-modal-overlay .modal-contact .modal-phone-number.dp-sp {
    display: flex;
  }
  .tel-modal-overlay .modal-contact .modal-hours {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .tel-modal-overlay .modal-contact .modal-hours h3 {
    font-size: 17px;
    color: #002776;
  }
  .tel-modal-overlay .modal-contact .modal-hours > div {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #002776;
  }
  .tel-modal-overlay .modal-contact .modal-hours > div ul {
    list-style: none;
  }
  .tel-modal-overlay .modal-contact .modal-hours > div ul li {
    font-size: 14px;
    color: #333;
    margin-bottom: 2px;
  }
  .tel-modal-overlay .modal-contact .modal-hours > div .note {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
  }
  .tel-modal-overlay .modal-flow {
    margin-top: 15px;
  }
  .tel-modal-overlay .modal-flow h3 {
    margin-bottom: 20px;
    font-size: 15px;
    color: #002776;
  }
  .tel-modal-overlay .modal-flow .flow-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .tel-modal-overlay .modal-flow .flow-steps .flow-step {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #f0f3fa;
    border-radius: 10px;
    padding: 10px 10px 10px 15px;
    text-align: center;
  }
  .tel-modal-overlay .modal-flow .flow-steps .flow-step .step-number {
    background-color: #002776;
    color: #fff;
    font-size: 20px;
    width: 35px;
    height: 35px;
    display: inline-block;
    line-height: 35px;
    border-radius: 50%;
    margin: 0 12px 0 10px;
  }
  .tel-modal-overlay .modal-flow .flow-steps .flow-step p {
    font-size: 14px;
    text-align: left;
  }
  .tel-modal-overlay .modal-close {
    transform: none;
    font-size: 24px;
  }
}
/* 共通
--------------------------------- */
.sec-title {
  position: relative;
  font-size: 42px;
  font-weight: 500;
  color: #000;
  text-align: center;
}
.sec-title::before, .sec-title::after {
  position: absolute;
  content: "";
  bottom: -5px;
  width: 20px;
  height: 1px;
}
.sec-title::before {
  background-color: #162680;
  left: 50%;
  transform: translateX(-100%);
}
.sec-title::after {
  background-color: #F78029;
  right: 50%;
  transform: translateX(100%);
}

section header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section header p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32.5%;
  height: 63px;
  margin-bottom: 7px;
  font-size: 24px;
  font-weight: 700;
  color: rgba(22, 38, 128, 0.2);
  border: 1px solid #999EBC;
  background-color: #F0F0F0;
  cursor: pointer;
  transition: all 0.3s;
}
section header p.is-active {
  height: 70px;
  margin-bottom: 0;
  color: #fff;
  border: none;
  background-color: #0D164A;
}
section header p br {
  display: none;
}
@media (hover: hover) {
  section header p:hover {
    background-color: #0D164A !important;
    color: #fff;
  }
}
section .symptom-type__contents > div,
section .price__contents > div,
section .flow__contents > div {
  z-index: 0;
  position: relative;
  display: none;
  padding: 40px 40px 40px;
  text-align: center;
}
section .symptom-type__contents > div.is-active,
section .price__contents > div.is-active,
section .flow__contents > div.is-active {
  display: block;
}

@media (max-width: 767px) {
  .sec-title {
    font-size: 30px;
  }
  .sec-title::before, .sec-title::after {
    bottom: -5px;
    width: 20px;
    height: 1px;
  }
  section header p {
    height: 48px;
    margin-bottom: 7px;
    font-size: 14px;
  }
  section header p.is-active {
    height: 55px;
  }
  section header p br {
    display: block;
  }
}
@media (max-width: 500px) {
  .sec-title {
    font-size: 34px;
  }
}
@media (max-width: 400px) {
  .sec-title {
    font-size: 30px;
  }
}
/* 病例ごとの説明
--------------------------------- */
.symptom-type .symptom-type__inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 70px 15px 70px;
}
.symptom-type .symptom-type__inner .symptom-type__contents {
  background-color: #E9EAF0;
  border: 1px solid #162680;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div {
  z-index: 0;
  position: relative;
  display: none;
  padding: 55px 40px 40px;
  text-align: center;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.is-active {
  display: block;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div h3 {
  margin-bottom: 5px;
  font-size: 32px;
  color: #162680;
  position: relative;
  display: inline-block;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div h3::after {
  z-index: -1;
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  bottom: 5px;
  height: 0.4em;
  background: linear-gradient(to right, #FCE047, #FCE047);
  width: calc(100% + 1px + 1px);
}
.symptom-type .symptom-type__inner .symptom-type__contents > div h3 br {
  display: none;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div .sub-lead {
  margin-bottom: 27px;
  font-size: 18px;
  font-weight: 500;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div .sub-lead br {
  display: none;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div .text {
  font-size: 18px;
  font-weight: 500;
  color: #162680;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div .text span {
  font-size: 24px;
  position: relative;
  display: inline-block;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div .text span::after {
  z-index: -1;
  position: absolute;
  content: "";
  left: -5px;
  right: -2px;
  bottom: 5px;
  height: 0.4em;
  background: linear-gradient(to right, #FCE047, #FCE047);
  width: calc(100% + 5px + 2px);
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed .ed-content-1 {
  margin-bottom: 13px;
  padding: 30px 10px 23px;
  background-color: #fff;
  border: 1px solid #0D164A;
  border-radius: 10px;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed .ed-content-1 img {
  width: 70%;
  min-width: 581px;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed .ed-content-2 {
  margin-bottom: 20px;
  padding: 30px 30px 23px;
  background-color: #fff;
  border: 1px solid #0D164A;
  border-radius: 10px;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed .ed-content-2 h4 {
  margin-bottom: 26px;
  font-size: 26px;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed .ed-content-2 ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 10px;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed .ed-content-2 ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 16px;
  width: fit-content;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed .ed-content-2 ul li img {
  width: 106px;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed .ed-content-2 ul li > div {
  text-align: left;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed .ed-content-2 ul li > div p {
  font-size: 16px;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed .ed-content-2 ul li > div p br {
  display: none;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed .ed-content-2 ul li > div h5 {
  font-size: 26px;
  font-weight: 700;
  color: #162680;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 {
  padding: 40px 12px 30px;
  background-color: #fff;
  border: 1px solid #0D164A;
  border-radius: 10px;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 h4 {
  margin-bottom: 12px;
  font-size: 30px;
  font-weight: 700;
  color: #0D164A;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 h4 span {
  font-size: 40px;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 > div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  column-gap: 5px;
  margin-bottom: 32px;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 > div > div {
  width: 295px;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 > div > div img {
  width: 112px;
  height: 157px;
  margin-bottom: 5px;
  object-fit: contain;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 > div > div > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 134px;
  padding-top: 25px;
  background-color: #0D164A;
  border-radius: 5px;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 > div > div > div p {
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 > div > div > div h5 {
  font-size: 20px;
  font-weight: 700;
  color: #E6C059;
  line-height: 1.4;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 > div > div:nth-of-type(2) > div h5 {
  margin-top: 16px;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 > div > span {
  position: relative;
  top: 50px;
  width: 48px;
  height: 48px;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 > div > span::before, .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 > div > span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 12.5px;
  background-color: #0D164A;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 > div > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .text {
  position: relative;
  left: -24px;
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .text br {
  display: none;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .text span {
  margin: 0 12px 0 5px;
  font-size: 35px;
  font-weight: 700;
  color: #A27429;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .text img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
  width: 74px;
  height: 74px;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet h3 {
  margin-bottom: 40px;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 {
  flex-direction: column;
  padding: 60px 34px 30px;
  background-color: #fff;
  border: 1px solid #0D164A;
  border-radius: 10px;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(1) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: stretch;
  margin-bottom: 33px;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(1) > div {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 43.6585365854%;
  height: auto;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(1) > div::before, .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(1) > div::after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 3px;
  background: url(../img/common/parts-line-2.png) no-repeat center/100%;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(1) > div::before {
  top: 0;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(1) > div::after {
  bottom: 0;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(1) > div p {
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 500;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(1) > div img {
  width: 80%;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(1) > div h5 {
  margin-top: 20px;
  font-size: 28px;
  font-weight: 700;
  color: #0D164A;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(1) img {
  width: 48.2926829268%;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 30px;
  margin-bottom: 20px;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(2) > span {
  font-size: 26px;
  font-weight: 700;
  color: #E6C059;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(2) > div {
  z-index: 0;
  position: relative;
  text-align: left;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(2) > div p {
  font-size: 18px;
  font-weight: 500;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(2) > div p span {
  position: relative;
  display: inline-block;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(2) > div p span::after {
  z-index: -1;
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  bottom: 5px;
  height: 0.4em;
  background: linear-gradient(to right, #FCE047, #FCE047);
  width: calc(100% + 1px + 1px);
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) > div {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-around;
  width: calc((100% - 20px) / 2);
  height: 180px;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) > div > div {
  width: fit-content;
  color: #909090;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) > div > div p:nth-child(1) {
  font-size: 18px;
  font-weight: 700;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) > div > div p:nth-child(1) span {
  font-size: 22px;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) > div > div p:nth-child(2) {
  font-size: 28px;
  font-weight: 700;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) > div img {
  width: auto;
  height: 115px;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) > div:nth-child(1) {
  background-color: #E2E2E2;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) > div:nth-child(2) {
  background-color: #0D164A;
}
.symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) > div:nth-child(2) p {
  color: #E6C059;
}

@media (max-width: 950px) {
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed .ed-content-2 {
    padding: 18px 18px 18px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed .ed-content-2 ul {
    column-gap: 8px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed .ed-content-2 ul li img {
    width: 90px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed .ed-content-2 ul li > div p {
    font-size: 14px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed .ed-content-2 ul li > div p br {
    display: block;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed .ed-content-2 ul li > div h5 {
    font-size: 22px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 {
    padding: 40px 12px 30px;
    background-color: #fff;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 h4 {
    margin-bottom: 12px;
    font-size: 30px;
    font-weight: 700;
    color: #0D164A;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 h4 span {
    font-size: 40px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 {
    padding: 50px 24px 30px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(1) {
    margin-bottom: 26px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(1) > div {
    width: 46.3414634146%;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(1) > div img {
    width: 74%;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(1) > div h5 {
    margin-top: 20px;
    font-size: 26px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(1) img {
    width: 48.2926829268%;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(2) {
    column-gap: 15px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(2) > span {
    font-size: 20px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(2) > div p {
    font-size: 16px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) > div {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-around;
    width: calc((100% - 20px) / 2);
    height: 180px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) > div > div {
    width: fit-content;
    color: #909090;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) > div > div p:nth-child(1) {
    font-size: 18px;
    font-weight: 700;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) > div > div p:nth-child(1) span {
    font-size: 22px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) > div > div p:nth-child(2) {
    font-size: 28px;
    font-weight: 700;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) > div img {
    width: auto;
    height: 115px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) > div:nth-child(1) {
    background-color: #E2E2E2;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) > div:nth-child(2) {
    background-color: #0D164A;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) > div:nth-child(2) p {
    color: #E6C059;
  }
}
@media (max-width: 767px) {
  .symptom-type .symptom-type__inner {
    padding: 40px 10px 50px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div {
    padding: 20px 10px 20px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div h3 {
    margin-bottom: 5px;
    font-size: 24px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div h3 br {
    display: block;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div .sub-lead {
    margin-bottom: 15px;
    font-size: 13px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div .sub-lead br {
    display: block;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div .text {
    font-size: 13px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div .text span {
    font-size: 18px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed h3 span {
    position: relative;
    display: inline-block;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed h3 span::after {
    z-index: -1;
    position: absolute;
    content: "";
    left: -5px;
    right: -2px;
    bottom: 5px;
    height: 0.4em;
    background: linear-gradient(to right, #FCE047, #FCE047);
    width: calc(100% + 5px + 2px);
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed .ed-content-1 {
    margin-bottom: 13px;
    padding: 20px 20px 20px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed .ed-content-1 img {
    width: 100%;
    min-width: auto;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed .ed-content-2 {
    margin-bottom: 16px;
    padding: 18px 23px 18px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed .ed-content-2 h4 {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed .ed-content-2 ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed .ed-content-2 ul li {
    flex-direction: column;
    width: fit-content;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed .ed-content-2 ul li img {
    width: 60%;
    min-width: 62px;
    margin-bottom: 8px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed .ed-content-2 ul li > div p {
    margin-bottom: 2px;
    font-size: 12px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed .ed-content-2 ul li > div p br {
    display: block;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__ed .ed-content-2 ul li > div h5 {
    font-size: 18px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 {
    padding: 40px 12px 30px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 h4 {
    margin-bottom: 16px;
    font-size: 16px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 h4 span {
    font-size: 22px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 > div {
    flex-direction: column;
    align-items: center;
    row-gap: 16px;
    margin-bottom: 32px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 > div > div {
    display: flex;
    align-items: center;
    column-gap: 20px;
    width: 98%;
    max-width: 400px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 > div > div img {
    width: 20%;
    height: auto;
    margin-bottom: 5px;
    object-fit: contain;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 > div > div > div {
    justify-content: center;
    width: 100%;
    height: 110px;
    padding-top: 0;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 > div > div > div p {
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 > div > div > div h5 {
    font-size: 18px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 > div > div:nth-of-type(2) > div h5 {
    margin-top: 0;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 > div > span {
    position: relative;
    top: 0;
    left: 45px;
    width: 48px;
    height: 48px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 > div > span::before, .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 > div > span::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 10.5px;
    background-color: #0D164A;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 > div > span::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .text {
    left: -24px;
    font-size: 14px;
    flex-direction: column;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .text span {
    margin: 0 12px 0 5px;
    font-size: 23px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .text img {
    width: 50px;
    height: 50px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 {
    padding: 23px 20px 20px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(1) {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    margin-bottom: 26px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(1) > div {
    width: 90%;
    max-width: 400px;
    padding: 20px 5px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(1) > div img {
    width: 90%;
    max-width: 320px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(1) > div h5 {
    margin-top: 20px;
    font-size: 26px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(1) img {
    width: 90%;
    max-width: 400px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(2) {
    flex-direction: column;
    row-gap: 16px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(2) > span {
    font-size: 20px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(2) > div p {
    font-size: 16px;
    line-height: 1.65;
    text-align: center;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(2) > div p:nth-child(2) span {
    display: block;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) > div {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    column-gap: 10px;
    width: calc((100% - 10px) / 2);
    height: 232px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) > div > div p:nth-child(1) {
    font-size: 13px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) > div > div p:nth-child(1) span {
    font-size: 17px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) > div > div p:nth-child(2) {
    font-size: 17px;
    font-weight: 700;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) > div img {
    width: auto;
    height: 115px;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) > div:nth-child(1) {
    background-color: #E2E2E2;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) > div:nth-child(2) {
    background-color: #0D164A;
  }
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__diet .diet-content-1 > div:nth-child(3) > div:nth-child(2) p {
    color: #E6C059;
  }
}
@media (max-width: 480px) {
  .symptom-type .symptom-type__inner .symptom-type__contents > div.symptom-type__aga .aga-content-1 > div > span {
    left: 11%;
  }
}
/* 価格
--------------------------------- */
.price {
  background-color: #E9EEF4;
}
.price .dp-pc-tb {
  display: table-cell;
}
.price .dp-pc-tbr {
  display: table-row;
}
.price .dp-sp-tbr {
  display: none;
}
.price .bt-n-sp {
  border-top: 1px solid #999EBC;
}
.price .price__inner {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 70px 15px 70px;
  text-align: center;
}
.price .price__inner h2 {
  margin-bottom: 22px;
}
.price .price__inner h3 {
  font-size: 34px;
  color: #162680;
  position: relative;
  display: inline-block;
  line-height: 1;
}
.price .price__inner h3::after {
  z-index: -1;
  position: absolute;
  content: "";
  left: -8px;
  right: -8px;
  bottom: 10px;
  height: 0.4em;
  background: linear-gradient(to right, #FCE047, #FCE047);
  width: calc(100% + 8px + 8px);
}
.price .price__inner h3 span:nth-of-type(1) {
  font-size: 22px;
}
.price .price__inner h3 span:nth-of-type(2) {
  position: relative;
  top: 4px;
  margin-right: 4px;
  font-size: 74px;
}
.price .price__inner h3 span:nth-of-type(3) {
  font-size: 23px;
}
.price .price__inner small {
  display: block;
  width: 60%;
  margin: 14px auto 40px;
  font-size: 14px;
  text-align: left;
  line-height: 1.7;
}
.price .price__inner header p {
  background-color: #fff;
}
.price .price__inner header p.is-active {
  background-color: #0D164A;
}
.price .price__inner .price__contents {
  background-color: #fff;
  border: 1px solid #0D164A;
}
.price .price__inner .price__contents > div {
  padding: 40px 40px 40px;
}
.price .price__inner .price__contents > div .text {
  font-size: 18px;
  font-weight: 500;
  color: #162680;
}
.price .price__inner .price__contents > div.price__ed .ed-content-1 .ed-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.price .price__inner .price__contents > div.price__ed .ed-content-1 .ed-table thead tr th {
  height: 50px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #888;
}
.price .price__inner .price__contents > div.price__ed .ed-content-1 .ed-table thead tr th:nth-child(1) {
  background-color: #0D164A;
}
.price .price__inner .price__contents > div.price__ed .ed-content-1 .ed-table thead tr th span {
  font-size: 13px;
}
.price .price__inner .price__contents > div.price__ed .ed-content-1 .ed-table thead tr th:nth-child(1) {
  width: 33.3333333333%;
}
.price .price__inner .price__contents > div.price__ed .ed-content-1 .ed-table thead tr th:nth-child(2) {
  width: 18.8888888889%;
}
.price .price__inner .price__contents > div.price__ed .ed-content-1 .ed-table thead tr th:nth-child(3) {
  width: 15.3333333333%;
}
.price .price__inner .price__contents > div.price__ed .ed-content-1 .ed-table thead tr th:nth-child(4) {
  width: 32.4444444444%;
}
.price .price__inner .price__contents > div.price__ed .ed-content-1 .ed-table tr, .price .price__inner .price__contents > div.price__ed .ed-content-1 .ed-table td, .price .price__inner .price__contents > div.price__ed .ed-content-1 .ed-table th {
  box-sizing: border-box;
}
.price .price__inner .price__contents > div.price__ed .ed-content-1 .ed-table th, .price .price__inner .price__contents > div.price__ed .ed-content-1 .ed-table td {
  border: 1px solid #ACACAC;
  padding: 6px;
}
.price .price__inner .price__contents > div.price__ed .ed-content-1 .ed-table td:first-of-type {
  border-left: none;
}
.price .price__inner .price__contents > div.price__ed .ed-content-1 .ed-table td:last-of-type {
  border-right: none;
}
.price .price__inner .price__contents > div.price__ed .ed-content-1 .ed-table td {
  height: 35px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  background-color: #EFF1FF;
}
.price .price__inner .price__contents > div.price__ed .ed-content-1 .ed-table td span {
  font-size: 14px;
  font-weight: 500;
}
.price .price__inner .price__contents > div.price__ed .ed-content-1 .ed-table td:last-of-type {
  background-color: #fff;
}
.price .price__inner .price__contents > div.price__ed .ed-content-1 .ed-table .drug-info {
  display: flex;
  justify-content: center;
  align-items: center;
}
.price .price__inner .price__contents > div.price__ed .ed-content-1 .ed-table .drug-info img {
  width: 72px;
  height: auto;
  margin-right: 22px;
}
.price .price__inner .price__contents > div.price__ed .ed-content-1 .ed-table .drug-info p {
  font-size: 13px;
  font-weight: 700;
}
.price .price__inner .price__contents > div.price__ed .ed-content-1 .ed-table .drug-info p span {
  display: block;
  margin-top: 6px;
  font-size: 20px;
}
.price .price__inner .price__contents > div.price__ed .text {
  margin-top: 10px;
  font-size: 16px;
  text-align: left;
}
.price .price__inner .price__contents > div.price__aga .aga-content-1 {
  margin-bottom: 40px;
}
.price .price__inner .price__contents > div.price__aga .aga-content-1 h4 {
  margin-bottom: 23px;
  font-size: 20px;
  font-weight: 700;
  color: #0D164A;
}
.price .price__inner .price__contents > div.price__aga .aga-content-1 h4 span:nth-of-type(1) {
  font-size: 28px;
}
.price .price__inner .price__contents > div.price__aga .aga-content-1 h4 span:nth-of-type(2) {
  font-size: 16px;
}
.price .price__inner .price__contents > div.price__aga .aga-content-1 h4 br {
  display: none;
}
.price .price__inner .price__contents > div.price__aga .aga-content-1 > div {
  display: flex;
  column-gap: 60px;
  margin-bottom: 20px;
}
.price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div {
  display: flex;
  justify-content: space-between;
  width: 390px;
}
.price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(1) {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 150px;
  height: 154px;
  background-color: #0D164A;
  border-radius: 5px;
}
.price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(1) img {
  width: 50px;
  margin-bottom: 7px;
}
.price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(1) p {
  margin-bottom: 3px;
  font-size: 16px;
  font-weight: 700;
  color: #FCE047;
}
.price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(1) h5 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  width: calc(100% - 150px);
  padding: 5px 0 10px 20px;
}
.price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(2) > span {
  padding: 3px 10px;
  font-size: 17px;
  font-weight: 700;
  background-color: #E6C059;
}
.price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(2) > p {
  position: relative;
  font-size: 33px;
  font-weight: 700;
}
.price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(2) > p::before {
  position: absolute;
  content: "(税込)";
  top: 14px;
  right: -2px;
  font-size: 13px;
}
.price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(2) > p span {
  margin-right: 5px;
  font-size: 70px;
}
.price .price__inner .price__contents > div.price__aga .aga-content-1 small {
  width: 100%;
  margin: 0;
  font-size: 12px;
}
.price .price__inner .price__contents > div.price__aga .aga-content-2 h4 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #0D164A;
}
.price .price__inner .price__contents > div.price__aga .aga-content-2 table {
  width: 100%;
  border-collapse: collapse;
}
.price .price__inner .price__contents > div.price__aga .aga-content-2 table:first-of-type {
  margin-bottom: 30px;
}
.price .price__inner .price__contents > div.price__aga .aga-content-2 table:nth-of-type(2) tbody tr td {
  height: 54px;
}
.price .price__inner .price__contents > div.price__aga .aga-content-2 table:nth-of-type(2) tbody tr td:nth-child(1) {
  padding-left: 12px;
  text-align: left;
  background-color: #FBF4E2;
}
.price .price__inner .price__contents > div.price__aga .aga-content-2 table:nth-of-type(2) tbody tr td:nth-child(1) span {
  display: block;
}
.price .price__inner .price__contents > div.price__aga .aga-content-2 table thead tr, .price .price__inner .price__contents > div.price__aga .aga-content-2 table tbody tr {
  border-bottom: 1px solid #ACACAC;
}
.price .price__inner .price__contents > div.price__aga .aga-content-2 table thead tr th:not(:first-child),
.price .price__inner .price__contents > div.price__aga .aga-content-2 table thead tr td:not(:first-child), .price .price__inner .price__contents > div.price__aga .aga-content-2 table tbody tr th:not(:first-child),
.price .price__inner .price__contents > div.price__aga .aga-content-2 table tbody tr td:not(:first-child) {
  border-left: 1px solid #ACACAC;
}
.price .price__inner .price__contents > div.price__aga .aga-content-2 table thead tr th {
  height: 50px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background-color: #888888;
}
.price .price__inner .price__contents > div.price__aga .aga-content-2 table thead tr th:nth-child(1) {
  width: 43.3333333333%;
  background-color: #162680;
}
.price .price__inner .price__contents > div.price__aga .aga-content-2 table thead tr th:nth-child(2), .price .price__inner .price__contents > div.price__aga .aga-content-2 table thead tr th:nth-child(3), .price .price__inner .price__contents > div.price__aga .aga-content-2 table thead tr th:nth-child(4) {
  width: 18.8888888889%;
  background-color: #888888;
  border-left: 1px solid #ACACAC;
}
.price .price__inner .price__contents > div.price__aga .aga-content-2 table thead tr th span {
  font-size: 14px;
  font-weight: 500;
}
.price .price__inner .price__contents > div.price__aga .aga-content-2 table tbody tr td {
  height: 36px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  background-color: #fff;
}
.price .price__inner .price__contents > div.price__aga .aga-content-2 table tbody tr td:nth-child(1) {
  width: 43.3333333333%;
  padding-left: 12px;
  background-color: #EFF1FF;
  text-align: left;
}
.price .price__inner .price__contents > div.price__aga .aga-content-2 table tbody tr td span {
  font-size: 13px;
  font-weight: 500;
}
.price .price__inner .price__contents > div.price__diet .diet-content-1 {
  display: flex;
  justify-content: space-between;
}
.price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) {
  width: 50.7692307692%;
}
.price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background-color: #888888;
}
.price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) h4 span {
  font-size: 14px;
}
.price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) > div {
  display: flex;
  border-top: 1px solid #ACACAC;
}
.price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) > div:not(:last-of-type) {
  margin-bottom: 15px;
}
.price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) > div h5 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 21.645021645%;
  font-size: 18px;
  font-weight: 700;
  background-color: #0D164A;
  color: #fff;
  line-height: 1.3;
}
.price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) > div h5 br {
  display: block;
}
.price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) > div ul {
  width: 78.354978355%;
}
.price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) > div ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  border-bottom: 1px solid #ACACAC;
}
.price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) > div ul li p {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-weight: 700;
  color: #000;
}
.price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) > div ul li p span {
  margin-left: 3px;
  font-size: 14px;
}
.price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) > div ul li p:nth-child(1) {
  justify-content: flex-start;
  width: 68.2320441989%;
  padding-left: 20px;
  font-size: 16px;
  background-color: #EFF1FF;
}
.price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) > div ul li p:nth-child(2) {
  width: 31.7679558011%;
  font-size: 18px;
  background-color: #fff;
}
.price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(2) {
  width: 46.5934065934%;
}
.price .price__inner .price__contents > div.price__diet > div:nth-child(2) {
  margin-top: 20px;
}
.price .price__inner .price__contents > div.price__diet > div:nth-child(2) small {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
}
.price .price__inner .price__contents > div.price__diet > div:nth-child(2) small a {
  text-decoration: underline;
}

@media (max-width: 982px) {
  .price .price__inner .price__contents > div.price__aga .aga-content-1 h4 br {
    display: block;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div {
    column-gap: 30px;
    margin-bottom: 20px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div {
    width: calc(50% - 15px);
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(1) {
    width: 36%;
    height: 140px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(1) p {
    font-size: 14px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(1) h5 {
    font-size: 13px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(2) {
    width: 64%;
    padding: 5px 0 10px 20px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(2) > span {
    font-size: 16px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(2) > p {
    font-size: 28px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(2) > p::before {
    top: 10px;
    right: -3px;
    font-size: 12px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(2) > p span {
    margin-right: 5px;
    font-size: 56px;
  }
}
@media (max-width: 845px) {
  .price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) {
    width: 52.967032967%;
  }
  .price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) h4 {
    font-size: 18px;
  }
  .price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) h4 span {
    font-size: 14px;
  }
  .price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) > div:not(:last-of-type) {
    margin-bottom: 15px;
  }
  .price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) > div h5 {
    width: 21.645021645%;
    font-size: 16px;
  }
  .price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) > div ul {
    width: 78.354978355%;
  }
  .price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) > div ul li {
    height: 56px;
  }
  .price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) > div ul li p span {
    margin-left: 3px;
    font-size: 13px;
  }
  .price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) > div ul li p:nth-child(1) {
    width: 68.2320441989%;
    padding-left: 20px;
    font-size: 14px;
  }
  .price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) > div ul li p:nth-child(2) {
    width: 31.7679558011%;
    font-size: 14px;
  }
  .price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(2) {
    width: 44.3956043956%;
  }
}
@media (max-width: 767px) {
  .price .dp-pc-tb {
    display: none;
  }
  .price .dp-pc-tbr {
    display: none;
  }
  .price .dp-sp-tbr {
    display: table-row;
  }
  .price .bl-n-sp {
    border-left: none !important;
  }
  .price .bt-n-sp {
    border-top: none !important;
  }
  .price .img-sp {
    box-sizing: border-box;
    height: 96px !important;
    background-color: #EFF1FF !important;
  }
  .price .img-sp .drug-info img {
    width: 65px !important;
  }
  .price .img-sp .drug-info p {
    font-size: 12px !important;
  }
  .price .img-sp .drug-info p span {
    margin-top: 2px !important;
    font-size: 16px !important;
  }
  .price .mb-10 {
    margin-bottom: 10px;
  }
  .price .mt-15 {
    margin-top: 15px;
  }
  .price .space {
    height: 15px !important;
    padding: 0 !important;
    background-color: #fff !important;
    border-bottom: none !important;
  }
  .price .heading td {
    font-size: 14px !important;
    color: #fff;
    background-color: #888 !important;
  }
  .price .heading td span {
    font-size: 11px !important;
  }
  .price .bb-n-im {
    border-bottom: none !important;
  }
  .price .bl-n-im {
    border-left: none !important;
  }
  .price .price__inner {
    padding: 50px 10px 50px;
  }
  .price .price__inner h3 {
    font-size: 28px;
  }
  .price .price__inner h3 span:nth-of-type(1) {
    font-size: 18px;
  }
  .price .price__inner h3 span:nth-of-type(2) {
    font-size: 62px;
  }
  .price .price__inner h3 span:nth-of-type(3) {
    font-size: 20px;
  }
  .price .price__inner small {
    width: 80%;
    margin: 14px auto 40px;
    font-size: 12px;
  }
  .price .price__inner .price__contents > div {
    padding: 20px 13px 20px;
  }
  .price .price__inner .price__contents > div.price__ed .ed-content-1 .ed-table thead {
    border-bottom: 10px solid #fff;
  }
  .price .price__inner .price__contents > div.price__ed .ed-content-1 .ed-table thead tr th {
    border: none;
  }
  .price .price__inner .price__contents > div.price__ed .ed-content-1 .ed-table td {
    height: 30px;
    font-size: 13px;
    padding: 4.5px;
  }
  .price .price__inner .price__contents > div.price__ed .ed-content-1 .ed-table td span {
    display: inline-block;
    margin-left: 2px;
    font-size: 11px;
  }
  .price .price__inner .price__contents > div.price__ed .text {
    font-size: 13px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div {
    column-gap: 30px;
    margin-bottom: 20px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div {
    width: calc(50% - 15px);
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(1) {
    width: 36%;
    height: 140px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(1) p {
    font-size: 14px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(1) h5 {
    font-size: 13px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(2) {
    width: 64%;
    padding: 5px 0 10px 20px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(2) > span {
    font-size: 16px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(2) > p {
    font-size: 28px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(2) > p::before {
    top: 10px;
    right: -3px;
    font-size: 12px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(2) > p span {
    margin-right: 5px;
    font-size: 56px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-2 .aga-table thead tr td, .price .price__inner .price__contents > div.price__aga .aga-content-2 .aga-table tbody tr td {
    width: 33.3333333333% !important;
    font-size: 14px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-2 .aga-table thead tr td.small-title, .price .price__inner .price__contents > div.price__aga .aga-content-2 .aga-table tbody tr td.small-title {
    font-size: 13px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-2 .aga-table thead tr td span, .price .price__inner .price__contents > div.price__aga .aga-content-2 .aga-table tbody tr td span {
    font-size: 11px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-2 .aga-table:nth-of-type(2) tbody tr td {
    height: 54px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-2 .aga-table:nth-of-type(2) tbody tr td.small-title {
    padding-left: 0;
    text-align: center;
    background-color: #E5DECC;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-2 .aga-table:nth-of-type(2) tbody tr td.small-title span {
    display: block !important;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-2 .aga-table:nth-of-type(2) tbody tr td:nth-child(1) {
    text-align: center;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-2 .aga-table:nth-of-type(2) tbody tr td:nth-child(1) span {
    display: inline;
  }
  .price .price__inner .price__contents > div.price__diet .diet-content-1 {
    flex-direction: column;
    row-gap: 20px;
  }
  .price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) {
    width: 100%;
  }
  .price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) h4 {
    font-size: 18px;
  }
  .price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) h4 span {
    font-size: 14px;
  }
  .price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) > div:not(:last-of-type) {
    margin-bottom: 15px;
  }
  .price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) > div h5 {
    width: 21.645021645%;
    font-size: 16px;
  }
  .price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) > div ul {
    width: 78.354978355%;
  }
  .price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) > div ul li {
    height: 56px;
  }
  .price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) > div ul li p span {
    margin-left: 3px;
    font-size: 13px;
  }
  .price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) > div ul li p:nth-child(1) {
    width: 68.2320441989%;
    padding-left: 20px;
    font-size: 14px;
  }
  .price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(1) > div ul li p:nth-child(2) {
    width: 31.7679558011%;
    font-size: 14px;
  }
  .price .price__inner .price__contents > div.price__diet .diet-content-1 > div:nth-child(2) {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
}
@media (max-width: 716px) {
  .price .price__inner .notice {
    width: 100%;
  }
  .price .price__inner .price__contents > div {
    padding: 10px 8px 20px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 {
    margin-bottom: 20px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 h4 {
    font-size: 14px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 h4 span {
    font-size: 24px !important;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div {
    justify-content: space-between;
    column-gap: 5px;
    margin-bottom: 10px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div {
    flex-direction: column;
    width: calc(50% - 5px);
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(1) {
    position: relative;
    width: 100%;
    height: 60px;
    padding-left: 30px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(1) img {
    position: absolute;
    top: 50%;
    left: calc(50% - 6.5em);
    transform: translateY(-50%);
    width: 30px;
    height: 40px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(1) p {
    font-size: 12px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(1) h5 {
    font-size: 12px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(2) {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 3px;
    width: 100%;
    padding: 10px 0;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(2) > span {
    font-size: 11px !important;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(2) > p {
    font-size: 18px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(2) > p::before {
    top: -3px;
    right: -6px;
    font-size: 10px;
  }
  .price .price__inner .price__contents > div.price__aga .aga-content-1 > div > div > div:nth-child(2) > p span {
    margin-right: 5px;
    font-size: 34px;
  }
}
/* 診察の流れ
--------------------------------- */
.flow .flow__inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 70px 15px 70px;
  text-align: center;
}
.flow .flow__inner h2 {
  margin-bottom: 70px;
}
.flow .flow__inner header {
  justify-content: center;
  column-gap: 20px;
}
.flow .flow__inner header p {
  flex-wrap: wrap;
  width: 42.5%;
  height: 80px;
  margin-bottom: 0;
  font-size: 22px;
  background-color: #C9CBD6;
  color: #fff;
  border: none;
  border-radius: 6px 6px 0 0;
}
.flow .flow__inner header p.is-active {
  background-color: #0D164A;
}
.flow .flow__inner header p span:nth-child(2) {
  font-size: 18px;
}
.flow .flow__inner header p span:nth-child(2) {
  display: block;
  width: 100%;
  margin-top: -20px;
  font-size: 14px;
}
.flow .flow__inner .flow__contents {
  background-color: #E9EAF0;
  border: 1px solid #0D164A;
}
.flow .flow__inner .flow__contents > div {
  padding: 60px 60px 60px;
}
.flow .flow__inner .flow__contents > div > div {
  display: flex;
  background-color: #fff;
  border: 1px solid #0D164A;
}
.flow .flow__inner .flow__contents > div > div:not(:last-child) {
  margin-bottom: 50px;
}
.flow .flow__inner .flow__contents > div > div .left {
  position: relative;
  width: 50%;
  padding: 11px 10px 10px 40px;
}
.flow .flow__inner .flow__contents > div > div .left .badge {
  position: absolute;
  top: 0;
  left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 70px;
  height: 64px;
  font-weight: 700;
  color: #FCE047;
  background-color: #0D164A;
}
.flow .flow__inner .flow__contents > div > div .left .badge span:nth-child(1) {
  font-size: 14px;
}
.flow .flow__inner .flow__contents > div > div .left .badge span:nth-child(2) {
  font-size: 32px;
}
.flow .flow__inner .flow__contents > div > div .left h3 {
  margin-left: 70px;
  margin-bottom: 34px;
  font-size: 28px;
  color: #0D164A;
  font-weight: 700;
  text-align: left;
}
.flow .flow__inner .flow__contents > div > div .left h3 br {
  display: none;
}
.flow .flow__inner .flow__contents > div > div .left p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
}
.flow .flow__inner .flow__contents > div > div .left small {
  display: inline-block;
  width: 100%;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
}
.flow .flow__inner .flow__contents > div > div .right {
  width: 50%;
}
.flow .flow__inner .flow__contents > div.flow__visit .text {
  margin-top: 10px;
  font-size: 16px;
  text-align: left;
}
.flow .flow__inner .flow__contents > div.flow__online > div .left {
  padding: 11px 16px 25px 40px;
  width: 55%;
}
.flow .flow__inner .flow__contents > div.flow__online > div .left > p {
  font-size: 15px;
}
.flow .flow__inner .flow__contents > div.flow__online > div .left > div:nth-of-type(2) {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #162680;
}
.flow .flow__inner .flow__contents > div.flow__online > div .left > div:nth-of-type(2) img {
  width: 22px;
  margin-right: 5px;
}
.flow .flow__inner .flow__contents > div.flow__online > div .left > div:nth-of-type(2) p {
  margin-right: 5px;
  font-size: 24px;
  font-weight: 700;
}
.flow .flow__inner .flow__contents > div.flow__online > div .left > div:nth-of-type(2) span {
  font-size: 14px;
}
.flow .flow__inner .flow__contents > div.flow__online > div .left > div.consult-hour {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid #999EBC;
  border-radius: 10px;
}
.flow .flow__inner .flow__contents > div.flow__online > div .left > div.consult-hour > p {
  width: 23%;
  font-size: 16px;
  font-weight: 700;
  color: #162680;
  line-height: 1.4;
}
.flow .flow__inner .flow__contents > div.flow__online > div .left > div.consult-hour h4 {
  width: 17%;
  font-size: 14px;
  font-weight: 400;
}
.flow .flow__inner .flow__contents > div.flow__online > div .left > div.consult-hour ul {
  width: 56%;
  padding-left: 8px;
  padding-right: 8px;
  border-left: 1px solid #999EBC;
}
.flow .flow__inner .flow__contents > div.flow__online > div .left > div.consult-hour ul li {
  display: flex;
  font-size: 14px;
  text-align: left;
}
.flow .flow__inner .flow__contents > div.flow__online > div .left > div.consult-hour ul li span:nth-child(1) {
  width: 49%;
}
.flow .flow__inner .flow__contents > div.flow__online > div .left > div.consult-hour ul li span:nth-child(2) {
  width: 51%;
}
.flow .flow__inner .flow__contents > div.flow__online > div .left small {
  display: inline-block;
  width: 100%;
  margin-top: 2px;
  padding-left: 1em;
  font-size: 12px;
  text-indent: -1em;
  text-align: left;
}
.flow .flow__inner .flow__contents > div.flow__online > div .right {
  width: 45%;
}
.flow .flow__inner .flow__contents > div.flow__online > div .right img {
  width: 100%;
  height: 100%;
}

@media (max-width: 960px) {
  .flow .flow__inner .flow__contents {
    background-color: #E9EAF0;
    border: 1px solid #0D164A;
  }
  .flow .flow__inner .flow__contents > div {
    padding: 60px 50px 60px;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left {
    padding: 11px 16px 25px 30px;
    width: 60%;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left > p {
    font-size: 15px;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left > div:nth-of-type(2) {
    display: flex;
    align-items: center;
    color: #0D164A;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left > div:nth-of-type(2) img {
    width: 22px;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left > div:nth-of-type(2) p {
    font-size: 24px;
    font-weight: 700;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left > div:nth-of-type(2) span {
    font-size: 14px;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left > div.consult-hour {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left > div.consult-hour > p {
    width: 23%;
    font-size: 14px;
    font-weight: 700;
    color: #0D164A;
    line-height: 1.4;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left > div.consult-hour h4 {
    width: 18%;
    font-size: 13px;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left > div.consult-hour ul {
    width: 56%;
    padding-left: 8px;
    padding-right: 0;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left > div.consult-hour ul li {
    display: flex;
    font-size: 13px;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left > div.consult-hour ul li span:nth-child(1) {
    width: 51%;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left > div.consult-hour ul li span:nth-child(2) {
    width: 49%;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left small {
    font-size: 10px;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .right {
    width: 40%;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .right img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .flow .flow__inner {
    padding: 50px 10px 50px;
  }
  .flow .flow__inner h2 {
    margin-bottom: 50px;
  }
  .flow .flow__inner header {
    column-gap: 10px;
    max-width: 500px;
    margin: 0 auto;
  }
  .flow .flow__inner header p {
    height: 55px;
    font-size: 16px;
  }
  .flow .flow__inner header p span:nth-child(2) {
    font-size: 12px;
  }
  .flow .flow__inner header p span:nth-child(2) {
    margin-top: -12px;
    font-size: 12px;
  }
  .flow .flow__inner .flow__contents {
    max-width: 500px;
    margin: 0 auto;
  }
  .flow .flow__inner .flow__contents > div {
    padding: 12px 12px 12px;
  }
  .flow .flow__inner .flow__contents > div > div {
    position: relative;
    margin: 0 auto 0;
  }
  .flow .flow__inner .flow__contents > div > div:not(:last-child) {
    margin-bottom: 15px;
  }
  .flow .flow__inner .flow__contents > div > div .left {
    position: relative;
    width: 100%;
    padding: 33px 10px 20px 20px;
  }
  .flow .flow__inner .flow__contents > div > div .left .badge {
    left: 10px;
    width: 55px;
    height: 51px;
  }
  .flow .flow__inner .flow__contents > div > div .left .badge span:nth-child(1) {
    font-size: 11px;
  }
  .flow .flow__inner .flow__contents > div > div .left .badge span:nth-child(2) {
    font-size: 25px;
  }
  .flow .flow__inner .flow__contents > div > div .left h3 {
    margin-left: 66px;
    margin-bottom: 40px;
    font-size: 18px;
  }
  .flow .flow__inner .flow__contents > div > div .left h3 br {
    display: block;
  }
  .flow .flow__inner .flow__contents > div > div .left p {
    font-size: 14px;
    line-height: 1.8;
  }
  .flow .flow__inner .flow__contents > div > div .left small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    text-align: left;
  }
  .flow .flow__inner .flow__contents > div > div .right {
    position: absolute;
    top: 0;
    right: 0;
    width: 42.9003021148%;
    height: 92px;
  }
  .flow .flow__inner .flow__contents > div > div .right img {
    height: 100%;
  }
  .flow .flow__inner .flow__contents > div.flow__visit .text {
    margin-top: 10px;
    font-size: 16px;
    text-align: left;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left {
    padding: 33px 10px 20px 20px;
    width: 100%;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left > p {
    font-size: 15px;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left > div:nth-of-type(2) {
    display: flex;
    align-items: center;
    color: #0D164A;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left > div:nth-of-type(2) img {
    width: 22px;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left > div:nth-of-type(2) p {
    font-size: 24px;
    font-weight: 700;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left > div:nth-of-type(2) span {
    font-size: 14px;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left > div.consult-hour {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 36px 10px 10px;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left > div.consult-hour > p {
    position: absolute;
    width: 100%;
    top: 7px;
    left: 0;
    font-size: 14px;
    font-weight: 700;
    color: #0D164A;
    text-align: center;
    line-height: 1.4;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left > div.consult-hour > p br {
    display: none;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left > div.consult-hour h4 {
    width: 30%;
    font-size: 14px;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left > div.consult-hour ul {
    width: 70%;
    padding-left: 8px;
    padding-right: 0;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left > div.consult-hour ul li {
    display: flex;
    font-size: 14px;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left > div.consult-hour ul li span:nth-child(1) {
    width: 51%;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left > div.consult-hour ul li span:nth-child(2) {
    width: 49%;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .left small {
    width: fit-content;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .right {
    width: 40%;
  }
  .flow .flow__inner .flow__contents > div.flow__online > div .right img {
    width: 100%;
    height: 100%;
  }
}
/* マップ（クリニック所在地）
--------------------------------- */
.map {
  position: relative;
  background-color: #E9EEF4;
}
.map .map__inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 70px 15px 60px;
  text-align: center;
}
.map .map__inner h2 {
  margin-bottom: 76px;
}
.map .map__inner .map__contents {
  position: relative;
  margin-bottom: 60px;
}
.map .map__inner .map__contents .clinic-bubble {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.map .map__inner .map__contents .clinic-bubble > div {
  position: absolute;
  width: 193px;
}
.map .map__inner .map__contents .clinic-bubble > div::before {
  position: absolute;
  content: "";
  background-color: #fff;
}
.map .map__inner .map__contents .clinic-bubble > div h4 {
  padding: 0.4rem 1rem;
  font-size: 14px;
  color: #fff;
  background-color: #3C83D6;
}
.map .map__inner .map__contents .clinic-bubble > div .clinic-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
  padding: 7px 10px;
  background-color: #fff;
}
.map .map__inner .map__contents .clinic-bubble > div .pref {
  width: 84px;
}
.map .map__inner .map__contents .clinic-bubble > div .pref h5 {
  margin-bottom: 5px;
  font-size: 12px;
  text-align: left;
}
.map .map__inner .map__contents .clinic-bubble > div .pref ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.map .map__inner .map__contents .clinic-bubble > div .pref ul li {
  width: fit-content;
  min-width: 82px;
  height: 27px;
  border: 1px solid #3C83D6;
  border-radius: 27px;
}
.map .map__inner .map__contents .clinic-bubble > div .pref ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #3C83D6;
  cursor: pointer;
}
.map .map__inner .map__contents .clinic-bubble > div .pref ul li span {
  font-size: 9px;
}
.map .map__inner .map__contents .clinic-bubble > div .pref ul li.place-front {
  z-index: 1;
}
.map .map__inner .map__contents .clinic-bubble .tokyo {
  top: 155px;
  right: 0;
}
.map .map__inner .map__contents .clinic-bubble .tokyo::before {
  top: 105px;
  left: 0;
  transform: translateX(-100%);
  width: 110px;
  height: 25px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.map .map__inner .map__contents .clinic-bubble .tokyo .clinic-list {
  column-gap: 5px;
}
.map .map__inner .map__contents .clinic-bubble .tokyo .clinic-list .pref {
  width: fit-content;
}
.map .map__inner .map__contents .clinic-bubble .tokyo .clinic-list .pref li {
  overflow: hidden;
}
.map .map__inner .map__contents .clinic-bubble .tokyo .clinic-list .pref li a {
  transition: all 0.3s;
}
.map .map__inner .map__contents .clinic-bubble .tokyo .clinic-list .pref li a:hover {
  background-color: #3C83D6;
  color: #fff;
}
.map .map__inner .map__contents .clinic-bubble .kanto {
  right: 0;
  bottom: 0;
  width: 434px;
}
.map .map__inner .map__contents .clinic-bubble .kanto::before {
  top: 0;
  left: 90px;
  transform: translateY(-100%);
  width: 20px;
  height: 55px;
  background-color: #3C83D6;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.map .map__inner .map__contents .clinic-bubble .kanto .clinic-list {
  column-gap: 5px;
}
.map .map__inner .map__contents .clinic-bubble .kanto .clinic-list .pref li {
  overflow: hidden;
}
.map .map__inner .map__contents .clinic-bubble .kanto .clinic-list .pref li a {
  transition: all 0.3s;
}
.map .map__inner .map__contents .clinic-bubble .kanto .clinic-list .pref li a:hover {
  background-color: #3C83D6;
  color: #fff;
}
.map .map__inner .map__contents .clinic-bubble .kanto .clinic-list .pref:nth-child(3) {
  width: fit-content;
}
.map .map__inner .map__contents .clinic-bubble .kanto .clinic-list .pref:nth-child(3) ul {
  flex-direction: column;
}
.map .map__inner .map__contents .clinic-bubble .kanto .clinic-list .pref:nth-child(4) {
  width: 100%;
  margin-top: -30px;
}
.map .map__inner .map__contents .clinic-bubble .kanto .clinic-list .pref:nth-child(5),
.map .map__inner .map__contents .clinic-bubble .kanto .clinic-list .pref:nth-child(6) {
  width: fit-content;
}
.map .map__inner .map__contents .clinic-bubble .hokkaido {
  right: 0;
  top: 0;
}
.map .map__inner .map__contents .clinic-bubble .hokkaido::before {
  top: 46px;
  left: 0;
  transform: translateX(-100%);
  width: 46px;
  height: 36px;
  background-color: #fff;
  clip-path: polygon(0 100%, 100% 0, 100% 60%);
}
.map .map__inner .map__contents .clinic-bubble .hokkaido > h4 {
  background-color: #23569B;
}
.map .map__inner .map__contents .clinic-bubble .hokkaido .clinic-list {
  column-gap: 5px;
}
.map .map__inner .map__contents .clinic-bubble .hokkaido .clinic-list .pref ul li {
  overflow: hidden;
  border-color: #23569B;
}
.map .map__inner .map__contents .clinic-bubble .hokkaido .clinic-list .pref ul li a {
  color: #23569B;
  transition: all 0.3s;
}
.map .map__inner .map__contents .clinic-bubble .hokkaido .clinic-list .pref ul li a:hover {
  background-color: #23569B;
  color: #fff;
}
.map .map__inner .map__contents .clinic-bubble .chubu {
  left: 28%;
  top: 0;
}
.map .map__inner .map__contents .clinic-bubble .chubu::before {
  bottom: 0;
  right: 10px;
  transform: translateY(100%);
  width: 40px;
  height: 40px;
  background-color: #fff;
  clip-path: polygon(0 0, 60% 0, 100% 100%);
}
.map .map__inner .map__contents .clinic-bubble .chubu > h4 {
  background-color: #66AFF6;
}
.map .map__inner .map__contents .clinic-bubble .chubu .clinic-list {
  column-gap: 5px;
}
.map .map__inner .map__contents .clinic-bubble .chubu .clinic-list .pref ul li {
  overflow: hidden;
  border-color: #66AFF6;
}
.map .map__inner .map__contents .clinic-bubble .chubu .clinic-list .pref ul li a {
  color: #66AFF6;
  transition: all 0.3s;
}
.map .map__inner .map__contents .clinic-bubble .chubu .clinic-list .pref ul li a:hover {
  background-color: #66AFF6;
  color: #fff;
}
.map .map__inner .map__contents .clinic-bubble .kinki {
  left: 30%;
  bottom: 30px;
}
.map .map__inner .map__contents .clinic-bubble .kinki::before {
  top: 0;
  left: 80px;
  transform: translateY(-100%);
  width: 30px;
  height: 36px;
  background-color: #49C9AB;
  clip-path: polygon(0 100%, 100% 0, 70% 100%);
}
.map .map__inner .map__contents .clinic-bubble .kinki > h4 {
  background-color: #49C9AB;
}
.map .map__inner .map__contents .clinic-bubble .kinki .clinic-list {
  column-gap: 5px;
}
.map .map__inner .map__contents .clinic-bubble .kinki .clinic-list .pref ul li {
  overflow: hidden;
  border-color: #49C9AB;
}
.map .map__inner .map__contents .clinic-bubble .kinki .clinic-list .pref ul li a {
  color: #49C9AB;
  transition: all 0.3s;
}
.map .map__inner .map__contents .clinic-bubble .kinki .clinic-list .pref ul li a:hover {
  background-color: #49C9AB;
  color: #fff;
}
.map .map__inner .map__contents .clinic-bubble .kinki .clinic-list .pref:nth-of-type(3) {
  width: 100%;
}
.map .map__inner .map__contents .clinic-bubble .shikoku {
  left: 6%;
  bottom: 0;
}
.map .map__inner .map__contents .clinic-bubble .shikoku::before {
  top: 0;
  right: 0px;
  transform: translateY(-100%);
  width: 30px;
  height: 30px;
  background-color: #86CE76;
  clip-path: polygon(0 100%, 100% 0, 70% 100%);
}
.map .map__inner .map__contents .clinic-bubble .shikoku > h4 {
  background-color: #86CE76;
}
.map .map__inner .map__contents .clinic-bubble .shikoku .clinic-list {
  column-gap: 5px;
}
.map .map__inner .map__contents .clinic-bubble .shikoku .clinic-list .pref ul li {
  overflow: hidden;
  border-color: #86CE76;
}
.map .map__inner .map__contents .clinic-bubble .shikoku .clinic-list .pref ul li a {
  color: #86CE76;
  transition: all 0.3s;
}
.map .map__inner .map__contents .clinic-bubble .shikoku .clinic-list .pref ul li a:hover {
  background-color: #86CE76;
  color: #fff;
}
.map .map__inner .map__contents .clinic-bubble .shikoku .clinic-list .pref:nth-of-type(5) {
  width: 100%;
}
.map .map__inner .map__contents .clinic-bubble .kyushu {
  left: 0;
  top: 70px;
}
.map .map__inner .map__contents .clinic-bubble .kyushu::before {
  bottom: 0;
  left: 90px;
  transform: translateY(100%);
  width: 36px;
  height: 30px;
  background-color: #fff;
  clip-path: polygon(0 0, 60% 0, 100% 100%);
}
.map .map__inner .map__contents .clinic-bubble .kyushu > h4 {
  background-color: #57B288;
}
.map .map__inner .map__contents .clinic-bubble .kyushu .clinic-list {
  column-gap: 5px;
}
.map .map__inner .map__contents .clinic-bubble .kyushu .clinic-list .pref ul li {
  overflow: hidden;
  border-color: #57B288;
}
.map .map__inner .map__contents .clinic-bubble .kyushu .clinic-list .pref ul li a {
  color: #57B288;
  transition: all 0.3s;
}
.map .map__inner .map__contents .clinic-bubble .kyushu .clinic-list .pref ul li a:hover {
  background-color: #57B288;
  color: #fff;
}
.map .map__inner .link-online a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  min-width: 710px;
  max-width: 771px;
  height: 90px;
  margin: 0 auto;
  font-size: 28px;
  font-weight: 700;
  color: #0D164A;
  background-color: #fff;
  border: 1px solid #0D164A;
  transition: all 0.3s;
}
.map .map__inner .link-online a::before, .map .map__inner .link-online a::after {
  position: absolute;
  content: "";
  bottom: 50%;
  transform: translateY(50%);
  transition: all 0.3s;
}
.map .map__inner .link-online a::before {
  left: calc(50% - 11.8em);
  width: 23px;
  height: 37px;
  background: url(../img/icon/icon-phone.png) no-repeat center/contain;
}
.map .map__inner .link-online a::after {
  right: calc(50% - 12em);
  width: 32px;
  height: 34px;
  background: url(../img/icon/icon-stethoscope.png) no-repeat center/contain;
}
@media (hover: hover) {
  .map .map__inner .link-online a:hover {
    background-color: #0D164A;
    color: #fff;
  }
  .map .map__inner .link-online a:hover::before {
    background: url(../img/icon/icon-phone-wh.png) no-repeat center/contain;
  }
  .map .map__inner .link-online a:hover::after {
    background: url(../img/icon/icon-stethoscope-wh.png) no-repeat center/contain;
  }
}

.map-click-modal {
  z-index: 999998;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
}
.map-click-modal .modal-layer {
  z-index: 999999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
}
.map-click-modal .modal-contaienr {
  z-index: 999999;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 3vw;
  background-color: #fff;
}
.map-click-modal .modal-contaienr .modal-close {
  position: absolute;
  content: "";
  top: -60px;
  right: -60px;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.map-click-modal .modal-contaienr .modal-close::before, .map-click-modal .modal-contaienr .modal-close::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 50%;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.map-click-modal .modal-contaienr .modal-close::before {
  transform: translate(50%, -50%) rotate(45deg);
}
.map-click-modal .modal-contaienr .modal-close::after {
  transform: translate(50%, -50%) rotate(-45deg);
}
.map-click-modal .modal-contaienr li {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  border-bottom: none;
}
.map-click-modal .modal-contaienr li h4 {
  width: 100%;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 700;
  color: #162680;
}
.map-click-modal .modal-contaienr li > div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.map-click-modal .modal-contaienr li > div div.left {
  width: calc(52% - 10px);
}
.map-click-modal .modal-contaienr li > div div.left p.clinic-tel {
  position: relative;
  margin-bottom: 8.5px;
  padding-left: 20px;
  font-size: 17px;
  font-weight: 700;
  color: #A27429;
}
.map-click-modal .modal-contaienr li > div div.left p.clinic-tel::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  background: url(../img/icon/icon-tel-2.png) no-repeat center/contain;
}
.map-click-modal .modal-contaienr li > div div.left .business-hour {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #162680;
}
.map-click-modal .modal-contaienr li > div div.left .business-hour p {
  display: flex;
}
.map-click-modal .modal-contaienr li > div div.left .business-hour p span:nth-child(1) {
  width: 60px;
}
.map-click-modal .modal-contaienr li > div div.left .business-hour p span:nth-child(2) {
  width: calc(100% - 50px);
}
.map-click-modal .modal-contaienr li > div div.left .business-hour p .tp {
  visibility: hidden;
}
.map-click-modal .modal-contaienr li > div div.left .business-hour p.wide span:nth-child(1) {
  width: 88px;
}
.map-click-modal .modal-contaienr li > div div.left .business-hour p.wide span:nth-child(2) {
  width: calc(100% - 88px);
}
.map-click-modal .modal-contaienr li > div div.left .clinic-address {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 400;
}
.map-click-modal .modal-contaienr li > div div.left .clinic-access {
  font-size: 12px;
  font-weight: 400;
}
.map-click-modal .modal-contaienr li > div div.right {
  width: calc(48% - 10px);
}
.map-click-modal .modal-contaienr li > div div.right iframe {
  width: 100%;
  height: 137px;
  margin-bottom: 15px;
}
.map-click-modal .modal-contaienr li > div div.right .visit-btn {
  z-index: 0;
  position: relative;
}
.map-click-modal .modal-contaienr li > div div.right .visit-btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(#F7B029, #F79029, #F78029);
  border-radius: 5px;
}
.map-click-modal .modal-contaienr li > div div.right .visit-btn a img {
  width: 16px;
  height: auto;
  margin-right: 10px;
}
.map-click-modal .modal-contaienr li > div div.right .visit-btn a::after {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #B9560E;
  border-radius: 5px;
}

@media (max-width: 980px) {
  .map .map__inner .map__contents .clinic-bubble > div h4 {
    padding: 0.4rem 1rem;
    font-size: 14px;
  }
  .map .map__inner .map__contents .clinic-bubble > div .clinic-list {
    column-gap: 10px;
    row-gap: 10px;
    padding: 7px 10px;
  }
  .map .map__inner .map__contents .clinic-bubble > div .pref h5 {
    margin-bottom: 5px;
    font-size: 12px;
  }
  .map .map__inner .map__contents .clinic-bubble > div .pref ul {
    gap: 5px;
  }
  .map .map__inner .map__contents .clinic-bubble > div .pref ul li {
    height: 22px;
  }
  .map .map__inner .map__contents .clinic-bubble > div .pref ul li a {
    padding: 2px 10px;
    font-size: 10px;
  }
  .map .map__inner .map__contents .clinic-bubble > div .pref ul li a span {
    font-size: 9px;
  }
  .map .map__inner .map__contents .clinic-bubble .tokyo {
    top: 130px;
  }
  .map .map__inner .map__contents .clinic-bubble .tokyo::before {
    top: 105px;
    width: 80px;
    height: 20px;
  }
  .map .map__inner .map__contents .clinic-bubble .kanto {
    right: 0;
    bottom: 0;
    width: 402px;
  }
  .map .map__inner .map__contents .clinic-bubble .kanto::before {
    left: 20%;
    width: 20px;
    height: 40px;
  }
  .map .map__inner .map__contents .clinic-bubble .kanto .clinic-list {
    column-gap: 8px;
  }
  .map .map__inner .map__contents .clinic-bubble .kanto .clinic-list .pref:nth-child(4) {
    width: 100%;
    margin-top: -20px;
  }
}
@media (max-width: 880px) {
  .map .map__inner .map__contents .clinic-bubble > div {
    width: 182px;
  }
  .map .map__inner .map__contents .clinic-bubble > div h4 {
    padding: 0.4rem 1rem;
    font-size: 12px;
  }
  .map .map__inner .map__contents .clinic-bubble > div .clinic-list {
    column-gap: 10px;
    row-gap: 5px;
    padding: 7px 10px;
  }
  .map .map__inner .map__contents .clinic-bubble > div .pref {
    width: 78px;
  }
  .map .map__inner .map__contents .clinic-bubble > div .pref h5 {
    margin-bottom: 5px;
    font-size: 10px;
  }
  .map .map__inner .map__contents .clinic-bubble > div .pref ul {
    gap: 5px;
  }
  .map .map__inner .map__contents .clinic-bubble > div .pref ul li {
    min-width: 78px;
    height: 22px;
  }
  .map .map__inner .map__contents .clinic-bubble > div .pref ul li a {
    padding: 2px 10px;
    font-size: 10px;
  }
  .map .map__inner .map__contents .clinic-bubble > div .pref ul li a span {
    font-size: 9px;
  }
  .map .map__inner .map__contents .clinic-bubble .tokyo {
    top: 120px;
  }
  .map .map__inner .map__contents .clinic-bubble .tokyo::before {
    top: 100px;
    width: 46px;
    height: 20px;
  }
  .map .map__inner .map__contents .clinic-bubble .tokyo .clinic-list .pref {
    width: 100%;
  }
  .map .map__inner .map__contents .clinic-bubble .kanto {
    right: 0;
    bottom: 2%;
    width: 384px;
  }
  .map .map__inner .map__contents .clinic-bubble .kanto::before {
    left: 20%;
    width: 20px;
    height: 40px;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
  }
  .map .map__inner .map__contents .clinic-bubble .kanto .clinic-list {
    column-gap: 5px;
  }
  .map .map__inner .map__contents .clinic-bubble .kanto .clinic-list .pref:nth-child(3),
  .map .map__inner .map__contents .clinic-bubble .kanto .clinic-list .pref:nth-child(5),
  .map .map__inner .map__contents .clinic-bubble .kanto .clinic-list .pref:nth-child(6) {
    width: fit-content;
  }
  .map .map__inner .map__contents .clinic-bubble .kanto .clinic-list .pref:nth-child(4) {
    width: 100%;
    margin-top: -20px;
  }
  .map .map__inner .map__contents .clinic-bubble .hokkaido {
    right: 0;
    top: 0;
  }
  .map .map__inner .map__contents .clinic-bubble .hokkaido::before {
    top: 46px;
    width: 20px;
    height: 22px;
    clip-path: polygon(0 100%, 100% 0, 100% 60%);
  }
  .map .map__inner .map__contents .clinic-bubble .chubu {
    left: 28%;
    top: 0;
  }
  .map .map__inner .map__contents .clinic-bubble .chubu::before {
    bottom: 0;
    right: 10px;
    width: 40px;
    height: 40px;
    clip-path: polygon(0 0, 60% 0, 100% 100%);
  }
  .map .map__inner .map__contents .clinic-bubble .kinki {
    left: 28.5%;
    bottom: 30px;
  }
  .map .map__inner .map__contents .clinic-bubble .kinki::before {
    top: 0;
    left: 80px;
    width: 30px;
    height: 36px;
  }
  .map .map__inner .map__contents .clinic-bubble .shikoku {
    left: 3%;
    bottom: 0;
  }
  .map .map__inner .map__contents .clinic-bubble .shikoku::before {
    top: 0;
    right: 0px;
    width: 30px;
    height: 30px;
  }
  .map .map__inner .map__contents .clinic-bubble .kyushu {
    left: 0;
    top: 70px;
  }
  .map .map__inner .map__contents .clinic-bubble .kyushu::before {
    bottom: 0;
    left: 90px;
    width: 36px;
    height: 30px;
  }
}
@media (max-width: 830px) {
  .map .map__inner .map__contents .clinic-bubble > div {
    width: 164px;
  }
  .map .map__inner .map__contents .clinic-bubble > div h4 {
    padding: 0.4rem 1rem;
    font-size: 12px;
  }
  .map .map__inner .map__contents .clinic-bubble > div .clinic-list {
    column-gap: 10px;
    row-gap: 5px;
    padding: 7px 5px;
  }
  .map .map__inner .map__contents .clinic-bubble > div .pref {
    width: 74px;
  }
  .map .map__inner .map__contents .clinic-bubble > div .pref h5 {
    margin-bottom: 5px;
    font-size: 10px;
  }
  .map .map__inner .map__contents .clinic-bubble > div .pref ul {
    gap: 5px;
  }
  .map .map__inner .map__contents .clinic-bubble > div .pref ul li {
    min-width: 74px;
    height: 22px;
  }
  .map .map__inner .map__contents .clinic-bubble > div .pref ul li a {
    padding: 2px 5px;
    font-size: 10px;
  }
  .map .map__inner .map__contents .clinic-bubble > div .pref ul li a span {
    font-size: 9px;
  }
  .map .map__inner .map__contents .clinic-bubble .tokyo {
    top: 100px;
  }
  .map .map__inner .map__contents .clinic-bubble .tokyo::before {
    top: 100px;
    width: 60px;
    height: 20px;
  }
  .map .map__inner .map__contents .clinic-bubble .tokyo .clinic-list .pref {
    width: 100%;
  }
  .map .map__inner .map__contents .clinic-bubble .kanto {
    right: 0;
    bottom: 0;
    width: 384px;
  }
  .map .map__inner .map__contents .clinic-bubble .kanto::before {
    left: 20%;
    width: 20px;
    height: 40px;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
  }
  .map .map__inner .map__contents .clinic-bubble .kanto .clinic-list {
    column-gap: 5px;
  }
  .map .map__inner .map__contents .clinic-bubble .kanto .clinic-list .pref:nth-child(3),
  .map .map__inner .map__contents .clinic-bubble .kanto .clinic-list .pref:nth-child(5),
  .map .map__inner .map__contents .clinic-bubble .kanto .clinic-list .pref:nth-child(6) {
    width: fit-content;
  }
  .map .map__inner .map__contents .clinic-bubble .kanto .clinic-list .pref:nth-child(4) {
    width: 100%;
    margin-top: -20px;
  }
  .map .map__inner .map__contents .clinic-bubble .hokkaido {
    right: 0;
    top: 0;
  }
  .map .map__inner .map__contents .clinic-bubble .hokkaido::before {
    top: 46px;
    width: 20px;
    height: 22px;
    clip-path: polygon(0 100%, 100% 0, 100% 60%);
  }
  .map .map__inner .map__contents .clinic-bubble .chubu {
    left: 28%;
    top: 0;
  }
  .map .map__inner .map__contents .clinic-bubble .chubu::before {
    bottom: 0;
    right: 10px;
    width: 40px;
    height: 30px;
    clip-path: polygon(0 0, 60% 0, 100% 100%);
  }
  .map .map__inner .map__contents .clinic-bubble .kinki {
    left: 25%;
    bottom: 20px;
  }
  .map .map__inner .map__contents .clinic-bubble .kinki::before {
    top: 0;
    left: 90px;
    width: 40px;
    height: 36px;
  }
  .map .map__inner .map__contents .clinic-bubble .shikoku {
    left: 0;
    bottom: 0;
  }
  .map .map__inner .map__contents .clinic-bubble .shikoku::before {
    top: 0;
    right: -30px;
    width: 50px;
    height: 30px;
    clip-path: polygon(0 100%, 40% 100%, 100% 0);
  }
  .map .map__inner .map__contents .clinic-bubble .kyushu {
    left: 0;
    top: 40px;
  }
  .map .map__inner .map__contents .clinic-bubble .kyushu::before {
    bottom: 0;
    left: 90px;
    width: 36px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .map .map__inner {
    padding: 50px 10px 50px;
  }
  .map .map__inner h2 {
    margin-bottom: 56px;
  }
  .map .map__inner .map__contents {
    position: relative;
    margin-bottom: 60px;
  }
  .map .map__inner .map__contents .sp-map-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .map .map__inner .map__contents .sp-map-label img {
    position: absolute;
    width: 29.4117647059%;
    cursor: pointer;
  }
  .map .map__inner .map__contents .sp-map-label img:nth-child(1) {
    top: 0;
    right: 8vw;
  }
  .map .map__inner .map__contents .sp-map-label img:nth-child(2) {
    top: 42.2vw;
    right: 0;
    width: 32.2128851541%;
  }
  .map .map__inner .map__contents .sp-map-label img:nth-child(3) {
    top: 51vw;
    right: 0;
    width: 32.2128851541%;
  }
  .map .map__inner .map__contents .sp-map-label img:nth-child(4) {
    top: 12.5vw;
    right: 35vw;
  }
  .map .map__inner .map__contents .sp-map-label img:nth-child(5) {
    top: 21.5vw;
    left: 19.6vw;
  }
  .map .map__inner .map__contents .sp-map-label img:nth-child(6) {
    top: 49vw;
    left: 31vw;
  }
  .map .map__inner .map__contents .sp-map-label img:nth-child(7) {
    top: 49vw;
    left: 0;
  }
  .map .map__inner .map__contents .clinic-bubble {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 450px;
    margin: 30px auto 0;
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area {
    position: relative;
    width: 100%;
    inset: unset;
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area::before {
    content: none;
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area:not(:last-child) {
    margin-bottom: 11px;
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area.is-open h4::after {
    transform: translateY(-50%) rotate(0);
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area h4 {
    position: relative;
    padding: 0.6rem 1rem;
    font-size: 14px;
    cursor: pointer;
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area h4::before, .map .map__inner .map__contents .clinic-bubble > div.map-area h4::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 11px;
    height: 2px;
    background-color: #fff;
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area h4::after {
    transform: translateY(-50%) rotate(90deg);
    transition: all 0.3s;
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area .clinic-list {
    column-gap: 10px !important;
    row-gap: 10px !important;
    padding: 10px;
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area .pref {
    width: 90px;
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area .pref h5 {
    position: relative;
    margin-bottom: 5px;
    font-size: 12px;
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area .pref ul {
    gap: 5px;
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area .pref ul li {
    min-width: 90px;
    height: 30px;
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area .pref ul li a {
    padding: 2px 5px;
    font-size: 12px;
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area .pref ul li a span {
    font-size: 9px;
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area.kanto .clinic-list {
    column-gap: 10px;
    row-gap: 5px;
    padding: 10px;
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area.kanto .pref {
    width: 80px;
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area.kanto .pref:nth-of-type(2) {
    width: 70%;
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area.kanto .pref:nth-of-type(3) {
    order: 9;
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area.kanto .pref:nth-of-type(3) ul li a {
    padding: 2px 10px;
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area.kanto .pref:nth-of-type(4), .map .map__inner .map__contents .clinic-bubble > div.map-area.kanto .pref:nth-of-type(5), .map .map__inner .map__contents .clinic-bubble > div.map-area.kanto .pref:nth-of-type(6) {
    width: 80px !important;
    margin-top: 0 !important;
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area.kanto .pref:nth-of-type(4) ul, .map .map__inner .map__contents .clinic-bubble > div.map-area.kanto .pref:nth-of-type(5) ul, .map .map__inner .map__contents .clinic-bubble > div.map-area.kanto .pref:nth-of-type(6) ul {
    gap: 5px;
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area.kanto .pref h5 {
    margin-bottom: 5px;
    font-size: 12px;
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area.kanto .pref ul {
    gap: 5px;
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area.kanto .pref ul li {
    min-width: 80px !important;
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area.hokkaido {
    order: -1;
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area.chubu .pref:nth-of-type(3) {
    order: -1;
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area.shikoku .pref:nth-of-type(5) {
    width: fit-content;
  }
  .map .map__inner .map__contents .clinic-bubble > div.map-area.kyushu .pref:nth-of-type(2) {
    width: fit-content;
    order: -1;
  }
  .map .map__inner .link-online a {
    width: 100%;
    max-width: 400px;
    min-width: auto;
    height: 83px;
    padding: 5px 50px;
    font-size: 18px;
  }
  .map .map__inner .link-online a::before {
    left: 1em;
    width: 16px;
    height: 25px;
  }
  .map .map__inner .link-online a::after {
    right: 1em;
    width: 22px;
    height: 23px;
  }
  .map-click-modal .modal-contaienr .modal-close {
    top: -50px;
    right: -10px;
    width: 40px;
    height: 40px;
  }
  .map-click-modal .modal-contaienr .modal-content {
    overflow-y: auto;
    height: fit-content;
    max-height: 70svh;
  }
  .map-click-modal .modal-contaienr li {
    width: 300px;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .map-click-modal .modal-contaienr li h4 {
    margin-bottom: 8px;
    font-size: 18px;
  }
  .map-click-modal .modal-contaienr li > div {
    flex-direction: column;
    flex-wrap: nowrap;
    height: calc(100% - 60px);
  }
  .map-click-modal .modal-contaienr li > div div.left {
    width: 100%;
    margin-bottom: 10px;
  }
  .map-click-modal .modal-contaienr li > div div.left .business-hour {
    font-size: 12px;
  }
  .map-click-modal .modal-contaienr li > div div.left .business-hour p {
    display: flex;
  }
  .map-click-modal .modal-contaienr li > div div.left .business-hour p span:nth-child(1) {
    width: 60px;
  }
  .map-click-modal .modal-contaienr li > div div.left .business-hour p span:nth-child(2) {
    width: calc(100% - 60px);
  }
  .map-click-modal .modal-contaienr li > div div.right {
    width: 100%;
    margin-top: auto;
    padding-bottom: 16px;
  }
  .map-click-modal .modal-contaienr li > div div.right iframe {
    height: 150px;
    margin-bottom: 10px;
  }
  .map-click-modal .modal-contaienr li > div div.right .visit-btn a {
    max-width: 250px;
    height: 48px;
    margin: 0 auto;
    font-size: 16px;
  }
  .map-click-modal .modal-contaienr li > div div.right .visit-btn a img {
    width: 18px;
  }
}
/* アンケート
--------------------------------- */
.questionnaire {
  z-index: 0;
  position: relative;
  background-color: #F5F5F5;
  padding: 70px 15px 60px;
}
.questionnaire .questionnaire__inner {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 36px 20px 53px;
  background-color: #fff;
  border: 2px solid #162680;
}
.questionnaire .questionnaire__inner::before {
  position: absolute;
  content: "";
  top: -8px;
  left: -8px;
  width: 100%;
  height: 100%;
  border: 2px solid #162680;
  z-index: -1;
}
.questionnaire .questionnaire__inner .left {
  z-index: 0;
  position: relative;
  width: 50%;
}
.questionnaire .questionnaire__inner .left p {
  color: #162680;
  font-weight: 700;
}
.questionnaire .questionnaire__inner .left p:nth-of-type(1) {
  margin-bottom: 5px;
  font-size: 24px;
}
.questionnaire .questionnaire__inner .left > div {
  margin-bottom: 0px;
  font-size: 24px;
  font-weight: 700;
  color: #162680;
}
.questionnaire .questionnaire__inner .left > div > div {
  position: relative;
  display: inline-block;
  font-size: 29px;
  font-weight: 700;
  color: #162680;
}
.questionnaire .questionnaire__inner .left > div > div::after {
  z-index: -1;
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  bottom: 8px;
  height: 20px;
  background: linear-gradient(to right, #FCE047, #FCE047);
  width: calc(100% + 1px + 1px);
}
.questionnaire .questionnaire__inner .left > div > div span:nth-of-type(1) {
  font-size: 70px;
}
.questionnaire .questionnaire__inner .left > div > div span:nth-of-type(2) {
  font-size: 45px;
}
.questionnaire .questionnaire__inner .left > div > div span:nth-of-type(3) {
  font-size: 36px;
}
.questionnaire .questionnaire__inner .left > div > div span:nth-of-type(4) {
  font-size: 53px;
}
.questionnaire .questionnaire__inner .left p:nth-of-type(2) {
  margin-bottom: 0;
  font-size: 34px;
}
.questionnaire .questionnaire__inner .left p:nth-of-type(3) {
  font-size: 24px;
}
.questionnaire .questionnaire__inner .left small {
  display: block;
  margin-top: 36px;
  font-size: 12px;
}
.questionnaire .questionnaire__inner .right {
  width: 46%;
}

@media (max-width: 950px) {
  .questionnaire .questionnaire__inner .left {
    width: 54%;
  }
  .questionnaire .questionnaire__inner .left p:nth-of-type(1) {
    margin-bottom: 5px;
    font-size: 18px;
  }
  .questionnaire .questionnaire__inner .left > div {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .questionnaire .questionnaire__inner .left > div > div {
    font-size: 24px;
  }
  .questionnaire .questionnaire__inner .left > div > div span:nth-of-type(1) {
    font-size: 64px;
  }
  .questionnaire .questionnaire__inner .left > div > div span:nth-of-type(2) {
    font-size: 40px;
  }
  .questionnaire .questionnaire__inner .left > div > div span:nth-of-type(3) {
    font-size: 32px;
  }
  .questionnaire .questionnaire__inner .left > div > div span:nth-of-type(4) {
    font-size: 48px;
  }
  .questionnaire .questionnaire__inner .left p:nth-of-type(2) {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .questionnaire .questionnaire__inner .left p:nth-of-type(3) {
    font-size: 18px;
  }
  .questionnaire .questionnaire__inner .right {
    width: 44%;
  }
}
@media (max-width: 767px) {
  .questionnaire {
    padding: 50px 14px 50px;
  }
  .questionnaire .questionnaire__inner {
    flex-direction: column;
    padding: 27px 27px 27px 27px;
  }
  .questionnaire .questionnaire__inner::before {
    top: -6px;
    left: -6px;
  }
  .questionnaire .questionnaire__inner .left {
    width: 100%;
    max-width: 450px;
  }
  .questionnaire .questionnaire__inner .left p:nth-of-type(1) {
    margin-bottom: 0;
    font-size: 18px;
  }
  .questionnaire .questionnaire__inner .left > div {
    margin-bottom: 0;
  }
  .questionnaire .questionnaire__inner .left > div > div {
    font-size: 24px;
  }
  .questionnaire .questionnaire__inner .left > div > div::after {
    height: 12px;
  }
  .questionnaire .questionnaire__inner .left > div > div span:nth-of-type(1) {
    font-size: 50px;
  }
  .questionnaire .questionnaire__inner .left > div > div span:nth-of-type(2) {
    font-size: 33px;
  }
  .questionnaire .questionnaire__inner .left > div > div span:nth-of-type(3) {
    font-size: 25px;
  }
  .questionnaire .questionnaire__inner .left > div > div span:nth-of-type(4) {
    font-size: 38px;
  }
  .questionnaire .questionnaire__inner .left p:nth-of-type(2) {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .questionnaire .questionnaire__inner .left p:nth-of-type(3) {
    font-size: 18px;
  }
  .questionnaire .questionnaire__inner .right {
    width: 100%;
    max-width: 450px;
  }
  .questionnaire .questionnaire__inner .right img:nth-of-type(2) {
    width: 90%;
    margin: 40px auto 0;
  }
  .questionnaire .questionnaire__inner .right small {
    margin-top: 20px;
    font-size: 12px;
  }
}
/* 信頼の実績
--------------------------------- */
.achievement {
  z-index: 0;
  position: relative;
  background-color: #fff;
  padding: 70px 15px 60px;
}
.achievement .achievement__inner {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.achievement .achievement__inner h2 {
  margin-bottom: 50px;
}
.achievement .achievement__inner .achievement-content-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 50px;
  margin-bottom: 20px;
}
.achievement .achievement__inner .achievement-content-1 .left > div {
  padding: 40px 0;
  border-top: 1px solid #8A92BF;
  border-bottom: 1px solid #8A92BF;
  font-size: 38px;
  font-weight: 700;
}
.achievement .achievement__inner .achievement-content-1 .left > div p:nth-child(1) {
  text-align: center;
}
.achievement .achievement__inner .achievement-content-1 .left > div p:nth-child(1) span:nth-child(1) {
  font-size: 47px;
  color: #162680;
}
.achievement .achievement__inner .achievement-content-1 .left > div p:nth-child(1) span:nth-child(2) {
  color: #162680;
}
.achievement .achievement__inner .achievement-content-1 .left > div p:nth-child(2) {
  text-align: center;
}
.achievement .achievement__inner .achievement-content-1 .left > div p:nth-child(2) span:nth-child(1) {
  font-size: 20px;
  vertical-align: text-top;
}
.achievement .achievement__inner .achievement-content-1 .left > div p:nth-child(2) span:nth-child(2) {
  margin-left: 5px;
  font-size: 47px;
  color: #162680;
}
.achievement .achievement__inner .achievement-content-1 .left > div p:nth-child(2) span:nth-child(3) {
  color: #162680;
}
.achievement .achievement__inner .achievement-content-1 .left small {
  display: block;
  margin-top: 10px;
  font-size: 12px;
}
.achievement .achievement__inner .achievement-content-1 .right {
  width: 26%;
}
.achievement .achievement__inner .achievement-content-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: baseline;
}
.achievement .achievement__inner .achievement-content-2 img:nth-child(1) {
  width: 56%;
}
.achievement .achievement__inner .achievement-content-2 img:nth-child(2) {
  width: 44%;
}
.achievement .achievement__inner .achievement-content-2.graph2 {
  display: none;
}

@media (max-width: 767px) {
  .achievement {
    padding: 50px 10px 50px;
  }
  .achievement .achievement__inner .achievement-content-1 {
    column-gap: 30px;
  }
  .achievement .achievement__inner .achievement-content-1 .left {
    width: 60%;
  }
  .achievement .achievement__inner .achievement-content-1 .left > div {
    padding: 20px 0;
    font-size: 28px;
  }
  .achievement .achievement__inner .achievement-content-1 .left > div p:nth-child(1) span:nth-child(1) {
    font-size: 33px;
  }
  .achievement .achievement__inner .achievement-content-1 .left > div p:nth-child(2) span:nth-child(1) {
    font-size: 14px;
  }
  .achievement .achievement__inner .achievement-content-1 .left > div p:nth-child(2) span:nth-child(2) {
    margin-left: 5px;
    font-size: 33px;
  }
  .achievement .achievement__inner .achievement-content-1 .left small {
    display: block;
    margin-top: 10px;
    font-size: 12px;
  }
  .achievement .achievement__inner .achievement-content-1 .right {
    width: 30%;
  }
  .achievement .achievement__inner .achievement-content-2.graph1 {
    display: none;
  }
  .achievement .achievement__inner .achievement-content-2.graph2 {
    display: block;
    width: 100%;
    max-width: 550px;
    margin: 20px auto 0;
    text-align: center;
  }
  .achievement .achievement__inner .achievement-content-2.graph2 img {
    width: 100%;
  }
}
@media (max-width: 520px) {
  .achievement .achievement__inner .achievement-content-1 {
    position: relative;
    column-gap: 20px;
    margin-bottom: 44px;
  }
  .achievement .achievement__inner .achievement-content-1 .left {
    width: calc(70% - 20px);
  }
  .achievement .achievement__inner .achievement-content-1 .left > div {
    padding: 12px 0;
    font-size: 20px;
  }
  .achievement .achievement__inner .achievement-content-1 .left > div p {
    text-align: center;
  }
  .achievement .achievement__inner .achievement-content-1 .left > div p:nth-child(1) span:nth-child(1) {
    font-size: 27px;
  }
  .achievement .achievement__inner .achievement-content-1 .left > div p:nth-child(2) span:nth-child(1) {
    font-size: 14px;
  }
  .achievement .achievement__inner .achievement-content-1 .left > div p:nth-child(2) span:nth-child(2) {
    margin-left: 5px;
    font-size: 27px;
  }
  .achievement .achievement__inner .achievement-content-1 .left small {
    position: absolute;
    margin-top: 10px;
    font-size: 10px;
    letter-spacing: 0.03em;
  }
}
/* 10分で帰れる理由
--------------------------------- */
.reason {
  z-index: 0;
  position: relative;
  background-color: #162680;
  padding: 70px 15px 60px;
}
.reason .reason__inner {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.reason .reason__inner .reason__contents > div:nth-of-type(1) {
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: baseline;
  column-gap: 40px;
  margin-bottom: 24px;
  color: #fff;
}
.reason .reason__inner .reason__contents > div:nth-of-type(1) p:nth-of-type(1) {
  position: relative;
  bottom: 5px;
  padding: 4px 20px;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  border: 1px solid #fff;
}
.reason .reason__inner .reason__contents > div:nth-of-type(1) p:nth-of-type(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: baseline;
  font-size: 36px;
  font-weight: 700;
}
.reason .reason__inner .reason__contents > div:nth-of-type(1) p:nth-of-type(2) span {
  color: #FCE047;
}
.reason .reason__inner .reason__contents > div:nth-of-type(1) p:nth-of-type(2) span:nth-child(2) {
  position: relative;
  top: 5px;
  margin: 0 5px;
  font-size: 79px;
}
.reason .reason__inner .reason__contents > div:nth-of-type(1) p:nth-of-type(2) span:nth-child(3) {
  margin-right: 10px;
}
.reason .reason__inner .reason__contents > div:nth-of-type(1) p:nth-of-type(2) span:nth-child(4) {
  position: relative;
  margin: 0 10px;
  font-size: 49px;
}
.reason .reason__inner .reason__contents > div:nth-of-type(1) p:nth-of-type(2) span:nth-child(4)::before {
  position: absolute;
  content: "わけ";
  top: -8px;
  left: 3px;
  width: 100%;
  font-size: 15px;
  color: #FCE047;
  letter-spacing: 0.5em;
  text-align: center;
}
.reason .reason__inner .reason__contents .deco-yeloww-triangle {
  position: relative;
}
.reason .reason__inner .reason__contents .deco-yeloww-triangle::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: #FCE047;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.reason .reason__inner .reason__contents > div:nth-of-type(2) {
  display: flex;
  height: 216px;
  margin-bottom: 30px;
}
.reason .reason__inner .reason__contents > div:nth-of-type(2) img {
  width: 38.0612244898%;
}
.reason .reason__inner .reason__contents > div:nth-of-type(2) > div {
  width: 61.9387755102%;
  padding: 30px 40px;
  background-color: #fff;
}
.reason .reason__inner .reason__contents > div:nth-of-type(2) > div h4 {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 700;
  color: #162680;
  line-height: 1.5;
}
.reason .reason__inner .reason__contents > div:nth-of-type(2) > div p {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.reason .reason__inner .reason__contents > div:nth-of-type(2) > div small {
  font-size: 12px;
}
.reason .reason__inner .reason__contents > div:nth-of-type(3) {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}
.reason .reason__inner .reason__contents > div:nth-of-type(3) > div {
  height: 137px;
  padding: 26px 30px;
  background-color: #fff;
}
.reason .reason__inner .reason__contents > div:nth-of-type(3) > div h4 {
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 700;
  color: #162680;
}
.reason .reason__inner .reason__contents > div:nth-of-type(3) > div p {
  font-size: 16px;
  font-weight: 500;
}
.reason .reason__inner .reason__contents > div:nth-of-type(3) > div ul {
  display: flex;
  column-gap: 6px;
  margin-bottom: 5px;
}
.reason .reason__inner .reason__contents > div:nth-of-type(3) > div ul li {
  padding: 3px 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #162680;
  border: 1px solid #162680;
}
.reason .reason__inner .reason__contents > div:nth-of-type(3) > div:nth-child(1) {
  width: 51.0204081633%;
}
.reason .reason__inner .reason__contents > div:nth-of-type(3) > div:nth-child(2) {
  width: 44.8979591837%;
}
.reason .reason__inner .reason__contents > p {
  font-size: 24px;
  font-weight: 700;
  color: #FCE047;
  text-align: center;
}

@media (max-width: 920px) {
  .reason {
    padding: 50px 10px 50px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(1) {
    margin-bottom: 20px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(1) p:nth-of-type(1) {
    bottom: 0;
    padding: 4px 20px 5px;
    font-size: 20px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(1) p:nth-of-type(2) {
    font-size: 30px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(1) p:nth-of-type(2) span:nth-child(2) {
    top: 5px;
    margin: 0 5px;
    font-size: 70px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(1) p:nth-of-type(2) span:nth-child(3) {
    margin-right: 10px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(1) p:nth-of-type(2) span:nth-child(4) {
    margin: 0 10px;
    font-size: 40px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(1) p:nth-of-type(2) span:nth-child(4)::before {
    top: -8px;
    font-size: 15px;
    letter-spacing: 0.5em;
  }
  .reason .reason__inner .reason__contents .deco-yeloww-triangle::before {
    width: 30px;
    height: 30px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(2) {
    display: flex;
    height: 216px;
    margin-bottom: 30px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(2) img {
    width: 38.0612244898%;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(2) > div {
    width: 61.9387755102%;
    padding: 30px 40px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(2) > div h4 {
    margin-bottom: 10px;
    font-size: 26px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(2) > div p {
    margin-bottom: 10px;
    font-size: 15px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(2) > div small {
    font-size: 12px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(3) {
    margin-bottom: 32px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(3) > div {
    height: 137px;
    padding: 26px 30px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(3) > div h4 {
    margin-bottom: 5px;
    font-size: 20px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(3) > div p {
    font-size: 13.5px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(3) > div ul {
    column-gap: 10px;
    margin-bottom: 5px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(3) > div ul li {
    padding: 3px 10px;
    font-size: 13.5px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(3) > div:nth-child(1) {
    width: 51.0204081633%;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(3) > div:nth-child(2) {
    width: 45.9183673469%;
  }
  .reason .reason__inner .reason__contents > p {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .reason {
    padding: 50px 10px 50px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(1) {
    align-items: center;
    flex-direction: column;
    margin-bottom: 20px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(1) p:nth-of-type(1) {
    bottom: 0;
    padding: 4px 20px 5px;
    font-size: 20px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(1) p:nth-of-type(2) {
    font-size: 30px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(1) p:nth-of-type(2) span:nth-child(2) {
    top: 5px;
    margin: 0 5px;
    font-size: 60px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(1) p:nth-of-type(2) span:nth-child(3) {
    margin-right: 10px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(1) p:nth-of-type(2) span:nth-child(4) {
    margin: 0 10px;
    font-size: 36px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(1) p:nth-of-type(2) span:nth-child(4)::before {
    top: -8px;
    font-size: 14px;
    letter-spacing: 0.5em;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(2) {
    display: flex;
    height: fit-content;
    margin-bottom: 30px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(2) img {
    width: 38.0612244898%;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(2) > div {
    width: 61.9387755102%;
    padding: 30px 14px 30px 34px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(2) > div h4 {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(2) > div p {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(2) > div small {
    font-size: 12px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(3) {
    align-items: stretch;
    margin-bottom: 32px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(3) > div {
    height: auto;
    padding: 26px 12px 26px 30px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(3) > div h4 {
    margin-bottom: 5px;
    font-size: 20px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(3) > div p {
    font-size: 14px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(3) > div ul {
    column-gap: 6px;
    margin-bottom: 5px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(3) > div ul li {
    padding: 3px 5px;
    font-size: 13px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(3) > div:nth-child(1) {
    width: 50%;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(3) > div:nth-child(2) {
    width: 46.9387755102%;
  }
}
@media (max-width: 600px) {
  .reason {
    padding: 50px 10px 50px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(1) {
    align-items: center;
    flex-direction: column;
    margin-bottom: 20px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(1) p:nth-of-type(1) {
    bottom: 0;
    padding: 4px 20px 5px;
    font-size: 14px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(1) p:nth-of-type(2) {
    font-size: 25px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(1) p:nth-of-type(2) span:nth-child(2) {
    top: 3px;
    margin: 0 4px;
    font-size: 55px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(1) p:nth-of-type(2) span:nth-child(3) {
    margin-right: 5px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(1) p:nth-of-type(2) span:nth-child(4) {
    margin: 0 5px;
    font-size: 34px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(1) p:nth-of-type(2) span:nth-child(4)::before {
    font-size: 12px;
  }
  .reason .reason__inner .reason__contents .deco-yeloww-triangle::before {
    width: 40px;
    height: 40px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(2) {
    flex-direction: column;
    margin-bottom: 14px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(2) img {
    width: 100%;
    height: 50vw;
    min-height: 206px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(2) > div {
    width: 100%;
    padding: 30px 14px 30px 34px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(2) > div h4 {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(2) > div p {
    margin-bottom: 10px;
    font-size: 13px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(2) > div small {
    font-size: 12px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(3) {
    flex-direction: column;
    row-gap: 14px;
    margin-bottom: 24px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(3) > div {
    width: 100% !important;
    padding: 26px 12px 26px 30px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(3) > div h4 {
    margin-bottom: 5px;
    font-size: 18px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(3) > div p {
    font-size: 14px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(3) > div ul {
    column-gap: 6px;
    margin-bottom: 5px;
  }
  .reason .reason__inner .reason__contents > div:nth-of-type(3) > div ul li {
    padding: 3px 5px;
    font-size: 13px;
  }
  .reason .reason__inner .reason__contents > p {
    font-size: 18px;
  }
}
/* 診察の流れ
--------------------------------- */
.account {
  position: relative;
  background-color: #E9EEF4;
  padding: 70px 15px 70px;
}
.account .account__inner {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.account .account__inner .account-content-1 {
  position: relative;
  margin-bottom: 26px;
  padding: 0 40px 45px;
}
.account .account__inner .account-content-1::before, .account .account__inner .account-content-1::after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 10px;
}
.account .account__inner .account-content-1::before {
  top: 0;
  background: url(../img/common/parts-line.png) no-repeat center/100%;
}
.account .account__inner .account-content-1::after {
  bottom: 0;
  background: url(../img/common/parts-line.png) no-repeat center/100%;
}
.account .account__inner .account-content-1 h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 77px;
  font-weight: 500;
  color: #162680;
  text-align: center;
  line-height: 1;
}
.account .account__inner .account-content-1 h3 span:nth-child(1) {
  position: relative;
  top: 10px;
  display: inline-block;
  margin: 0 10px;
  font-size: 149px;
}
.account .account__inner .account-content-1 h3 span:nth-child(2) {
  font-size: 62px;
}
.account .account__inner .account-content-2 {
  margin-bottom: 24px;
}
.account .account__inner .account-content-2 h4 {
  margin-bottom: 40px;
  font-family: "Noto Serif JP", serif;
  font-size: 34px;
  font-weight: 500;
  text-align: center;
  color: #162680;
}
.account .account__inner .account-content-2 p {
  padding: 12px 10px;
  font-size: 20px;
  border-top: 1px solid #BCBCBC;
  text-align: center;
}
.account .account__inner .account-content-2 p:last-child {
  border-bottom: 1px solid #BCBCBC;
}
.account .account__inner .account-content-2 p span {
  font-size: 12px;
}
.account .account__inner small {
  display: block;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 940px) {
  .account .account__inner .account-content-1 {
    margin-bottom: 40px;
    padding: 5px 20px 45px;
  }
  .account .account__inner .account-content-1::before, .account .account__inner .account-content-1::after {
    width: 100%;
    height: 10px;
  }
  .account .account__inner .account-content-1 h3 {
    font-size: 64px;
  }
  .account .account__inner .account-content-1 h3 span:nth-child(1) {
    top: 7px;
    margin: 0 6px;
    font-size: 110px;
  }
  .account .account__inner .account-content-1 h3 span:nth-child(2) {
    font-size: 58px;
  }
  .account .account__inner .account-content-2 p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .account {
    padding: 30px 10px 50px;
  }
  .account .account__inner .account-content-1 {
    margin-bottom: 30px;
    padding: 5px 10px 45px;
  }
  .account .account__inner .account-content-1::before, .account .account__inner .account-content-1::after {
    height: 10px;
  }
  .account .account__inner .account-content-1 h3 {
    font-size: 50px;
  }
  .account .account__inner .account-content-1 h3 span:nth-child(1) {
    font-size: 90px;
  }
  .account .account__inner .account-content-1 h3 span:nth-child(2) {
    font-size: 46px;
  }
  .account .account__inner .account-content-2 {
    margin-bottom: 20px;
  }
  .account .account__inner .account-content-2 h4 {
    margin-bottom: 30px;
    font-size: 30px;
  }
  .account .account__inner .account-content-2 p {
    padding: 10px 8px;
    font-size: 18px;
  }
  .account .account__inner .account-content-2 p span {
    font-size: 12px;
  }
  .account .account__inner small {
    display: block;
    font-size: 12px;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .account .account__inner {
    padding-left: 4px;
    padding-right: 4px;
  }
  .account .account__inner .account-content-1 {
    margin-bottom: 20px;
    padding: 5px 10px 30px;
  }
  .account .account__inner .account-content-1::before, .account .account__inner .account-content-1::after {
    height: 10px;
  }
  .account .account__inner .account-content-1 h3 {
    font-size: 26px;
  }
  .account .account__inner .account-content-1 h3 span:nth-child(1) {
    font-size: 54px;
  }
  .account .account__inner .account-content-1 h3 span:nth-child(2) {
    font-size: 20px;
  }
  .account .account__inner .account-content-2 {
    margin-bottom: 16px;
  }
  .account .account__inner .account-content-2 h4 {
    margin-bottom: 24px;
    font-size: 18px;
  }
  .account .account__inner .account-content-2 p {
    padding: 10px 0;
    font-size: 13px;
  }
  .account .account__inner .account-content-2 p span {
    font-size: 10px;
  }
  .account .account__inner small {
    text-align: left;
  }
}
/* 選ばれる理由
--------------------------------- */
.reason-2 {
  z-index: 0;
  position: relative;
  background-color: #0D164A;
  padding: 70px 15px 77px;
}
.reason-2 .reason-2__inner {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.reason-2 .reason-2__inner h2 {
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
.reason-2 .reason-2__inner ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}
.reason-2 .reason-2__inner ul li {
  position: relative;
  width: 32%;
}
.reason-2 .reason-2__inner ul li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 28px;
  color: #0D164A;
  background-color: #E6C059;
  border-radius: 0 0 10px 0;
}
.reason-2 .reason-2__inner ul li img {
  height: 180px;
}
.reason-2 .reason-2__inner ul li > div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 90px;
  background-color: #fff;
}
.reason-2 .reason-2__inner ul li > div h4 {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 700;
  color: #162680;
}
.reason-2 .reason-2__inner ul li > div h4 br {
  display: none;
}
.reason-2 .reason-2__inner ul li > div p {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}
.reason-2 .reason-2__inner ul li > div small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
}

@media (max-width: 960px) {
  .reason-2 .reason-2__inner ul li img {
    height: 180px;
  }
  .reason-2 .reason-2__inner ul li > div {
    height: 110px;
    padding: 5px 10px;
  }
  .reason-2 .reason-2__inner ul li > div h4 {
    text-align: center;
  }
  .reason-2 .reason-2__inner ul li > div h4 br {
    display: block;
  }
}
@media (max-width: 767px) {
  .reason-2 {
    padding: 50px 10px 50px;
  }
  .reason-2 .reason-2__inner ul li > div small {
    font-size: 10px;
  }
}
@media (max-width: 650px) {
  .reason-2 .reason-2__inner {
    max-width: 450px;
  }
  .reason-2 .reason-2__inner h2 {
    margin-bottom: 20px;
    font-size: 24px;
  }
  .reason-2 .reason-2__inner ul {
    flex-direction: column;
    row-gap: 15px;
  }
  .reason-2 .reason-2__inner ul li {
    display: flex;
    width: 100%;
  }
  .reason-2 .reason-2__inner ul li span {
    font-size: 20px;
    line-height: 28px;
    border-radius: 0 0 8px 0;
  }
  .reason-2 .reason-2__inner ul li img {
    order: 2;
    width: 26vw;
    min-width: 120px;
    height: 100%;
    aspect-ratio: 1/1;
  }
  .reason-2 .reason-2__inner ul li:nth-child(even) span {
    left: unset;
    right: 0;
    border-radius: 0 0 0 8px;
  }
  .reason-2 .reason-2__inner ul li:nth-child(even) img {
    order: 0;
  }
  .reason-2 .reason-2__inner ul li > div {
    width: calc(100% - 120px);
    height: auto;
  }
  .reason-2 .reason-2__inner ul li > div h4 {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 700;
    color: #162680;
  }
  .reason-2 .reason-2__inner ul li > div p {
    font-size: 13px;
    font-weight: 700;
  }
  .reason-2 .reason-2__inner ul li > div small {
    display: block;
    margin-top: 6px;
    font-size: 10px;
  }
}
/* 支払い方法
--------------------------------- */
.payment {
  z-index: 0;
  position: relative;
  background-color: #fff;
  padding: 70px 15px 70px;
}
.payment .payment__inner {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.payment .payment__inner h2 {
  margin-bottom: 45px;
}
.payment .payment__inner ul {
  display: flex;
  justify-content: space-between;
}
.payment .payment__inner ul li {
  width: 32%;
}
.payment .payment__inner ul li h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background-color: #0D164A;
}
.payment .payment__inner ul li div {
  font-size: 56px;
  font-weight: 700;
  color: #0D164A;
  text-align: center;
}
.payment .payment__inner ul li p {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 700;
  color: #0D164A;
  text-align: center;
}
.payment .payment__inner ul li p br {
  display: none;
}
.payment .payment__inner ul li:nth-child(2) img {
  width: 90%;
}
.payment .payment__inner ul li:nth-child(3) > div {
  margin-top: 30px;
}
.payment .payment__inner ul li:nth-child(3) > div img {
  width: 30%;
}

@media (max-width: 960px) {
  .payment .payment__inner {
    max-width: 650px;
  }
  .payment .payment__inner ul {
    flex-direction: column;
    row-gap: 25px;
  }
  .payment .payment__inner ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 30px;
    width: 100%;
  }
  .payment .payment__inner ul li h4 {
    width: 100%;
    height: 48px;
    margin-bottom: 20px;
    font-size: 18px;
  }
  .payment .payment__inner ul li div {
    font-size: 56px;
  }
  .payment .payment__inner ul li p {
    margin-top: 0;
    font-size: 18px;
    text-align: left;
  }
  .payment .payment__inner ul li:nth-child(2) img {
    width: 90%;
  }
  .payment .payment__inner ul li:nth-child(3) > div {
    width: 40%;
    max-width: 240px;
  }
  .payment .payment__inner ul li:nth-child(3) > div img {
    width: 100%;
  }
  .payment .payment__inner ul li:nth-child(3) > p {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .payment {
    padding: 50px 10px 50px;
  }
  .payment .payment__inner ul li h4 {
    margin-bottom: 0px;
  }
  .payment .payment__inner ul li p {
    font-size: 18px;
  }
  .payment .payment__inner ul li p br {
    display: block;
  }
  .payment .payment__inner ul li:nth-child(2) > div img {
    width: 80%;
  }
  .payment .payment__inner ul li:nth-child(3) h4 {
    margin-bottom: 20px;
  }
  .payment .payment__inner ul li:nth-child(3) > div {
    width: 32%;
    max-width: 170px;
    margin: 0 10px 0 30px;
  }
}
/* 薬の信頼性
--------------------------------- */
.credibility {
  z-index: 0;
  position: relative;
  background-color: #fff;
  padding: 70px 15px 70px;
  background: url(../img/common/bg-1.jpg) no-repeat center/cover;
}
.credibility .credibility__inner {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.credibility .credibility__inner h2 {
  position: relative;
  width: fit-content;
  margin: 0 auto 30px;
  padding: 0 50px;
  font-family: "Noto Serif JP", serif;
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  line-height: 1.75;
}
.credibility .credibility__inner h2::before, .credibility .credibility__inner h2::after {
  position: absolute;
  content: "";
  width: 39px;
  height: 51px;
  background: url(../img/common/parts-kakko.png) no-repeat center/contain;
}
.credibility .credibility__inner h2::before {
  top: 0;
  left: 0;
}
.credibility .credibility__inner h2::after {
  right: 0;
  bottom: 0;
  transform: scale(-1, -1);
}
.credibility .credibility__inner p {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.6;
}
.credibility .credibility__inner p .fs-b {
  font-weight: 700;
}
.credibility .credibility__inner p .clr-red {
  font-weight: 700;
  color: #AC2222;
}

@media (max-width: 767px) {
  .credibility {
    padding: 50px 10px 50px;
    background: url(../img/common/bg-1-sp.jpg) no-repeat center/cover;
  }
  .credibility .credibility__inner {
    max-width: 650px;
  }
  .credibility .credibility__inner h2 {
    margin: 0 auto 40px;
    padding: 0 30px;
    font-size: 40px;
  }
  .credibility .credibility__inner p {
    margin-bottom: 10px;
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .credibility .credibility__inner {
    max-width: 500px;
  }
  .credibility .credibility__inner h2 {
    margin: 0 auto 20px;
    padding: 0 30px;
    font-size: 24px;
    line-height: 1.76;
  }
  .credibility .credibility__inner h2::before, .credibility .credibility__inner h2::after {
    width: 28px;
    height: 32px;
  }
  .credibility .credibility__inner p {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.7;
  }
}
/* 診察の流れ
--------------------------------- */
.web-reserve {
  z-index: 0;
  position: relative;
  background-color: #fff;
  padding: 70px 15px 70px;
}
.web-reserve .web-reserve__inner {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.web-reserve .web-reserve__inner h2 {
  margin-bottom: 45px;
}

/* クリニック一覧
--------------------------------- */
.clinic {
  z-index: 0;
  position: relative;
  background-color: #fff;
  padding: 70px 15px 70px;
}
.clinic .clinic__inner {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.clinic .clinic__inner h2 {
  margin-bottom: 45px;
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group {
  border: 1px solid #0D164A;
  border-radius: 10px;
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group:not(:last-child) {
  margin-bottom: 15px;
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group h3 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  background-color: #0D164A;
  border-radius: 8px;
  transition: all 0.3s;
  cursor: pointer;
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group h3::before, .clinic .clinic__inner .clinic-list-wrap .clinic-area-group h3::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s;
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group h3::after {
  transform: translateY(-50%) rotate(90deg);
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group h3.is-open::after {
  transform: translateY(-50%) rotate(0);
}
@media (hover: hover) {
  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group h3:hover {
    opacity: 0.8;
  }
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list {
  display: none;
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list.is-open {
  display: block;
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 25px 30px;
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li {
  position: relative;
  width: calc(50% - 30px);
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #B2B2B2;
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li.bb-n {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li:nth-child(odd)::before {
  position: absolute;
  content: "";
  top: 0;
  right: -30px;
  width: 1px;
  height: calc(100% - 30px);
  background-color: #B2B2B2;
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li h4 {
  width: 100%;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 700;
  color: #162680;
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div div.left {
  width: calc(52% - 10px);
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div div.left p.clinic-tel {
  position: relative;
  margin-bottom: 8.5px;
  padding-left: 20px;
  font-size: 17px;
  font-weight: 700;
  color: #A27429;
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div div.left p.clinic-tel::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  background: url(../img/icon/icon-tel-2.png) no-repeat center/contain;
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div div.left .business-hour {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #162680;
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div div.left .business-hour p {
  display: flex;
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div div.left .business-hour p span:nth-child(1) {
  width: 60px;
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div div.left .business-hour p span:nth-child(2) {
  width: calc(100% - 50px);
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div div.left .business-hour p .tp {
  visibility: hidden;
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div div.left .business-hour p.wide span:nth-child(1) {
  width: 88px;
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div div.left .business-hour p.wide span:nth-child(2) {
  width: calc(100% - 88px);
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div div.left .clinic-address {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 400;
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div div.left .clinic-access {
  font-size: 12px;
  font-weight: 400;
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div div.right {
  width: calc(48% - 10px);
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div div.right iframe {
  width: 100%;
  height: 137px;
  margin-bottom: 15px;
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div div.right .visit-btn {
  z-index: 0;
  position: relative;
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div div.right .visit-btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(#F7B029, #F79029, #F78029);
  border-radius: 5px;
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div div.right .visit-btn a img {
  width: 16px;
  height: auto;
  margin-right: 10px;
}
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div div.right .visit-btn a::after {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #B9560E;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .clinic {
    padding: 50px 10px 50px;
  }
  .clinic .clinic__inner h2 {
    margin-bottom: 45px;
  }
  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group:not(:last-child) {
    margin-bottom: 8px;
  }
  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group h3 {
    height: 63px;
    font-size: 18px;
  }
  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group h3::before, .clinic .clinic__inner .clinic-list-wrap .clinic-area-group h3::after {
    right: 20px;
    width: 14px;
    height: 2px;
  }
  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul {
    padding: 20px 16px;
  }
  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li {
    width: calc(50% - 10px);
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li.ht-86 > div {
    height: calc(100% - 86px);
  }
  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li:nth-child(odd)::before {
    right: -10.5px;
    height: calc(100% - 20px);
  }
  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li h4 {
    margin-bottom: 8px;
    font-size: 18px;
  }
  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div {
    flex-direction: column;
    flex-wrap: nowrap;
    height: calc(100% - 60px);
  }
  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div div.left {
    width: 100%;
    margin-bottom: 10px;
  }
  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div div.left .business-hour {
    font-size: 12px;
  }
  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div div.left .business-hour p {
    display: flex;
  }
  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div div.left .business-hour p span:nth-child(1) {
    width: 60px;
  }
  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div div.left .business-hour p span:nth-child(2) {
    width: calc(100% - 60px);
  }
  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div div.right {
    width: 100%;
    margin-top: auto;
  }
  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div div.right iframe {
    height: 150px;
    margin-bottom: 10px;
  }
  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div div.right .visit-btn a {
    max-width: 250px;
    height: 48px;
    margin: 0 auto;
    font-size: 16px;
  }
  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li > div div.right .visit-btn a img {
    width: 18px;
  }
}
/* 内観イメージ
--------------------------------- */
.interior {
  z-index: 0;
  position: relative;
  background-color: #fff;
  padding: 0 15px 110px;
}
.interior .interior__inner {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.interior .interior__inner h2 {
  margin-bottom: 45px;
}
.interior .interior__inner #image-slider {
  width: 96%;
  margin: 0 auto;
}
.interior .interior__inner #image-slider .splide__slide img {
  width: 100%;
}
.interior .interior__inner #image-slider .splide__arrows button {
  opacity: 1;
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
}
.interior .interior__inner #image-slider .splide__arrows button img {
  display: block;
  width: 100%;
  height: auto;
}
.interior .interior__inner #image-slider .splide__arrows button:hover {
  background-color: #555;
}
.interior .interior__inner #image-slider .splide__arrows button.splide__arrow--prev {
  left: 0;
  transform: translate(-50%, -50%) scale(-1, 1);
}
.interior .interior__inner #image-slider .splide__arrows button.splide__arrow--next {
  right: 0;
  transform: translate(50%, -50%);
}
.interior .interior__inner #image-slider .splide__pagination {
  bottom: -46px;
}
.interior .interior__inner #image-slider .splide__pagination li .splide__pagination__page {
  opacity: 1;
  width: 11px;
  height: 11px;
  background-color: #0D164A;
}
.interior .interior__inner #image-slider .splide__pagination li .splide__pagination__page.is-active {
  transform: none;
  background-color: #E6C059;
}

@media (max-width: 767px) {
  .interior {
    padding: 0 20px 110px;
  }
  .interior .interior__inner #image-slider {
    width: 94%;
  }
  .interior .interior__inner #image-slider .splide__arrows button {
    width: 40px;
    height: 40px;
  }
}
/* よくある質問
--------------------------------- */
.faq {
  z-index: 0;
  position: relative;
  background-color: #E8EEF9;
  padding: 70px 15px 70px;
}
.faq .faq__inner {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.faq .faq__inner h2 {
  margin-bottom: 45px;
}
.faq .faq__inner .faq-wrap .faq-blk {
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 8px;
}
.faq .faq__inner .faq-wrap .faq-blk:not(:last-child) {
  margin-bottom: 20px;
}
.faq .faq__inner .faq-wrap .faq-blk > div {
  display: flex;
  align-items: baseline;
}
.faq .faq__inner .faq-wrap .faq-blk > div span {
  margin-right: 20px;
  font-size: 34px;
  color: #162680;
}
.faq .faq__inner .faq-wrap .faq-blk .q {
  position: relative;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}
.faq .faq__inner .faq-wrap .faq-blk .q.is-open::after {
  transform: translateY(-50%) rotate(0);
}
.faq .faq__inner .faq-wrap .faq-blk .q::before, .faq .faq__inner .faq-wrap .faq-blk .q::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 24px;
  height: 3px;
  background-color: #162680;
  transition: all 0.3s;
}
.faq .faq__inner .faq-wrap .faq-blk .q::before {
  transform: translateY(-50%);
}
.faq .faq__inner .faq-wrap .faq-blk .q::after {
  transform: translateY(-50%) rotate(90deg);
  transition: all 0.3s;
}
@media (hover: hover) {
  .faq .faq__inner .faq-wrap .faq-blk .q:hover {
    opacity: 0.8;
  }
}
.faq .faq__inner .faq-wrap .faq-blk .q span {
  color: #162680;
}
.faq .faq__inner .faq-wrap .faq-blk .a {
  margin-top: 25px;
  padding-top: 5px;
  font-size: 16px;
  line-height: 1.7;
  border-top: 1px solid #B2B2B2;
}
.faq .faq__inner .faq-wrap .faq-blk .a span {
  position: relative;
  top: 10px;
  color: #E6C059;
}

@media (max-width: 767px) {
  .faq {
    padding: 50px 10px 50px;
  }
  .faq .faq__inner {
    max-width: 550px;
  }
  .faq .faq__inner .faq-wrap .faq-blk {
    padding: 16px 35px 16px 14px;
    background-color: #fff;
    border-radius: 8px;
  }
  .faq .faq__inner .faq-wrap .faq-blk:not(:last-child) {
    margin-bottom: 8px;
  }
  .faq .faq__inner .faq-wrap .faq-blk > div {
    align-items: center;
  }
  .faq .faq__inner .faq-wrap .faq-blk > div span {
    margin-right: 12px;
    font-size: 30px;
  }
  .faq .faq__inner .faq-wrap .faq-blk .q {
    font-size: 16px;
  }
  .faq .faq__inner .faq-wrap .faq-blk .q::before, .faq .faq__inner .faq-wrap .faq-blk .q::after {
    position: absolute;
    content: "";
    top: 50%;
    right: -5px;
    width: 18px;
    height: 2px;
  }
  .faq .faq__inner .faq-wrap .faq-blk .q::before {
    transform: translate(100%, -50%);
  }
  .faq .faq__inner .faq-wrap .faq-blk .q::after {
    transform: translate(100%, -50%) rotate(90deg);
  }
  .faq .faq__inner .faq-wrap .faq-blk .q.is-open::after {
    transform: translate(100%, -50%) rotate(0);
  }
  .faq .faq__inner .faq-wrap .faq-blk .a {
    margin-top: 20px;
    padding-top: 12px;
    font-size: 14px;
  }
  .faq .faq__inner .faq-wrap .faq-blk .a span {
    top: 0;
  }
}



/* 20241031修正  最終受付時間追記 */

.business-hour-note {
  font-size: 10px;
  color: #162680;
  margin-bottom: 15px;
  margin-top: -5px;
  font-feature-settings: "palt";
}