@charset "UTF-8";
body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #393939;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  border: none;
}

.hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden-sp {
    display: block;
  }
}

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

.c-section-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #393939;
  letter-spacing: 0.08em;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-section-title {
    font-size: 28px;
    gap: 28px;
  }
}
.c-section-title::before {
  content: "";
  width: 49px;
  height: 14.6px;
  background-image: url(../img/title-deco.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-section-title::before {
    width: 67px;
    height: 20px;
  }
}
.c-section-title::after {
  content: "";
  width: 49px;
  height: 14.6px;
  background-image: url(../img/title-deco.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-section-title::after {
    width: 67px;
    height: 20px;
  }
}

.btn {
  display: inline-block;
  padding: 11px 45px;
  font-size: 14px;
  line-height: 1.5;
  color: #1391e6;
  background: #fff;
  background-image: url(../img/icon-arrow-blue-btn.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  border: 1px solid #1391e6;
  border-radius: 24px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    background-position 0.3s ease;
}
.btn:hover {
  background-color: #1391e6;
  color: #fff;
  background-position: right 5px center;
  background-image: url(../img/icon-arrow-whitebtn.svg);
}

.header {
  background-color: #fff;
  height: 60px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .header {
    height: 80px;
  }
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: inherit;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 0 40px;
  }
}
.header__logoLink {
  display: block;
  width: 270px;
}
.header__logoLink img {
  display: block;
  width: 100%;
}
.header__nav {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: inherit;
    margin-left: auto;
  }
}
.header__nav .current-menu-item > a,
.header__nav .current-menu-parent > a {
  color: #1391e6;
}

.header__nav .current-menu-item > a svg,
.header__nav .current-menu-parent > a svg {
  fill: #1391e6;
}

.header__nav .current-menu-item > a::after,
.header__nav .current-menu-parent > a::after {
  opacity: 1;
}
.header__navList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: inherit;
}
.header__navItem {
  height: inherit;
}
.header__navLink {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: inherit;
}
.header__navLink svg {
  display: block;
  width: 24px;
  height: 24px;
}
.header__navLink span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
}
.header__navLink::after {
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 20px;
  height: 2px;
  content: "";
  background: #1391e6;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
}
/* hover時 */
.header__navLink:hover {
  color: #1391e6;
}

.header__navLink:hover svg {
  fill: #1391e6;
}

.header__navLink:hover::after {
  opacity: 1;
}
.header__tel {
  text-align: right;
  margin-left: 32px;
}
.header__telText {
  font-size: 12px;
  line-height: 1.5;
}
.header__telNumber {
  margin-top: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #1391e6;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.header__navItem.current-menu-item .header__navLink,
.header__navItem.current-menu-parent .header__navLink {
  color: #1391e6;
}

.header__navItem.current-menu-item .header__navLink::after,
.header__navItem.current-menu-parent .header__navLink::after {
  opacity: 1;
}
.header__drawerButton {
  position: relative;
  top: 0;
  width: 28px;
  height: 18px;
  margin-left: auto;
  cursor: pointer;
  z-index: 0;
  display: block;
}
@media screen and (min-width: 1200px) {
  .header__drawerButton {
    display: none;
  }
}
.header__drawerLine {
  position: absolute;
  left: 0;
  -webkit-transform-origin: center;
  transform-origin: center;
  width: 100%;
  height: 3px;
  background-color: #1391e6;
  border-radius: 1px;
}
.header__drawerLine:nth-child(1) {
  top: 0;
  right: 0;
  left: 0;
}
.header__drawerLine:nth-child(2) {
  top: 50%;
  right: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header__drawerLine:nth-child(3) {
  right: 0;
  bottom: 0;
  left: 0;
}
.header__drawerButton.is-open {
  z-index: 50;
}
.header__drawerButton.is-open .header__drawerLine {
  background-color: #fff;
}
.header__drawerButton.is-open .header__drawerLine:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.header__drawerButton.is-open .header__drawerLine:nth-child(2) {
  opacity: 0;
  -webkit-transform: scaleX(0.2);
  transform: scaleX(0.2);
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}
.header__drawerButton.is-open .header__drawerLine:nth-child(3) {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
  transform: translateY(50%) rotate(-45deg);
}

.header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 39;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  width: 100%;
  height: 100%;
  background: #0060a0;
}

.header__drawer.is-open {
  display: block;
  opacity: 1;
}

.header__drawerHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 60px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .header__drawerHeader {
    height: 80px;
    padding-inline: 30px;
  }
}

.header__drawerLogo {
  display: block;
  width: 100%;
  max-width: 270px;
}

.header__drawerNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-block: 40px;
  overflow-y: auto;
  height: calc(100dvh - 60px - 60px);
}
@media screen and (min-width: 768px) {
  .header__drawerNav {
    height: calc(100dvh - 80px - 60px);
  }
}
@media screen and (min-width: 1200px) {
  .header__drawerNav {
    height: calc(100dvh - 80px);
  }
}
.header__drawerNav svg {
  width: 24px;
  height: 24px;
}

.header__drawerList {
  display: block;
  width: 100%;
  max-width: 255px;
  list-style: none;
  padding: 0;
  margin: auto;
}

.header__drawerItem {
  border-top: 1px dashed #fff;
}
.header__drawerItem:nth-last-child(1) {
  border-bottom: 1px dashed #fff;
}

