@charset "UTF-8";

/* ---------------------
  - *基本設定
  - *アニメーション
  - *タイトル
  - *メインビジュアル
  - *医院概要
  - *ご挨拶
  - *診療案内
  - *当院の特徴
  - *医療コラム
--------------------- */
/* ==================================================================================================================================

  *基本設定

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.front {
  overflow: hidden;
}

section .inner {
  padding: 100px 0;
}

.text > *:not(:last-child) {
  margin-bottom: 2em;
}

/* ----- パララックス ----- */
.parallax {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
}

/* 切り抜く範囲 */
.parallax_img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}

/* 固定する画像 */
.parallax_img::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  section .inner {
    padding: 70px 20px;
  }

  /* ----- パララックス ----- */
  .parallax {
    height: 300px;
  }
}

/* ==================================================================================================================================

  *アニメーション

================================================================================================================================== */
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes zoomInAnime {
  from {
    pointer-events: none;
    transform: scale(0.5);
  }

  to {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomOutAnime {
  from {
    pointer-events: none;
    transform: scale(1);
  }

  to {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1.5);
  }
}
@keyframes scrolldown {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.fadeUp,
.zoomOut,
.zoomIn,
.fadeRight,
.fadeLeft {
  opacity: 0;
}

.fadeUp.is-active {
  animation: fadeUpAnime 1s forwards;
}

.fadeRight.is-active {
  animation: fadeRightAnime 1s forwards;
}

.fadeLeft.is-active {
  animation: fadeLeftAnime 1s forwards;
}

.zoomIn.is-active {
  animation: zoomInAnime 0.8s forwards;
}

.zoomOut.is-active {
  animation: zoomOutAnime 1s forwards;
}

/* ==================================================================================================================================

  *タイトル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.top_title {
  margin-bottom: 50px;
  line-height: 1.5;
  text-align: center;

  /* 左寄せ */
}

.top_title.title_left {
  text-align: start;
}

.top_title h2 {
  font-size: 220%;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7;
}

.top_title .eng {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--main-color);
  font-size: 150%;
  font-family: var(--font-type-en);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .top_title {
    margin-bottom: 40px;
  }

  .top_title h2 {
    margin: 5px 0 0;
    font-size: 26px;
    font-family: var(--font-type);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }

  .top_title .eng {
    font-size: 18px;
    font-family: var(--font-type-en);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }
}

/* ==================================================================================================================================

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.mainvisual {
  position: relative;
  z-index: 1;
  height: 800px;
  overflow: hidden;
}

.mvSlider {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

/* ----- スライダーのArrowボタン ----- */
.mvSlider .sliderBtn {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
}

.mvSlider .sliderBtn#mv_btnPrev {
  left: 20px;
}

.mvSlider .sliderBtn#mv_btnNext {
  right: 20px;
}

.mvSlider .sliderBtn span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  border-radius: 50%;
  transition: background 0.2s;
}

.mvSlider .sliderBtn span:hover {
  background: var(--text-color);
}

.mvSlider .sliderBtn span::before {
  padding: 0 0 1px 0;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  color: #ffffff;
  font-size: 15px;
  transition: color 0.2s;
}

.mvSlider .sliderBtn#mv_btnPrev span::before {
  content: "\f060";
}

.mvSlider .sliderBtn#mv_btnNext span::before {
  content: "\f061";
}

/* 各スライダーのボタンは非表示に */
.mvSlider .splide__arrows {
  display: none;
}

/* ----- MVの画像 ----- */
.mvImg {
  width: 100%;
  height: 100%;
}

.mvImg .splide__track {
  width: 100%;
  height: 100%;
}

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

.mvImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* フェードの専用スタイル */
.fade .mvImg .splide__slide img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: calc(100% + 50px);
  pointer-events: none;
}

/* アニメーションを実行 */
/*
.fade.move .mvImg .splide__slide img {
  animation: hideTranslate 8s ease-out forwards;
}

.fade.move .mvImg .splide__slide.is-active img {
  animation: showTranslate 8s ease-out forwards;
}
*/

/* MVのアニメーション  */
/*
@keyframes showTranslate {
  0% {
    transform: translate3d(0, 0px, 0);
  }

  100% {
    transform: translate3d(0, -30px, 0);
  }
}
@keyframes hideTranslate {
  0% {
    transform: translate3d(0, -30px, 0);
  }

  100% {
    transform: translate3d(0, 0px, 0);
  }
}
*/

