@charset "UTF-8";

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

  *基本設定

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

section .inner {
  padding: 100px 0 120px;
}

.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: 150%;
  font-family: var(--jp-font);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.12em;
}

.top_title .eng {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
  color: var(--main-color);
  font-size: 540%;
  font-family: var(--en-font);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1;
}

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

  .top_title h2 {
    margin: 0;
    font-size: 20px;
  }

  .top_title .eng {
    font-size: 55px;
    margin-bottom: 10px;
  }
}

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

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.mainvisual {
  position: relative;
  z-index: 1;
  height: 800px;
  overflow: hidden;
  padding: 0 30px;
}
.mainvisual::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 30%;
    background: var(--bg-color);
    left: 0;
    bottom: 0;
}

.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%;
  border-radius: 50px;
  overflow: hidden;
}

.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%);
  font-family: var(--jp-font);
  font-weight: 500;
  font-style: normal;
}

.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: flex;
  gap: 15px;
  font-family: var(--jp-font);
  font-weight: 500;
  font-style: normal;
}

.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  padding: 15px;
  background: var(--main-color);
  border-radius: 50%;
  color: #ffffff;
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
}

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

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

.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);
}

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

/* ----- MV info ------ */
.mv_info {
    position: absolute;
    bottom: 50px;
    left: 0;
    display: flex;
    gap: 15px;
    font-family: var(--jp-font);
    font-weight: 500;
    font-style: normal;
}
.mv_info_item {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width:200px;
    height: 200px;
    line-height: 1.6;
    text-align: center;
}
.mv_info_item.open {
    background: url(../images/front/bg_logo.png) center / 90% no-repeat,#dceefd;
}
.mv_info_item.nairan {
    background: url(../images/front/bg_logo.png) center / 90% no-repeat,#def2dd;
}
.mv_info_item.access {
    background: url(../images/front/bg_logo.png) center / 90% no-repeat,#fdebd6;
}
.mv_info_item p span {
    font-size: 130%;
    line-height: 1.2;
}
.mv_info_icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
        margin-bottom: 7px;
}
.mv_info_item.open .mv_info_icon {
    background: var(--sub-color-b);
}
.mv_info_item.nairan .mv_info_icon {
    background: var(--sub-color-g);
}
.mv_info_item.access .mv_info_icon {
    background: var(--sub-color-o);
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 500px;
    padding: 0;
  }
.mvImg {
    border-radius: 0;
}
  /* ----- スライダーの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;
  }

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

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

  .sp_only_contents {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  /* ----- MV info ------ */
.mv_info {
    position: static;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 20px;
}
.mv_info_item {
    width: calc(50% - 10px);
    height: 100%;
    aspect-ratio: 1 / 1;
    font-size: 14px;
}
.mv_info_icon {
    width: 50px;
    height: 50px;
}
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.clinic {
  position: relative;
  z-index: 1;
  background: 
  url(../images/front/flower_img01.png) top right -50px / 30% no-repeat,
  url(../images/front/flower_img02.png) bottom 100px left / 22% no-repeat,
  var(--bg-color);
}

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

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

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

.clinic .news .top_title {
  margin: 0 0 30px;
}
.clinic .news .top_title .eng {
    font-size: 430%;
}
.clinic .news .btn01 {
  margin-top: 30px;
  text-align: center;
}

/* ----- 医院概要 ----- */
.clinic .info {
    padding-bottom: 120px;
}
.clinic .info .inner {
  display: flex;
  gap: 40px;
  padding: 0;
  font-family: var(--jp-font);
  font-weight: 500;
  font-style: normal;
  border-radius: 50px;
}

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

.clinic .info .office_hour .title {
  background: #ffffff;
}

.clinic .info .office_hour .table_wrapper {
  background: #ffffff;
}

.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;
  line-height: 1;

}
.clinic .info address .tel a {
    color: var(--sub-color);
  font-family: "brandon-grotesque", "zen-maru-gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
}
.clinic .info address .tel::before {
  content: "\f3cd";
}

.clinic .info address .fax {
  margin-top: 15px;
  padding: 5px 0 5px 50px;
  color: var(--sub-color);
  font-size: 30px;
  line-height: 1;
    font-family: var(--en-font);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
}
.clinic .info address .fax::before {
  content: "\f249";
}