.header__drawerLink {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-block: 15px;
  font-size: 14px;
  color: #fff;
}
.header__drawerLink::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 14px;
  content: "";
  background-image: url(../img/drawer-icon-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header__drawerLink svg {
  width: 24px;
  height: 24px;
}

.home-mv-swiper {
  position: relative;
  max-width: 1920px;
  margin-inline: auto;
  margin-top: 16px;
  padding: 0 20px;
  overflow: hidden;
  width: 100%;
  --swiper-pagination-bottom: 18px;
}
@media screen and (min-width: 768px) {
  .home-mv-swiper {
    width: 90.625%;
    margin-top: 40px;
    padding: 0;
    overflow: visible;
  }
}
.home-mv-swiper .swiper-pagination {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  left: 3px;
  width: auto;
  bottom: 18px;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .home-mv-swiper .swiper-pagination {
    bottom: 7px;
    left: -26px;
  }
}
.home-mv-swiper__slider {
  position: relative;
}
.home-mv-swiper__slide {
  position: relative;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .home-mv-swiper__slide {
    border-radius: 20px;
  }
}
.home-mv-swiper__slide::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background: rgba(0, 0, 0, 0.1);
  border-radius: inherit;
}
.home-mv-swiper__image {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}
.home-mv-swiper__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}
.home-mv-swiper__text {
  position: absolute;
  bottom: 35px;
  left: 20px;
  width: 265px;
  z-index: 11;
}
@media screen and (min-width: 768px) {
  .home-mv-swiper__text {
    bottom: 56px;
    left: 66px;
    width: 415px;
  }
}
.home-mv-swiper__prev,
.home-mv-swiper__next {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  background-size: contain;
  color: transparent;
}
@media screen and (min-width: 768px) {
  .home-mv-swiper__prev,
  .home-mv-swiper__next {
    top: 49%;
    width: 66px;
    height: 66px;
  }
}
.home-mv-swiper__prev {
  background-image: url(../img/slide-sp/arrow-left.png);
  left: -2px;
  right: auto;
}
@media screen and (min-width: 768px) {
  .home-mv-swiper__prev {
    left: -28px;
  }
}
.home-mv-swiper__next {
  background-image: url(../img/slide-sp/arrow-right.png);
  right: -5px;
  left: auto;
}
@media screen and (min-width: 768px) {
  .home-mv-swiper__next {
    right: -35px;
  }
}

.swiper {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
}
@media screen and (min-width: 768px) {
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

.home-mv-bottom {
  position: relative;
  z-index: 2;
  margin-top: -25px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  gap: 39px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 1200px) {
  .home-mv-bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 60px;
    padding: 0 40px;
  }
}
.home-mv-bottom__news {
  width: 100%;
  max-width: 542px;
}
.home-mv-bottom__newsHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.home-mv-bottom__newsHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 12px;
}
.home-mv-bottom__newsTitle {
  font-size: 20px;
  line-height: 1.5;
  color: #393939;
  letter-spacing: 0.1em;
}
.home-mv-bottom__newsSub {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  color: #1391e6;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .home-mv-bottom__newsSub {
    font-size: 12px;
  }
}
.home-mv-bottom__newsLink {
  font-size: 11px;
  color: #888888;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .home-mv-bottom__newsLink {
    font-size: 12px;
  }
}
.home-mv-bottom__newsItem {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 9px 0;
  margin-top: 5px;
  border-top: 1px solid #393939;
  border-bottom: 1px solid #393939;
}
@media screen and (min-width: 768px) {
  .home-mv-bottom__newsItem {
    gap: 24px;
    margin-top: 6px;
  }
}
.home-mv-bottom__newsItem:hover .home-mv-bottom__newsDate,
.home-mv-bottom__newsItem:hover .home-mv-bottom__newsText {
  color: #1391e6;
}
.home-mv-bottom__newsItem::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 14px;
  height: 14px;
  content: "";
  background-image: url(../img/news-arrow.svg);
  background-size: cover;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .home-mv-bottom__newsItem::after {
    right: 9px;
  }
}
.home-mv-bottom__newsItem:hover::after {
  background-image: url(../img/icon-arrow-blue-btn.svg);
  transform: translate(4px, -50%);
}
.home-mv-bottom__newsDate {
  font-size: 12px;
  line-height: 1.75;
  color: #393939;
  white-space: nowrap;
  padding-left: 5px;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .home-mv-bottom__newsDate {
    padding-left: 9px;
  }
}
.home-mv-bottom__newsText {
  width: calc(100% - 84px);
  font-size: 14px;
  line-height: 1.5;
  color: #393939;
  padding-right: 20px;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .home-mv-bottom__newsText {
    padding-right: 40px;
  }
}
.home-mv-bottom__schedule {
  background-color: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  max-width: 540px;
}
@media screen and (min-width: 1200px) {
  .home-mv-bottom__schedule {
    max-width: 477px;
    width: 100%;
  }
}
.home-mv-bottom__scheduleImg {
  width: 100%;
}
.home-mv-bottom__scheduleImg img {
  display: block;
  width: 100%;
  height: auto;
}

.home-concept {
  margin-top: 60px;
  padding-top: 110px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .home-concept {
    padding-top: 180px;
    padding-bottom: 8.4375vw;
  }
}
@media screen and (min-width: 1200px) {
  .home-concept {
    padding-bottom: 108px;
  }
}
.home-concept::before {
  position: absolute;
  content: "";
  top: 0;
  left: 3%;
  width: 102%;
  height: 81vw;
  background-image: url(../img/deco-sp.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .home-concept::before {
    left: 35.5%;
    height: 725px;
    background-image: url(../img/deco-pc.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.home-concept__inner {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .home-concept__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 7.265625%;
  }
}
.home-concept__image {
  max-height: 438px;
  overflow: hidden;
  border-radius: 0 20px 20px 0;
  width: 89%;
  height: 61vw;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .home-concept__image {
    width: 45%;
    height: 100%;
    margin-right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .home-concept__image {
    width: 50%;
  }
}
.home-concept__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
}
@media screen and (min-width: 768px) {
  .home-concept__image img {
    height: 438px;
  }
}
.home-concept__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  padding: 0 20px;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .home-concept__body {
    width: 45%;
    gap: 39px;
    padding: 0;
  }
}
@media screen and (min-width: 1200px) {
  .home-concept__body {
    width: 31.8%;
  }
}
.home-concept__header {
  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;
}
@media screen and (min-width: 768px) {
  .home-concept__header {
    gap: 24px;
  }
}
.home-concept__subtitle {
  color: #1391e6;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .home-concept__subtitle {
    font-size: 14px;
  }
}
.home-concept__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .home-concept__title {
    font-size: 28px;
  }
}
.home-concept__text {
  font-size: 14px;
  line-height: 1.7;
  color: #393939;
}
.home-concept__button {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .home-concept__button {
    text-align: left;
  }
}

