@charset "UTF-8";

/* ---------------------
  - *基本設定
  - *タイトル
  - *メインビジュアル
  - *バナーエリア
  - *医院概要
  - *ご挨拶
  - *診療案内
  - *当院の特徴
  - *病状・病名から探す
  - *医療コラム
  - *無限スライダー
--------------------- */
/* ==================================================================================================================================

  *基本設定

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

section .inner {
  padding: 130px 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;
  }
}

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

  *タイトル

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

  /* 左寄せ */
}

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

.top_title h2 {
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 200%;
}

.top_title .eng {
  display: inline-block;
  margin-bottom: 5px;
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 300;
  color: var(--main-color);
  font-size: 500%;
  letter-spacing: 0.2em;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  h1 {
    margin: 0;
  }

  .top_title {
    margin-bottom: 40px;
  }

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

  .top_title .eng {
    font-size: 250%;
  }
}

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

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.mainvisual {
  position: relative;
  z-index: 1;
  height: 950px;
  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#sliderBtn_prev {
  left: 20px;
}

.mvSlider .sliderBtn#sliderBtn_next {
  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#sliderBtn_prev span::before {
  content: "\f053";
}

.mvSlider .sliderBtn#sliderBtn_next span::before {
  content: "\f054";
}

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

/* ----- MVの画像 ----- */
.mvImg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.mvImg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(24, 28, 21, 0.3));
}

.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: 50%;
  left: 0;
  z-index: 3;
  width: 100%;
  transform: translateY(-50%);
}

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

.mvCatch p {
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  font-size: 220%;
}

/* ----- コンテンツ ----- */
.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: 80px;
  display: inline-block;
  padding: 3px;
  background: rgba(255, 255, 255, 0.2);
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.2em;
}

.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 280px;
  padding: 40px 15px;
  background: linear-gradient(135deg, rgba(85, 103, 73, 0.9) 85%, rgba(107, 126, 93, 0.9) 85%);
  color: #ffffff;
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
}

.open_bnr .date {
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 130%;
}

.open_bnr .open_text {
  /*margin: 0 0 10px; テキスト削除に伴う余白の調整*/
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 200%;
}

.open_bnr .nairankai_tit {
  display: block;
  width: 100%;
  margin: 0 0 15px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  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;
}

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

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

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

  .mvSlider .sliderBtn#sliderBtn_next {
    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;
  }

  /* ----- コンテンツ ----- */
  .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: var(--bg-color);
  }

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

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

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

  *バナーエリア

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
/* ----- 共通設定 ----- */
.top_banner .banner_slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: var(--text-color);
}

/* 画像のみのバナー */
.top_banner .onlyimg .banner_slide {
  height: fit-content;
  padding: 0;
}

.top_banner .onlyimg .banner_slide img {
  width: 100%;
  height: auto;
  transition: opacity 0.2s;
}

.top_banner .onlyimg a.banner_slide:hover img {
  opacity: 0.5;
}

/* インプットバナー */
.top_banner .input .banner_slide {
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 15px;
  background: var(--bg-color);
}

.top_banner .input .banner_slide .slide_img {
  flex-shrink: 0;
  width: calc(30% - 10px);
  height: 100%;
}

.top_banner .input .banner_slide .slide_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_banner .input .banner_slide .slide_inner {
  width: 100%;
  height: 100%;
  padding: 0 0 10px;
}

.top_banner .input .banner_slide .slide_title {
  margin: 0 auto 10px;
  padding: 5px;
  border-bottom: 1px solid var(--line-color);
  color: var(--main-color);
  font-size: 110%;
  line-height: 1.5;
}

.top_banner .input .banner_slide .slide_content {
  font-size: 90%;
}

.top_banner .input a.banner_slide:hover {
  opacity: 0.6;
}

/* ----- グリッドバナー ----- */
.banner_grid ul {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}

