@charset "UTF-8";
:root {
  --main-bg-color: brown;
}

/* ----------------------------------------------------------------------------------
リセット　_reset.scss
---------------------------------------------------------------------------------- */
html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: inherit;
}

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

/* ----------------------------------------------------------------------------------
モジュール　_module.scss
---------------------------------------------------------------------------------- */
/* clearfix -------------------------------------- */
.cf::before,
.cf::after {
  content: "";
  display: block;
}

.cf::after {
  clear: both;
}

/* float -------------------------------------- */
.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

/* txt -------------------------------------- */
.txt_c {
  text-align: center;
}

.txt_l {
  text-align: left;
}

.txt_r {
  text-align: right;
}

.bold {
  font-weight: bold;
}

.clr_red {
  color: #df3c3c;
}

/* 囲い文字 -------------------------------------- */
*[class*=frame_] {
  padding: 1.4rem;
  margin-bottom: 2rem;
  border-radius: 10px;
}
@media screen and (min-width: 48em), print {
  *[class*=frame_] {
    padding: 6rem 6rem 6rem;
    margin: 3rem 0;
    border-radius: 20px;
  }
}
*[class*=frame_].frame_01 {
  background: #f8fcff;
}
*[class*=frame_].frame_02 {
  background: linear-gradient(to bottom, #5b9bd4, #a8d7ff);
  color: #fff !important;
}

/* img -------------------------------------- */
.img_c {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1rem auto;
}

.img_l,
.img_r {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 1rem auto;
}

@media screen and (min-width: 48em), print {
  .img_l {
    float: left;
    margin: 0 2rem 2rem 0;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 2rem;
  }
}
/* PC・SP　表示・非表示 -------------------------------------- */
.sp_n {
  display: none;
}

@media screen and (min-width: 48em), print {
  .sp_n {
    display: block;
  }
  .pc_n {
    display: none;
  }
}
/* マージン・パディング回り -------------------------------------- */
.mt40 {
  margin-top: 4rem;
}

.mt30 {
  margin-top: 3rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt10 {
  margin-top: 1rem;
}

section > section:first-of-type {
  margin-top: 2rem;
}

.main > section ~ section,
.flex2 > section ~ section {
  margin-top: 5rem;
}

.main > section section ~ section,
.flex2 > section section ~ section {
  margin-top: 4rem;
}

.main > section > section section ~ section,
.flex2 > section > section section ~ section {
  margin-top: 3rem;
}

.main > section > section > section section ~ section,
.flex2 > section > section > section section ~ section {
  margin-top: 2rem;
}

@media screen and (min-width: 48em), print {
  .mt40 {
    margin-top: 8rem;
  }
  .mt30 {
    margin-top: 6rem;
  }
  .mt20 {
    margin-top: 4rem;
  }
  .mt10 {
    margin-top: 2rem;
  }
  section > section:first-of-type {
    margin-top: 4rem;
  }
  .main > section ~ section,
  .flex2 > section ~ section {
    margin-top: 10rem;
  }
  .main > section section ~ section,
  .flex2 > section section ~ section {
    margin-top: 8rem;
  }
  .main > section > section section ~ section,
  .flex2 > section > section section ~ section {
    margin-top: 6rem;
  }
  .main > section > section > section section ~ section,
  .flex2 > section > section > section section ~ section {
    margin-top: 4rem;
  }
}
/* タイムテーブル -------------------------------------- */
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0.2rem;
  font-size: 1.4rem;
  table-layout: fixed;
}
.tbl_time caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
}
.tbl_time tr th {
  font-weight: normal;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  background: #5b9bd4;
  font-size: 1.2rem;
  color: #fff;
  font-weight: normal;
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
}
.tbl_time tr th[scope=col]:last-child {
  padding-right: 0.2rem;
}
.tbl_time tr th.time {
  background: #e2f1ff;
}
.tbl_time tr td {
  text-align: center;
  padding: 0.6rem 0.4rem;
  background: #fff;
  line-height: 1;
}
.tbl_time tr td:last-child {
  padding-right: 0.2rem;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    font-size: 1.6rem;
  }
  .tbl_time caption {
    font-size: 1.4rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 1.3rem 0;
    font-size: 1.6rem;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 30%;
  }
  .tbl_time tr th.time {
    padding: 1.3rem 0;
  }
  .tbl_time tr td {
    padding: 1rem 0;
  }
}
/* グーグルマップ -------------------------------------- */
.gmap {
  width: 100%;
}
.gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* タイトル回り -------------------------------------- */
.tit_01 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  padding: 1rem 1rem 2rem;
  margin: 0;
  min-height: 10rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.tit_02 {
  color: #0059b2;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  word-break: auto-phrase;
  margin: 0 0 1.6rem;
  padding: 0;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}
.tit_02 .eng_txt {
  font-size: 3.4rem;
  position: absolute;
  z-index: -1;
  right: 0;
  top: -3rem;
  color: rgba(255, 255, 255, 0.8);
}

.tit_03 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
  padding: 0.6rem 0.8rem;
  background: linear-gradient(to right, #5b9bd4, #a8d7ff);
  margin: 0 0 1rem;
}

.tit_04 {
  color: #5b9bd4;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  padding-left: 2.4rem;
  margin: 0 0 1.6rem;
  position: relative;
}
.tit_04::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, #0a67bb, #8fb8ff);
}