.home-recommend {
  padding-block: 100px;
}
@media screen and (min-width: 768px) {
  .home-recommend {
    padding-block: 120px;
  }
}
.home-recommend__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 44px;
}
@media screen and (min-width: 768px) {
  .home-recommend__inner {
    gap: 60px;
  }
}
.home-recommend__title {
  font-size: 19px;
}
@media screen and (min-width: 768px) {
  .home-recommend__title {
    font-size: 28px;
    letter-spacing: 1px;
  }
}
.home-recommend__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 63px;
  padding-inline: 22px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .home-recommend__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 66px;
    padding-inline: 0;
  }
}
.home-recommend__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}
.home-recommend__itemTitle {
  width: 182px;
  margin-inline: auto;
}
.home-recommend__itemImage {
  margin-top: 13px;
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .home-recommend__itemImage {
    margin-top: 15px;
  }
}
.home-recommend__itemText {
  font-size: 14px;
  margin-top: 22px;
  line-height: 1.7;
  text-align: left;
}
.home-recommend__itemNote {
  color: #ee5a6d;
}

.home-medical__bg {
  background-color: #dff1fd;
  padding-top: 31px;
  padding-bottom: 62px;
}
@media screen and (min-width: 768px) {
  .home-medical__bg {
    padding-top: 1px;
    padding-bottom: 86px;
  }
}
.home-medical__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: 40px;
}
@media screen and (min-width: 768px) {
  .home-medical__contents {
    gap: 62px;
  }
}
.home-medical__cards {
  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;
}
@media screen and (min-width: 768px) {
  .home-medical__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 8%;
  }
}
.home-medical__card {
  position: relative;
  display: block;
  height: 288px;
  min-height: 210px;
  overflow: hidden;
  border-radius: 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.home-medical__card::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.home-medical__card:hover::before {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}
.home-medical__card:hover::after {
  background: rgba(0, 0, 0, 0.35);
}
.home-medical__card:hover .home-medical__link {
  border: 2px solid #fff;
}
.home-medical__card--general::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-image: url(../img/card-medical1.png);
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.4s ease-out;
}
.home-medical__card--special::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-image: url(../img/card-medical2.png);
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.4s ease-out;
}
.home-medical__link {
  position: absolute;
  z-index: 1;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  margin: 10px;
  border-radius: 20px;
}
.home-medical__linkBody {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.home-medical__cardTitle {
  position: relative;
  z-index: 1;
  padding-bottom: 22px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #fff;
}
.home-medical__cardTitle::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  width: 30px;
  height: 2px;
  background: #fff;
  border-radius: 20px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .home-medical__cardTitle::after {
    width: 40px;
  }
}
@media screen and (min-width: 768px) {
  .home-medical__cardTitle {
    font-size: 28px;
  }
}
.home-medical__cardText {
  font-size: 12px;
  margin-top: 20px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .home-medical__cardText {
    font-size: 16px;
  }
}
.home-medical__text {
  padding: 17px 20px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .home-medical__text {
    padding: 35px 40px;
  }
}
.home-medical__note {
  color: #ee5a6d;
}

.c-wave {
  position: relative;
  width: 100%;
  height: 23.5vw;
}
@media screen and (min-width: 768px) {
  .c-wave {
    height: 15.7vw;
  }
}
.c-wave::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  width: inherit;
  height: inherit;
  background: url("../img/bg-top-sp.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .c-wave::before {
    background: url(../img/bg-top-pc.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
  }
}

.c-wave--top1 {
  position: relative;
  width: 100%;
  height: 7.5vw;
  overflow: visible;
  z-index: 1;
}
.c-wave--top1::before {
  position: absolute;
  content: "";
  left: 50%;
  width: inherit;
  height: inherit;
  background-image: url(../img/bg-bottom.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}

.c-wave--top2 {
  position: relative;
  z-index: 2;
}
.c-wave--top2::before {
  position: absolute;
  content: "";
  bottom: 40px;
  left: 12px;
  width: 25px;
  height: 25px;
  background-image: url(../img/deco-kirakira2-w.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-wave--top2::before {
    bottom: 7.6vw;
    left: 42px;
    width: 58px;
    height: 58px;
  }
}
.c-wave--top2::after {
  position: absolute;
  content: "";
  right: 8px;
  bottom: 23px;
  width: 53px;
  height: 58px;
  background-image: url(../img/deco-kirakira-1.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-wave--top2::after {
    right: 20px;
    bottom: 5.8vw;
    width: 125px;
    height: 138px;
  }
}

.home-blog {
  padding-block: 100px;
}
@media screen and (min-width: 768px) {
  .home-blog {
    padding-block: 120px;
  }
}
.home-blog__inner {
  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) {
  .home-blog__inner {
    gap: 60px;
  }
}
.home-blog__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .home-blog__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 40px;
  }
}
@media screen and (min-width: 1200px) {
  .home-blog__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 50px;
  }
}
.home-blog__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .home-blog__item {
    display: block;
    border-radius: 20px;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    overflow: hidden;
  }
}
.home-blog__item:hover .home-blog__thumb img {
  transform: scale(1.08);
}
.home-blog__item:hover .home-blog__title {
  color: #1391e6;
}
.home-blog__thumb {
  position: relative;
  width: 39.7%;
  aspect-ratio: 133/101;
}
@media screen and (min-width: 768px) {
  .home-blog__thumb {
    width: 100%;
    aspect-ratio: 300/188;
  }
}
.home-blog__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.home-blog__body {
  position: relative;
  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-flex: 1;
  -ms-flex: 1;
  flex: 1;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .home-blog__body {
    gap: 7px;
    padding: 0 24px 8px;
    margin-top: -14px;
  }
}
.home-blog__category {
  padding: 2px 8px;
  font-size: 10px;
  color: #fff;
  background-color: #1391e6;
  border-radius: 999px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .home-blog__category {
    padding: 6px 12px;
    font-size: 11px;
  }
}
.home-blog__title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #393939;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .home-blog__title {
    min-height: 72px;
    font-size: 16px;
    -webkit-line-clamp: 3;
  }
}
.home-blog__date {
  font-size: 11px;
  color: #888888;
}
.home-blog__button {
  text-align: center;
}

