@charset "UTF-8";
/*================================================================
Chrome/Firefox/Edgeなど、各ブラウザはそれぞれデフォルトで効くCSSを持っています。
何もしないと見え方が微妙に変わるので、デフォルトのCSSをリセットして
ブラウザごとの表示の差異をなくすために書くのが「リセットCSS」です。
================================================================*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

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

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

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

body {
  color: #393939;
  font-size: clamp(1rem, 0.7857142857rem + 0.390625vw, 1.1428571429rem);
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 500;
  line-height: 1.71429;
  margin-inline: auto;
}

html {
  scroll-behavior: smooth;
}

.l-section {
  margin-top: 75px;
}
@media screen and (min-width: 768px) {
  .l-section {
    margin-top: 120px;
  }
}

.l-section__fv {
  margin-top: 80px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-section__fv {
    margin-top: 120px;
    padding-inline: 60px;
  }
}

.c-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100vmax;
  min-height: 43px;
  min-width: 176px;
  padding-block: 1rem;
  padding-inline: 46px;
  border: 1px solid #1391e6;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  cursor: pointer;
}

.c-button--arrow {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100vmax;
  min-height: 39px;
  min-width: 176px;
  padding-inline: 44px;
  border: 1px solid #1391e6;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  cursor: pointer;
  overflow: hidden; /* 矢印がボタン外に飛び出さないように */
}
@media screen and (min-width: 768px) {
  .c-button--arrow {
    padding-block: 10px;
  }
}

.c-button__primary {
  color: #1391e6;
  background-color: #fff;
  cursor: pointer;
}
@media (any-hover: hover) {
  .c-button__primary:hover {
    color: #ffffff;
    background-color: #1391e6;
  }
}

.c-button__primary--arrow {
  font-size: 14px;
  color: #1391e6;
  background-color: #fff;
  min-width: 176px;
}
.c-button__primary--arrow::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  width: 10px; /* くの字を山なりに見た時、左側の長さ */
  height: 10px; /* くの字を山なりに見た時、右側の長さ */
  border-top: 1.5px solid #1391e6; /* くの字を山なりに見た時、左側の太さと色 */
  border-right: 1.5px solid #1391e6; /* くの字を山なりに見た時、右側の太さと色 */
  rotate: 45deg; /* くの字の向き */
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease; /* 右に移動するアニメーション */
}
.c-button__primary--arrow::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  width: 12px;
  height: 1.5px;
  background-color: #1391e6;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease; /* 右に移動するアニメーション */
}
@media (any-hover: hover) {
  .c-button__primary--arrow:hover::before {
    right: 10px; /* 矢印を右に動かす */
    border-top: 1.5px solid #fff; /* くの字を山なりに見た時、左側の太さと色 */
    border-right: 1.5px solid #fff; /* くの字を山なりに見た時、右側の太さと色 */
  }
}
@media (any-hover: hover) {
  .c-button__primary--arrow:hover::after {
    right: 10px; /* 棒も一緒に動かす */
    color: #ffffff;
    background-color: #fff;
  }
}
@media (any-hover: hover) {
  .c-button__primary--arrow:hover {
    color: #ffffff;
    background-color: #1391e6;
  }
}

.c-button__secondary {
  cursor: pointer;
  color: #ffffff;
  background-color: #1391e6;
}
@media (any-hover: hover) {
  .c-button__secondary:hover {
    border: #0060a0;
    background-color: #0060a0;
  }
}

.c-button__tertiary {
  min-width: 0;
  height: 120px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  border-radius: 20px 0px 0px 20px;
  padding-top: 63px;
  padding-bottom: 21px;
  padding-inline: 17px;
  background: #1391e6 url("../img/web-reserve-icon.svg") no-repeat center 21px/52px 32px;
  position: fixed;
  top: 175px;
  right: 0;
  z-index: 999;
  display: none;
  cursor: pointer;
  text-transform: uppercase;
}
@media screen and (min-width: 1200px) {
  .c-button__tertiary {
    display: inline-block;
  }
}
@media (any-hover: hover) {
  .c-button__tertiary:hover {
    border: #0060a0;
    background-color: #0060a0;
  }
}

.p-section__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .p-section__title-wrap {
    gap: 28px;
  }
}

@media screen and (min-width: 768px) {
  .--p-section__title-wrap--mt {
    margin-top: -14px;
  }
}

@media screen and (min-width: 768px) {
  .p-section__title-deco img {
    width: 67px;
    height: 20px;
  }
}

.p-section__title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .p-section__title {
    font-size: 28px;
    line-height: normal;
    letter-spacing: 2.24px;
  }
}

.p-section__title.--br {
  max-width: 130px;
}
@media screen and (min-width: 768px) {
  .p-section__title.--br {
    max-width: 100vmax;
  }
}

.btn-top {
  position: fixed;
  z-index: 50;
  bottom: 98px;
  right: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
@media screen and (min-width: 900px) {
  .btn-top {
    bottom: 40px;
    right: 20px;
  }
}

.is-show {
  opacity: 1;
  visibility: visible;
}

.breadcrumb__container {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .breadcrumb__container {
    padding-inline: 60px;
  }
}

.breadcrumb {
  color: #c2c2c2;
  font-size: 12px;
  -webkit-margin-before: 8px;
          margin-block-start: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    -webkit-margin-before: 13px;
            margin-block-start: 13px;
    -webkit-margin-start: 30px;
            margin-inline-start: 30px;
  }
}

.home {
  font-size: 12px;
}

.current-item {
  color: #393939;
  font-size: 12px;
}

.breadcrumb .separator {
  color: #393939;
}

.m_horizontal {
  max-width: 1050px;
  margin-inline: auto;
  -webkit-margin-after: 28.0898876404%;
          margin-block-end: 28.0898876404%;
  padding-inline: 20px;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .m_horizontal {
    padding-inline: 26px;
    -webkit-margin-before: 77px;
            margin-block-start: 77px;
    -webkit-margin-after: 13.3333333333%;
            margin-block-end: 13.3333333333%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}

@media screen and (min-width: 768px) {
  .card-unit {
    width: 67.2277227723%;
  }
}

@media screen and (min-width: 768px) {
  #secondary {
    width: 29.702970297%;
  }
}

.pagination {
  -webkit-margin-before: 60px;
          margin-block-start: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
@media screen and (min-width: 768px) {
  .pagination {
    -webkit-margin-before: 100px;
            margin-block-start: 100px;
    gap: 10px;
  }
}

.prev,
.next {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  width: 71px;
  background-color: #1391e6;
  color: #ffffff;
  border-radius: 4px;
  border: 1px solid #1391e6;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .prev,
  .next {
    gap: 6px;
    width: 82px;
  }
}

.prev-icon {
  position: relative;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
}
.prev-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  bottom: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #1391e6;
  border-right: solid 1px #1391e6;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
.prev-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3px; /* 横棒を矢印から少し右に配置 */
  width: 6px;
  height: 1px;
  background-color: #1391e6;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.prev-text,
.next-text {
  font-size: 11px;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .prev-text,
  .next-text {
    font-size: 14px;
  }
}

.next-icon {
  position: relative;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
}
.next-icon::before {
  content: "";
  position: absolute;
  top: 0;
  right: 4px;
  bottom: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #1391e6;
  border-right: solid 1px #1391e6;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.next-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px; /* 横棒を矢印から少し左に配置 */
  width: 6px;
  height: 1px;
  background-color: #1391e6;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: 1px solid #1391e6;
  color: #1391e6;
  font-size: 12px;
  line-height: normal;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .page-numbers {
    width: 34px;
    height: 36px;
  }
}

.prev.page-numbers,
.next.page-numbers {
  width: 71px;
  height: 30px;
}
@media screen and (min-width: 768px) {
  .prev.page-numbers,
  .next.page-numbers {
    width: 82px;
    height: 36px;
  }
}

.pagination-single {
  -webkit-margin-before: 33px;
          margin-block-start: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .pagination-single {
    -webkit-margin-before: 70px;
            margin-block-start: 70px;
    gap: 20px;
  }
}

.prev-single,
.next-single {
  width: 108px;
  height: 39px;
}
@media screen and (min-width: 768px) {
  .prev-single,
  .next-single {
    width: 124px;
    height: 36px;
  }
}

.prev-icon-single {
  position: relative;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
}
.prev-icon-single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px #1391e6;
  border-right: solid 1px #1391e6;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
.prev-icon-single::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px; /* 横棒を矢印から少し右に配置 */
  width: 8px;
  height: 1px;
  background-color: #1391e6;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.page-summary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 95px;
  height: 41px;
  border-radius: 4px;
  border: 1px solid #1391e6;
  color: #1391e6;
  font-size: 14px;
  line-height: normal;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .page-summary {
    width: 90px;
    height: 41px;
  }
}

.prev-text-single,
.next-text-single {
  font-size: 14px;
  line-height: normal;
}

.next-icon-single {
  position: relative;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
}
.next-icon-single::before {
  content: "";
  position: absolute;
  top: 0;
  right: 4px;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px #1391e6;
  border-right: solid 1px #1391e6;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.next-icon-single::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px; /* 横棒を矢印から少し左に配置 */
  width: 8px;
  height: 1px;
  background-color: #1391e6;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.current {
  background-color: #1391e6;
  color: #ffffff;
}

.widget {
  -webkit-margin-before: 100px;
          margin-block-start: 100px;
}
@media screen and (min-width: 768px) {
  .widget {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}
.widget:not(:first-of-type) {
  -webkit-margin-before: 48px;
          margin-block-start: 48px;
}
@media screen and (min-width: 768px) {
  .widget:not(:first-of-type) {
    -webkit-margin-before: 50px;
            margin-block-start: 50px;
  }
}

.widget.--widget-mbs {
  -webkit-margin-before: 58px;
          margin-block-start: 58px;
}

.widget-title-wrap {
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-bottom: 1px solid #888;
  padding-bottom: 10px;
}

.last-title-wrap {
  -webkit-margin-after: 16px;
          margin-block-end: 16px;
}

.widget-icon1 {
  background: url("../img/hospital.svg") no-repeat center center/cover;
  width: 24px;
  height: 24px;
}

.widget-icon2 {
  background: url("../img/recent.svg") no-repeat center center/cover;
  width: 24px;
  height: 24px;
}

.widget-icon3 {
  background: url("../img/category.svg") no-repeat center center/cover;
  width: 24px;
  height: 24px;
}

.widget-title {
  font-weight: 700;
  line-height: 1.25;
}

.wprofile-contents {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
}

.wprofile-contents-title {
  font-weight: 700;
  line-height: normal;
}

@media screen and (min-width: 768px) {
  .widget-title,
  .wprofile-contents-title {
    font-size: 16px;
    font-weight: 700;
  }
}

.wprofile-contents-text {
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
  font-size: 14px;
}

.wprofile-contents-link {
  position: relative;
  display: inline-block;
  margin-block: 10px;
  -webkit-margin-start: 3px;
          margin-inline-start: 3px;
  font-size: 14px;
  line-height: normal;
  color: #1391e6;
  opacity: 1;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
.wprofile-contents-link::after {
  content: "";
  position: absolute;
  top: 0;
  right: -12px;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #1391e6;
  border-right: solid 2px #1391e6;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (any-hover: hover) {
  .wprofile-contents-link:hover {
    opacity: 0.6;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}
@media screen and (min-width: 768px) {
  .wprofile-contents-link {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}

.sp-br {
  display: inline-block;
}

.entry-404 {
  margin-inline: auto;
  -webkit-margin-before: 200px;
          margin-block-start: 200px;
  -webkit-margin-after: 100px;
          margin-block-end: 100px;
  text-align: center;
}

.entry-404-head {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  color: #1391e6;
}

.entry-404-lead {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  line-height: 1.5;
  color: #1391e6;
  font-size: 14px;
}

.entry-404-content {
  margin-block: 20px;
  line-height: 1.5;
  color: #1391e6;
  font-size: 14px;
}

.entry-404-btn {
  color: #1391e6;
}

.p-blog__card-category-archive.u-hidden {
  background: #fff;
}

.l-header {
  background: rgba(255, 255, 255, 0.85);
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  height: 60px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 80px;
  }
}

.p-header.drawer-is-checked {
  background: rgb(0, 96, 160);
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 15px;
  padding-left: 20px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding-block: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .p-header__inner {
    padding-inline: 40px;
    padding-block: 0px;
  }
}

.c-logo--img--title {
  margin-left: 6px;
}

.p-header__nav {
  display: none;
}
@media screen and (min-width: 1200px) {
  .p-header__nav {
    display: block;
  }
}

.c-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 24px;
  margin-block: 7px;
}

.c-navigation__link {
  display: block;
  height: 34px;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
  cursor: pointer;
}
@media (any-hover: hover) {
  .c-navigation__link:hover {
    color: #1391e6;
    -webkit-transition: color 0.8s ease;
    transition: color 0.8s ease;
  }
}

.c-navigation__link--text {
  position: relative;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.63636;
  padding-top: 33px;
}
.c-navigation__link--text::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  translate: -50% 0;
}

.c-navigation__link--text.is-current {
  color: #1391e6;
}

.icon-home {
  position: relative;
}
.icon-home::before {
  content: "";
  display: block;
  background: url("../img/home.svg") no-repeat center center/cover;
  width: 18px;
  height: 19.996px;
  -webkit-transition: background-image 0.4s ease;
  transition: background-image 0.4s ease;
}
.icon-home::after {
  content: "";
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
@media (any-hover: hover) {
  .icon-home:hover::before {
    -webkit-transition: background-image 0.8s ease;
    transition: background-image 0.8s ease;
  }
  .icon-home:hover::after {
    content: "";
    position: absolute;
    inset: auto auto -6px 50%;
    translate: -50% 0;
    -webkit-transition: background-color 0.8s ease;
    transition: background-color 0.8s ease;
    width: 20px;
    height: 2px;
    background-color: #1391e6;
  }
}
.icon-home:hover::before {
  background-image: url("../img/home-blue.svg");
}
.icon-home.is-current::before {
  background-image: url("../img/home-blue.svg");
}
.icon-home.is-current::after {
  content: "";
  position: absolute;
  inset: auto auto -6px 50%;
  translate: -50% 0;
  width: 20px;
  height: 2px;
  background-color: #1391e6;
}

.icon-about {
  position: relative;
}
.icon-about::before {
  content: "";
  display: block;
  background: url("../img/about.svg") no-repeat center center/cover;
  width: 24px;
  height: 24px;
  -webkit-transition: background-image 0.4s ease;
  transition: background-image 0.4s ease;
}
.icon-about::after {
  content: "";
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
@media (any-hover: hover) {
  .icon-about:hover::before {
    -webkit-transition: background-image 0.8s ease;
    transition: background-image 0.8s ease;
  }
  .icon-about:hover::after {
    content: "";
    position: absolute;
    inset: auto auto -6px 50%;
    translate: -50% 0;
    -webkit-transition: background-color 0.8s ease;
    transition: background-color 0.8s ease;
    width: 20px;
    height: 2px;
    background-color: #1391e6;
  }
}
.icon-about:hover::before {
  background-image: url("../img/about-blue.svg");
}
.icon-about.is-current::before {
  background-image: url("../img/about-blue.svg");
}
.icon-about.is-current::after {
  content: "";
  position: absolute;
  inset: auto auto -6px 50%;
  translate: -50% 0;
  width: 20px;
  height: 2px;
  background-color: #1391e6;
}

.icon-guide {
  position: relative;
}
.icon-guide::before {
  content: "";
  display: block;
  background: url("../img/guide.svg") no-repeat center center/cover;
  width: 24px;
  height: 24px;
  -webkit-transition: background-image 0.4s ease;
  transition: background-image 0.4s ease;
}
.icon-guide::after {
  content: "";
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
@media (any-hover: hover) {
  .icon-guide:hover::before {
    -webkit-transition: background-image 0.8s ease;
    transition: background-image 0.8s ease;
  }
  .icon-guide:hover::after {
    content: "";
    position: absolute;
    inset: auto auto -6px 50%;
    translate: -50% 0;
    -webkit-transition: background-color 0.8s ease;
    transition: background-color 0.8s ease;
    width: 20px;
    height: 2px;
    background-color: #1391e6;
  }
}
.icon-guide:hover::before {
  background-image: url("../img/guide-blue.svg");
}
.icon-guide.is-current::before {
  background-image: url("../img/guide-blue.svg");
}
.icon-guide.is-current::after {
  content: "";
  position: absolute;
  inset: auto auto -6px 50%;
  translate: -50% 0;
  width: 20px;
  height: 2px;
  background-color: #1391e6;
}

.icon-staff {
  position: relative;
}
.icon-staff::before {
  content: "";
  display: block;
  background: url("../img/staff.svg") no-repeat center center/cover;
  width: 24px;
  height: 24px;
  -webkit-transition: background-image 0.4s ease;
  transition: background-image 0.4s ease;
}
.icon-staff::after {
  content: "";
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
@media (any-hover: hover) {
  .icon-staff:hover::before {
    -webkit-transition: background-image 0.8s ease;
    transition: background-image 0.8s ease;
  }
  .icon-staff:hover::after {
    content: "";
    position: absolute;
    inset: auto auto -6px 50%;
    translate: -50% 0;
    -webkit-transition: background-color 0.8s ease;
    transition: background-color 0.8s ease;
    width: 20px;
    height: 2px;
    background-color: #1391e6;
  }
}
.icon-staff:hover::before {
  background-image: url("../img/staff-blue.svg");
}
.icon-staff.is-current::before {
  background-image: url("../img/staff-blue.svg");
}
.icon-staff.is-current::after {
  content: "";
  position: absolute;
  inset: auto auto -6px 50%;
  translate: -50% 0;
  width: 20px;
  height: 2px;
  background-color: #1391e6;
}

.icon-blog {
  position: relative;
}
.icon-blog::before {
  content: "";
  display: block;
  background: url("../img/blog.svg") no-repeat center center/cover;
  width: 24px;
  height: 24px;
  -webkit-transition: background-image 0.4s ease;
  transition: background-image 0.4s ease;
}
.icon-blog::after {
  content: "";
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
@media (any-hover: hover) {
  .icon-blog:hover::before {
    -webkit-transition: background-image 0.8s ease;
    transition: background-image 0.8s ease;
  }
  .icon-blog:hover::after {
    content: "";
    position: absolute;
    inset: auto auto -6px 50%;
    translate: -50% 0;
    -webkit-transition: background-color 0.8s ease;
    transition: background-color 0.8s ease;
    width: 20px;
    height: 2px;
    background-color: #1391e6;
  }
}
.icon-blog:hover::before {
  background-image: url("../img/blog-blue.svg");
}
.icon-blog.is-current::before {
  background-image: url("../img/blog-blue.svg");
}
.icon-blog.is-current::after {
  content: "";
  position: absolute;
  inset: auto auto -6px 50%;
  translate: -50% 0;
  width: 20px;
  height: 2px;
  background-color: #1391e6;
}

.icon-mail {
  position: relative;
}
.icon-mail::before {
  content: "";
  display: block;
  background: url("../img/mail.svg") no-repeat center center/cover;
  width: 24px;
  height: 24px;
  -webkit-transition: background-image 0.4s ease;
  transition: background-image 0.4s ease;
}
.icon-mail::after {
  content: "";
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
@media (any-hover: hover) {
  .icon-mail:hover::before {
    -webkit-transition: background-image 0.8s ease;
    transition: background-image 0.8s ease;
  }
  .icon-mail:hover::after {
    content: "";
    position: absolute;
    inset: auto auto -6px 50%;
    translate: -50% 0;
    -webkit-transition: background-color 0.8s ease;
    transition: background-color 0.8s ease;
    width: 20px;
    height: 2px;
    background-color: #1391e6;
  }
}
.icon-mail:hover::before {
  background-image: url("../img/mail-blue.svg");
}
.icon-mail.is-current::before {
  background-image: url("../img/mail-blue.svg");
}
.icon-mail.is-current::after {
  content: "";
  position: absolute;
  inset: auto auto -6px 50%;
  translate: -50% 0;
  width: 20px;
  height: 2px;
  background-color: #1391e6;
}

.c-navigation__item--add {
  font-size: 12px;
  line-height: normal;
  padding-left: 37px;
}

.c-navigation__link--num {
  position: relative;
  padding-left: 35px;
  color: #1391e6;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
}
.c-navigation__link--num::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  translate: 0 -50%;
}

.icon-tel::before {
  content: "";
  background: url("../img/tel.svg") no-repeat center center/contain;
  width: 28px;
  height: 28px;
}

.drawer-icon {
  cursor: pointer;
  margin-left: auto;
  width: 32px;
  height: 32px;
  background: url("../img/hamburger-icon.svg") no-repeat center center/contain;
}
.drawer-icon.drawer-is-checked {
  background-image: url(../img/close-icon.svg);
}
@media screen and (min-width: 1200px) {
  .drawer-icon {
    display: none;
  }
}

.l-drawer-content {
  position: fixed;
  width: 100%;
  height: 100vh;
  -webkit-margin-before: -18px;
          margin-block-start: -18px; /* ヘッダーとの間を埋める分 */
  padding-top: 37.5px;
  background-color: #0060a0;
  z-index: 100;
  display: none;
  -webkit-transform: translateX(0);
          transform: translateX(0); /* 初期位置は非表示 */
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.l-drawer-content.drawer-is-checked {
  -webkit-transform: translateX(100%);
          transform: translateX(100%); /* ドロワーを表示 */
}
@media screen and (min-width: 768px) {
  .l-drawer-content {
    -webkit-margin-before: -40px;
            margin-block-start: -40px; /* ヘッダーとの間を埋める分 */
  }
}

.c-drawer--navigation {
  padding-inline: 60px;
}

.c-drawer--navigation__item {
  position: relative;
}
.c-drawer--navigation__item:nth-of-type(-n + 6) {
  background: url("../img/drawer-bar.svg") no-repeat top center/contain;
  padding-block: 15.9px;
}

.c-drawer--navigation__link--text {
  padding-left: 38px;
  color: #ffffff;
  font-size: 14px;
}

.icon-home-drawer::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/home-drawer.svg") no-repeat center center/contain;
  width: 24px;
  height: 24px;
}
.icon-home-drawer::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/icon-right.svg") no-repeat center center/contain;
  width: 14px;
  height: 14px;
}

.icon-about-drawer::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/hospital-drawer.svg") no-repeat center center/contain;
  width: 24px;
  height: 24px;
}
.icon-about-drawer::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/icon-right.svg") no-repeat center center/contain;
  width: 14px;
  height: 14px;
}

.icon-guide-drawer::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/guide-drawer.svg") no-repeat center center/contain;
  width: 24px;
  height: 24px;
}
.icon-guide-drawer::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/icon-right.svg") no-repeat center center/contain;
  width: 14px;
  height: 14px;
}

.icon-staff-drawer::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/staff-drawer.svg") no-repeat center center/contain;
  width: 24px;
  height: 24px;
}
.icon-staff-drawer::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/icon-right.svg") no-repeat center center/contain;
  width: 14px;
  height: 14px;
}

.icon-blog-drawer::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/blog-drawer.svg") no-repeat center center/contain;
  width: 24px;
  height: 24px;
}
.icon-blog-drawer::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/icon-right.svg") no-repeat center center/contain;
  width: 14px;
  height: 14px;
}

.icon-mail-drawer {
  background: url("../img/drawer-bar.svg") no-repeat bottom center/contain;
  padding-bottom: 16px;
}
.icon-mail-drawer::before {
  content: "";
  position: absolute;
  inset: 40% auto auto 0;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  background: url("../img/mail-drawer.svg") no-repeat center center/contain;
  width: 24px;
  height: 24px;
}
.icon-mail-drawer::after {
  content: "";
  position: absolute;
  inset: 40% 0 auto auto;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  background: url("../img/icon-right.svg") no-repeat center center/contain;
  width: 14px;
  height: 14px;
}

.c-drawer--btn-reserve {
  background: rgba(255, 255, 255, 0.85);
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1000;
}
@media screen and (min-width: 1200px) {
  .c-drawer--btn-reserve {
    display: none;
  }
}

.c-drawer--btn-reserve__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.c-drawer--btn-reserve__link-num {
  position: relative;
  padding-left: 22px;
  color: #1391e6;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}
.c-drawer--btn-reserve__link-num::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.icon-tel-drawer::before {
  content: "";
  background: url("../img/tel.svg") no-repeat center center/contain;
  width: 18px;
  height: 18px;
}

.c-drawer--btn-reserve__opening {
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  line-height: normal;
}

.c-drawer--btn-reserve__wrap-web {
  margin-block: 6px;
}

.c-footer__bg-top {
  background: url("../img/footer-bg-top.svg") no-repeat right -13px top 0/cover;
  height: 32px;
}
@media screen and (min-width: 768px) {
  .c-footer__bg-top {
    background: url("../img/footer-bg-top.svg") no-repeat right 0 top 0/cover;
  }
}

.l-footer {
  background-color: #dff1fd;
  padding-top: 10px;
}

.p-footer__section-top {
  text-align: center;
}

.p-footer__section-top__inner {
  padding-inline: 10px;
}
@media screen and (min-width: 768px) {
  .p-footer__section-top__inner {
    -webkit-margin-before: 42px;
            margin-block-start: 42px;
  }
}

.p-footer__section-top__wrap {
  max-width: 1000px;
  margin-inline: auto;
  padding-top: 30px;
  padding-bottom: 10px;
  background-color: #fff;
  border-radius: 8px;
}
@media screen and (min-width: 900px) {
  .p-footer__section-top__wrap {
    padding-inline: 49px;
    padding-bottom: 35px;
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(0.625rem, -16.25rem + 30vw, 2.5rem);
  }
}

@media screen and (min-width: 900px) {
  .p-footer__section-top__wrap-content {
    width: 55.3364269142%;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__logo {
    -webkit-margin-before: 6px;
            margin-block-start: 6px;
  }
  .p-footer__logo img {
    width: 404px;
    height: auto;
  }
}

.p-footer__add {
  margin-top: 14px;
  margin-bottom: 15px;
  padding-left: 0;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-footer__add {
    margin-top: 9px;
    margin-bottom: 14px;
  }
}

.p-footer__text {
  margin-bottom: 14px;
  font-size: 12px;
  color: #1391e6;
}
@media screen and (min-width: 768px) {
  .p-footer__text {
    margin-bottom: 17px;
  }
}

.p-footer__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.u-button1 {
  padding-block: 0;
  padding-inline: 0;
  min-width: 0;
  min-height: 0;
  width: 150px;
  height: 38px;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  gap: 6px;
  text-transform: uppercase;
}
.u-button1 img {
  width: 24px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .u-button1 img {
    height: 24px;
  }
}
@media screen and (min-width: 768px) {
  .u-button1 {
    width: 223px;
    height: 56px;
    font-size: 16px;
    font-weight: 500;
    gap: 8px;
  }
}

.u-button2 {
  padding-block: 0;
  padding-inline: 0;
  min-width: 0;
  min-height: 0;
  width: 150px;
  height: 38px;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  gap: 6px;
  text-transform: uppercase;
}
.u-button2 img {
  width: 24px;
  height: 20px;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
@media screen and (min-width: 768px) {
  .u-button2 img {
    height: 24px;
  }
}
@media screen and (min-width: 768px) {
  .u-button2 {
    width: 223px;
    height: 56px;
    font-size: 16px;
    font-weight: 500;
    gap: 8px;
  }
}
@media (any-hover: hover) {
  .u-button2:hover {
    color: #ffffff;
    background-color: #1391e6;
  }
  .u-button2:hover img {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
}

.c-footer__info-time {
  max-width: 540px;
  margin-inline: auto;
  -webkit-margin-before: 23px;
          margin-block-start: 23px;
}
.c-footer__info-time img {
  width: 335px;
  height: 117px;
}
@media screen and (min-width: 768px) {
  .c-footer__info-time img {
    width: 477px;
    height: 166px;
  }
}
@media screen and (min-width: 768px) {
  .c-footer__info-time {
    -webkit-margin-before: 22px;
            margin-block-start: 22px;
  }
}

.p-footer__map {
  aspect-ratio: 1/1;
  min-width: clamp(18.75rem, 13.295rem + 27.27vw, 33.75rem);
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .p-footer__map {
    min-width: clamp(21.875rem, 2.188rem + 35vw, 24.063rem);
  }
}

.p-footer__section-bottom-container {
  container-type: inline-size;
  container-name: footer-bottom;
  text-transform: uppercase;
}

.p-footer__section-bottom {
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 20px;
  padding-bottom: 60px;
  --_column: 1;
  display: grid;
  grid-template-columns: repeat(var(--_column), 1fr);
}
@container footer-bottom (800px <= inline-size) {
  .p-footer__section-bottom {
    --_column: 1;
  }
}
@container footer-bottom (1000px <= inline-size) {
  .p-footer__section-bottom {
    padding-inline: 0;
    -webkit-padding-start: 83px;
            padding-inline-start: 83px;
    padding-bottom: 48px;
    -webkit-column-gap: 37px;
       -moz-column-gap: 37px;
            column-gap: 37px;
    grid-template-columns: 35px 130px 124px 1fr 256px;
  }
}

.p-footer__nav-heading-wrap {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-heading-wrap {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}

.p-footer__nav-heading {
  -webkit-margin-before: 38px;
          margin-block-start: 38px;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-heading {
    -webkit-margin-before: 44px;
            margin-block-start: 44px;
  }
}

.p-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-footer__nav--height {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  height: 170px;
}
@container footer-bottom (800px <= inline-size) {
  .p-footer__nav--height {
    height: 180px;
  }
}

.p-footer__nav-item {
  -webkit-margin-before: 19px;
          margin-block-start: 19px;
  font-size: 16px;
  line-height: normal;
  position: relative;
}
.p-footer__nav-item::after, .p-footer__nav-item::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  border: solid transparent;
  height: 0;
  width: 0;
}
.p-footer__nav-item::after {
  border-left-color: #1391e6;
  border-width: 6px;
  margin-top: -6px;
}

.p-footer__nav-link {
  -webkit-margin-start: 12px;
          margin-inline-start: 12px;
}

.p-footer__copyright {
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: normal;
  background-color: #1391e6;
  color: #ffffff;
  padding-top: 18px;
  padding-bottom: 73px;
}
@media screen and (min-width: 900px) {
  .p-footer__copyright {
    padding-top: 16px;
    padding-bottom: 18px;
  }
}

.p-swiper {
  max-width: 1920px;
  width: 100%;
  position: relative;
  margin-inline: auto;
  padding-inline: 4px;
}
@media screen and (min-width: 768px) {
  .p-swiper {
    padding-inline: 44px;
  }
}

.swiper-container {
  position: relative;
}

.swiper {
  position: relative;
}

.p-swiper__mv {
  padding-inline: 16px;
}

.swiper-wrapper {
  position: relative;
}

.swiper-slide {
  position: relative;
}

.p-mv__slide-sp-img {
  border-radius: 8px;
  width: clamp(20.938rem, -0.886rem + 93.11vw, 43.75rem);
  aspect-ratio: 335/447;
}
@media screen and (min-width: 768px) {
  .p-mv__slide-sp-img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    aspect-ratio: 1160/520;
  }
}

.p-mv__slide-text {
  position: absolute;
  width: clamp(16.5rem, 2.39rem + 60.2vw, 31.25rem);
  bottom: 40px;
  left: 20px;
}
@media screen and (min-width: 768px) {
  .p-mv__slide-text {
    width: clamp(18.75rem, 8.063rem + 22.27vw, 25.875rem);
    bottom: 55px;
    left: 65px;
  }
}

.swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.swiper-pagination-bullet {
  opacity: 1;
  background: #c2c2c2;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #1391e6;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0; /* バレット間のスペース */
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -14px;
  left: 3px;
}
@media screen and (min-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: -25px;
    left: -8px;
  }
}

.swiper-button-prev::before {
  content: "";
  position: absolute;
  width: 32px;
  height: auto;
  top: 15%;
  left: -35%;
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .swiper-button-prev::before {
    width: 48px;
    top: 0;
    left: -16px;
  }
}
.swiper-button-prev::after {
  content: "";
  position: absolute;
  width: 11.733px;
  height: auto;
  top: 50%;
  left: 10%;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  aspect-ratio: 1;
  border-right: 2px solid #c2c2c2;
  border-bottom: 2px solid #c2c2c2;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev::after {
    width: 20px;
    top: 22px;
    left: 0;
    -webkit-transform: translateY(-50%) rotate(135deg);
            transform: translateY(-50%) rotate(135deg);
  }
}

.swiper-button-next::before {
  content: "";
  position: absolute;
  width: 32px;
  height: auto;
  top: 5px;
  left: 4px;
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .swiper-button-next::before {
    width: 48px;
    top: 0;
    left: 0;
  }
}
.swiper-button-next::after {
  content: "";
  position: absolute;
  width: 13px;
  height: auto;
  top: 21px;
  left: 12px;
  -webkit-transform: translateY(-40%) rotate(315deg);
          transform: translateY(-40%) rotate(315deg);
  aspect-ratio: 1;
  border-right: 2px solid #c2c2c2;
  border-bottom: 2px solid #c2c2c2;
}
@media screen and (min-width: 768px) {
  .swiper-button-next::after {
    width: 20px;
    top: 50%;
    left: 8px;
    -webkit-transform: translateY(-40%) rotate(315deg);
            transform: translateY(-40%) rotate(315deg);
  }
}

.l-inner--mv {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-inner--mv {
    padding-inline: 40px;
  }
}

.c-mv__info-wrap {
  margin-inline: auto;
  max-width: 1500px;
}
@media screen and (min-width: 900px) {
  .c-mv__info-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(1rem, 0.083rem + 4.58vw, 3.75rem);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .c-mv__info-time {
    z-index: 10;
    margin-top: -30px;
  }
}

.c-mv__info-time-img {
  position: relative;
  z-index: 10;
  margin-top: -20px;
}
@media screen and (min-width: 768px) {
  .c-mv__info-time-img img {
    width: 477px;
    height: auto;
  }
}

.c-mv__info-news {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .c-mv__info-news {
    margin-top: 18px;
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
}

.c-mv__info-news__card {
  max-width: 500px;
}
@media screen and (min-width: 900px) {
  .c-mv__info-news__card {
    max-width: 1500px;
  }
}

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

.c-mv__info-news__titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -webkit-padding-start: 15px;
          padding-inline-start: 15px;
}
@media screen and (min-width: 768px) {
  .c-mv__info-news__titles {
    -webkit-padding-start: 12px;
            padding-inline-start: 12px;
  }
}

.c-mv__info-news__title-ja {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media screen and (min-width: 768px) {
  .c-mv__info-news__title-ja {
    letter-spacing: 2px;
  }
}

.c-mv__info-news__title-en {
  color: #1391e6;
  font-size: 11px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media screen and (min-width: 768px) {
  .c-mv__info-news__title-en {
    font-size: 12px;
    letter-spacing: 1.2px;
  }
}

.c-mv__info-news__past-all {
  color: #888;
  font-size: 11px;
  line-height: normal;
  border-bottom: 1px solid; /* 線の太さと色 */
}
@media screen and (min-width: 768px) {
  .c-mv__info-news__past-all {
    font-size: 12px;
  }
}

.c-mv__info-news__lists {
  margin-top: 6px;
  margin-bottom: 50px;
  cursor: pointer;
}
@media (any-hover: hover) {
  .c-mv__info-news__lists:hover {
    color: #1391e6;
  }
}

.c-mv__info-news__list {
  -webkit-padding-before: 12px;
          padding-block-start: 12px;
  -webkit-padding-after: 10px;
          padding-block-end: 10px;
  border-top: 1px solid #393939;
  border-bottom: 1px solid #393939;
}
@media screen and (min-width: 768px) {
  .c-mv__info-news__list {
    -webkit-padding-before: 8px;
            padding-block-start: 8px;
    -webkit-padding-start: 7px;
            padding-inline-start: 7px;
  }
}

.p-news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 29px;
}
@media screen and (min-width: 768px) {
  .p-news__link {
    gap: clamp(0.313rem, -1.375rem + 3.52vw, 1.438rem);
  }
}

.p-news__link--meta {
  -webkit-padding-start: 6px;
          padding-inline-start: 6px;
  font-size: 12px;
  line-height: normal;
}

.p-news__link--date {
  font-size: 12px;
  line-height: normal;
}

.p-news-link__title {
  font-size: 14px;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .p-news-link__title {
    font-size: clamp(0.75rem, 0.563rem + 0.39vw, 0.875rem);
  }
}

.arrow-right {
  position: relative;
}
.arrow-right::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  width: 13px; /* くの字を山なりに見た時、左側の長さ */
  height: 13px; /* くの字を山なりに見た時、右側の長さ */
  border-top: 2px solid #393939; /* くの字を山なりに見た時、左側の太さと色 */
  border-right: 2px solid #393939; /* くの字を山なりに見た時、右側の太さと色 */
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); /* くの字の向き */
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease; /* 右に移動するアニメーション */
}
.arrow-right::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  width: 14px;
  height: 2px;
  background-color: #393939;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease; /* 右に移動するアニメーション */
}
@media (any-hover: hover) {
  .arrow-right:hover::before {
    right: 2px; /* 矢印を右に動かす */
    border-top: 2px solid #1391e6; /* くの字を山なりに見た時、左側の太さと色 */
    border-right: 2px solid #1391e6; /* くの字を山なりに見た時、右側の太さと色 */
  }
  .arrow-right:hover::after {
    right: 2px; /* 棒も一緒に動かす */
    color: #1391e6;
    background-color: #1391e6;
  }
}

.l-section__concept {
  margin-top: 66px;
}
@media screen and (min-width: 768px) {
  .l-section__concept {
    margin-top: 35px;
    margin-bottom: 112px;
  }
}

.c-background-top {
  background: url("../img/concept-bg.png") no-repeat left 10px top 0/146vw;
  aspect-ratio: 556/309;
}
@media screen and (min-width: 768px) {
  .c-background-top {
    background: url("../img/concept-bg.png") no-repeat left 427px top 15%/contain;
    width: 100%;
  }
}

.c-background {
  background: url("../img/concept-bg.png") no-repeat left 10px top 5.5%/146vw;
  aspect-ratio: 556/309;
}
@media screen and (min-width: 768px) {
  .c-background {
    background: url("../img/concept-bg.png") no-repeat left 427px top 15%/contain;
    width: 100%;
  }
}

.p-concept__wrap {
  --_column: 1;
  display: grid;
  grid-template-columns: repeat(var(--_column), 1fr);
}
@media screen and (min-width: 768px) {
  .p-concept__wrap {
    --_column: 2;
  }
}

.p-concept__contents {
  margin-top: 97px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-concept__contents {
    grid-column: 2;
    margin-top: 0;
    margin-block: auto;
    padding-top: 72px;
    max-width: 447px;
  }
}

.p-concept__contents__main-text {
  display: inline-block;
  margin-bottom: 14px;
  color: #1391e6;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
}
@media screen and (min-width: 768px) {
  .p-concept__contents__main-text {
    margin-bottom: 24px;
    font-size: 14px;
    letter-spacing: 1.4px;
  }
}

.p-concept__contents__title {
  margin-bottom: 27px;
  color: #393939;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .p-concept__contents__title {
    margin-bottom: 36px;
    font-size: clamp(1.25rem, 0.5rem + 1.56vw, 1.75rem);
    line-height: 1.57143;
    letter-spacing: 2.24px;
  }
}

.p-concept__contents__sub-text {
  margin-bottom: 37px;
  color: #393939;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-concept__contents__sub-text {
    font-size: clamp(0.75rem, 0.563rem + 0.39vw, 0.875rem);
  }
}

.p-concept__contents__button {
  text-align: center;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .p-concept__contents__button {
    text-align: left;
  }
}

.p-concept__img-wrap {
  margin: 47px 41px 98px 0px;
}
@media screen and (min-width: 768px) {
  .p-concept__img-wrap {
    margin: 193px 76px 108px 0px;
    max-width: clamp(25rem, 2.5rem + 46.88vw, 40rem);
    grid-column: 1;
    grid-area: 1;
  }
}

@media screen and (min-width: 768px) {
  .p-concept__img {
    max-width: clamp(25rem, 2.5rem + 46.88vw, 40rem);
  }
}

.l-section__recommend {
  margin-top: 0;
}

.p-recommend__wrap {
  container-type: inline-size;
  container-name: p-recommend__wrap;
  max-width: 966px;
  margin-inline: auto;
}

.p-recommend__cards {
  padding-inline: 20px;
  --_column: 1;
  display: grid;
  grid-template-columns: repeat(var(--_column), 1fr);
  gap: 57px;
}
@container p-recommend__wrap (768px <= inline-size) {
  .p-recommend__cards {
    --_column: 3;
    gap: clamp(0.625rem, -0.417rem + 5.21vw, 3.75rem);
  }
}
@container p-recommend__wrap (768px <= inline-size <=966px ) {
  .p-recommend__cards {
    padding-inline: 20px;
  }
}
@container p-recommend__wrap (966px <= inline-size) {
  .p-recommend__cards {
    padding-inline: 0;
  }
}

.p-recommend__card {
  container-type: inline-size;
  container-name: p-recommend__card;
  position: relative;
  padding-inline: 27px;
  text-align: center;
}
.p-recommend__card:first-of-type .p-recommend-text__img {
  margin-top: 34px;
}
@container p-recommend__wrap (768px <= inline-size) {
  .p-recommend__card {
    margin-top: 55px;
    padding-inline: 0;
  }
  .p-recommend__card:first-of-type .p-recommend-text__img {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-recommend-img-wrap {
    max-width: 276px;
  }
}

@media screen and (min-width: 768px) {
  .p-recommend__title {
    height: 32px;
  }
}

.p-recommend-text__img {
  margin-bottom: 11px;
}
@media screen and (min-width: 768px) {
  .p-recommend-text__img {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-recommend__img {
    -webkit-margin-before: 16px;
            margin-block-start: 16px;
  }
}

.p-recommend__description {
  display: inline-block;
  text-align: left;
  font-size: 14px;
  margin-top: 20px;
  max-width: 600px;
}
@media screen and (min-width: 768px) {
  .p-recommend__description {
    max-width: 1500px;
  }
}

.description-color {
  color: #ee5a6d;
}

.l-medical__bg-top {
  margin-top: 157px;
  position: relative;
  height: 15.859375vw;
  width: 100%;
}
.l-medical__bg-top::before {
  content: "";
  position: absolute;
  background: url("../img/medical-deco-bg-top.svg") no-repeat center top/cover;
  height: inherit;
  width: inherit;
}
@media screen and (min-width: 768px) {
  .l-medical__bg-top {
    margin-top: 143px;
  }
}

.l-section__medical {
  background-color: #dff1fd;
}

.l-inner__medical {
  padding-inline: 20px;
  container-type: inline-size;
  container-name: l-inner__medical;
}
@media screen and (min-width: 768px) {
  .l-inner__medical {
    padding-bottom: 78px;
  }
}

.p-medical__wrap {
  --_column: 1;
  --_gap: 20px;
  margin-inline: auto;
  margin-top: 39px;
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--_gap);
}
.p-medical__wrap > :nth-child(n+1) {
  -ms-flex-preferred-size: calc((100% - var(--_gap) * (var(--_column) - 1)) / var(--_column));
      flex-basis: calc((100% - var(--_gap) * (var(--_column) - 1)) / var(--_column));
}
.p-medical__wrap > :nth-child(3) {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@container l-inner__medical (768px <= inline-size) {
  .p-medical__wrap {
    --_gap: 60px;
    margin-top: 57px;
  }
  .p-medical__wrap > :nth-child(n+1) {
    --_column: 2;
    --_gap: 80px;
  }
}

.p-medical__card-link {
  position: relative;
  display: inline-block;
  height: 210px;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
  border-radius: 20px;
  padding: 12px 14px;
  z-index: 2; /* マスクより手前に表示 */
}
@media screen and (min-width: 768px) {
  .p-medical__card-link {
    height: 290px;
  }
}

.p-medical__card-bg-common {
  overflow: hidden;
}
.p-medical__card-bg-common::before {
  content: "";
  position: absolute;
  inset: 0; /* top, right, bottom, left を一括指定 */
  background: url("../img/common-medical.png") no-repeat center center;
  background-size: cover;
  -webkit-transition: scale 0.3s ease;
  transition: scale 0.3s ease;
  z-index: -1;
}
.p-medical__card-bg-common:hover::before {
  scale: 1.1;
}
@media (any-hover: hover) {
  .p-medical__card-bg-common:hover {
    color: #ffffff;
    background-color: #1391e6;
  }
}
.p-medical__card-bg-common::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.2); /* 初期状態のマスクの色（薄め） */
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease; /* マスクの変化時間 */
  padding: 6px 7px;
  z-index: -1; /* マスクの配置 */
}
.p-medical__card-bg-common:hover::after {
  background-color: rgba(0, 0, 0, 0.4); /* ホバー時にマスクを濃くする */
}

.p-medical__card-bg-special {
  overflow: hidden;
}
.p-medical__card-bg-special::before {
  content: "";
  position: absolute;
  inset: 0; /* top, right, bottom, left を一括指定 */
  background: url("../img/special-medical.png") no-repeat center center;
  background-size: cover;
  -webkit-transition: scale 0.3s ease;
  transition: scale 0.3s ease;
  z-index: -1;
}
.p-medical__card-bg-special:hover::before {
  scale: 1.1;
}
.p-medical__card-bg-special::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.2); /* 初期状態のマスクの色（薄め） */
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease; /* マスクの変化時間 */
  padding: 6px 7px;
  z-index: -1; /* マスクの配置 */
}
.p-medical__card-bg-special:hover::after {
  background-color: rgba(0, 0, 0, 0.4); /* ホバー時にマスクを濃くする */
}

.p-medical__card-line {
  height: 270px;
  border-radius: 20px;
  border: 2px solid transparent; /* 初期状態で枠線は透明 */
}
.p-medical__card-line:hover {
  border-color: #fff; /* ホバー時に枠線を表示 */
}

.p-medical__card-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .p-medical__card-title {
    font-size: 28px;
    letter-spacing: 2.24px;
  }
}

.common {
  margin-top: 44px;
}
@media screen and (min-width: 768px) {
  .common {
    margin-top: 72px;
  }
}

.special {
  margin-top: 34px;
}
@media screen and (min-width: 768px) {
  .special {
    margin-top: 57px;
  }
}

.p-medical__card-bar {
  display: inline-block;
  width: 30px;
  height: 2px;
  border-radius: 30px;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-medical__card-bar {
    width: 40px;
  }
}

.p-medical__card-sub-title {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.58333;
  letter-spacing: 0.96px;
}
@media screen and (min-width: 768px) {
  .p-medical__card-sub-title {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 1.28px;
  }
}

.p-medical__text-wrap {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  padding-inline: 20px;
  padding-top: 18px;
  padding-bottom: 17px;
}
@media screen and (min-width: 768px) {
  .p-medical__text-wrap {
    padding-inline: 40px;
    padding-top: 36px;
    padding-bottom: 35px;
  }
}

.p-medical__text {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-medical__text {
    line-height: 2;
  }
}

.l-medical__bg-bottom-top {
  position: relative;
  height: 24.609375vw;
  background: url("../img/medical-deco-bg-bottom.svg") no-repeat center bottom/cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-medical__bg-bottom-top {
    height: 10.625vh;
  }
}
.l-medical__bg-bottom-top::before {
  content: "";
  position: absolute;
  background: url("../img/medical-deco-left-bottom.svg") no-repeat left bottom/cover;
  width: 24px;
  height: 25px;
  bottom: 7%;
  left: 3%;
  -webkit-transform: translateX(-5%);
          transform: translateX(-5%);
}
@media screen and (min-width: 768px) {
  .l-medical__bg-bottom-top::before {
    width: 57px;
    height: 56px;
    bottom: 94px;
    left: 42px;
  }
}
.l-medical__bg-bottom-top::after {
  content: "";
  position: absolute;
  background: url("../img/medical-deco-right-bottom.svg") no-repeat right bottom/cover;
  width: 56px;
  height: 60px;
  bottom: 7%;
  right: 2%;
  -webkit-transform: translateX(-2%);
          transform: translateX(-2%);
}
@media screen and (min-width: 768px) {
  .l-medical__bg-bottom-top::after {
    width: 125.307px;
    height: 138px;
    bottom: 72px;
    right: 19px;
  }
}

.l-medical__bg-bottom {
  position: relative;
  height: 24.609375vw;
  background: url("../img/medical-deco-bg-bottom.svg") no-repeat center bottom/cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-medical__bg-bottom {
    height: 15.625vw;
  }
}
.l-medical__bg-bottom::before {
  content: "";
  position: absolute;
  background: url("../img/medical-deco-left-bottom.svg") no-repeat left bottom/cover;
  width: 24px;
  height: 25px;
  bottom: 7%;
  left: 3%;
  -webkit-transform: translateX(-5%);
          transform: translateX(-5%);
}
@media screen and (min-width: 768px) {
  .l-medical__bg-bottom::before {
    width: 57px;
    height: 56px;
    bottom: 94px;
    left: 42px;
  }
}
.l-medical__bg-bottom::after {
  content: "";
  position: absolute;
  background: url("../img/medical-deco-right-bottom.svg") no-repeat right bottom/cover;
  width: 56px;
  height: 60px;
  bottom: 7%;
  right: 2%;
  -webkit-transform: translateX(-2%);
          transform: translateX(-2%);
}
@media screen and (min-width: 768px) {
  .l-medical__bg-bottom::after {
    width: 125.307px;
    height: 138px;
    bottom: 72px;
    right: 19px;
  }
}

.l-section__blog {
  -webkit-margin-before: 100px;
          margin-block-start: 100px;
  -webkit-margin-after: 103px;
          margin-block-end: 103px;
}
@media screen and (min-width: 768px) {
  .l-section__blog {
    -webkit-margin-before: 160px;
            margin-block-start: 160px;
    -webkit-margin-after: 162px;
            margin-block-end: 162px;
  }
}

.l-inner__blog {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-inner__blog {
    padding-inline: 40px;
  }
}

.p-blog__cards {
  max-width: 1000px;
  margin-inline: auto;
  margin-top: 76px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  -webkit-column-gap: clamp(1.25rem, -1.563rem + 5.86vw, 3.125rem);
     -moz-column-gap: clamp(1.25rem, -1.563rem + 5.86vw, 3.125rem);
          column-gap: clamp(1.25rem, -1.563rem + 5.86vw, 3.125rem);
}
@media (max-width: 767px) {
  .p-blog__cards {
    grid-template-columns: 1fr;
    margin-top: 43px;
  }
}

.p-blog__card-link {
  display: grid;
  grid-template-rows: subgrid;
  grid-template-columns: clamp(133px, 35vw, 300px) 1fr;
  grid-template-areas: "img cat" "img title" "img date";
  grid-row: span 4;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin-bottom: 20px;
  position: relative;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-blog__card-link {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "cat" "title" "date";
    row-gap: 1px;
    margin-bottom: 60px;
    border-radius: 20px;
  }
}
@media (any-hover: hover) {
  .p-blog__card-link:hover {
    color: #1391e6;
  }
  .p-blog__card-link:hover .p-blog__card-img {
    position: relative;
    z-index: -10;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .p-blog__card-link:hover .p-blog__card-img img {
    -webkit-transition: scale 0.3s ease;
    transition: scale 0.3s ease;
    scale: 1.1;
  }
}
@media screen and (min-width: 768px) {
  .p-blog__card-link {
    border-radius: 20px;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  }
}

.p-blog__card-link.is-new::before {
  content: "";
  position: absolute;
  z-index: 10;
  top: -8px;
  left: -8px;
  width: 40px;
  height: 40px;
  background: #ee5a6d;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-blog__card-link.is-new::before {
    top: -20px;
    left: -10px;
    width: 60px;
    height: 60px;
  }
}
.p-blog__card-link.is-new::after {
  content: "NEW";
  position: absolute;
  z-index: 10;
  top: 5px;
  left: 1px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-blog__card-link.is-new::after {
    top: -3px;
    left: 3px;
    font-size: 16px;
  }
}

.p-blog__card-img {
  grid-area: img;
}
.p-blog__card-img img {
  width: 100%;
  aspect-ratio: 133/101;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-blog__card-img img {
    width: clamp(25rem, 13.379rem + 24.21vw, 29.313rem);
    aspect-ratio: 300/188;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}

.p-blog__card-categories {
  grid-area: cat;
  align-self: flex-start;
}
@media screen and (min-width: 768px) {
  .p-blog__card-categories {
    margin-top: -20px;
    margin-bottom: 9px;
    padding-inline: 26px;
  }
}

.p-blog__card-category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100vmax;
  padding-block: 1px;
  padding-inline: 8px;
  color: #fff;
  background: #1391e6;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .p-blog__card-category {
    padding-block: 5px;
    padding-inline: 12px;
  }
}

.p-blog__card-title {
  grid-area: title;
  align-self: flex-start;
  font-size: 14px;
  line-height: 1.42857;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (min-width: 768px) {
  .p-blog__card-title {
    padding-inline: 26px;
    font-size: 16px;
    line-height: 1.5;
    -webkit-line-clamp: 3;
    -ms-flex-item-align: center;
        align-self: center;
  }
}

.p-blog__card-date {
  grid-area: date;
  align-self: start;
  display: block;
  color: #888;
  font-size: 11px;
}
@media screen and (min-width: 768px) {
  .p-blog__card-date {
    margin-bottom: 12px;
    padding-inline: 28px;
  }
}

.p-blog__button {
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-blog__button {
    margin-top: 0;
  }
}

.fv__img-container {
  position: relative;
  height: 188px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
@media screen and (min-width: 768px) {
  .fv__img-container {
    height: 340px;
  }
}
.fv__img-container::after {
  content: "";
  position: absolute;
  z-index: 10; /* マスクの配置 */
  top: 0;
  left: 0;
  width: 100%;
  height: 188px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
  background-color: rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .fv__img-container::after {
    height: 340px;
  }
}

.fv__img img {
  width: 100%;
  height: 188px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
@media screen and (min-width: 768px) {
  .fv__img img {
    height: 340px;
  }
}

.fv_title-container {
  position: absolute;
  z-index: 20;
  width: 100%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  text-align: center;
  text-transform: uppercase;
}

.fv__title-ja {
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 4.8px;
  color: #ffffff;
  margin-bottom: 14px;
}
@media screen and (min-width: 768px) {
  .fv__title-ja {
    font-size: 32px;
    letter-spacing: 3.2px;
  }
}

.fv__title-en {
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .fv__title-en {
    font-size: 14px;
    letter-spacing: 1.4px;
  }
}

.l-section__policy {
  margin-top: 78px;
}
@media screen and (min-width: 768px) {
  .l-section__policy {
    margin-bottom: 117px;
  }
}

@media screen and (min-width: 768px) {
  .policy_bg {
    -webkit-margin-before: 30px;
            margin-block-start: 30px;
  }
}

.u-policy__title-wrap {
  margin-bottom: 34px;
}
@media screen and (min-width: 768px) {
  .u-policy__title-wrap {
    margin-bottom: 279px;
  }
}

.p-policy__wrap {
  --_column: 1;
  display: grid;
  grid-template-areas: "contents" "img";
  grid-template-columns: repeat(var(--_column), 1fr);
  gap: clamp(0.5rem, 0.333rem + 0.83vw, 1rem);
}
@media screen and (min-width: 768px) {
  .p-policy__wrap {
    --_column: 2;
    grid-template-areas: "contents img";
    gap: clamp(0rem, -7.125rem + 14.84vw, 4.75rem);
  }
  .p-policy__wrap:nth-of-type(even) {
    grid-template-areas: "img contents";
  }
}

.p-policy__contents {
  grid-area: contents;
  margin-top: 107px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-policy__contents {
    max-width: 447px;
    margin-top: 0;
    padding-inline: 19px;
  }
}

.u-policy__contents {
  margin-top: 93px;
}
@media screen and (min-width: 768px) {
  .u-policy__contents {
    margin-top: 0;
  }
}

.p-policy__contents__main-text {
  display: inline-block;
  margin-bottom: 14px;
  color: #1391e6;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
}
@media screen and (min-width: 768px) {
  .p-policy__contents__main-text {
    margin-bottom: 16px;
    font-size: 14px;
    letter-spacing: 1.4px;
  }
}

@media screen and (min-width: 768px) {
  .u-policy__contents__main-text {
    -webkit-margin-before: clamp(0.625rem, -1.531rem + 4.49vw, 2.063rem);
            margin-block-start: clamp(0.625rem, -1.531rem + 4.49vw, 2.063rem);
  }
}

.p-policy__contents__title {
  margin-bottom: 27px;
  color: #393939;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .p-policy__contents__title {
    margin-bottom: clamp(0.75rem, -1.5rem + 4.69vw, 2.25rem);
    font-size: clamp(1.25rem, 0.5rem + 1.56vw, 1.75rem);
    line-height: 1.57143;
    letter-spacing: 2.24px;
  }
}

.p-policy__contents__sub-text {
  margin-bottom: 26px;
  color: #393939;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-policy__contents__sub-text {
    font-size: clamp(0.75rem, 0.563rem + 0.39vw, 0.875rem);
    margin-bottom: 0;
  }
}

.p-policy__img-wrap {
  grid-area: img;
}

@media screen and (min-width: 768px) {
  .p-policy__wrap:nth-of-type(odd) {
    margin-top: 192px;
  }
}

.p-policy__wrap:nth-of-type(even) .p-policy__img-wrap {
  -webkit-margin-end: 41px;
          margin-inline-end: 41px;
}
@media screen and (min-width: 768px) {
  .p-policy__wrap:nth-of-type(even) .p-policy__img-wrap {
    -webkit-margin-end: 0;
            margin-inline-end: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-policy__wrap:nth-of-type(odd) .p-policy__contents {
    -webkit-margin-start: clamp(1.25rem, -8.125rem + 19.53vw, 7.5rem);
            margin-inline-start: clamp(1.25rem, -8.125rem + 19.53vw, 7.5rem);
  }
}

.p-policy__wrap:nth-of-type(odd) .p-policy__img-wrap {
  -webkit-margin-start: clamp(2.563rem, -2.579rem + 21.94vw, 7.938rem);
          margin-inline-start: clamp(2.563rem, -2.579rem + 21.94vw, 7.938rem);
}
@media screen and (min-width: 768px) {
  .p-policy__wrap:nth-of-type(odd) .p-policy__img-wrap {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    text-align: right;
  }
}

@media screen and (min-width: 768px) {
  .p-policy__img {
    max-width: clamp(25rem, 2.5rem + 46.88vw, 40rem);
  }
}

.l-section__gallery {
  margin-block: 103px;
}
@media screen and (min-width: 768px) {
  .l-section__gallery {
    -webkit-margin-after: 160px;
            margin-block-end: 160px;
    -webkit-margin-before: 194px;
            margin-block-start: 194px;
  }
}

.l-inner__gallery {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-inner__gallery {
    padding-inline: 40px;
  }
}

.p-gallery__container {
  max-width: 1000px;
  margin-inline: auto;
  margin-top: 40px;
  --_column: 2;
  display: grid;
  grid-template-columns: repeat(var(--_column), 1fr);
  gap: clamp(0.688rem, 0.351rem + 1.44vw, 1.5rem);
}
@media screen and (min-width: 768px) {
  .p-gallery__container {
    --_column: 3;
    margin-top: 60px;
  }
}

.p-gallery__item {
  text-align: center;
}
.p-gallery__item img {
  border-radius: 20px;
}

.l-section__guide-btn {
  margin-top: 60px;
  margin-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .l-section__guide-btn {
    margin-top: 80px;
    margin-bottom: 160px;
  }
}

.l-inner__guide-btn {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-inner__guide-btn {
    padding-inline: 62px;
  }
}

.p-guide-btn__container {
  max-width: 500px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
@media screen and (min-width: 768px) {
  .p-guide-btn__container {
    max-width: 100%;
    gap: 78px;
  }
}

.p-guide-btn__titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 23px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-guide-btn__titles {
    margin-bottom: 32px;
  }
}

.p-guide-btn__title {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .p-guide-btn__title {
    font-size: 28px;
    letter-spacing: 2.24px;
  }
}

.p-guide-btn__sub-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100vmax;
  padding-block: 7px;
  padding-inline: 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.12px;
}

.u-guide-btn__sub-title-bg-blue {
  background-color: #1391e6;
}

.u-guide-btn__sub-title-bg-red {
  background-color: #ee5a6d;
}

.p-guide-btn__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .p-guide-btn__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-guide-btn__item-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12px;
  min-height: 43px;
  min-width: 140px;
  padding-block: 15px;
  padding-inline: 32px;
  border: 1px solid #1391e6;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
  color: #1391e6;
  cursor: pointer;
}
@media (any-hover: hover) {
  .p-guide-btn__item-link:hover {
    -webkit-transition: background-color 0.6s ease, color 0.6s ease;
    transition: background-color 0.6s ease, color 0.6s ease;
    background-color: #1391e6;
    color: #ffffff;
  }
}
@media screen and (min-width: 768px) {
  .p-guide-btn__item-link {
    padding-block: 16px;
    padding-inline: 31px;
  }
}

.p-guide-btn__item {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .p-guide-btn__item {
    font-size: 24px;
    letter-spacing: 1.92px;
  }
}

.l-inner__guide-medical {
  padding-inline: 20px;
}

.p-guide-medical__cards {
  max-width: 500px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-guide-medical__cards {
    max-width: 100%;
    gap: 42px;
  }
}

.p-guide-medical__card {
  position: relative;
  margin-inline: auto;
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
}
.p-guide-medical__card:nth-of-type(1) {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-guide-medical__card:nth-of-type(1) {
    margin-top: 60px;
  }
}
@media screen and (min-width: 768px) {
  .p-guide-medical__card {
    max-width: 1000px;
    padding: 60px;
  }
}

.p-guide-medical__card-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 14px;
  padding-inline: 10px;
  position: absolute;
  top: -14px;
  right: 6%;
  min-width: 80px;
}
@media screen and (min-width: 768px) {
  .p-guide-medical__card-tag {
    right: 6%;
    min-width: 100px;
  }
}
.p-guide-medical__card-tag::before {
  content: "";
  position: absolute;
  border: 40px solid #1391e6;
  border-bottom-width: 12px;
  border-bottom-color: transparent;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .p-guide-medical__card-tag::before {
    border: 50px solid #1391e6;
    border-bottom-width: 20px;
    border-bottom-color: transparent;
    height: 80px;
  }
}
.p-guide-medical__card-tag::after {
  content: "保険対象";
  position: absolute;
  top: 200%;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.12px;
}
@media screen and (min-width: 768px) {
  .p-guide-medical__card-tag::after {
    top: 250%;
    font-size: 16px;
    letter-spacing: 1.28px;
  }
}

.tag-color::before {
  content: "";
  position: absolute;
  border: 40px solid #ee5a6d;
  border-bottom-width: 12px;
  border-bottom-color: transparent;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .tag-color::before {
    border: 50px solid #ee5a6d;
    border-bottom-width: 20px;
    border-bottom-color: transparent;
    height: 80px;
  }
}
.tag-color::after {
  content: "実 費";
  position: absolute;
  top: 200%;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.12px;
}
@media screen and (min-width: 768px) {
  .tag-color::after {
    top: 250%;
    font-size: 16px;
    letter-spacing: 1.28px;
  }
}

.p-guide-medical__card-titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 21px;
  border-bottom: 1px solid #c2c2c2;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-guide-medical__card-titles {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
    padding-bottom: 36px;
  }
}

.p-guide-medical__card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .p-guide-medical__card-title {
    font-size: 28px;
    letter-spacing: 2.24px;
  }
}

.p-guide-medical__card-sub-title {
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.12px;
  color: #1391e6;
}

.p-guide-medical__card-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  -webkit-margin-before: 18px;
          margin-block-start: 18px;
}
@media screen and (min-width: 768px) {
  .p-guide-medical__card-contents {
    -webkit-margin-before: 36px;
            margin-block-start: 36px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 41px;
  }
}
.p-guide-medical__card-contents p {
  font-size: 14px;
  line-height: 1.71429;
}