.tit_05 {
  color: #513401;
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 1rem;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    font-size: 4.2rem;
    padding: 12rem 1rem 0;
    margin: 0;
  }
  .tit_02 {
    font-size: 4rem;
    margin: 0 0 5.1rem;
  }
  .tit_02 .eng_txt {
    font-size: 11rem;
    line-height: 1;
    right: auto;
    left: 46%;
    top: -8.2rem;
  }
  .tit_03 {
    font-size: 3rem;
    margin: 0 0 3rem;
    padding: 2rem 2rem;
  }
  .tit_04 {
    font-size: 2.6rem;
    margin: 0 0 5rem;
    padding-left: 3.6rem;
  }
  .tit_04::before {
    width: 3rem;
    height: 3rem;
  }
  .tit_05 {
    font-size: 2rem;
    margin: 0 0 2rem;
  }
}
/* リスト回り -------------------------------------- */
.lst_ul01 li {
  padding-left: 2rem;
  padding-bottom: 1rem;
  line-height: 1.4;
  position: relative;
}
.lst_ul01 li:last-child {
  padding-bottom: 0;
}
.lst_ul01 li::before {
  content: "●";
  color: #1c52cf;
  position: absolute;
  left: 0;
  top: 0;
}
.lst_ul01 li.none::before {
  content: none;
}
.lst_ul01 li > .lst_ol01 {
  padding: 1rem 0 0 0;
}
.lst_ul01 li > .lst_ol01 li::before {
  color: #363636;
}
.lst_ul01 li > ol {
  margin: 2rem 0 2rem;
}
.lst_ul01 li > ol li::before {
  content: none;
}
@media screen and (min-width: 48em), print {
  .lst_ul01.flex {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .lst_ul01.flex li {
    width: 49%;
  }
}
@media screen and (min-width: 48em), print {
  .lst_ul01.inline {
    gap: 0 2rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.lst_ol01 {
  counter-reset: number;
  margin: 2rem 0 0;
}
.lst_ol01 li {
  counter-increment: number 1;
  padding-left: 2rem;
  padding-bottom: 1rem;
  line-height: 1.4;
  position: relative;
}
.lst_ol01 li:last-child {
  padding-bottom: 0;
}
@media screen and (min-width: 48em), print {
  .lst_ol01 li {
    padding-left: 2rem;
  }
}
.lst_ol01 li::before {
  display: inline-block;
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: 0;
}

.lst_dl01 div {
  margin: 0 0 1rem;
}
.lst_dl01 div dt {
  font-weight: bold;
  margin: 0;
  padding: 0;
}
.lst_dl01 div dd {
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 48em), print {
  .lst_dl01 div {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .lst_dl01 div dt {
    width: 20rem;
  }
  .lst_dl01 div dd {
    flex: 1;
  }
}
/* フレックス回り -------------------------------------- */
.flex3 {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex3 > li {
  width: 46%;
}

@media screen and (min-width: 48em), print {
  .flex2 {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex2 > section,
  .flex2 > li {
    width: 48%;
    margin: 0 !important;
  }
  .flex3 li {
    width: 31%;
  }
}
/* リンク -------------------------------------- */
*[class*=btn_] {
  display: block;
  text-align: center;
}
*[class*=btn_] a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  background: #1c52cf;
  color: #fff;
  text-align: center;
  padding: 0.6rem 4rem;
  border-radius: 25px;
  display: inline-block;
  text-decoration: none !important;
  position: relative;
}
*[class*=btn_] a::after {
  content: "\e80f";
  display: inline-block;
  font-size: 1rem;
  font-family: "fontello";
  margin-left: 0.6rem;
  position: relative;
  top: -0.1rem;
  transform: scale(0.8);
}
@media screen and (min-width: 48em), print {
  *[class*=btn_] {
    text-align: left;
  }
  *[class*=btn_] a {
    padding: 1rem 3rem;
  }
}
*[class*=btn_][class*="--right"] {
  text-align: right;
}
*[class*=btn_][class*="--center"] {
  text-align: center;
}

.txt_link {
  color: #1c52cf;
  text-decoration: none !important;
  border-bottom: 1px solid #1c52cf;
  transition: all 0.4s;
  display: inline-block;
}
.txt_link:hover {
  opacity: 0.8;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}

/* フローチャート -------------------------------------- */
.flow div {
  padding: 1.6rem;
  margin: 0 0 6rem;
  border-radius: 10px;
  border: 2px solid #d4d4d4;
  position: relative;
}
.flow div:last-child {
  margin: 0;
}
@media screen and (min-width: 48em), print {
  .flow div {
    border-radius: 20px;
    margin: 0 0 7rem;
    padding: 3rem 3rem 3rem;
  }
}
.flow div:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0;
  right: 0;
  border-top: 2rem solid #5b9bd4;
  border-right: 4rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 4rem solid transparent;
  margin: auto;
}
@media screen and (min-width: 48em), print {
  .flow div:not(:last-child)::after {
    border-right: 7rem solid transparent;
    border-left: 7rem solid transparent;
    border-top: 3rem solid #5b9bd4;
    bottom: -6rem;
  }
}
.flow div dt {
  font-weight: bold;
  font-size: 120%;
  padding: 0.6rem 2rem;
  margin: 0 0 1rem;
  border-radius: 10px;
  background: #5b9bd4;
  color: #fff;
}
@media screen and (min-width: 48em), print {
  .flow div dt {
    padding: 1rem 2rem;
    margin: 0 0 3rem;
  }
}
.flow div dd {
  margin: 0;
  padding: 0;
}

/* テーブル -------------------------------------- */
.tbl_low {
  margin: 1rem 0;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.tbl_low thead tr th {
  background: #d2e7f9;
  border: 1px solid #cccccc;
  text-align: center;
  font-weight: bold;
  padding: 0.8rem 1rem;
}
.tbl_low thead tr th:first-child {
  width: 30%;
}
@media screen and (min-width: 48em), print {
  .tbl_low thead tr th {
    padding: 2rem 2rem;
  }
}
.tbl_low tbody tr th {
  width: 30%;
  padding: 0.8rem;
  background: #eef7ff;
  text-align: center;
  font-weight: bold;
  border: 1px solid #ccc;
}
@media screen and (min-width: 48em), print {
  .tbl_low tbody tr th {
    padding: 2rem 2rem;
  }
}
.tbl_low tbody tr td {
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  background: #fff;
}
@media screen and (min-width: 48em), print {
  .tbl_low tbody tr td {
    padding: 2rem 2rem;
  }
}

.tbl_access {
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.tbl_access tr th {
  width: 37%;
  background: #eef7ff;
  text-align: center;
  font-weight: normal;
  padding: 0.8rem;
  border: 1px solid #ccc;
}
.tbl_access tr td {
  padding: 0.8rem;
  border: 1px solid #ccc;
}

@media screen and (min-width: 48em), print {
  .tbl_access tr th {
    width: 30%;
    padding: 2rem 0;
  }
  .tbl_access tr td {
    padding: 2rem;
  }
}
/* ----------------------------------------------------------------------------------
共通　_common.scss
---------------------------------------------------------------------------------- */
.overflow {
  overflow-x: hidden;
  position: relative;
}

html {
  font-size: 3.125vw;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (min-width: 48em), print {
  html {
    scroll-padding-top: 30px;
  }
}

body {
  background: #fff;
  color: #363636;
}
body.menu-open {
  height: 100%;
  overflow: hidden;
}
@media screen and (min-width: 48em), print {
  body.menu-open {
    overflow: auto;
  }
}

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

.wrap {
  padding: 0 1rem 0;
}

.main {
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 0 0 0;
}
.main a:not([href*=tel]) {
  text-decoration: underline;
}
.main a[class*=btn_] {
  text-decoration: none;
}

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
    height: 100%;
  }
  body {
    min-width: 1220px;
  }
  body > .wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 10rem auto 0;
  }
  a {
    transition: 0.2s;
  }
  a:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
  .main {
    font-size: 1.6rem;
    padding: 0 0 0;
    width: 100%;
  }
}
/* アイコンフォント -------------------------------------- */
@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.eot");
  src: url("fontello/font/fontello.eot#iefix") format("embedded-opentype"), url("fontello/font/fontello.woff2") format("woff2"), url("fontello/font/fontello.woff") format("woff"), url("fontello/font/fontello.ttf") format("truetype"), url("fontello/font/fontello.svg#fontello") format("svg");
}
/* ヘッダー -------------------------------------- */
.header {
  position: relative;
  z-index: 11;
  height: 26rem;
}
.header .wrap {
  margin: 0;
  padding: 2.2rem 1rem 1rem;
}
.header .wrap .logo {
  height: 3rem;
}
.header .wrap .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo_header.svg) no-repeat left center/contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.header .wrap .headR .tel {
  display: inline-block;
  font-size: 1.8rem;
}
.header .wrap .headR .tel a {
  display: inline-block;
}

@media screen and (min-width: 48em), print {
  .header {
    height: 100rem;
  }
  .header .wrap {
    width: 100%;
    margin: 0;
    padding: 5rem 0 0 5rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .header .wrap .logo {
    width: 40rem;
    height: 5.2rem;
  }
}
/* SP ドロップダウンメニュー -------------------------------------- */
#menu {
  z-index: 9999;
  width: 100%;
  height: 0;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
#menu .fixed_menu_btn {
  width: 6rem;
  height: 6rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0.4rem 0.4rem;
  position: fixed;
  top: 1.4rem;
  right: 1rem;
  z-index: 12;
}
#menu .fixed_menu_btn .hamburger {
  height: 100%;
}
#menu .fixed_menu_btn .hamburger a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding: 0.8rem 0rem;
  height: 100%;
  border: 1px solid #5b9bd4;
  text-decoration: none;
  background: #fff;
  color: #5b9bd4;
  font-size: 1.2rem;
  border-radius: 50%;
}
#menu .fixed_menu_btn .hamburger a::before {
  content: "\e802";
  font-family: "fontello";
  font-size: 2.6rem;
  line-height: 0.8;
}
#menu .fixed_menu_btn.active .hamburger a::before {
  content: "\e806";
}
#menu #nav {
  display: block;
  visibility: hidden;
  top: 0;
  right: -27rem;
  opacity: 0;
  width: 27rem;
  height: 100%;
  padding: 4rem 2rem 6rem;
  background-color: #eef7ff;
  overflow-y: scroll;
  transition: all 0.5s;
  position: fixed;
  left: auto !important;
  z-index: 10;
}
#menu #nav.open {
  visibility: visible;
  opacity: 1;
  right: 0;
}
#menu #nav ul {
  display: block;
  font-size: 1.4rem;
}
#menu #nav ul.subnav {
  margin: 2.8rem 0 0;
}
#menu #nav ul li {
  text-align: left;
  margin: 0;
}
#menu #nav ul li a {
  display: block;
  padding: 1rem 1.2rem 1rem;
  text-decoration: none !important;
  transition: color 0.4s;
}
#menu #nav ul li a:hover {
  color: #5b9bd4;
  opacity: 1;
}
#menu .overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
#menu .overlay.open {
  width: 100%;
  height: 100vh;
  opacity: 1;
}