.banner_grid li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(33.3333333333% - 13.3333333333px);
}

/* ----- スライダーバナー ----- */
#bannerSlider {
  background: var(--bg-color);
}

#bannerSlider .inner {
  padding: 80px 0;
}

#bannerSlider .splide {
  position: relative;
  z-index: 1;
}

#bannerSlider .splide__inner {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

/* スライドの設定  */
#bannerSlider {
  background: var(--bg-color);
}

#bannerSlider .splide__slide {
  display: flex;
  align-items: center;
}

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

#bannerSlider .bannerSlider_arrow i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 0 1px 0;
  background: var(--main-color);
  border-radius: 50%;
  font-size: 10px;
  transition: background 0.2s;
}

#bannerSlider .bannerSlider_arrow:hover i {
  background: var(--sub-color);
}

#bannerSlider .bannerSlider_arrow_prev {
  left: 0;
}

#bannerSlider .bannerSlider_arrow_next {
  right: 0;
}

/* ページネーション */
#bannerSlider .bannerSlider_pagination {
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: 20px auto 0;
  padding: 0 20px;
}

#bannerSlider .bannerSlider_page {
  width: 6px;
  height: 6px;
  background-color: #e8e8e8;
  border-radius: 50%;
  transition: background 0.2s;
}

#bannerSlider .bannerSlider_page.is-active {
  background: var(--main-color);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  /* ----- グリッドバナー ----- */
  .banner_grid li {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  /* ----- スライダーバナー ----- */
  #bannerSlider .inner {
    padding: 20px 15px 50px;
  }

  #bannerSlider .splide__inner {
    position: relative;
    z-index: 1;
    padding: 0 15px;
  }

  /* スライダーのArrowボタン */
  #bannerSlider .bannerSlider_arrow {
    width: 30px;
    height: 30px;
  }

  #bannerSlider .bannerSlider_arrow i {
    padding: 0 0 1px 0;
  }

  /* ページネーション */
  #bannerSlider .bannerSlider_pagination {
    gap: 12px;
    margin: 15px auto 0;
    padding: 0 15px;
  }

  #bannerSlider .bannerSlider_page {
    width: 5px;
    height: 5px;
  }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.clinic {
  position: relative;
  z-index: 1;
  background: #ffffff;
}

/* ----- お知らせ ----- */
.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 50px;
}

.clinic .news .top_title h2 {
  font-size: 150%;
}

.clinic .news .top_title .eng {
  margin-bottom: 5px;
  font-size: 300%;
}

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

/* ----- 医院概要 ----- */
.clinic .info::after {
  content: "";
  display: block;
  width: 100%;
  height: 700px;
  background: url(../images/front/dmy.jpg) no-repeat center/cover;
}

.clinic .info .inner {
  display: flex;
  gap: 70px;
  padding: 0 0 100px;
}

.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: 50px;
  padding: 0 0 0 120px;
  line-height: 1.65;
}

.clinic .info address > *::before {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 50px;
  padding: 0 0 0 5px;
  border: 1px solid var(--text-color);
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
}

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

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

.clinic .info address .tel {
  margin-top: 15px;
  padding: 10px 0 0 120px;
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 32px;
  line-height: 1;
}

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

.clinic .info address .fax {
  margin-top: 15px;
  padding: 10px 0 0 120px;
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 32px;
  line-height: 1;
}

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

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

.clinic .info .speciality {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--line-color);
  line-height: 1.65;
}

.clinic .info .speciality .title {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: auto;
  padding: 5px 8px 5px 12px;
  background: #e7ede2;
  border-radius: 30000px;
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--main-color);
  font-size: 14px;
}