.footer-wave {
  position: relative;
  height: 32px;
}
.footer-wave::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: inherit;
  content: "";
  background-image: url(../img/footer-deco-top.svg);
  background-repeat: repeat-x;
  background-position: 19% center;
  background-size: 83px 32px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.footer {
  padding-top: 13px;
  background: #dff1fd;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 50px;
  }
}
.footer__inner {
  max-width: 1060px;
  padding-inline: 10px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-inline: 30px;
  }
}
.footer__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: 20px;
  padding: 32px 10px 20px;
  border-radius: 8px;
  background: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .footer__contents {
    gap: 40px;
    padding: 43px 49px;
    border-radius: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 478px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .footer__info {
    gap: 17px;
  }
}
.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 7px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer__logoImg {
  width: 309px;
}
@media screen and (min-width: 768px) {
  .footer__logoImg {
    width: 405px;
  }
}
.footer__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  font-size: 14px;
}
.footer__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #1391e6;
  letter-spacing: -0.02em;
}
.footer__time {
  font-size: 12px;
  color: #1391e6;
}
.footer__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__buttons {
    gap: 20px;
  }
}
.footer__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  border-radius: 30px;
  max-width: 150px;
  height: 38px;
}
@media screen and (min-width: 768px) {
  .footer__button {
    max-width: 220px;
    height: 56px;
    font-size: 16px;
  }
}
.footer__button svg {
  width: 21.35px;
  height: 14.67px;
}
@media screen and (min-width: 1200px) {
  .footer__button svg {
    width: 25px;
    height: 25px;
  }
}
.footer__button--primary {
  color: #fff;
  background-color: #1391e6;
  transition: 0.3s ease;
}
.footer__button--primary:hover {
  background-color: #0060a0;
}
.footer__button--secondary {
  color: #1391e6;
  background-color: #fff;
  border: 1px solid #1391e6;
}
.footer__button--secondary:hover {
  background-color: #1391e6;
  color: #fff;
}
.footer__button--secondary svg path {
  transition: stroke 0.3s ease;
}

