@charset "UTF-8";
/*==============================================================================
# TOPページ共通css
==============================================================================*/
body {
  margin: 0;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

h2,
h3,
p {
  margin: 0;
}

.orange {
  color: #fa9a00;
}

.common__title-wrapper {
  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;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .common__title-wrapper {
    width: auto;
  }
}
@media (max-width: 768px) {
  .common__title-wrapper {
    gap: 8px;
    margin-bottom: 30px;
  }
}

.common__label {
  font-family: "Roboto Condensed", "Arial", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fa9a00;
  margin: 0;
  line-height: 1;
  font-style: normal;
}
@media (max-width: 768px) {
  .common__label {
    font-size: 16px;
  }
}

.common__title {
  font-family: "FOT-TsukuARdGothic_Std", "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #333;
  margin: 0;
  letter-spacing: 0.64px;
  line-height: 1.5;
  font-style: normal;
  word-break: auto-phrase;
}
@media (max-width: 768px) {
  .common__title {
    font-size: 24px;
  }
}

.common__label--center,
.common__title--cenetr {
  text-align: center;
}

.common__link-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 40px;
  background: #fa9a00;
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  max-width: 280px;
  width: 100%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  font-family: "FOT-TsukuARdGothic_Std", "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1;
  font-style: normal;
}
.common__link-button:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media (max-width: 768px) {
  .u-sp {
    display: block;
  }
}

.u-sp400 {
  display: none;
}
@media (max-width: 400px) {
  .u-sp400 {
    display: block;
  }
}

/*==============================================================================
# MV
==============================================================================*/
.mv {
  margin-top: 150px;
  position: relative;
}
@media (max-width: 768px) {
  .mv {
    margin-top: 80px;
  }
}

.mv__deco {
  position: absolute;
  inset: 0;
  overflow-x: clip;
  overflow-y: visible;
  pointer-events: none;
}

.mv__inner {
  width: 91.66667%;
  margin-inline: auto;
  position: relative;
}
.mv__inner::after {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40%;
  height: 100%;
  content: "";
  z-index: 1;
}

.mv__slider {
  position: relative;
  overflow: hidden;
}

.mv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-transition: opacity 4.5s ease;
  transition: opacity 4.5s ease;
  pointer-events: none;
  isolation: isolate;
}
.mv__slide img {
  border-radius: 60px;
}
@media (max-width: 768px) {
  .mv__slide img {
    border-radius: 30px;
  }
}

.mv__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.mv__slide:first-child {
  position: relative;
}

.mv__slide picture,
.mv__slide img {
  display: block;
  width: 100%;
}

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

.mv__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #f4b95b;
  mix-blend-mode: overlay;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
  border-radius: 60px;
}
@media (max-width: 768px) {
  .mv__slide::after {
    border-radius: 30px;
  }
}

.mv__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(60%, rgba(255, 255, 255, 0)), color-stop(82%, rgb(255, 255, 255)), to(rgb(255, 255, 255)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 60%, rgb(255, 255, 255) 82%, rgb(255, 255, 255) 100%);
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 1024px) {
  .mv__slide::before {
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0)), color-stop(80%, rgb(255, 255, 255)), to(rgb(255, 255, 255)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgb(255, 255, 255) 80%, rgb(255, 255, 255) 100%);
  }
}
@media (max-width: 768px) {
  .mv__slide::before {
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0)), color-stop(85%, rgb(255, 255, 255)), to(rgb(255, 255, 255)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgb(255, 255, 255) 85%, rgb(255, 255, 255) 100%);
  }
}

.mv__slide picture {
  position: relative;
  z-index: 0;
}

@media (max-width: 768px) {
  .mv__slide img {
    width: 84.35897vw;
    left: 0;
    position: relative;
    height: 92.3077vw;
  }
}
.mv__copy {
  position: absolute;
  right: 0;
  z-index: 2;
  width: 12.575758vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-block: 0;
}
@media (max-width: 1024px) {
  .mv__copy {
    right: 2vw;
  }
}
@media (max-width: 768px) {
  .mv__copy {
    right: 1.25vw;
    width: 22vw;
  }
}