.clinic .info .googlemap {
  padding: 10px;
  border: 1px solid var(--line-color);
}

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

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

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

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  /* ----- お知らせ ----- */
  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 60px 20px;
  }

  .clinic .news .top_title h2 {
    font-size: 20px;
  }

  .clinic .news .top_title .eng {
    font-size: 250%;
  }

  .clinic .news .btn_eng {
    margin-top: 30px;
  }

  /* ----- 医院概要 ----- */
  .clinic .info::after {
    height: 350px;
  }

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

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

  .clinic .info address > * {
    padding: 0;
  }

  .clinic .info address > *::before {
    position: static;
    width: 100%;
    height: 45px;
    margin: 0 auto 15px;
  }

  .clinic .info address .tel {
    margin-top: 25px;
    padding: 0;
    text-align: center;
  }

  .clinic .info address .fax {
    margin-top: 25px;
    padding: 0;
    text-align: center;
  }

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

  .clinic .info .speciality .title {
    width: 100%;
  }

  .clinic .info .googlemap {
    padding: 7px;
  }

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

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

  *ご挨拶（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting {
  position: relative;
  z-index: 1;
  background: var(--bg-color);
}

.greeting .inner {
  position: relative;
  z-index: 1;
  max-width: 1420px;
  padding: 200px 50px 150px;
}

.greeting .inner::before {
  content: "";
  position: absolute;
  bottom: 100px;
  left: -100px;
  z-index: -1;
  display: block;
  width: 600px;
  height: 600px;
  background: url(../images/common/logo.svg) no-repeat center/cover;
  opacity: 5%;
}

.greeting .top_title {
  margin-bottom: 100px;
  text-align: start;
}

.greeting .top_title .eng {
  position: relative;
  z-index: 1;
}

.greeting .top_title .eng::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10%;
  display: block;
  width: 100svw;
  height: 2px;
  background: var(--main-color);
  transform: translate(100%, -50%);
}

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

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

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

.greeting_left {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 50%;
}

.greeting_left::before {
  content: "";
  position: absolute;
  top: -270px;
  right: 150px;
  z-index: -1;
  display: block;
  width: 350px;
  height: 200px;
  background: url(../images/front/dmy.jpg) no-repeat center/cover;
}

.greeting_left::after {
  content: "";
  position: absolute;
  top: -50px;
  left: -150px;
  z-index: -1;
  display: block;
  width: 200px;
  height: 200px;
  background: url(../images/front/dmy.jpg) no-repeat center/cover;
}

.greeting_img {
  position: relative;
  z-index: 1;
  padding: 0 10px 10px 0;
}

.greeting_img::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: block;
  width: 80%;
  height: 80%;
  background: var(--main-color);
}

.greeting_right {
  width: 600px;
}

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

.greeting_under {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.greeting_profile {
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.2em;
}

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

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

.greeting_btn {
  text-align: center;
}

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

  .greeting .inner {
    padding: 80px 20px 60px;
  }

  .greeting .inner::before {
    bottom: 150px;
    left: -100px;
    width: 400px;
    height: 400px;
  }

  .greeting .top_title {
    margin: 0 auto 40px;
  }

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

  .greeting_left {
    width: 100%;
  }

  .greeting_left::before {
    top: -230px;
    width: 300px;
    height: 170px;
  }

  .greeting_left::after {
    display: none;
  }

  .greeting_img {
    padding: 0 8px 8px 0;
  }

  .greeting_right {
    width: 100%;
    height: auto;
  }

  .greeting_under {
    flex-flow: column;
    gap: 40px;
    margin-top: 30px;
  }

  .greeting_profile {
    text-align: center;
  }

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

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

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
  position: relative;
  z-index: 1;
  background: #ffffff;
}

.feature::before {
  content: "";
  position: absolute;
  top: 25%;
  left: 0;
  z-index: -1;
  display: block;
  width: 284px;
  height: 440px;
  background: url(../images/front/leaf-01.svg) no-repeat center/cover;
  opacity: 0.1;
  transform: rotate(45deg);
}