.clinic .info .note {
  margin-top: 10px;
  padding-left: 12px;
  font-size: 90%;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

.clinic .info .speciality {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 20px auto 0;
  padding: 0;
}
.clinic .info .speciality span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #fff;
    border-radius: 300px;
}
.clinic .info .speciality span:nth-child(1) {
    background: var(--sub-color-b);
}
.clinic .info .speciality span:nth-child(2) {
    background: var(--sub-color-g);
}
.clinic .info .speciality span:nth-child(3) {
    background: var(--sub-color-o);
}
.clinic .info .speciality span:nth-child(4) {
    background: var(--sub-color-r);
}
.clinic .info .speciality .title {
  flex-shrink: 0;
  width: fit-content;
  padding: 10px 30px;
  background: var(--main-color);
  color: #ffffff;
  text-align: center;
}

.clinic .info .googlemap iframe {
  height: 350px;
  border-radius: 20px;
}

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

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

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

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

  /* ----- お知らせ ----- */
  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 60px 20px;
  }
  .clinic .news .top_title .eng {
    font-size: 55px;
  }

  /* ----- 医院概要 ----- */
  .clinic .info {
    padding: 0;
  }
  .clinic .info .inner {
    flex-flow: column;
    padding: 0 20px;
  }

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

  .clinic .info .speciality {
    padding: 0;
    flex-wrap: wrap;
  }

  .clinic .info .speciality .title {
    width: 100%;
  }
  .clinic .info .speciality span {
    width: calc(50% - 2.5px);
  }
  .clinic .info address .location .zipcode {
    display: block;
  }
  
}

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

  *ご挨拶（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting {
  position: relative;
  background: var(--bg-color);
  z-index: 1;
  padding: 0 100px;
}
.greeting::before {
    position: absolute;
    content: "";
    width: calc(100% - 60px);
    height: 100%;
    background: 
    url(../images/common/header_bg01.png) top left / 230px no-repeat,
    url(../images/common/header_bg02.png) top right / 230px no-repeat,
    url(../images/front/flower_img03.png) bottom 50px left 50px / 13% no-repeat,
    url(../images/front/flower_img04.png) bottom 50px right 50px / 17% no-repeat,
    #fff;
    border-radius: 50px;
    left: 50%;
    transform: translateX(-50%);    
}
.greeting .inner {
    padding: 80px 0 120px;
}
.greeting .top_title {
    padding: 62px 0;
    background: url(../images/front/shape05.png) center / 250px no-repeat;
}
.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_catch {
    position: relative;
    width: fit-content;
    font-size: 140%;
    line-height: 1.75;
    padding: 0 0 30px 0;
    margin-bottom: 40px!important;
    color: var(--sub-color);
  font-family: var(--jp-font);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.12em;
}
.greeting_catch::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 15px;
    mask: url(../images/common/border_img.png) bottom left / 500px repeat-x;
    -webkit-mask: url(../images/common/border_img.png) bottom left / 500px repeat-x;
    background: #d8efab;
    left: 0;
    bottom: 0;
}
/* .greeting_catch::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 110px;
    background: url(../images/front/border_img.png) bottom left no-repeat;
    left: 0;
    bottom: 0;
} */
.greeting_text > *:not(:last-child) {
  margin-bottom: 1.5em;
}
.greeting_text {
      font-family: var(--jp-font);
  font-weight: 500;
  font-style: normal;
      line-height: 1.8;
}
.greeting_text p > span {
    font-size: 120%;
    color: #ff9623;
}

.greeting_img {
    position: relative;
    margin: 0 8px 8px 0;
}
.greeting_img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--main-color);
      mask: url(../images/front/shape04.svg) top left / contain no-repeat;
  -webkit-mask: url(../images/front/shape04.svg) top left / contain no-repeat; 
  bottom: -8px;
  right: -8px;
}
.greeting_img img {
  mask: url(../images/front/shape04.svg) top left / contain no-repeat;
  -webkit-mask: url(../images/front/shape04.svg) top left / contain no-repeat; 
}
.greeting_profile {
  padding: 30px 0 0;
  line-height: 1.75;
  text-align: center;
  font-family: var(--jp-font);
  font-weight: 500;
  font-style: normal;
}

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

