@charset "UTF-8";

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

:root {
  --suisai-beige-top: url(../images/suisai_beige.jpg) repeat center / 441px 365px;
}

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

  *基本設定

================================================================================================================================== */
.front {
  overflow: hidden;
}

section .inner {
  max-width: 1400px;
  padding: 120px 50px;
}

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

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

  *タイトル

================================================================================================================================== */
.top_title_vertical {
  margin-bottom: 50px;
  line-height: 1.5;
  letter-spacing: 0.3em;
  text-align: center;
}

.top_title_vertical h2 {
  font-size: 220%;
}

.top_title_vertical .eng {
  display: inline-block;
  margin-top: 10px;
  font-family: "ab-maruhanamaki", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--main-color);
  font-size: 120%;
}

.top_title_horizontal {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  line-height: 1.5;
  letter-spacing: 0.3em;
  text-align: start;
}

.top_title_horizontal::before {
  content: "";
  display: block;
  width: 50px;
  height: 47px;
  margin-right: 25px;
  background: url(../images/flower.svg) no-repeat center/cover;
}

.top_title_horizontal h2 {
  font-size: 250%;
}

.top_title_horizontal .eng {
  position: relative;
  top: 2px;
  display: inline-block;
  margin-left: 50px;
  font-family: "ab-maruhanamaki", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--main-color);
  font-size: 150%;
  line-height: 1;
}

/* ==============================================
  *SP タイトル
============================================== */
@media screen and (max-width: 640px) {
  .top_title_vertical h2 {
    font-size: 180%;
  }

  .top_title_vertical .eng {
    font-size: 100%;
  }

  .top_title_horizontal {
    flex-flow: column;
    margin: 0 auto 40px;
  }

  .top_title_horizontal::before {
    margin: 0 auto 30px;
  }

  .top_title_horizontal h2 {
    font-size: 180%;
  }

  .top_title_horizontal .eng {
    margin: 0 auto;
    margin-top: 10px;
    font-size: 100%;
  }
}

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

  *メインビジュアル

================================================================================================================================== */
.mainvisual {
  position: relative;
  z-index: 1;
  height: 900px;
  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: "\f053";
}

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

/* 各スライダーのボタンは非表示に */
.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 hideImg {
  0% {
    opacity: 1;
  }

  10% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}
@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: 37%;
  left: 0;
  z-index: 3;
  width: 100%;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 10px #ffffff) drop-shadow(0 0 10px #ffffff) drop-shadow(0 0 15px #ffffff) drop-shadow(0 0 15px #ffffff);
  transform: translateY(-50%);
}

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

.mvCatch .catch {
  letter-spacing: 0.25em;
  text-align: center;
}

.mvCatch .catch .maincatch {
  font-size: 250%;
}

.mvCatch .catch .subcatch {
  margin-top: 10px;
  font-size: 180%;
  letter-spacing: 0.25em;
}

/* ----- コンテンツ ----- */
.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: 70px;
  width: 400px;
}

/* ----- RIBONバナー ----- */
.mv_ribon {
  position: absolute;
  bottom: 150px;
  left: 0;
}

.sp_only {
  display: none;
}

/* ==============================================
  *SP メインビジュアル
============================================== */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 500px;
  }

  /* ----- スライダーの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;
  }

  .mvCatch .catch {
    letter-spacing: 0.2em;
  }

  .mvCatch .catch .maincatch {
    font-size: 140%;
  }

  .mvCatch .catch .subcatch {
    font-size: 80%;
  }

  .mvContents {
    display: none;
  }

  .sp_only {
    display: block;
  }

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

  .open_bnr {
    position: static;
    width: 85%;
    max-width: 300px;
    margin: 0 auto;
  }
}

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

  *バナーエリア

================================================================================================================================== */
/* ----- 共通設定 ----- */
.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 a.banner_slide:hover {
  background: #f5f5f5;
}

.top_banner .input .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 .slide_inner {
  width: 100%;
  height: 100%;
  padding: 0 0 10px;
}

.top_banner .input .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 .slide_content {
  font-size: 90%;
}

/* ----- グリッドバナー ----- */
.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 .splide {
  position: relative;
  z-index: 1;
}

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

