@charset "UTF-8";

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

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

  *基本設定

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

section .inner {
  padding: 120px 0;
}

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

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

/* 切り抜く範囲 */
.parallax_img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 90%;
  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.title_left {
  text-align: start;
}

.top_title h2 {
  font-size: 140%;
  letter-spacing: .1em;
  color: var(--text-color-brown);
}

.top_title .eng {
  display: inline-block;
  color: var(--sub-color);
  font-size: 110px;
  line-height: 1;
  letter-spacing: .05em;
  padding: 0 0 18px .05em;
  font-family: var(--font-en);
  font-weight: 400;
  font-style: normal;
  opacity: .8;
  background: linear-gradient(#a49689 0% 60%, var(--text-color-brown) 40% 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

  .top_title .eng {
    position: relative;
    top: 10px;
    font-size: min(18vw, 70px);
    padding-bottom: 10px;
  }
}

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

  *メインビジュアル

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

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

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

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

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

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

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

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

.mvSlider .sliderBtn#mv_btnPrev span::before {
  content: "\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;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/mv_wave.png) no-repeat left bottom -1px/100% auto;
  z-index: 2;
}

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

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

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




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

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

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

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

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


/* MVバナー */
.mv_bnr {
    position: absolute;
    bottom: 90px;
    left: 0px;
    display: flex;
	align-items: flex-end;
    gap: 15px;
}

.mv_bnr>p {
    position: relative;
    width: 195px;
    height: auto;
    aspect-ratio: 1;
    color: var(--text-color-brown);
    background: url(../images/mv_bnr_icon.png) no-repeat top 43px center / 40px auto, url(../images/mv_bnr_logo.png) no-repeat right -20px bottom -10px / 170px auto;
    background-color: rgba(255, 255, 255, 0.85);
    border: 3px solid rgb(255, 255, 255);
    border-radius: 50%;
    padding-top: 87px;
    font-size: 120%;
    letter-spacing: .1em;
    text-align: center;
    line-height: 1.3;
    font-family: var(--font-jp);
    font-weight: 700;
    font-style: normal;
}

.mv_bnr>p.recovery {
    padding-top: 66px;
    background: url(../images/mv_bnr_icon02.png) no-repeat top 20px center / 40px auto, url(../images/mv_bnr_logo.png) no-repeat right -20px bottom -10px / 170px auto;
    background-color: rgba(255, 255, 255, 0.85);
}

.mv_bnr>p span {
  font-size: 140%;
  letter-spacing: .1em;
  color: var(--main-color);
}

.x_ray {
    position: absolute;
    bottom: 305px;
    max-width: 405px;
}

.x_ray a{
    display: block;
}

.x_ray a img{
	transition: .2s ease-in-out;
}

.x_ray a:hover img{
	opacity: .9
}

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

  .mvImg::before {
    background: url(../images/mv_wave_sp.png) no-repeat left bottom -1px/100% auto;
  }

  /* ----- スライダーの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 p {
    font-size: 130%;
    line-height: 1.75;
    filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff);
  }


  .mvContents .inner>*:not(.mv_bnr.schedule) {
    display: none;
  }

.mv_bnr.mv_bnr.schedule {
        justify-content: center;
        gap: 10px;
        width: 100%;
        bottom: 20px;
        left: 0;
        padding: 0 10px;
    }
	
	.mv_bnr>p {
    width: 40% !important;
    font-size: min(4vw, 18px);
    line-height: 1.2;
    letter-spacing: .05em;
	padding-top: 17vw;
    background: url(../images/mv_bnr_icon.png) no-repeat top 7vw center / 32px auto, url(../images/mv_bnr_logo.png) no-repeat right -20px bottom -10px / 140px auto;
    background-color: rgba(255, 255, 255, 0.85);
}
	
	.mv_bnr>p.recovery {
    padding-top: 14vw;
    background: url(../images/mv_bnr_icon02.png) no-repeat top 3.5vw center / 32px auto, url(../images/mv_bnr_logo.png) no-repeat right -20px bottom -10px / 140px auto;
    background-color: rgba(255, 255, 255, 0.85);
	font-size: min(3.6vw, 18px);
}

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

  .sp_only_contents>* {
    position: static;
	z-index: 1;
  }

  .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_contents .mv_bnr.schedule {
    display: none;
  }
}

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

  *バナーエリア

================================================================================================================================== */
/* ----- 共通設定 ----- */
.top_banner .inner {
  padding-top: 40px;
  padding-bottom: 30px;
}