.greeting_profile .name {
  font-size: 150%;
}
.greeting_profile .name span {
    font-size: 80%;
    padding-right: 10px;
}
.greeting_btn {
  margin-top: 50px;
  text-align: center;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .greeting {
    padding: 70px 30px 0;
  }
  .greeting .inner {
    padding: 70px 0;
  }
  .greeting::before {
    width: calc(100% - 20px);
    height: calc(100% - 70px);
    border-radius: 30px;
    background-size: 25%;
    background-position: 
    top left, top right,
    bottom 30px left 30px, bottom 30px right 30px;
  }
  .greeting .top_title {
    background-size: 100px;
    padding: 5px 0;
  }
  .greeting_flex {
    flex-flow: column-reverse;
    gap: 25px;
  }

  .greeting_left {
    width: 100%;
  }
  .greeting_catch {
    font-size: 18px;
  }
.greeting_img {
    width: 80%;
    margin: 0 auto;
}
  .greeting_btn {
    margin-top: 40px;
  }
}

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

  *診療案内（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
  background:
  linear-gradient(rgba(255, 255, 255, 0.6),  rgba(255, 255, 255, 0.6)),
   url(../images/front/medical_bg.jpg) no-repeat center/cover;
}

.medical .top_title span {
  color: var(--main-color);
}

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

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

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

.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 {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
}

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

.medical_icon {
  width: 70%;
  max-width: 90px;
  margin: 0 auto 15px !important;
  mask: url(../images/front/shape02.svg) center / contain no-repeat;
  -webkit-mask: url(../images/front/shape02.svg) center / contain no-repeat;
}
.medical_item:nth-child(even) .medical_icon {
  mask: url(../images/front/shape03.svg) center / contain no-repeat;
  -webkit-mask: url(../images/front/shape03.svg) center / contain no-repeat;
}
.medical_title {
    width: 100%;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--line-color);
}
.medical_title h3 {
  color: var(--text-color);
  font-size: 120%;
  font-family: var(--jp-font);
  font-weight: 500;
  font-style: normal;
  line-height: 1.6;
}
.medical_title h3 span {
    display: block;
    font-size: 80%;
}
.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);
  text-align: left;
}
.medical_text .list04 {
    gap: 0;
}
.medical_text .list04 li {
    line-height: 1.7;   
}
.medical_text .list04 li::before {
    color: #ccc;
}
.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:hover .medical_btn span {
  background: #ffffff;
  color: var(--main-color);
}

/* 色分け */
.medical_item:nth-child(1) .medical_icon,
.medical_item:nth-child(7) .medical_icon {
    background: var(--sub-color-g);
}

.medical_item:nth-child(2) .medical_icon,
.medical_item:nth-child(8) .medical_icon {
    background: var(--sub-color-b);
}

.medical_item:nth-child(3) .medical_icon,
.medical_item:nth-child(9) .medical_icon {
    background: var(--sub-color-p);
}

.medical_item:nth-child(4) .medical_icon,
.medical_item:nth-child(10) .medical_icon {
    background: var(--sub-color-r);
}

.medical_item:nth-child(5) .medical_icon,
.medical_item:nth-child(11) .medical_icon {
    background: var(--sub-color-o);
}
.medical_item:nth-child(6) .medical_icon,
.medical_item:nth-child(12) .medical_icon {
    background: var(--sub-color-y);
}