/* スライドの設定  */
#bannerSlider .splide__slide {
  display: flex;
  align-items: center;
  min-height: 200px;
}

/* スライダーのArrowボタン */
#bannerSlider .bannerSlider_arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  padding: 3px;
  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: 80%;
  transition: background 0.2s;
}

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

#bannerSlider .bannerSlider_arrow_prev {
  left: 0;
}

#bannerSlider .bannerSlider_arrow_prev span::before {
  content: "\f104";
}

#bannerSlider .bannerSlider_arrow_next {
  right: 0;
}

#bannerSlider .bannerSlider_arrow_next span::before {
  content: "\f105";
}

/* ページネーション */
#bannerSlider .bannerSlider_pagination {
  z-index: 1;
  display: flex;
  gap: 15px;
  margin: 30px auto 0;
}

#bannerSlider .bannerSlider_page {
  width: 10px;
  height: 10px;
  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 .splide__inner {
    position: relative;
    z-index: 1;
    padding: 0 15px;
  }

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

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

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

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

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

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

================================================================================================================================== */
.clinic {
  padding: 0 0 500px;
  background: var(--suisai-beige-top);
}

.clinic .clinic_top .inner {
  display: flex;
  gap: 50px;
  padding: 80px 50px 50px;
}

/* ------ お知らせ ------ */
.clinic .news {
  display: flex;
  flex-flow: column;
  width: calc(50% - 25px);
  padding: 60px 40px;
  background: #ffffff;
  border-radius: 40px;
}

.clinic .news_list {
  margin-bottom: 30px;
}

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

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

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

/* ------ 医院概要 ------ */
.clinic .info {
  padding: 60px 40px;
  background: #ffffff;
  border-radius: 40px;
}

.clinic .info address > * {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
}

.clinic .info address > *::before {
  content: "";
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 50px;
  background: var(--main-color);
  border-radius: 10px;
  color: #ffffff;
  font-size: 16px;
}

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

.clinic .info address .location .zipcode {
  display: block;
  line-height: 1.5;
}

.clinic .info address .tel {
  margin-top: 15px;
  font-family: "ab-maruhanamaki", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.15em;
}

.clinic .info address .tel::before {
  content: "TEL";
  font-size: 16px;
  letter-spacing: 0.1em;
}

.clinic .info address .fax {
  margin-top: 15px;
  font-family: "ab-maruhanamaki", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.15em;
}

.info address .fax::before {
  content: "FAX";
  font-size: 16px;
  letter-spacing: 0.1em;
}

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

.clinic .info .speciality {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 15px auto 0;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
}

.clinic .info .speciality .title {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 50px;
  padding: 0 0 0 2px;
  background: var(--main-color);
  border-radius: 10px;
  color: #ffffff;
  font-size: 15px;
}

.clinic .info .googlemap {
  margin-top: 30px;
}