/* ----- キャッチコピー ----- */
.mvCatch {
  position: absolute !important;
  top: 40%;
  left: 0;
  z-index: 3;
  width: 100%;
  transform: translateY(-50%);
}

.mvCatch .inner {
  position: relative;
  z-index: 1;
}

.mvCatch p {
  font-size: 220%;
  filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff);
}

/* ----- コンテンツ ----- */
.mvContents {
  position: absolute !important;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.mvContents .inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.mvContents .splide__track {
  width: 100%;
  height: 100%;
}

/* ----- 開院バナー ----- */
.open_bnr {
  position: absolute;
  bottom: 50px;
  display: inline-block;
  padding: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 280px;
  padding: 15px;
  background: var(--main-color);
  border-radius: 50%;
  color: #ffffff;
  font-size: 110%;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-align: center;
}

.open_bnr .date {
  font-size: 110%;
}

.open_bnr .open_text {
  margin: 0 0 10px;
  font-size: 180%;
}

.open_bnr .nairankai_tit {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  padding: 5px 10px;
  background: #ffffff;
  border-radius: 300px;
  color: var(--main-color);
  font-size: 90%;
  text-align: center;
}

/* サブカラー */
.open_bnr.subcolor > * {
  background: var(--sub-color);
}

.open_bnr.subcolor > * .nairankai_tit {
  color: var(--sub-color);
}

/* ---------- MV上のアイコン ---------- */
.mv_icon_wrap {
  position: absolute;
  left: 0;
  bottom: 20px;
  display: flex;
  gap: 12px;
}

.mv_icon {
  position: relative;
  padding: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.mv_icon_wrap .mv_bnr_item {
  /* position: relative; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 210px;
  aspect-ratio: 1 / 1 !important;
  background:  var(--main-color);
  border-radius: 50%;
  opacity: 0.9;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7;
  transition: 0.2s;
}

.mv_icon_wrap .mv_bnr_item::after {
  position: absolute;
  content: "";
  width: 85px;
  height: 100px;
  top: 60%;
  left: 62px;
  transform: translate(-50%, -50%);
  background: url(../images/common/mv_bg_mark.svg) no-repeat center / 100%;
  opacity: 0.7;
}

.mv_icon_wrap .mv_bnr_item:hover {
  opacity: 0.8;
}

.mv_icon_wrap .mv_bnr_item span {
  /* position: relative; */
  display: block;
  /* margin: 20px 0 4px; */
  color: #fff;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 500;
  font-size: 100%;
  line-height: 1.5;
  text-align: center;
  z-index: 1;
  transform: translateY(25%);
}

.mv_icon_wrap .mv_bnr_item span i {
  display: block;
  position: absolute;
  top: -45px;
  left: 0;
  right: 0;
  margin: 0 auto 4px;
  color: var(--bg-color);
  font-style: normal;
  font-size: 205%;
  font-weight: 600;
  line-height: 1.2;
}

.mv_icon_wrap .mv_bnr_item span em {
  display: inline-block;
  margin: 0 2px;
  color: #fff;
  font-style: normal;
  font-size: 115%;
  font-weight: 600;
  line-height: 1.5;
}

.mv_icon_wrap .mv_bnr_item .bnr_btn {
  position: absolute;
  bottom: 30px;
  font-size: 90%;
  letter-spacing: .06em;
  padding: 5px 28px 7px 0;
  z-index: 3;
}

.mv_icon_wrap .mv_bnr_item .bnr_btn::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 21px;
  height: 21px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s;
}

.mv_icon_wrap .mv_bnr_item:hover .bnr_btn::before,
.mv_icon_wrap .mv_bnr_item:hover .bnr_btn::after {
  transform: translateY(-50%) translateX(10px);
}

.mv_icon_wrap .mv_bnr_item .bnr_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 11px;
  display: block;
  width: 14px;
  height: 7px;
  background-color: var(--main-color);
  /* mask: url(../images/btn_arrow.png) center center / cover no-repeat; */
  -webkit-mask: url(../images/btn_arrow.png) no-repeat center / cover;
  mask: url(../images/btn_arrow.png) no-repeat center / cover;
  transform: translateY(-50%);
  transition: 0.2s;
}