/* ----- リンクが空の時「準備中」と表示----- */
.medical_item.coming {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.medical_item.coming::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 30px;
}
.medical_item.coming::after {
  position: absolute;
  content: "準備中";
  width: fit-content;
  height: fit-content;
  background: #fff;
  color: var(--text-color);
  padding: 2px 15px;
  z-index: 1;
  border-radius: 5px;
      font-family: var(--jp-font);
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.12em;
}
/* ----- 先頭2つの設定----- */
/* .medical_item:nth-of-type(-n + 2) {
  width: calc(50% - 10px);
  min-height: 350px;
}

.medical_item:nth-of-type(-n + 2) .medical_inner {
  padding: 20px 20px 40px;
}

.medical_item:nth-of-type(-n + 2) .medical_icon {
  max-width: 100px;
  margin: 0 auto 5px !important;
}

.medical_item:nth-of-type(-n + 2) .medical_title h3 {
  font-size: 150%;
} */

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .medical {
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url(../images/front/medical_bg_sp.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_icon {
    width: 50%;
  }

  .medical_title h3 {
    font-size: 110%;
  }
  .medical_text .list04 li {
    line-height: 1.7;
    font-size: 11px;
    letter-spacing: 0;
    padding: 0 0 0 22px;
}

  /* ----- 先頭2つの設定----- */
  /* .medical_item:nth-of-type(-n + 2) {
    width: 100%;
    min-height: auto;
  }

  .medical_item:nth-of-type(-n + 2) .medical_inner {
    padding: 15px 20px 30px;
  }

  .medical_item:nth-of-type(-n + 2) .medical_icon {
    width: 30%;
  }

  .medical_item:nth-of-type(-n + 2) .medical_title h3 {
    font-size: 140%;
  } */
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
    position: relative;
  background: 
  url(../images/front/flower_img05.png) top 12% left -100px / 400px no-repeat,
  url(../images/front/flower_img06.png) top 30% right -100px / 400px no-repeat,
  url(../images/front/feature_bg.svg) top 110px center / 100% no-repeat,
  linear-gradient(var(--bg-color) 50%,#fff6cf 50%);
}
.feature::before {
    position: absolute;
    content: "";
    width: 400px;
    height: 576px;
    background: url(../images/front/flower_img05.png) top left / cover no-repeat;
    top: 55%;
    right: -100px;
    transform: scaleX(-1);
}
.feature::after {
    position: absolute;
    content: "";
    width: 400px;
    height: 483px;
    background: url(../images/front/flower_img06.png) top left / cover no-repeat;
    top: 65%;
    left: -100px;
    transform: scaleX(-1);
}
.feature_list {
    position: relative;
  display: flex;
  flex-flow: wrap;
  gap: 40px 30px;
  z-index: 1;
}

.feature_item {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    margin-top: 50px;
    border-radius: 30px;
}
.feature_item:nth-child(3)::before {
    position: absolute;
    content: "";
    width: 110px;
    height: 97px;
    background: url(../images/front/butterfly_img01.png) top left / cover no-repeat;
    top: -50px;
    left: -100px;
}
.feature_item:nth-child(6)::before {
    position: absolute;
    content: "";
    width: 110px;
    height: 97px;
    background: url(../images/front/butterfly_img01.png) top left / cover no-repeat;
    top: 0;
    right: -100px;
}
.feature_img {
  position: relative;
  flex-shrink: 0;
  width: 500px;
  margin: 0 8px 8px 0;
  z-index: 2;
  /* margin-top: -50px; */
}
.feature_img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    aspect-ratio: 36 / 25;
    background: var(--sub-color-b);
    mask: url(../images/front/shape01.svg) top left / contain no-repeat;
    -webkit-mask: url(../images/front/shape01.svg) top left / contain no-repeat;
    right: -8px;
    bottom: -8px;
}
.feature_img img {
    mask: url(../images/front/shape01.svg) top left / contain no-repeat;
    -webkit-mask: url(../images/front/shape01.svg) top left / contain no-repeat;
}
.feature_inner {
position: relative;
    z-index: 0;
    display: flex;
    flex-flow: column;
    width: calc(100% + 50px);
    height: 100%;
    margin: 0 0 0 -50px;
    padding: 50px 60px 50px 90px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 3px 5px rgba(167, 141, 27, 0.05);
}

.feature_title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 25px;
}
.feature_title::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 15px;
  mask: url(../images/common/border_img.png) bottom left / 500px repeat-x;
  -webkit-mask: url(../images/common/border_img.png) bottom left / 500px repeat-x;
  background: var(--sub-color-b);
  left: 0;
  bottom: 0;
  opacity: 0.6;
}
.feature_title h3 {
  font-size: 155%;
  line-height: 1.6;
  font-family: var(--jp-font);
  font-weight: 500;
  font-style: normal;
}

.feature_num {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    line-height: 1.2;
    background: var(--sub-color-b);
    width: 85px;
    height: 85px;
    color: #fff;
  margin: 0;
  font-size: 90%;
  font-family: var(--en-font);
  font-weight: 500;
  font-style: normal;
  white-space: nowrap;
    mask: url(../images/front/shape03.svg) center / contain no-repeat;
  -webkit-mask: url(../images/front/shape03.svg) center / contain no-repeat;
}

.feature_num span {
  font-size: 150%;
}