.clinic .info .googlemap iframe {
  height: 300px;
  border-radius: 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_schdule .inner {
  padding: 0 50px;
}

.clinic_schdule .schdule_box {
  display: flex;
  flex-flow: wrap;
  gap: 30px;
  padding: 50px 70px;
  background: #ffffff;
  border-radius: 50px;
}

.clinic_schdule .office_hour {
  width: calc(50% - 25px);
  margin: 0;
}

.clinic_schdule .office_hour:nth-child(1) {
  width: 100%;
}

@media screen and (max-width: 640px) {
  .clinic {
    padding: 0 0 70px;
  }

  .clinic .clinic_top .inner {
    flex-flow: column;
    gap: 30px;
    padding: 70px 20px 30px;
  }

  /* ------ お知らせ ------ */
  .clinic .news {
    width: 100%;
    padding: 50px 25px;
    border-radius: 30px;
  }

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

  /* ------ 医療コラム ------ */
  .clinic_column {
    width: 100%;
  }

  .clinic_colum .top_title h2 {
    font-size: 26px;
  }

  .clinic_column .column_item a {
    padding: 15px 5px 15px 10px;
  }

  .clinic_column .column_item a .column_info ul li {
    min-width: 70px;
  }

  /* ------ 医院概要 ------ */
  .clinic .info {
    padding: 50px 25px;
    border-radius: 30px;
  }

  .clinic .info address > * {
    flex-flow: column;
    gap: 15px;
    width: 100%;
  }

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

  .clinic .info address .tel {
    font-size: 26px;
  }

  .clinic .info .speciality {
    flex-flow: column;
    gap: 15px;
    width: 100%;
    margin-top: 20px;
  }

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

  /* ------ 診療時間------ */
  .clinic_schdule .inner {
    padding: 0 20px;
  }

  .clinic_schdule .schdule_box {
    gap: 30px;
    padding: 50px 25px;
    border-radius: 30px;
  }

  .clinic_schdule .office_hour {
    width: 100%;
  }
}

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

  *ご挨拶

================================================================================================================================== */
.greeting {
  position: relative;
  z-index: 1;
  background: url(../images/suisai_01.png) no-repeat top 200px left -520px/900px 835px;
}

.greeting::before {
  content: "";
  display: block;
  width: calc(100% - 200px);
  height: 600px;
  margin: -400px auto 0;
  background: url(../images/section_img_01.jpg) no-repeat center/cover;
  border-radius: 50px;
}

.greeting::after {
  content: "";
  position: absolute;
  right: -700px;
  bottom: -350px;
  display: block;
  width: 1100px;
  height: 1300px;
  background: url(../images/suisai_02.png) no-repeat center/cover;
}

.greeting .inner {
  max-width: 1720px;
  padding: 150px 100px 30px;
}

.greeting .top_title_horizontal .eng {
  color: var(--sub-color);
}

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

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

.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 {
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
}

.greeting_text .catch {
  margin-top: 30px;
  font-size: 200%;
  letter-spacing: 0.2em;
}

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

.greeting_profile {
  margin-top: 50px;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  text-align: center;
}

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

.greeting_profile .name {
  margin-top: 10px;
  font-size: 180%;
}

.greeting_profile .name span {
  display: inline-block;
  margin-right: 20px;
  font-size: 80%;
}

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

/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {
  .greeting {
    position: relative;
    z-index: 1;
    background: url(../images/suisai_01.png) no-repeat top 200px left -120px/350px 324px;
  }

  .greeting::before {
    width: 100%;
    height: 300px;
    margin: 0;
    background: url(../images/section_img_01_sp.jpg) no-repeat center/cover;
    border-radius: 0;
  }

  .greeting::after {
    content: "";
    position: absolute;
    right: -450px;
    bottom: -250px;
    display: block;
    width: 600px;
    height: 650px;
    background: url(../images/suisai_02.png) no-repeat center/cover;
  }

  .greeting .inner {
    padding: 70px 20px;
  }

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

  .greeting_left {
    width: 100%;
  }

  .greeting_text .catch{
    text-align: center;
  }

  .greeting_btn {
    margin-top: 40px;
  }
}

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

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

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

.feature::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 85%;
  background: var(--suisai-beige-top);
}

.feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 60px 40px;
}

.feature_item {
  display: flex;
  flex-flow: column;
  width: calc(33.3333333333% - 26.6666666667px);
  height: auto;
}

.feature_num {
  position: relative;
  z-index: 2;
  margin: 0 5px -15px !important;
  font-family: "ab-maruhanamaki", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--sub-color);
  font-size: 150%;
  line-height: 1;
  text-align: right;
}

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

.feature_img {
  position: relative;
  z-index: 1;
  display: block;
  flex-shrink: 0;
  border-radius: 25px;
  overflow: hidden;
}

.feature_title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: fit-content;
  padding: 12px 30px 12px 35px;
  background: var(--sub-color);
  border: 3px solid #ffffff;
  border-bottom: none;
  border-left: none;
  border-radius: 0 20px 0 0;
}

.feature_title h3 {
  color: #ffffff;
  font-size: 105%;
  line-height: 1.6;
}

.feature_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 25px 0 0;
}

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

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

.feature_item .btn01 > * {
  min-width: 180px;
  padding: 12px 55px 12px 35px;
  font-size: 95%;
}

.feature_item .btn01 > *::after {
  right: 15px;
  width: 27px;
  height: 27px;
  font-size: 11px;
}

