@charset "UTF-8";
/*-- globalフォルダの直下の_index.scss --*/
/*-- settingフォルダの中の_index.scss --*/
/* ===============================================
  webFont
=============================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* ==================================================
  cache busting設定（scssの最上部に記載）
================================================== */
/*-- mixinフォルダの中の_index.scss --*/
/* ==================================================
  breakpoint & medea query
================================================== */
/*-- commonフォルダの中の_index.scss --*/
/* ===============================================
  htmlでのデザイン制御
=============================================== */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2vw;
}
@media (width < 1100px) {
  .flex {
    gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.flex--rev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2vw;
}
@media (width < 1100px) {
  .flex--rev {
    gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.flex_row_rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.aic {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fw400 {
  font-weight: 400;
}

.fw700 {
  font-weight: 700;
}

.fw900 {
  font-weight: 900;
}

.is-open {
  display: block;
}

.is-close {
  display: none;
}

@media screen and (min-width: 600px) {
  .is-sp {
    display: none;
  }
}

@media (width >= 1100px) {
  .is-mobile {
    display: none;
  }
}

@media (width < 1100px) {
  .is-pc {
    display: none;
  }
}

.underline {
  text-decoration: underline;
}

.center {
  text-align: center;
}

.left {
  -moz-text-align-last: left;
       text-align-last: left;
}

.right {
  text-align: right;
}

.fz10 {
  font-size: 1rem;
}

.fz12 {
  font-size: 1.2rem;
}

.fz14 {
  font-size: 1.4rem;
}

.fz16 {
  font-size: 1.6rem;
}

.fz18 {
  font-size: 1.8rem;
}

.fz20 {
  font-size: 2rem;
}

.fz30 {
  font-size: 3rem;
}

.miauto {
  margin-inline: auto;
}

.ml10 {
  margin-left: 10px;
}

.ml20 {
  margin-left: 20px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt80 {
  margin-top: 80px;
}

.mt100 {
  margin-top: 100px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb100 {
  margin-bottom: 100px;
}

.bold {
  font-weight: 700;
}

.is-red {
  color: #c03737;
}

.w10 {
  width: calc(10% - 1.5vw);
  margin-inline: auto;
}
@media (width < 1100px) {
  .w10 {
    width: 100%;
  }
  .w10 figure {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
  }
}

.w20 {
  width: calc(20% - 1vw);
  margin-inline: auto;
}
@media (width < 1100px) {
  .w20 {
    width: 100%;
  }
  .w20 figure {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
  }
}

.w30 {
  width: calc(30% - 1vw);
  margin-inline: auto;
}
@media (width < 1100px) {
  .w30 {
    width: 100%;
  }
  .w30 figure {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
  }
}

.w40 {
  width: calc(40% - 1vw);
  margin-inline: auto;
}
@media (width < 1100px) {
  .w40 {
    width: 100%;
  }
  .w40 figure {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
  }
}

.w50 {
  width: calc(50% - 1vw);
}
@media (width < 1100px) {
  .w50 {
    width: 100%;
  }
  .w50 figure {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
  }
}

.w60 {
  width: calc(60% - 1vw);
  margin-inline: auto;
}
@media (width < 1100px) {
  .w60 {
    width: 100%;
  }
  .w60 figure {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
  }
}

.w70 {
  width: calc(70% - 1vw);
  margin-inline: auto;
}
@media (width < 1100px) {
  .w70 {
    width: 100%;
  }
  .w70 figure {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
  }
}

.w80 {
  width: calc(80% - 1vw);
  margin-inline: auto;
}
@media (width < 1100px) {
  .w80 {
    width: 100%;
  }
  .w80 figure {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
  }
}

.w90 {
  width: calc(90% - 1vw);
  margin-inline: auto;
}
@media (width < 1100px) {
  .w90 {
    width: 100%;
  }
  .w90 figure {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
  }
}

.list_wrapper {
  list-style: none;
}
.list_wrapper > li {
  position: relative;
  padding-left: 15px;
}
.list_wrapper > li:nth-of-type(n + 2) {
  margin-top: 5px;
}
.list_wrapper > li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #0f95c5;
  border-radius: 5px;
}

.items120 .item:nth-of-type(n + 2) {
  margin-top: 120px;
}
@media (width < 600px) {
  .items120 .item:nth-of-type(n + 2) {
    margin-top: 60px;
  }
}

.items80 .item:nth-of-type(n + 2) {
  margin-top: 80px;
}
@media (width < 600px) {
  .items80 .item:nth-of-type(n + 2) {
    margin-top: 40px;
  }
}

.items60 .item:nth-of-type(n + 2) {
  margin-top: 60px;
}
@media (width < 600px) {
  .items60 .item:nth-of-type(n + 2) {
    margin-top: 30px;
  }
}

.items40 .item:nth-of-type(n + 2) {
  margin-top: 40px;
}
@media (width < 600px) {
  .items40 .item:nth-of-type(n + 2) {
    margin-top: 20px;
  }
}

.section-space {
  padding: 100px 0;
}
@media (width < 600px) {
  .section-space {
    padding: 80px 0;
  }
}

.anchor {
  position: relative;
  padding: 100px 0 40px;
  z-index: 2;
}
@media (width < 600px) {
  .anchor {
    padding: 80px 0 20px;
  }
}
.anchor__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 3vw;
}
.anchor__item {
  width: calc((100% - 9vw) / 4);
}
@media (600px <= width < 1100px) {
  .anchor__item {
    width: calc((100% - 3vw) / 2);
  }
}
@media (width < 600px) {
  .anchor__item {
    width: 100%;
  }
}
.anchor__link {
  width: 100%;
  padding: 20px 10px;
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-bottom: 1px solid #333;
}
@media (width < 1100px) {
  .anchor__link {
    padding-right: 30px;
  }
}
.anchor__link::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 10px;
  aspect-ratio: 1/1;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-bottom: 1px solid #333;
  border-right: 1px solid #333;
  z-index: 10;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.section-bg {
  background-color: #f2f2f2;
}

.section-bg2 {
  background: url(../img/top/top-greeting-bg.webp?ver=um4xbt5) no-repeat center/cover;
}

.section-title-line {
  padding-top: 50px;
  position: relative;
}
@media (width < 600px) {
  .section-title-line {
    padding-top: 30px;
  }
}
.section-title-line::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(45deg, #0f5ba3, #2ed8eb 50%);
}

.section-title__text {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  font-weight: 700;
  position: relative;
  padding-left: 1em;
}
.section-title__text span {
  display: inline-block;
  font-family: "メイリオ", sans-serif;
  letter-spacing: 0;
  font-size: 1.4rem;
  font-weight: 500;
  color: #929292;
  padding-left: 0.5em;
}
.section-title__text::before {
  position: absolute;
  content: "";
  height: 0.6em;
  width: 0.6em;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background-color: #0f95c5;
}

.title-2 {
  margin-bottom: 20px;
}
.title-2__text {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  position: relative;
  font-weight: 700;
  padding-left: 15px;
  color: #0f95c5;
}
@media (width < 600px) {
  .title-2__text {
    padding-left: 10px;
  }
}
.title-2__text:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0f95c5;
}
@media (width < 600px) {
  .title-2__text:before {
    width: 8px;
    height: 8px;
  }
}
.title-2__text:after {
  text-transform: capitalize;
  content: attr(data-en);
  display: inline-block;
  margin-left: 10px;
  font-size: 1.8rem;
  color: #929292;
  vertical-align: 0.3em;
}
@media (width < 1100px) {
  .title-2__text:after {
    margin-left: 0;
    vertical-align: 0.05em;
    font-size: 1.2rem;
    display: block;
  }
}

.title-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5em 0.7em;
  background-color: #f2f2f2;
  color: #0f95c5;
  font-weight: 600;
  font-size: clamp(2rem, 2vw, 2.4rem);
}
.title-3::before {
  display: inline-block;
  width: 5px;
  height: 1.5em;
  margin-right: 0.5em;
  background-color: #0f95c5;
  content: "";
}

.title-4 {
  text-align: center;
  padding: 8px 5%;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  border-bottom: 1px solid #0f95c5;
}

.title-5 {
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
  font-weight: 600;
}

.title-6 {
  font-weight: 600;
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  margin-bottom: 5px;
  border-bottom: 1px solid #333;
}

.btn {
  margin-top: 40px;
  text-align: center;
}
.btn--right {
  text-align: right;
}
.btn__link {
  padding: 1em 6em 1em 1.5em;
  font-size: 1.6rem;
  font-weight: 600;
  position: relative;
  border: solid 1px #0f95c5;
  background-color: #0f95c5;
  border-radius: 10px;
  z-index: 5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
}
.btn__link span {
  position: absolute;
  background-color: #fff;
  width: 35px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn__link::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 8px;
  aspect-ratio: 1/1;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  right: 30px;
  border-top: 2px solid #0f95c5;
  border-right: 2px solid #0f95c5;
  z-index: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.btn__link:hover {
  background-color: #fff;
  color: #0f95c5;
}
.btn__link:hover span {
  background-color: #0f95c5;
}
.btn__link:hover::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.btn-rev {
  margin-top: clamp(20px, 3vw, 40px);
  text-align: center;
}
.btn-rev--right {
  text-align: right;
}
.btn-rev__link {
  padding: 1em 6em 1em 1.5em;
  font-size: 1.6rem;
  font-weight: 600;
  position: relative;
  border: solid 1px #0f95c5;
  background-color: #fff;
  border-radius: 10px;
  z-index: 5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #0f95c5;
}
.btn-rev__link span {
  position: absolute;
  background-color: #0f95c5;
  width: 35px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn-rev__link::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 8px;
  aspect-ratio: 1/1;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  right: 30px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  z-index: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.btn-rev__link:hover {
  background-color: #0f95c5;
  color: #fff;
  border: solid 1px #fff;
}
.btn-rev__link:hover span {
  background-color: #fff;
}
.btn-rev__link:hover::before {
  border-top: 2px solid #0f95c5;
  border-right: 2px solid #0f95c5;
}

.btn-2 {
  padding: 10px 60px 10px 0;
  font-size: 1.6rem;
  font-weight: 600;
  position: relative;
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (width < 1100px) {
  .btn-2 {
    padding-right: 30px;
  }
}
.btn-2 span {
  position: absolute;
  background-color: #0f95c5;
  border: 1px solid #0f95c5;
  width: 30px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (width < 1100px) {
  .btn-2 span {
    width: 25px;
    right: 0;
  }
}
.btn-2::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 8px;
  aspect-ratio: 1/1;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  right: 28px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  z-index: 10;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (width < 1100px) {
  .btn-2::before {
    right: 10px;
  }
}
.btn-2:hover span {
  background-color: #fff;
}
.btn-2:hover::before {
  border-top: 2px solid #0f95c5;
  border-right: 2px solid #0f95c5;
}

/* ==================================================
  共通の全体設定
================================================== */
html {
  font-size: 62.5%;
}
@media (width < 600px) {
  html {
    font-size: 56.25%;
  }
}

body {
  color: #333;
  font-size: 1.6rem;
  background-color: #fff;
  font-family: "Noto Sans", "Noto Sans JP", "メイリオ", sans-serif;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: justify;
}

img:not([class*=wp-image-]) {
  max-width: 100%;
  height: auto;
}
img[class*=wp-image-].alignright {
  display: block;
  margin: 0 0 0 auto;
}
img[class*=wp-image-].alignleft {
  display: block;
  margin: 0 auto 0 0;
}
img[class*=wp-image-].aligncenter {
  display: block;
  margin: 0 auto;
}

a {
  display: inline-block;
}

.inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (width < 1100px) {
  .inner {
    width: 90%;
  }
}

.bcn-display {
  margin-top: 20px;
  font-size: 1.4rem;
}

#add_dashboard_widget.postbox {
  background-color: yellow !important;
}

@-webkit-keyframes anime3-1 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(20px) rotate(0);
            transform: translateY(20px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(10px) rotate(45deg);
            transform: translateY(10px) rotate(45deg);
  }
}

@keyframes anime3-1 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(20px) rotate(0);
            transform: translateY(20px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(10px) rotate(45deg);
            transform: translateY(10px) rotate(45deg);
  }
}
@-webkit-keyframes anime3-3 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(0);
            transform: translateY(-20px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-9px) rotate(-45deg);
            transform: translateY(-9px) rotate(-45deg);
  }
}
@keyframes anime3-3 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(0);
            transform: translateY(-20px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-9px) rotate(-45deg);
            transform: translateY(-9px) rotate(-45deg);
  }
}
/* ===============================================
 fadeInアニメーション
=============================================== */
/* 初期状態のスタイル */
.fade_down_item {
  opacity: 0;
  -webkit-transform: translate(-20px, -50px);
          transform: translate(-20px, -50px);
}

