@charset "UTF-8";

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

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

  *基本設定

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

section .inner {
  max-width: 1300px;
  padding: 120px 0;
  margin: 0 auto;
}

section .inner_large {
  max-width: unset;
  padding-left: 100px;
  padding-right: 100px;
}

@media screen and (max-width: 1500px) {
  section .inner_large {
    max-width: 1300px;
    padding-left: 0;
    padding-right: 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;
  }
}

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

  *タイトル

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

.top_title_left {
  text-align: left;
}

.top_title h2 {
  font-size: 130%;
  letter-spacing: .1em;
}

/* 左揃え */
.top_title_left h2 {
  position: relative;
  padding-left: 35px;
}

.top_title_left h2::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 2px;
  width: 22px;
  height: 1px;
  background: var(--line-color);
}

.top_title .eng {
  display: inline-block;
  color: var(--main-color);
  font-size: 500%;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-transform: uppercase;
  opacity: 0.8;
  font-family: var(--font-en);
  font-weight: 400;
  font-style: normal;
}

@media screen and (min-width: 741px) {
  .top_title_left.top_title_small {
    display: flex;
    gap: 7px;
    align-items: center;
    margin-bottom: 0;
  }

  .top_title_left.top_title_small .eng {
    font-size: 340%;
    line-height: 1;
  }

  .top_title_left.top_title_small h2 {
    font-size: 120%;
  }
}

/* 縦書き*/
.top_title_tb {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  text-align: left;
}

.top_title_tb h2,
.top_title_tb .eng {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

.top_title_tb .eng {
  position: relative;
  color: var(--sub-color);
  top: -6px;
  line-height: 1;
  text-box: trim-both cap alphabetic;
}

.top_title_tb h2 span {
  position: relative;
  padding-top: 32px;
  font-size: 90%;
}

.top_title_tb h2 span::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 20px;
  background: var(--line-color);
}

/* ==============================================
  *SP タイトル
============================================== */
@media screen and (max-width: 640px) {
  .top_title {
    margin-bottom: 40px;
  }

  .top_title h2 {
    margin: 0;
    padding-left: 25px;
    font-size: min(4.1vw, 18px);
  }

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

  .top_title_left h2::before {
    width: 15px;
  }

  .top_title_tb {
    display: block;
  }

  .top_title_tb h2, .top_title_tb .eng {
    writing-mode: inherit;
  }

  .top_title_tb .eng {
    top: 0;
    text-box: inherit;
    line-height: 1.4;
  }

  .top_title_tb h2 {
    padding-left: 0;
  }

  .top_title_tb h2 span {
    padding: 0 0 0 20px;
    font-size: 100%;
  }

  .top_title_tb h2 span::before {
    top: 50%;
    left: 4px;
    transform: translate(0, -50%);
    width: 10px;
    height: 1px;
  }
}

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

  *メインビジュアル

================================================================================================================================== */
.mainvisual {
  position: relative;
  z-index: 1;
  height: clamp(600px, 100vh, 960px);
  padding: 50px 50px 0;
  overflow: hidden;
}

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

/* スクロール */
.mv_scroll {
  position: absolute;
  bottom: 14px;
  left: 21px;
  z-index: 10;
  display: flex;
  justify-self: center;
  align-items: center;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

.mv_scroll_text {
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--text-color);
  text-box: trim-both cap alphabetic;
  font-family: var(--font-en);
  font-weight: 400;
  font-style: normal;
}

.mv_scroll_arrow {
  display: block;
  width: 1px;
  height: 30px;
  background: var(--line-color);
  position: relative;
  animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(10px);
  }

  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* ----- スライダーの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 {
  position: relative;
  width: 100%;
  height: 100%;
}

.mvImg::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(0 0 0 / .4), rgb(0 0 0 / .2));
  z-index: 1;
}

.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;
  bottom: 15%;
  left: 5%;
  z-index: 3;
  width: 100%;
}

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