/* ----- スマホ専用エリア ----- */
.sp_only {
  display: none;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 400px;
  }

  /* ----- スライダーのArrowボタン ----- */
  .mvSlider .sliderBtn {
    top: 50%;
    width: 40px;
    height: 40px;
    padding: 2px;
    font-size: 12px;
  }

  .mvSlider .sliderBtn#mv_btnPrev {
    left: 10px;
  }

  .mvSlider .sliderBtn#mv_btnNext {
    right: 10px;
  }

  .mvSlider .sliderBtn span::before {
    font-size: 11px;
  }

  /* ----- キャッチコピー ----- */
  .mvCatch {
    top: auto;
    bottom: 20px;
    display: none;
  }

  .mvCatch.is-active {
    display: block;
  }

  .mvCatch p {
    font-size: 130%;
    line-height: 1.75;
    filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff);
  }

  /* ----- コンテンツ ----- */
  .mvContents {
    display: none;
  }

  /* ----- 開院バナー ----- */
  .open_bnr {
    position: static;
    width: 100%;
    max-width: 350px;
    border-radius: 0;
  }

  .open_bnr > * {
    width: 100%;
    height: auto;
    padding: 15px 20px;
    border-radius: 0;
    font-family: var(--font-type);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }

  /* ----- MV上のアイコン ----- */
  .mv_icon_wrap {
    position: static;
    bottom: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    height: max-content;
    padding: 0;
    margin: 0 auto 20px;
  }

  /* 角丸で囲んだ枠 */
  .mv_icon {
    width: 50%;
    height: 136px;
    min-width: 250px;
    aspect-ratio: unset;
    padding: 5px;
    background: rgb(204 168 111 / 45%);
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mv_icon_wrap .mv_bnr_item {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    font-family: var(--font-type);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.7;
    font-size: min(3.1vw, 25px) !important;
  }

  .mv_icon_wrap .mv_bnr_item span {
    color: #fff;
    font-family: var(--font-type);
    font-style: normal;
    font-weight: 500;
    font-size: min(4vw, 28px);
    line-height: 1.5;
    text-align: center;
    transform: none;
  }

  .mv_icon_wrap .mv_bnr_item span em {
    font-style: normal;
    font-size: min(5vw, 18px);
    font-weight: 600;
    line-height: 1.5;
  }

  .mv_icon_wrap .mv_bnr_item .bnr_btn {
    font-size: min(2.8vw, 22px);
    letter-spacing: 0.06em;
  }

  /* アイコン：規定のmin()でサイズ指定 */
  .mv_icon_wrap .mv_bnr_item .fa-solid,
  .mv_icon_wrap .mv_bnr_item .fa-regular {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: min(10vw, 40px);
    height: min(10vw, 40px);
    font-size: min(5vw, 20px) !important;
    margin-bottom: min(1.7vw, 13px);
  }

  .mv_icon_wrap .mv_bnr_item::after {
    top: auto;
    bottom: 0;
    left: 40px;
    transform: translate(-50%, 0);
  }
  /* ----- スマホ専用エリア ----- */
  .sp_only {
    display: block;
    background: none !important;
  }

  .sp_only .inner {
    padding: 0 20px;
  }

  .sp_only_contents {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
}

/*==================================================================================================================================

  *医院概要（パターン02）

==================================================================================================================================*/
.clinic {
  position: relative;
  z-index: 1;
}

/* ----- お知らせ ----- */
.clinic .news {
  position: relative;
  z-index: 3;
}

.clinic .news .inner {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 80px 0;
}

.clinic .info .inner:before {
  content: "";
  position: absolute;
  top: -148px;
  left: 80%;
  z-index: 6;
  width: 83px;
  height: 103px;
  background: url(../images/front/clinic_bird01.png) no-repeat center / 100% auto;
  /* transform: translateX(-50%); */
  pointer-events: none;
}

.clinic .info .inner::after {
  content: "";
  position: absolute;
  top: -148px;
  left: 90%;
  z-index: 6;
  width: 120px;
  height: 135px;
  background: url(../images/front/clinic_bird02.png) no-repeat center / 100% auto;
  /* transform: translateX(-50%); */
  pointer-events: none;
}

.clinic .news .news_left {
  flex-shrink: 0;
}

.clinic .news .top_title {
  margin: 0 0 30px;
}

.clinic .news .btn01 {
  margin-top: 30px;
  text-align: center;
}

/* ----- 医院概要 ----- */
.clinic .info {
  position: relative;
  z-index: 1;
  background-color: var(--bg-color);
  padding: 50px 0 calc(80px + 87px);
  z-index: 2;
}

.clinic .info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: 100%;
  height: 87px;
  background: url(../images/front/clinic_bg_wave.png) no-repeat center top 2px / 1920px auto;
  transform: translate(-50%, -100%);
  pointer-events: none;
}