@media screen and (min-width: 768px) {
  .p-guide-medical__card-text {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media screen and (min-width: 768px) {
  .p-guide-medical__card-img {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

.l-section__guide-medical-special {
  background-color: #dff1fd;
}

.u-medical__bg-bottom-special {
  margin-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .u-medical__bg-bottom-special {
    margin-bottom: 149px;
  }
}

.l-section__message {
  margin-top: 60px;
}
@media screen and (min-width: 900px) {
  .l-section__message {
    margin-top: 80px;
  }
}

.l-inner__message {
  padding-inline: 20px;
}

.message__grid {
  margin-top: 36px;
  margin-bottom: 100px;
  max-width: 460px;
  margin-inline: auto;
  display: grid;
  grid-template-areas: "text-wrap" "img" "profile";
}
@media screen and (min-width: 900px) {
  .message__grid {
    margin-top: 60px;
    margin-bottom: 160px;
    max-width: 1000px;
    grid-template-areas: "text-wrap img" "profile img";
    -webkit-column-gap: clamp(0rem, -11.842rem + 21.05vw, 5rem);
       -moz-column-gap: clamp(0rem, -11.842rem + 21.05vw, 5rem);
            column-gap: clamp(0rem, -11.842rem + 21.05vw, 5rem);
    justify-items: center;
  }
}

.message__text-wrap {
  grid-area: text-wrap;
}
@media screen and (min-width: 900px) {
  .message__text-wrap {
    width: 35.9375vw;
  }
}

.message__title {
  margin-bottom: 28px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .message__title {
    margin-bottom: 34px;
    font-size: 28px;
    line-height: 1.57143;
    letter-spacing: 2.24px;
  }
}

.message__text {
  margin-bottom: 34px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .message__text {
    margin-bottom: 16px;
  }
}

.message__signature {
  display: inline-block;
  width: 100%;
  text-align: right;
  margin-bottom: 40px;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .message__signature {
    margin-bottom: 0;
  }
}

.message__img {
  grid-area: img;
}
@media screen and (min-width: 900px) {
  .message__img {
    width: 35.9375vw;
  }
}

.message__profile {
  grid-area: profile;
}
@media screen and (min-width: 900px) {
  .message__profile {
    width: 35.9375vw;
  }
}

.message__career-title {
  margin-top: 40px;
  margin-bottom: 15px;
  line-height: normal;
  border-bottom: 1px solid #393939;
  padding-bottom: 8px;
}
@media screen and (min-width: 900px) {
  .message__career-title {
    margin-top: 50px;
  }
}

.message__career-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}

.message__career-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  font-size: 14px;
  line-height: normal;
}

.career-text__line-height {
  line-height: 1.61;
}

.message__qualifications {
  margin-top: 38px;
}
@media screen and (min-width: 768px) {
  .message__qualifications {
    margin-top: 29px;
  }
}

.message__qualifications-title {
  line-height: normal;
  border-bottom: 1px solid #393939;
  padding-bottom: 6px;
  margin-bottom: 16px;
}

.message__qualifications-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}

.message__qualifications-text {
  font-size: 14px;
  line-height: normal;
}

.p-staff-gallery__swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.p-staff-gallery__swiper-slide {
  width: 53.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-staff-gallery__swiper-slide {
    width: 23.828125vw;
  }
}

.l-section__staff {
  margin-block: 100px;
}
@media screen and (min-width: 768px) {
  .l-section__staff {
    margin-block: 160px;
  }
}

.l-inner__staff {
  padding-inline: 20px;
}

.p-staff__cards {
  -webkit-margin-before: 36px;
          margin-block-start: 36px;
  -webkit-margin-after: 100px;
          margin-block-end: 100px;
}

.p-staff__title {
  -webkit-margin-before: 38px;
          margin-block-start: 38px;
  margin-inline: auto;
  max-width: 767px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.28px;
  border-bottom: 1px solid #707070;
  padding-bottom: 7px;
}
.p-staff__title:not(:first-of-type) {
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
}
@media screen and (min-width: 768px) {
  .p-staff__title {
    -webkit-margin-before: 60px;
            margin-block-start: 60px;
    max-width: 1000px;
    font-size: 16px;
  }
  .p-staff__title:not(:first-of-type) {
    -webkit-margin-before: 60px;
            margin-block-start: 60px;
  }
}

.p-staff__cards-grid {
  -webkit-margin-before: 39px;
          margin-block-start: 39px;
  margin-inline: auto;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  -webkit-column-gap: clamp(1.25rem, -4.357rem + 11.7vw, 5rem);
     -moz-column-gap: clamp(1.25rem, -4.357rem + 11.7vw, 5rem);
          column-gap: clamp(1.25rem, -4.357rem + 11.7vw, 5rem);
  row-gap: 64px;
}
@media (max-width: 767px) {
  .p-staff__cards-grid {
    grid-template-columns: 1fr;
    -webkit-margin-before: 36px;
            margin-block-start: 36px;
    row-gap: 55px;
  }
}

.p-staff__card {
  margin-inline: auto;
}

.p-staff__card-name-wrap {
  margin-inline: auto;
  margin-block: 16px;
  width: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-staff__card-name-wrap {
    margin-block: 14px;
  }
}

.p-staff__card-position {
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.96px;
}

.p-staff__card-name {
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.44px;
}

.p-staff__profile {
  min-width: 280px;
}
@media (min-width: 967px) {
  .p-staff__profile {
    table-layout: fixed;
    width: 100%;
  }
}

th {
  min-width: 140px;
  background-color: #dff1fd;
  text-align: left;
  padding: 16px 18px;
  font-size: 14px;
  line-height: normal;
}

td {
  min-width: 140px;
  max-width: 195px;
  -webkit-padding-start: 16px;
          padding-inline-start: 16px;
  font-size: 14px;
  line-height: normal;
}

.p-staff__profile th,
.p-staff__profile td {
  vertical-align: middle;
}

.entries {
  -webkit-margin-before: 66px;
          margin-block-start: 66px;
}
@media screen and (min-width: 768px) {
  .entries {
    -webkit-margin-before: 8px;
            margin-block-start: 8px;
  }
}

.p-blog__cards-archive {
  display: grid;
  grid-template-columns: 1fr;
}

.p-blog__card-link-archive {
  display: grid;
  grid-template-rows: subgrid;
  grid-template-columns: clamp(8.313rem, -2.094rem + 21.68vw, 15.25rem) 1fr;
  grid-template-areas: "img cat" "img title" "img date";
  grid-row: span 4;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  position: relative;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-blog__card-link-archive {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
@media (any-hover: hover) {
  .p-blog__card-link-archive:hover {
    color: #1391e6;
  }
  .p-blog__card-link-archive:hover .p-blog__card-img-archive {
    position: relative;
    z-index: -10;
    overflow: hidden;
  }
  .p-blog__card-link-archive:hover .p-blog__card-img-archive img {
    -webkit-transition: scale 0.3s ease;
    transition: scale 0.3s ease;
    scale: 1.1;
  }
}

.p-blog__card-link-archive.is-new::before {
  content: "";
  position: absolute;
  z-index: 10;
  top: -8px;
  left: -8px;
  width: 40px;
  height: 40px;
  background: #ee5a6d;
  border-radius: 50%;
}
.p-blog__card-link-archive.is-new::after {
  content: "NEW";
  position: absolute;
  z-index: 10;
  top: 5px;
  left: 1px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
}

.p-blog__card-link-archive:not(:last-of-type) {
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
}

.p-blog__card-img-archive {
  grid-area: img;
}
.p-blog__card-img-archive img {
  aspect-ratio: 133/101;
}
@media screen and (min-width: 768px) {
  .p-blog__card-img-archive img {
    aspect-ratio: 244/153;
  }
}

.recent-img img {
  aspect-ratio: 133/101;
}
@media screen and (min-width: 768px) {
  .recent-img img {
    aspect-ratio: 120/90;
  }
}

.p-blog__card-categories-archive {
  grid-area: cat;
  height: 16px;
}
@media screen and (min-width: 768px) {
  .p-blog__card-categories-archive {
    height: auto;
    -ms-flex-item-align: self-end;
        align-self: self-end;
  }
}

.p-blog__card-category-archive {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100vmax;
  padding-block: 2px;
  padding-inline: 0.5rem;
  color: #fff;
  background: #1391e6;
  font-size: 10px;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .p-blog__card-category-archive {
    font-size: 11px;
    padding-block: 6px;
    padding-inline: 0.75rem;
  }
}

@media screen and (min-width: 768px) {
  .category-archive-recent {
    padding-block: 2px;
    padding-inline: 0.5rem;
    font-size: 10px;
  }
}

.p-blog__card-title-archive {
  grid-area: title;
  align-self: center;
  font-size: 14px;
  line-height: 1.42857;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (min-width: 768px) {
  .p-blog__card-title-archive {
    font-size: 16px;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .title-archive-recent {
    font-size: 14px;
    line-height: 1.42857;
  }
}

.p-blog__card-date-archive {
  grid-area: date;
  display: block;
  color: #888;
  font-size: 11px;
}
@media screen and (min-width: 768px) {
  .p-blog__card-date-archive {
    font-size: 12px;
    -ms-flex-item-align: self-start;
        align-self: self-start;
  }
}

@media screen and (min-width: 768px) {
  .date-archive-recent {
    font-size: 11px;
  }
}

.archive-recent::before, .archive-recent::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .archive-recent {
    display: grid;
    grid-template-rows: subgrid;
    grid-template-columns: 120px 1fr;
    grid-template-areas: "img cat" "img title" "img date";
    grid-row: span 4;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}

.widget-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.widget-category {
  position: relative;
  line-height: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-padding-start: 33px;
          padding-inline-start: 33px;
}
.widget-category::after, .widget-category::before {
  position: absolute;
  content: "";
  left: 20px;
  top: 50%;
  border: solid transparent;
  height: 0;
  width: 0;
}
@media screen and (min-width: 768px) {
  .widget-category::after, .widget-category::before {
    left: 17px;
  }
}
@media screen and (min-width: 768px) {
  .widget-category::after, .widget-category::before {
    -webkit-padding-start: 30px;
            padding-inline-start: 30px;
  }
}
.widget-category::after {
  border-left-color: #1391e6;
  border-width: 6px;
  margin-top: -6px;
}

@media screen and (min-width: 768px) {
  .widget-category-link {
    font-size: 16px;
    line-height: normal;
  }
}

.thanks-text-wrap {
  -webkit-margin-before: 60px;
          margin-block-start: 60px;
  margin-inline: auto;
  -webkit-margin-after: 100px;
          margin-block-end: 100px;
  padding-inline: 20px;
  text-align: center;
  display: block;
}
@media screen and (min-width: 768px) {
  .thanks-text-wrap {
    -webkit-margin-before: 80px;
            margin-block-start: 80px;
    -webkit-margin-after: 160px;
            margin-block-end: 160px;
    padding-inline: 60px;
  }
}

.thanks-text {
  display: inline-block;
  text-align: left;
  font-size: 14px;
  min-width: clamp(0rem, -18.828rem + 80.33vw, 45.438rem);
}
@media screen and (min-width: 768px) {
  .thanks-text {
    max-width: clamp(31.25rem, 9.781rem + 44.73vw, 45.563rem);
  }
}

.thanks-text-color {
  color: #ee5a6d;
  font-size: 14px;
}

.reserve-message {
  -webkit-margin-before: 59px;
          margin-block-start: 59px;
}
@media screen and (min-width: 768px) {
  .reserve-message {
    -webkit-margin-before: 78px;
            margin-block-start: 78px;
  }
}

.reserve-message,
.contact {
  max-width: 730px;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .contact {
    -webkit-margin-after: 164px;
            margin-block-end: 164px;
  }
}

.reserve-message__inner,
.contact__inner {
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .reserve-message__inner,
  .contact__inner {
    padding-inline: 0;
  }
}

.reserve-message__link-num {
  position: relative;
  padding-left: 35px;
  color: #1391e6;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.64px;
}
.reserve-message__link-num::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .reserve-message__link-num {
    padding-left: 37px;
  }
}

.reserve-message__icon-tel::before {
  content: "";
  background: url("../img/tel.svg") no-repeat center center/contain;
  width: 28px;
  height: 28px;
}

.reserve-message__opening {
  color: #1391e6;
  font-size: 12px;
  line-height: normal;
  -webkit-padding-start: 45px;
          padding-inline-start: 45px;
  -webkit-margin-after: 17px;
          margin-block-end: 17px;
}
@media screen and (min-width: 768px) {
  .reserve-message__opening {
    -webkit-margin-after: 24px;
            margin-block-end: 24px;
  }
}

.reserve-message__title {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
  -webkit-margin-after: 18px;
          margin-block-end: 18px;
}
@media screen and (min-width: 768px) {
  .reserve-message__title {
    font-size: 28px;
    letter-spacing: 2.24px;
    -webkit-margin-after: 22px;
            margin-block-end: 22px;
  }
}

.reserve-message__text {
  font-size: 14px;
  -webkit-margin-after: 41px;
          margin-block-end: 41px;
}
.reserve-message__text:last-of-type {
  -webkit-margin-after: 95px;
          margin-block-end: 95px;
}
@media screen and (min-width: 768px) {
  .reserve-message__text {
    -webkit-margin-after: 40px;
            margin-block-end: 40px;
  }
  .reserve-message__text:last-of-type {
    -webkit-margin-after: 150px;
            margin-block-end: 150px;
  }
}

.wpcf7 {
  -webkit-margin-before: 70px;
          margin-block-start: 70px;
}

.contact__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding-block: 24px;
}
@media screen and (min-width: 768px) {
  .contact__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
    padding-block: 23px;
    min-height: 105px;
  }
}

.contact__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
@media screen and (min-width: 768px) {
  .contact__head {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }
}

.contact__label {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
}

.contact__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 3px;
  padding-inline: 6px;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
  background-color: #ee5a6d;
  border-radius: 4px;
  white-space: nowrap;
}

.--mistag {
  -webkit-margin-start: 14px;
          margin-inline-start: 14px;
}

.contact__data {
  -webkit-margin-before: 11px;
          margin-block-start: 11px;
}
@media screen and (min-width: 768px) {
  .contact__data {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}
.contact__data input,
.contact__data textarea {
  width: 100%;
  display: inline-block;
  padding-block: 12px;
  padding-inline: 16px;
  border: none;
  border-radius: 4px;
  background: #f6f6f6;
  line-height: normal;
}
.contact__data input::-webkit-input-placeholder, .contact__data textarea::-webkit-input-placeholder {
  color: #c2c2c2;
  opacity: 0.5;
}
.contact__data input::-moz-placeholder, .contact__data textarea::-moz-placeholder {
  color: #c2c2c2;
  opacity: 0.5;
}
.contact__data input:-ms-input-placeholder, .contact__data textarea:-ms-input-placeholder {
  color: #c2c2c2;
  opacity: 0.5;
}
.contact__data input::-ms-input-placeholder, .contact__data textarea::-ms-input-placeholder {
  color: #c2c2c2;
  opacity: 0.5;
}
.contact__data input::placeholder,
.contact__data textarea::placeholder {
  color: #c2c2c2;
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .contact__data input,
  .contact__data textarea {
    min-width: 488px;
    font-size: 16px;
  }
}
.contact__data input {
  width: 100%;
  height: 49px;
}
@media screen and (min-width: 768px) {
  .contact__data textarea {
    margin-block: 8px;
  }
}
.contact__data select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  display: inline-block;
  padding-block: 12px;
  padding-inline: 12px;
  border: none;
  border-radius: 4px;
  background: #f6f6f6;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .contact__data select {
    min-width: 488px;
  }
}