.mvCatch p {
  display: block;
  font-size: 160%;
  line-height: 2;
  letter-spacing: .1em;
  color: #fff;
  filter: drop-shadow(0 0 5px #4c403e);
}

@media screen and (max-width: 1580px){
  .mvCatch p{
    font-size: 160%;
  }
}

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

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

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

.open_bnr {
  position: absolute;
  bottom: 50px;
  display: inline-block;
  padding: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

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

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

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

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

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

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

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

.sp_only {
  display: none;
}

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

  /* スクロール */
  .mv_scroll {
    bottom: 20px;
    left: 15px;
  }

  .mv_scroll_text {
    font-size: 12px;
    color: #fff;
  }

  .mv_scroll_arrow {
    background: #fff;
  }

  /* ----- スライダーの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: 120px;
    left: 0;
    transform: translateY(0);
  }

  .mvCatch .inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .mvCatch p {
    font-size: min(4vw, 16px);
    line-height: 1.8;
    letter-spacing: .08em;
    text-align: left;
  }

  .mvContents {
    display: none;
  }

  .sp_only {
    display: block;
    background: none !important;
  }

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

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

  .open_bnr {
    position: static;
    width: 100%;
    max-width: 350px;
    border-radius: 0;
  }

  .open_bnr>* {
    width: 100%;
    height: auto;
    padding: 15px 20px;
    border-radius: 0;
  }
}

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

  *バナーエリア

================================================================================================================================== */
/* ----- 共通設定 ----- */
.top_banner_wrap {
  position: relative;
}

.top_banner_wrap::before {
  position: absolute;
  z-index: -1;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 50px);
  background: url(../images/bnr_bg.jpg) no-repeat left top / cover;
}

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

/* ----- グリッドバナー ----- */
.top_banner .inner {
  padding-top: 80px;
  padding-bottom: 60px;
}

.top_banner02 .inner {
  padding-top: 0;
}

.banner_grid ul {
  display: flex;
  flex-flow: wrap;
  gap: 30px;
}

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

/* ----- スライダーバナー ----- */
[id^="bannerSlider"] .splide {
  position: relative;
  z-index: 1;
}

[id^="bannerSlider"] .splide__inner {
  position: relative;
  z-index: 1;
  padding: 0;
}

/* スライドの設定  */
[id^="bannerSlider"] .splide__slide {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 641px) {
  [id^="bannerSlider"] .splide__slide {
    width: 540px !important;
    min-height: 200px;
  }
}

[id^="bannerSlider"] .splide__slide img {
  transition: .2s;
}

[id^="bannerSlider"] .splide__slide a:hover img {
  opacity: .5;
}

/* スライダーのArrowボタン */
[id^="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%);
}

[id^="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;
}

[id^="bannerSlider"] .bannerSlider_arrow:hover i {
  background: var(--text-color);
}

[id^="bannerSlider"] .bannerSlider_arrow_prev {
  left: -23px;
}

[id^="bannerSlider"] .bannerSlider_arrow_prev span::before {
  content: "\f104";
}

[id^="bannerSlider"] .bannerSlider_arrow_next {
  right: -23px;
}

[id^="bannerSlider"] .bannerSlider_arrow_next span::before {
  content: "\f105";
}

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

[id^="bannerSlider"] .bannerSlider_page {
  width: 10px;
  height: 10px;
  background-color: #e8e8e8;
  border-radius: 50%;
  transition: background 0.2s;
}

[id^="bannerSlider"] .bannerSlider_page.is-active {
  background: var(--main-color);
}

/* ==============================================
  *SP バナーエリア（追加コンテンツ）
============================================== */
@media screen and (max-width: 640px) {
  .top_banner_wrap::before {
    background: url(../images/bnr_bg_sp.jpg) no-repeat left top / cover;
  }

  .top_banner .inner {
    padding-top: 10px;
    padding-bottom: 30px;
  }

  /* ----- グリッドバナー ----- */
  .banner_grid ul {
    gap: 10px;
  }

  .banner_grid li {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  /* ----- スライダーバナー ----- */
  [id^="bannerSlider"] .splide__inner {
    position: relative;
    z-index: 1;
  }

  /* [id^="bannerSlider"] .splide__slide{
    width: auto!important;
    min-height: unset;
  } */

  /* スライダーのArrowボタン */
  [id^="bannerSlider"] .bannerSlider_arrow {
    width: 35px;
    height: 35px;
  }

  [id^="bannerSlider"] .bannerSlider_arrow_prev {
    left: -20px;
  }

  [id^="bannerSlider"] .bannerSlider_arrow_next {
    right: -20px;
  }

  [id^="bannerSlider"] .bannerSlider_arrow i {
    padding: 0 0 1px 0;
  }

  /* ページネーション */
  [id^="bannerSlider"] .bannerSlider_pagination {
    gap: 12px;
    margin: 20px auto 0;
  }

  [id^="bannerSlider"] .bannerSlider_page {
    width: 8px;
    height: 8px;
  }
}

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

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

================================================================================================================================== */
.clinic .inner {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 60px;
  padding-bottom: 100px;
}

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

.news_title_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.news_title_wrap .btn01 {
  margin-top: 0;
}

/* ----- 医院概要 ----- */
.clinic .info .speciality {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px auto 0;
  padding: 20px;
  background: #ffffff;
}

.clinic .info .speciality .title {
  flex-shrink: 0;
  width: fit-content;
  padding: 10px 30px;
  background: var(--main-color);
  color: #ffffff;
  text-align: center;
}

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

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

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

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

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

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

.clinic .info address .tel {
  margin-top: 15px;
  padding: 5px 0 5px 50px;
  font-size: 30px;
  line-height: 1;
}

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

.clinic .info address .fax {
  margin-top: 15px;
  padding: 5px 0 5px 50px;
  line-height: 1;
}

.clinic .info address .fax p {
  font-size: 30px;
}

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

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

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

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

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

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

  .news_title_wrap {
    margin-bottom: 40px;
  }

  .news_title_wrap .top_title {
    margin-bottom: 0;
  }

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

  /* ----- 医院概要 ----- */
  .clinic .info .speciality {
    flex-flow: column;
    gap: 10px;
    padding: 15px;
  }

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

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

  *ご挨拶

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

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

.greeting_flex {
  display: flex;
  align-items: center;
}

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

.greeting_left {
  position: relative;
  z-index: 1;
  width: 55%;
  flex-shrink: 0;
  padding: 0px 40px 10px 0px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.95));
}

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