/* ----- オレンジ色 ----- */
.feature_item:nth-child(even) .feature_num {
  color: var(--main-color);
}

.feature_item:nth-child(even) .feature_title {
  background: var(--main-color);
}

.feature_item:nth-child(even) .btn01 > * {
  background: var(--main-color);
  border: 1px solid var(--main-color);
}

.feature_item:nth-child(even) .btn01 > *:hover {
  background: #ffffff;
  color: var(--main-color);
}

.feature_item:nth-child(even) .btn01 > *::after {
  right: 15px;
  width: 27px;
  height: 27px;
  color: var(--main-color);
  font-size: 11px;
}

.feature_item:nth-child(even) .btn01 > *:hover::after {
  background: #f8f0e4;
  color: var(--main-color);
}

/* ---- 横並びボタン ----- */
.btnflex_feature {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  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_list {
    gap: 40px;
  }

  .feature_item {
    width: 100%;
  }

  .feature_title {
    padding: 10px 30px 10px 35px;
  }

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

  /* ---- 横並びボタン ----- */
  .btnflex_feature .btn01 {
    width: 100%;
  }
}

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

  *診療案内

================================================================================================================================== */
.medical .top_title_horizontal .eng {
  color: var(--sub-color);
}

.medical .inner {
  padding: 120px 50px 50px;
}

.medical_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px 70px;
}

.medical_item {
  position: relative;
  z-index: 1;
  width: calc(20% - 56px);
  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%;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
}

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

.medical_icon {
  width: 100%;
  margin: 0 auto 15px !important;
  padding: 30px;
  background: var(--bg-color);
  border-radius: 50%;
  transition: background 0.2s;
}

.medical_item:hover .medical_icon {
  background: #fff0d3;
}

.medical_title h3 {
  color: var(--text-color);
  font-size: 130%;
}

.medical_title_eng {
  margin-top: 10px;
  font-family: "ab-maruhanamaki", sans-serif;
  font-style: normal;
  font-weight: 400;
  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:hover .medical_btn span {
  background: #ffffff;
  color: var(--main-color);
}

/* ==============================================
  *SP 診療案内
============================================== */
@media screen and (max-width: 640px) {
  .medical .inner {
    padding: 70px 20px 30px;
  }

  .medical_list {
    gap: 40px 14px;
  }

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

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

  .medical_inner {
    justify-content: flex-start;
  }

  .medical_icon {
    width: 90%;
    padding: 15px;
  }

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

  .medical_title_eng {
    font-size: 10px;
  }
}

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

  *病状、症状から探す

================================================================================================================================== */
.search {
  position: relative;
}

.search .tab_list {
  gap: 10px;
}

.search .tab_list .tab {
  height: auto;
  padding: 15px 20px;
  border-radius: 15px 15px 0 0;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
}

.search .tab_list .tab.active {
  padding: 13px 20px 7px;
}

.search .panel {
  position: relative;
  z-index: 1;
  padding: 30px;
  border-radius: 0 0 25px 25px;
}

.search_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  height: fit-content;
}

.search_list li {
  width: calc(33.3333333333% - 13.3333333333px);
  height: auto;
}

/* ----- リンクボタン ----- */
.search_list li a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 25px 30px;
  background: #ffffff;
  border-radius: 1000px;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--text-color);
}

.search_list li a:hover {
  color: var(--sub-color);
}

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

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

.panel_flex .search_list {
  width: calc(50% - 10px);
}

.panel_flex .search_list li {
  width: calc(50% - 10px);
}

/* ==============================================
  *SP 病状、症状から探す
============================================== */
@media screen and (max-width: 640px) {
  .search .tab_list {
    flex-flow: wrap;
    gap: 10px;
    margin: 0 0 15px;
  }

  .search .tab_list .tab {
    flex: none;
    width: calc(33.3333333333% - 6.6666666667px);
    min-height: auto;
    padding: 10px !important;
    border-radius: 3000px;
    font-size: 100%;
    transform: translate(0, 0) !important;
  }

  .search .panel {
    padding: 20px;
    border-radius: 20px;
  }

  .search_list {
    gap: 15px;
  }

  .search_list li {
    width: 100%;
  }

  .search_list li a {
    min-height: auto;
    padding: 15px 20px;
  }

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

  .search_img {
    width: 100%;
  }

  .panel_flex .search_list {
    width: 100%;
  }

  .panel_flex .search_list li {
    width: 100%;
  }
}

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

  *ピックアップ（パターン01） - 追加コンテンツ

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