@media screen and (min-width: 48em), print {
  #menu .fixed_menu_btn {
    width: 8rem;
    height: 8rem;
    padding: 0;
    top: 1.5rem;
    right: 3rem;
  }
  #menu .fixed_menu_btn .hamburger a::before {
    font-size: 4rem;
  }
  #menu #nav {
    transform: translateX(100%);
    right: 0;
    height: 100%;
    width: 65rem;
    padding: 10rem 2rem 6rem 5rem;
    /* IE, Edge 対応 */
    -ms-overflow-style: none;
    /* Firefox 対応 */
    scrollbar-width: none;
  }
  #menu #nav::-webkit-scrollbar {
    display: none;
  }
  #menu #nav.open {
    transform: translateX(0);
  }
  #menu #nav ul {
    font-size: 2.4rem;
  }
  #menu #nav ul li a {
    padding: 0.9rem 0;
  }
  #menu .overlay {
    background-color: inherit;
  }
}
/* サイドバー -------------------------------------- */
/*
.sidebar {
  display: none;
}
@include pc {
  .sidebar {
    display: block;
    .tit {
      background: #6b4f3c;
      color: #f1ffdb;
      font-size: 2.4rem;
      text-align: center;
      padding: 1.8rem;
      border-radius: .8rem;
    }
    .subnav {
      margin: 0;
      padding: 1.0rem 0;
      li {
        a {
          display: block;
          padding: 1.2rem .6rem;
          color: #48341d;
          position: relative;
          font-size: 1.8rem;
          &::after {
            font-family: 'fontello';
            content: '\e807';
            position: absolute;
            right: .6rem;
            color: #d8c8bd;
          }
          &:hover {
            background: #ffedcd;
            color: #ec7218;
            &::after {
              color: #ec7218;
            }
          }
        }
        &:not(:last-child) {
          border-bottom: 1px solid #dedede;
        }
      }
    }
  }
}
*/
/* クリニック概要 -------------------------------------- */
.overview {
  margin: -9rem 0 0;
  position: relative;
  z-index: 3;
}
.overview .bg {
  padding: 6rem 1rem 4rem;
  font-size: 1.4rem;
  line-height: 1.6;
  position: relative;
}
.overview .bg::before {
  content: "";
  background: url(../img/overview_bg01.webp) no-repeat top center/150% 100%;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.overview .bg .clinic_name {
  text-align: center;
  margin: 0 0 2rem;
}
.overview .bg .clinic_name img {
  max-width: 80%;
  height: auto;
}
.overview .bg > .wrap .overviewL .tbl_gaiyo {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 1rem;
}
.overview .bg > .wrap .overviewL .tbl_gaiyo th {
  width: 27%;
  color: #1c52cf;
  background: #fff;
  border-radius: 5px 0 0 5px;
  font-size: 110%;
  text-align: left;
  padding: 0.4rem;
  font-weight: bold;
}
.overview .bg > .wrap .overviewL .tbl_gaiyo td {
  padding: 0.4rem 0.6rem 0.4rem 0.4rem;
  border-radius: 0 5px 5px 0;
  background: #fff;
}
.overview .bg > .wrap .overviewL .tbl_time {
  margin: 1.6rem 0;
}
.overview .bg > .wrap .overviewR {
  margin: 2rem 0 0;
}
.overview .bg > .wrap .overviewR .img_map img {
  display: block;
  border-radius: 20px;
  border: 4px solid #5b9bd4;
}
.overview .gmap {
  height: 30rem;
}

@media screen and (min-width: 48em), print {
  .overview .bg {
    margin: 0 0 0;
    padding: 12rem 0 12rem;
    font-size: 1.6rem;
  }
  .overview .bg::before {
    min-width: 2000px;
    width: 100vw;
    background: url(../img/overview_bg01.webp) no-repeat center/cover;
  }
  .overview .bg .clinic_name {
    margin: 0 0 2.7rem;
  }
  .overview .bg .clinic_name img {
    max-width: 60rem;
  }
  .overview .bg > .wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .overview .bg > .wrap .overviewL {
    width: 56rem;
    padding: 0 0;
  }
  .overview .bg > .wrap .overviewL .tbl_gaiyo th {
    padding: 1.3rem 2rem 1.3rem 2rem;
    font-size: 1.6rem;
    vertical-align: top;
  }
  .overview .bg > .wrap .overviewL .tbl_gaiyo td {
    padding: 1.3rem 2rem 1.3rem 0rem;
  }
  .overview .bg > .wrap .overviewL .tbl_time {
    margin: 3rem 0 0;
  }
  .overview .bg > .wrap .overviewR {
    width: 58rem;
    padding: 0 0;
    margin: 0;
  }
  .overview .gmap {
    height: 60rem;
  }
}
/* フッター -------------------------------------- */
#pageup {
  display: none;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 10;
  cursor: pointer;
}
#pageup a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  text-align: center;
  padding: 0.4rem;
  border-radius: 50%;
}
#pageup a::before {
  text-align: center;
  font-size: 5rem;
  font-family: "fontello";
  content: "\e815";
  line-height: 1;
  color: #5b9bd4;
  border-radius: 50%;
}
#pageup a::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 5rem;
  height: 5rem;
  background: #fff;
  border-radius: 50%;
}
#pageup a span {
  display: none;
}