.greeting_text h3 {
  letter-spacing: 0.1em;
  margin-bottom: 18px !important;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-color);
  font-size: 150%;
}

.greeting_profile {
  margin-top: 2rem;
  line-height: 1.75;
}

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

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

.greeting_profile .name span {
  font-size: 80%;
  margin-right: 12px;
}

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

.greeting_right {
  position: relative;
  margin-left: -300px;
}

.greeting_img {
  position: relative;
}

.greeting_img::before {
  position: absolute;
  z-index: -1;
  bottom: -50px;
  right: -50px;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/doctor_bg.jpg) no-repeat center/cover;
}

.greeting_img::after {
  position: absolute;
  content: "";
  bottom: -38px;
  left: 0;
  transform: translateX(170%);
  width: 20%;
  height: auto;
  aspect-ratio: 7 / 9;
  background: url(../images/official_character.png) no-repeat center/cover;
}

.greeting_message {
  position: absolute;
  top: -80px;
  right: 10px;
}

.greeting_right .top_message {
  display: flex;
  flex-direction: row-reverse;
}

.greeting_right .top_message span {
  display: block;
  width: fit-content;
  height: fit-content;
  background: rgb(255 255 255 / .9);
  padding: 26px 16px;
  font-size: 140%;
  letter-spacing: .14em;
  line-height: 1.8;
  white-space: nowrap;
  box-shadow: 0 0 10px rgb(0 0 0 / .05);
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

.greeting_message>p span:nth-of-type(2) {
  margin: 16px 12px 0 0;
}

/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {
  .greeting .top_title {
    margin-bottom: 50px;
  }

  .greeting_flex {
    flex-flow: column-reverse;
    gap: 18vw;
  }

  .greeting_left {
    width: 100%;
    padding: 0;
    background: transparent;
  }

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

  .greeting_profile {
    text-align: center;
  }

  .greeting_btn {
    margin-top: 40px;
  }

  .greeting_right {
    margin-left: 0;
  }

  .greeting_message {
    top: -40px;
    right: -10px;
  }

  .greeting_message>p span:nth-of-type(2) {
    margin: 10px 8px 0 0;
  }

  .greeting_right .top_message span {
    padding: 10px;
    font-size: min(3.5vw, 15px);
    white-space: unset;
  }

  .greeting_img::before {
    bottom: -15px;
    right: -15px;
  }

  .greeting_img::after {
    bottom: -12px;
    left: 10px;
    width: 80px;
    transform: translate(0);
  }
}

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

  *診療案内

================================================================================================================================== */
.medical {
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url(../images/medical_bg.jpg) no-repeat center/cover !important;
}

.medical .top_title {
  color: #ffffff;
}

.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 40px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
}

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

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

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

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

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

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

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

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

/* ----- 先頭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.2), rgba(255, 255, 255, 0.2)), url(../images/medical_bg_sp.jpg) no-repeat center/cover !important;
  }

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

  /* ----- 先頭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%;
  }
}

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

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

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

.feature::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  z-index: -1;
  width: 100%;
  height: calc(100% - 230px);
  background: url(../images/feature_bg.jpg) no-repeat center/cover;
}

.feature .inner {
  position: relative;
  z-index: 1;
  padding-top: 0;
  padding-bottom: 290px;
}

.feature_title_wrap {
  position: relative;
  width: 90%;
  padding: 80px 0;
  margin-bottom: 72px;
}

.feature_title_wrap::before {
  position: absolute;
  z-index: -1;
  content: "";
  top: 0px;
  left: -100px;
  width: 110%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url(../images/feature_head_bg.jpg) center center / cover no-repeat;
}

.feature .top_title {
  margin-bottom: 30px;
}

.feature .top_title_left h2::before {
  background: #fff;
}

.feature .top_title .eng, .feature .top_title h2 {
  color: #fff;
}

.top_feature_message {
  width: 90%;
}

.top_feature_message>* {
  color: #fff;
}

.top_feature_message .top_subheading {
  margin-bottom: 6px;
  font-size: 150%;
  letter-spacing: .14em;
  line-height: 1.8;
}

.feature_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.feature_item {
  position: relative;
  display: flex;
  flex-flow: column;
}

.feature_item:nth-of-type(even) {
  padding-top: 60px;
}

.feature_num {
  position: absolute;
  top: 33px;
  right: 13px;
  font-size: 330%;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--main-color);
  font-family: var(--font-en);
  font-weight: 400;
  font-style: normal;
}

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

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

.feature_img {
  position: relative;
}

.feature_img::before {
  position: absolute;
  top: -1px;
  right: 0;
  content: "";
  width: 170px;
  height: auto;
  aspect-ratio: 1;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  background: rgb(255 255 255 / .8);
}

.feature_title {
  display: flex;
  flex-flow: column;
  justify-content: center;
  margin-bottom: 14px !important;
}

.feature_title h3 {
  padding: 6px;
  background: var(--main-color);
  color: #fff;
  font-size: 140%;
  letter-spacing: .14em;
  line-height: 1.75;
  text-align: center;
}

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

/* ---- 横並びボタン ----- */
.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::before {
    height: 100%;
    background: url(../images/feature_bg_sp.jpg) no-repeat center/cover;
  }

  .feature .inner {
    padding-bottom: 170px;
  }

  .feature .top_title {
    margin-bottom: 24px;
  }

  .feature_title_wrap {
    width: 100%;
    margin-bottom: 40px;
    padding: 38px 0px 40px;
  }

  .feature_title_wrap::before {
    left: -20px;
    width: calc(100% + 40px);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url(../images/feature_head_bg_sp.jpg) center center / cover no-repeat;
  }

  .top_feature_message {
    width: 100%;
  }

  .top_feature_message .top_subheading {
    font-size: 130%;
  }

  .feature_message_content {
    font-size: 90%;
  }

  .feature_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }

  .feature_item:nth-of-type(even) {
    padding-top: 0;
  }

  .feature_img::before {
    width: 130px;
  }

  .feature_num {
    top: 24px;
    right: 11px;
    font-size: 290%;
  }

  .feature_title {
    min-height: auto;
    margin-bottom: 15px !important;
  }

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

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

  *症状から探す(皮膚科)

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