.mv__copy picture,
.mv__copy img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgb(255, 248, 237) 0%, rgb(255, 248, 237) 40%, rgba(255, 248, 237, 0) 60%);
  mix-blend-mode: multiply;
}

/* 個別指定 */
.c1 {
  width: clamp(120px, 20vw, 223px);
  height: clamp(120px, 20vw, 223px);
  top: -10px;
  left: -40px;
  z-index: 0;
}

.c2 {
  width: clamp(120px, 20vw, 223px);
  height: clamp(120px, 20vw, 223px);
  top: -4vw;
  right: -4vw;
  z-index: 2;
}

.c3 {
  width: 20vw;
  height: 20vw;
  bottom: clamp(-100px, -69.44444vw, -223px);
  right: 16vw;
  z-index: 2;
}
@media (max-width: 768px) {
  .c3 {
    bottom: -10vw;
    width: 28vw;
    height: 28vw;
  }
}

.c4 {
  width: 12vw;
  height: 12vw;
  top: 0px;
  right: 16vw;
  z-index: 2;
}
@media (max-width: 768px) {
  .c4 {
    display: none;
  }
}

/*==============================================================================
# top-message
==============================================================================*/
.top-message {
  padding-block: 100px;
  position: relative;
}
@media (max-width: 768px) {
  .top-message {
    padding-block: 60px;
  }
}
.top-message::before {
  position: absolute;
  background: url(../../img/top/message_bg.webp) no-repeat center center/cover;
  left: 0;
  top: -7vw;
  width: 50vw;
  height: 50vw;
  content: "";
  z-index: -1;
}
@media (max-width: 768px) {
  .top-message::before {
    width: 80vw;
    height: 80vw;
  }
}

.top-message__inner {
  width: 92%;
  margin-left: auto;
}

.top-message__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4%;
}
@media (max-width: 768px) {
  .top-message__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .top-message__texts {
    margin-right: 8%;
  }
}

.message__subtitle {
  font-size: 24px;
  font-family: "FOT-TsukuARdGothic_Std", "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .message__subtitle {
    font-size: 18px;
  }
}

.top-message__img img {
  width: 100%;
  height: auto;
  border-radius: 20px 0 0 20px;
}

.top-carousel {
  padding-block: 80px;
}
@media (max-width: 768px) {
  .top-carousel {
    padding-top: 50px;
    padding-bottom: 0;
  }
}

.top-swiper .swiper-slide {
  width: 400px;
}
@media (max-width: 1024px) {
  .top-swiper .swiper-slide {
    width: 340px;
  }
}
@media (max-width: 768px) {
  .top-swiper .swiper-slide {
    width: 280px;
  }
}
@media (max-width: 480px) {
  .top-swiper .swiper-slide {
    /* width: 240px; */
    width: 48%;
  }
}

.top-swiper img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.top-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

/*==============================================================================
# top-visit-guide
==============================================================================*/
.top-visit-guide {
  position: relative;
  padding-block: 80px;
}
@media (max-width: 768px) {
  .top-visit-guide {
    padding-block: 40px;
  }
}
.top-visit-guide::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../../img/top/top-visit-guide_bg.webp) no-repeat center center/cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.top-visit-guide__inner {
  padding-inline: 20px;
}

.top-visit-guide__content {
  max-width: 1000px;
  margin-inline: auto;
  background: #fff;
  border-radius: 20px;
  padding: 60px;
}
@media (max-width: 768px) {
  .top-visit-guide__content {
    padding: 24px;
  }
}

.top-visit-guide__content p {
  margin: 1em 0;
}