.clinic .info::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 866px;
  background: url(../images/front/clinic_bg_bt.png) no-repeat center bottom / 100% auto;
  pointer-events: none;
}

.clinic .info .inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
  padding: 60px 50px;
  background-color: #fff;
  border-radius: 20px;
}

.clinic .info .inner > * {
  width: calc(50% - 20px);
}

.clinic .info address > * {
  position: relative;
  z-index: 1;
  min-height: 40px;
}

.clinic .info address > *::before {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0 0 0 2px;
  background: var(--main-color);
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 16px;
}

.clinic .info address .location {
  padding: 5px 0 5px 50px;
}

.clinic .info address .location::before {
  content: "\f3c5";
}

.clinic .info address .location .zipcode {
  margin-right: 10px;
}

.clinic .info address .tel {
  margin-top: 15px;
  padding: 3px 0 7px 50px;
  font-size: 30px;
  font-family: var(--font-type-en);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
}

.clinic .info address .tel::before {
  content: "\f3cd";
}

.clinic .info address .fax {
  margin-top: 15px;
  padding: 5px 0 5px 50px;
  color: var(--main-color) !important;
  font-size: 30px;
  font-family: var(--font-type-en);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
}

.clinic .info address .fax::before {
  content: "\f249";
}

.clinic .info address .note {
  margin-top: 20px;
  padding-left: 12px;
  font-size: 90%;
}

.note dl {
  display: flex;
  flex-wrap: wrap;
}

.note dt {
  width: 15%;
  font-family: var(--font-type);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
}

.note dd {
  width: 85%;
  line-height: 1.5;
}


.clinic .info .speciality {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px auto 0;
  padding: 20px;
  background: var(--bg-color);
  border-radius: 10px;
}

.clinic .info .speciality .title {
  flex-shrink: 0;
  width: fit-content;
  padding: 10px 30px;
  background: var(--main-color);
  border-radius: 100vh;
  color: #ffffff;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-align: center;
}

.clinic .info .office_hour:first-child {
  margin-top: 30px;
}

.clinic .info .list_access {
  margin-top: 5px;
}

.clinic .info .calendar_text {
  margin-top: 20px;
}

.clinic .info .btn01 {
  margin-top: 30px;
  text-align: center;
}

.clinic .info .googlemap iframe {
  height: 350px;
}

@media screen and (max-width: 640px) {
  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 60px 20px;
  }

  .clinic .info {
    padding: 50px 4% calc(80px + 87px);
  }

  .clinic .info::before {
    top: 0;
    left: 50%;
    width: 100vw;
    height: min(20vw, 90px);
    background: url(../images/front/clinic_sp_bg_wave.png) no-repeat center bottom / 768px auto;
    transform: translate(-50%, -100%);
    pointer-events: none;
  }

  .clinic .info .inner {
    flex-flow: column;
    padding: 40px 20px;
  }

  .clinic .info .inner:before {
    top: -131px;
    left: 0;
    background-size: 90% !important;
  }

  .clinic .info .inner::after {
    top: -112px;
    left: unset;
    right: 0;
    background-size: 50% !important;
  }

  .clinic .info .inner > * {
    width: 100%;
  }

  .clinic .info .speciality {
    flex-flow: column;
    gap: 10px;
    padding: 10px;
  }

  .clinic .info .speciality .title {
    width: 100%;
    font-family: var(--font-type);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }
  
  .office_hour .closed {
    padding-bottom: 7px;
  }

  .note dt {
    width: 100%;
    line-height: 1;
    padding-bottom: 5px;
  }

  .note dd {
    width: 100%;
    line-height: 1.8;
  }

  .note dd span{
    display: none;
  }
  /* .clinic .info address .location .zipcode{
    display: block;
  } */
}