.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 {
  position: relative;
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 15px;
  background: rgb(255, 255, 255);
  box-shadow: rgba(92, 181, 49, 0.2) 0px 0px 20px
}

.top_banner .input .banner_slide .slide_img {
  position: absolute;
  right: 0;
  bottom: 0;
  flex-shrink: 0;
  width: 100px;
  height: auto;
}

.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 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px auto 10px;
  padding: 5px;
  color: var(--main-color);
  font-size: 130%;
  letter-spacing: .08em;
  text-align: center;
  line-height: 1.5;
  font-family: var(--font-jp);
  font-weight: 700;
  font-style: normal;
}

.top_banner .input .slide_title::before,
.top_banner .input .slide_title::after {
  width: 3px;
  height: 40px;
  background-color: #2589d0;
  content: '';
}

.top_banner .input .slide_title::before {
  transform: rotate(-35deg);
  margin-right: 30px;
}

.top_banner .input .slide_title::after {
  transform: rotate(35deg);
  margin-left: 30px;
}

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

.top_banner .input .slide_content .mv_bnr_list_qa {
  display: flex;
  flex-flow: wrap;
  gap: 8px 16px;
  padding: 8px;
}

.top_banner .input .slide_content .mv_bnr_list_qa li {
  position: relative;
  padding: 0 0 0 10px;
}

.top_banner .input .slide_content .mv_bnr_list_qa li:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--main-color);
  border-radius: 50%;
}

/* ----- グリッドバナー ----- */
.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;
  width: 400px !important;
}

/* スライダーの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) {
  .top_banner .inner {
    padding: 50px 20px 30px;
  }

  /* ----- グリッドバナー ----- */
  .banner_grid li {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  /* ----- スライダーバナー ----- */
  #bannerSlider .splide__inner {
    position: relative;
    z-index: 1;
    padding: 0;
  }

  #bannerSlider .splide__slide {
    width: 100% !important;
  }

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

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

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

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

==================================================================================================================================*/
.top_contents_wrap {
  position: relative;
  background: url(../images/top_contents_wrap_bg.jpg) no-repeat left top/cover;
}

.top_contents_wrap::before {
  position: absolute;
  top: 0;
  right: 0px;
  content: "";
  width: 14%;
  height: auto;
  aspect-ratio: 284 / 217;
  background: url(../images/medical_leaf.png) center center / cover no-repeat;
  transform: translateY(-60%) rotateY(180deg);
  z-index: 1;
}

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

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

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

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

.clinic .news .top_title .eng {
  font-size: 76px;
  padding-bottom: 14px;
}

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

/* ----- 医院概要 ----- */
.clinic .info .inner {
  display: flex;
  gap: 60px;
  padding: 30px 0 120px;
}

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

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

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

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

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

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

.clinic .info address .tel {
  margin-top: 15px;
  padding: 2px 0 7px 50px;
  font-size: 32px;
  line-height: 1;
  font-family: var(--font-jp);
  font-weight: 700;
  font-style: normal;
}

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

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

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

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

.clinic .info .speciality {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px auto 0px;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: rgb(240, 240, 240) 0px 0px 30px
}

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

}

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

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

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

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

.clinic .info .googlemap iframe {
  height: 675px;
  border-radius: 12px;
}

.bnr_medicaldoc{
	display:flex;
	justify-content:center;
	gap:20px;
	margin:20px auto 40px;
}

.bnr_medicaldoc a{
	width:800px;
	height:auto;
}