.top-visit-guide__title {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  color: #333;
  margin: 0;
  letter-spacing: 0.64px;
  line-height: 1.5;
  font-style: normal;
  word-break: auto-phrase;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .top-visit-guide__title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

.top-visit-guide__text-link {
  color: #fa9a00;
  text-decoration: underline;
  font-weight: 700;
}

/*==============================================================================
# examination details
==============================================================================*/
.top-examination-details {
  padding-block: 100px;
}
@media (max-width: 768px) {
  .top-examination-details {
    padding-block: 60px;
  }
}

.top-examination-details__inner {
  max-width: 1150px;
  margin-inline: auto;
  padding-inline: 20px;
}

.top-examination-details__block {
  font-family: "FOT-TsukuARdGothic_Std", "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.top-examination-details__block + .top-examination-details__block {
  margin-top: 48px;
}
.top-examination-details__block h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 1em;
}
.top-examination-details__block h3 img {
  width: 32px;
  height: auto;
}
.top-examination-details__block h3 span {
  color: #fa9a00;
  font-weight: 700;
  font-size: 22px;
}
@media (max-width: 768px) {
  .top-examination-details__block h3 span {
    font-size: 20px;
  }
}

.top-examination-details__desc {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .top-examination-details__desc {
    font-size: 16px;
  }
}

.top-examination-details__box {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.top-examination-details__link {
  background: #f9f9f9;
  text-decoration: none;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #f9f9f9;
  border: 1px solid #ededed;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  gap: 4px;
}
@media (max-width: 768px) {
  .top-examination-details__link {
    padding: 12px 16px;
  }
}
@media (any-hover: hover) {
  .top-examination-details__link:hover {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
}
.top-examination-details__link span {
  font-weight: 700;
}

/*==============================================================================
# top-feature
==============================================================================*/
.top-feature {
  position: relative;
  z-index: 0;
  padding-block: 100px;
}
@media (max-width: 768px) {
  .top-feature {
    padding-block: 60px;
  }
}
.top-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../../img/top/wave_bg.jpg) no-repeat center center/cover;
  opacity: 0.4;
  z-index: -1;
}

.top-feature__items {
  display: grid;
  gap: 80px;
}
@media (max-width: 768px) {
  .top-feature__items {
    gap: 56px;
  }
}

.top-feature__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6%;
}
@media (max-width: 768px) {
  .top-feature__block {
    gap: 16px;
  }
}
.top-feature__block img {
  width: 100%;
  height: auto;
  display: block;
}

.top-feature__block01 {
  margin-left: auto;
}
@media (max-width: 768px) {
  .top-feature__block01 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .top-feature__block01 .top-feature__texts {
    margin-right: 10%;
    width: 100%;
  }
}