.footer__button--secondary:hover svg path {
  stroke: #fff;
}
.footer__table {
  background-color: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  max-width: 540px;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .footer__table {
    max-width: 477px;
  }
}
.footer__map {
  width: calc(100% - 20px);
  max-width: 478px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer__map {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .footer__map {
    max-width: 385px;
  }
}
.footer__mapFrame {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
.footer__mapFrame iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.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;
  gap: 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 11px;
  margin-top: 42px;
}
@media screen and (min-width: 1200px) {
  .footer__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-left: 0;
    gap: 41px;
    margin-top: 42px;
  }
}
.footer__navItem {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.footer__navLink {
  padding-block: 1px;
  font-weight: 700;
  line-height: inherit;
  color: #393939;
}
.footer__subBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.footer__subNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
.footer__subItem {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
}
.footer__subLink {
  position: relative;
  display: block;
  padding-left: 11px;
}
.footer__subLink::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 6px;
  height: 12px;
  background-image: url(../img/footer-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.footer__copyright {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #1391e6;
  height: inherit;
  padding-top: 13px;
  padding-bottom: 73px;
}
@media screen and (min-width: 1200px) {
  .footer__copyright {
    margin-top: 56px;
    height: 55px;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.footer__copyrightText {
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
}
.footer__fixed {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 60px;
  background: rgba(255, 255, 255, 0.85);
  border-top: 1px solid #1391e6;
}
@media screen and (min-width: 1200px) {
  .footer__fixed {
    display: none;
  }
}
.footer__fixedTel {
  text-align: center;
}
.footer__fixedTelLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #1391e6;
}
.footer__fixedTime {
  font-size: 10px;
  line-height: 1.5;
  color: #393939;
}
.footer__fixedWeb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 157px;
  padding: 8px 10px;
  background-color: #1391e6;
  border-radius: 8px;
}
.footer__fixedWeb img {
  width: 46px;
  height: 28px;
}
.footer__fixedWebText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
}
.footer__fixedWebTextBig {
  font-size: 16px;
}

.sideButton {
  display: none;
}
@media screen and (min-width: 1200px) {
  .sideButton {
    position: fixed;
    top: 170px;
    right: 0;
    z-index: 30;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 92px;
    height: 120px;
    cursor: pointer;
    background: #1391e6;
    border-radius: 20px 0 0 20px;
    transition: background-color 0.3s ease;
  }
  .sideButton img {
    margin-top: 20px;
  }
  .sideButton:hover {
    background-color: #0060a0;
  }
}
.sideButton__text {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  text-align: center;
}

.c-topButton {
  position: fixed;
  z-index: 30;
  width: 52px;
  height: 52px;
  cursor: pointer;
  right: 10px;
  bottom: 136px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(16px) scale(0.96);
  transform: translateY(16px) scale(0.96);
  -webkit-transition:
    opacity 0.4s ease,
    visibility 0.4s ease,
    -webkit-transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease,
    -webkit-transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.4s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.4s ease;
  transition:
    opacity 0.4s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.4s ease,
    -webkit-transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (min-width: 768px) {
  .c-topButton {
    right: 20px;
    bottom: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .c-topButton {
    bottom: 40px;
  }
}

.c-topButton.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
}

.p-lower-fv--about {
  background-image: url(../img/about-img/page-about_top-sp.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-lower-fv--about {
    background-image: url(../img/about-img/page-about_top.png);
  }
}

.p-lower-fv--medical {
  background-image: url(../img/medical-img/page-medical_top-sp.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-lower-fv--medical {
    background-image: url(../img/medical-img/page-medical_top.png);
  }
}

.p-lower-fv--staff {
  background-image: url(../img/staff-img/page-staff_top-sp.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-lower-fv--staff {
    background-image: url(../img/staff-img/page-staff_top.png);
  }
}

.p-lower-fv--blog {
  background-image: url(../img/blog-img/archive_top-sp.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-lower-fv--blog {
    background-image: url(../img/blog-img/archive_top.png);
  }
}

.p-lower-fv--news {
  background-image: url(../img/blog-img/archive_top-sp.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-lower-fv--news {
    background-image: url(../img/blog-img/archive_top.png);
  }
}

.p-lower-fv--contact {
  background-image: url(../img/contact-img/page-contact_top-sp.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-lower-fv--contact {
    background-image: url(../img/contact-img/page-contact_top.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}

.p-lower-fv {
  position: relative;
  max-width: 1920px;
  width: 89.333%;
  height: 188px;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  border-radius: 12px;
}
@media screen and (min-width: 768px) {
  .p-lower-fv {
    width: 90.625%;
    height: 340px;
    margin-top: 40px;
  }
}
.p-lower-fv::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}
.p-lower-fv__inner {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 100%;
  color: #fff;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.p-lower-fv__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-lower-fv__title {
    font-size: 32px;
  }
}
.p-lower-fv__subtitle {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-lower-fv__subtitle {
    margin-top: 17px;
    font-size: 14px;
  }
}

.breadcrumb {
  overflow-x: auto;
  font-size: 12px;
  line-height: 1.5;
  white-space: nowrap;
}

.breadcrumb {
  overflow-x: auto;
  font-size: 12px;
  line-height: 1.5;
  white-space: nowrap;
  width: 90.625%;
  max-width: 1920px;
  padding-right: 30px;
  padding-left: 30px;
  margin: 12px auto 0;
}

.breadcrumb a {
  color: #888;
  text-decoration: none;
}

.breadcrumb span {
  padding-right: 4px;
}

.breadcrumb span:not(:first-child) span {
  padding-left: 5px;
}

.l-inner {
  width: 1060px;
  max-width: 100%;
  height: inherit;
  padding-right: 20px;
  padding-left: 20px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.p-section-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 14px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #393939;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-section-title {
    gap: 28px;
    font-size: 28px;
  }
}
.p-section-title::before,
.p-section-title::after {
  content: "";
  width: 49px;
  height: 14.6px;
  background-image: url(../img/title-deco.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-section-title::before,
  .p-section-title::after {
    width: 67px;
    height: 20px;
  }
}

.p-about {
  padding-block: 60px 100px;
}
@media screen and (min-width: 768px) {
  .p-about {
    padding-block: 80px 160px;
  }
}

.p-about-intro__header {
  text-align: center;
}
.p-about-intro__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 100px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-about-intro__items {
    gap: 120px;
    margin-top: 60px;
  }
}

.p-about-section {
  position: relative;
  overflow: hidden;
}
.p-about-section__inner {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-about-section__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 5.8%;
  }
}
.p-about-section__media {
  width: 89%;
  height: 61vw;
  margin-right: auto;
  max-height: 438px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-about-section__media {
    width: 45%;
    height: 100%;
    margin-right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .p-about-section__media {
    width: 50%;
  }
}
.p-about-section__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-about-section__media img {
    height: 438px;
  }
}
.p-about-section__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  padding: 0 20px;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .p-about-section__body {
    width: 45%;
    gap: 39px;
  }
}
@media screen and (min-width: 1200px) {
  .p-about-section__body {
    gap: 40px;
    width: 35.8%;
  }
}
.p-about-section__header {
  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;
}
@media screen and (min-width: 768px) {
  .p-about-section__header {
    gap: 24px;
  }
}
.p-about-section__label {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  color: #1391e6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-about-section__label {
    font-size: 14px;
  }
}
.p-about-section__title {
  padding-top: 5px;
  font-size: 20px;
  line-height: 1.5;
  color: #393939;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-about-section__title {
    font-size: 22px;
  }
}
@media screen and (min-width: 1200px) {
  .p-about-section__title {
    padding-top: 0;
    font-size: 28px;
  }
}
.p-about-section__text {
  font-size: 14px;
  color: #393939;
}
.p-about-section__text p + p {
  margin-top: 24px;
}
.p-about-section--policy {
  padding-top: 110px;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-about-section--policy {
    padding-top: 180px;
    padding-bottom: 8.4375vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-about-section--policy {
    padding-top: 180px;
    padding-bottom: 108px;
  }
}
.p-about-section--policy::before {
  position: absolute;
  content: "";
  top: 0;
  left: 3%;
  width: 102.3438%;
  height: 81.0666vw;
  background-image: url(../img/deco-sp.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-about-section--policy::before {
    top: 0;
    left: 35%;
    height: 725px;
    background-image: url(../img/deco-pc.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.p-about-section--policy .p-about-section__media {
  border-radius: 0 20px 20px 0;
}
@media screen and (min-width: 768px) {
  .p-about-section--feature .p-about-section__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    gap: 4.8%;
  }
}
.p-about-section--feature .p-about-section__media {
  margin-right: 0;
  margin-left: auto;
  border-radius: 20px 0 0 20px;
}
@media screen and (min-width: 768px) {
  .p-about-section--feature .p-about-section__media {
    margin-left: 0;
  }
}
.p-about-section--feature .p-about-section__text p + p {
  margin-top: 47px;
}

.p-about-gallery {
  margin-top: 102px;
}
@media screen and (min-width: 768px) {
  .p-about-gallery {
    margin-top: 120px;
  }
}
.p-about-gallery__inner {
  width: 100%;
  max-width: 1060px;
  padding-right: 20px;
  padding-left: 20px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-about-gallery__inner {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.p-about-gallery__header {
  text-align: center;
}
.p-about-gallery__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 600px;
  margin: 38px auto 0;
}
@media screen and (min-width: 768px) {
  .p-about-gallery__list {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 59px;
    max-width: 1000px;
    gap: 24px;
  }
}
.p-about-gallery__media {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  border-radius: 20px;
}
.p-about-gallery__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-medical {
  padding-block: 60px 100px;
}
@media screen and (min-width: 768px) {
  .p-medical {
    padding-block: 80px 160px;
  }
}

.p-medical-nav__group + .p-medical-nav__group {
  margin-top: 81px;
}
@media screen and (min-width: 768px) {
  .p-medical-nav__group + .p-medical-nav__group {
    margin-top: 60px;
  }
}
.p-medical-nav__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-medical-nav__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.43;
  color: #393939;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-medical-nav__title {
    font-size: 28px;
  }
}
.p-medical-nav__badge {
  padding: 7px 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.08em;
  border-radius: 24px;
}
.p-medical-nav__badge--insurance {
  background: #1391e6;
}
.p-medical-nav__badge--private {
  background: #ee5a6d;
}
.p-medical-nav__list {
  display: block;
  margin-top: 29px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-medical-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 32px;
  }
}
.p-medical-nav__item {
  margin-right: 0;
  margin-bottom: 16px;
  display: block;
  text-align: center;
  background: #fff;
  border: 2px solid #1391e6;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.p-medical-nav__item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-medical-nav__item:last-child {
    margin-bottom: 20px;
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-medical-nav__item {
    margin-right: 16px;
    margin-bottom: 20px;
    display: inline-block;
  }
}
.p-medical-nav__link {
  position: relative;
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding: 18px 20px 18px;
  color: #1391e6;
  letter-spacing: 0.08em;
  background-color: #fff;
  background-image: none;
  background-repeat: no-repeat;
  background-position: bottom 0 center;
  border-radius: 12px;
  transition:
    background-color 0.3s ease,
    padding 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-medical-nav__link {
    font-size: 24px;
    padding: 22px 29px 22px;
  }
}
.p-medical-nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 20px;
  height: 20px;
  background: url(./../img/medical-img/arrow-bottom.svg) no-repeat center/contain;
  transform: translate(-50%, 6px);
  opacity: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.p-medical-nav__link:hover {
  background-color: #e9f5ff;
  padding-top: 10px;
  padding-bottom: 26px;
}
@media screen and (min-width: 768px) {
  .p-medical-nav__link:hover {
    padding-top: 12px;
    padding-bottom: 30px;
  }
}
.p-medical-nav__link:hover::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.p-medical-section {
  margin-top: 102px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-medical-section {
    margin-top: 140px;
  }
}
.p-medical-section--special {
  margin-top: 103px;
}
@media screen and (min-width: 768px) {
  .p-medical-section--special {
    margin-top: 160px;
  }
}
.p-medical-section__body {
  padding-top: 31px;
  padding-bottom: 62px;
  background: #dff1fd;
}
@media screen and (min-width: 1200px) {
  .p-medical-section__body {
    padding-top: 3px;
    padding-bottom: 85px;
  }
}
.p-medical-section__header {
  text-align: center;
}

.p-medical-service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 43px;
  margin-top: 37px;
}
@media screen and (min-width: 768px) {
  .p-medical-service {
    gap: 38px;
    margin-top: 60px;
  }
}
.p-medical-service__item {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 20px 20px;
}
@media screen and (min-width: 768px) {
  .p-medical-service__item {
    padding: 60px 60px;
  }
}
.p-medical-service__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-bottom: 19px;
  border-bottom: 1px solid #c2c2c2;
}
@media screen and (min-width: 768px) {
  .p-medical-service__header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 38px;
    padding-bottom: 36px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.p-medical-service__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-medical-service__title {
    font-size: 28px;
  }
}
.p-medical-service__lead {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #1391e6;
  letter-spacing: 0.08em;
  margin-left: 0;
}
.p-medical-service__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-medical-service__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 35px;
    gap: 35px;
  }
}
.p-medical-service__text {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-medical-service__text {
    width: 48%;
  }
}
.p-medical-service__text p {
  font-size: 14px;
  line-height: 1.7;
}
.p-medical-service__media {
  width: 100%;
  aspect-ratio: 295/221;
  overflow: hidden;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-medical-service__media {
    width: 48%;
  }
}
.p-medical-service__icon {
  position: absolute;
  top: 0;
}
.p-medical-service__icon--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-medical-service__icon--pc {
    display: block;
    right: 60px;
    width: 100px;
    height: 80px;
  }
}
.p-medical-service__icon--sp {
  display: block;
  right: 20px;
  width: 80px;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .p-medical-service__icon--sp {
    display: none;
  }
}