@media screen and (min-width: 48em), print {
  #pageup {
    right: 1.5rem;
  }
  #pageup a {
    width: 7rem;
    height: 7rem;
  }
  #pageup a::before {
    padding: 1px 0 0;
    font-size: 7rem;
  }
  #pageup a::after {
    width: 7rem;
    height: 7rem;
  }
}
.footer_menu {
  width: 70%;
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 10;
  font-size: 1.4rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.footer_menu .tel {
  display: block;
  font-weight: bold;
  background: #2165a2;
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 1.2rem 0;
  border-radius: 5px;
  font-size: 1.8rem;
  line-height: 1;
}
.footer_menu .tel::before {
  content: "tel.";
  display: inline-block;
  font-size: 1.4rem;
}

@media screen and (min-width: 48em), print {
  .footer_menu {
    display: block;
    width: 23.2rem;
    bottom: 1.5rem;
    right: 12.5rem;
    left: auto;
    cursor: pointer;
    background: none;
    padding: 0;
  }
  .footer_menu .tel {
    cursor: text;
    font-size: 2.4rem;
    padding: 2rem 0 2.2rem;
  }
  .footer_menu .tel::before {
    font-size: 1.4rem;
  }
}
.footer {
  text-align: center;
  padding: 0 0 5.2rem;
}
.footer .breadcrumb_list {
  display: none;
}
.footer .footer_nav {
  display: none;
}
.footer .copy {
  display: block;
  padding: 1.6rem 1rem;
  font-size: 1.2rem;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 0 0 5rem;
  }
  .footer .footer_nav {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 5rem 0 5rem;
    gap: 1.5rem 0;
  }
  .footer .footer_nav ul {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .footer .footer_nav ul li {
    display: inline-block;
    font-size: 1.4rem;
  }
  .footer .footer_nav ul li:not(:last-child)::after {
    content: "|";
    margin: 0 1.6rem;
    font-weight: normal;
  }
  .footer .footer_nav ul li a {
    opacity: 1;
  }
  .footer .footer_nav ul li a span {
    display: none;
  }
  .footer .footer_nav ul li a:hover {
    text-decoration: underline;
  }
  .footer .footer_nav ul li.treatment {
    display: none;
  }
  .footer .footer_nav ul.footer_gnav {
    font-weight: bold;
    color: #1c52cf;
  }
  .footer .footer_nav ul.footer_gnav li:not(:last-child)::after {
    font-size: 2.2rem;
  }
  .footer .footer_nav ul.footer_gnav li a {
    font-size: 2rem;
  }
  .footer .copy {
    font-size: 1.4rem 0;
  }
}
/* ----------------------------------------------------------------------------------
トップ　_top.scss
---------------------------------------------------------------------------------- */
/* パララックス指定 */
.parallax {
  overflow: hidden;
}
.parallax::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease-out;
}

/* **画面内に入ったときの「固定」効果** */
.parallax-active::before {
  position: fixed; /* スクロールに追従しない */
  top: 0; /* 画面上部に固定 */
  left: 0;
  width: 100%;
  height: 100vh; /* 画面いっぱいに */
  background-size: cover;
  background-position: center;
}

/* **画面外に出たら元のCSSに戻る** */
.parallax:not(.parallax-active)::before {
  position: absolute; /* 通常の背景に戻る */
  top: 0;
  left: 0;
}

/* スクロールアニメーション */
.anime {
  opacity: 0;
  transform: translateY(1.6rem);
  transition: opacity 1.8s ease, transform 2s ease-out;
}
@media screen and (min-width: 48em), print {
  .anime {
    transform: translateY(4rem);
  }
}
.anime.anime-on {
  transform: translateY(0);
  opacity: 1;
}

ul.anime {
  opacity: 1;
  transform: translate(0);
}
ul.anime li {
  opacity: 0;
  transform: translateY(1.6rem);
  transition: all 0.6s, opacity 1.8s ease, transform 2s ease-out;
}
@media screen and (min-width: 48em), print {
  ul.anime li {
    transform: translateY(4rem);
  }
}
ul.anime li.anime-on {
  transform: translateY(0);
  opacity: 1;
}

/* キービジュアル -------------------------------------- */
.keyvsl_area {
  width: 100%;
  position: absolute;
  top: 0;
  height: 26rem;
}
.keyvsl_area #keyvsl {
  margin: 0 0 0;
  max-width: 100%;
  height: 100%;
}
.keyvsl_area #keyvsl .slick-list,
.keyvsl_area #keyvsl .slick-track {
  height: 26rem;
  padding: 0 !important;
}
.keyvsl_area #keyvsl .slide {
  height: 100%;
}
.keyvsl_area #keyvsl .slide img {
  object-fit: cover;
  height: 100%;
}
.keyvsl_area .kv_contents {
  padding: 0 1rem;
  position: absolute;
  bottom: 2rem;
}
.keyvsl_area .kv_contents li {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.35), 0 0 3px rgba(0, 0, 0, 0.35), 0 0 3px rgba(0, 0, 0, 0.35), 0 0 3px rgba(0, 0, 0, 0.35);
}