.bnr_medicaldoc a:hover{
	opacity:0.7;
}

.bnr_medicaldoc a img{
	width:100%;
	height:auto;
}

@media screen and (max-width: 640px) {
  .top_contents_wrap {
    background: url(../images/top_contents_wrap_bg_sp.jpg) no-repeat left top/cover;
  }

  .top_contents_wrap::before {
    width: 24%;
	z-index: 0;
  }

  .clinic .news .top_title .eng {
    font-size: 60px;
    padding-bottom: 10px;
  }

  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 24px 20px 60px;
  }

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

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

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

  .clinic .info address .tel {
    padding-top: 4px;
  }

  .clinic .info address .location {
    line-height: 1.6;
  }

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

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

  .clinic .info .googlemap iframe {
    height: 280px;
  }
	
.bnr_medicaldoc {
    margin: 20px 10px 40px;
}	
}


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

  *ご挨拶

================================================================================================================================== */
.greeting {
  position: relative;
  background: url(../images/greeting_wave_bottom.png) no-repeat left bottom -1px/100% auto;
  padding-bottom: 80px;
}

.greeting::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: auto;
  height: 70%;
  max-height: 950px;
  aspect-ratio: 20 / 23;
  background: url(../images/greeting_logo_gray.svg) no-repeat center / cover;
  opacity: .8;
  z-index: -1;
}

.greeting .parallax_wrap {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 400px;
}

.greeting .parallax {
  width: 100%;
  height: 100%;
}

.greeting .parallax_img {
  width: 100%;
}

.greeting .parallax_img::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../images/greeting_parallax.jpg) no-repeat center/cover;
}

.greeting .inner {
  padding-top: 100px;
  padding-bottom: 60px;
}

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

.greeting .top_title {
  margin-bottom: 70px;
}

.greeting .top_title .eng {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-left: 0;
}

.greeting .top_title h2 {
  color: #fff;
}

.greeting_flex {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  gap: 60px;
  justify-content: space-between;
  padding: 64px 60px 60px 0;
}

.greeting_flex::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 90%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .9), rgba(255, 255, 255, .8));
  border-radius: 12px;
  z-index: -1;
}

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

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

.greeting_text {
  margin-bottom: 40px;
}

.greeting_text h3 {
  font-size: 160%;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-bottom: 32px !important;
}

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

.greeting_items {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}

.greeting_profile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  line-height: 1.75;
  text-align: center;
  font-family: var(--font-jp);
  font-weight: 700;
  font-style: normal;
}

.greeting_profile .position {
  font-size: 20px;
  line-height: 1;
}

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

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

.greeting_btn {
  text-align: center;
}

.greeting_right {
  position: relative;
  margin-top: -120px;
}

.greeting_img {
  position: relative;
}

.greeting_right .greeting_img img {
  border-radius: 12px;
}

/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {
  .greeting {
    padding-bottom: 24px;
    background: url(../images/greeting_wave_bottom_sp.png) no-repeat left bottom -1px/100% auto;
  }

  .greeting::before {
    max-height: 420px;
  }

  .greeting .parallax_wrap {
    height: 750px;
  }

  .greeting .parallax_img::before {
    background: url(../images/greeting_parallax_sp.jpg) no-repeat center / cover;
  }

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

  .greeting .top_title {
    margin-bottom: 40px;
  }

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

  .greeting_flex::before {
    content: none;
  }

  .greeting_left {
    position: relative;
    width: 100%;
    z-index: 1;
    padding: 40px 20px 0;
    margin-top: -100px;
  }

  .greeting_left::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .8), rgba(255, 255, 255, .6));
    border-radius: 12px;
    z-index: -1;
  }

  .greeting_text h3 {
    font-size: 140%;
    margin-bottom: 28px !important;
  }

  .greeting_text {
    margin-bottom: 28px;
  }

  .greeting_items {
    display: block;
  }

  .greeting_profile .position {
    font-size: 18px;
  }

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

  .greeting_profile .name span {
    font-size: 80%;
  }

  .greeting_right {
    margin-top: 0;
  }

  .greeting_img {
    width: 80%;
    margin: 0 auto 30px;
  }

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

/* プリント用設定 */
@media print {
  .greeting .parallax_img::before {
    position: inherit;
  }
}

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

  *診療案内

================================================================================================================================== */
.medical {
  position: relative;
  background: url(../images/medical_wave_bottom.png) no-repeat left bottom -1px/100% auto, linear-gradient(rgba(92, 181, 49, 0.1), rgba(92, 181, 49, 0.1)), url(../images/medical_bg.jpg) no-repeat center/cover;
  padding-bottom: 80px;
}

.medical::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 16%;
  height: auto;
  aspect-ratio: 284 / 217;
  background: url(../images/medical_leaf.png) no-repeat center/cover;
  transform: translateY(-30%);
}

.medical::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: 16%;
  height: auto;
  aspect-ratio: 284 / 217;
  background: url(../images/medical_leaf.png) no-repeat center / cover;
  transform: translateY(30%) rotateY(180deg);
}

.medical .top_title {
  color: #ffffff;
}

.medical .top_title span {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.medical .top_title h2 {
  color: #fff;
}

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

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

.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, .85);
  transition: .2s ease-in-out;
  border: 3px solid #fff;
  border-radius: 12px;
  text-align: center;
}

.medical_item:hover .medical_inner {
  background: #fff;
}

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

.medical_icon {
  display: grid;
  place-items: center;
  width: 40%;
  height: auto;
  aspect-ratio: 1;
  margin: 0 auto 20px !important;
  background: rgba(255, 255, 255, .3);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(92, 181, 49, .5);
  transition: .2s ease-in-out;
}

.medical_item:hover .medical_icon {
  transform: translateY(-8px);
  background: var(--bg-color);
}

.medical_icon img {
  width: 60%;
}

.medical_title h3 {
  color: var(--text-color-brown);
  font-size: 150%;
  letter-spacing: .1em;
  line-height: 1.4;
}

.medical_title_eng {
  margin-top: 8px;
  color: var(--main-color);
  font-size: 15px;
  line-height: 1;
  letter-spacing: .05em;
  text-align: center;
  font-family: var(--font-en);
  font-weight: 400;
  font-style: normal;
}

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

/* ----- 先頭3つの設定----- */
.medical_item:nth-of-type(-n + 3) {
  width: calc((100% - 40px) / 3);
}

.medical_item:nth-of-type(-n + 3) .medical_inner {
  width: 100%;
  min-height: 350px;
}

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

.medical_item:nth-of-type(-n + 3) .medical_inner .medical_icon {
  width: 34%;
  max-width: 140px;
  margin: 0 auto 20px !important;
}

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

/* ==============================================
  *SP 診療案内
============================================== */
@media screen and (max-width: 640px) {
  .medical {
    background: url(../images/medical_wave_bottom_sp.png) no-repeat left bottom -1px/100% auto, linear-gradient(rgba(92, 181, 49, 0.1), rgba(92, 181, 49, 0.1)), url(../images/medical_bg_sp.jpg) no-repeat center/cover;
    padding-bottom: 0;
  }

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

  .medical::before, .medical::after {
    width: 30%;
  }

  .medical_list {
    gap: 14px;
  }

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

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

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

  .medical_icon {
    width: 44%;
  }

  .medical_title h3 {
    font-size: min(3.8vw, 18px);
    letter-spacing: .08em;
  }

  .medical_title_eng {
    font-size: 8px;
    line-height: 1.5;
  }

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

  .medical_item:nth-of-type(-n + 3) .medical_inner.medical_inner {
    padding: 36px 20px;
    min-height: auto;
  }

  .medical_item:nth-of-type(-n + 3) .medical_inner .medical_icon {
    width: 26%;
    min-height: auto;
  }

  .medical_item:nth-of-type(-n + 3) .medical_inner .medical_title h3 {
    font-size: 120%;
  }

  .medical_item:nth-of-type(-n + 3) .medical_inner .medical_title_eng {
    font-size: 14px;
  }
}

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

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

================================================================================================================================== */
.feature {
  background: url(../images/feature_bg_texture01.png) no-repeat left top 330px/14.84375% auto, url(../images/feature_bg_texture02.png) no-repeat right top 30px/21% auto, url(../images/feature_bg_texture03.png) no-repeat left bottom 100px/15.78125% auto, url(../images/feature_bg_texture04.png) no-repeat right bottom/ 34% auto;
  background-color: var(--bg-color);
}

.feature .inner {
  padding-top: 60px;
}

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

.feature_item {
  position: relative;
  display: flex;
  flex-flow: column;
  height: auto;
  background: rgb(255, 255, 255);
  box-shadow: 0 0 30px rgba(240, 240, 240);
  border-radius: 12px;
}

.feature_img {
  position: relative;
}

.feature_problem_list {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 30px;
  left: 0;
}

.feature_problem_list li {
  position: relative;
  display: table;
  padding: 10px 30px;
  margin: 0 auto 0 40px;
  background: rgba(255, 255, 255, 0.85);
  border: 3px solid #fff;
  border-radius: 12px;
  font-size: 120%;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-family: var(--font-jp);
  font-weight: 700;
  font-style: normal;
}

.feature_problem_list li:nth-of-type(2) {
  margin: 0 40px 0 auto;
}

.feature_problem_list li:not(:last-of-type) {
  margin-bottom: 10px;
}

.feature_problem_list li::before {
  position: absolute;
  bottom: -8px;
  left: -16px;
  content: "";
  width: 24px;
  height: 12px;
  clip-path: polygon(75% 0px, 100% 100%, 0px 100%);
  transform: rotate(-25deg);
  background: rgb(255, 255, 255);
}

.feature_problem_list li:nth-of-type(2)::before {
  left: auto;
  right: -16px;
  transform: rotate(230deg);
}

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

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

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

.feature_title {
  margin-bottom: 16px !important;
  text-align: center;
}

.feature_title h3 {
  position: relative;
  color: var(--text-color-brown);
  font-size: 180%;
  line-height: 1.6;
  padding: 0 10px 10px;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--line-color);
}

.feature_title h3::before,
.feature_title h3::after {
  position: absolute;
  left: 30px;
  bottom: -15px;
  width: 18px;
  height: 15px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
}

.feature_title h3::before {
  background-color: var(--line-color);
}

.feature_title h3::after {
  bottom: -11px;
  background-color: #fff;
}

.feature_num {
  font-size: 140%;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: var(--font-en);
  font-weight: 400;
  font-style: normal;
  z-index: 1;
  background: linear-gradient(#a49689 0% 60%, var(--text-color-brown) 40% 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  margin-bottom: 5px;
}

.feature_num span {
  font-size: 140%;
  padding-left: 3px;
}

.feature_title_sub {
  position: relative;
  display: inline-block;
  font-size: 120%;
  letter-spacing: 0.1em;
  /* color: var(--main-color); */
  font-family: var(--font-jp);
  font-weight: 700;
  font-style: normal;
  margin-bottom: 8px !important;
}

.feature_item .feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 6px 24px;
  padding: 16px;
  background: var(--bg-color);
  border-radius: 10px;
}

.feature_item .feature_list:not(:last-of-type) {
  margin-bottom: 20px !important;
}

.feature_item .feature_list li {
  position: relative;
  padding: 0 0 0 30px;
}

.feature_item .feature_list li:before {
  content: "\f058";
  position: absolute;
  top: 6px;
  left: 7px;
  font-size: 16px;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  color: var(--main-color);
}

.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 {
    background: url(../images/feature_bg_texture01.png) no-repeat left top 20px / 14.84375% auto, url(../images/feature_bg_texture02.png) no-repeat right top 30px / 16% auto, url(../images/feature_bg_texture03.png) no-repeat left bottom 4px / 15% auto, url(../images/feature_bg_texture04.png) no-repeat right bottom / 20% auto;
    background-color: var(--bg-color);
  }

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

  .feature .top_title .eng {
    padding-bottom: 14px;
  }

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

  .feature_problem_list {
    bottom: 8px;
  }


  .feature_problem_list li {
    letter-spacing: 0;
    margin: 0 auto 0 20px;
    padding: 6px 10px;
    font-size: 90%;
  }

  .feature_problem_list li:nth-of-type(2) {
    margin: 0 20px 0 auto;
  }


  .feature_item {
    width: 100%;
  }


  .feature_inner {
    padding: 32px 20px 48px;
  }

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

  .feature_num {
    font-size: 120%;
    margin-bottom: 8px;
  }

  .feature_title h3 {
    font-size: 140%;
    padding: 0 0 7px;
  }

  .feature_title_sub {
    font-size: 100%;
    line-height: 1.6;
  }

  .feature_item .feature_list:not(:last-of-type) {
    margin-bottom: 32px !important;
  }

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

@media screen and (max-width: 370px) {
  .feature_problem_list li {
    font-size: min(3.4vw, 15px);
  }
}

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

  *病状、症状から探す

================================================================================================================================== */
.top_contents_wrap02 {
  position: relative;
  background: url(../images/top_contents_wrap02_bg.jpg) no-repeat left top/cover;
}

.search {
  position: relative;
}

.search .inner {
  padding-top: 60px;
  padding-bottom: 0;
}

.search .tab_list {
  gap: 0;
}

.search .tab_list .tab {
  padding: 16px 20px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-style: normal;
}

.search .tab_list .tab:first-of-type {
  border-radius: 12px 0 0 0;
}

.search .tab_list .tab:last-of-type {
  border-radius: 0 12px 0 0;
}

.search .panel {
  position: relative;
  z-index: 1;
  padding: 40px;
  background: rgba(255, 255, 255, .9);
  border-radius: 0 0 12px 12px;
  box-shadow: rgb(240, 240, 240) 0px 20px 30px;
}

.search_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 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;
  align-items: center;
  line-height: 1.6;
  text-align: left;
  width: 100%;
  height: 100%;
  min-height: 74px;
  padding: 10px 45px 6px 30px;
  border-bottom: 1px solid var(--line-color);
  color: var(--text-color);
}

.search_list li:nth-last-of-type(-n + 2) a {
  border-bottom: none;
}

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


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

/* 矢印の背景 */
.search_list li a::after {
  position: absolute;
  top: 50%;
  right: 15px;
  content: "\f054";
  z-index: 1;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background 0.2s;
  font-size: 10px;
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  transition: .2s ease-in-out;
}

.search_list li a:hover::after {
  right: 8px;
}

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

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

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

.panel_flex .search_list {
  width: calc(60% - 15px);
}

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