.p-staff {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 101px;
  padding-block: 60px 100px;
}
@media screen and (min-width: 768px) {
  .p-staff {
    gap: 157px;
    padding-block: 81px 160px;
  }
}
.p-staff-intro__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: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-staff-intro__contents {
    gap: 60px;
  }
}
.p-staff-intro__layout {
  display: grid;
  grid-template-columns: 100%;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-staff-intro__layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 8%;
  }
}
.p-staff-intro__message {
  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;
}
@media screen and (min-width: 768px) {
  .p-staff-intro__message {
    gap: 40px;
  }
}
.p-staff-intro__headline {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-staff-intro__headline {
    font-size: 28px;
  }
}
.p-staff-intro__text {
  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;
}
.p-staff-intro__signature {
  text-align: right;
}
.p-staff-intro__image {
  aspect-ratio: 335/446;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-staff-intro__image {
    grid-row: 1/3;
    grid-column: 2/3;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 20px;
  }
}
.p-staff-intro__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-staff-intro__profile {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
.p-staff-intro__profile-group {
  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;
}
.p-staff-intro__profile-title {
  padding-bottom: 6px;
  font-size: 16px;
  line-height: 1.5;
  border-bottom: 1px solid #393939;
}
.p-staff-intro__career {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
}
.p-staff-intro__qualification {
  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;
}
.p-staff__gallery {
  overflow: hidden;
}

.js-staff-gallery-swiper .swiper-slide {
  border-radius: 20px;
  overflow: hidden;
}

.p-staff-members__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: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-staff-members__contents {
    gap: 60px;
  }
}
.p-staff-members__group {
  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;
}
.p-staff-members__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px 8%;
  row-gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-staff-members__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .p-staff-members__list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 58px;
  }
}

.p-staff-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
.p-staff-card__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.p-staff-card__role {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.p-staff-card__person {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.p-staff-card__profile {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 1px 0;
}
@media screen and (min-width: 768px) {
  .p-staff-card__profile {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-staff-card__profile dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 17px 20px;
  font-size: 14px;
  line-height: 1.5;
  background-color: #dff1fd;
}
.p-staff-card__profile dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 17px 20px;
  font-size: 14px;
  line-height: 1.5;
}

.p-blog {
  padding-block: 60px 100px;
}
@media screen and (min-width: 768px) {
  .p-blog {
    padding-block: 80px 160px;
  }
}
.p-blog__layout {
  display: grid;
  gap: 100px;
}
@media screen and (min-width: 768px) {
  .p-blog__layout {
    grid-template-columns: 1fr 300px;
    gap: 3%;
  }
}
.p-blog__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap:60px
}
@media screen and (min-width: 768px) {
  .p-blog__main {
     gap:100px
  }
}
.p-blog__sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 60px;
}

.p-blog-list {
  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;
}
@media screen and (min-width: 768px) {
  .p-blog-list {
    gap: 21px;
  }
}