.feature::after {
  content: "";
  position: absolute;
  top: 60%;
  right: 0;
  z-index: -1;
  display: block;
  width: 284px;
  height: 440px;
  background: url(../images/front/leaf-01.svg) no-repeat center/cover;
  opacity: 0.1;
  transform: rotate(-45deg) scale(-1, 1);
}

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

.feature_item {
  display: flex;
  align-items: center;
  gap: 70px;
  width: 100%;
  height: auto;
}

.feature_img {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 48%;
  padding: 30px 10px 10px 10px;
}

.feature_img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 50%;
  background: var(--main-color);
}

.feature_img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 10px;
  height: 10px;
  background: var(--main-color);
  border-radius: 50%;
}

.feature_inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-flow: column;
  width: 100%;
  height: fit-content;
}

.feature_title {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  padding: 0 0 30px;
  border-bottom: 1px solid var(--line-color);
}

.feature_title .feature_num {
  display: flex;
  flex-shrink: 0;
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 300;
  color: var(--main-color);
  font-size: 70px;
  line-height: 1;
  letter-spacing: 0.075em;
}

.feature_title h3 {
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 180%;
  line-height: 1.75;
}

.feature_button {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 70px;
}

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

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

.feature_item:nth-child(even) .feature_img::after {
  top: 0;
  right: 0;
  left: auto;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .feature {
    padding-bottom: 0;
  }

  .feature::before {
    width: 113.6px;
    height: 176px;
  }

  .feature::after {
    width: 113.6px;
    height: 176px;
  }

  .feature_img {
    padding: 20px 8px 8px 8px;
  }

  .feature_img::after {
    width: 7px;
    height: 7px;
  }

  .feature_list {
    gap: 40px;
  }

  .feature_item {
    flex-flow: column;
    gap: 30px;
    width: 100%;
    margin: 0;
  }

  .feature_img {
    width: 100%;
    margin: 0;
  }

  .feature_inner {
    width: 100%;
    min-height: auto;
    margin: 0;
  }

  .feature_title {
    gap: 20px;
    min-height: auto;
    margin-bottom: 25px;
    padding: 0 0 15px;
  }

  .feature_title .feature_num {
    font-size: 34px;
  }

  .feature_title h3 {
    font-size: 140%;
  }

  .feature_button {
    padding-top: 30px;
  }

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

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

  *無限スライダー

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
#infinitySlider {
  margin-bottom: -100px;
  padding: 0;
}

#infinitySlider .splide__list {
  gap: 70px;
}

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

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

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

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical_bg {
  padding: 200px 0 150px;
  background: var(--bg-color);
}

.symptom .inner {
  padding: 0;
}

.symptom_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 20px;
}

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

.symptom_img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.symptom_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(83, 95, 75, 0.8));
  transition: 0.3s;
}

.symptom_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.symptom_inner {
  position: absolute;
  bottom: 15px;
  left: 0;
  z-index: 2;
  width: 100%;
  height: fit-content;
  padding: 20px;
  text-align: right;
}

.symptom_inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 20px;
  background: linear-gradient(to left, #ffffff 50%, #8a9c7e 50%);
  background-position: 100%;
  background-size: 200%;
  transition: background 0.3s;
}

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

.symptom_icon {
  width: 70%;
  max-width: 80px;
  margin: 0 auto 15px !important;
}

.symptom_title h3 {
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  font-size: 140%;
}

.symptom_title_eng {
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 1px;
}

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

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

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

.symptom_item:hover .medical_btn span {
  background: #ffffff;
  color: var(--main-color);
}

.symptom_item:hover .symptom_inner::after {
  background-position: 0%;
}

.symptom_item:hover .symptom_img::before {
  opacity: 0.5;
}

.symptom_item:hover .symptom_img img {
  transform: scale(1.05);
}

.medical .inner {
  padding: 0;
}

.medical_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
  margin-top: 100px;
  padding: 100px 0 0;
  border-top: 1px solid var(--line-color);
}