.search {
  background: url(../images/search_bg.jpg) no-repeat center/cover;
}

.search::before {
  position: absolute;
  z-index: 0;
  bottom: 70px;
  right: 0;
  content: "";
  width: 60%;
  height: 50%;
  background: var(--sub-color);
  opacity: .2;
}

section .inner_search {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.search .tab_list {
  gap: 10px;
  margin: 0 auto 40px;
}

.search .tab_list .tab {
  position: relative;
  padding: 18px 20px;
  letter-spacing: 0.1em;
}

.search .tab_list .tab.active {
  background: var(--sub-color);
}

.search .tab.active::after {
  position: absolute;
  content: "";
  z-index: 1;
  bottom: -17px;
  left: 50%;
  display: block;
  width: 30px;
  height: auto;
  aspect-ratio: 5 / 3;
  background: var(--sub-color);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform: translateX(-50%);
}

.search .panel {
  position: relative;
  z-index: 1;
  padding: 0;
  background: rgb(255 255 255 / .6);
  padding: 30px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 10px;
}

.search_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  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;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  min-height: 74px;
  padding: 16px 20px 14px;
  background: rgb(255 255 255 / .9);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 10px;
  backdrop-filter: blur(10px);
  color: var(--text-color);
  line-height: 1.6;
}

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

.search_list li a::before {
  position: absolute;
  content: "";
  z-index: 1;
  bottom: 5px;
  right: 5px;
  display: block;
  width: 10px;
  height: auto;
  aspect-ratio: 1;
  background: var(--sub-color);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.search_list li a span {
  font-size: 90%;
}

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

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

.search_img img {
  object-fit: cover;
}

@media screen and (min-width: 1500px) {
  .search_img img {
    min-height: 502px;
  }
}

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

.panel_flex .search_list li {
  width: calc((100% / 3) - (20px / 3));
}

/* ==============================================
  *SP 症状から探す(皮膚科)
============================================== */
@media screen and (max-width: 640px) {
  .search {
    background: url(../images/search_bg_sp.jpg) no-repeat center / cover;
  }

  .search::before {
    bottom: 40px;
    width: 80%;
    height: 30%;
  }

  section .inner_search {
    display: block;
  }

  .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: 110%;
    transform: translate(0, 0) !important;
  }

  .search .tab.active::after {
    content: none;
  }

  .search .panel {
    padding: 20px;
  }

  .search_list li {
    width: 100%;
  }

  .search_list li a {
    min-height: auto;
    padding: 12px;
    font-size: 90%;
  }

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

  .search_img {
    width: 100%;
  }

  .panel_flex .search_list {
    width: 100%;
    gap: 10px;
  }

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

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

  *症状から探す(美容皮膚科)

================================================================================================================================== */
.aesthetic_wrap {
  background: linear-gradient(rgb(0 0 0 / .6), rgb(0 0 0 / .6)), url(../images/aesthetic.jpg) no-repeat center/cover;
}

.search_aesthetic {
  position: relative;
}

.search_aesthetic .top_title_tb h2,
.search_aesthetic .top_title_tb .eng {
  color: #fff;
}

.search_aesthetic .tab_list {
  gap: 10px;
  margin: 0 auto 40px;
}

.search_aesthetic .tab_list .tab {
  position: relative;
  padding: 18px 20px;
  letter-spacing: 0.1em;
}

.search_aesthetic .tab_list .tab.active {
  background: var(--main-color);
}

.search_aesthetic .tab.active::after {
  position: absolute;
  content: "";
  z-index: 1;
  bottom: -17px;
  left: 50%;
  display: block;
  width: 30px;
  height: auto;
  aspect-ratio: 5 / 3;
  background: var(--main-color);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform: translateX(-50%);
}

.search_aesthetic .panel {
  position: relative;
  z-index: 1;
  padding: 0;
  background: rgb(255 255 255 / .6);
  padding: 30px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 10px;
}

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

.search_aesthetic .search_list li a::before {
  background: var(--main-color);
}

/* ==============================================
  *SP 症状から探す(美容皮膚科)
============================================== */
@media screen and (max-width: 640px) {
  .aesthetic_wrap {
    background: linear-gradient(rgb(0 0 0 / .6), rgb(0 0 0 / .6)), url(../images/aesthetic_sp.jpg) no-repeat center/cover;
  }

  .search_aesthetic .tab_list {
    flex-flow: column;
    gap: 7px;
    margin: 0 0 15px;
  }

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

  .search_aesthetic .tab.active::after {
    content: none;
  }

  .search_aesthetic .panel {
    padding: 20px;
  }

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


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

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

==================================================================================================================================*/
#columnSlider .inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 0;
}

#columnSlider .top_title {
  position: absolute;
  z-index: 1;
  margin-bottom: 0;
}

#columnSlider .top_title h2::after {
  display: none;
}

/* ----- コラムスライダー設定 ----- */
#columnSlider .splide {
  width: 100%;
  padding-top: 100px;
}

#columnSlider .splide__list {
  align-items: flex-start;
  width: 100%;
}

/* スライダーのArrowボタン */
#columnSlider .splide__arrow {
  position: absolute;
  top: 10px;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  cursor: pointer;
  overflow: hidden;
  transform: translateZ(0px);
  transition: background 0.2s, color 0.2s;
}

#columnSlider .splide__arrow:hover {
  background: var(--main-color);
  color: #fff;
}

#columnSlider .splide__arrow span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: background 0.2s;
}

#columnSlider .splide__arrow span::before {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
}

#columnSlider .splide__arrow--prev {
  right: 60px;
}

#columnSlider .splide__arrow--prev span::before {
  content: "\f104";
}

#columnSlider .splide__arrow--next {
  right: 0;
}

#columnSlider .splide__arrow--next span::before {
  content: "\f105";
}

#columnSlider .splide__slide {
  display: flex;
  align-items: center;
  min-height: 200px;
}

/* ----- ページネーション ----- */
#columnSlider .splide__pagination {
  position: absolute;
  top: 21px;
  right: 150px;
  z-index: 1;
  display: flex;
  gap: 15px;
}

#columnSlider .columnSlider-page {
  width: 10px;
  height: 10px;
  background-color: #e8e8e8;
  border-radius: 50%;
  transition: background 0.2s;
}

#columnSlider .columnSlider-page.is-active {
  background: var(--main-color);
}

/* ----- コラム個別 ----- */
#columnSlider .column_item a {
  width: 100%;
}

#columnSlider .column_item_thum {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  margin: 0 0 15px;
  overflow: hidden;
}

#columnSlider .column_item_thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;

  aspect-ratio: 13 / 9;
}

#columnSlider .column_item a:hover .column_item_thum img {
  transform: scale(1.1);
}

#columnSlider .column_item:first-child .column_item_thum::before {
  content: "New";
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-self: center;
  width: 90px;
  height: 90px;
  padding: 10px 35px 0 0;
  background: var(--sub-color);
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0.075em;
  opacity: 0.9;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}

#columnSlider .column_info {
  display: flex;
  flex-flow: wrap;
  gap: 15px;
  margin: 0 0 15px;
  color: #747474;
  font-size: 90%;
}

#columnSlider .column_date {
  flex-shrink: 0;
}

#columnSlider .column_info ul {
  display: flex;
  flex-flow: wrap;
  gap: 5px;
}

#columnSlider .column_info ul li {
  min-width: 80px;
  padding: 2px 10px;
  background: var(--main-color);
  color: #ffffff;
  font-size: 90%;
  text-align: center;
}

#columnSlider .column_title {
  color: var(--text-color);
  font-size: 105%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}

#columnSlider .column_item a:hover .column_title {
  color: var(--main-color);
}