.p-blog-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-blog-card {
    gap: 21px;
  }
}
.p-blog-card:hover .p-blog-card__image img {
  transform: scale(1.08);
}
.p-blog-card:hover .p-blog-card__title {
  color: #1391e6;
}
.p-blog-card__image {
  width: 39.7%;
  aspect-ratio: 133/101;
  height: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-blog-card__image {
    width: 39.4%;
    aspect-ratio: 264/153;
  }
}
.p-blog-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.p-blog-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
  width: 57%;
}
@media screen and (min-width: 768px) {
  .p-blog-card__body {
    gap: 14px;
    width: 58%;
  }
}
.p-blog-card__category {
  padding: 2px 8px;
  font-size: 10px;
  line-height: 1.5;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  text-align: center;
  background-color: #1391e6;
  border-radius: 999px;
}
@media screen and (min-width: 768px) {
  .p-blog-card__category {
    padding: 6px 12px;
    font-size: 11px;
  }
}
.p-blog-card__title {
  min-height: 42px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #393939;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-blog-card__title {
    min-height: 48px;
    font-size: 16px;
  }
}
.p-blog-card__date {
  font-size: 11px;
  line-height: 1.5;
  color: #888;
}

.p-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.p-pagination__item {
  display: grid;
  place-content: center;
  width: 30px;
  height: 30px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 3px;
  white-space: nowrap;
  color: #1391e6;
  background-color: #fff;
  border: 1px solid #1391e6;
}
@media screen and (min-width: 768px) {
  .p-pagination__item {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}
.p-pagination__item:hover {
  background-color: #1391e6;
  color: #fff;
}
.p-pagination__item--current {
  color: #fff;
  background-color: #1391e6;
  border: 1px solid #1391e6;
}
.p-pagination__item--next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 72px;
  height: 30px;
  padding: 0 32px 0 12px;
  font-size: 11px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  background-color: #1391e6;
  background-image: url("../img/blog-img/Icon awesome-arrow-circle-right.svg");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 13px 13px;
  border: 1px solid #1391e6;
  border-radius: 3px;
}
@media screen and (min-width: 768px) {
  .p-pagination__item--next {
    min-width: 82px;
    height: 36px;
    padding: 0 32px 0 8px;
  }
}

.p-pagination__item--prev {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 82px;
  padding-right: 15px;
  font-size: 11px;
  color: #fff;
  background-color: #1391e6;
  background-image: url(../img/blog-img/Icon\ awesome-arrow-circle-left.svg);
  background-repeat: no-repeat;
  background-position: left 14px center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-pagination__item--next {
    min-width: 82px;
    height: 36px;
    padding: 0 32px 0 8px;
  }
}

.p-sidebar-block {
  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;
}
.p-sidebar-block__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 7px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid #393939;
}
.p-sidebar-block__title img {
  width: 24px;
  height: 24px;
}

.p-sidebar-clinic__image img {
  width: 100%;
}
.p-sidebar-clinic__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.p-sidebar-clinic__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.p-sidebar-clinic__text {
  font-size: 14px;
  line-height: 1.7;
}
.p-sidebar-clinic__link {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #1391e6;
}
.p-sidebar-clinic__link::after {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  content: "";
  background: url(./../img/blog-img/arrow.svg);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-sidebar-recent__list {
  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;
}
.p-sidebar-recent__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.p-sidebar-recent__item:hover .p-sidebar-recent__image img {
  transform: scale(1.08);
}
.p-sidebar-recent__item:hover .p-sidebar-recent__title {
  color: #1391e6;
}
.p-sidebar-recent__image {
  width: 39.7%;
  height: 100%;
  aspect-ratio: 133/101;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-sidebar-recent__image {
    width: 40%;
    aspect-ratio: 120/90;
  }
}
.p-sidebar-recent__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.p-sidebar-recent__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
  width: 57.3%;
}
@media screen and (min-width: 768px) {
  .p-sidebar-recent__body {
    width: 56.6%;
  }
}
.p-sidebar-recent__category {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 8px;
  font-size: 10px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  background-color: #1391e6;
  border-radius: 999px;
}
.p-sidebar-recent__title {
  min-height: 42px;
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.3s ease;
}
.p-sidebar-recent__date {
  font-size: 11px;
  line-height: 1.5;
  color: #888888;
}

.p-sidebar-category__list {
  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;
  padding-left: 20px;
}
.p-sidebar-category__link {
  position: relative;
  display: block;
  padding-left: 11px;
  font-size: 16px;
  line-height: 1.5;
}
.p-sidebar-category__link::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 12px;
  content: "";
  background-image: url(./../img/blog-img/icon-arrow-blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-article__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .p-article__title {
    font-size: 28px;
  }
}
.p-article__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-article__date {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  color: #1391e6;
}
.p-article__date::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  content: "";
  background: url(./../img/blog-img/icon-time.svg);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.p-article__category {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 12px;
  font-size: 11px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  background-color: #1391e6;
  border-radius: 999px;
}
.p-article__content {
  margin-top: 40px;
}
.p-article__content h2,
.p-article__content h3,
.p-article__content h4 {
  font-weight: 700;
  line-height: 1.5;
  color: #1391e6;
  letter-spacing: 0.08em;
}
.p-article__content h2 {
  font-size: 18px;
  padding-left: 16px;
  border-left: 6px solid #1391e6;
}
.p-article__content h2:not(:first-of-type) {
  margin-top: 29px;
}
@media screen and (min-width: 768px) {
  .p-article__content h2 {
    font-size: 24px;
  }
}
.p-article__content h3 {
  margin-top: 29px;
  padding-bottom: 4px;
  font-size: 16px;
  border-bottom: 1px solid #1391e6;
}
@media screen and (min-width: 768px) {
  .p-article__content h3 {
    font-size: 20px;
    padding-bottom: 5px;
  }
}
.p-article__content h4 {
  margin-top: 29px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-article__content h4 {
    font-size: 16px;
  }
}
.p-article__content a {
  color: #1391e6;
  text-decoration: underline;
}
.p-article__content p {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}
.p-article__content ul {
  margin-top: 14px;
  margin-left: 1.5em;
  list-style-type: disc;
}
.p-article__content ol {
  margin-top: 14px;
  margin-left: 1.5em;
  list-style-type: decimal;
}
.p-article__nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 41px;
}
@media screen and (min-width: 768px) {
  .p-article__nav {
    margin-top: 72px;
  }
}
.p-article__navItem--prev {
  position: absolute;
  top: 50%;
  height: 36px;
  background: #1391e6;
  border-radius: 4px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: calc(50% + 50px);
  padding-right: 12px;
  width: 114px;
}
@media screen and (min-width: 768px) {
  .p-article__navItem--prev {
    right: calc(50% + 52px);
    width: 124px;
  }
}
.p-article__navItem--prev a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  background: transparent url(./../img/blog-img/icon-arrow-left.svg) no-repeat left 16px center;
  background-size: 15px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .p-article__navItem--prev a {
    font-size: 14px;
  }
}
.p-article__navItem--archive {
  width: 76px;
  height: 36px;
  border: 1px solid #1391e6;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .p-article__navItem--archive {
    width: 84px;
  }
}
.p-article__navItem--archive a {
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  color: #1391e6;
  text-decoration: none;
  background: #fff;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .p-article__navItem--archive a {
    font-size: 14px;
  }
}