.medical_item {
  position: relative;
  z-index: 1;
  width: calc(20% - 16px);
  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 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 30px 20px 40px;
  background: rgb(255, 255, 255);
  text-align: center;
  overflow: hidden;
}

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

.medical_icon {
  width: 80%;
  max-width: 120px;
  margin: 0 auto 10px !important;
}

.medical_title h3 {
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--text-color);
  font-size: 120%;
}

.medical_title h3 .small {
  font-size: 90%;
}

.medical_title_eng {
  margin-top: 5px;
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 300;
  color: var(--main-color);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
}

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

.medical_btn {
  margin-top: 10px;
}

.medical_btn span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 auto;
  padding: 2px 15px;
  background: linear-gradient(to right, transparent 50%, var(--main-color) 50%);
  background-position: 0;
  background-size: 201%;
  border: 1px solid var(--text-color);
  border-radius: 1000px;
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--text-color);
  font-size: 11px;
  letter-spacing: 1px;
  text-align: center;
  transition: background 0.3s, color 0.3s, border 0.3s;
}

.medical_item:hover .medical_btn span {
  background-position: 100%;
  border: 1px solid var(--main-color);
  color: #ffffff;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .medical_bg {
    padding: 180px 0 60px;
  }

  .symptom .top_title {
    margin-bottom: 50px;
  }

  .symptom_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 20px;
  }

  .symptom_title h3 {
    font-size: 120%;
  }

  .symptom_title_eng {
    font-size: 10px;
  }

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

  .medical_list {
    gap: 15px 10px;
    margin-top: 50px;
    padding: 50px 0 0;
    border-top: 1px solid var(--line-color);
  }

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

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

  .medical_inner {
    justify-content: flex-starts;
    min-height: auto;
    padding: 10px 10px 30px;
  }

  .medical_icon {
    width: 90%;
    margin: 0 auto !important;
  }

  .medical_title h3 {
    font-size: 110%;
  }

  .medical_btn {
    margin-top: auto;
    padding-top: 10px;
  }

  .medical_btn span {
    font-size: 10px;
  }
}

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

  *病状、症状から探す（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.search {
  position: relative;
}

.search .tab_list {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}

.search .tab_list li {
  display: flex;
  flex: 1;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 10px 20px;
  background: #a9a9a9;
  color: #ffffff;
  font-size: 140%;
  cursor: pointer;
  transition: transform 0.2s, padding 0.2s;
}

.search .tab_list li.is-active {
  background: var(--main-color);
}

/* ----- パネル ----- */
.search .panel {
  display: none;
  margin: 0 !important;
  padding: 20px;
  background: var(--bg-color);
}

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

/* ----- 項目 ----- */
.search_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  height: fit-content;
}

.search_list a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 60px;
  padding: 10px 30px;
  background: #ffffff;
  color: var(--text-color);
  font-size: 110%;
}

/* ----- 画像あり ----- */
.panel_flex.is-active {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}

.panel_flex .search_img {
  width: calc(50% - 10px);
  margin: 0 !important;
}

.panel_flex .search_list {
  grid-template-columns: repeat(2, 1fr);
  width: calc(50% - 10px);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .search .tab_list {
    flex-flow: column;
    gap: 7px;
    margin: 0 0 15px;
  }

  .search .tab_list .tab {
    width: 100%;
    min-height: auto;
    padding: 10px !important;
    font-size: 120%;
    transform: translate(0, 0) !important;
  }

  /* ----- パネル ----- */
  .search .panel {
    padding: 20px;
  }

  /* ----- 項目 ----- */
  .search_list {
    grid-template-columns: repeat(1, 1fr);
  }

  /* ----- 画像あり ----- */
  .panel_flex.is-active {
    gap: 20px;
  }

  .panel_flex .search_img {
    width: 100%;
  }

  .panel_flex .search_list {
    grid-template-columns: repeat(1, 1fr);
    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%;
  }
}