@media screen and (min-width: 48em), print {
  .keyvsl_area {
    height: 100rem;
  }
  .keyvsl_area #keyvsl .slick-list,
  .keyvsl_area #keyvsl .slick-track {
    height: 100rem;
  }
  .keyvsl_area .kv_contents {
    width: 1200px;
    padding: 0 1rem;
    bottom: 15rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .keyvsl_area .kv_contents li {
    font-size: 3.6rem;
    line-height: 1.6;
  }
}
/* お知らせ と 診療のご案内 をまたぐ背景-------------------------------------- */
.bg_fixed {
  position: relative;
}
.bg_fixed::before {
  background-image: url(../img/index_bgFixed_bg01.jpg);
}

/* お知らせ -------------------------------------- */
.info {
  padding: 4rem 0 4rem;
}
.info section .tit_02 .eng_txt {
  left: 50%;
}
.info section .bg {
  background: #fff;
  padding: 2rem 1rem 2rem;
}
.info section .bg .wrap {
  padding: 0;
}
.info section .bg .wrap dl {
  margin: 0 auto;
  line-height: 1.4;
  padding: 1rem 1.2rem 1rem;
  height: 30rem;
  overflow-y: scroll;
}
.info section .bg .wrap dl .info_line {
  padding: 0 0 0.8rem;
  margin: 0 0 0.8rem;
  border-bottom: 1px solid #d4d4d4;
}
.info section .bg .wrap dl .info_line:nth-of-type(n + 4) dd {
  display: none;
}
.info section .bg .wrap dl .info_line dt {
  margin: 0;
  font-weight: bold;
  font-size: 1.6rem;
  color: #5b9bd4;
  cursor: pointer;
  display: table;
}
.info section .bg .wrap dl .info_line dt:hover {
  opacity: 0.8;
}
.info section .bg .wrap dl .info_line dt .date {
  font-weight: 500;
  display: block;
  font-size: 1.2rem;
}
.info section .bg .wrap dl .info_line dd {
  padding: 0;
  margin: 0;
}
.info section .bg .wrap dl .info_line dd > *:first-child {
  margin: 0.2rem 0 0;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 8.7rem 0 2rem;
  }
  .info section .tit_02 {
    width: 1200px;
    margin: 0 auto 5.1rem;
    text-align: left;
  }
  .info section .tit_02 .eng_txt {
    left: 6rem;
  }
  .info section .bg {
    padding: 5rem 1rem 5rem;
  }
  .info section .bg .wrap {
    padding: 0;
  }
  .info section .bg .wrap dl {
    padding: 1rem 7rem 1rem;
    height: 35rem;
  }
  .info section .bg .wrap dl .info_line {
    padding: 0 0 3rem;
    margin: 0 0 3rem;
  }
  .info section .bg .wrap dl .info_line dt {
    font-size: 2.2rem;
    padding-left: 9rem;
    position: relative;
  }
  .info section .bg .wrap dl .info_line dt .date {
    font-size: 1.6rem;
    position: absolute;
    left: 0;
    top: 0.4rem;
  }
  .info section .bg .wrap dl .info_line dd {
    padding: 0;
    margin: 0;
  }
  .info section .bg .wrap dl .info_line dd:nth-of-type(n + 4) {
    display: none;
  }
  .info section .bg .wrap dl .info_line dd > *:first-child {
    margin: 1.2rem 0 0;
  }
}
/* 診療のご案内 -------------------------------------- */
.guide {
  padding: 4rem 1rem 4rem;
}
.guide .flex .contents_r .cal_area {
  margin: 0;
}
.guide .flex .contents_r .cal_area .tabs {
  border-bottom: none;
  display: flex;
  gap: 0 1px;
  margin: 2rem 0 0;
}
.guide .flex .contents_r .cal_area .tab {
  width: 50%;
  padding: 0.2rem 2rem;
  cursor: pointer;
  text-align: center;
  border-bottom: none;
  background-color: #d4d4d4;
  color: #fff;
}
.guide .flex .contents_r .cal_area .tab.active {
  pointer-events: none;
  background: linear-gradient(to bottom, #5b9bd4, #6cb0eb);
}
.guide .flex .contents_r .cal_area .tab:hover {
  opacity: 1;
}
.guide .flex .contents_r .cal_area .tab-content {
  display: none;
}
.guide .flex .contents_r .cal_area .tab-content.active {
  display: block;
}
.guide .flex .contents_r .cal_area .cal .caledit {
  width: 100%;
  margin: 0;
  border-collapse: separate;
  border-spacing: 2px 2px;
  table-layout: fixed;
  overflow: hidden;
}
.guide .flex .contents_r .cal_area .cal .caledit tbody tr.month {
  overflow: hidden;
  display: none;
}
.guide .flex .contents_r .cal_area .cal .caledit tbody tr.week th {
  font-size: 1.4rem;
  font-weight: 400;
  background: #9dccf5;
  border: #d4d4d4 1px solid;
  color: #fff;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
}
.guide .flex .contents_r .cal_area .cal .caledit tbody tr.day td {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  color: #363636;
  background: #fff;
  border: none;
}
.guide .flex .contents_r .cal_area .cal .caledit tbody tr.day td.notTheMonth {
  color: #363636 !important;
  background: #d8d8d8 !important;
}
.guide .flex .contents_r .cal_area .cal .caledit tbody tr.day td.notTheMonth.close {
  color: #363636 !important;
}
.guide .flex .contents_r .cal_area .cal .caledit tbody tr.day td.open {
  background: #fff;
}
.guide .flex .contents_r .cal_area .cal .caledit tbody tr.day td.close {
  background: #ffc5c5;
}
.guide .flex .contents_r .cal_area .cal .caledit tbody tr.day td.am_only {
  background: #fff0d6;
}
.guide .flex .contents_r .cal_area .cal .caledit tbody tr.day td.pm_only {
  background: #f2e8ff;
}
.guide .flex .contents_r .cal_area .cal .caledit tbody tr.day td.temporarily_close {
  background: #e6ffdb;
}
.guide .flex .contents_r .cal_area .cal .caledit tbody tr.day td .shortTitle {
  color: #363636 !important;
}

@media screen and (min-width: 48em), print {
  .guide {
    padding: 12rem 0 12rem;
  }
  .guide .flex {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 0 8rem;
  }
  .guide .flex .tit_03 {
    padding: 1rem 2rem;
    margin: 0 0 2rem;
  }
  .guide .flex section ~ section {
    margin: 5rem 0 0;
  }
  .guide .flex .contents_l .btn_link {
    margin: 2.5rem auto 0;
  }
  .guide .flex .contents_r .cal_area {
    margin: 0;
  }
  .guide .flex .contents_r .cal_area .tabs {
    border-bottom: none;
    display: flex;
    gap: 0 1px;
    margin: 2rem 0 0;
  }
  .guide .flex .contents_r .cal_area .tab {
    width: 50%;
    padding: 1rem 2rem;
    font-size: 1.6rem;
  }
  .guide .flex .contents_r .cal_area .cal .caledit tbody tr.week th {
    font-size: 2rem;
  }
  .guide .flex .contents_r .cal_area .cal .caledit tbody tr.day td {
    font-size: 2rem;
    line-height: 1;
    padding: 1.6rem 0 1.6rem;
  }
  .guide .flex .contents_r .cal_area .cal .caledit tbody tr.day td .shortTitle {
    margin: 0.4rem 0 0;
    font-size: 1.2rem;
  }
}
/* ごあいさつ -------------------------------------- */
.greeting {
  background: #fff;
  padding: 4rem 1rem 2rem;
  position: relative;
  z-index: 2;
}
.greeting::before {
  content: "";
  background: url(../img/index_greeting_bg01.svg) no-repeat top center/cover;
  position: absolute;
  top: -2.9rem;
  left: 0;
  width: 100%;
  height: 3rem;
}
.greeting .tit_02 {
  color: #0059b2;
}
.greeting .tit_02 .eng_txt {
  color: #eef7ff;
}
.greeting .dr_name {
  text-align: right;
}
.greeting .dr_name > span {
  display: block;
  font-size: 1.2rem;
}
.greeting .dr_name > span > span {
  font-size: 2.2rem;
}

@media screen and (min-width: 48em), print {
  .greeting {
    padding: 0 0 1rem;
  }
  .greeting::before {
    content: "";
    background: url(../img/index_greeting_bg01.svg) no-repeat top center/auto auto;
    z-index: -1;
    top: -21.1rem;
    left: 0;
    height: 21.2rem;
  }
  .greeting .wrap .dr_name {
    margin: 3.4rem 0 0;
    font-size: 1.4rem;
  }
  .greeting .wrap .dr_name > span {
    display: block;
    font-size: 1.8rem;
  }
  .greeting .wrap .dr_name > span > span {
    font-size: 1.8rem;
  }
  .greeting .wrap > section {
    width: 90rem;
    margin: 0 auto;
  }
  .greeting .wrap > section p {
    line-height: 1.8;
  }
  .greeting .btn_link {
    margin: 2rem 0 0;
  }
}
/* ループスライダ― -------------------------------------- */
#loopslider {
  background: #fff;
  margin: 0;
  padding: 2rem 0 2rem;
  width: 100vw;
  min-width: 100%;
}
#loopslider .slide-item {
  padding-top: 2rem;
  margin: 0 0.4rem;
}
#loopslider .slide-item figure img {
  width: 16rem;
}
#loopslider .slide-item:nth-child(even) {
  position: relative;
  top: -2rem;
}

@media screen and (min-width: 48em), print {
  #loopslider {
    margin: -3px auto 0;
    padding: 4rem 0 23.3rem;
  }
  #loopslider .slide-item {
    margin: 0 2rem;
    padding-top: 5rem;
  }
  #loopslider .slide-item figure img {
    width: 30rem;
  }
  #loopslider .slide-item:nth-child(even) {
    top: -5rem;
  }
}
/* 診療内容 -------------------------------------- */
.treatment_menu {
  padding: 6rem 1rem 4rem;
  position: relative;
  overflow-y: hidden;
}
.treatment_menu::before {
  background-image: url(../img/index_treatmentMenu_bg01.jpg);
}
.treatment_menu ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem 4%;
}
.treatment_menu ul li {
  width: 46%;
  height: 12rem;
}
.treatment_menu ul li a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  text-align: center;
  text-decoration: none !important;
  word-break: auto-phrase;
  color: #363636;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background: #fff;
  height: 100%;
  width: 100%;
  padding: 0 1rem;
  border-radius: 50%;
}
.treatment_menu ul li a::before {
  font-size: 3.8rem;
  font-family: "fontello";
  margin-bottom: 0.4rem;
  background: linear-gradient(to bottom, #5b9bd4, #a8d7ff); /* グラデーション */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.treatment_menu ul li a.ear::before {
  content: "\e819";
}
.treatment_menu ul li a.nose::before {
  content: "\e81b";
}
.treatment_menu ul li a.throat_mouth::before {
  content: "\e81c";
}
.treatment_menu ul li a.neck_face::before {
  content: "\e81d";
}
.treatment_menu ul li a.dizziness::before {
  content: "\e81e";
}
.treatment_menu ul li a.child::before {
  content: "\e81f";
}
.treatment_menu ul li a.allergy::before {
  content: "\e821";
}
.treatment_menu ul li a.hearing_aid::before {
  content: "\e822";
}
.treatment_menu ul li a:hover {
  opacity: 1;
  transform: scale(1.04);
}

@media screen and (min-width: 48em), print {
  .treatment_menu {
    padding: 23.5rem 0 26rem;
  }
  .treatment_menu ul {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    gap: 5rem 10rem;
  }
  .treatment_menu ul li {
    width: 22rem;
    height: 22rem;
  }
  .treatment_menu ul li a {
    padding: 0 2.8rem;
    font-size: 2rem;
  }
  .treatment_menu ul li a::before {
    font-size: 7rem;
    margin-bottom: 0.4rem;
  }
}
/* 当院の特長 -------------------------------------- */
.feature {
  background: linear-gradient(to bottom, #0a67bb 3rem, #0a67bb 3rem, #8fb8ff);
  padding: 6rem 1rem 4rem;
  position: relative;
  z-index: 4;
}
.feature::before {
  content: "";
  display: block;
  width: 100%;
  height: 2rem;
  background: url(../img/index_feature_bg01.svg) no-repeat top center/cover;
  position: absolute;
  top: -1.9rem;
  left: 0;
  z-index: 2;
}
.feature .tit_02 {
  color: #fff;
}
.feature .tit_02 .eng_txt {
  opacity: 0.3;
}
.feature ul li {
  margin: 0 0 2rem;
}
.feature ul li figure {
  margin: 0;
  padding: 0;
}
.feature ul li figure img {
  display: block;
  position: relative;
  left: -2rem;
}
.feature ul li figure figcaption {
  color: #fff;
}
.feature ul li figure figcaption .tit {
  font-size: 1.6rem;
  margin: 0 0 1rem;
}
.feature ul li figure figcaption .tit::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background: #fff;
  margin: 2rem 0 0.4rem;
}
.feature ul li figure figcaption .txt {
  margin: 0;
  font-size: 1.4rem;
}
.feature ul li:nth-child(even) figure img {
  left: auto;
  right: -2rem;
}

@media screen and (min-width: 48em), print {
  .feature {
    background: linear-gradient(to bottom, #0a67bb 3rem, #0a67bb 3rem, #8fb8ff);
    padding: 7.5rem 0 18rem;
  }
  .feature::before {
    height: 22.6rem;
    background: url(../img/index_feature_bg01.svg) no-repeat top center/auto auto;
    top: -22.5rem;
  }
  .feature ul {
    width: 1200px;
    position: relative;
  }
  .feature ul li {
    margin: 0 0 5rem;
    min-height: 40rem;
  }
  .feature ul li figure {
    min-height: 40rem;
  }
  .feature ul li figure img {
    position: absolute;
    left: -40rem;
  }
  .feature ul li figure figcaption {
    min-height: 40rem;
    padding-left: 75.3rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .feature ul li figure figcaption .tit {
    font-size: 3rem;
    margin: 0 0 5rem;
  }
  .feature ul li figure figcaption .tit::before {
    width: 5rem;
    height: 3px;
    margin: 0 0 2rem;
  }
  .feature ul li figure figcaption .txt {
    font-size: 1.8rem;
    line-height: 2.2;
  }
  .feature ul li:nth-child(even) figure img {
    left: auto;
    right: -40rem;
  }
  .feature ul li:nth-child(even) figure figcaption {
    padding-left: 0;
    padding-right: 75.3rem;
  }
}
/* 連携病院・主な紹介先病院 -------------------------------------- */
.alignment {
  padding: 6rem 1rem 4rem;
  margin-top: -4rem;
  position: relative;
  z-index: 4;
}
.alignment::before {
  content: "";
  display: block;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url(../img/index_alignment_bg01.webp) no-repeat center/cover;
}
.alignment .wrap section {
  margin: 0;
  padding: 1rem;
  border-radius: 10px;
  background: #fff;
}
.alignment .wrap section .tit_alignment {
  color: #5b9bd4;
  font-size: 1.6rem;
  margin: 0 0 0.8rem;
  text-align: center;
  line-height: 1.2;
}
.alignment .wrap section ul li {
  display: inline-block;
}
.alignment .wrap section ul li::after {
  content: "、";
}
.alignment .wrap section ul li:last-child::after {
  content: none;
}

@media screen and (min-width: 48em), print {
  .alignment {
    padding: 12rem 0rem 16rem;
    margin-top: -6rem;
  }
  .alignment .wrap section {
    margin: 3rem auto 0;
    padding: 3rem;
    width: 90rem;
    border-radius: 20px;
  }
  .alignment .wrap section .tit_alignment {
    font-size: 2.4rem;
    margin: 0 0 1.5rem;
  }
  .alignment .wrap section ul {
    text-align: center;
  }
  .alignment .wrap section ul li {
    display: inline;
  }
}
/* このような症状の方はご相談ください -------------------------------------- */
.symptoms {
  margin-top: -4rem;
  padding: 7rem 0 10rem;
  position: relative;
  z-index: 3;
}
.symptoms::before {
  background-image: url(../img/index_symptoms_bg01.jpg);
}
.symptoms .tit_02 {
  color: #fff;
}
.symptoms .tit_02 .eng_txt {
  opacity: 0.3;
}
.symptoms .tabs {
  margin: 2rem 0 0;
}
.symptoms .tabs > ul {
  margin: 0 0 1.2rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0 0.2rem;
}
.symptoms .tabs > ul li {
  width: 23%;
  font-weight: 500;
  word-break: auto-phrase;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  text-align: center;
  background: #3672a7;
  color: #fff;
  border-radius: 10px;
  padding: 0.8rem 0.2rem;
  margin: 0;
}
.symptoms .tabs > ul li::before {
  content: "";
  font-family: "fontello";
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 6rem;
  height: 6rem;
  font-size: 2.8rem;
  background: #fff;
  border-radius: 50%;
}
.symptoms .tabs > ul li.active {
  opacity: 1;
}
.symptoms .tabs > ul li.item_01 {
  background: #3672a7;
}
.symptoms .tabs > ul li.item_01::before {
  color: #3672a7;
  content: "\e816";
}
.symptoms .tabs > ul li.item_02 {
  background: #5b9bd4;
}
.symptoms .tabs > ul li.item_02::before {
  color: #5b9bd4;
  content: "\e817";
}
.symptoms .tabs > ul li.item_03 {
  background: #4caddf;
}
.symptoms .tabs > ul li.item_03::before {
  color: #4caddf;
  content: "\e818";
}
.symptoms .tabs > ul li.item_04 {
  background: #6bcceb;
}
.symptoms .tabs > ul li.item_04::before {
  color: #6bcceb;
  content: "\e81a";
}
.symptoms .tabs .content_area .content {
  padding: 1rem;
  background: #3672a7;
  border-radius: 10px;
  display: none;
}
.symptoms .tabs .content_area .content.active {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 1.2rem 0;
}
.symptoms .tabs .content_area .content.item_01 {
  background: #3672a7;
}
.symptoms .tabs .content_area .content.item_02 {
  background: #5b9bd4;
}
.symptoms .tabs .content_area .content.item_03 {
  background: #4caddf;
}
.symptoms .tabs .content_area .content.item_04 {
  background: #6bcceb;
}
.symptoms .tabs .content_area .content .txt_contents {
  width: 100%;
  padding: 1rem;
  background: #fff;
  border-radius: 10px;
}
.symptoms .tabs .content_area .content .txt_contents ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 1rem 0;
}
.symptoms .tabs .content_area .content .txt_contents ul li {
  width: 100%;
  position: relative;
  padding-left: 1.8rem;
  line-height: 1.2;
  word-break: break-word;
}
.symptoms .tabs .content_area .content .txt_contents ul li::before {
  content: "\e812";
  font-family: "fontello";
  margin-right: 0.4rem;
  color: #2c73aa;
  position: absolute;
  left: 0;
  top: 0.2rem;
}
.symptoms .tabs .content_area .content .link_contents {
  width: 100%;
}
.symptoms .tabs .content_area .content .link_contents ul {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem 0;
}
.symptoms .tabs .content_area .content .link_contents ul li {
  width: 100%;
}
.symptoms .tabs .content_area .content .link_contents ul li a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  background: #fff;
  text-decoration: none !important;
  border-radius: 10px;
  padding: 0.6rem 1rem;
  position: relative;
}
.symptoms .tabs .content_area .content .link_contents ul li a::before {
  content: "\e80f";
  display: inline-block;
  font-size: 1rem;
  font-family: "fontello";
  color: #5b9bd4;
  position: absolute;
  right: 0.4rem;
  top: 54%;
  transform: translateY(-50%) scale(0.8);
  -webkit-transform: translateY(-50%) scale(0.8);
  -ms-transform: translateY(-50%) scale(0.8);
}

@media screen and (min-width: 48em), print {
  .symptoms {
    padding: 13rem 0 18rem;
  }
  .symptoms .tabs > ul {
    margin: 0 0 3rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    gap: 0 4rem;
  }
  .symptoms .tabs > ul li {
    width: 27rem;
    font-size: 2rem;
    min-height: 8.2rem;
    padding: 1rem 1rem 1rem 1.5rem;
    margin: 0;
    border-radius: 20px;
    transition: filter 0.2s;
    -webkit-flex-direction: row;
    flex-direction: row;
  }
  .symptoms .tabs > ul li::before {
    width: 6.5rem;
    height: 6.5rem;
    margin-right: 1.5rem;
    font-size: 3.6rem;
  }
  .symptoms .tabs > ul li:hover {
    cursor: pointer;
    filter: contrast(1.1);
  }
  .symptoms .tabs .content_area .content {
    padding: 4.7rem 5.4rem 5.2rem;
    border-radius: 20px;
  }
  .symptoms .tabs .content_area .content.active {
    gap: 5rem 0;
  }
  .symptoms .tabs .content_area .content .txt_contents {
    padding: 5rem 5.4rem;
    border-radius: 20px;
    font-size: 2rem;
  }
  .symptoms .tabs .content_area .content .txt_contents ul {
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: row;
    flex-direction: row;
    gap: 1.3rem 4%;
  }
  .symptoms .tabs .content_area .content .txt_contents ul li {
    width: 48%;
    padding-left: 5rem;
  }
  .symptoms .tabs .content_area .content .txt_contents ul li::before {
    font-size: 3rem;
    margin-right: 0.4rem;
    left: 0;
    top: -0.2rem;
  }
  .symptoms .tabs .content_area .content .link_contents ul {
    gap: 1.5rem 5.2rem;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .symptoms .tabs .content_area .content .link_contents ul li {
    width: 52rem;
  }
  .symptoms .tabs .content_area .content .link_contents ul li a {
    border-radius: 60px;
    padding: 1.5rem 1rem;
  }
  .symptoms .tabs .content_area .content .link_contents ul li a::before {
    font-size: 1rem;
    right: 1.2rem;
    top: 54%;
    transform: translateY(-50%) scale(1);
    -webkit-transform: translateY(-50%) scale(1);
    -ms-transform: translateY(-50%) scale(1);
  }
}
/* ----------------------------------------------------------------------------------
下層　_lower.scss
---------------------------------------------------------------------------------- */
body:not(.index) .header {
  background: url(../img/low_header_bg01.jpg) no-repeat center/cover;
  height: auto;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .header {
    height: 50rem;
  }
}
body:not(.index) .header .breadcrumb_list {
  display: none;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .header .breadcrumb_list {
    display: -webkit-flex;
    display: flex;
  }
}
body:not(.index) .footer .breadcrumb_list {
  display: -webkit-flex;
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .footer .breadcrumb_list {
    display: none;
  }
}
body:not(.index) .breadcrumb_list {
  margin: 0 auto;
  padding: 1rem 1.2rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}
body:not(.index) .breadcrumb_list li {
  font-size: 1rem;
  display: inline-block;
}
body:not(.index) .breadcrumb_list li:not(:last-child)::after {
  content: "2";
  font-family: "fontello";
  margin-right: 0.4rem;
  display: inline-block;
  margin: 0 1rem;
  position: relative;
  top: 0.1rem;
}
body:not(.index) .breadcrumb_list li a:hover {
  opacity: 1;
  text-decoration: underline;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .breadcrumb_list {
    margin: 0 auto;
    padding: 2rem 0 2rem;
    width: 1200px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    bottom: -8rem;
  }
  body:not(.index) .breadcrumb_list li {
    font-size: 1.6rem;
  }
}
body:not(.index) .main {
  margin: 4rem 1rem 14rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    margin: 17rem 0 20rem;
    letter-spacing: 0.2rem;
  }
}

@media screen and (min-width: 48em), print {
  .cf .img_l,
  .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}
/* ドクター紹介 */
.dr_name {
  margin: 2rem 0 0;
  text-align: right;
}
.dr_name span {
  font-size: 130%;
}

/* クリニック紹介 */
*[id*=slider] {
  margin: 0 auto 0.2rem;
  width: 100%;
}
@media screen and (min-width: 48em), print {
  *[id*=slider] {
    width: 75rem;
  }
}
*[id*=slider] figure {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
*[id*=slider] figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  padding: 0.4rem 0.6rem;
  margin: 0 auto;
  text-align: center;
  line-height: 1.2;
  font-size: 1.4rem;
  color: #333;
  background: rgba(243, 249, 244, 0.6);
}
@media screen and (min-width: 48em), print {
  *[id*=slider] figure figcaption {
    padding: 2rem 3rem;
    font-size: 1.8rem;
  }
}
*[id*=slider] figure figcaption p {
  text-align: center;
  font-size: 120%;
  margin: 0;
}

*[id*=thumbnail_slider] {
  margin: 0 auto 2rem;
  width: 100%;
}
@media screen and (min-width: 48em), print {
  *[id*=thumbnail_slider] {
    width: 75rem;
  }
}
*[id*=thumbnail_slider] .slick-list .thumbnail-item img {
  cursor: grab;
}
*[id*=thumbnail_slider] .slick-list .thumbnail-item img:active {
  cursor: grabbing;
}
*[id*=thumbnail_slider] .slick-list .slick-current {
  position: relative;
}
*[id*=thumbnail_slider] .slick-list .slick-current::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 4px solid #222;
}
*[id*=thumbnail_slider] .slick-list .slick-current img {
  width: 100%;
  display: block;
}
*[id*=thumbnail_slider] .slick-prev::before,
*[id*=thumbnail_slider] .slick-next::before {
  color: #222;
}

.slide-item img {
  width: 100%;
  height: auto;
}

.thumbnail-item img {
  width: 98%;
  display: block;
  margin: 0 auto;
}

.img_gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
}
.img_gallery li {
  margin: 0 0 2rem;
  text-align: center;
}
.img_gallery li figure {
  margin: 0;
  padding: 0;
}
.img_gallery li figure img {
  display: block;
  margin: 0 auto 0.6rem;
  max-width: 80%;
  height: auto;
}
.img_gallery li figure figcaption {
  padding: 0.4rem 0 0;
  text-align: center;
}

@media screen and (min-width: 48em), print {
  .img_gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .img_gallery li {
    margin: 0 0 3.2rem;
  }
  .img_gallery li img {
    margin: 0 auto 1rem;
    max-width: 100%;
  }
}
/* 初めての方へ */
/* 診療時間・アクセス */
.access .gmap {
  height: 30rem;
  margin: 2rem 0;
}

@media screen and (min-width: 48em), print {
  .access .gmap {
    height: 50rem;
  }
}