@charset "UTF-8";
/* ブレイクポイント */
.section {
  margin-bottom: 80px;
}
@media (min-width: 992px) {
  .section {
    margin-bottom: 160px;
  }
}

.section01 {
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  .section01 {
    margin-bottom: 160px;
  }
}

.page-sec {
  margin-bottom: 80px;
}
@media (min-width: 992px) {
  .page-sec {
    margin-bottom: 160px;
  }
}

.section-titleBox {
  position: relative;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .section-titleBox {
    margin-bottom: 40px;
  }
}

.section-title01 {
  color: #333;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media (max-width: 374px) {
  .section-title01 {
    font-size: 1.25rem;
  }
}
@media (min-width: 992px) {
  .section-title01 {
    font-size: 2.5rem;
  }
}

.title-en {
  color: #8E9AA2;
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 4px;
}
@media (min-width: 992px) {
  .title-en {
    font-size: 1.125rem;
    margin-bottom: 6px;
  }
}

.section-titleBox01 {
  position: relative;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .section-titleBox01 {
    margin-bottom: 36px;
  }
}
.section-titleBox01 .title-en {
  font-size: 0.875rem;
}
@media (min-width: 992px) {
  .section-titleBox01 .title-en {
    font-size: 0.9375rem;
  }
}
.section-titleBox01 .section-title01 {
  font-size: 1.375rem;
}
@media (min-width: 992px) {
  .section-titleBox01 .section-title01 {
    font-size: 2rem;
  }
}

.section-title02 {
  position: relative;
  border-bottom: 1px solid #DEDEDE;
  font-size: 1.3125rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .section-title02 {
    letter-spacing: initial;
  }
}
@media (min-width: 992px) {
  .section-title02 {
    font-size: 1.5rem;
    padding-bottom: 16px;
  }
}
@media (min-width: 1200px) {
  .section-title02 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}
.section-title02::before {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 2px #0082C7;
  left: 0;
  bottom: -2px;
  width: 11.4%;
}

.button01 {
  position: relative;
  background-color: grey;
  border: 2px solid #555;
  border-radius: 20px;
  color: #555;
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 9px 4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: center;
  width: 100%;
}
.button01--blue {
  background-color: #0E578C;
  border-color: #0E578C;
  color: #fff;
}
.button01--blue:hover {
  background-color: #fff;
  color: #0E578C;
}
.button01--green {
  background-color: #0EAA4E;
  border-color: #0EAA4E;
  color: #fff;
}
.button01--green:hover {
  background-color: #fff;
  color: #0EAA4E;
}

.util-link02 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .util-link02 {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}