.feature_button {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 25px;
}
.feature_text.text {
    letter-spacing: 0.03em;
}

.feature_button .btn01 {
  text-align: center;
}
.feature_button .btn01 a {
    width: 200px;
    border-radius: 300px;
    padding: 7px 45px 7px 35px;
    min-width: 130px;
    background: #f1f1f1;
    color: var(--text-color);
    border: none;
}
.feature_button .btn01 a::after {
    background: var(--sub-color-b);
    color: #fff;
}
/* ----- 左右 ----- */
.feature_item:nth-child(even) {
  flex-flow: row-reverse;
}

.feature_item:nth-child(even) .feature_inner {
  margin: 0 -50px 0 0;
  padding: 50px 90px 50px 60px;
}

/* ----- 色分け ----- */
/* ◆紫 */
.feature_item:nth-child(2) .feature_num,
.feature_item:nth-child(2) .feature_img::before {
    background: var(--sub-color-p);
}
.feature_item:nth-child(2) .feature_button .btn01 a::after {
    background: var(--sub-color-p);
}
.feature_item:nth-child(2) .feature_title::before {
  background: var(--sub-color-p);
}

/* ◆赤 */
.feature_item:nth-child(3) .feature_num,
.feature_item:nth-child(3) .feature_img::before {
    background: var(--sub-color-r);
}
.feature_item:nth-child(3) .feature_button .btn01 a::after {
    background: var(--sub-color-r);
}
.feature_item:nth-child(3) .feature_title::before {
  background: var(--sub-color-r);
}

/* ◆オレンジ */
.feature_item:nth-child(4) .feature_num,
.feature_item:nth-child(4) .feature_img::before {
    background: var(--sub-color-o);
}
.feature_item:nth-child(4) .feature_button .btn01 a::after {
    background: var(--sub-color-o);
}
.feature_item:nth-child(4) .feature_title::before {
  background: var(--sub-color-o);
}

/* ◆黄色 */
.feature_item:nth-child(5) .feature_num,
.feature_item:nth-child(5) .feature_img::before {
    background: var(--sub-color-y);
}
.feature_item:nth-child(5) .feature_button .btn01 a::after {
    background: var(--sub-color-y);
}
.feature_item:nth-child(5) .feature_title::before {
  background: var(--sub-color-y);
}

/* ◆緑 */
.feature_item:nth-child(6) .feature_num,
.feature_item:nth-child(6) .feature_img::before {
    background: var(--sub-color-g);
}
.feature_item:nth-child(6) .feature_button .btn01 a::after {
    background: var(--sub-color-g);
}
.feature_item:nth-child(6) .feature_title::before {
  background: var(--sub-color-g);
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
.feature {
    position: relative;
  background: 
  url(../images/front/flower_img05.png) top 5% left -100px / 300px no-repeat,
  url(../images/front/flower_img06.png) top 20% right -100px / 300px no-repeat,
  url(../images/front/feature_bg.svg) top 110px center / 200% no-repeat,
url(../images/front/feature_bg.svg) top 60% center / 200% no-repeat,
  linear-gradient(var(--bg-color) 50%,#fff6cf 50%);
  padding-bottom: 0;
}
.feature::before {
    width: 300px;
    height: 440px;
    top: 45%;
}
  .feature_list {
    gap: 40px;
  }

  .feature_item {
    flex-flow: column;
    width: 100%;
    margin: 0;
  }
  .feature_item:nth-child(3)::before {
    left: -50px;
  }
.feature_item:nth-child(6)::before {
    top: -23px;
    right: -50px;
}
  .feature_img {
    width: 100%;
    margin: 0;
  }

  .feature_inner {
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 30px 20px;
    border-radius: 30px;
  }
.feature_num {
    width: 50px;
    height: 50px;
    font-size: 9px;
}
  .feature_title {
    min-height: auto;
    margin-bottom: 15px;
    padding-bottom: 20px;
    gap: 10px;
  }
  .feature_title h3 {
    font-size: 17px;
  }

  /* ----- 左右 ----- */
  .feature_item:nth-child(even) {
    flex-flow: column;
  }

  .feature_item:nth-child(even) .feature_inner {
    margin: 0 auto;
    padding: 30px 20px;
  }
}
/* ==================================================================================================================================

  *医療コラム（パターン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;
  }
}