.top-feature__block02 {
  margin-inline: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .top-feature__block02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.top-feature__block03 {
  margin-inline: auto;
}
@media (max-width: 768px) {
  .top-feature__block03 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.top-feature__block03 img {
  width: 30vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .top-feature__block03 img {
    width: 100%;
  }
}

.top-feature__block04 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .top-feature__block04 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .top-feature__block04 .top-feature__texts {
    margin-left: 10%;
    width: 100%;
  }
}

.top-feature__texts h3 {
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-family: "FOT-TsukuARdGothic_Std", "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media (max-width: 768px) {
  .top-feature__texts h3 {
    font-size: 20px;
  }
}
.top-feature__texts h3 span {
  font-weight: 700;
}
.top-feature__texts p {
  margin-top: 32px;
}
@media (max-width: 768px) {
  .top-feature__texts p {
    margin-top: 1em;
  }
}

.top-feature__num {
  font-size: 64px;
  line-height: 1;
  font-family: "Roboto Condensed", "Arial", sans-serif;
}
@media (max-width: 768px) {
  .top-feature__num {
    font-size: 56px;
  }
}

.top-feature__block01 .top-feature__num,
.top-feature__block03 .top-feature__num,
.top-feature__block05 .top-feature__num {
  color: #fa9a00;
}

.top-feature__block02 .top-feature__num,
.top-feature__block04 .top-feature__num {
  color: #fff;
  color: #fff;
  text-shadow: 1px 0 0 #fa9a00, -1px 0 0 #fa9a00, 0 1px 0 #fa9a00, 0 -1px 0 #fa9a00, 1px 1px 0 #fa9a00, -1px 1px 0 #fa9a00, 1px -1px 0 #fa9a00, -1px -1px 0 #fa9a00;
}

/* 5つ目だけ別レイアウト */
.top-feature__block05 {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 460px;
  margin-left: auto;
}
@media (max-width: 1240px) {
  .top-feature__block05 {
    margin-bottom: 60px;
    min-height: 300px;
  }
}
@media (max-width: 1024px) {
  .top-feature__block05 {
    margin-bottom: 100px;
  }
}
@media (max-width: 480px) {
  .top-feature__block05 {
    margin-bottom: 95px;
  }
}
.top-feature__block05 h3 {
  display: block;
}
.top-feature__block05 h3 span {
  display: block;
}

.top-feature__block05 .top-feature__img {
  width: 76.38889vw;
  margin-left: auto;
}
@media (max-width: 768px) {
  .top-feature__block05 .top-feature__img {
    height: -webkit-fill-available;
    height: -moz-available;
    height: stretch;
  }
}

.top-feature__block05 .top-feature__img img {
  width: 100%;
  display: block;
}

.top-feature__block05 .top-feature__texts {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50vw;
  padding: 60px 60px 60px 120px;
  background: #fff;
  border-radius: 0 20px 20px 0;
  z-index: 2;
}
@media (max-width: 1240px) {
  .top-feature__block05 .top-feature__texts {
    padding: 48px 48px 48px 80px;
    -webkit-transform: none;
            transform: none;
    top: auto;
    bottom: -60px;
    padding: 3.87vw 3.87vw 3.87vw 6.45vw;
    width: 60vw;
  }
}
@media (max-width: 1024px) {
  .top-feature__block05 .top-feature__texts {
    bottom: -100px;
  }
}
@media (max-width: 768px) {
  .top-feature__block05 .top-feature__texts {
    padding: 4.167vw 4.167vw 4.167vw 8.333vw;
    width: 70vw;
  }
}
@media (max-width: 480px) {
  .top-feature__block05 .top-feature__texts {
    bottom: -95px;
    width: 80vw;
  }
}

/*==============================================================================
# top-news
==============================================================================*/
.top-news {
  padding-block: 100px;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff5e5));
  background: linear-gradient(to bottom, #fff, #fff5e5);
}
@media (max-width: 768px) {
  .top-news {
    padding-block: 60px;
  }
}

.top-news__inner {
  max-width: 800px;
  margin: 0 auto;
  padding-inline: 20px;
}

.top-news__label {
  color: #fa9a00;
  font-weight: 600;
  margin-bottom: 8px;
}

.top-news__title {
  font-size: 32px;
  margin-bottom: 40px;
}

.top-news__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: #f4f4f4;
}

.top-news__tab {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 16px 8px;
  font-weight: 600;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #333;
}

.top-news__tab.is-active {
  background: #fa9a00;
  color: #fff;
}

.top-news__box {
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: 30px;
  text-align: left;
}
@media (max-width: 768px) {
  .top-news__box {
    padding: 20px;
  }
}

.top-news__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.top-news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  border-bottom: 1px solid #eee;
}

.top-news__item:last-child {
  border-bottom: none;
}

.top-news__date {
  font-size: 12px;
}

.top-news__category {
  border: 1px solid #fa9a00;
  color: #fa9a00;
  padding: 3px 14px;
  border-radius: 20px;
  font-size: 12px;
  background: #fff;
  margin-left: 16px;
}

.top-news__link {
  color: #333;
  text-decoration: none;
  padding: 16px 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 3%;
}
@media (any-hover: hover) {
  .top-news__link:hover {
    background: #fff5e5;
  }
}
@media (max-width: 800px) {
  .top-news__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
}

.top-news__link-info {
  width: 30%;
}
@media (max-width: 800px) {
  .top-news__link-info {
    width: auto;
  }
}

.top-news__link-title {
  width: 67%;
}
@media (max-width: 800px) {
  .top-news__link-title {
    width: auto;
  }
}