input[type=radio] {
  width: 1px;
  height: 1px;
  visibility: hidden;
  position: fixed;
  clip: rect(0, 0, 0, 0);
}

input[type=radio]:checked + span::after {
  opacity: 1;
}

.wpcf7-list-item {
  margin-left: 0;
}

.wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /*円とテキストを横並びにする*/
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /*円とテキストを上下中央揃えにする*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; /*テキストが折り返されるようにする*/
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
.wpcf7-radio .wpcf7-list-item-label {
  position: relative;
  font-size: 14px;
  line-height: normal;
  padding-left: 32px;
}
.wpcf7-radio .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #1391e6;
  border-radius: 100vmax;
}
.wpcf7-radio .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 12px;
  height: 12px;
  background-color: #1391e6;
  border-radius: 100vmax;
  opacity: 0;
}
@media (any-hover: hover) {
  .wpcf7-radio .wpcf7-list-item-label:hover {
    cursor: pointer;
  }
}
@media screen and (min-width: 768px) {
  .wpcf7-radio {
    min-width: 488px;
    -webkit-column-gap: 31px;
       -moz-column-gap: 31px;
            column-gap: 31px;
  }
}

input[type=checkbox] {
  width: 1px;
  height: 1px;
  visibility: hidden;
  position: fixed;
  clip: rect(0, 0, 0, 0);
}

input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.contact__head-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 170px;
}
@media screen and (min-width: 768px) {
  .contact__head-checkbox {
    height: 32px;
  }
}

.contact__attention-text {
  color: #888;
  font-size: 11px;
  line-height: normal;
  -webkit-margin-after: 9px;
          margin-block-end: 9px;
}

.wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 12px;
}
.wpcf7-checkbox .wpcf7-list-item-label {
  position: relative;
  font-size: 14px;
  line-height: normal;
  padding-left: 32px;
}
.wpcf7-checkbox .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #1391e6;
}
.wpcf7-checkbox .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 6px;
  width: 11.607px;
  height: 6.359px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-left: 2px solid #1391e6;
  border-bottom: 2px solid #1391e6;
  opacity: 0;
}
@media (any-hover: hover) {
  .wpcf7-checkbox .wpcf7-list-item-label:hover {
    cursor: pointer;
  }
}
@media screen and (min-width: 768px) {
  .wpcf7-checkbox {
    max-width: 488px;
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 8px;
  }
}

.contact__select-wrap {
  position: relative;
  display: inline-block;
  border-radius: 4px;
  background: #f6f6f6;
  line-height: normal;
  width: 100%;
}
.contact__select-wrap .select-svg {
  position: absolute;
  background: url("../img/select.svg") no-repeat center center/contain;
  top: 50%;
  translate: 0 -50%;
  right: 18px;
  width: 10px;
  height: 10px;
  pointer-events: none;
  z-index: 1;
}
@media (any-hover: hover) {
  .contact__select-wrap:hover {
    cursor: pointer;
  }
}

.custom-date-input {
  position: relative;
}
.custom-date-input input[type=date]::-webkit-inner-spin-button,
.custom-date-input input[type=date]::-webkit-clear-button {
  -webkit-appearance: none;
}
.custom-date-input input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  background: transparent;
  cursor: pointer;
  width: 100%;
}
.custom-date-input::after {
  content: "";
  position: absolute;
  background: url("../img/icon-calender.svg") no-repeat center center/contain;
  top: 50%;
  translate: 0 -50%;
  right: 10px;
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.contact__data-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.contact__textarea {
  height: 160px;
  resize: vertical;
}
@media screen and (min-width: 768px) {
  .contact__textarea {
    height: 200px;
  }
}

input[type=submit],
input[type=button] {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  background: transparent;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

.contact__submit {
  text-align: center;
  margin-block: 70px;
  -webkit-margin-start: clamp(0rem, -4.185rem + 17.86vw, 4.375rem);
          margin-inline-start: clamp(0rem, -4.185rem + 17.86vw, 4.375rem);
}
@media screen and (min-width: 768px) {
  .contact__submit {
    -webkit-margin-start: 70px;
            margin-inline-start: 70px;
  }
}
.contact__submit input[type=submit] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100vmax;
  padding-block: 0.5rem;
  border: 1px solid #1391e6;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  cursor: pointer;
  width: 273px;
  height: 38px;
  font-size: 14px;
  line-height: normal;
  letter-spacing: 1.12px;
  color: #1391e6;
  background-color: #fff;
}
@media (any-hover: hover) {
  .contact__submit input[type=submit]:hover {
    background-color: #1391e6;
    color: #ffffff;
  }
}
@media screen and (min-width: 768px) {
  .contact__submit input[type=submit] {
    width: 360px;
    height: 56px;
    font-size: 16px;
    letter-spacing: 1.28px;
  }
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}

.entry {
  -webkit-margin-before: 60px;
          margin-block-start: 60px;
}
@media screen and (min-width: 768px) {
  .entry {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}

.entry-title {
  -webkit-margin-after: 15px;
          margin-block-end: 15px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .entry-title {
    -webkit-margin-after: 20px;
            margin-block-end: 20px;
    font-size: 28px;
    line-height: 1.42857;
    letter-spacing: 2.24px;
  }
}

.entry-meta {
  -webkit-margin-after: 53px;
          margin-block-end: 53px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .entry-meta {
    -webkit-margin-after: 50px;
            margin-block-end: 50px;
  }
}

.entry-published {
  position: relative;
  color: #1391e6;
  line-height: normal;
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
}
.entry-published::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url("../img/pen.svg") no-repeat center center/contain;
}

.entry-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100vmax;
  padding-block: 6px;
  padding-inline: 12px;
  border: 1px solid #1391e6;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  cursor: pointer;
  font-size: 11px;
  line-height: normal;
  background-color: #1391e6;
  color: #ffffff;
}

.entry-body h2,
.entry-body h3,
.entry-body h4,
.entry-body a {
  color: #1391e6;
}
.entry-body p {
  font-size: 14px;
}
.entry-body p:not(:last-child) {
  -webkit-margin-after: 26px;
          margin-block-end: 26px;
}
@media screen and (min-width: 768px) {
  .entry-body p:not(:last-child) {
    -webkit-margin-after: 20px;
            margin-block-end: 20px;
  }
}
.entry-body a {
  text-decoration: underline;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
@media (any-hover: hover) {
  .entry-body a:hover {
    opacity: 0.7;
  }
}
.entry-body h2 {
  -webkit-margin-before: 55px;
          margin-block-start: 55px;
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
  -webkit-padding-start: 16px;
          padding-inline-start: 16px;
  padding-block: 6.5px;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.44px;
  border-left: 6px solid #1391e6;
}
@media screen and (min-width: 768px) {
  .entry-body h2 {
    -webkit-padding-start: 19px;
            padding-inline-start: 19px;
    padding-block: 12px;
    font-size: 24px;
    letter-spacing: 1.92px;
    border-left: 9px solid #1391e6;
  }
}
.entry-body h3 {
  -webkit-margin-before: 53px;
          margin-block-start: 53px;
  -webkit-margin-after: 16px;
          margin-block-end: 16px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.28px;
  border-bottom: 1px solid #1391e6;
  -webkit-padding-after: 4px;
          padding-block-end: 4px;
}
@media screen and (min-width: 768px) {
  .entry-body h3 {
    -webkit-margin-before: 64px;
            margin-block-start: 64px;
    -webkit-margin-after: 21px;
            margin-block-end: 21px;
    font-size: 20px;
    letter-spacing: 1.6px;
  }
}
.entry-body h4 {
  -webkit-margin-before: 57px;
          margin-block-start: 57px;
  -webkit-margin-after: 16px;
          margin-block-end: 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.12px;
}
@media screen and (min-width: 768px) {
  .entry-body h4 {
    -webkit-margin-before: 60px;
            margin-block-start: 60px;
    -webkit-margin-after: 21px;
            margin-block-end: 21px;
    font-size: 16px;
    letter-spacing: 1.28px;
  }
}

.entry-body li,
.entry-body ol {
  position: relative;
  list-style-type: none;
  font-size: 16px;
  line-height: 2.1;
}
.entry-body li::before,
.entry-body ol::before {
  content: "•";
  position: absolute;
  font-size: 0.75em;
  left: -1em;
  top: 0.3em;
}
@media screen and (min-width: 768px) {
  .entry-body li::before,
  .entry-body ol::before {
    font-size: 1em;
    left: -1em;
    top: -0.2em;
  }
}

.wp-block-list {
  -webkit-margin-start: 30px;
          margin-inline-start: 30px;
  -webkit-margin-before: -15px;
          margin-block-start: -15px;
}
@media screen and (min-width: 768px) {
  .wp-block-list {
    -webkit-margin-start: 27px;
            margin-inline-start: 27px;
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}

.entry-img {
  -webkit-margin-after: 40px;
          margin-block-end: 40px;
}
.entry-img img {
  aspect-ratio: 335/209;
}
@media screen and (min-width: 768px) {
  .entry-img img {
    aspect-ratio: 670/419;
  }
}

.entry-tag-items {
  -webkit-margin-before: 12px;
          margin-block-start: 12px;
}
@media screen and (min-width: 768px) {
  .entry-tag-items {
    -webkit-margin-before: 21px;
            margin-block-start: 21px;
  }
}

.entry-tag-item {
  position: relative;
  line-height: 1.875;
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
}
.entry-tag-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #393939;
}