.pickup::before {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: calc(50% - 200px);
  height: 100%;
  background: var(--suisai-beige-top);
}

.pickup .inner {
  width: 100%;
}

.pickup_list {
  display: flex;
  flex-flow: wrap;
  gap: 50px;
}

.pickup_item {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
}

.pickup_img {
  position: relative;
  z-index: 1;
  height: fit-content;
}

.pickup_img img {
  border-radius: 30px;
}

.pickup_inner {
  position: relative;
  z-index: 2;
  width: 55%;
}

.pickup_title {
  position: relative;
  z-index: 2;
  margin: 0 auto 30px;
  text-align: center;
}

.pickup_title::before {
  content: "";
  display: block;
  width: 50px;
  height: 47px;
  margin: 0 auto 15px;
  background: url(../images/flower.svg) center center/cover no-repeat;
}

.pickup_title h2, .pickup_title h3 {
  background: none;
  font-size: 220%;
}

.pickup_title span {
  margin-top: 10px;
  font-family: "ab-maruhanamaki", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--sub-color);
  font-size: 120%;
}

.pickup_text {
  margin: 30px 0;
  text-align: center;
}

.pickup_link {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
  margin-top: 50px;
}

.pickup_link .pickup_btn {
  width: 80%;
  height: fit-content;
  margin: 0 auto;
}

.pickup_link .pickup_btn a {
  position: relative;
  display: block;
  padding: 18px 60px 18px 40px;
  background: var(--sub-color);
  border: 1px solid var(--sub-color);
  border-radius: 300px;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  font-size: 110%;
  letter-spacing: 0.15em;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.pickup_link .pickup_btn a:hover {
  background: #ffffff;
  color: var(--sub-color);
}

.pickup_link .pickup_btn a::before {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 0 0 0 1px;
  background: #ffffff;
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--sub-color);
  font-size: 12px;
  transform: translateY(-50%);
  transition: color 0.2s, background 0.2s, transform 0.4s;
}

.pickup_link .pickup_btn a:hover::before {
  background: #daede8;
  color: var(--sub-color);
  transform: translateY(-50%) rotate(360deg);
}

/* ==============================================
  *SP　ピックアップ（追加コンテンツ）
============================================== */
@media screen and (max-width: 640px) {
  .pickup::before {
    width: 35%;
  }

  .pickup_list {
    width: 100%;
  }

  .pickup_title h2, .pickup_title h3 {
    font-size: 180%;
  }

  .pickup_title span {
    font-size: 100%;
  }

  .pickup_item {
    flex-flow: column;
    width: 100%;
  }

  .pickup_img {
    order: 2;
    width: 100%;
    margin: 0;
  }

  .pickup_inner {
    order: 1;
    width: 100%;
  }

  .pickup_link {
    gap: 15px;
    margin: 20px auto 0;
  }

  .pickup_link .pickup_btn {
    width: 100%;
  }

  .pickup_link .pickup_btn > a {
    padding: 13px 60px 13px 40px;
    font-size: 105%;
  }

  .pickup_link .pickup_btn > a::before {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }
}

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

  *無限スライダー

================================================================================================================================== */
#infinitySlider {
  padding: 30px 0;
}

#infinitySlider .splide__list {
  gap: 30px;
}

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

#infinitySlider .splide__slide img {
  border-radius: 30px;
}

/* ==============================================
  *SP 無限スライダー
============================================== */
@media screen and (max-width: 640px) {
  #infinitySlider {
    padding: 25px 0;
  }

  #infinitySlider .splide__list {
    gap: 25px;
  }

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

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

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

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

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

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

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

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

.column_box dd a {
  color: var(--text-color);
}

.column_box dd a:hover {
  color: var(--main-color);
}

/* ==============================================
  *SP 医療コラム
============================================== */
@media screen and (max-width: 640px) {
  .column_list {
    gap: 40px;
  }

  .column_box {
    width: 100%;
  }
}