/* ==================================================================================================================================

  *ご挨拶（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting {
  position: relative;
  z-index: 1;
  background: url(../images/front/greeting_green_l_top.png) no-repeat left top / 609px auto,url(../images/front/greeting_green_r_bt.png) no-repeat right bottom / 1018px auto,#fff;
  overflow: hidden;
}

.greeting_box {
  position: relative;
  z-index: 1;
}

.greeting_flex {
  display: flex;
  gap: 50px;
}

.greeting_box:not(:last-child) {
  margin-bottom: 70px;
}

.greeting_left {
  flex-shrink: 0;
  width: 60%;
}

.greeting_text > *:not(:last-child) {
  margin-bottom: 2em;
}

.greeting_text .catchcopy {
  color: var(--text-color);
  font-family: var(--font-type);
  font-size: 155%;
  font-style: normal;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.1em;
}


.greeting_text .catchcopy i  {
  margin: 0 3px 0 0;
  color: var(--sub-color);
  font-size: 130%;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.greeting_text .catchcopy span  {
  color: var(--main-color);
  margin: 0 3px;
  font-size: 120%;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.greeting_left p {
  font-feature-settings: "palt";
  font-style: normal;
  letter-spacing: 0.2em;
  line-height: 2.3;
}

.greeting_right {
  position: relative;
  z-index: 1;
}

.greeting_right::before {
  content: "";
  position: absolute;
  bottom: -59px;
  right: 0;
  width: 108px;
  height: 141px;
  background: url(../images/front/greeting_bird.png) no-repeat right top / 108px auto;
  z-index: -1;
  opacity: 0.5;
}

.greeting_img img {
  border-radius: 10px;
}

.greeting_profile {
  padding: 10px 0 0;
  /* background: var(--main-color); */
  color: var(--text-color);
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-align: center;
}

.greeting_profile .position {
  font-size: 130%;
}

.greeting_profile .name {
  font-size: 150%;
}

.greeting_btn {
  margin-top: 50px;
  text-align: center;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .greeting {
    background-size: 80%;
  }

  .greeting_flex {
    flex-flow: column-reverse;
    gap: 25px;
  }

  .greeting_left {
    width: 100%;
    padding: 50px 0 0;
  }

  .greeting_text .catchcopy {
    font-size: min(4.8vw, 25px);
  }

  .greeting_right::before {
    bottom: -120px;
    right: calc(50% - 180px);
    background-size: 80%;
  }

  .greeting_btn {
    margin-top: 40px;
  }

  .greeting_img {
    text-align: center;
  }
  .greeting_profile {
    width: fit-content;
    margin: auto;
  }  
}

/* ==================================================================================================================================

  *診療案内（スタンダード）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
  background: linear-gradient(rgb(245 251 249 / 80%), rgb(245 251 249 / 60%)), url(../images/common/dmy.jpg) no-repeat center / cover;
}

.medical .top_title {
  color: var(--text-color-gray);
}

.medical .top_title span {
  color: var(--main-color);
  font-family: var(--font-type-en);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7;
}

.medical_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 20px;
}

.medical_item {
  position: relative;
  z-index: 1;
  width: calc(25% - 15px);
  height: auto;
}

.medical_item:hover {
  transform: translateY(-10px);
}

/* 準備中
 * ・3番目 … front.css の (3) の数字のみ変更（公開時はセレクタから該当行を削除）
 * ・任意 … HTML に class="medical_item coming" を付与しても同じ見た目
 */
.medical_item.coming {
  pointer-events: none;
  cursor: default;
}

.medical_item.coming:hover{
  transform: none;
}

.medical_item.coming::before{
  content: "準備中";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  color: #ffffff;
  transform: translate(-50%, -50%);
}

.medical_img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  transition: background 0.2s;
}

.medical_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.medical_inner {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 30px 20px 40px;
  border-radius: 10px;
  text-align: center;
}

.medical_item:nth-of-type(odd) .medical_inner {
  background-color: var(--bg-color);
}

.medical_item:nth-of-type(even) .medical_inner {
  background-color: var(--bg-color-orange);
}