.top-news__btn-wrap {
  margin-top: 40px;
}

/*==============================================================================
# calendar
==============================================================================*/
.calendar {
  padding: 100px 0;
  background: #fffbe8;
}
@media (max-width: 768px) {
  .calendar {
    padding-block: 60px;
  }
}

.calendar__inner {
  max-width: 1118px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.calendar__title-wrapper {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 3px 0 4px;
}

.calendar__label {
  font-family: "Roboto Condensed", "Arial", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fa9a00;
  margin: 0;
  line-height: 1;
  font-style: normal;
}

.calendar__title {
  font-family: "FOT-TsukuARdGothic_Std", "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #333;
  margin: 0;
  letter-spacing: 0.64px;
  line-height: 1;
  font-style: normal;
  word-break: auto-phrase;
}

.calendar__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.calendar__container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.calendar__month {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  min-height: 349px;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.calendar__month-title {
  font-family: "FOT-TsukuARdGothic_Std", "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  color: #333;
  margin: 0;
  text-align: center;
  line-height: 1;
  font-style: normal;
  word-break: auto-phrase;
  font-size: 20px;
  margin-bottom: 24px;
}

.calendar__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.calendar__th {
  padding-bottom: 16px;
  border-bottom: 1px solid #f4f4f4;
  text-align: center;
  font-family: "FOT-TsukuARdGothic_Std", "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #333;
  width: auto;
  min-width: 20px;
  line-height: 1;
  font-style: normal;
}

.calendar__td {
  text-align: center;
  font-family: "FOT-TsukuARdGothic_Std", "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #333;
  width: auto;
  min-width: 20px;
  position: relative;
  line-height: 1.5;
  font-style: normal;
  vertical-align: middle;
}

.calendar__day {
  position: relative;
  z-index: 1;
  font-family: "FOT-TsukuARdGothic_Std", "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  font-style: normal;
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.calendar__td--closed .calendar__day {
  background: #ffb236;
}

.calendar__td--half .calendar__day {
  background: #ffd700;
}

.calendar__td--special .calendar__day {
  background: #ffb236;
}

.calendar__tbody .calendar__tr {
  height: auto;
}

.calendar__tbody .calendar__td {
  padding: 6px 0;
}

.calendar__tr:first-child .calendar__td {
  padding-top: 12px;
}

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

.calendar__legend-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.calendar__legend-icon {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.calendar__legend-icon--closed {
  background: #ffb236;
}

.calendar__legend-icon--half {
  background: #ffd700;
}

.calendar__legend-text {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #333;
  margin: 0;
  line-height: normal;
  font-style: normal;
}

/*==============================================================================
# responsive
==============================================================================*/
@media (max-width: 1024px) {
  .top-examination-details__box {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .top-feature__block01 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .top-examination-details__box {
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }
  .calendar {
    padding: 60px 0;
  }
  .calendar__title-wrapper {
    gap: 8px;
  }
  .calendar__label {
    font-size: 16px;
  }
  .calendar__title {
    font-size: 24px;
  }
  .calendar__inner {
    gap: 40px;
  }
  .calendar__content {
    gap: 30px;
  }
  .calendar__container {
    -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;
  }
  .calendar__month {
    padding: 20px;
    width: 100%;
    max-width: 500px;
    min-height: 309px;
  }
  .calendar__table-wrapper {
    overflow-x: auto;
  }
}

/*==============================================================================
# Banner list 20260720
==============================================================================*/
.fp-banners {
  padding: 100px 0;
}
@media (max-width: 400px) {
  .fp-banners {
    padding: 60px 0;
  }
}
.fp-banners__list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  list-style-type: none;
  margin: 0 auto;
  max-width: 1118px;
  padding: 0 20px;
}
.fp-banners__list img {
  object-fit: contain;
  width: 100%;
}
@media (max-width: 1024px) {
  .fp-banners__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .fp-banners__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .fp-banners__list {
    grid-template-columns: 11fr;
  }
}