/* アニメーションのキーフレーム定義 */
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate(-20px, -50px);
            transform: translate(-20px, -50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate(-20px, -50px);
            transform: translate(-20px, -50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
/* アニメーションの適用 */
.fade_down_item.animated {
  -webkit-animation: fadeInDown 0.2s ease forwards;
          animation: fadeInDown 0.2s ease forwards;
}

.fade_in_1 {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

@-webkit-keyframes fadein1 {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadein1 {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slidein {
  to {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes slidein {
  to {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.fade_in_1.animated {
  -webkit-animation: fadein1 0.8s ease-out forwards;
          animation: fadein1 0.8s ease-out forwards;
}

.feature__list {
  margin: 70px 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3vw;
  z-index: 3;
}
@media (width < 1100px) {
  .feature__list {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 40px 0 0;
  }
}
.feature__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2vw;
}
.feature__image--2 {
  margin-top: 120px;
  margin-left: -5vw;
}
@media (width < 600px) {
  .feature__image--2 {
    margin-top: 60px;
    margin-left: -15vw;
  }
}

.header__wrapper {
  width: 90%;
  height: clamp(100px, 10vw, 120px);
  margin: 0 auto;
  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;
}
.header__logo {
  min-width: 200px;
  max-width: 260px;
  width: 18%;
}

.header-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5vw;
}
.header-nav__link {
  padding: 20px 5px;
  font-weight: 600;
}
.header-nav__link.current {
  position: relative;
}
.header-nav__link.current::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(45deg, #0f5ba3 0%, #2ed8eb 100%);
}

.hamburger {
  position: relative;
  background: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  width: 34px;
  height: 21px;
  -webkit-transition: all 1s;
  transition: all 1s;
  z-index: 999;
}
.hamburger span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #222;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.hamburger span:nth-of-type(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  width: 70%;
  top: 10px;
}
.hamburger span:nth-of-type(3) {
  bottom: 0;
}
.hamburger.open span {
  background: #fff;
}

.hamburger:focus {
  outline: 0;
}

.hamburger.open .line:nth-child(1) {
  -webkit-animation: anime3-1 0.75s forwards;
          animation: anime3-1 0.75s forwards;
}

.hamburger.open .line:nth-child(2) {
  display: none;
}

.hamburger.open .line:nth-child(3) {
  -webkit-animation: anime3-3 0.75s forwards;
          animation: anime3-3 0.75s forwards;
}

.hamburger-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(42, 88, 141, 0.95);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 900;
  color: #fff;
  padding: 100px 0;
}
.hamburger-menu__item {
  text-align: center;
  padding: 20px 0;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.hamburger-menu.open {
  visibility: visible;
  opacity: 1;
}
.hamburger-menu.open .hamburger-menu__item {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.hamburger-menu.open .hamburger-menu__item:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.hamburger-menu.open .hamburger-menu__item:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.hamburger-menu.open .hamburger-menu__item:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.hamburger-menu.open .hamburger-menu__item:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.hamburger-menu.open .hamburger-menu__item:nth-child(5) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.page-title {
  position: relative;
  padding-bottom: 30px;
  height: 350px;
}
@media (width < 600px) {
  .page-title {
    height: 300px;
  }
}
.page-title::before {
  position: absolute;
  content: "";
  height: 250px;
  width: 50%;
  bottom: 0;
  left: 0;
  background: linear-gradient(45deg, #2a8ac5 0%, rgb(158, 207, 238) 70%);
  z-index: -1;
}
@media (width < 600px) {
  .page-title::before {
    width: 80%;
    height: 180px;
  }
}
.page-title__wrapper {
  width: 80%;
  height: 250px;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  background: url(../img/common/page-title.webp?ver=um4xbt5) no-repeat center 35%/cover;
}
@media (width < 600px) {
  .page-title__wrapper {
    height: 200px;
  }
}
.page-title__inner {
  padding: 30px 5%;
  position: absolute;
  bottom: 60px;
  left: 10%;
  z-index: 3;
  background-color: #fff;
}
@media (width < 600px) {
  .page-title__inner {
    bottom: 40px;
  }
}
.page-title__text {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  color: #333;
  font-weight: 700;
}

/* ===============================================
  パンくずリスト
=============================================== */
.bcn_display {
  padding-top: clamp(10px, 2vw, 20px);
}
.bcn_display .home {
  padding-left: 1.2em;
  position: relative;
}
@media (width < 600px) {
  .bcn_display .home {
    padding-left: 0;
  }
}
.bcn_display .post {
  display: inline-block;
}
@media (width < 600px) {
  .bcn_display .post {
    display: block;
  }
}
.bcn_display .item {
  display: block;
}

@media (width < 600px) {
  .bcn_display_inner {
    width: 92%;
  }
}

.page-top {
  background-color: #e8eaeb;
  border-top: 1.5px solid #fff;
}
.page-top__link {
  width: 100%;
  height: 100%;
  display: inline-block;
  text-align: center;
  position: relative;
  padding-top: 45px;
  padding-bottom: 20px;
  font-size: 1.2rem;
}
@media (width < 600px) {
  .page-top__link {
    font-size: 1rem;
    padding-top: 35px;
    padding-bottom: 15px;
  }
}
.page-top__link::before {
  content: "";
  position: absolute;
  width: clamp(18px, 2.5vw, 28px);
  height: 1px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: clamp(20px, 2.5vw, 25px);
  background-color: #333;
}
.page-top__link::after {
  content: "";
  position: absolute;
  width: clamp(12px, 1.5vw, 16px);
  height: clamp(12px, 1.5vw, 16px);
  left: 50%;
  top: clamp(20px, 2.5vw, 25px);
  border: 1px solid #333;
  border-left: 0;
  border-bottom: 0;
  margin: 7px 0 0 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: rotate(-45deg) translate(-55%, -50%);
          transform: rotate(-45deg) translate(-55%, -50%);
}

.footer__inner {
  padding-bottom: clamp(20px, 2.5vw, 40px);
}
@media (width < 1100px) {
  .footer__inner {
    margin-bottom: 65px;
  }
}
.footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3vw;
}
@media (width < 1100px) {
  .footer__contents {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.footer__item {
  width: calc((100% - 3vw) / 2);
  padding: 60px 0;
}
@media (width < 1100px) {
  .footer__item {
    width: 100%;
    padding: 30px 0;
  }
}
.footer__item address {
  margin-top: 20px;
}
@media (width < 600px) {
  .footer__item address {
    margin-top: 15px;
  }
}
@media (width < 1100px) {
  .footer__item--left {
    border-top: 1px solid rgba(130, 107, 107, 0.12);
    text-align: center;
  }
}
.footer__logo {
  width: clamp(220px, 25vw, 300px);
}
@media (width < 1100px) {
  .footer__logo {
    margin: 0 auto;
  }
}
.footer__nav-list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  gap: 20px 2vw;
}
@media (width < 600px) {
  .footer__nav-list {
    gap: 15px 1vw;
  }
}
.footer__nav-link {
  display: inline-block;
  padding: 5px 0 5px 30px;
  font-size: 1.6rem;
  position: relative;
  z-index: 5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (width < 1100px) {
  .footer__nav-link {
    padding-left: 18px;
    font-size: 1.4rem;
  }
}
.footer__nav-link::after {
  position: absolute;
  content: "";
  background-color: #fff;
  border: 1px solid #0f95c5;
  width: 20px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (width < 1100px) {
  .footer__nav-link::after {
    width: 15px;
  }
}
.footer__nav-link::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 6px;
  aspect-ratio: 1/1;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  left: 6px;
  border-top: 2px solid #0f95c5;
  border-right: 2px solid #0f95c5;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (width < 1100px) {
  .footer__nav-link::before {
    left: 4px;
    width: 5px;
  }
}
.footer__nav-link:hover::after {
  background-color: #0f95c5;
}
.footer__nav-link:hover::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.contact-btn__wrapper {
  position: fixed;
  z-index: 999;
}
.contact-btn li:first-child a span {
  padding-top: 20px;
}
.contact-btn li:first-child a span::before {
  top: 0;
  width: 19px;
  height: 14px;
  -webkit-mask: url(../img/common/form-icon1.svg?ver=um4xbt5) no-repeat center/contain;
          mask: url(../img/common/form-icon1.svg?ver=um4xbt5) no-repeat center/contain;
}
.contact-btn li:last-child a span {
  padding-top: 22px;
}
.contact-btn li:last-child a span::before {
  top: -5px;
  width: 23px;
  height: 26px;
  -webkit-mask: url(../img/common/form-icon2.svg?ver=um4xbt5) no-repeat center/contain;
          mask: url(../img/common/form-icon2.svg?ver=um4xbt5) no-repeat center/contain;
}
.contact-btn a {
  padding: 15px 0 10px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  width: 100%;
}
.contact-btn a span {
  display: inline-block;
  position: relative;
  line-height: 1;
}
.contact-btn a span::before {
  content: "";
  position: absolute;
  background-color: #fff;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (width < 1100px) {
  .side-btn {
    display: none;
  }
}
.side-btn__wrapper {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -2px;
}
.side-btn__wrapper li {
  width: clamp(40px, 5.5vw, 60px);
}
.side-btn__wrapper li:last-child {
  margin-top: clamp(15px, 2vw, 20px);
}
.side-btn a {
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  background-color: #0062be;
  border-radius: 20px 0 0 20px;
  display: block;
  border: 2px solid #0062be;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.side-btn a span {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.side-btn a:hover {
  background-color: #fff;
  color: #0062be;
}
.side-btn a:hover span::before {
  background-color: #0062be;
}

@media (width >= 1100px) {
  .bottom-btn {
    display: none;
  }
}
.bottom-btn__wrapper {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #0062be;
}
.bottom-btn__wrapper li {
  width: 50%;
}
.bottom-btn__wrapper li:last-child {
  border-left: 1px solid #5b97f1;
}
.bottom-btn a {
  font-size: 1.4rem;
}

.copyright {
  border-top: 1px solid rgba(130, 107, 107, 0.12);
  padding-top: 30px;
  text-align: center;
  font-size: 1.2rem;
}
@media (width < 1100px) {
  .copyright {
    padding-top: 20px;
  }
}

/*-- pageフォルダの中の_index.scss --*/
/* ===============================================
  swiper
=============================================== */
.mv__wrap {
  height: 85vh;
  position: relative;
  overflow: hidden;
}
@media (600px <= width < 1100px) {
  .mv__wrap {
    height: 65vh;
  }
}
@media (width < 600px) {
  .mv__wrap {
    height: 35vh;
  }
}
.mv__wrap::before {
  content: "";
  position: absolute;
  background-color: #fff;
  opacity: 0.1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.mv__wrap img {
  -o-object-position: center top;
     object-position: center top;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width < 1100px) {
  .mv__wrap img {
    -o-object-position: center top;
       object-position: center top;
  }
}
.mv__catch {
  position: absolute;
  top: 10%;
  left: 10%;
  font-size: clamp(3rem, 5vw, 6rem);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  color: #ffffff;
  text-shadow: 0 0 5px #555, 0 0 10px #555, 0 0 15px #555, 0 0 20px #555, 0 0 25px #555;
  z-index: 2;
}
@media (width < 1100px) {
  .mv__catch {
    top: inherit;
    bottom: 20%;
    text-shadow: 0 0 5px #555, 0 0 10px #555, 0 0 15px #555;
  }
}
.mv__catch p {
  position: relative;
  display: inline-block;
}
.mv__catch p::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 5px #555, 0 0 10px #555, 0 0 15px #555, 0 0 20px #555, 0 0 25px #555;
          box-shadow: 0 0 5px #555, 0 0 10px #555, 0 0 15px #555, 0 0 20px #555, 0 0 25px #555;
}
@media (width < 1100px) {
  .mv__catch p::before {
    height: 1px;
  }
}

/* ===============================================
  top-doctor
=============================================== */
.top-doctor {
  overflow: hidden;
  width: 100%;
  background-color: #f8f8f8;
  padding: 150px 0 100px;
}
@media (width < 600px) {
  .top-doctor {
    padding: 60px 0;
  }
}
.top-doctor__wrapper {
  position: relative;
}
.top-doctor__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 10px;
  list-style: none;
}
.top-doctor__item {
  width: calc((100% - 30px) / 4);
  text-align: center;
  -webkit-box-shadow: 0 0 15px 0 rgba(201, 201, 201, 0.3);
          box-shadow: 0 0 15px 0 rgba(201, 201, 201, 0.3);
}
@media (600px <= width < 1100px) {
  .top-doctor__item {
    width: calc((100% - 20px) / 2);
  }
}
@media (width < 600px) {
  .top-doctor__item {
    width: 100%;
  }
}
.top-doctor__item img {
  height: 220px;
  aspect-ratio: 30/17;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width < 1100px) {
  .top-doctor__item img {
    width: 100%;
    height: auto;
  }
}
.top-doctor__content {
  padding: 20px 15px;
  background-color: #fff;
}
.top-doctor__title {
  font-size: 1.8rem;
  position: relative;
  font-weight: 600;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.top-doctor__title::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background-color: #0f95c5;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.top-doctor__text {
  padding-bottom: 5px;
}

/* ===============================================
  top-info
=============================================== */
.top-info {
  padding: 100px 0 50px;
}
@media (width < 1100px) {
  .top-info {
    padding: 40px 0 0;
  }
}
.top-info__head {
  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;
  margin-bottom: clamp(15px, 2vw, 20px);
}
.top-info__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 15px;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1;
}
@media (width < 1100px) {
  .top-info__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 6px;
  }
}
.top-info__title span {
  font-family: "メイリオ", sans-serif;
  display: block;
  letter-spacing: 0;
  font-size: 1.4rem;
  font-weight: 500;
  color: #0f95c5;
  padding-left: 3px;
}
.top-info__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3vw;
}
@media (width < 1100px) {
  .top-info__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
.top-info__wrapper:has(.top-info__item:nth-of-type(2)) .top-info__item {
  width: calc((100% - 3vw) / 2);
}
.top-info__item {
  margin-top: 20px;
  width: 100%;
}
@media (width < 1100px) {
  .top-info__item {
    width: 100%;
  }
}

/* ===============================================
  top-greeting
=============================================== */
.top-greeting__title {
  text-align: center;
}
.top-greeting__title-text {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  font-weight: 700;
  padding-bottom: 0.6em;
  position: relative;
  display: inline-block;
}
.top-greeting__title-text span {
  display: block;
  font-family: "メイリオ", sans-serif;
  letter-spacing: 0;
  font-size: 1.4rem;
  font-weight: 500;
  color: #929292;
}
.top-greeting__title-text::before {
  position: absolute;
  content: "";
  height: 0.4em;
  width: 0.4em;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50%;
  background-color: #0f95c5;
}
.top-greeting__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3vw;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 40px 0 50px;
}
@media (width < 1100px) {
  .top-greeting__list {
    margin: 20px 0 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-greeting__image {
  width: calc((100% - 3vw) / 2);
  z-index: 2;
}
.top-greeting__image figure {
  -webkit-box-shadow: 5px 5px 25px -2px rgba(161, 161, 161, 0.3);
          box-shadow: 5px 5px 25px -2px rgba(161, 161, 161, 0.3);
}
@media (width < 1100px) {
  .top-greeting__image {
    width: 100%;
  }
}
.top-greeting__text {
  width: calc(55% + 3vw);
  margin-left: -20%;
  margin-top: 5%;
  font-weight: 600;
  line-height: 3.2rem;
  padding: 8% 3% 8% calc(5% + 3vw);
  color: #fff;
  background: linear-gradient(45deg, #33a6cf 0%, #0f95c5 40%, rgb(10, 105, 143) 90%);
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}
@media (width < 1100px) {
  .top-greeting__text {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    padding: 8%;
  }
}

/* ===============================================
  top-feature
=============================================== */
.top-feature {
  background: url(../img/top/top-feature-bg.webp?ver=um4xbt5) no-repeat center bottom/cover;
  position: relative;
  z-index: 0;
  border-top: 2px solid #fff;
}
.top-feature__item {
  width: calc((100% - 3vw) / 2);
}
.top-feature__item figure {
  -webkit-box-shadow: 5px 5px 25px -2px rgba(161, 161, 161, 0.3);
          box-shadow: 5px 5px 25px -2px rgba(161, 161, 161, 0.3);
  overflow: hidden;
}
@media (width < 1100px) {
  .top-feature__item {
    width: 100%;
  }
  .top-feature__item figure {
    width: 90%;
    margin: 0 auto;
  }
}

.list-wrapper {
  list-style-type: none;
}
.list-wrapper li {
  position: relative;
  gap: 0 5px;
  padding-left: 20px;
}
.list-wrapper li:first-child {
  padding-bottom: 20px;
}
.list-wrapper li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 14px;
  height: 8px;
  border-bottom: 4px solid #2589d0;
  border-left: 4px solid #2589d0;
  -webkit-transform: rotate(-45deg) translate(2px, -2px);
          transform: rotate(-45deg) translate(2px, -2px);
  content: "";
  border-radius: 1px;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(30px, 5vw, 60px);
}
.pagination .prev,
.pagination .next {
  background-color: #fff;
  color: #0f95c5;
  position: relative;
  border-radius: 100px;
}
.pagination .prev::after,
.pagination .next::after {
  position: absolute;
  content: "";
  top: 40%;
  left: 40%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-top: 2px solid #0f95c5;
  border-right: 2px solid #0f95c5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination .prev:hover::after,
.pagination .next:hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.pagination .prev {
  padding: 20px;
}
.pagination .prev::after {
  left: 15px;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
.pagination .next {
  padding: 20px;
}
.pagination .next::after {
  right: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.page-numbers {
  padding: 10px 15px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #0f95c5;
  display: inline-block;
  font-size: 14px;
  color: #0f95c5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
}
.page-numbers.current {
  background-color: #0f95c5;
  color: #fff;
  border: 1px solid #0f95c5;
}
.page-numbers:hover {
  background-color: #0f95c5;
  color: #fff;
}

.info__date {
  color: #929292;
  font-weight: 400;
  font-size: 1.4rem;
}
.info__list li {
  padding: 10px 0;
  border-bottom: 1px solid #e4e4e4;
}
.info__list li:first-child {
  border-top: 1px solid #333;
}
@media (width < 600px) {
  .info__list li {
    padding: 5px 0;
  }
}
.info__content {
  padding: 15px;
  border-radius: 15px;
  width: 100%;
}
@media (width < 600px) {
  .info__content {
    padding: 10px;
  }
}
.info__content:hover {
  background-color: #e9f4f8;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.single__head {
  padding: 20px 0;
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 30px;
}
@media (width < 600px) {
  .single__head {
    padding: 15px 0;
    margin-bottom: 20px;
  }
}
.single__title {
  font-size: clamp(1.8rem, 2vw, 2.4rem);
}

.single-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(30px, 5vw, 60px);
  gap: 10px;
}
.single-pagination__prev a, .single-pagination__next a {
  font-size: 1.4rem;
  background-color: #0f95c5;
  color: #fff;
  position: relative;
  display: inline-block;
  border: 1px solid #0f95c5;
}
.single-pagination__prev a::after, .single-pagination__next a::after {
  position: absolute;
  content: "";
  top: 42%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single-pagination__prev a {
  padding: 10px 15px 10px 30px;
}
.single-pagination__prev a::after {
  left: 15px;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
.single-pagination__prev a:hover::after {
  left: 10px;
}
.single-pagination__next a {
  padding: 10px 30px 10px 15px;
}
.single-pagination__next a::after {
  right: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.single-pagination__next a:hover::after {
  right: 10px;
}

.lists a {
  font-size: 1.4rem;
  padding: 10px 15px;
  color: #0f95c5;
  border: 1px solid #0f95c5;
  display: inline-block;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.lists a:hover {
  color: #fff;
  background: #0f95c5;
}

/* ===============================================
  404
=============================================== */
.not-found {
  padding-top: clamp(80px, 25vw, 240px);
  padding-bottom: clamp(80px, 15vw, 160px);
}
@media (width < 600px) {
  .not-found {
    margin: 100px 0;
  }
}
.not-found__wrapper {
  text-align: center;
}
.not-found__head {
  margin-bottom: 40px;
  font-size: clamp(4rem, 7.5vw, 8rem);
  font-weight: 700;
  line-height: 1;
  color: #0f95c5;
}
.not-found__lead {
  margin-bottom: 40px;
  font-size: clamp(2rem, 3vw, 3rem);
  color: #999;
}
.not-found__text {
  margin-bottom: 40px;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  line-height: 1.5;
  color: #a8a8a8;
}
.not-found__btn a {
  display: inline-block;
  padding: 20px 40px;
  color: #999;
  background: #eee;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.not-found__btn a:hover {
  background: #ddd;
}

/* ===============================================
  フォーム
=============================================== */
.form {
  width: 65%;
  margin: 0 auto;
  border-radius: 10px;
  padding: 100px 5% 50px;
  position: relative;
  z-index: 2;
}
.form .p-country-name {
  display: none;
}
@media (width < 1100px) {
  .form {
    width: 100%;
    padding: 30px 5%;
  }
}
.form__caution {
  text-align: right;
  padding-bottom: 10px;
}
.form__caution-text {
  color: indianred;
  position: relative;
  padding-left: 5px;
  display: inline-block;
  font-size: 1.4rem;
}
.form__caution-text::after {
  content: "＊";
  color: indianred;
  position: absolute;
  top: -3px;
  right: calc(100% - 5px);
  font-size: 1rem;
  font-weight: 700;
}

.contact .form {
  background-color: #f2f4f5;
}

.entry .form {
  border: 2px solid #e7ebee;
}
.entry .form-item {
  padding: 10px 0;
}

.error .wpcf7-not-valid-tip {
  display: none;
}
.error__text {
  display: none;
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
}
.error:has(.wpcf7-not-valid-tip) .error__text {
  display: block;
}

.form-item {
  padding: 5px 0;
}
.form-item__title {
  width: 100%;
  max-width: 300px;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
}
.form-item__title label.required {
  display: inline-block;
  position: relative;
}
.form-item__title label.required::after {
  content: "＊";
  color: indianred;
  position: absolute;
  top: -3px;
  left: calc(100% + 1px);
  font-size: 1rem;
  font-weight: 700;
}
.form-item__input {
  margin: 5px 0;
}
.form-item__input input::-webkit-input-placeholder {
  color: #c2c2c2;
}
.form-item__input input::-moz-placeholder {
  color: #c2c2c2;
}
.form-item__input input:-ms-input-placeholder {
  color: #c2c2c2;
}
.form-item__input input::-ms-input-placeholder {
  color: #c2c2c2;
}
.form-item__input input::placeholder {
  color: #c2c2c2;
}
.form-item__input [type=text],
.form-item__input [type=email],
.form-item__input [type=tel] {
  border: 2px solid #ddd;
  border-radius: 0.4em;
  background: #fff;
  padding: 10px 1em;
  width: 100%;
}
.form-item__input [type=text]:focus,
.form-item__input [type=email]:focus,
.form-item__input [type=tel]:focus {
  outline: none;
}
.form-item__input textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  padding: 0.8em 1em;
  background-color: #fff;
  border-radius: 0.4em;
  resize: vertical;
  border: 2px solid #ddd;
}
.form-item__input textarea::-webkit-input-placeholder {
  color: #c2c2c2;
}
.form-item__input textarea::-moz-placeholder {
  color: #c2c2c2;
}
.form-item__input textarea:-ms-input-placeholder {
  color: #c2c2c2;
}
.form-item__input textarea::-ms-input-placeholder {
  color: #c2c2c2;
}
.form-item__input textarea::placeholder {
  color: #c2c2c2;
}
.form-item__input textarea:focus {
  outline: none;
}
.form-item__input [type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1.5em;
  height: 1.5em;
  border: 1px solid #333;
  background-color: #fff;
  position: relative;
}
.form-item__input [type=checkbox]::after {
  border-bottom: 0.25em solid #0f95c5;
  border-left: 0.25em solid #0f95c5;
  content: "";
  position: absolute;
  height: 1em;
  width: 1.5em;
  margin-top: -0.2em;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  display: none;
}
.form-item__input [type=checkbox]:checked::after {
  display: block;
}
.form-item__input [type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #ddd;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
}
.form-item__input [type=radio]::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #5a5a5a;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  display: none;
}
.form-item__input [type=radio]:checked::after {
  display: block;
}
.form-item__input .wpcf7-list-item {
  margin-left: 0;
}
.form-item__input .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
.form-item__input .wpcf7-checkbox,
.form-item__input .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}

.name-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (width < 600px) {
  .name-label {
    display: block;
  }
}

.name-item {
  width: calc((100% - 20px) / 2);
}
@media (width < 1100px) {
  .name-item {
    width: 100%;
  }
}

.select-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8em;
  padding-top: 20px;
}
@media (width < 1100px) {
  .select-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.select-item__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.5em;
}
.select-item__input [type=text],
.select-item__input select {
  border: none;
  border-radius: 0.4em;
  background: #fff;
  padding: 0.3em 1em;
  border: 2px solid #ddd;
  font-size: 1.4rem;
}
@media (width < 600px) {
  .select-item__input--1 {
    width: 100%;
  }
}
.select-item__title {
  width: 200px;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
}
@media (width < 1100px) {
  .select-item__title {
    width: 100%;
  }
}
.select-item__title label.required {
  display: inline-block;
}

.submit-button {
  margin-top: clamp(15px, 2vw, 25px);
  text-align: center;
}
.submit-button [type=submit] {
  display: inline-block;
  cursor: pointer;
  color: #fff;
  width: 100%;
  border-radius: 0.2em;
  border: 1px solid #0f95c5;
  padding: 15px 0;
  letter-spacing: 0.08em;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #0f95c5;
  font-size: 1.8rem;
  font-weight: 700;
}
.submit-button [type=submit]:hover {
  background-color: #fff;
  color: #0f95c5;
}
.submit-button [type=submit]:focus {
  outline: none;
}

.wpcf7-spinner {
  display: none !important;
}

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

.wpcf7-not-valid-tip {
  margin-top: 5px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  text-align: center;
  color: #ee5a6d;
  border: 2px solid #ee5a6d;
  margin-top: clamp(20px, 4vw, 40px);
  margin-inline: auto;
  width: 80%;
}

@-webkit-keyframes onAutoFillStart {}

@keyframes onAutoFillStart {}
input:-webkit-autofill {
  -webkit-animation-name: onAutoFillStart;
          animation-name: onAutoFillStart;
  -webkit-transition: background-color 50000s ease-in-out 0s;
  transition: background-color 50000s ease-in-out 0s;
}

.grecaptcha-badge {
  bottom: 120px !important;
}

/* ===============================================
  thanksページ
=============================================== */
.thanks__head {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
.thanks__button {
  margin-top: 40px;
  text-align: center;
}
.thanks__link {
  display: inline-block;
  padding: 1em 4em;
  color: #999999;
  background: #eee;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.thanks__link:hover {
  background: #ddd;
}

.career {
  padding-top: 80px;
}
.career__table table {
  width: 100%;
}
.career__table table,
.career__table th,
.career__table td {
  border: none;
}
.career__table tr:nth-child(odd) {
  background-color: #f4fafc;
}
.career__table td {
  padding: 10px 15px;
}
@media (width < 600px) {
  .career__table td {
    display: block;
  }
  .career__table td:nth-of-type(1) {
    padding-bottom: 0;
  }
  .career__table td:nth-of-type(2) {
    padding-top: 0;
  }
}

.qa__wrapper {
  display: grid;
}
.qa__box {
  margin-top: clamp(5px, 1vw, 10px);
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  border: 2px solid #ffffff;
  background: #f0f0f0;
  border-radius: 10px;
}
.qa__box-head {
  display: block;
  font-weight: 600;
  padding: 25px 30px;
  position: relative;
  cursor: pointer;
}
@media (width < 600px) {
  .qa__box-head {
    padding: 20px 30px;
  }
}
.qa__box-head::-webkit-details-marker {
  display: none;
}
.qa__box-head::before, .qa__box-head::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  background: #333;
}
.qa__box-head::before {
  width: 16px;
  height: 2px;
  right: 30px;
}
.qa__box-head::after {
  width: 2px;
  height: 16px;
  right: 37px;
  -webkit-transition: rotate 0.3s;
  transition: rotate 0.3s;
}
.qa__box-body {
  overflow: hidden;
}
.qa__box-content {
  padding: 1em 2em;
  line-height: 1.6;
  font-weight: 400;
}
.qa[open] .qa__box-head::after {
  rotate: 90deg;
}

.program-head__img {
  border-radius: 20px;
}
.program-head__text {
  font-size: 1.8rem;
  line-height: 2;
  color: #333;
}
.program-head__text--green {
  background-color: #06969b;
  border-radius: 5px;
  color: #fff;
  padding: 3px 5px;
  display: inline-block;
  line-height: 1.5;
}
.program-head__text--blue {
  background-color: #1767c2;
  border-radius: 5px;
  color: #fff;
  padding: 3px 5px;
  display: inline-block;
  line-height: 1.5;
}
.program-head__text--red {
  background-color: #c0473f;
  margin-top: 5px;
  border-radius: 5px;
  color: #fff;
  padding: 3px 5px;
  margin-right: 5px;
  display: inline-block;
  line-height: 1.5;
}

.program-feature {
  position: relative;
  margin: 30px 0;
}
@media (width < 600px) {
  .program-feature {
    margin: 15px 0;
  }
}
.program-feature__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2vw;
}
@media (width < 600px) {
  .program-feature__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.program-feature__list li:last-child {
  margin-top: 20px;
}
.program-feature::before {
  content: "";
  width: 60%;
  height: 100%;
  display: block;
  border-radius: 0 50px 50px 0;
  background: #f4fafc;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.program-feature__item {
  font-size: 1.6rem;
  line-height: 1.8;
}
.program-feature__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  border-bottom: 1px solid #333;
  margin-bottom: 5px;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
}

.rotation__image {
  text-align: center;
  margin-top: clamp(40px, 5vw, 60px);
}
.rotation__image img {
  width: 60%;
  margin: 0 auto;
}
@media (width < 1100px) {
  .rotation__image img {
    width: 100%;
  }
}

.program-facility .title-2__text {
  font-size: clamp(2rem, 3vw, 3.6rem);
}
.program-facility .title-3 {
  background-color: #fff;
}
.program-facility__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4vw;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: clamp(40px, 5vw, 60px);
  list-style: none;
}
.program-facility__item--left {
  width: calc(30% - 2vw);
}
@media screen and (max-width: 800px) {
  .program-facility__item--left {
    width: 60%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .program-facility__item--left {
    width: 70%;
    margin: 0 auto;
  }
}
.program-facility__item--right {
  width: calc(70% - 2vw);
}
@media screen and (max-width: 800px) {
  .program-facility__item--right {
    width: 100%;
  }
}
.program-facility__list li {
  position: relative;
  padding-left: 20px;
}
.program-facility__list li::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 3px;
  background-color: #333;
  border-radius: 30px;
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.schedule__table {
  width: 100%;
  border-spacing: 3px;
  border-collapse: separate;
  background-color: #fff;
}
.schedule__table td {
  padding: 5px 10px;
}
.schedule__table th {
  padding: 20px 10px;
  white-space: nowrap;
  width: 150px;
}
.schedule__table th span {
  display: inline-block;
  font-size: 1.2rem;
}
@media (width < 600px) {
  .schedule__table th {
    padding: 8px 5px;
  }
}
.schedule__table th,
.schedule__table td {
  background-color: #f3f3f3;
  vertical-align: middle;
}
.schedule__table tr {
  vertical-align: middle;
  text-align: center;
}
.schedule__table--top td {
  white-space: nowrap;
}

.table-subhead {
  color: #fff;
}
.table-subhead--1 {
  background-color: #85cde7 !important;
}
.table-subhead--2 {
  background-color: #49badd !important;
}
.table-subhead--3 {
  background-color: #008ac4 !important;
}

.specialty-doctor__title {
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.specialty-doctor__title::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background-color: #0f95c5;
  bottom: 0;
  left: 0;
}
.specialty-doctor__icon {
  margin-bottom: 10px;
}
.specialty-doctor__item {
  margin-top: clamp(30px, 5vw, 60px);
}
.specialty-doctor__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 0 15px 0 rgba(201, 201, 201, 0.3);
          box-shadow: 0 0 15px 0 rgba(201, 201, 201, 0.3);
}
@media (width < 1100px) {
  .specialty-doctor__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (width < 1100px) {
  .specialty-doctor__content--rev {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.specialty-doctor__content-item {
  width: 50%;
}
@media (width < 1100px) {
  .specialty-doctor__content-item {
    width: 100%;
  }
}
.specialty-doctor__content-text {
  padding: 20px 5%;
}

.doctor-detail {
  overflow-x: hidden;
  margin-bottom: 50px;
}
.doctor-detail__item {
  margin-top: clamp(20px, 3.5vw, 40px);
}
.doctor-detail__item h3 {
  padding-left: clamp(20px, 2.5vw, 30px);
  position: relative;
}
.doctor-detail__item h3::before {
  position: absolute;
  content: "Q";
  font-family: "メイリオ", sans-serif;
  top: 0;
  left: 0;
  color: #0f95c5;
}
.doctor-detail__content {
  position: relative;
}
.doctor-detail__content::before {
  position: absolute;
  content: "";
  top: 30px;
  right: -5%;
  height: 100%;
  width: 90%;
  background-color: #ebf2f5;
  z-index: -2;
}
.doctor-detail__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3vw;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (width < 1100px) {
  .doctor-detail__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.doctor-detail__image {
  width: calc(50% - 1.5vw);
  z-index: -1;
}
@media (width < 1100px) {
  .doctor-detail__image {
    width: 100%;
  }
}
.doctor-detail__career {
  width: calc(50% - 1.5vw);
  position: relative;
}
@media (width < 1100px) {
  .doctor-detail__career {
    width: 100%;
    margin-top: -25px;
  }
}
.doctor-detail__career h3 {
  font-size: clamp(5.2rem, 5.5vw, 6rem);
  line-height: 0.75;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding-bottom: clamp(20px, 3vw, 35px);
  display: inline-block;
  color: #0f95c5;
  font-family: "メイリオ", sans-serif;
}
.doctor-detail__career-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 10px;
  position: relative;
}
.doctor-detail__career-box dt {
  font-weight: 500;
  padding-right: 15px;
}
.doctor-detail__career-box dd {
  width: 72%;
}
@media (width < 600px) {
  .doctor-detail__career-box dd {
    width: 65%;
  }
}
.doctor-detail__list {
  padding-top: 50px;
}
.doctor-detail .textarea {
  white-space: pre-wrap;
}