.medical_inner::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 48px;
  height: 48px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transition: width 0.2s ease, height 0.2s ease, clip-path 0.2s ease;
}

.medical_item:nth-of-type(odd) .medical_inner::after {
  background-color: var(--main-color);
}

.medical_item:nth-of-type(even) .medical_inner::after {
  background-color: var(--sub-color);
}

.medical_item:nth-of-type(odd):hover .medical_inner::after,
.medical_item:nth-of-type(even):hover .medical_inner::after {
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.medical_inner > * {
  position: relative;
  z-index: 1;
}

.medical_inner > *:not(:last-child) {
  margin-bottom: 15px;
}

.medical_icon {
  width: 100%;
  max-width: 105px;
  margin: 0 auto 15px !important;
  padding: 20px;
  background-color: var(--bg-color-dark);
  border: 3px solid #fff;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}

.medical_title h3 {
  color: var(--text-color);
  font-size: 120%;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7;
  transition: color 0.2s;
}

.medical_item:hover .medical_title h3 {
  color: #fff;
}

.medical_item:nth-of-type(odd):hover .medical_text {
  color: #fff;
}

.medical_item:nth-of-type(even):hover .medical_text {
  color: #333;
}

.medical_item:nth-of-type(odd):hover .medical_title_eng {
  color: #fff;
}

.medical_item:nth-of-type(even):hover .medical_title_eng {
  color: #333;
}

.medical_title_eng {
  margin-top: 5px;
  color: var(--main-color);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
}

.medical_text {
  color: var(--text-color);
}

.medical_btn span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 auto;
  padding: 7px 25px 7px 15px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: #ffffff;
  letter-spacing: 1px;
  text-align: center;
  transition: padding 0.2s, color 0.2s, background 0.2s;
}

.medical_btn span::after {
  content: "\f105";
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  transform: translateY(-50%);
}

.medical_item:nth-of-type(odd):hover .medical_btn span {
  background: #ffffff;
  color: var(--main-color);
}

.medical_item:nth-of-type(even):hover .medical_btn span {
  background: #ffffff;
  color: var(--sub-color);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .medical {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url(../images/common/dmy.jpg) no-repeat center/cover;
  }

  .medical_list {
    gap: 15px 10px;
  }

  .medical_item {
    width: calc(50% - 5px);
  }

  .medical_item:hover {
    transform: translateY(-5px);
  }

  .medical_inner {
    min-height: auto;
    padding: 20px 10px;
  }

  .medical_inner::after {
    width: 32px;
    height: 32px;
    transition: none;
  }

  .medical_title h3 {
    transition: none;
  }

  .medical_btn span {
    transition: none;
  }

  /* SP：hover表現なし（タップ時の中途半端なアニメーションを防止） */
  .medical_item:hover .medical_inner::after,
  .medical_item:nth-of-type(odd):hover .medical_inner::after,
  .medical_item:nth-of-type(even):hover .medical_inner::after,
  .medical_item:nth-child(4n + 1):hover .medical_inner::after,
  .medical_item:nth-child(4n + 2):hover .medical_inner::after,
  .medical_item:nth-child(4n + 3):hover .medical_inner::after,
  .medical_item:nth-child(4n + 4):hover .medical_inner::after {
    width: 32px;
    height: 32px;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
  }

  .medical_item:hover .medical_title h3 {
    color: var(--text-color);
  }

  .medical_item:hover .medical_text,
  .medical_item:nth-of-type(odd):hover .medical_text,
  .medical_item:nth-of-type(even):hover .medical_text,
  .medical_item:nth-child(4n + 1):hover .medical_text,
  .medical_item:nth-child(4n + 2):hover .medical_text,
  .medical_item:nth-child(4n + 3):hover .medical_text,
  .medical_item:nth-child(4n + 4):hover .medical_text {
    color: var(--text-color);
  }

  .medical_item:hover .medical_title_eng,
  .medical_item:nth-of-type(odd):hover .medical_title_eng,
  .medical_item:nth-of-type(even):hover .medical_title_eng,
  .medical_item:nth-child(4n + 1):hover .medical_title_eng,
  .medical_item:nth-child(4n + 2):hover .medical_title_eng,
  .medical_item:nth-child(4n + 3):hover .medical_title_eng,
  .medical_item:nth-child(4n + 4):hover .medical_title_eng {
    color: var(--main-color);
  }

  .medical_item:hover .medical_btn span,
  .medical_item:nth-of-type(odd):hover .medical_btn span,
  .medical_item:nth-of-type(even):hover .medical_btn span,
  .medical_item:nth-child(4n + 1):hover .medical_btn span,
  .medical_item:nth-child(4n + 2):hover .medical_btn span,
  .medical_item:nth-child(4n + 3):hover .medical_btn span,
  .medical_item:nth-child(4n + 4):hover .medical_btn span {
    background: var(--main-color);
    color: #fff;
  }

  .medical_icon {
    width: 65%;
  }

  .medical_title h3 {
    font-size: 110%;
    font-family: var(--font-type);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }

  /* 市松模様（2列） */
  .medical_item:nth-child(4n + 1) .medical_inner,
  .medical_item:nth-child(4n + 4) .medical_inner {
    background-color: var(--bg-color);
  }

  .medical_item:nth-child(4n + 2) .medical_inner,
  .medical_item:nth-child(4n + 3) .medical_inner {
    background-color: var(--bg-color-orange);
  }

  .medical_item:nth-child(4n + 1) .medical_inner::after,
  .medical_item:nth-child(4n + 4) .medical_inner::after {
    background-color: var(--main-color);
  }

  .medical_item:nth-child(4n + 2) .medical_inner::after,
  .medical_item:nth-child(4n + 3) .medical_inner::after {
    background-color: var(--sub-color);
  }
}

/*==================================================================================================================================

  *当院の特徴（パターン02）

==================================================================================================================================*/
.feature {
  background: url(../images/front/feature_bg_l_01.png) no-repeat top left/ 578px auto,url(../images/front/feature_bg_r_02.png) no-repeat top 20% right/ 578px auto,url(../images/front/feature_bg_l_04.png) no-repeat top 40% left / 578px auto,url(../images/front/feature_bg_r_05.png) no-repeat top 60% right/ 578px auto,url(../images/front/feature_bg_l_06.png) no-repeat top 80% left/ 578px auto,url(../images/front/feature_bg_bt.png) no-repeat bottom right / 578px auto,var(--bg-color);
}

.feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 70px 30px;
}