.button02 {
  position: relative;
  background-color: #fff;
  border: 1px solid #0E578C;
  border-radius: 30px;
  -webkit-filter: drop-shadow(0 6px 10px rgba(51, 51, 51, 0.15));
          filter: drop-shadow(0 6px 10px rgba(51, 51, 51, 0.15));
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10.5px 30px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media (min-width: 992px) {
  .button02 {
    padding: 15px 33px;
  }
}
.button02:hover {
  background-color: #0E578C;
}
.button02:hover .button02__text {
  color: #fff;
}
.button02:hover .button02__arrow::before {
  border: solid #fff;
  border-width: 0px 3px 3px 0;
}

.button02__text {
  color: #0E578C;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-right: 13px;
}
@media (max-width: 374px) {
  .button02__text {
    font-size: 3.93vw;
  }
}

.button02__arrow {
  position: relative;
  width: 10px;
  height: 10px;
}
.button02__arrow::before {
  position: absolute;
  content: "";
  top: 52%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  right: 0;
  width: inherit;
  height: inherit;
  border: solid #0E578C;
  border-width: 0px 3px 3px 0;
}

.button03 {
  background-color: #F7F7F7;
  border: 2px solid #6BA2CB;
  border-radius: 30px;
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  color: #0E578C;
  display: block;
  padding: 10.5px 8px;
  text-align: center;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media (min-width: 992px) {
  .button03 {
    padding: 15px 30px;
  }
}
.button03:hover {
  background-color: #6BA2CB;
  color: #fff;
}
.button03 span {
  position: relative;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 500;
}
@media (max-width: 374px) {
  .button03 span {
    font-size: 4vw;
  }
}
@media (min-width: 992px) {
  .button03 span {
    font-size: 1rem;
  }
}
.button03 span::after {
  position: relative;
  top: -1px;
  margin-left: 10px;
  font-family: "Font Awesome 6 Free";
  font-size: 12px;
  content: "\f08e";
  font: var(--fa-font-solid);
}

@media (min-width: 768px) {
  .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.textBox .text:not(:last-child) {
  margin-bottom: 14px;
}

.circle-textBox .circle-text:not(:last-child) {
  margin-bottom: 6px;
}

.circle-textBox {
  margin-bottom: 18px;
}
.circle-textBox .circle-text {
  position: relative;
  padding-left: 18px;
}
.circle-textBox .circle-text::before {
  position: absolute;
  content: "";
  background-color: #0082C7;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  top: 10.5px;
  left: 0;
}

.notes {
  background-color: #F7F7F7;
  padding: 24px;
}
@media (min-width: 768px) {
  .notes {
    padding: 30px;
  }
}

.no-margin-top {
  margin-top: 0 !important;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.lead-box {
  margin-bottom: 70px;
}
@media (min-width: 992px) {
  .lead-box {
    margin-bottom: 100px;
  }
}
.lead-box .lead:not(:last-child) {
  margin-bottom: 16px;
}

.top-visual {
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  .top-visual {
    margin-bottom: 100px;
  }
}

.p-lead-mb {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .p-lead-mb {
    margin-bottom: 30px;
  }
}

.box-small {
  padding: 30px 20px;
}
@media (min-width: 768px) {
  .box-small {
    padding: 30px;
  }
}

.box-large {
  padding: 40px 20px;
}
@media (min-width: 992px) {
  .box-large {
    padding: 80px;
  }
}

.text-note span {
  color: #0E578C;
  font-weight: 600;
}

.text-check {
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
  padding: 16px 0 16px 32px;
}
@media (min-width: 768px) {
  .text-check {
    line-height: 1.4;
    padding: 20px 0 20px 40px;
  }
}
@media (min-width: 992px) {
  .text-check {
    font-size: 1.125rem;
  }
}
.text-check::before {
  position: absolute;
  content: "";
  background: url(../img/common/check-blue.png) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  top: 18px;
  left: 0;
}
@media (min-width: 768px) {
  .text-check::before {
    top: 23px;
    width: 24px;
    height: 24px;
  }
}

.text-check:not(:last-child) {
  border-bottom: 1px dashed #AAAAAA;
}

.text-check:first-child {
  padding-top: 0;
}
.text-check:first-child::before {
  top: 2px;
}

.text-check:last-child {
  padding-bottom: 0;
}

.text-excl {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 16px 0 16px 32px;
}
@media (min-width: 768px) {
  .text-excl {
    padding: 20px 0 20px 40px;
  }
}
@media (min-width: 992px) {
  .text-excl {
    font-size: 1.125rem;
  }
}
.text-excl::before {
  position: absolute;
  content: "";
  background: url(../img/common/excl.png) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  top: 23px;
  left: 0;
}
@media (min-width: 768px) {
  .text-excl::before {
    width: 24px;
    height: 24px;
  }
}

.text-excl:not(:last-child) {
  border-bottom: 1px dashed #AAAAAA;
}

.text-excl:first-child {
  padding-top: 0;
}
.text-excl:first-child::before {
  top: 2px;
}

.text-excl:last-child {
  padding-bottom: 0;
}

.text-circle {
  position: relative;
  font-size: 1rem;
  line-height: 1.4;
  padding-left: 18px;
}
@media (min-width: 768px) {
  .text-circle {
    padding-left: 28px;
  }
}
@media (min-width: 992px) {
  .text-circle {
    font-size: 1.125rem;
  }
}
.text-circle::before {
  position: absolute;
  content: "";
  background-color: #0E578C;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  top: 8px;
  left: 0;
}
@media (min-width: 768px) {
  .text-circle::before {
    width: 12px;
    height: 12px;
  }
}

/* ログインユーザーのみに適用される管理バー（#wpadminbar）のスタイル */
html {
  margin-top: 0 !important;
}

#wpadminbar {
  top: auto !important;
  /* 上部固定を解除 */
  bottom: 0 !important;
  /* 下部に固定 */
  position: fixed;
  /* 念のため固定を明示 */
  /* z-indexが他の要素と競合する場合は調整してください */
}

/* 管理バーを下に移動した場合、body要素の下部に余白が必要になります */
/* SP表示のときに管理バーとフッターが重ならないように注意 */
body.logged-in {
  padding-top: 0 !important;
  padding-bottom: 32px !important;
  /* 管理バーの高さ(32px)分、ページ最下部に余白を追加 */
}

/* SP表示（管理バーが小さくなる 600px以下）の調整 */
@media screen and (max-width: 600px) {
  body.logged-in {
    padding-bottom: 46px !important;
    /* SP時の管理バーの高さ(46px)分に調整 */
  }
}
body.logged-in .footer {
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  body.logged-in .footer {
    padding-bottom: 0px;
  }
}

/* header */
.header {
  background-color: #fff;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  height: 60px;
  z-index: 20;
}
@media (min-width: 1200px) {
  .header {
    position: initial;
    height: 138px;
  }
}

.header__inner {
  margin: auto;
  max-width: 1280px;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
  height: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 1200px) {
  .header__inner {
    height: 138px;
  }
}
@media (min-width: 1600px) {
  .header__inner {
    max-width: 1580px !important;
  }
}

@media (min-width: 1200px) {
  .header__top {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 225px;
  }
}

.header__logo {
  max-width: 124px;
  width: 100%;
}
@media (max-width: 374px) {
  .header__logo {
    max-width: initial;
    width: 40vw;
  }
}
@media (min-width: 768px) {
  .header__logo {
    max-width: 140px;
  }
}
@media (min-width: 1200px) {
  .header__logo {
    max-width: 225px;
  }
}

.header-nav-box {
  display: none;
}
@media (min-width: 1200px) {
  .header-nav-box {
    display: block;
    width: calc(100% - 225px);
    padding-left: 12.42%;
  }
}

@media (min-width: 1200px) {
  .header__utility {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media (min-width: 1200px) {
  .header-utility__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 6px;
  }
}

.header-utility__item {
  margin-right: 30px;
}

.header-utility__time {
  color: #0E578C;
  font-size: 0.9375rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2px;
}
.header-utility__time::before, .header-utility__time::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  background: #8CA7BA;
}
.header-utility__time::before {
  margin-right: 10px;
}
.header-utility__time::after {
  margin-left: 10px;
}

.header-utility__item-link {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  padding-bottom: 12px;
}
@media (min-width: 1200px) {
  .header-utility__item-link {
    font-size: 1.111vw;
  }
}
@media (min-width: 1400px) {
  .header-utility__item-link {
    font-size: 1rem;
  }
}
@media (min-width: 1600px) {
  .header-utility__item-link {
    font-size: 1.125rem;
  }
}
.header-utility__item-link::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 1px;
  width: 0;
  height: 2px;
  background-color: #0082C7;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-utility__item-link:hover::after {
  width: 100%;
}

.header-utility__btnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-utility__btnBox .button01 {
  font-size: 0.972vw;
  width: 11.66vw;
}
@media (min-width: 1400px) {
  .header-utility__btnBox .button01 {
    font-size: 0.875rem;
  }
}
@media (min-width: 1600px) {
  .header-utility__btnBox .button01 {
    font-size: 1rem;
  }
}
.header-utility__btnBox .button01:not(:last-child) {
  margin-right: 8px;
}

.header-nav__list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-nav__item-link {
  font-size: 1.111vw;
  font-weight: 500;
  display: block;
  line-height: 1.5;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  padding-top: 16px;
  padding-bottom: 12px;
}
@media (min-width: 1200px) {
  .header-nav__item-link {
    position: relative;
    font-size: 1.111vw;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
@media (min-width: 1400px) {
  .header-nav__item-link {
    font-size: 1rem;
  }
}
@media (min-width: 1600px) {
  .header-nav__item-link {
    font-size: 1.125rem;
  }
}
.header-nav__item-link::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 1px;
  width: 0;
  height: 2px;
  background-color: #0082C7;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-nav__item-link:hover::after {
  width: 100%;
}

.header-nav__item-link.arrow {
  position: relative;
}

.header-nav__item:first-child {
  padding-left: 0;
}

.header-nav__item:last-child {
  padding-right: 0;
}

/* プルダウンメニュー */
.nav-sub {
  position: absolute;
  background-color: #fff;
  border-radius: 8px;
  top: 52px;
  width: 190px;
  padding: 8px 18px 8px 20px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
}
.nav-sub--01 {
  width: 190px;
}

.nav-sub__item:not(:last-child) {
  position: relative;
}
.nav-sub__item:not(:last-child)::after {
  position: absolute;
  content: "";
  border-bottom: 1px dashed #707070;
  width: 100%;
  bottom: 0;
  left: 0;
}

.nav-sub__item-link {
  position: relative;
  display: block;
  font-size: 0.875rem;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
  height: initial;
  line-height: initial;
}
.nav-sub__item-link::before {
  position: absolute;
  content: "";
  background-color: #0082C7;
  border-radius: 50%;
  top: 15.5px;
  left: 0;
  width: 6px;
  height: 6px;
}
.nav-sub__item-link:hover {
  color: #0E578C;
}

.nav-sub__item ul li a {
  border-top: 1px dashed #707070;
  display: block;
  font-size: 0.8125rem;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-left: 14px;
}

.header-nav__item {
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.header-nav__item:hover .nav-sub {
  visibility: visible;
  opacity: 1;
}

/* ドロワーメニュー */
.drawer-icon {
  position: fixed;
  background-color: #0E578C;
  border-radius: 50%;
  top: 11px;
  right: 20px;
  z-index: 300;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  margin-left: auto;
  padding: 10px;
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-active .drawer-icon__bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 6px;
  width: 16px;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 6px;
}

.drawer-icon__bars {
  position: absolute;
  width: 16px;
  height: 14px;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width: 1400px) {
  .drawer-icon__bars {
    width: 0px;
  }
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  height: 2px;
  top: 0;
  right: 0;
}

.drawer-icon__bar1 {
  background: #fff;
  top: 0;
  width: 16px;
}

.drawer-icon__bar2 {
  background: #fff;
  top: 6px;
  width: 16px;
}

.drawer-icon__bar3 {
  background: #fff;
  top: 12px;
  width: 16px;
}

.drawer-content {
  background-color: #fff;
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  border-radius: 24px 0 0 24px;
  width: 85.5%;
  height: 100vh;
  position: fixed;
  top: 60px;
  right: 0;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 200px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  z-index: 299;
}
.drawer-content.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__logo {
  max-width: 170px;
  width: 100%;
  margin: 10px 8px 0 20px;
}

.drawer-content__items {
  margin-top: 14px;
  margin-bottom: 30px;
  position: relative;
}
@media (min-width: 1200px) {
  .drawer-content__items {
    margin-left: 32px;
  }
}

.drawer-content__item {
  position: relative;
  border-bottom: 1px dashed #707070;
  padding: 16px 0px 16px 0;
}
.drawer-content__item .link {
  color: #333;
  display: block;
  font-weight: 500;
  font-size: 1rem;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  margin-right: 32px;
}

.drawer-accordion {
  position: absolute;
  width: 7px;
  height: 4px;
  right: 6px;
  top: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.drawer-accordion .drawer-accordion-arrow {
  width: 8px;
  height: 8px;
  border: solid #0082C7;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
}
.drawer-accordion .drawer-accordion-arrow.is-open {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.drawer-nav {
  display: none;
}

.drawer-nav__link {
  position: relative;
  display: block;
  color: #333;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 4px 0 4px 16px;
  margin-left: 18px;
}
.drawer-nav__link::before {
  position: absolute;
  content: "";
  background-color: #0082C7;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.drawer-nav__link:first-child::before {
  top: 64%;
}

.drawer-nav__link:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.drawer-nav__link:last-child::before {
  top: 59%;
}

.drawer-nav__link:nth-child(1) {
  padding-top: 12px;
}

.web-sp {
  margin-bottom: 20px;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 298;
  display: none;
}
.drawer-background.is-active {
  display: block;
}

.drawer-contact .web,
.drawer-contact .line {
  width: 100%;
  height: 50px;
}
.drawer-contact .web img,
.drawer-contact .line img {
  margin: 0 auto;
  width: 21px;
  height: 16px;
}
.drawer-contact .web {
  margin-right: 8px;
  margin-bottom: 8px;
}
.drawer-contact .drawer-contact__link {
  border-radius: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: inherit;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 3px;
  padding-left: 3px;
}
.drawer-contact .drawer-contact__link span {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}
@media (max-width: 374px) {
  .drawer-contact .drawer-contact__link span {
    font-size: 3.7vw;
  }
}
.drawer-contact .drawer-contact__link--web {
  background-color: #0E578C;
  color: #fff;
}
.drawer-contact .drawer-contact__link--line {
  background-color: #0EAA4E;
  color: #fff;
}

/* footer */
.footer {
  padding-bottom: 12px;
  padding-bottom: 100px;
}
@media (min-width: 992px) {
  .footer {
    background-color: #F7F7F7;
    padding-bottom: 12px;
  }
}

.footer-inner {
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .footer-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: initial;
  }
}

.footer-nav {
  display: none;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  .footer-nav {
    display: block;
  }
}

.footer-nav-top {
  margin-bottom: 54px;
}

@media (min-width: 992px) {
  .footer-nav__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (min-width: 992px) {
  .footer-nav__link {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
  }
}
@media (min-width: 1200px) {
  .footer-nav__link {
    font-size: 1rem;
  }
}

.footer-nav__link,
.footer-nav__child-link {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.footer-nav__link:hover,
.footer-nav__child-link:hover {
  color: #0E578C;
}

@media (min-width: 992px) {
  .footer-nav__child {
    margin-top: 8px;
  }
}

.footer-nav__child-item ul li a {
  position: relative;
  padding-left: 16px;
  font-size: 0.75rem;
  font-weight: 500;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.footer-nav__child-item ul li a::before {
  position: absolute;
  content: "";
  background-color: #707070;
  width: 8px;
  height: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.footer-nav__child-item ul li a:hover {
  color: #0E578C;
}

@media (min-width: 992px) {
  .footer-nav__child-link {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 500;
  }
}
@media (min-width: 1200px) {
  .footer-nav__child-link {
    font-size: 0.875rem;
  }
}

.footer-bottom {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 64px;
}
.footer-bottom .footer-nav__list:not(:last-child) {
  margin-right: 40px;
}

@media (min-width: 992px) {
  .copyright-sp {
    display: none;
  }
}

.copyright__sp-text {
  font-size: 0.75rem;
  text-align: center;
}
@media (max-width: 374px) {
  .copyright__sp-text {
    font-size: 0.625rem;
  }
}
.copyright__sp-text small {
  font-weight: 500;
}

.copyright__text {
  font-size: 0.625rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .copyright__text {
    font-size: 0.875rem;
  }
}
.copyright__text small {
  font-weight: 500;
}

/* bottom-contact */
.bottom-contact-pc {
  display: none;
}
@media (min-width: 992px) {
  .bottom-contact-pc {
    position: fixed;
    bottom: 24px;
    right: 40px;
    z-index: 30;
  }
}
@media (min-width: 768px) {
  .bottom-contact-pc .bottom-contact-pc__img {
    display: block;
    -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
            filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
    width: 130px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .bottom-contact-pc .bottom-contact-pc__img:hover {
    opacity: 0.8;
  }
}
@media (min-width: 768px) {
  .bottom-contact-pc .bottom-contact-pc__img-web {
    margin-bottom: 16px;
  }
}

.bottom-contact-sp {
  position: fixed;
  border: 1px solid #E8E8E8;
  background-color: #E8E8E8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 30;
  padding: 10px 8px;
}
@media (min-width: 992px) {
  .bottom-contact-sp {
    display: none;
  }
}
.bottom-contact-sp .tel,
.bottom-contact-sp .web,
.bottom-contact-sp .line {
  width: 33.3%;
  height: 50px;
}
.bottom-contact-sp .tel img,
.bottom-contact-sp .web img,
.bottom-contact-sp .line img {
  margin: 0 auto;
  width: 21px;
  height: 16px;
}
.bottom-contact-sp .tel,
.bottom-contact-sp .web {
  margin-right: 4px;
}
.bottom-contact-sp .bottom-contact__link {
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: inherit;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 3px;
  padding-left: 3px;
}
.bottom-contact-sp .bottom-contact__link span {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}
@media (max-width: 374px) {
  .bottom-contact-sp .bottom-contact__link span {
    font-size: 3.7vw;
  }
}
.bottom-contact-sp .bottom-contact__link--tel {
  border: 1px solid #0E578C;
  background-color: #fff;
  color: #0E578C;
}
.bottom-contact-sp .bottom-contact__link--web {
  background-color: #0E578C;
  border: 1px solid #0E578C;
  color: #fff;
}
.bottom-contact-sp .bottom-contact__link--line {
  background-color: #0EAA4E;
  border: 1px solid #0EAA4E;
  color: #fff;
}

.top-info {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .top-info {
    margin-bottom: 100px;
  }
}

@media (min-width: 768px) {
  .info-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.info-content {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .info-content {
    margin-bottom: initial;
    margin-right: 8.1%;
    width: 58.7%;
  }
}
@media (min-width: 1200px) {
  .info-content {
    width: 43.7%;
  }
}

.info-content__clinic {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 32px;
}

.info-content__clinic-name {
  color: #0E578C;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.42;
}
@media (min-width: 992px) {
  .info-content__clinic-name {
    font-size: 1.375rem;
  }
}

.info-logo {
  margin-right: 16px;
  max-width: 30px;
  width: 100%;
}
@media (min-width: 992px) {
  .info-logo {
    margin-right: 28px;
    max-width: 46px;
  }
}

.info-item {
  margin-bottom: 30px;
}

.info-row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info-row:nth-child(1),
.info-row:nth-child(2),
.info-row:nth-child(4) {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.info-row:nth-child(1) .info-row__title,
.info-row:nth-child(2) .info-row__title {
  margin-top: 5px;
}

.info-row:not(:last-child) {
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .info-row:not(:last-child) {
    margin-bottom: 16px;
  }
}

.info-row__title {
  background-color: #0082C7;
  border-radius: 12px;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.77;
  margin-right: 10px;
  width: 71px;
}
@media (min-width: 992px) {
  .info-row__title {
    margin-right: 24px;
  }
}

.info-row__text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.42;
  width: calc(100% - 81px);
}
@media (min-width: 768px) {
  .info-row__text {
    font-size: 1.0625rem;
    line-height: 1.6;
    width: calc(100% - 95px);
  }
}

.schedule {
  max-width: 100%;
  overflow-x: auto;
}
.schedule .info-row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.schedule-wrapper {
  margin-bottom: 10px;
}

.schedule__table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.625rem;
}
.schedule__table thead tr {
  background-color: #0082C7;
}
.schedule__table thead th {
  color: #fff;
  border-right: 1px solid #0082C7;
}
.schedule__table th,
.schedule__table td {
  padding: 0.8em 0.2em 0.8em;
  border-bottom: 1px solid #D3D3D3;
}
@media (min-width: 768px) {
  .schedule__table th,
  .schedule__table td {
    padding: 0.8em 0.5em 0.8em;
  }
}
.schedule__table th {
  font-size: 0.8125rem;
  line-height: 1.428;
}
@media (max-width: 374px) {
  .schedule__table th {
    font-size: 3.25vw;
  }
}
@media (min-width: 992px) {
  .schedule__table th {
    font-size: 1rem;
  }
}
.schedule__table td {
  font-size: 0.875rem;
  color: #0E578C;
  padding: 0.6em 0.5em;
  vertical-align: middle;
}
@media (max-width: 374px) {
  .schedule__table td {
    font-size: 3.25vw;
  }
}
@media (min-width: 768px) {
  .schedule__table td {
    font-size: 1rem;
  }
}
.schedule__table .border {
  display: inline-block;
  width: 8px;
  height: 2px;
  background-color: #888;
  margin-bottom: 4px;
}
.schedule__table .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #0082C7;
  border-radius: 50%;
}
.schedule__table .dot01 {
  position: relative;
  background-color: transparent;
  border: 1px solid #0E578C;
  width: 10px;
  height: 10px;
}
.schedule__table .dot01::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background-color: #fff;
  border: 1px solid #0E578C;
  border-radius: 50%;
}
.schedule__table .time-title {
  text-align: left;
}
.schedule__table .time {
  color: #555;
  font-size: 0.8125rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1.428;
  text-align: left;
}
@media (max-width: 374px) {
  .schedule__table .time {
    font-size: 3.25vw;
  }
}
@media (min-width: 768px) {
  .schedule__table .time {
    font-size: 0.875rem;
  }
}
.schedule__table .time span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
}
.schedule__table .padding01 {
  padding-left: 0.8em;
}
@media (max-width: 374px) {
  .schedule__table .padding01 {
    padding-left: 4px;
  }
}
@media (min-width: 768px) {
  .schedule__table .padding01 {
    padding-left: 1.1em;
  }
}
.schedule__table .padding02 {
  padding-right: 0.5em;
}
@media (min-width: 768px) {
  .schedule__table .padding02 {
    padding-right: 0.8em;
  }
}

.schedule-notes .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #0082C7;
  border-radius: 50%;
}

.schedule-notes .dot01 {
  position: relative;
  background-color: transparent;
  border: 1px solid #0E578C;
  width: 10px;
  height: 10px;
  margin-right: 4px;
}
.schedule-notes .dot01::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background-color: #fff;
  border: 1px solid #0E578C;
  border-radius: 50%;
}

.time-row__item {
  font-size: 0.9375rem;
  font-weight: 500;
}
.time-row__item span {
  font-size: 0.875rem;
  font-weight: 600;
}

.time-row__item:not(:last-child) {
  margin-right: 16px;
}
@media (max-width: 374px) {
  .time-row__item:not(:last-child) {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .time-row__item:not(:last-child) {
    margin-bottom: 0;
    margin-right: 16px;
  }
}

.schedule-note {
  font-size: 0.8125rem;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 374px) {
  .schedule-note {
    font-size: 3.25vw;
  }
}
@media (min-width: 768px) {
  .schedule-note {
    font-size: 0.875rem;
  }
}

.info-utility {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 374px) {
  .info-utility {
    display: block;
  }
}
.info-utility .button01 {
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}
@media (min-width: 992px) {
  .info-utility .button01 {
    border-radius: 30px;
    font-size: 1rem;
    padding: 17.5px 4px;
  }
}
.info-utility .button01:not(:last-child) {
  margin-right: 5px;
}
@media (max-width: 374px) {
  .info-utility .button01:not(:last-child) {
    margin-right: 0;
    margin-bottom: 8px;
  }
}
@media (min-width: 768px) {
  .info-utility .button01:not(:last-child) {
    margin-right: 8px;
  }
}

.access-map {
  width: 100%;
}
@media (min-width: 768px) {
  .access-map {
    margin-right: calc(50% - 50vw);
    width: 60.5%;
  }
}

.iframe-wrap {
  width: 100%;
  position: relative;
  aspect-ratio: 335/310;
}
.iframe-wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .iframe-wrap {
    aspect-ratio: 720/592;
  }
}

/*---------------------------------
  パンくずリスト
---------------------------------*/
/* breadcrumb */
.post-type-archive-news .breadcrumb-inner,
.single .breadcrumb-inner {
  max-width: 960px;
}

.breadcrumb-box {
  margin-top: 20px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .breadcrumb-box {
    margin-top: 30px;
    margin-bottom: 100px;
  }
}

.breadcrumb-inner {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

.breadcrumb-content {
  font-weight: 400;
  line-height: 1.2;
}
.breadcrumb-content a {
  padding-right: 6px;
  padding-left: 6px;
}
@media (min-width: 992px) {
  .breadcrumb-content a {
    padding-right: 10px;
    padding-left: 10px;
  }
}
.breadcrumb-content .home {
  padding-left: 0;
}
.breadcrumb-content .current-item {
  padding-left: 6px;
}
@media (min-width: 992px) {
  .breadcrumb-content .current-item {
    padding-left: 10px;
  }
}

.breadcrumb-content span {
  position: relative;
  top: -1px;
  font-size: 0.625rem;
}
@media (min-width: 992px) {
  .breadcrumb-content span {
    top: -0.5px;
    font-size: 0.75rem;
  }
}
.breadcrumb-content span #text {
  font-size: 0.625rem;
}

/*---------------------------------
  一覧ページ ページネーション
---------------------------------*/
/* pagination */
.pagination {
  text-align: center;
}

.pagination a {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.pagination a:hover {
  opacity: 0.6;
}

.pagination a.next,
.pagination a.prev {
  position: relative;
  background-color: initial;
  color: #0082C7;
  font-size: 1rem;
  top: 3px;
}
@media (min-width: 768px) {
  .pagination a.next,
  .pagination a.prev {
    position: initial;
    top: initial;
  }
}

.pagination a.next:hover,
.pagination a.prev:hover {
  opacity: 0.6;
}

.page-numbers {
  background-color: #fff;
  border: 1px solid #0082C7;
  border-radius: 50%;
  color: #0082C7;
  display: inline-block;
  font-size: 1.125rem;
  font-family: "Open Sans", sans-serif;
  width: 48px;
  height: 48px;
  line-height: 44px;
  margin-right: 18px;
  text-align: center;
  text-decoration: none;
}
@media (min-width: 768px) {
  .page-numbers {
    font-size: 1.25rem;
  }
}

.page-numbers:last-child {
  margin-right: 0;
}

.page-numbers.current {
  background-color: #0082C7;
  color: #fff;
}

.page-numbers.dots,
.page-numbers.next,
.page-numbers.prev {
  border: none;
  line-height: 40px;
  min-width: initial;
  width: auto;
}

.dots {
  background-color: initial;
}

/* -------------------------------
 著者情報
------------------------------- */
.author-boxes {
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .author-boxes {
    margin-bottom: 80px;
  }
}

@media (min-width: 768px) {
  .author-content__row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 14px;
  }
}

.author-title {
  position: relative;
  font-size: 0.75rem;
  line-height: 1.4;
  margin-bottom: 6px;
  padding-left: 16px;
}
@media (min-width: 768px) {
  .author-title {
    font-size: 0.875rem;
    margin-bottom: 10px;
  }
}
.author-title::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #6ba2cb;
  border-right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.author {
  border: 2px solid #0082C7;
  background-color: #fff;
  border-radius: 16px;
  padding: 16px;
}
@media (min-width: 768px) {
  .author {
    padding: 20px;
  }
}

.author-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .author-box {
    margin-bottom: initial;
  }
}

.author-content {
  width: calc(100% - 100px);
}
@media (min-width: 768px) {
  .author-content {
    border-bottom: none;
    width: initial;
  }
}

.author-image {
  position: relative;
  max-width: 120px;
  width: 100%;
  margin-right: 10px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .author-image {
    position: relative;
    margin-left: 0;
    margin-right: 20px;
    margin-bottom: initial;
    max-width: 148px;
    width: 100%;
  }
}

.author-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.author-content__name,
.author-content__company {
  color: #333;
}

.author-content__name {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .author-content__name {
    font-size: 1.125rem;
    margin-right: 16px;
  }
}

.author-content__company {
  font-size: 0.875rem;
  line-height: 1.428;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .author-content__company {
    font-size: 1.125rem;
    margin-right: 20px;
    margin-bottom: initial;
    line-height: initial;
  }
}

.author-content__bio {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.857;
}

/*---------------------------------
  404
---------------------------------*/
.page-404 {
  margin-top: 60px;
  margin-bottom: 100px;
  padding-top: 80px;
  text-align: center;
}
@media (min-width: 992px) {
  .page-404 {
    margin-top: 100px;
  }
}

.page-404__title {
  color: #0E578C;
  font-size: 1.25rem;
  font-weight: 500;
}
@media (min-width: 992px) {
  .page-404__title {
    font-size: 1.875rem;
  }
}

.page-404__link {
  text-decoration: underline;
  display: block;
  font-size: 1rem;
  margin-top: 40px;
  font-weight: 500;
}

.page-template-page .blog {
  margin-bottom: 160px;
}

/*---------------------------------
  下層ページFV テンプレートページ
---------------------------------*/
.post-type-archive .fv-visual,
.single .fv-visual,
.archive.category .fv-visual {
  margin-bottom: 0;
}

.page-id-203 .fv {
  display: none;
}

.fv-visual {
  padding-right: 20px;
  padding-left: 20px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .fv-visual {
    margin-bottom: 100px;
  }
}

.fv {
  background-color: #0E578C;
  border-radius: 8px;
}

.fv__content {
  padding-top: 42px;
  padding-bottom: 42px;
}
@media (min-width: 768px) {
  .fv__content {
    padding-top: 74px;
    padding-bottom: 74px;
  }
}

.fv__title {
  color: #fff;
  font-size: 1.5rem;
}
@media (max-width: 374px) {
  .fv__title {
    font-size: 6vw;
  }
}
@media (min-width: 992px) {
  .fv__title {
    font-size: 2.5vw;
  }
}
@media (min-width: 1600px) {
  .fv__title {
    font-size: 2.5rem;
  }
}

/*---------------------------------
  目次
---------------------------------*/
.toc-wrapper {
  margin: 0 auto 40px;
  max-width: 920px;
  width: 100%;
}
@media (min-width: 768px) {
  .toc-wrapper {
    margin-bottom: 80px;
  }
}

.toc-boxes {
  border: 5px solid #CDDCE5;
  border-radius: 16px;
  padding: 30px 20px;
}
@media (min-width: 768px) {
  .toc-boxes {
    padding: 48px 50px;
  }
}

.toc-box-lead {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 992px) {
  .toc-box-lead {
    font-size: 2rem;
    margin-bottom: 18px;
  }
}
.toc-box-lead span {
  color: #8E9AA2;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  padding-left: 12px;
}
@media (min-width: 768px) {
  .toc-box-lead span {
    padding-left: 16px;
  }
}
.toc-box-lead::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  background: #CDDCE5;
  margin-left: 14px;
}
@media (min-width: 768px) {
  .toc-box-lead::after {
    padding-left: 20px;
  }
}

.toc-item:not(:last-child) {
  margin-bottom: 16px;
}

.toc-item {
  position: relative;
  display: block;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  padding-left: 16px;
}
@media (min-width: 768px) {
  .toc-item {
    line-height: 1.75;
    padding-left: 24px;
  }
}
.toc-item::before {
  position: absolute;
  content: "";
  background-color: #0082C7;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  top: 10px;
  left: 0;
}
@media (min-width: 768px) {
  .toc-item::before {
    font-weight: 400;
    width: 10px;
    height: 10px;
    top: 9.5px;
  }
}
.toc-item:hover {
  color: #0E578C;
}

.mark-text {
  position: relative;
}
.mark-text::before {
  position: absolute;
  content: "";
  background-color: #0E578C;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.page-note-box {
  background-color: #F4F7FC;
  padding: 32px 20px 22px;
}
@media (min-width: 768px) {
  .page-note-box {
    padding: 40px 50px 40px;
  }
}
.page-note-box p {
  font-family: "Noto Sans JP", serif;
}

.other-box {
  background-color: #F8F8F8;
  padding: 20px;
}
.other-box p {
  font-family: "Noto Sans JP", serif;
  font-size: 0.8125rem;
}
@media (min-width: 768px) {
  .other-box p {
    font-size: 0.875rem;
  }
}

/*---------------------------------
  固定ページテンプレート
---------------------------------*/
.blog__content > :first-child h2,
.blog__content div > :first-child h2 {
  margin-top: 0;
}

.page-child .blog__content > h2:first-child {
  margin-top: 0;
}

.blog__content > h2:first-child,
.blog__content div > h2:first-child {
  margin-top: 0;
}

.blog.page-child article p {
  font-size: 1rem;
}
.blog.page-child article h2 {
  margin: 3.5rem 0 1rem;
}
@media (min-width: 768px) {
  .blog.page-child article h2 {
    margin: 4.5rem 0 1.25rem;
  }
}
@media (min-width: 768px) {
  .blog.page-child article li {
    font-size: 1rem;
  }
}
.blog.page-child .p-access-map {
  width: 100%;
}
.blog.page-child .p-iframe-wrap {
  aspect-ratio: 16/9;
  width: 100%;
  position: relative;
}
.blog.page-child .p-iframe-wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.wp-block-button__link {
  font-family: "Noto Sans JP", sans-serif;
  text-decoration: none !important;
}

/*---------------------------------
  モーダル
---------------------------------*/
/* modal */
.enlarge {
  color: #0068E2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.875rem;
  font-weight: 500;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  text-decoration: underline;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  margin-top: 10px;
  margin-bottom: 12px;
}
.enlarge:hover {
  opacity: 0.7;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(95, 95, 95, 0.8);
  display: none;
  z-index: 33;
}

.bigimg {
  position: absolute;
  width: 95%;
  max-width: 735px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width: 1200px) {
  .bigimg {
    max-width: 900px;
  }
}
@media (min-width: 1400px) {
  .bigimg {
    max-width: 1000px;
  }
}
@media (min-width: 1600px) {
  .bigimg {
    max-width: 1400px;
  }
}
.bigimg img {
  width: 100%;
  height: auto;
  display: block;
}

.modal-content {
  position: relative;
  width: inherit;
  height: inherit;
}

.modal-close::before {
  position: absolute;
  content: "";
  background-color: #fff;
  border-radius: 50%;
  top: -47px;
  right: 10px;
  width: 36px;
  height: 36px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .modal-close::before {
    top: -19px;
    right: -15px;
  }
}
@media (min-width: 992px) {
  .modal-close::before {
    top: -24px;
    right: -24px;
    width: 48px;
    height: 48px;
  }
}
.modal-close::after {
  position: absolute;
  content: "×";
  color: #333;
  font-size: 24px;
  font-weight: bold;
  top: -47px;
  right: 9.5px;
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
@media (min-width: 768px) {
  .modal-close::after {
    top: -19px;
    right: -15px;
  }
}
@media (min-width: 992px) {
  .modal-close::after {
    top: -25px;
    right: -24px;
    width: 48px;
    height: 48px;
    font-size: 32px;
  }
}

/*---------------------------------
  WordPressブロック機能、プラグインのカスタマイズCSS
---------------------------------*/
/* アコーディオン */
.wp-block-accordion-heading {
  font-size: initial !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: initial !important;
}

.wp-block-accordion-heading:before {
  display: none;
}

/* VK Blocks Pro */
.vk_tableOfContents_list li::before {
  display: none !important;
}

/*---------------------------------
  トップページ
---------------------------------*/
/* main-visual */
.main-visual {
  margin-right: 20px;
  margin-left: 20px;
}

@media (min-width: 1600px) {
  .mv-inner {
    max-width: 1480px !important;
  }
}

.mv {
  position: relative;
  background: url(../img/index/mv_sp.webp) no-repeat center center/cover;
  margin-bottom: 32px;
  aspect-ratio: 335/680;
  width: 100%;
  height: 680px;
}
@media (min-width: 768px) {
  .mv {
    background: url(../img/index/mv_pc.webp) no-repeat center center/cover;
    margin-bottom: 88px;
    aspect-ratio: 1400/700;
    height: initial;
  }
}
@media (min-width: 1200px) {
  .mv {
    aspect-ratio: 1400/600;
  }
}

.mv-content {
  position: absolute;
  top: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  width: 92%;
}
@media (min-width: 768px) {
  .mv-content {
    top: 10.3%;
  }
}
@media (min-width: 992px) {
  .mv-content {
    top: 13.3%;
  }
}

.mv-top {
  margin-bottom: 16px;
}
@media (min-width: 1200px) {
  .mv-top {
    margin-bottom: 40px;
  }
}

.mv-top__lead {
  -webkit-filter: drop-shadow(0 3px 6px rgb(240, 232, 223));
          filter: drop-shadow(0 3px 6px rgb(240, 232, 223));
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .mv-top__lead {
    font-size: 1.667vw;
  }
}
@media (min-width: 1400px) {
  .mv-top__lead {
    margin-bottom: 22px;
  }
}

.mv-top__title {
  font-size: 1.6875rem;
  font-weight: 600;
  color: #0E578C;
  line-height: 1.6;
  margin-bottom: 16px;
}
@media (max-width: 374px) {
  .mv-top__title {
    font-size: 7.2vw;
  }
}
@media (min-width: 768px) {
  .mv-top__title {
    font-size: 3.333vw;
    line-height: 1.44;
    margin-bottom: 8px;
  }
}
@media (min-width: 1200px) {
  .mv-top__title {
    letter-spacing: -0.03em;
  }
}
@media (min-width: 1400px) {
  .mv-top__title {
    margin-bottom: 24px;
  }
}
.mv-top__title .dots {
  font-size: 2.25rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
}
@media (max-width: 374px) {
  .mv-top__title .dots {
    font-size: 9.3vw;
  }
}
@media (min-width: 768px) {
  .mv-top__title .dots {
    font-size: 3.333vw;
  }
}
.mv-top__title .dots::before {
  content: "・・・・・・・・";
  position: absolute;
  top: -0.8em;
  left: 11px;
  width: 94%;
  color: #0E578C;
  font-size: 0.5em;
  letter-spacing: 0.17em;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
@media (min-width: 1200px) {
  .mv-top__title .dots::before {
    letter-spacing: 0.15em;
  }
}
@media (min-width: 2100px) {
  .mv-top__title .dots::before {
    left: 17px;
  }
}

.mv-top__text {
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  color: #333;
  font-weight: 500;
  font-size: 5.333vw;
  font-size: 1rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .mv-top__text {
    font-size: 1.527vw;
    line-height: 1.625;
  }
}

.mv-content__bottom {
  margin-bottom: 16px;
}
@media (min-width: 1200px) {
  .mv-content__bottom {
    margin-bottom: 32px;
  }
}
@media (min-width: 1400px) {
  .mv-content__bottom {
    margin-bottom: 40px;
  }
}
@media (min-width: 1600px) {
  .mv-content__bottom {
    margin-bottom: 56px;
  }
}

.clinic-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  row-gap: 12px;
  max-width: 252px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .clinic-features {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    row-gap: initial;
    margin: 0 auto;
    max-width: initial;
    width: 57.11vw;
  }
}
@media (min-width: 1200px) {
  .clinic-features {
    width: 41.11vw;
  }
}
.clinic-feature {
  background-color: #fff;
  border: 1px solid #0E578C;
  border-radius: 50%;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: #0E578C;
  font-size: 0.875rem;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.3;
  letter-spacing: 0.03em;
  max-width: 120px;
  width: 100%;
  min-height: 120px;
}
@media (min-width: 768px) {
  .clinic-feature {
    font-size: 0.75rem;
    max-width: initial;
    width: 12.3vw;
    height: 12.3vw;
    min-height: initial;
  }
}
@media (min-width: 1200px) {
  .clinic-feature {
    font-size: 0.875rem;
    width: 9vw;
    height: 9vw;
  }
}
@media (min-width: 1400px) {
  .clinic-feature {
    font-size: 0.9375rem;
  }
}
@media (min-width: 1600px) {
  .clinic-feature {
    font-size: 1.041vw;
  }
}
.clinic-feature span {
  font-weight: 600;
}

@media (min-width: 768px) {
  .mv-cv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.main-visual .button01 {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 1rem;
  margin: 0 auto;
  max-width: 255px;
  width: 100%;
  padding: 12.5px 4px;
  border-radius: 30px;
}
@media (min-width: 768px) {
  .main-visual .button01 {
    font-size: 0.875rem;
    margin: initial;
  }
}
@media (min-width: 1200px) {
  .main-visual .button01 {
    font-size: 1rem;
    padding: 17.5px 4px;
  }
}
@media (min-width: 1600px) {
  .main-visual .button01 {
    border-radius: 50px;
    font-size: 1.11vw;
    max-width: initial;
    padding: 22.5px 4px;
    width: 17.7vw;
  }
}
.main-visual .button01:not(:last-child) {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .main-visual .button01:not(:last-child) {
    margin-bottom: initial;
    margin-right: 16px;
  }
}
@media (min-width: 992px) {
  .main-visual .button01:not(:last-child) {
    margin-right: 30px;
  }
}

/* intro */
.intro {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .intro {
    margin-bottom: 120px;
  }
}

.intro__top {
  margin-bottom: 24px;
}
@media (min-width: 1200px) {
  .intro__top {
    padding-right: 62.5px;
    padding-left: 62.5px;
  }
}

.intro__lead,
.intro__text {
  color: #555;
}
@media (min-width: 992px) {
  .intro__lead,
  .intro__text {
    color: #333;
  }
}

.intro__lead:not(:last-child) {
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .intro__lead:not(:last-child) {
    margin-bottom: 6px;
  }
}

.intro__lead {
  font-size: 1rem;
  font-weight: 600;
}
@media (min-width: 992px) {
  .intro__lead {
    font-weight: 500;
  }
}
@media (min-width: 1200px) {
  .intro__lead {
    font-size: 1.375rem;
  }
}

.intro__box {
  background-color: #F7F7F7;
  border-radius: 16px;
  padding: 24px 20px;
}
@media (min-width: 992px) {
  .intro__box {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .intro__box {
    padding: 40px 62.5px;
  }
}

.intro__text:not(:last-child) {
  margin-bottom: 14px;
}

.intro__text {
  font-size: 0.9375rem;
}
@media (min-width: 1200px) {
  .intro__text {
    font-size: 1rem;
  }
}

/* primary */
.primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .primary {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
  }
}
.primary .textBox {
  margin-bottom: 40px;
}

.primary-content {
  display: contents;
}
@media (min-width: 768px) {
  .primary-content {
    display: initial;
    margin-right: 4.835%;
    width: 48.38%;
  }
}

.primary-img {
  margin-bottom: 16px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
@media (min-width: 768px) {
  .primary-img {
    margin-bottom: initial;
    margin-right: calc(50% - 50vw);
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
    width: 54.84%;
  }
}

.primary .section-titleBox {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
@media (min-width: 768px) {
  .primary .section-titleBox {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}

/* top-greeting */
.top-greeting {
  position: relative;
}

.greeting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .greeting {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
  }
}

.greeting__imgBox {
  margin-bottom: 20px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
@media (min-width: 768px) {
  .greeting__imgBox {
    display: initial;
    margin-bottom: initial;
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
    width: 40.32%;
  }
}

.greeting__img {
  margin-bottom: 16px;
  width: 100%;
}
@media (min-width: 768px) {
  .greeting__img {
    margin-bottom: 24px;
  }
}

.greeting__content {
  position: relative;
  display: contents;
}
@media (min-width: 768px) {
  .greeting__content {
    display: initial;
    margin-right: 6.452%;
    width: 53.22%;
  }
}

.greeting__textBox {
  margin-bottom: 40px;
}

.greeting__text:not(:last-child) {
  margin-bottom: 14px;
}

.greeting__row {
  border-left: 2px solid #0E578C;
  padding-left: 8px;
}
@media (min-width: 992px) {
  .greeting__row {
    padding-left: 16px;
  }
}

.greeting__row-clinic,
.greeting__row-name {
  color: #0E578C;
  font-weight: 500;
}

.greeting__row-clinic {
  font-size: 0.9375rem;
  margin-bottom: 3px;
}
@media (min-width: 768px) {
  .greeting__row-clinic {
    margin-bottom: initial;
  }
}
@media (min-width: 1200px) {
  .greeting__row-clinic {
    font-size: 1.125rem;
  }
}

.greeting__row-name {
  font-size: 1.25rem;
}
@media (min-width: 1200px) {
  .greeting__row-name {
    font-size: 1.375rem;
  }
}
.greeting__row-name span {
  font-size: 0.9375rem;
  font-weight: 500;
  padding-right: 12px;
}
@media (min-width: 1200px) {
  .greeting__row-name span {
    font-size: 1.125rem;
    padding-right: 6px;
  }
}

.greeting .util-link02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 374px) {
  .greeting .util-link02 {
    display: block;
  }
}
.greeting .button02:not(:last-child) {
  margin-right: 8px;
}
@media (max-width: 374px) {
  .greeting .button02:not(:last-child) {
    margin-right: 0;
    margin-bottom: 8px;
  }
}
@media (min-width: 992px) {
  .greeting .button02:not(:last-child) {
    margin-right: 16px;
  }
}
.greeting .section-titleBox {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
@media (min-width: 768px) {
  .greeting .section-titleBox {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}

/* cv */
.home .cv-bg {
  margin-bottom: 80px;
}
@media (min-width: 992px) {
  .home .cv-bg {
    margin-bottom: 160px;
  }
}

@media (min-width: 768px) {
  .cv-bg {
    background: url(../img/index/cv-bg_pc.webp) no-repeat center center/cover;
    aspect-ratio: 1440/700;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cv-bg {
    aspect-ratio: 1440/500;
  }
}
@media (min-width: 1600px) {
  .cv-bg {
    aspect-ratio: 1920/500;
  }
}
@media (min-width: 2100px) {
  .cv-bg {
    aspect-ratio: 2350/500;
  }
}

.cv {
  position: relative;
  background: url(../img/index/cv-bg_sp.webp) no-repeat center center/cover;
  aspect-ratio: 335/468;
  width: 100%;
}
@media (min-width: 768px) {
  .cv {
    background: none;
    aspect-ratio: initial;
    width: initial;
  }
}

.cv-inner {
  max-width: 960px !important;
}

.cv-content {
  position: absolute;
  top: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 95%;
}
@media (min-width: 768px) {
  .cv-content {
    top: 40px;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cv-content {
    top: 66px;
  }
}

.cv-content__top {
  margin-bottom: 16px;
  text-align: center;
}
@media (min-width: 1200px) {
  .cv-content__top {
    margin-bottom: 20px;
  }
}
.cv-content__top span {
  color: #0E578C;
  font-size: 1.125rem;
}
@media (min-width: 1200px) {
  .cv-content__top span {
    font-size: 1.25rem;
  }
}

.cv-content__img {
  margin: 0 auto 8px;
  max-width: 20px;
  width: 100%;
}
@media (min-width: 992px) {
  .cv-content__img {
    margin-bottom: 4px;
  }
}

.cv-content__title {
  color: #333;
  font-size: 1.5rem;
  line-height: 1.45;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 374px) {
  .cv-content__title {
    font-size: 1.125rem;
    margin-bottom: 32px;
  }
}
@media (min-width: 768px) {
  .cv-content__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 1400px) {
  .cv-content__title {
    font-size: 2.5rem;
    margin-bottom: 56px;
  }
}

@media (min-width: 768px) {
  .cv .cv-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.cv .button01 {
  border-radius: 30px;
  font-size: 1rem;
  padding: 17.5px 4px;
  margin: 0 auto;
  max-width: 255px;
  width: 100%;
}
@media (max-width: 374px) {
  .cv .button01 {
    padding: 12.5px 4px;
  }
}
@media (min-width: 768px) {
  .cv .button01 {
    max-width: initial;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cv .button01 {
    border-radius: 40px;
    padding: 18.4px 4px;
  }
}
@media (min-width: 1200px) {
  .cv .button01 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1400px) {
  .cv .button01 {
    font-size: 1.5rem;
    padding: 22.4px 4px;
  }
}
.cv .button01:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 374px) {
  .cv .button01:not(:last-child) {
    margin-bottom: 16px;
  }
}
@media (min-width: 768px) {
  .cv .button01:not(:last-child) {
    margin-bottom: initial;
    margin-right: 4.338%;
  }
}

/* top-cost */
.top-cost .cost-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 992px) {
  .top-cost .cost-box {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
  }
}
.top-cost .textBox {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .top-cost .textBox {
    margin-bottom: 40px;
  }
}
.top-cost .cost__content {
  display: contents;
}
@media (min-width: 992px) {
  .top-cost .cost__content {
    display: initial;
  }
}
.top-cost .util-link02 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 992px) {
  .top-cost .util-link02 {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}
.top-cost .cost-table-box {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .top-cost .cost-table-box {
    margin-bottom: initial;
  }
}

.cost__content {
  display: contents;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .cost__content {
    display: initial;
    margin-bottom: initial;
    margin-right: 60px;
    max-width: 430px;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cost__content {
    max-width: 630px;
  }
}

@media (min-width: 992px) {
  .cost-table {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 550px;
    width: 100%;
  }
}
.cost-table table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}
.cost-table table th,
.cost-table table td {
  padding: 15.5px 10px;
  text-align: center;
  font-size: 1rem;
}
.cost-table table .table-title {
  background-color: #0E578C;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 8px 20px;
}
@media (min-width: 992px) {
  .cost-table table .table-title {
    font-size: 1rem;
    padding: 8px 20px;
  }
}
.cost-table table .table-header th {
  background-color: #0082C7;
  color: #fff;
  font-size: 0.9375rem;
  border-right: 1px dashed #999;
  line-height: 1.45;
  letter-spacing: 0.03em;
}
@media (min-width: 992px) {
  .cost-table table .table-header th {
    font-size: 1.25rem;
  }
}
.cost-table table .table-header th:last-child {
  border-right: none;
}
.cost-table table tbody {
  background-color: #F7F7F7;
}
.cost-table table tbody tr {
  border-bottom: 1px solid #CBCBCB;
}
.cost-table table tbody tr:last-child {
  border-bottom: none;
}
.cost-table table tbody td {
  background-color: #F5F5F5;
  font-size: 0.9375rem;
  line-height: 1.45;
  border-right: 1px dashed #999;
}
@media (min-width: 992px) {
  .cost-table table tbody td {
    font-size: 1.25rem;
  }
}
.cost-table table tbody td:last-child {
  border-right: none;
}
.cost-table table tbody td.income {
  text-align: center;
}
.cost-notes {
  margin-top: 10px;
}
@media (min-width: 992px) {
  .cost-notes {
    margin-top: 16px;
  }
}

.cost-notes__note {
  font-size: 0.875rem;
  font-weight: 400;
}
@media (min-width: 992px) {
  .cost-notes__note {
    font-size: 1rem;
  }
}

/* flow */
/* top-flow */
.flow-boxes {
  margin-bottom: 40px;
}

.flow-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 60px;
}
@media (min-width: 992px) {
  .flow-item {
    padding-left: 165px;
  }
}
.flow-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 22.5px;
  top: 40px;
  bottom: -40px;
  width: 1px;
  background-color: #0E578C;
}
@media (min-width: 992px) {
  .flow-item:not(:last-child)::before {
    left: 50px;
    top: 80px;
  }
}
.flow-item:not(:last-child) {
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  .flow-item:not(:last-child) {
    padding-bottom: 60px;
  }
}

.flow-item__num {
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
  background-color: #fff;
  border: 1px solid #0E578C;
  border-radius: 50%;
  font-family: "Open Sans", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #0E578C;
  font-weight: 500;
  font-size: 1.125rem;
  font-style: normal;
  letter-spacing: 0.03em;
}
@media (min-width: 992px) {
  .flow-item__num {
    width: 100px;
    height: 100px;
    font-size: 1.875rem;
  }
}

.flow-item__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 10px;
}
@media (min-width: 992px) {
  .flow-item__content {
    padding-top: 28px;
  }
}

.flow-item__title {
  border-bottom: 1px solid #B1B1B1;
  color: #0E578C;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.43;
  margin-bottom: 16px;
  padding-bottom: 16px;
}
@media (min-width: 992px) {
  .flow-item__title {
    font-size: 1.75rem;
    margin-bottom: 28px;
    padding-bottom: 20px;
  }
}

.flow-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .flow-item__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.flow-item__details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 768px) {
  .flow-item__details {
    margin-right: 5.58%;
  }
}

@media (min-width: 992px) {
  .flow-item__detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.flow-item__detail:not(:last-child) {
  margin-bottom: 22px;
}
@media (min-width: 992px) {
  .flow-item__detail:not(:last-child) {
    margin-bottom: 20px;
  }
}

.flow-item__label {
  position: relative;
  border-radius: 20px;
  background-color: #0082C7;
  color: #fff;
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  padding: 3.3px 8px;
  max-width: 112px;
  width: 100%;
  text-align: center;
}
@media (max-width: 374px) {
  .flow-item__label {
    font-size: 4vw;
  }
}
@media (min-width: 992px) {
  .flow-item__label {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.125rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 23px;
    margin-bottom: initial;
    max-width: 126px;
    width: 100%;
    height: 40px;
  }
}

.flow-item__label-note {
  position: absolute;
  color: #333;
  font-size: 0.875rem;
  font-weight: 500;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -108px;
}
@media (min-width: 992px) {
  .flow-item__label-note {
    top: initial;
    -webkit-transform: translateY(initial);
            transform: translateY(initial);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -30px;
  }
}

.flow-item__text-box .flow-item__text:not(:last-child) {
  margin-bottom: 12px;
}

.flow-item__notes {
  background-color: #F5F5F5;
  padding: 16px;
  border-radius: 8px;
  margin-top: 16px;
}
@media (min-width: 992px) {
  .flow-item__notes {
    border-radius: 16px;
    padding: 30px;
    margin-top: 20px;
  }
}

.flow-item__note-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flow-item__note {
  position: relative;
  font-size: 0.875rem;
  padding-left: 12px;
}
@media (min-width: 992px) {
  .flow-item__note {
    padding-left: 14px;
  }
}
.flow-item__note:not(:last-child) {
  margin-bottom: 12px;
}
.flow-item__note::before {
  position: absolute;
  content: "";
  background-color: #0E578C;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  top: 9px;
  left: 0;
}

.flow-item__img {
  margin-bottom: 16px;
  width: 63.25%;
}
@media (min-width: 768px) {
  .flow-item__img {
    margin-bottom: initial;
    width: 26%;
  }
}
.flow-item__img img {
  border-radius: 16px;
}

.top-flow .util-link02 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* top-reason */
.reason-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
@media (min-width: 992px) {
  .reason-tabs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}
@media (min-width: 1400px) {
  .reason-tabs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 60px;
  }
}

/* --- 左側：タブリスト / SP時アコーディオン --- */
.reason-tab-list {
  width: 100%;
}
@media (min-width: 992px) {
  .reason-tab-list {
    width: 380px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 28px;
  }
}

.reason-tab-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 20px;
  border-radius: 8px;
  background-color: #F7F7F7;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
  position: relative;
}
@media (min-width: 992px) {
  .reason-tab-item {
    padding: 18px 20px;
  }
}
.reason-tab-item:not(:last-child) {
  margin-bottom: 8px;
}
.reason-tab-item::after {
  position: relative;
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: #333;
  line-height: 1;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  top: -2px;
}
@media (min-width: 992px) {
  .reason-tab-item::after {
    display: none;
  }
}
.reason-tab-item.is-open::after {
  content: "−";
  color: #fff;
}
@media (min-width: 992px) {
  .reason-tab-item.is-open::after {
    display: none;
  }
}
@media (min-width: 992px) {
  .reason-tab-item:hover {
    background-color: #0082C7;
    color: #fff;
  }
  .reason-tab-item:hover .reason-tab-number {
    color: #fff;
  }
}
.reason-tab-item.active {
  background-color: #0082C7;
  color: #fff;
}
.reason-tab-item.active .reason-tab-number {
  color: #fff;
}
.reason-tab-item.active::after {
  color: #fff;
}
@media (min-width: 992px) {
  .reason-tab-item.active::after {
    display: none;
  }
}

.reason-tab-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.reason-tab-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #0082C7;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  border-radius: 4px;
  margin-right: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
@media (min-width: 992px) {
  .reason-tab-number {
    font-size: 1.125rem;
    margin-right: 20px;
  }
}

.reason-tab-text {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .reason-tab-text {
    font-size: 1.125rem;
  }
}

.reason-panel-mobile {
  display: none;
  background-color: #fff;
  border: 3px solid #D0D0D0;
  border-radius: 8px;
  padding: 20px 20px;
  margin-bottom: 5px;
}
@media (min-width: 992px) {
  .reason-panel-mobile {
    display: none !important;
  }
}

/* --- 右側：コンテンツパネル（PC用のみ） --- */
.reason-panels {
  display: none;
}
@media (min-width: 992px) {
  .reason-panels {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
}

.reason-panel {
  display: none;
  background-color: #fff;
  border: 5px solid #D0D0D0;
  border-radius: 24px;
  padding: 40px;
}
@media (min-width: 768px) {
  .reason-panel {
    min-height: 600px;
  }
}
@media (min-width: 1200px) {
  .reason-panel {
    padding: 60px;
  }
}
.reason-panel.active {
  display: block;
}

@media (min-width: 1200px) {
  .reason-panel:nth-child(2) {
    padding: 60px 60px 40px;
  }
}

.reason-panel__header {
  margin-bottom: 18px;
  text-align: center;
}
@media (min-width: 992px) {
  .reason-panel__header {
    margin-bottom: 28px;
  }
}

.reason-panel__number {
  color: #0082C7;
  font-size: 2.5rem;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  display: block;
  line-height: 1;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .reason-panel__number {
    font-size: 3.125rem;
  }
}

.reason-panel__title {
  color: #333;
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.4;
}
@media (min-width: 992px) {
  .reason-panel__title {
    font-size: 1.625rem;
  }
}

.reason-panel__text {
  font-size: 1rem;
  line-height: 1.8;
}
.reason-panel__text:not(:last-child) {
  margin-bottom: 16px;
}

.reason-panel__link {
  color: #0E578C;
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: right;
  text-decoration: underline;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media (min-width: 992px) {
  .reason-panel__link {
    font-size: 1.0625rem;
  }
}
.reason-panel__link:hover {
  opacity: 0.7;
}

.reason-panel__img {
  margin-top: 16px;
}
@media (min-width: 992px) {
  .reason-panel__img {
    margin-top: 24px;
  }
}

.reason-panel__img.reason-panel__img-pc {
  margin-bottom: 28px;
}

.reason-panel__note {
  font-size: 0.875rem;
}

.reason .util-link02 {
  margin-top: 40px;
}

/* top-feature */
.top-feature .reason-bg {
  padding: 30px 34px;
}
@media (max-width: 374px) {
  .top-feature .reason-bg {
    padding: 30px 10px;
  }
}
@media (min-width: 768px) {
  .top-feature .reason-bg {
    padding: 50px 40px;
  }
}
@media (min-width: 1200px) {
  .top-feature .reason-bg {
    padding: 50px 80px 80px;
  }
}
.top-feature .items {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 10px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .top-feature .items {
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    row-gap: 24px;
    margin-bottom: 48px;
  }
}
@media (min-width: 992px) {
  .top-feature .items {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.top-feature .item {
  position: relative;
}
.top-feature .item__box {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  width: 84.3%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 8px;
}
@media (min-width: 768px) {
  .top-feature .item__box {
    padding: 10px;
  }
}
.top-feature .item__img {
  aspect-ratio: 266/133;
  width: 100%;
}
@media (min-width: 768px) {
  .top-feature .item__img {
    aspect-ratio: initial;
  }
}
.top-feature .item__content {
  border: 1px solid #0E578C;
  padding: 14.5px 12px;
}
@media (min-width: 768px) {
  .top-feature .item__content {
    padding: 26px 16px;
  }
}
.top-feature .item__content-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 374px) {
  .top-feature .item__content-text {
    font-size: 0.8125rem;
  }
}
@media (min-width: 768px) {
  .top-feature .item__content-text {
    font-size: 1.25vw;
  }
}
@media (min-width: 1400px) {
  .top-feature .item__content-text {
    font-size: 1.125rem;
  }
}
.top-feature .util-link01 {
  margin: 0 auto;
}

/* top-flow */
.top-flow .flow-lists {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .top-flow .flow-lists {
    margin-bottom: 50px;
  }
}
.top-flow .util-link01 {
  margin: 0 auto;
}

/* top-faq */
@media (min-width: 992px) {
  .top-faq.section {
    margin-bottom: 160px;
  }
}

.top-faq .faq-items {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .top-faq .faq-items {
    margin-bottom: 50px;
  }
}
.top-faq .util-link01 {
  margin: 0 auto;
}

/* -------------------------------
 クリニック概要ページ
------------------------------- */
/* clinic */
.page-schedule {
  background-color: #fff;
  max-width: 460px;
  width: 100%;
}

.clinic-info table {
  width: 100%;
}
@media (min-width: 768px) {
  .clinic-info table {
    border-spacing: 5px;
  }
}
.clinic-info th {
  background-color: #0E578C;
  color: #fff;
  display: block;
  font-weight: 500;
  padding: 12px 24px;
  text-align: left;
}
@media (min-width: 768px) {
  .clinic-info th {
    display: inline-block;
    width: 19.7%;
  }
}
.clinic-info td {
  background-color: #fff;
  display: block;
  padding: 12px 24px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .clinic-info td {
    display: inline-block;
    margin-bottom: 0;
    width: 80.3%;
  }
}

/* facility */
.facility-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 24px;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}
@media (min-width: 576px) {
  .facility-items {
    grid-template-columns: 1fr 1fr;
    row-gap: 24px;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}
@media (min-width: 768px) {
  .facility-items {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}

/*---------------------------------
  早期肺がんとは ページ
---------------------------------*/
/* page-early */
@media (min-width: 768px) {
  .early-content__item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.early-content__item:not(:last-child) {
  margin-bottom: 80px;
}

.early-content__text {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .early-content__text {
    margin-bottom: initial;
    margin-right: 7.143%;
    width: 53.52%;
  }
}

@media (min-width: 768px) {
  .early-content__image {
    margin-right: calc(50% - 50vw);
    width: 53.52%;
  }
}
@media (min-width: 1441px) {
  .early-content__image {
    width: 55.52%;
  }
}

.early-content__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.early-content__title {
  color: #333;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.42;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .early-content__title {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 30px;
  }
}

@media (min-width: 992px) {
  .early-content__desc {
    color: #333;
  }
}

.early-content__desc:not(:last-child) {
  margin-bottom: 14px;
}

/*---------------------------------
  当院の特徴ページ
---------------------------------*/
/* page-features */
.page-id-93 .fv-visual {
  margin-bottom: 72px;
}
@media (min-width: 768px) {
  .page-id-93 .fv-visual {
    margin-bottom: 120px;
  }
}
@media (min-width: 1200px) {
  .page-id-93 .fv-visual {
    margin-bottom: 170px;
  }
}

.features-content {
  counter-reset: number 0;
}

.features-content__item:not(:last-child) {
  margin-bottom: 130px;
}
@media (min-width: 992px) {
  .features-content__item:not(:last-child) {
    margin-bottom: 200px;
  }
}

.features-content__title {
  position: relative;
  color: #333;
  counter-increment: number;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.43;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .features-content__title {
    font-size: 1.625rem;
    font-weight: 400;
    margin-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .features-content__title {
    font-size: 2rem;
    line-height: 1.75;
  }
}
.features-content__title::before {
  position: absolute;
  content: counter(number, decimal-leading-zero);
  color: rgba(107, 162, 203, 0.15);
  font-size: 5rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  line-height: 1;
  top: -55px;
  left: 0;
}
@media (min-width: 768px) {
  .features-content__title::before {
    font-size: 6.25rem;
    top: -52px;
  }
}
@media (min-width: 1200px) {
  .features-content__title::before {
    font-size: 9.375rem;
    top: -86px;
  }
}

@media (min-width: 768px) {
  .features-content__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media (min-width: 768px) {
  .features-content__item:nth-child(2) .features-content__box {
    display: initial;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
  }
}
@media (min-width: 768px) {
  .features-content__item:nth-child(2) .features-content__image {
    float: right;
    margin-left: 4.46%;
  }
}
@media (min-width: 768px) {
  .features-content__item:nth-child(2) .features-content__textBox {
    margin-right: initial;
    width: initial;
  }
}

@media (min-width: 768px) {
  .features-content__textBox {
    margin-right: 4.46%;
    width: 57.15%;
  }
}

.features-content__text:not(:last-child) {
  margin-bottom: 14px;
}

.features-content__image {
  margin: 0 auto 20px;
  width: 65.6%;
}
@media (min-width: 768px) {
  .features-content__image {
    margin: initial;
    width: 38.4%;
  }
}

/* -------------------------------
 治療の流れページ
------------------------------- */
@media (min-width: 992px) {
  .flow .flow-item {
    padding-left: 100px;
  }
}
.flow .flow-item::before {
  left: 22.5px;
}
@media (min-width: 992px) {
  .flow .flow-item::before {
    left: 40px;
  }
}
.flow .flow-item__num {
  background-color: #0E578C;
  color: #fff;
  font-size: 0.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 600;
  text-align: center;
  width: 45px;
  height: 45px;
}
@media (min-width: 768px) {
  .flow .flow-item__num {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
  }
}
@media (min-width: 992px) {
  .flow .flow-item__num {
    font-size: 1.25rem;
    width: 80px;
    height: 80px;
  }
}
.flow .flow-item__num span {
  display: block;
  font-size: 0.875rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
@media (min-width: 992px) {
  .flow .flow-item__num span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.25rem;
    margin-left: 4px;
    text-align: initial;
  }
}
.flow .flow-item__body02 {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .flow .flow-item__body02 {
    margin-top: 40px;
  }
}
@media (min-width: 768px) {
  .flow .flow-item__body02 .flow-item__details {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .flow .flow-item__content {
    padding-top: 20px;
  }
}
@media (min-width: 768px) {
  .flow .flow-item__img {
    width: 27.5%;
  }
}
.flow .flow-item02 .flow-item__text-box02 {
  background-color: #F5F5F5;
  border-radius: 8px;
  padding: 5px;
}
@media (min-width: 768px) {
  .flow .flow-item02 .flow-item__text-box02 {
    border-radius: 16px;
    padding: 24px;
  }
}
@media (min-width: 992px) {
  .flow .flow-item02 .flow-item__text-box02 {
    padding: 20px;
  }
}

.flow-item__schedule {
  background-color: #fff;
  border-radius: 8px;
  padding: 15px 15px 20px;
}
@media (min-width: 768px) {
  .flow-item__schedule {
    padding: 32px 24px;
  }
}
@media (min-width: 992px) {
  .flow-item__schedule {
    padding: 40px;
  }
}

.flow-item__schedule:not(:last-child) {
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .flow-item__schedule:not(:last-child) {
    margin-bottom: 20px;
  }
}

.flow-item__schedule-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .flow-item__schedule-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
}
.flow-item__schedule-title span {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .flow-item__schedule-title span {
    display: initial;
    font-size: 0.9375rem;
    margin-left: 4px;
  }
}

.flow-item__timeline-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-left: 24px;
}
@media (min-width: 992px) {
  .flow-item__timeline-item {
    padding-left: 30px;
  }
}
.flow-item__timeline-item:not(:last-child) {
  margin-bottom: 12px;
}
@media (min-width: 992px) {
  .flow-item__timeline-item:not(:last-child) {
    margin-bottom: 16px;
  }
}
.flow-item__timeline-item::before {
  position: absolute;
  content: "";
  background: url(../img/common/time.png) no-repeat center center/contain;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
}
@media (min-width: 992px) {
  .flow-item__timeline-item::before {
    width: 16px;
    height: 16px;
    top: 7px;
  }
}

.flow-item__timeline-item.align-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 576px) {
  .flow-item__timeline-item.align-top {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.flow-item__time {
  font-size: 0.875rem;
  font-weight: 500;
  min-width: 60px;
  display: inline-block;
}
@media (min-width: 992px) {
  .flow-item__time {
    font-size: 1rem;
    min-width: 70px;
  }
}

.flow-item__event {
  font-size: 0.875rem;
  font-weight: 500;
}
@media (min-width: 992px) {
  .flow-item__event {
    font-size: 1rem;
  }
}

.flow-item__step-list {
  list-style: none;
  counter-reset: step-counter;
}

.flow-item__step {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.57;
  padding-left: 24px;
  counter-increment: step-counter;
}
@media (min-width: 992px) {
  .flow-item__step {
    font-size: 0.9375rem;
    line-height: 1.666;
    padding-left: 30px;
  }
}
.flow-item__step:not(:last-child) {
  margin-bottom: 12px;
}
.flow-item__step::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  color: #0082C7;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flow-item__step-text:not(:last-child) {
  margin-bottom: 12px;
}

.flow-item__subtitle {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 14px;
}
@media (min-width: 992px) {
  .flow-item__subtitle {
    font-size: 1.25rem;
    margin-bottom: 16px;
  }
}

.flow-item__attention-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flow-item__attention {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.57;
  padding-left: 14px;
}
@media (min-width: 992px) {
  .flow-item__attention {
    font-size: 0.9375rem;
    line-height: 1.666;
    padding-left: 24px;
  }
}
.flow-item__attention:not(:last-child) {
  margin-bottom: 12px;
}
.flow-item__attention::before {
  position: absolute;
  content: "";
  background-color: #0082C7;
  border-radius: 50%;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
}
@media (min-width: 992px) {
  .flow-item__attention::before {
    top: 8px;
    width: 12px;
    height: 12px;
  }
}

/*---------------------------------
  アクセスページ
---------------------------------*/
/* access */
.page-access {
  /*---------------------------------
  アクセス スライド
  ---------------------------------*/
}
.page-access .access {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .page-access .access {
    margin-bottom: 140px;
  }
}
.page-access .access__clinic {
  margin-bottom: 16px;
}
.page-access .access__address {
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .page-access .access__address {
    margin-bottom: 40px;
  }
}
.page-access .p-access-map {
  margin-bottom: 24px;
  width: 100%;
}
@media (min-width: 768px) {
  .page-access .p-access-map {
    margin-bottom: 80px;
  }
}
.page-access .p-iframe-wrap {
  position: relative;
  aspect-ratio: 335/260;
  width: 100%;
}
.page-access .p-iframe-wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .page-access .p-iframe-wrap {
    aspect-ratio: 1120/420;
  }
}
.page-access .access-guide {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .page-access .access-guide {
    margin-bottom: 100px;
  }
}
.page-access .access-guide__title {
  position: relative;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 18px;
  padding-left: 20px;
}
@media (min-width: 768px) {
  .page-access .access-guide__title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 22px;
    padding-left: 26px;
  }
}
.page-access .access-guide__title::before {
  position: absolute;
  content: "";
  background-color: #0082C7;
  border-radius: 50%;
  top: 14px;
  left: 0;
  width: 10px;
  height: 10px;
}
@media (min-width: 768px) {
  .page-access .access-guide__title::before {
    width: 16px;
    height: 16px;
  }
}
.page-access .access-guide03 .access-guide__title,
.page-access .access-guide04 .access-guide__title {
  font-size: 1.125rem;
  padding-left: 0;
}
@media (min-width: 768px) {
  .page-access .access-guide03 .access-guide__title,
  .page-access .access-guide04 .access-guide__title {
    font-size: 1.25rem;
  }
}
.page-access .access-guide03 .access-guide__title::before,
.page-access .access-guide04 .access-guide__title::before {
  display: none;
}
.page-access .swiper {
  border-radius: 16px 0 0 16px;
}
.page-access .swiper-guide01,
.page-access .swiper-guide02,
.page-access .swiper-guide03,
.page-access .swiper-guide04 {
  padding-right: 0;
  margin-right: calc(50% - 50vw);
}
.page-access .swiper-slide {
  border-radius: 16px;
  overflow: hidden;
}
.page-access .swiper-slide-guide01,
.page-access .swiper-slide-guide02,
.page-access .swiper-slide-guide03,
.page-access .swiper-slide-guide04 {
  display: initial;
}
.page-access .access-guide__img {
  border-radius: 16px;
}
.page-access .access-guide__img img {
  border-radius: 16px;
}
.page-access .guide-nav {
  margin-top: 28px;
}
@media (min-width: 768px) {
  .page-access .guide-nav {
    margin-top: 38px;
  }
}
.page-access .guide-nav-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .page-access .guide-nav-buttons {
    gap: 16px;
  }
}
.page-access .guide-prev01,
.page-access .guide-next01,
.page-access .guide-prev02,
.page-access .guide-next02,
.page-access .guide-prev03,
.page-access .guide-next03,
.page-access .guide-prev04,
.page-access .guide-next04 {
  position: static;
  cursor: pointer;
  border-radius: 50%;
  background: #0082C7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 46px;
  height: 46px;
}
@media (min-width: 992px) {
  .page-access .guide-prev01,
  .page-access .guide-next01,
  .page-access .guide-prev02,
  .page-access .guide-next02,
  .page-access .guide-prev03,
  .page-access .guide-next03,
  .page-access .guide-prev04,
  .page-access .guide-next04 {
    width: 50px;
    height: 50px;
  }
}
.page-access .guide-prev01::after,
.page-access .guide-next01::after,
.page-access .guide-prev02::after,
.page-access .guide-next02::after,
.page-access .guide-prev03::after,
.page-access .guide-next03::after,
.page-access .guide-prev04::after,
.page-access .guide-next04::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
@media (min-width: 768px) {
  .page-access .guide-prev01::after,
  .page-access .guide-next01::after,
  .page-access .guide-prev02::after,
  .page-access .guide-next02::after,
  .page-access .guide-prev03::after,
  .page-access .guide-next03::after,
  .page-access .guide-prev04::after,
  .page-access .guide-next04::after {
    width: 14px;
    height: 14px;
  }
}
.page-access .guide-prev01::after,
.page-access .guide-prev02::after,
.page-access .guide-prev03::after,
.page-access .guide-prev04::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  margin-right: -3px;
}
.page-access .guide-next01::after,
.page-access .guide-next02::after,
.page-access .guide-next03::after,
.page-access .guide-next04::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: -3px;
}

/*---------------------------------
  院長紹介ページ
---------------------------------*/
/* page-doctor */
.page-director .util-link02 {
  margin-top: 40px;
}

.director-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .director-item {
    margin-bottom: 72px;
  }
}
@media (min-width: 992px) {
  .director-item {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
  }
}

.director-item__imgBox {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .director-item__imgBox {
    width: 70%;
  }
}
@media (min-width: 992px) {
  .director-item__imgBox {
    margin-bottom: initial;
    margin-right: calc(50% - 50vw);
    width: 65.21%;
  }
}

.director-item__img {
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .director-item__img {
    margin-bottom: 16px;
  }
}

.director-item__nameBox {
  border-left: 2px solid #0E578C;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 12px;
}
@media (max-width: 374px) {
  .director-item__nameBox {
    display: block;
  }
}
@media (min-width: 768px) {
  .director-item__nameBox {
    display: block;
    padding-left: 20px;
  }
}

.director-item__position,
.director-item__name,
.director-item__name-en {
  line-height: 1.5;
}

.director-item__position {
  font-size: 0.875rem;
  font-weight: 400;
  margin-right: 12px;
}
@media (min-width: 768px) {
  .director-item__position {
    margin-right: initial;
    margin-bottom: 4px;
  }
}
@media (min-width: 992px) {
  .director-item__position {
    font-size: 1rem;
  }
}

.director-item__name {
  font-size: 1.125rem;
  margin-right: 12px;
}
@media (min-width: 768px) {
  .director-item__name {
    font-size: 1.5rem;
    margin-right: initial;
    margin-bottom: 8px;
  }
}

.director-item__name-en {
  color: #0082C7;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

@media (min-width: 992px) {
  .director-item__content {
    margin-right: 5%;
    width: 44.6%;
  }
}
@media (min-width: 1400px) {
  .director-item__content {
    margin-right: 5.35%;
  }
}

.director-item__text:not(:last-child) {
  margin-bottom: 12px;
}

/* profile-boxes */
.profile-boxes {
  background-color: #F7F7F7;
  border-radius: 16px;
  padding: 30px 20px;
}
@media (min-width: 768px) {
  .profile-boxes {
    padding: 40px;
  }
}
@media (min-width: 992px) {
  .profile-boxes {
    padding: 80px;
  }
}

@media (min-width: 992px) {
  .profile-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10%;
  }
}
@media (min-width: 992px) {
  .profile-box {
    gap: 5%;
  }
}
@media (min-width: 1200px) {
  .profile-box {
    gap: 20%;
  }
}

.director-boxes {
  position: relative;
  border-radius: 16px;
  z-index: 0;
}

@media (min-width: 768px) {
  .director-boxes.doctor-boxes01 {
    width: 53.75%;
  }
}

.director-boxes:not(:last-child) {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .director-boxes:not(:last-child) {
    margin-bottom: 0;
  }
}

.director-box:not(:last-child) {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .director-box:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .director-box:not(:last-child) {
    margin-bottom: 62px;
  }
}

.director-box__title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0E578C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 18px;
}
@media (min-width: 992px) {
  .director-box__title {
    font-size: 1.5rem;
  }
}
.director-box__title::after {
  content: "";
  width: 50px;
  height: 2px;
  background: #0082C7;
  margin-left: 10px;
}

/* 経歴セクション専用 */
.career {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .career {
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .career {
    margin-bottom: 0;
  }
}
.career .profile-textBox .career-row {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .career .profile-textBox .career-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
  }
}
.career .profile-textBox .career-row:last-child {
  margin-bottom: 0;
}
.career .profile-textBox .year {
  color: #333;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .career .profile-textBox .year {
    width: 93px;
  }
}
.career .profile-textBox .profile-text {
  color: #333;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1rem;
}

/* 資格・所属学会セクション */
.qualification .profile-textBbox .profile-text,
.society .profile-textBbox .profile-text {
  color: #333;
  font-size: 1rem;
  margin-bottom: 10px;
}
.qualification .profile-textBbox .profile-text:last-child,
.society .profile-textBbox .profile-text:last-child {
  margin-bottom: 0;
}

/*---------------------------------
  外科医紹介ページ
---------------------------------*/
.doctor-list {
  border-bottom: 1px solid #C3C3C3;
  padding: 20px 0 60px;
}
@media (min-width: 768px) {
  .doctor-list {
    padding: 30px 0 80px;
  }
}

.doctor-list:first-child {
  border-top: 1px solid #C3C3C3;
}

.doctor-list__imgBox {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .doctor-list__imgBox {
    margin-bottom: initial;
    margin-right: 3.55%;
    width: 41%;
  }
}

.doctor-list__img {
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .doctor-list__img {
    margin-bottom: 16px;
  }
}

.doctor-list__nameBox {
  border-left: 2px solid #0E578C;
  padding-left: 12px;
}
@media (min-width: 768px) {
  .doctor-list__nameBox {
    padding-left: 20px;
  }
}

.doctor-item__position,
.doctor-item__name,
.doctor-item__name-en {
  line-height: 1.5;
}

.doctor-item__position {
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 3px;
}
@media (min-width: 992px) {
  .doctor-item__position {
    font-size: 1rem;
  }
}

.doctor-item__name {
  font-size: 1.125rem;
  margin-bottom: 3px;
}
@media (min-width: 768px) {
  .doctor-item__name {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
}

.doctor-item__name-en {
  color: #0082C7;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

.doctor-list__content {
  background-color: #F7F7F7;
  border-radius: 16px;
  padding: 35px 20px 40px;
}
@media (min-width: 768px) {
  .doctor-list__content {
    padding: 40px;
    width: 55.35%;
  }
}

.doctor-list__item:not(:last-child) {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .doctor-list__item:not(:last-child) {
    margin-bottom: 40px;
  }
}

.doctor-list__item-title {
  color: #0E578C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .doctor-list__item-title {
    margin-bottom: 18px;
  }
}
.doctor-list__item-title::after {
  content: "";
  width: 50px;
  height: 2px;
  background: #0082C7;
  margin-left: 10px;
}

.doctor-list__item-text {
  color: #333;
}

.doctor-list__item-text:not(:last-child) {
  margin-bottom: 10px;
}

.doctor-list__item-link {
  color: #0084E5;
  font-weight: 500;
  text-decoration: underline;
}

/*---------------------------------
  肺がんの日帰り手術
---------------------------------*/
/* page-day-surgery */
.page-day-surgery .section-titleBox01 {
  text-align: center;
}

.surgery-contents-top {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .surgery-contents-top {
    margin-bottom: 148px;
  }
}

.surgery-content__title {
  font-size: 1.25rem;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 374px) {
  .surgery-content__title {
    font-size: 1.125rem;
  }
}
@media (min-width: 768px) {
  .surgery-content__title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .surgery-content__title::after {
    content: "";
    width: 50px;
    height: 2px;
    background: #6BA2CB;
    margin-left: 16px;
  }
}

@media (min-width: 768px) {
  .surgery-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media (min-width: 768px) {
  .surgery-content__textBox {
    margin-right: 7.14%;
    width: 53.5%;
  }
}

.surgery-content__diagram {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .surgery-content__diagram {
    margin-top: 36px;
  }
}
@media (min-width: 992px) {
  .surgery-content__diagram span {
    display: none;
  }
}

.surgery-content__img {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .surgery-content__img {
    width: 39.3%;
  }
}

.merit-demerit-box {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .merit-demerit-box {
    margin-bottom: 140px;
  }
}

.merit-demerit:not(:last-child) {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .merit-demerit:not(:last-child) {
    margin-bottom: 80px;
  }
}

.merit-demerit {
  background-color: #F7F7F7;
  border-radius: 16px;
  padding: 30px 20px;
}
@media (min-width: 768px) {
  .merit-demerit {
    padding: 40px;
  }
}
@media (min-width: 768px) {
  .merit-demerit {
    padding: 50px;
  }
}
.merit-demerit .label {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .merit-demerit .label {
    text-align: left;
    margin-top: 34px;
    margin-bottom: 24px;
  }
}
.merit-demerit .label span {
  background-color: #0082C7;
  border-radius: 20px;
  color: #fff;
  display: inline-block;
  letter-spacing: 0.02em;
  padding: 5.4px 26.4px;
}
@media (min-width: 768px) {
  .merit-demerit .label span {
    font-size: 1.125rem;
    padding: 4px 25.5px;
  }
}

@media (min-width: 768px) {
  .merit-demerit__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.merit-demerit__img {
  margin: 0 auto 20px;
  width: 250px;
}
@media (min-width: 768px) {
  .merit-demerit__img {
    margin: initial;
    width: 38.2%;
  }
}
.merit-demerit__img img {
  border-radius: 16px;
}

.merit-demerit__content.merit-demerit__content01 {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .merit-demerit__content.merit-demerit__content01 {
    margin-bottom: 50px;
  }
}

@media (min-width: 768px) {
  .merit-demerit__content.merit-demerit__content02 {
    display: initial;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
  }
}
@media (min-width: 768px) {
  .merit-demerit__content.merit-demerit__content02 .merit-demerit__img {
    float: right;
    margin-left: 4.9%;
    width: 38.2%;
  }
}
@media (min-width: 768px) {
  .merit-demerit__content.merit-demerit__content02 .merit-demerit__textBox {
    margin-right: initial;
    width: initial;
  }
}

@media (min-width: 768px) {
  .merit-demerit__textBox {
    margin-right: 4.9%;
    width: 56.87%;
  }
}

/*---------------------------------
  気胸の日帰り手術
---------------------------------*/
/* page-pneumo */
.page-pneumo img {
  border-radius: 16px;
}
.page-pneumo .util-link03 {
  margin: 0 auto;
  width: 100%;
  max-width: 310px;
}
@media (min-width: 768px) {
  .page-pneumo .util-link03 {
    margin: initial;
    max-width: 350px;
  }
}
.page-pneumo .button02 {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-pneumo .button02 {
    margin: initial;
  }
}
.page-pneumo .button02:not(:last-child) {
  margin-bottom: 22px;
}
@media (min-width: 768px) {
  .page-pneumo .button02:not(:last-child) {
    margin-bottom: initial;
    margin-right: 20px;
  }
}

.pneumo-top {
  margin-bottom: 56px;
}
@media (min-width: 768px) {
  .pneumo-top {
    margin-bottom: 140px;
  }
}
.pneumo-top .notes {
  border-radius: 16px;
}
.pneumo-top .notes .note {
  font-size: 0.9375rem;
}
@media (min-width: 768px) {
  .pneumo-top .notes .note {
    font-size: 1rem;
  }
}
.pneumo-top .circle-textBox {
  margin-bottom: 24px;
}
.pneumo-top .circle-text {
  font-weight: 600;
}
@media (min-width: 992px) {
  .pneumo-top .circle-text {
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1.4;
    padding-left: 24px;
  }
}
.pneumo-top .circle-text:not(:last-child) {
  margin-bottom: 12px;
}

.pneumo-sec {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .pneumo-sec {
    margin-bottom: 140px;
  }
}

/* recurrence-risk */
.recurrence-risk .util-link02 {
  display: block;
}
@media (min-width: 768px) {
  .recurrence-risk .util-link02 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.recurrence-risk .button02 {
  max-width: 246px;
}
@media (min-width: 768px) {
  .recurrence-risk .button02 {
    max-width: initial;
  }
}

.recurrence-risk__contents {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .recurrence-risk__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.recurrence-risk__img {
  margin: 0 auto 20px;
  width: 59.5%;
}
@media (min-width: 768px) {
  .recurrence-risk__img {
    margin: initial;
    width: 25%;
  }
}

@media (min-width: 768px) {
  .recurrence-risk__content {
    margin-right: 5.3%;
    width: 69.63%;
  }
}

/* pneumo */
.pneumo-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .pneumo-contents {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
  }
}

.pneumo-content {
  display: contents;
}
@media (min-width: 768px) {
  .pneumo-content {
    display: initial;
    margin-right: 5.3%;
    width: 69.63%;
  }
}
.pneumo-content .textBox {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 768px) {
  .pneumo-content .textBox {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}

.pneumo-content__img {
  margin: 0 auto 20px;
  width: 59.5%;
}
@media (min-width: 768px) {
  .pneumo-content__img {
    margin: initial;
    width: 25%;
  }
}

/* treatment-pneumo */
.treatment-pneumo .lead {
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .treatment-pneumo .lead {
    margin-bottom: 28px;
  }
}

@media (min-width: 768px) {
  .treatment-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.treatment-item:not(:last-child) {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .treatment-item:not(:last-child) {
    margin-bottom: initial;
    margin-right: 3.57%;
  }
}

.treatment-item {
  background-color: #F7F7F7;
  border-radius: 16px;
  padding: 24px 20px;
}
@media (min-width: 768px) {
  .treatment-item {
    padding: 40px;
    width: 48.21%;
  }
}
@media (min-width: 992px) {
  .treatment-item {
    padding: 50px 40px;
  }
}

.treatment-item__title {
  border-bottom: 1px solid #0E578C;
  color: #0E578C;
  font-weight: 500;
  padding-bottom: 14px;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  text-align: center;
}
@media (min-width: 768px) {
  .treatment-item__title {
    font-size: 1.25rem;
    margin-bottom: 28px;
  }
}

.treatment-item__lead {
  font-size: 0.875rem;
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .treatment-item__lead {
    font-size: 1rem;
    margin-bottom: 28px;
  }
}

.treatment-item__body .circle-text {
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .treatment-item__body .circle-text {
    font-size: 1rem;
  }
}
.treatment-item__body .circle-text::before {
  top: 8px;
}
@media (min-width: 768px) {
  .treatment-item__body .circle-text::before {
    top: 10.5px;
  }
}

.treatment-item__merit {
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .treatment-item__merit {
    margin-bottom: 22px;
  }
}

.treatment-item__body-title {
  color: #333;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

/* pneumo-flow */
.pneumo-flow {
  background-color: #F7F7F7;
  border-radius: 16px;
  padding: 24px 20px;
}
@media (min-width: 768px) {
  .pneumo-flow {
    padding: 32px 40px;
  }
}
@media (min-width: 1200px) {
  .pneumo-flow {
    padding: 50px 100px;
  }
}

.pneumo-flow__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .pneumo-flow__contents {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.pneumo-flow__content {
  display: contents;
}
@media (min-width: 768px) {
  .pneumo-flow__content {
    display: initial;
    width: 56.54%;
  }
}

.pneumo-flow__item {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 768px) {
  .pneumo-flow__item {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}

.num-list {
  position: relative;
  counter-increment: num-counter;
  font-size: 0.875rem;
  line-height: 1.57;
  padding-left: 22px;
}
@media (min-width: 768px) {
  .num-list {
    font-size: 0.9375rem;
    line-height: 1.666;
    padding-left: 28px;
  }
}
.num-list::before {
  content: counter(num-counter);
  position: absolute;
  left: 0;
  top: 0;
  color: #0082C7;
  border-radius: 50%;
  font-size: 0.9375rem;
  font-weight: 800;
  font-family: "Open Sans", sans-serif;
}
.num-list:not(:last-child) {
  margin-bottom: 12px;
}

.pneumo-flow__img {
  margin: 0 auto 20px;
  width: 67.8%;
}
@media (min-width: 768px) {
  .pneumo-flow__img {
    margin: initial;
    width: 30.4%;
  }
}

.pneumo-cost .lead-box {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .pneumo-cost .lead-box {
    margin-bottom: 48px;
  }
}

/*---------------------------------
  鼠径ヘルニアの手術ページ
---------------------------------*/
/* surgery */
.surgery .inner > .text:first-of-type {
  margin-bottom: 80px;
}
@media (min-width: 992px) {
  .surgery .inner > .text:first-of-type {
    margin-bottom: 100px;
  }
}

.method-item {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .method-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-bottom: 48px;
  }
}

@media (min-width: 768px) {
  .method-item__content {
    margin-right: 6.3%;
    width: 56.45%;
  }
}

.method-item__text:not(:last-child) {
  margin-bottom: 16px;
}

.method-item__img {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .method-item__img {
    margin-bottom: initial;
    width: 37%;
  }
}

/* merit-demerit */
.merit .title,
.demerit .title {
  position: relative;
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  padding-left: 30px;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .merit .title,
  .demerit .title {
    font-size: 1.5rem;
    margin-bottom: 22px;
    padding-left: 40px;
  }
}
.merit .title::before,
.demerit .title::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media (min-width: 768px) {
  .merit .title::before,
  .demerit .title::before {
    width: 24px;
    height: 24px;
  }
}

.merit,
.demerit {
  padding: 20px 10px;
}
@media (min-width: 768px) {
  .merit,
  .demerit {
    padding: 30px;
  }
}

.merit {
  margin-bottom: 48px;
}
.merit .title::before {
  background: url(../img/common/excl-green.png) no-repeat center center/contain;
}
.merit .text-circle::before {
  background-color: #0082C7;
}

.demerit {
  background-color: #F7F7F7;
}
.demerit .title::before {
  background: url(../img/common/excl.png) no-repeat center center/contain;
}

.merit-content {
  border-bottom: 1px dashed #aaa;
  padding: 16px 0;
}
@media (min-width: 768px) {
  .merit-content {
    padding: 20px 0;
  }
}

.merit-content:first-child {
  padding-top: 0;
}

.merit-content:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* mesh */
.mesh .textBox {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .mesh .textBox {
    margin-bottom: 32px;
  }
}
.mesh .mesh-content__imgBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mesh .mesh-content__img:not(:last-child) {
  margin-right: 2%;
}
.mesh .mesh-content__img {
  width: 49%;
}
@media (min-width: 768px) {
  .mesh .mesh-content__img {
    width: 400px;
  }
}
.mesh .mesh-content__img img {
  border: 1px solid #ccc;
  margin-bottom: 8px;
}
.mesh .mesh-content__img figcaption {
  font-size: 0.625rem;
  text-align: center;
}
@media (min-width: 768px) {
  .mesh .mesh-content__img figcaption {
    font-size: 0.875rem;
  }
}

/*---------------------------------
  治療費用ページ
---------------------------------*/
.cost-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .cost-content {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
  }
}

.cost-content:not(:last-child) {
  margin-bottom: 80px;
}
@media (min-width: 992px) {
  .cost-content:not(:last-child) {
    margin-bottom: 140px;
  }
}

.cost-content01 .cost-content__body02 {
  -webkit-box-ordinal-group: 1 !important;
      -ms-flex-order: 0 !important;
          order: 0 !important;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .cost-content01 .cost-content__body02 {
    margin: initial;
    -webkit-box-ordinal-group: initial !important;
        -ms-flex-order: initial !important;
            order: initial !important;
  }
}

.cost-content__body01 {
  display: contents;
}
@media (min-width: 768px) {
  .cost-content__body01 {
    display: initial;
    margin-right: 6.2%;
    width: 44.6%;
  }
}
.cost-content__body01 .textBox {
  margin-bottom: 24px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 768px) {
  .cost-content__body01 .textBox {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}
.cost-content__body01 .util-link03 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 0 auto;
  max-width: 310px;
  width: 100%;
}
@media (min-width: 768px) {
  .cost-content__body01 .util-link03 {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
    margin: initial;
    max-width: 350px;
  }
}

.cost-content__body02 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 768px) {
  .cost-content__body02 {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
    width: 49.1%;
  }
}
.cost-content__body02 .cost-notes {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .cost-content__body02 .cost-notes {
    margin-bottom: initial;
  }
}

.single .util-link02 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.article-inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

/*---------------------------------
  お知らせ 一覧ページ
---------------------------------*/
.new-info {
  padding-bottom: 100px;
}
@media (min-width: 992px) {
  .new-info {
    padding-bottom: 180px;
  }
}

.new-info__contents {
  margin-bottom: 56px;
}
@media (min-width: 992px) {
  .new-info__contents {
    margin-bottom: 80px;
  }
}

.new-info__item {
  position: relative;
  border-bottom: 1px solid #E2E2E2;
  display: block;
  padding: 20px 16px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .new-info__item {
    padding: 24px 20px 24px 0;
  }
}
.new-info__item::after {
  position: absolute;
  content: "";
  bottom: 22px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  right: 0;
  width: 9px;
  height: 9px;
  border: solid #0082C7;
  border-width: 0px 2px 2px 0;
}
.new-info__item:hover {
  background-color: #F7F7F7;
}

.new-info__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
}
@media (max-width: 374px) {
  .new-info__meta {
    display: block;
    margin-bottom: 6px;
  }
}
@media (min-width: 768px) {
  .new-info__meta {
    margin-bottom: 12px;
  }
}

.new-info__time {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #5F5F5F;
  font-size: 0.875rem;
  font-family: "Open Sans", sans-serif;
  margin-right: 24px;
}
@media (min-width: 768px) {
  .new-info__time {
    margin-right: 28px;
    font-size: 1rem;
  }
}

.new-info__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.new-info__tag:not(:last-child) {
  margin-right: 14px;
}
@media (min-width: 768px) {
  .new-info__tag:not(:last-child) {
    margin-right: 28px;
  }
}

.new-info__category:not(:last-child) {
  margin-right: 4px;
}

.new-info__category {
  margin-bottom: 3px;
}

.new-info__text {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #3F454B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 400;
  width: 100%;
  line-height: 1.46;
}
@media (min-width: 992px) {
  .new-info__text {
    font-size: 1rem;
    line-height: initial;
  }
}

/*---------------------------------
  お知らせ 医療ブログ 詳細ページ
---------------------------------*/
/* news */
.news {
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  .news {
    margin-bottom: 160px;
  }
}

.news__contents {
  margin-bottom: 5rem;
}

.news__row,
.blog__row {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .news__row,
  .blog__row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 26px;
  }
}

.news__meta-row,
.blog__meta-row {
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .news__meta-row,
  .blog__meta-row {
    margin-bottom: 0;
  }
}

.news__meta,
.blog__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog__category,
.news__category,
.new-info__category {
  background-color: #fff;
  border: 1px solid #0E578C;
  border-radius: 12px;
  color: #0E578C;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 5.5px 18.5px;
  white-space: nowrap;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.blog__category:hover,
.news__category:hover,
.new-info__category:hover {
  opacity: 0.7;
}

.new-info__category {
  border-color: #0082C7;
  color: #616C74;
}

.news__category:not(:last-child),
.blog__category:not(:last-child) {
  margin-right: 4px;
}
@media (min-width: 768px) {
  .news__category:not(:last-child),
  .blog__category:not(:last-child) {
    margin-right: 8px;
  }
}

.news__row-time,
.blog__row-time {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

.news__date,
.blog__date {
  font-size: 0.875rem;
}

.news__date:first-child,
.blog__date:first-child {
  margin-right: 8px;
}
@media (min-width: 992px) {
  .news__date:first-child,
  .blog__date:first-child {
    margin-right: 12px;
  }
}

@media (min-width: 992px) {
  .news__date-icon,
  .blog__date-icon {
    padding-right: 4px;
  }
}
.news__date-icon .fa-clock,
.news__date-icon .fa-arrows-rotate,
.blog__date-icon .fa-clock,
.blog__date-icon .fa-arrows-rotate {
  color: #0082C7;
}

.news__date-time,
.blog__date-time {
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .news__date-time,
  .blog__date-time {
    font-size: 0.875rem;
  }
}

.news__title,
.blog__title {
  color: #333;
  position: relative;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .news__title,
  .blog__title {
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .news__title,
  .blog__title {
    font-size: 2.125rem;
  }
}

.news-thumbnail img,
.blog-thumbnail img {
  border-radius: 8px;
  margin-bottom: 20px !important;
}
@media (min-width: 992px) {
  .news-thumbnail img,
  .blog-thumbnail img {
    border-radius: 16px;
    margin-bottom: 30px !important;
  }
}

.news article h2,
.news article h3,
.news article h4,
.news article h5,
.news article h6,
.blog article h2,
.blog article h3,
.blog article h4,
.blog article h5,
.blog article h6 {
  font-weight: 500;
  line-height: 1.4;
  margin: 2.5rem 0 1rem;
}
@media (min-width: 768px) {
  .news article h2,
  .news article h3,
  .news article h4,
  .news article h5,
  .news article h6,
  .blog article h2,
  .blog article h3,
  .blog article h4,
  .blog article h5,
  .blog article h6 {
    margin: 3.5rem 0 1.25rem;
  }
}

.news article h2,
.blog article h2 {
  position: relative;
  border-left: 4px solid #0082C7;
  color: #333;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 20px;
  padding: 0 8px 0 16px;
}
@media (min-width: 992px) {
  .news article h2,
  .blog article h2 {
    border-left: 6px solid #0082C7;
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
}
@media (min-width: 1200px) {
  .news article h2,
  .blog article h2 {
    font-size: 2rem;
  }
}

.news article h3,
.blog article h3 {
  position: relative;
  color: #333;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
  padding-left: 16px;
}
@media (min-width: 768px) {
  .news article h3,
  .blog article h3 {
    margin-bottom: 1.25rem;
    padding-left: 20px;
  }
}
@media (min-width: 1200px) {
  .news article h3,
  .blog article h3 {
    font-size: 1.5rem;
  }
}
.news article h3::before,
.blog article h3::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 9px solid #0082c7;
  border-right: 0;
  top: 4px;
  left: 0;
}
@media (min-width: 768px) {
  .news article h3::before,
  .blog article h3::before {
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 10px solid #0082c7;
    top: 7px;
  }
}

.news article h4,
.blog article h4 {
  position: relative;
  color: #0E578C;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
  padding-left: 24px;
}
@media (min-width: 768px) {
  .news article h4,
  .blog article h4 {
    margin-top: 40px;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .news article h4,
  .blog article h4 {
    font-size: 1.25rem;
  }
}
.news article h4::after,
.blog article h4::after {
  position: absolute;
  content: "";
  background-color: #0082C7;
  width: 12px;
  height: 3px;
  top: 11px;
  left: 0;
}
@media (min-width: 992px) {
  .news article h4::after,
  .blog article h4::after {
    top: 12px;
  }
}

.news article h5,
.blog article h5 {
  color: #0E578C;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}
@media (min-width: 768px) {
  .news article h5,
  .blog article h5 {
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .news article h5,
  .blog article h5 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
}

.news article p,
.blog article p {
  font-size: 1rem;
  line-height: 1.625;
  margin-bottom: 1rem;
}

.news article .news__content a,
.blog article .blog__content a {
  color: #0E578C;
  font-style: initial;
}

blockquote {
  position: relative;
  border-radius: 16px;
  margin: 40px 0;
  padding: 40px 44px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #EDF3F8;
  margin: 16px 0 16px;
}
@media (min-width: 992px) {
  blockquote {
    padding: 32px 64px;
    margin-top: 24px;
    margin-bottom: 24px;
  }
}

blockquote p {
  position: relative;
  font-size: 0.8125rem;
  margin-bottom: 7px !important;
  line-height: 1.7;
  letter-spacing: 0 !important;
}
@media (min-width: 768px) {
  blockquote p {
    font-size: 0.9375rem;
  }
}
blockquote p::before, blockquote p::after {
  position: absolute;
  content: "";
  width: 18px;
  height: 13px;
}
blockquote p::before {
  background: url(../img/common/blockquote-left.png) no-repeat center center/contain;
  top: 0;
  left: -26px;
}
blockquote p::after {
  background: url(../img/common/blockquote-right.png) no-repeat center center/contain;
  bottom: 0;
  right: -26px;
}

blockquote a {
  font-size: 1rem !important;
}

blockquote cite {
  display: block;
  text-align: right;
  color: #0E578C;
  font-size: 0.9em;
  margin-bottom: 8px;
  font-style: initial;
}

.wp-block-media-text .wp-block-media-text__content {
  padding: 0;
}
@media (min-width: 768px) {
  .wp-block-media-text .wp-block-media-text__content {
    padding: 0 5%;
  }
}

@media (min-width: 768px) {
  .wp-block-media-text img {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

.wp-block-table {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

/*---------------------------------
  医療ブログ 一覧ページ
---------------------------------*/
.archive .blog__category,
.archive .news__category {
  padding-top: 5px;
  padding-bottom: 5px;
}

.blog-archive {
  padding-bottom: 100px;
}
@media (min-width: 992px) {
  .blog-archive {
    padding-bottom: 180px;
  }
}

.blog-cards {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 50px;
  row-gap: 60px;
}
@media (min-width: 576px) {
  .blog-cards {
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    row-gap: 30px;
  }
}
@media (min-width: 768px) {
  .blog-cards {
    grid-template-columns: 1fr 1fr 1fr;
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
  }
}
@media (min-width: 992px) {
  .blog-cards {
    margin-bottom: 70px;
  }
}
@media (min-width: 1200px) {
  .blog-cards {
    row-gap: 72px;
    margin-bottom: 70px;
  }
}

.blog-card {
  border-radius: 8px 8px 0 0;
}

.blog-card__date {
  line-height: 1;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .blog-card__date {
    margin-bottom: 8px;
  }
}

.blog-card__time {
  font-size: 0.875rem;
  color: #5F5F5F;
  display: block;
  font-family: "Open Sans", sans-serif;
  margin-right: 12px;
}
@media (min-width: 768px) {
  .blog-card__time {
    margin-right: 18px;
  }
}

.blog-card__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 3px;
}

.blog-card__tag .blog__category:not(:last-child) {
  margin-right: 3px;
}

.blog .blog__content a {
  color: #0074D9;
}

.blog-link {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .blog-link {
    padding-top: initial;
    padding-bottom: initial;
  }
}
.blog-link:hover {
  opacity: 0.7;
}

.blog-contents__row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .blog-contents__row {
    margin-bottom: 12px;
  }
}

.blog-contents__img {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-top: 52.5%;
  width: 100%;
}
.blog-contents__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  top: 0;
}

.blog-contents__title {
  font-size: 0.9375rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .blog-contents__title {
    font-size: 1rem;
  }
}

.blog-contents__text {
  line-height: 1.5;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .blog-contents__text {
    font-size: 1rem;
  }
}

.blog-contents__content {
  padding: 16px 0 0;
}
@media (min-width: 768px) {
  .blog-contents__content {
    padding: 12px 0;
  }
}

/*---------------------------------
  医療ブログ 詳細ページ
---------------------------------*/
.blog {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .blog {
    margin-bottom: 88px;
  }
}

.blog article p {
  letter-spacing: 0.02em;
}

.news article ol,
.blog article ol {
  padding-left: 1.125rem;
  margin-bottom: 1rem;
}

.news article ol li,
.blog article ol li {
  font-weight: 400;
  list-style-type: decimal;
}

.news article ol li::marker,
.blog article ol li::marker {
  color: #0082C7;
  font-weight: 400;
}

.news article ul,
.blog article ul {
  margin-bottom: 1rem;
  padding-left: 8px;
  list-style-type: disc !important;
}

.news article ul li,
.blog article ul li {
  font-weight: 400;
  list-style-type: none;
  line-height: 2;
}
.news article ul li::before,
.blog article ul li::before {
  position: relative;
  content: "";
  border-radius: 50%;
  top: -3px;
  left: -8px;
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #0082C7;
}
@media (min-width: 768px) {
  .news article ul li::before,
  .blog article ul li::before {
    top: -1.5px;
    width: 9px;
    height: 9px;
  }
}

.news article a,
.blog article a {
  color: #0E578C;
  font-style: initial;
}

.blog article a,
.news article a {
  text-decoration: underline;
}

.wp-block-image figcaption {
  font-size: calc(0.625rem * 1.4) !important;
}

.wp-block-image {
  margin: 0 0 0.875rem 0;
}
@media (min-width: 992px) {
  .wp-block-image {
    margin: 0 0 2rem 0;
  }
}

.wp-block-image :where(figcaption) {
  margin-bottom: initial;
  margin-top: 0.8em;
}

/*---------------------------------
  関連記事
---------------------------------*/
.related-box {
  background-color: #fff;
  padding: 40px 16px;
}
@media (min-width: 768px) {
  .related-box {
    padding: 40px;
  }
}
@media (min-width: 992px) {
  .related-box {
    padding: 60px;
  }
}

.related-posts__title-en {
  color: #8E9AA2;
  font-size: 0.875rem;
  display: block;
  line-height: 1;
}
@media (min-width: 992px) {
  .related-posts__title-en {
    font-size: 0.9375rem;
  }
}

.related-posts__title {
  position: relative;
  font-size: 1.375rem;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .related-posts__title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .related-posts__title {
    font-size: 2rem;
  }
}

.related-posts {
  margin-bottom: 100px;
}
@media (min-width: 992px) {
  .related-posts {
    margin-bottom: 140px;
  }
}
.related-posts .blog-cards {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 50px;
  row-gap: 60px;
}
@media (min-width: 576px) {
  .related-posts .blog-cards {
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}
@media (min-width: 768px) {
  .related-posts .blog-cards {
    grid-template-columns: 1fr 1fr 1fr;
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 30px;
  }
}
@media (min-width: 992px) {
  .related-posts .blog-cards {
    margin-bottom: 70px;
  }
}
.related-posts .blog-card {
  border-radius: 8px 8px 0 0;
}
.related-posts .blog-card__date {
  line-height: 1;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .related-posts .blog-card__date {
    margin-bottom: 8px;
  }
}
.related-posts .blog-card__time {
  color: #5F5F5F;
  font-size: 0.875rem;
  display: block;
  font-family: "Open Sans", sans-serif;
  margin-right: 12px;
}
@media (min-width: 768px) {
  .related-posts .blog-card__time {
    margin-right: 18px;
  }
}
.related-posts .blog-card__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 3px;
}
.related-posts .blog-card__tag .blog__category:not(:last-child) {
  margin-right: 3px;
}
.related-posts .blog .blog__content a {
  color: #0074D9;
}
.related-posts .blog-link {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .related-posts .blog-link {
    padding-top: initial;
    padding-bottom: initial;
  }
}
.related-posts .blog-link:hover {
  opacity: 0.7;
}
.related-posts .blog-contents__row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .related-posts .blog-contents__row {
    margin-bottom: 12px;
  }
}
.related-posts .blog-contents__img {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-top: 52.5%;
  width: 100%;
}
.related-posts .blog-contents__img img {
  position: absolute;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  top: 0;
}
@media (min-width: 992px) {
  .related-posts .blog-contents__img img {
    border-radius: 16px;
  }
}
.related-posts .blog-contents__title {
  font-size: 0.875rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .related-posts .blog-contents__title {
    font-size: 1rem;
  }
}
.related-posts .blog-contents__text {
  line-height: 1.5;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .related-posts .blog-contents__text {
    font-size: 1rem;
  }
}
.related-posts .blog-contents__content {
  padding: 16px 0 0;
}
@media (min-width: 768px) {
  .related-posts .blog-contents__content {
    padding: 12px 0;
  }
}

.news__meta a,
.blog__meta a {
  text-decoration: initial !important;
}

/*---------------------------------
  投稿ページ youtube
---------------------------------*/
.wp-block-embed.wp-block-embed-youtube {
  margin-top: 32px;
  margin-bottom: 32px;
}

.wp-has-aspect-ratio {
  position: relative;
}

.wp-embed-aspect-16-9 .wp-block-embed__wrapper {
  margin: auto;
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}
.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.wp-block-embed > figcaption {
  color: inherit;
  display: block !important;
  font-size: 1em;
  line-height: 1.4;
  margin-bottom: 0;
  margin-top: 0.75em;
  opacity: 0.8;
  text-align: center;
}

.single .column-archive {
  margin-bottom: 80px;
}

.column-archive .util-link01 {
  margin: auto;
}

.single-news .column-archive {
  margin-bottom: 0;
}
.single-news .news__contents {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .single-news .news__contents {
    margin-bottom: 70px;
  }
}

.single .blog__content > :first-child h2,
.single .blog__content div > :first-child h2 {
  margin: 2.5rem 0 1rem !important;
}
@media (min-width: 768px) {
  .single .blog__content > :first-child h2,
  .single .blog__content div > :first-child h2 {
    margin: 4.5rem 0 1.25rem !important;
  }
}

html {
  font-size: 100%;
}

body {
  color: #333;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
@media (max-width: 374px) {
  body {
    font-size: 0.875rem;
  }
}
@media (min-width: 992px) {
  body {
    line-height: 1.75;
    font-size: 1rem;
  }
}
body p {
  font-weight: 400;
}

body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

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

.inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

.inner01 {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

.inner02 {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

.only-pc {
  display: none;
}
@media (min-width: 768px) {
  .only-pc {
    display: block;
  }
}

@media (min-width: 768px) {
  .only-sp {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */