@charset "UTF-8";

/***************************

_mixin.scss

***************************/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*========= ページ読み込み時のフェードアニメーション ===============*/
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0.1;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0.1;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
  animation-name: fadeLeftAnime;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@media screen and (max-width: 550px) {
  .fadeLeft {
    -webkit-animation-name: none;
    animation-name: none;
    opacity: 1;
  }
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-70px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-70px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
  animation-name: fadeRightAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0.1;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0.1;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeDown {
  -webkit-animation-name: fadeDownAnime;
  animation-name: fadeDownAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0.1;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0.1;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time01 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.delay-time02 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.delay-time03 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.delay-time04 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.delay-time05 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-time06 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.delay-time07 {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

/*========= ページ読み込み時のフェードアニメーション ===============*/
/***************************

_variables.scss

***************************/
.flexbox {
  display: flex;
}

.line1 {
  line-height: 1;
}

.wrap {
  flex-wrap: wrap;
}

.spacebet {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.bold {
  font-weight: bold;
}

.mt05e {
  margin-top: 0.5em;
}

.mt1e {
  margin-top: 1em;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb100 {
  margin-bottom: 100px;
}

.pt10 {
  padding-top: 10px;
}

.pt20 {
  padding-top: 20px;
}

.pt30 {
  padding-top: 30px;
}

.pt40 {
  padding-top: 40px;
}

.pt50 {
  padding-top: 50px;
}

.pt60 {
  padding-top: 60px;
}

.pt70 {
  padding-top: 70px;
}

.pt80 {
  padding-top: 80px;
}

.pt90 {
  padding-top: 90px;
}

.pt100 {
  padding-top: 100px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb70 {
  padding-bottom: 70px;
}

.pb80 {
  padding-bottom: 80px;
}

.pb90 {
  padding-bottom: 90px;
}

.pb100 {
  padding-bottom: 100px;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

.margin-auto {
  margin-right: auto;
  margin-left: auto;
}

.fz12 {
  font-size: 12px;
}

.fz14 {
  font-size: 14px;
}

.fz15 {
  font-size: 15px;
}

.fz18 {
  font-size: 18px;
}

.fz20 {
  font-size: 20px;
}

.fz22 {
  font-size: 22px;
}

.fz24 {
  font-size: 24px;
}

.fz26 {
  font-size: 26px;
}

.fw600 {
  font-weight: 600;
}

.line1 {
  line-height: 1;
}

.line2 {
  line-height: 2;
}

.line18 {
  line-height: 1.8;
}

.line26 {
  line-height: 2.6;
}

.w100p {
  width: 100%;
}

.w50p {
  width: 50%;
}

.w250 {
  width: 250px;
}

.d-block {
  display: block;
}

.d-table {
  display: table;
}

.underLine {
  border-bottom: 1px solid #0C1939;
}

.t-red {
  color: #FF0000;
}

/***************************

_common.scss

***************************/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #0C1939;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  line-height: 2;
  letter-spacing: 0.05em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  background-color: #FBF9F4;
  font-size: 18px;
}

main {
  margin-top: 130px;
}

@media screen and (max-width: 1024px) {
  main {
    margin-top: 110px;
  }
}

@media screen and (max-width: 550px) {
  main {
    margin-top: 85px;
  }
}

.subfont {
  font-family: "Roboto", sans-serif;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: #0C1939;
}

a:hover,
button:hover {
  opacity: 0.5;
  transition: 0.25s;
}

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

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

.n-pc-img {
  display: none;
}

@media screen and (max-width: 1024px) {
  .n-pc-img {
    display: block;
  }
}

.tab-img {
  display: none;
}

@media screen and (max-width: 768px) {
  .tab-img {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .n-tab-img {
    display: none;
  }
}

.mid-img {
  display: none;
}

@media screen and (max-width: 550px) {
  .mid-img {
    display: block;
  }
}

.txt {
  font-size: 18px;
}

@media screen and (max-width: 550px) {
  .n-mid-img {
    display: none;
  }
}

.sp-img {
  display: none;
}

@media screen and (max-width: 428px) {
  .sp-img {
    display: block;
  }
}

@media screen and (max-width: 428px) {
  .n-sp-img {
    display: none;
  }
}

.wrapper {
  width: 1230px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.wrapperL {
  width: 1470px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
}

@media screen and (max-width: 768px) {
  .wrapperL {
    max-width: 100%;
    padding: 0 15px;
  }
}

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

.n-pc-br {
  display: none;
}

@media screen and (max-width: 1024px) {
  .n-pc-br {
    display: inline-block;
  }
}

.tab-br {
  display: none;
}

@media screen and (max-width: 768px) {
  .tab-br {
    display: inline-block;
  }
}

.mid-br {
  display: none;
}

@media screen and (max-width: 550px) {
  .mid-br {
    display: inline-block;
  }
}

.sp-br {
  display: none;
}

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

.gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 450px;
  position: relative;
}

.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.c-mt {
  margin-top: 100px;
}

@media screen and (max-width: 550px) {
  .c-mt {
    margin-top: 70px;
  }
}

.c-mtL {
  margin-top: 130px;
}

@media screen and (max-width: 550px) {
  .c-mtL {
    margin-top: 70px;
  }
}

.title_style01 {
  color: #fff;
  text-align: center;
  font-size: 40px;
  line-height: 1;
}

@media screen and (max-width: 550px) {
  .title_style01 {
    font-size: 30px;
  }
}

.title_style01 span {
  display: table;
  font-size: 14px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px dotted #fff;
  margin-right: auto;
  margin-left: auto;
}

.title_style02 {
  color: #fff;
  font-size: 40px;
  line-height: 1;
  color: #274599;
}

@media screen and (max-width: 550px) {
  .title_style02 {
    font-size: 30px;
  }
}

.title_style02 span {
  color: #F29F73;
  display: table;
  font-size: 14px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px dotted #F29F73;
}

.title_style03 {
  font-weight: bold;
  color: #274599;
  font-size: 22px;
  line-height: 1.2;
}

.title_style03 span {
  color: #F29F73;
}

.title_style04 {
  color: #fff;
  font-size: 40px;
  line-height: 1;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 550px) {
  .title_style04 {
    font-size: 30px;
  }
}

.title_style04 span {
  display: table;
  font-size: 14px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px dotted #fff;
  margin-right: auto;
  margin-left: auto;
}

.table_style01 {
  display: flex;
  flex-wrap: wrap;
}

.table_style01 dt,
.table_style01 dd {
  padding: 25px 0;
  border-bottom: 1px solid #D5D1C8;
}

@media screen and (max-width: 768px) {

  .table_style01 dt,
  .table_style01 dd {
    padding: 15px 0;
  }
}

.table_style01 dt {
  width: 210px;
  padding-right: 15px;
  font-weight: bold;
  color: #274599;
}

@media screen and (max-width: 768px) {
  .table_style01 dt {
    width: 100%;
    padding-right: 0;
    border-bottom: none;
    padding-bottom: 0;
  }
}

.table_style01 dd {
  width: calc(100% - 210px);
}

@media screen and (max-width: 768px) {
  .table_style01 dd {
    width: 100%;
    padding-top: 5px;
  }
}

.table-style02 {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #274599;
  border-radius: 7px;
  vertical-align: middle;
}

.table-style02 dt,
.table-style02 dd {
  padding: 10px 5px;
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  background-color: #fff;
}

.table-style02 dt:first-of-type,
.table-style02 dd:first-of-type {
  color: #fff;
  background-color: #274599;
}

.table-style02 dt:last-of-type,
.table-style02 dd:last-of-type {
  border-bottom: none;
}

.table-style02 dt {
  text-align: center;
  border-right: 1px solid #DEE3ED;
}

.table-style02 dt:first-of-type {
  border-right: 1px solid #fff;
  border-top-left-radius: 5px;
  font-weight: bold;
}

.table-style02 dt:last-of-type {
  border-bottom-left-radius: 5px;
}

.table-style02 dd {
  padding-left: 30px;
  padding-right: 30px;
}

.table-style02 dd:first-of-type {
  border-top: none;
  border-top-right-radius: 5px;
  font-weight: bold;
  text-align: center;
}

.table-style02 dd:last-of-type {
  border-bottom-right-radius: 5px;
}

.btn-style01 {
  color: #fff;
  background-color: #274599;
  border-radius: 40px;
  padding: 20px;
  width: 360px;
  max-width: 100%;
  display: block;
  text-align: center;
  border: 2px solid #274599;
  font-weight: bold;
  position: relative;
}

@media screen and (max-width: 550px) {
  .btn-style01 {
    max-width: 95%;
    margin-right: auto;
    margin-left: auto;
  }
}

.btn-style01:hover {
  color: #274599;
  background-color: #fff;
  opacity: 1;
}

.btn-style01 i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 28px;
  color: #F6BA9D;
}

.btn-style02 {
  color: #274599;
  border-radius: 40px;
  padding: 6px;
  padding-top: 9px;
  width: 390px;
  max-width: 100%;
  display: block;
  text-align: center;
  border: 1px solid #274599;
  font-weight: bold;
  position: relative;
  /* 230502 */
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 550px) {
  .btn-style02 {
    margin-right: auto;
    margin-left: auto;
  }
}

.btn-style02:hover {
  color: #fff;
  background-color: #274599;
  opacity: 1;
}

.btn-style02:hover i {
  color: #fff;
}

.btn-style02 i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 28px;
  color: #274599;
}

@media screen and (max-width: 428px) {
  .btn-style02 i {
    right: 15px;
  }
}

.box-style01 {
  padding: 35px 55px;
  border: 1px solid #274599;
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  .box-style01 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

@media screen and (max-width: 550px) {
  .box-style01 {
    padding: 30px;
  }
}

.box-style01 dt {
  flex: 0 0 190px;
}

@media screen and (max-width: 768px) {
  .box-style01 dt {
    flex: none;
  }
}

.box-style01 dd {
  flex: 1 1 auto;
  margin-left: 55px;
  padding-left: 55px;
  border-left: 1px dotted #274599;
}

@media screen and (max-width: 768px) {
  .box-style01 dd {
    flex: unset;
    border: none;
    margin-left: 0;
    padding-left: 0;
  }
}

.under_mv {
  background-position: center;
  background-size: cover;
  height: 400px;
  border-radius: 60px;
  position: relative;
}

@media screen and (max-width: 550px) {
  .under_mv {
    height: 300px;
  }
}

.under_mv .title_style01 {
  padding-top: 145px;
}

@media screen and (max-width: 550px) {
  .under_mv .title_style01 {
    padding-top: 95px;
  }
}

.under_mv_clinic {
  background-image: url(../img/clinic/mv.jpg);
}

.under_mv_doctor {
  background-image: url(../img/doctor/mv.jpg);
}

.under_mv_information {
  background-image: url(../img/information/mv.jpg);
}

.under_mv_facility {
  background-image: url(../img/facility/mv.jpg);
}

.under_mv_access {
  background-image: url(../img/access/mv.jpg);
}

.under_common_content {
  margin-top: 120px;
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .under_common_content {
    margin-top: 80px;
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 768px) {
  .common_content {
    flex-direction: column;
  }
}

.common_content .flex_item+.flex_item {
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .common_content .flex_item+.flex_item {
    margin-left: 0;
    margin-top: 50px;
  }
}

.flex_2col_item {
  width: 47.5%;
}

@media screen and (max-width: 768px) {
  .flex_2col_item {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .flex_2col_item:last-of-type {
    margin-top: 40px;
  }
}

.list_style01 {
  padding-left: 5px;
}

.list_style01 li {
  padding-left: 20px;
  position: relative;
  line-height: 2;
  padding-bottom: 10px;
}

.list_style01 li::before {
  content: url(../img/common/dot.png);
  position: absolute;
  left: 0;
  top: -4px;
}

.list_style01 li:last-of-type {
  padding-bottom: 0;
}

.list_style02 {
  color: #274599;
  list-style-type: decimal-leading-zero;
  font-size: 22px;
  line-height: 1.2;
  padding-left: 46px;
}

.list_style02 span {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  color: #0C1939;
  font-size: 18px;
}

.list_style02 li+li {
  padding-top: 30px;
}

.radius-10 {
  border-radius: 10px;
}

.accent {
  color: #274599;
}

/***************************

_header.scss

***************************/
.header {
  background-color: #FBF9F4;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 20px 30px;
}

@media screen and (max-width: 1024px) {
  .header {
    padding: 0;
    padding-left: 20px;
  }
}

.header__inner {
  align-items: flex-end;
}

@media screen and (max-width: 1024px) {
  .header__inner {
    align-items: flex-start;
  }
}

.hd__logo {
  max-width: 429px;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .hd__logo {
    margin-right: 15px;
    position: relative;
    z-index: 9999;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 550px) {
  .hd__logo {
    flex: 1 1 auto;
  }
}

@media screen and (max-width: 1024px) {
  .hd__logo img {
    max-height: 63px;
    margin-top: 15px;
  }
}

@media screen and (max-width: 550px) {
  .hd__logo img {
    max-height: 43px;
    margin-top: 10px;
  }
}

.gnav {
  margin-left: 40px;
  width: 100%;
  align-items: flex-end;
}

@media screen and (max-width: 1024px) {
  .gnav {
    width: 500px;
    max-width: 100%;
    height: 100%;
    padding: 60px 30px 20px;
    background-color: #FBF9F4;
    position: fixed;
    top: 93px;
    right: 0;
    z-index: 998;
    transform: translate(100%);
    transition: all 0.5s;
    overflow-y: scroll;
    align-items: flex-start;
    flex-direction: column-reverse;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 550px) {
  .gnav {
    top: 65px;
  }
}

.gnav__list {
  display: flex;
  line-height: 1;
  justify-content: flex-end;
}

@media screen and (max-width: 1024px) {
  .gnav__list {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 50px;
  }
}

.gnav__item {
  font-weight: bold;
  display: block;
  margin-left: 1.2em;
  padding-top: 0.5em;
}

@media screen and (max-width: 1024px) {
  .gnav__item {
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-left: 0;
  }
}

.gnav__item a {
  color: #274599;
}

.gnav__item a:hover {
  color: #F29F73;
  opacity: 1;
}

.gnav__toggle_block {
  display: none;
}

@media screen and (max-width: 1024px) {
  .gnav__toggle_block {
    padding: 0 10px;
    width: 93px;
    height: 93px;
    max-height: 93px;
    display: block;
    cursor: pointer;
    transform: translateX(0);
    transition: transform 0.5s;
    background-color: #F29F73;
  }
}

@media screen and (max-width: 550px) {
  .gnav__toggle_block {
    width: 65px;
    height: 65px;
    flex: 0 0 65px;
  }
}

.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  opacity: 0;
  transition: opacity 0.5s;
}

.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.gnav__toggle_wrapper {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.gnav__toggle_wrapper span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
}

.gnav__toggle_block.active .gnav__toggle_wrapper span {
  background-color: #fff;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.gnav__toggle_wrapper span:nth-of-type(1),
.gnav__toggle_wrapper span:nth-of-type(3) {
  height: 2px;
  background: #fff;
  width: 75%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

@media screen and (max-width: 550px) {

  .gnav__toggle_wrapper span:nth-of-type(1),
  .gnav__toggle_wrapper span:nth-of-type(3) {
    width: 80%;
  }
}

.gnav__toggle_wrapper span:nth-of-type(1) {
  top: 28px;
}

@media screen and (max-width: 550px) {
  .gnav__toggle_wrapper span:nth-of-type(1) {
    top: 19px;
  }
}

.gnav__toggle_wrapper span:nth-of-type(2) {
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-size: 1rem;
  text-transform: uppercase;
  color: #fff;
}

@media screen and (max-width: 550px) {
  .gnav__toggle_wrapper span:nth-of-type(2) {
    font-size: 0.7rem;
    top: 25px;
  }
}

.gnav__toggle_wrapper span:nth-of-type(3) {
  top: 59px;
}

@media screen and (max-width: 550px) {
  .gnav__toggle_wrapper span:nth-of-type(3) {
    top: 46px;
  }
}

.gnav__toggle_block.active span:nth-of-type(1) {
  top: 39px;
  left: 13px;
  transform: translateY(6px) rotate(-45deg);
  width: 70%;
}

@media screen and (max-width: 550px) {
  .gnav__toggle_block.active span:nth-of-type(1) {
    top: 26px;
    left: 7px;
  }
}

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

.gnav__toggle_block.active span:nth-of-type(3) {
  top: 51px;
  left: 13px;
  transform: translateY(-6px) rotate(45deg);
  width: 70%;
}

@media screen and (max-width: 550px) {
  .gnav__toggle_block.active span:nth-of-type(3) {
    top: 38px;
    left: 7px;
  }
}

.gnav.open {
  transform: translateZ(0);
}

/***************************

_clinic.scss

***************************/
.clinic_link_list {
  padding-top: 40px;
}

@media screen and (max-width: 768px) {
  .clinic_link_list {
    justify-content: center;
  }
}

.clinic_link_list .list_item {
  margin-right: 30px;
  margin-top: 20px;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .clinic_link_list .list_item {
    margin-right: 0;
  }
}

.clinic_link_list .list_item:last-of-type {
  margin-right: 0;
}

.line_box {
  color: #fff;
  background-color: #00B000;
  border-radius: 10px;
  padding: 20px 30px;
  width: 420px;
  max-width: 100%;
}

@media screen and (max-width: 550px) {
  .line_box {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.line_box .qr_box {
  margin-right: 20px;
}

@media screen and (max-width: 550px) {
  .line_box .qr_box {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
    text-align: center;
  }
}

/***************************

_doctor.scss

***************************/
@media screen and (max-width: 768px) {
  .doctor_msg .flexbox {
    flex-direction: column;
  }
}

.profile_box {
  flex: 0 0 300px;
}

@media screen and (max-width: 768px) {
  .profile_box {
    flex: unset;
    text-align: center;
    margin-bottom: 50px;
  }
}

.doctor_msg .flexbox .txt_box {
  flex: 1 1 auto;
  padding-left: 55px;
}

@media screen and (max-width: 768px) {
  .doctor_msg .flexbox .txt_box {
    flex: unset;
    padding-left: 0;
  }
}

.profile_txt {
  font-size: 16px;
  text-align: center;
  margin-top: 25px;
  line-height: 1.2;
}

.profile_txt .bold {
  font-size: 22px;
  padding-left: 7px;
}

.profile_txt .subfont {
  color: #274599;
  font-size: 14px;
  padding-top: 15px;
  display: block;
}

/***************************

_info.scss

***************************/
.inpage_link_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px 30px;
  /* 250415 add */
  grid-template-columns: repeat(auto-fit, minmax(min(100%,280px), 1fr));
  gap: 10px;
}

.inpage_link_list .btn-style02 {
  margin-right: auto;
  margin-left: auto;
}

/***************************

_facility.scss

***************************/
.facility_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
}

.facility_list li {
  max-width: 360px;
  margin-right: auto;
  margin-left: auto;
}

.facility_list img {
  border-radius: 10px;
}

/***************************

_access.scss

***************************/
@media screen and (max-width: 1024px) {
  .access_info .flexbox {
    flex-direction: column;
  }
}

.access_info .flexbox .imgbox {
  flex: 0 0 420px;
}

@media screen and (max-width: 1024px) {
  .access_info .flexbox .imgbox {
    flex: none;
  }
}

.access_info .flexbox .infobox {
  flex: 1 1 auto;
  margin-left: 60px;
}

@media screen and (max-width: 1024px) {
  .access_info .flexbox .infobox {
    flex: none;
    margin-left: 0;
    margin-top: 60px;
  }
}

@media screen and (max-width: 768px) {
  .access_detail .flex_2col:last-of-type {
    margin-top: 0;
  }
}

/***************************

_top.scss

***************************/
.top_mv {
  position: relative;
  overflow: hidden;
}

.mv_copy {
  position: absolute;
  z-index: 1;
  bottom: 90px;
  left: 115px;
}

@media screen and (max-width: 768px) {
  .mv_copy {
    bottom: 45px;
    left: 45px;
  }
}

@media screen and (max-width: 550px) {
  .mv_copy {
    bottom: 15px;
    left: 30px;
  }
}

@media screen and (max-width: 768px) {
  .mv_copy img {
    width: 300px;
    height: auto;
  }
}

@media screen and (max-width: 550px) {
  .mv_copy img {
    width: 140px;
  }
}

.top_mv .swiper-slide img {
  border-radius: 53px;
}

@media screen and (max-width: 768px) {
  .top_mv .swiper-slide img {
    border-radius: 35px;
  }
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 21px !important;
}

@media screen and (max-width: 550px) {

  .swiper-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: -1px !important;
  }
}

.swiper-pagination-bullet-active {
  background: #274599 !important;
}

.top_what_wrap {
  background: #fff;
  background-image: url(../img/top/bg-deco01.jpg), url(../img/top/bg-deco02.jpg);
  background-repeat: repeat-x;
  background-position: center top, center bottom;
  padding-top: 110px;
  padding-bottom: 110px;
}

@media screen and (max-width: 1024px) {
  .top_what_wrap {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 1024px) {
  .top_what_wrap .flex_2col_item {
    width: 100%;
  }
}

.top_what_wrap .flex_2col_item:first-of-type {
  max-width: 565px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 1024px) {
  .top_what_wrap .flex_2col_item:last-of-type {
    margin-top: 60px;
    text-align: center;
  }
}

@media screen and (max-width: 1024px) {
  .top_what_wrap .flex_2col_item img {
    max-width: 400px;
    width: 80%;
  }
}

.top_link_list li {
  height: 300px;
  display: block;
  position: relative;
  background-image: url(../img/top/top-link01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 49%;
  margin-top: 30px;
  border-radius: 20px;
  transition: 0.35s;
}

@media screen and (max-width: 768px) {
  .top_link_list li {
    width: 100%;
    height: 250px;
  }
}

.top_link_list li:hover {
  opacity: 0.7;
}

.top_link_list li a {
  width: 100%;
  display: block;
  height: inherit;
}

.top_link_list li a:hover {
  opacity: 1;
}

.top_link_list li:first-of-type {
  width: 100%;
  margin-top: 0;
}

.top_link_list li:nth-last-of-type(2) {
  background-image: url(../img/top/top-link02.jpg);
}

.top_link_list li:last-of-type {
  background-image: url(../img/top/top-link03.jpg);
}

.top_link_list li .title_style04 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.top_link_list li i {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70px;
  height: 70px;
  background-color: #274599;
  color: #F29F73;
  border-bottom-right-radius: 20px;
  line-height: 70px;
  text-align: center;
}

/***************************

_footer.scss

***************************/
.footer {
  background: #14224B;
  color: #fff;
  padding: 15px 15px 10px;
}

.footer a {
  color: #fff;
}

.footer a:hover {
  color: #F29F73;
}

.footer .copyright {
  text-align: center;
}

.footer small {
  font-size: 11px;
}

.footer_nav {
  width: 1065px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .footer_nav__list {
    justify-content: flex-start;
  }
}

.footer_nav__list li {
  margin-top: 20px;
  line-height: 1;
  width: 20%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer_nav__list li {
    width: unset;
    margin-right: 20px;
  }
}

.footer_nav__list li+li {
  border-left: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .footer_nav__list li+li {
    border-left: none;
  }
}

.pagetop {
  opacity: 0;
  transition: 0.4s;
}

.pagetop.show {
  position: fixed;
  right: 25px;
  bottom: 30px;
  z-index: 99;
  opacity: 1;
}

@media screen and (max-width: 550px) {
  .pagetop.show {
    right: 10px;
    bottom: 25px;
  }
}

.gnav__item__reserve {
  border-bottom: solid 3px #F29F73;
  font-weight: bold;
  display: block;
  margin-left: 1.2em;
  padding-top: 0.5em;
}

.gnav__item__reserve a {
  color: #F29F73;
}

@media screen and (max-width: 1024px) {
  .gnav__item__reserve {
    margin-left: 0;
    text-align: center;
    padding: 10px 0;
  }
}

/* 230502 */
.bannerbox .deco {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

.bannerbox .deco::before {
  position: absolute;
  top: 9px;
  left: -18px;
  content: "";
  height: 18px;
  width: 1px;
  background-color: #0C1939;
  transform: rotate(-30deg);
  display: block;
}

.bannerbox .deco::after {
  position: absolute;
  top: 9px;
  right: -18px;
  content: "";
  height: 18px;
  width: 1px;
  background-color: #0C1939;
  transform: rotate(30deg);
  display: block;
}

@media screen and (max-width: 550px) {
  .bannerbox .sp-line2::before {
    top: 19px;
    left: -33px;
    height: 42px;
  }

  .bannerbox .sp-line2::after {
    top: 19px;
    right: -33px;
    height: 42px;
  }
}

.bannerbox .under-line {
  line-height: 1;
  border-bottom: 1px solid #0C1939;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}