.feature_item {
  position: relative;
  display: flex;
  height: auto;
  width: 100%;
  margin-top: 56px;
  padding-left: 70px;
  padding-right: 20px;
}

.feature_num_wrap {
  position: absolute;
  top: -49px;
  left: 0;
  z-index: 3;
  height: 172px;
  pointer-events: none;
}

.feature_num_wrap .feature_num {
  position: absolute;
  top: 50%;
  left: -52px;
  margin: 0 !important;
  color: #fff;
  font-size: 140%;
  font-family: var(--font-type-en);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7;
  white-space: nowrap;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  border-radius: 8px 8px 0 0;
  padding: 8px 15px;
}

.feature_num_wrap .feature_num span {
  color: #fff;
  font-size: 140%;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7;
}

.feature_img {
  width: 500px;
  flex-shrink: 0;
  margin-top: -50px;
}

.feature_img img {
  border-radius: 0 10px 0 10px;
}

.feature_inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-flow: column;
  overflow: visible;
  border-radius: 0 10px 10px 10px;
  width: calc(100% + 50px);
  height: 100%;
  min-height: 400px;
  margin: 0 0 0 -50px;
  padding: 50px 60px;
  isolation: isolate;
}

.feature_inner::before {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: -20px;
  right: -20px;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.feature_inner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #fff;
  border-radius: 0 10px 10px 10px;
  pointer-events: none;
}

.feature_inner > * {
  position: relative;
  z-index: 2;
}

.feature_inner > *:not(:last-child) {
  margin-bottom: 30px;
}

.feature_title {
  display: flex;
  flex-flow: column;
  margin-bottom: 20px !important;
}

.feature_title h3 {
  font-size: 135%;
  font-family: var(--font-type);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.7;
}

.feature_button {
  margin: auto;
}

.feature_item .btn01 {
  margin-top: auto;
  text-align: center;
}

.feature_item .btn01 > * {
  font-size: 95%;
}

/* 奇数 main-color / 偶数 sub-color */
.feature_list > .feature_item:nth-child(odd) .feature_num_wrap .feature_num,
.feature_list > .feature_item:nth-child(odd) .feature_inner::before,
.feature_list > .feature_item:nth-child(odd) .btn01 > * {
  background: var(--main-color);
}

.feature_list > .feature_item:nth-child(even) .feature_num_wrap .feature_num,
.feature_list > .feature_item:nth-child(even) .feature_inner::before,
.feature_list > .feature_item:nth-child(even) .btn01 > * {
  background: var(--sub-color);
}

.feature_list > .feature_item:nth-child(odd) .feature_title h3 {
  color: var(--main-color);
}

.feature_list > .feature_item:nth-child(even) .feature_title h3 {
  color: var(--sub-color);
}

.feature_list > .feature_item:nth-child(odd) .btn01 > * {
  border-color: var(--main-color);
  color: #fff;
}

.feature_list > .feature_item:nth-child(even) .btn01 > * {
  border-color: var(--sub-color);
  color: #fff;
}

.btnflex_feature {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  gap: 5px;
  margin-top: auto;
}

/* ボタン横並び */
.btnflex_feature .btn01 {
  width: calc(50% - 2.5px);
}

.btnflex_feature .btn01 > * {
  width: 100%;
}

@media screen and (max-width: 640px) {
  .feature {
    background-size: 65%;
    padding-bottom: 0;
  }

  .feature_list {
    gap: min(10vw, 40px);
  }

  .feature_item {
    flex-flow: column;
    width: 100%;
    margin: min(10vw, 40px) 0 0;
    padding-left: min(11vw, 70px);
    padding-right: 0;
  }

  .feature_num_wrap {
    top: 0;
    left: 0;
    z-index: 5;
    width: min(11vw, 70px);
    height: auto;
    overflow: visible;
  }

  .feature_num_wrap .feature_num {
    position: relative;
    top: 0;
    left: 0;
    z-index: 5;
    transform: none;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    white-space: nowrap;
    font-size: min(3.5vw, 20px);
    padding: min(1.5vw, 8px) min(2.5vw, 15px);
    border-radius: 8px 0 0 8px !important;
  }

  .feature_num_wrap .feature_num span {
    font-size: min(3.5vw, 20px);
  }

  .feature_img {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
  }

  .feature_img img {
    width: 100%;
    height: auto;
    border-radius: 0 min(2.5vw, 10px) 0 0;
  }

  .feature_inner {
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: min(8vw, 30px) min(5vw, 20px);
    border-radius: 0 0 min(2.5vw, 10px) min(2.5vw, 10px);
  }

  .feature_inner::before {
    bottom: min(-2.5vw, -10px);
    right: min(-2.5vw, -10px);
  }

  .feature_inner::after {
    border-radius: 0 0 min(2.5vw, 10px) min(2.5vw, 10px);
  }

  .feature_inner > *:not(:last-child) {
    margin-bottom: min(5vw, 20px);
  }

  .feature_title {
    margin-bottom: min(4vw, 15px) !important;
    min-height: auto;
  }

  .feature_title h3 {
    font-size: min(4.4vw, 24px);
  }

  .feature_item .btn01 {
    text-align: center;
  }

  .feature_item .btn01 > * {
    font-size: min(3.5vw, 15px);
  }

  .btnflex_feature .btn01 {
    width: 100%;
  }
}


/* ==================================================================================================================================

  *医療コラム（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.column {
  background: var(--bg-color);
}

.column .column_list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 50px 25px;
  padding: 30px;
  background: #ffffff;
}

.column .column_box {
  width: calc(25% - 18.75px);
}

.column .column_box dt a {
  display: block;
  padding: 15px 10px;
  background: var(--main-color);
  color: #ffffff;
  font-size: 110%;
  text-align: center;
}

.column .column_box dd {
  padding: 10px 10px;
  border-bottom: 1px dashed var(--line-color);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .column .column_list {
    gap: 40px;
  }

  .column .column_box {
    width: 100%;
  }
}

/* ==================================================================================================================================

  *無限スライダー

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
#infinitySlider {
  padding: 10px 0;
}

#infinitySlider .splide__list {
  gap: 10px;
}

#infinitySlider .splide__slide {
  width: 400px !important;
}


/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  #infinitySlider .splide__slide {
    width: 300px !important;
  }
}