.p-article__navItem--next {
  position: absolute;
  top: 50%;
  height: 36px;
  background: #1391e6;
  border-radius: 4px;
  transform: translateY(-50%);
  left: calc(50% + 50px);
  padding-left: 16px;
  width: 114px;
}
@media screen and (min-width: 768px) {
  .p-article__navItem--next {
    right: calc(50% + 52px);
    width: 124px;
  }
}
.p-article__navItem--next a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  background: transparent url(./../img/blog-img/Icon\ awesome-arrow-circle-right.svg) no-repeat right 16px center / contain;
  background-size: 15px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .p-article__navItem--next a {
    font-size: 14px;
  }
}

.p-article__content ul li::marker {
  font-size: 0.7em; /* ← 小さくする */
}
.p-news__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.p-news-card {
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-news-card {
    gap: 21px;
  }
}

.p-contact {
  padding-block: 60px 100px;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding-block: 80px 160px;
  }
}
.p-contact__lead {
  max-width: 728px;
  margin: auto;
  font-size: 14px;
  line-height: 1.7;
}
.p-contact__note {
  color: #ee5a6d;
}
.p-contact__header {
  margin-top: 103px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__header {
    margin-top: 150px;
  }
}
.p-contact__br {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-contact__br {
    display: none;
  }
}
.p-contact__body {
  margin-top: 39px;
}
@media screen and (min-width: 768px) {
  .p-contact__body {
    margin-top: 70px;
  }
}
.p-form {
}
.p-form__lists {
  max-width: 728px;
  margin: auto;
}
.p-contact-control {
  display: block;
  padding-top: 23px;
  padding-bottom: 23px;
  align-items: center;
  border-top: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  .p-contact-control {
    display: flex;
    padding-top: 28px;
    padding-bottom: 28px;
  }
}
.p-contact-control__left {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-contact-control__left {
    flex: 0 0 240px;
  }
}
.p-contact-control__text {
  font-size: 16px;
  line-height: 1.5;
}
.p-contact-control__required {
  display: inline-block;
  padding: 3px 6px;
  font-size: 12px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  background: #ee5a6d;
  border-radius: 4px;
}
.p-contact-control__right {
  padding: 0;
  margin-top: 12px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contact-control__right {
    flex: 0 1 auto;
  }
}
.p-contact-control__right input {
  width: 100%;
  height: 48px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
  background: #f6f6f6;
  background-image: none;
  border: none;
  border-radius: 4px;
}
.p-contact-control__right textarea {
  width: 100%;
  height: 160px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
  background: #f6f6f6;
  background-image: none;
  border: none;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .p-contact-control__right textarea {
    height: 200px;
  }
}
.p-contact-control__right input[type="radio"] {
  display: none;
}
.p-contact__form input[type="radio"] + span {
  position: relative;
  display: inline-block;
  padding: 5px 0 5px 32px;
  margin: 0 32px 0 0;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}
.p-contact__form input[type="radio"] + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  content: "";
  background: #fff;
  border: 1px solid #1391e6;
  border-radius: 50%;
  transform: translateY(-50%);
}
.p-contact__form input[type="radio"]:checked + span::after {
  position: absolute;
  top: 50%;
  left: 6px;
  width: 12px;
  height: 12px;
  content: "";
  background: #1391e6;
  border-radius: 50%;
  transform: translateY(-50%);
}
.p-contact-control__right input[type="checkbox"] {
  display: none;
}
.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}
@media screen and (min-width: 768px) {
  .wpcf7-checkbox {
    gap: 16px 32px;
  }
}
.wpcf7-list-item {
  margin-left: 0;
}
.p-contact__form input[type="checkbox"] + span {
  position: relative;
  display: inline-block;
  padding: 0 0 0 32px;
  margin: 0;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}
.p-contact__form input[type="checkbox"] + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
  content: "";
  background: #fff;
  border: 1px solid #1391e6;
  transform: translateY(-50%);
}
.p-contact__form input[type="checkbox"]:checked + span::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  content: "";
  background: transparent url(./../img/contact-img/check-icon.svg) no-repeat center center / 18px 18px;
  opacity: 1;
  transform: translateY(-50%);
}
.p-contact-control__right select {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
  appearance: none;
  cursor: pointer;
  background-color: #f6f6f6;
  background-image: url(./../img/contact-img/reserve-icon.svg);
  background-repeat: no-repeat;
  background-position: right 16px center;
  border: none;
}
.p-contact-control__right span:not(:first-of-type) input[type="date"] {
  margin-top: 20px;
}
.p-form__button {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-form__button {
    margin-top: 70px;
  }
}
.c-btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 273px;
  height: 38px;
  max-width: 360px;
  margin: auto;
  color: #1391e6;
  letter-spacing: 0.08em;
  background: #fff;
  border: 1px solid #1391e6;
  border-radius: 28px;
}
@media screen and (min-width: 768px) {
  .c-btn-contact {
    width: 100%;
    height: 56px;
    font-size: 16px;
  }
}
.c-btn-contact:hover {
  color: #fff;
  background: #1391e6;
}
.p-reserve {
  padding-block: 60px 100px;
}
@media screen and (min-width: 768px) {
  .p-reserve {
    padding-block: 80px 160px;
  }
}
.p-reserve__block {
  width: 100%;
  max-width: 728px;
  margin: auto;
}
.p-reserve__block + .p-reserve__block {
  margin-top: 40px;
}
.p-reserve__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #393939;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-reserve__title {
    font-size: 28px;
  }
}
.p-reserve__tel {
  display: inline-block;
  margin-top: 24px;
  text-align: center;
}
.p-reserve__telLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #1391e6;
  letter-spacing: -0.02em;
}
.p-reserve__telTime {
  font-size: 12px;
  line-height: 1.5;
  color: #1391e6;
}
.p-reserve__text {
  margin-top: 24px;
  font-size: 14px;
}