/*==============================================
  *SP　医療コラム
==============================================*/
@media screen and (max-width: 640px) {
  #columnSlider .inner {
    flex-flow: column;
    gap: 0;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px 70px;
  }

  #columnSlider .top_title {
    position: relative;
    margin: 0 auto 40px;
  }

  #columnSlider .splide {
    margin-right: -40px;
    padding-top: 70px;
  }

  #columnSlider .splide__arrow {
    width: 50px;
    height: 40px;
  }

  #columnSlider .splide__arrow--next {
    right: 20px;
  }

  #columnSlider .splide__arrow--prev {
    right: 80px;
  }

  #columnSlider .splide__pagination {
    top: 20px;
    right: auto;
    left: 0;
    justify-content: flex-end;
    gap: 13px;
    transform: translate(0);
  }

  #columnSlider .columnSlider-page {
    width: 8px;
    height: 8px;
  }

  #columnSlider .splide__slide:first-child .column_item_thum::before {
    width: 80px;
    height: 80px;
    padding: 13px 25px 0 0;
  }
}

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

  *無限スライダー

================================================================================================================================== */
#infinitySlider {
  margin-top: -190px;
}

#infinitySlider .splide__list {
  gap: 30px;
}

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

#infinitySlider .splide__slide:nth-of-type(even) {
  padding-top: 30px;
}

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

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

  #infinitySlider .splide__slide:nth-of-type(even) {
    padding-top: 20px;
  }
}

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

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

==================================================================================================================================*/
.pickup .inner {
  width: 100%;
  padding-bottom: 0;
}

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

.pickup_item {
  display: flex;
  flex-flow: row-reverse;
  gap: 50px;
  align-items: center;
}

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

.pickup_img img {
  width: 100%;
  height: auto;
}

.pickup_inner {
  position: relative;
}

.pickup_title {
  margin-bottom: 50px;
  line-height: 1.5;
}

.pickup_title h2, .pickup_title h3 {
  position: relative;
  padding-left: 35px;
  font-size: 130%;
  color: #fff;
}

.pickup_title h2::before,
.pickup_title h3::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 2px;
  width: 22px;
  height: 1px;
  background: #fff;
}

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

.pickup_title .eng {
  display: inline-block;
  color: #fff;
  font-size: 460%;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-transform: uppercase;
  opacity: 0.8;
  font-family: var(--font-en);
  font-weight: 400;
  font-style: normal;
}

.pickup_text {
  margin-bottom: 30px;
  color: #fff;
}

.pickup_link {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
  margin-top: auto;
}

.pickup_link .pickup_btn {
  display: flex;
  width: calc((100% / 2) - (10px / 2));
  height: auto;
}

.pickup_link .pickup_btn a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 10px 45px 10px 35px;
  background: rgb(255 255 255 / .9);
  border: 1px solid var(--main-color);
  color: var(--text-color);
  font-size: 100%;
  line-height: 1.6;
  letter-spacing: 0.15em;
  vertical-align: bottom;
  transition: background 0.2s, color 0.2s;
}

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

.pickup_link .pickup_btn a::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--main-color);
  transition: 0.2s;
}

.pickup_link .pickup_btn a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 30px;
  height: 1px;
  background: var(--main-color);
  transition: 0.2s;
}

.pickup_link .pickup_btn a:hover::before {
  background: #fff;
  transform: translate(5px, -50%);
}

.pickup_link .pickup_btn a:hover::after {
  width: 35px;
  background: #fff;
}

.pickup_link .pickup_btn a span {
  font-size: 90%;
}

/* 偶数 */
.pickup_item:nth-child(even) {
  flex-flow: row-reverse;
}

.pickup_item:nth-child(even) .pickup_inner {
  margin: 0 -70px 0 0;
}

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

  .pickup_title {
    margin-bottom: 24px;
  }

  .pickup_title h2, .pickup_title h3 {
    font-size: min(4.1vw, 18px);
  }

  .pickup_title .eng {
    font-size: min(11vw, 45px);
  }

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

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

  .pickup_link {
    gap: 8px;
    min-height: auto;
    margin-top: 20px;
  }

  .pickup_link .pickup_btn {
    width: 100%;
  }

  /* 偶数 */
  .pickup_item:nth-child(even) {
    flex-flow: column;
  }

  .pickup_item:nth-child(even) .pickup_img {
    margin: 0 0 0 auto;
  }

  .pickup_item:nth-child(even) .pickup_inner {
    margin: -30px auto 0 0;
  }
}

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

  *内科特設バナー - 追加コンテンツ

==================================================================================================================================*/
.internal_medicine .inner {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* 内科サイト準備中 */
.internal_medicine_bnr {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.internal_medicine_bnr::before {
  content: "準備中";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 0;
  color: #ffffff;
  transform: translate(-50%, -50%);
}
/* 内科サイト準備中ここまで */

.internal_medicine_bnr a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  animation: auto;
  max-width: 750px;
  min-height: 187px;
  margin: 0px auto;
  padding: 40px;
  background: url(../images/internal_medicine_bnr_bg.jpg) no-repeat center / cover;
}


.internal_medicine_bnr a:hover {
  opacity: .8;
}

.internal_medicine_bnr a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 25% 100%);
  background: rgb(83 142 171 / .9);
}

.internal_medicine_bnr a::after {
  position: absolute;
  content: "";
  z-index: 1;
  bottom: 7px;
  right: 7px;
  display: block;
  width: 20px;
  height: auto;
  aspect-ratio: 1 / 1;
  background: #fff;
  clip-path: polygon(100% 0px, 0% 100%, 100% 100%);
}

.internal_medicine_bnr_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60%;
}

.internal_medicine_bnr_title_eng {
  color: #fff;
  font-size: 18px;
  letter-spacing: .08em;
  font-family: var(--font-en);
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  opacity: .9;
}

.internal_medicine_bnr_title {
  position: relative;
  font-size: 190%;
  letter-spacing: .1em;
  line-height: 1.5;
  color: #fff;
}

/* ==============================================
  *SP 内科特設バナー
============================================== */
@media screen and (max-width:640px) {
  .internal_medicine .inner {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .internal_medicine_bnr a {
    min-height: unset;
    padding: 36px 10px;
  }

  .internal_medicine_bnr a::before {
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 15% 100%);
  }

  .internal_medicine_bnr a::after {
    width: 12px;
  }

  .internal_medicine_bnr_content {
    width: 75%;
  }

  .internal_medicine_bnr_title_eng {
    font-size: 10px;
  }

  .internal_medicine_bnr_title {
    font-size: 120%;
  }
}

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

  *料金表バナー - 追加コンテンツ

==================================================================================================================================*/
.price .inner {
  padding-top: 100px;
  padding-bottom: 0;
}

.price_bnr a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  animation: auto;
  max-width: 750px;
  min-height: 187px;
  margin: 0px auto;
  padding: 40px;
  background: url(../images/price_bnr_bg.jpg) no-repeat center / cover;
  transition: .2s;
}

.price_bnr a:hover {
  opacity: .8;
}

.price_bnr a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 25% 100%);
  background: rgb(245 160 160 / .8);
}

.price_bnr a::after {
  position: absolute;
  content: "";
  z-index: 1;
  bottom: 7px;
  right: 7px;
  display: block;
  width: 20px;
  height: auto;
  aspect-ratio: 1 / 1;
  background: #fff;
  clip-path: polygon(100% 0px, 0% 100%, 100% 100%);
}

.price_bnr_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70%;
}

.price_bnr_title_eng {
  opacity: .7;
  color: #fff;
  font-size: 18px;
  letter-spacing: .08em;
  font-family: var(--font-en);
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}

.price_bnr_title {
  position: relative;
  font-size: 190%;
  letter-spacing: .1em;
  line-height: 1.5;
  color: #fff;
}


/* ==============================================
  *SP 内科特設バナー
============================================== */
@media screen and (max-width:640px) {
  .price .inner {
    padding-top: 70px;
  }

  .price_bnr a {
    min-height: unset;
    padding: 36px 10px;
  }

  .price_bnr a::before {
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 15% 100%);
  }

  .price_bnr a::after {
    width: 12px;
  }

  .price_bnr_content {
    width: 70%;
  }

  .price_bnr_title_eng {
    font-size: 10px;
  }

  .price_bnr_title {
    font-size: 120%;
  }
}