/* ==============================================
  *SP 病状、症状から探す
============================================== */
@media screen and (max-width: 640px) {
  .top_contents_wrap02 {
    background: url(../images/top_contents_wrap02_bg_sp.jpg) no-repeat left top/cover;
  }

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

  .search .tab_list {
    flex-flow: row wrap;
  }


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


  .search .panel {
    padding: 20px;
  }

  .search_list {
    gap: 10px;
  }

  .search_list li {
    width: 100%;
  }

  .search_list li a {
    min-height: auto;
    padding: 10px 40px 10px 12px;
  }

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

  .search_img {
    width: 100%;
    max-height: 220px;
  }

  .panel_flex .search_list {
    width: 100%;
  }

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

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

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

==================================================================================================================================*/
.pickup .inner {
  width: 100%;
  max-width: 1920px;
}

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

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

.pickup_img {
  position: relative;
  z-index: 1;
  width: 50%;
  flex-shrink: 0;
  height: fit-content;
}

.pickup_item:nth-of-type(odd) .pickup_img img {
  border-radius: 0 12px 12px 0;
}

.pickup_item:nth-of-type(even) .pickup_img img {
  border-radius: 12px 0 0 12px;
}

.pickup_inner {
  position: relative;
  z-index: 2;
  width: calc(50% - 60px);
  max-width: 700px;
}

.pickup_item:nth-of-type(odd) .pickup_inner {
  padding-right: 60px;
}

.pickup_item:nth-of-type(even) .pickup_inner {
  padding-left: 60px;
}

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

.pickup_title h2, .pickup_title h3 {
  font-size: 140%;
  letter-spacing: .1em;
  font-weight: 700;
  color: var(--text-color-brown);
}

.pickup_title span {
  position: relative;
  top: 10px;
  display: inline-block;
  color: var(--sub-color);
  font-size: 76px;
  line-height: 1;
  letter-spacing: .05em;
  padding: 0 0 14px .08em;
  font-family: var(--font-en);
  font-weight: 400;
  font-style: normal;
  background: linear-gradient(#a49689 0% 60%, var(--text-color-brown) 40% 100%);
  opacity: .8;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pickup_text {
  margin: 30px 0;
}

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

.pickup_link .pickup_btn {
  width: calc((100% / 2) - (10px / 2));
  height: fit-content;
}

.pickup_link .pickup_btn a {
  position: relative;
  display: block;
  padding: 15px 43px 14px 28px;
  background: linear-gradient(to right, #c8ab7f 0%, var(--sub-color) 100%);
  border-radius: 3rem;
  color: rgb(255, 255, 255);
  font-size: 100%;
  line-height: 1.6;
  letter-spacing: 0.15em;
  text-align: center;
  vertical-align: bottom;
  transition: 0.2s;
  font-family: var(--font-jp);
  font-weight: 400;
  font-style: normal;
}

.pickup_link .pickup_btn a:hover {
  filter: brightness(1.05);
  color: #fff;
}

.pickup_link .pickup_btn a::after {
  position: absolute;
  top: 50%;
  right: 15px;
  content: "\f054";
  z-index: 1;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
  font-size: 10px;
  color: var(--sub-color);
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.pickup_link .pickup_btn a:hover::after {
  right: 10px;
}

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

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

  .pickup_title h2, .pickup_title h3 {
    font-size: 20px;
  }

  .pickup_title span {
    font-size: min(13vw, 50px);
    padding-bottom: 14px;
  }

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

  .pickup_item:nth-of-type(odd) .pickup_img img {
    border-radius: 0;
  }

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

  .pickup_inner {
    width: 100%;
    width: calc(100% - 20px);
    margin: 0 auto !important;
    padding: 26px 0px !important;
  }

  .pickup_text {
    margin: 20px 0 30px;
  }

  .pickup_link {
    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-of-type(even) .pickup_img img {
    border-radius: 0;
  }

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

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

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

==================================================================================================================================*/
#columnSlider .inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 90%;
  margin: 0 auto;
  padding: 100px 0;
}

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

#columnSlider .top_title .eng {
  font-size: 76px;
  padding-bottom: 14px;
}

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

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

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

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

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

#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: 70px;
}

#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: 17px;
  right: 190px;
  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;
  border-radius: 12px;
}

#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);
  border-radius: 12px 0 0 0;
  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);
  border-radius: 4px;
  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: 70px 20px;
  }

  #columnSlider .top_title {
    margin: 0 auto 50px;
  }

  #columnSlider .top_title .eng {
    font-size: 48px;
    padding-bottom: 10px;
  }

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

  #columnSlider .splide__arrow {
    width: 36px;
    height: 36px;
  }

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

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

  #columnSlider .splide__pagination {
    top: 13px;
    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 {
  padding: 10px;
}

#infinitySlider .splide__list {
  gap: 10px;
}

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

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

/* ==============================================
  *SP 無限スライダー
============================================== */
@media screen and (max-width: 640px) {
  #infinitySlider .splide__slide {
    width: 250px !important;
  }
}