@charset "UTF-8";

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

  *基本設定

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

section .inner {
  padding: 100px 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 {
  padding-top: 40px;
  margin-bottom: 50px;
  line-height: 1.5;
  text-align: center;

  /* 左寄せ */
}

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

.top_title h2 {
  position: relative;
  padding: 0;
  font-size: 250%;
  letter-spacing: 0.1em;
  z-index: 1;
  font-family: var(--main-font);
}

.top_title h2::before {
  position: absolute;
  top: -10px;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  font-size: 240%;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: rgba(203, 183, 156, 0.3);
  z-index: -1;
}

.top_title .eng {
	display: none;
 /* position: relative;
  display: inline-block;
  color: var(--main-color);
  font-family: source-han-serif-jp-subset, sans-serif;
  font-weight: 400;
  font-style: normal;
  z-index: 1;
  font-size: 140%;*/
}

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

  .top_title h2 {
    margin: 0;
    font-size: 160%;
  }

  .top_title h2::before {
    font-size: 180%;
    top: 0;
    letter-spacing: 0.08em;
  }

  .top_title .eng {
    font-size: 18px;
  }
}

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

  *メインビジュアル

================================================================================================================================== */
.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 {
  width: 100%;
  height: 100%;
}

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

.mvImg .splide__slide {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

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

/* フェードの専用スタイル */
.fade .mvImg .splide__slide img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: calc(100% + 50px);
  pointer-events: none;
}

/* アニメーションを実行 */
.fade.move .mvImg .splide__slide img {
  animation: hideTranslate 8s ease-out forwards;
}

.fade.move .mvImg .splide__slide.is-active img {
  animation: showTranslate 8s ease-out forwards;
}

/* MVのアニメーション  */
@keyframes hideImg {
  0% {
    opacity: 1;
  }

  10% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}
@keyframes showTranslate {
  0% {
    transform: translate3d(0, 0px, 0);
  }

  100% {
    transform: translate3d(0, -30px, 0);
  }
}
@keyframes hideTranslate {
  /* 下降 */
  0% {
    transform: translate3d(0, -30px, 0);
  }

  100% {
    transform: translate3d(0, 0px, 0);
  }
}

/* ----- キャッチコピー ----- */
.mvCatch {
  position: absolute !important;
  top: 70%;
  left: 0;
  z-index: 3;
  width: 100%;
  transform: translateY(-50%);
}

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

.mvCatch p {
  font-size: 260%;
  letter-spacing: 0.18em;
  color: #fff;
  /*text-shadow: 0 0 5px rgb(0, 0, 0, 0.5);*/
  font-family: source-han-serif-jp-subset, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 1), 0px 0px 6px rgba(0, 0, 0, 1);
}

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

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

.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: 250px;
  height: 250px;
  padding: 15px;
  background: var(--main-color);
  border-radius: 50%;
  color: #ffffff;
  font-size: 100%;
  line-height: 1.5;
  text-align: center;
  font-family: var(--main-font);
}

.open_bnr-date01 {
  font-size: 120%;
}

.open_bnr-head {
  font-size: 260%;
}

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

.open_bnr-subhead {
  font-size: 110%;
  background: #fff;
  width: 50%;
  border-radius: 9999px;
  padding: 2px;
  color: var(--main-color);
  font-weight: 700;
  margin: 5px auto;
}

.open_bnr-date02 {
  font-size: 100%;
}
.mv-bnr-sub{
position: absolute;
bottom: 350px;
max-width: 280px;
}

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

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

.mv-bnr {
  position: absolute;
  left: 360px;
  bottom: 70px;
}

.mv-bnr_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.mv-bnr_item a:hover {
  opacity: 0.8;
}

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

.sp_only {
  display: none;
}

.mv_bnr_left {
	position: absolute;
	bottom: 100px;
	left: 360px;
	width: 300px;
    height: 70px;
}
.mv_bnr_left a{
    background-color: var(--sub-color);
    font-size: 150%;
	color: #ffffff;
	font-family: var(--main-font);
	border: 1px solid var(--sub-color);
	display: flex;
	width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

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

.mv_bnr_left a span{
    padding-right: 15px;
}

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

  /* ----- スライダーの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: 15%;
    display: none;
  }

  .mvCatch.is-active {
    display: block;
  }

  .mvCatch p {
    font-size: 140%;
    line-height: 1.75;
  }

  .mvContents {
    display: none;
  }

  .sp_only {
    display: block;
    background: none !important;
    margin-bottom: 20px;
  }

  .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 {
    top: 408px;
    bottom: inherit;
    z-index: 1;
    left: inherit;
    border-radius: 0;
	width: 86%;
  }

  .open_bnr > * {
    width: 100%;
    height: 120px;
    padding: 10px;
    border-radius: 0;
  }

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

  .open_bnr-head {
    font-size: 190%;
  }

  .open_bnr-subhead {
    font-size: 100%;
    background: #fff;
    width: 60%;
    border-radius: 9999px;
    padding: 1px;
    color: var(--main-color);
    font-weight: 700;
    margin: 3px auto;
  }

  .open_bnr-date02 {
    font-size: 90%;
  }

  .open_bnr-time {
    font-size: 80%;
  }

  .mv-bnr {
    display: contents;
  }
	.mv-bnr_list {
		flex-direction: column;
	}
	
.mv-bnr-sub{
position: inherit;
bottom: inherit;
max-width: inherit;
}
	
	.mv_bnr_left{
		top: 365px;
        bottom: inherit;
        z-index: 1;
        left: inherit;
        font-size: 11px;
		width:85%;
        height: 40px;
	}
	
}

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

  *バナーエリア

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

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

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

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

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

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

.top_banner .input a.banner_slide:hover {
  background: #f5f5f5;
}

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

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

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

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

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



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

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

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

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

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

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

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

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

#bannerSlider .bannerSlider_arrow_prev {
  left: 0;
}

#bannerSlider .bannerSlider_arrow_next {
  right: 0;
}

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

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

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

/* ==============================================
  *SP バナーエリア（追加コンテンツ）
============================================== */
@media screen and (max-width: 640px) {
  /* ----- グリッドバナー ----- */
  .banner_grid li {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

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

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

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

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

  #bannerSlider .bannerSlider_page {
    width: 8px;
    height: 8px;
  }
  .top_banner .inner{
	padding: 20px 20px 50px;
}

}

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

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

==================================================================================================================================*/
.clinic {
  background: var(--bg-color);
  padding: 0 40px;
}

.clinic .inner {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 60px;
  padding: 120px 0;
}

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

/* ----- お知らせ ----- */
.clinic .news .top_title h2 {
  font-size: 220%;
}

.clinic .news .top_title h2::before {
  content: "NEWS";
  top: 0;
  left: 0;
  transform: translate(0, -50%);
  font-size: 200%;
}

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

.clinic .news .top_title {
  margin: 0 0 30px;
  text-align: left;
}

/* ----- 医院概要 ----- */
.clinic .info .office_hour .table_wrap {
  background: #ffffff;
}

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

.clinic .info .speciality {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px auto 0;
  background: #ffffff;
  font-family: var(--main-font);
}

.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;
  font-family: var(--main-font);
}

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

.clinic .info address .tel .tel_text{
  display: flex;
  padding: 0 0 0 135px;
  flex-direction: row;
  font-size: 12px;
}

.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 .list_access {
  margin-top: 5px;
}

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

.clinic .info .tel_text{
display: flex;
    flex-direction: row;
    font-size: 15px;
    justify-content: space-between;
    align-items: end;
	margin-left: 0;
	padding-top: 40px;
	line-height: 1;
}

.clinic .info .start {
    margin-bottom: 0;
}

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

  .clinic .inner {
    gap: 30px;
    padding: 50px 20px 40px;
  }

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

  .clinic .news .top_title {
    text-align: center;
    margin: 0 0 20px;
  }

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

  .clinic .news .top_title h2::before {
    top: -20px;
    left: 0;
    right: 0;
    margin: auto;
    transform: inherit;
    font-size: 180%;
  }

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

  .clinic .info .speciality .title {
    width: 100%;
    padding: 6px 10px;
  }

  .clinic .info .speciality .text {
    padding: 0 10px 6px;
  }	

  .clinic .info address > *::before {
    width: 30px;
    height: 30px;
    padding: 0 0 0 2px;
    font-weight: 900;
    color: #ffffff;
    font-size: 15px;
  }

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

  .clinic .info address .tel {
    margin-top: 15px;
    padding: 0 0 15px 40px;
    font-size: 25px;
  }
	
	.clinic .info address .tel .tel_text {
  padding: 0 0 0 112px;
  font-size: 10px;
}	
}

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

  *ご挨拶

================================================================================================================================== */
.greeting {
  /* padding: 0 40px; */
  padding: 0;
  position: relative;
  z-index: 1;
}

.greeting .fiximg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
  right: 0;
  text-align: center;
}

.greeting .fiximg_inner {
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}

.greeting .fiximg_img {
  object-fit: cover;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.greeting .fiximg_img::before {
  content: "";
  position: fixed;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgb(129 123 117 / 50%));
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.greeting .fiximg_img img {
  width: 100%;
}

.greeting .inner {
  max-width: none;
  padding: 180px 40px 100px;
}

.greeting .top_title h2::before {
  content: "GREETING";
  color: rgb(255 255 255 / 30%);
}

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

.greeting .top_title .eng {
  color: rgb(255 255 255 / 30%);
}

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

.greeting_flex {
  display: flex;
  gap: 50px;
  max-width: 1430px;
  margin: 0 auto;
}

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

.greeting_left {
  flex-shrink: 0;
  width: 60%;
  padding: 70px 65px;
  background: rgba(255, 255, 255, 0.8);
}

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

.greeting_profile {
  color: #ffffff;
  line-height: 1.75;
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-family: var(--main-font);
}

.greeting_profile .position {
  font-size: 150%;
  margin-right: 10px;
}

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

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

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

.greeting_text {
  font-family: var(--main-font);
}

.greeting_text p {
  font-size: 110%;
  color: #000;
  text-shadow: #ffffff 1px 0 10px;
}

/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {
  .greeting .inner {
    padding: 50px 20px 40px;
  }

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

  .greeting_profile {
    margin-top: 10px;
  }

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

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

  .greeting_left {
    width: 100%;
	padding: 20px 30px;
  }

  .greeting_text p {
    font-size: 90%;
  }

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

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

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

  *診療案内

================================================================================================================================== */
.medical {
  position: relative;
  z-index: 1;
  padding: 0 40px;
}


.medical .fiximg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
  right: 0;
  text-align: center;
}

.medical .fiximg_inner {
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}

.medical .fiximg_img {
  object-fit: cover;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.medical .fiximg_img::before {
  content: "";
  position: fixed;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(103, 86, 70, 0.5));
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.greeting .fiximg_img img {
  width: 100%;
}

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

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

.medical .top_title h2::before {
  content: "MEDICAL";
  color: rgb(255 255 255 / 30%);
}

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

.medical .top_title .eng {
  color: rgb(255 255 255 / 30%);
}

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

.medical_item {
  position: relative;
  z-index: 1;
  width: calc(25% - 15px);
  height: auto;
  box-shadow: rgba(153, 140, 110, 0.2) 0px 0px 10px;
  overflow: hidden;
}

.medical_item:before {
  display: block;
  content: "more";
  font-family: var(--main-font);
  font-weight: 900;
  color: var(--main-color);
  text-align: center;
  position: absolute;
  bottom: 11px;
  right: 3px;
  z-index: 1;
  transform: rotate(-45deg);
  font-size: 77%;
}

.medical_item:after {
  display: block;
  content: '';
  background: var(--sub-color);
  width: 6em;
  height: 6em;
  color: #ffffff;
  text-align: center;
  transform: rotate(45deg);
  position: absolute;
  bottom: -3em;
  right: -3em;
}

.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: 90px;
  margin: 0 auto 15px !important;
}

.medical_title {
  font-family: var(--main-font);
}

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

.medical_title_eng {
  margin-top: 5px;
  color: var(--main-color);
  font-size: 13px;
  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 {
    padding: 0;
  }

  .medical .inner {
    padding: 60px 20px 40px;
  }

  .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: 40%;
    margin: 0 auto 5px !important;
  }

  .medical_title h3 {
    font-size: 105%;
    line-height: normal;
  }

  .medical_title h3 span {
    display: block;
    font-size: 80%;
  }

  .medical_item:before {
    display: none;
  }

  .medical_item:after {
    width: 3.5em;
  }

  .medical_title_eng {
    font-size: 10px;
  }

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

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

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

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

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

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

==================================================================================================================================*/
.feature {
  /* position: relative;
  z-index: 1; */
  padding: 0 40px;
}

.feature .inner {
  padding: 0 0 140px;
}

.feature .top_title h2::before {
  content: "FEATURE";
}

.feature_list {
  position: relative;
  display: flex;
  flex-flow: wrap;
  gap: 100px 30px;
  margin-top: 140px;
}

.feature_list::before {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% + 300px);
  background-image: url(../images/bg_img01.jpg);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  right: -300px;
  top: -100px;
  z-index: -1;
  opacity: 0.6;
}

.feature_item {
  position: relative;
  display: flex;
  height: auto;
  align-items: flex-start;
  width: 100%;
  margin-top: 60px;
  padding: 0 0 60px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 10px rgba(153, 140, 110, 0.2);
  margin-left: 60px;
}

.feature_item:nth-child(1)::after {
  content: "";
  width: 240px;
  height: 240px;
  background-image: url(../images/bg_img05.jpg);
  position: absolute;
  left: -100px;
  top: -320px;
  z-index: -1;
  opacity: 0.4;
}

.feature_item:nth-child(3)::after {
  content: "";
  width: 240px;
  height: 240px;
  background-image: url(../images/bg_img05.jpg);
  position: absolute;
  left: -100px;
  top: -80px;
  z-index: -1;
  opacity: 0.4;
}

.feature_item:nth-child(5)::after {
  content: "";
  width: 240px;
  height: 240px;
  background-image: url(../images/bg_img05.jpg);
  position: absolute;
  left: -100px;
  top: -80px;
  z-index: -1;
  opacity: 0.4;
}

.feature_img {
  position: relative;
  z-index: 1;
  width: 50%;
  height: 500px;
  flex-shrink: 0;
  margin: -60px 0 0 -60px;
}

.feature_img::before {
  position: absolute;
  top: -30px;
  right: -30px;
  content: "";
  width: calc(100% + 0px);
  height: calc(100% + 0px);
  border: solid #c4bfb9 1px;
  z-index: revert-layer;
}

.feature_img::after {
  content: "";
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(103, 86, 70, 0.5));
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.feature_item:nth-of-type(2n) .feature_img::before {
  left: -30px;
  right: inherit;
}

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

.feature_inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-flow: column;
  width: calc(100% + 50px);
  height: 100%;
  min-height: 400px;
  margin: 0 0 0 -50px;
  padding: 40px 50px 0;
}

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

.feature_inner p {
  font-size: 105%;
  font-family: var(--main-font);
}

.feature_title {
  display: flex;
  flex-flow: column;
  margin-bottom: 20px!important;
}

.feature_title h3 {
  color: var(--sub-color);
  font-size: 180%;
  line-height: 1.75;
  font-family: var(--main-font);
}

.feature_num {
  margin: 0 0 30px !important;
  font-size: 180%;
  font-family: var(--main-font);
  color: var(--main-color);
  font-style: italic;
  border-bottom: 1px dotted var(--main-color);
  line-height: normal;
}

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

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

.feature_item .btn01 > *{
  padding: 10px 40px 10px 30px;
  font-size: 100%;
  min-width: 230px;
}

.btnflex_feature {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  gap: 5px;
  margin-top: auto;
}

/* 左右 */
.feature_item:nth-child(odd) {
  flex-flow: row-reverse;
  margin-right: 60px;
  margin-left: 0;
}

.feature_item:nth-child(odd) .feature_inner {
  margin: 0;
}

.feature_item:nth-child(even) .feature_inner{
  margin: 0;
}

.feature_item:nth-child(odd) .feature_img {
  margin: -60px -60px 0 0;
}

/* ボタン横並び */
.btnflex_feature .btn01{
  width: calc(50% - 2.5px);
}

.btnflex_feature .btn01 > * {
  width: 100%;
}

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

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

  .feature_list{
    gap: 0;
    margin-top: 50px;
  }

  .feature_list::before {
    display: none;
  }

  .feature_item {
    flex-flow: column;
    width: 100%;
    margin: 0;
    display: inherit;
    background: inherit;
    box-shadow: none;
    padding: 0 0 30px;
  }

  .feature_img {
    width: 100%;
    height: 150px;
    margin: 0;
  }

  .feature_img::before {
    position: absolute;
    top: -10px;
    right: -10px;
  }

  .feature_num {
    margin: 0 0 10px !important;
    font-size: 120%;
    text-align: center;
  }

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

  .feature_title h3 {
    font-size: 130%;
    text-align: center;
  }

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

  .feature_inner p {
    font-size: 90%;
  }

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

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

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

  .feature_item:nth-child(odd) {
    flex-flow: inherit;
    margin-right: 0;
    margin-left: 0;
  } 

  .feature_item .btn01 > * {
    padding: 6px 45px 6px 35px;
    min-width: auto;
    font-size: 90%;
  } 

  .feature_item:nth-of-type(2n) .feature_img::before {
    left: -10px;
    right: inherit;
  }

  .feature_item:nth-child(1)::after {
    width: 80px;
    height: 80px;
    left: -20px;
    top: -40px;
  }

  .feature_item:nth-child(3)::after {
    width: 80px;
    height: 80px;
    left: -20px;
    top: -40px;
  }

  .feature_item:nth-child(5)::after {
    width: 80px;
    height: 80px;
    left: -20px;
    top: -40px;
  }

  .feature_item:before {
    position: absolute;
    content: "";
    width: 80%;
    height: calc(100% - 100px);
    background-image: url(../images/bg_img01.jpg);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
    right: -20px;
    top: -40px;
    z-index: -1;
    opacity: 0.6;
  }

  .feature_item:nth-child(even):before {
    right: inherit;
    left: -20px;
  }

  .feature_item:after {
    display: block !important;
    content: "";
    background-image: url(../images/bg_img05.jpg);
    position: absolute;
    z-index: -1;
    opacity: 0.4;
    width: 80px;
    height: 80px;
    right: -20px;
    top: -40px;
  }

  .feature_item:nth-child(odd) .feature_img {
    margin: 0;
  }






  




  /* 

  .feature_item:nth-child(odd)::before {
    width: 64%;
    height: 15%;
    right: 0;
    top: 90px;
    background-size: contain;
    background-position: top right;
  }



  .feature_item:nth-child(even){
    flex-flow: column;
  }
  .feature_item:nth-child(even) .feature_inner{
    margin: 0 auto;
  }



  .feature_item:nth-child(even):before {
    position: absolute;
    content: "";
    width: 80%;
    height: calc(100% - 100px);
    background-image: url(../images/bg_img01.jpg);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
    left: -20px;
    top: -40px;
    z-index: -1;
    opacity: 0.6;
  }



  .feature_item:nth-child(even):after {
    left: inherit;
    right: -20px;
  }


  .feature_item:nth-child(1)::after {
    content: "";
    background-image: url(../images/bg_img05.jpg);
    position: absolute;
    z-index: -1;
    opacity: 0.4;
    width: 80px;
    height: 80px;
    left: -20px;
    top: -40px;
  }





  .btnflex_feature .btn01{
    width: 100%;
  }

*/
}

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

  *病状、症状から探す

================================================================================================================================== */
.search {
  position: relative;
  padding: 0 40px;
}

.search .inner {
  padding: 140px 0 180px;
}

.search .top_title h2::before {
  content: "SYMPTOMS";
}

.search .tab_list {
  gap: 20px;
  margin-bottom: 20px;
}

.search .tab_list .tab {
  padding: 15px 20px;
}

.search .panel {
  position: relative;
  z-index: 1;
  /* padding: 25px; */
  padding: 0;
  /* background: var(--main-color); */
  background: inherit;
}

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

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

/* ----- リンクボタン ----- */
.search_list li a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 60px;
  padding: 10px 45px 10px 30px;
  background: var(--bg-color);
  color: var(--text-color);
  box-shadow: rgb(176 160 138 / 31%) 0px 0px 9px 1px;
}

.search_list li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 19px;
  z-index: 2;
  display: block;
  width: 14px;
  height: 7px;
  background: #ffffff;
  -webkit-mask: url(../images/btn_arrow.png) no-repeat center/14px 7px;
  mask: url(../images/btn_arrow.png) no-repeat center/14px 7px;
  transform: translateY(-50%);
  transition: background 0.2s;
}

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

/* 矢印の背景 */
.search_list li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 1;
  display: block;
  width: 22px;
  height: 22px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 50%;

  transform: translateY(-50%);
  transition: background 0.2s;
}

.search_list li a:hover::after {
  background: #ffffff;
}

/* 準備中 */
.panel2 .search_list li:nth-child(4)  > * {
  pointer-events: none;
}

.panel2 .search_list li:nth-child(4) {
  position: relative; 
  overflow: hidden;
}

.panel2 .search_list li:nth-child(4)::after {
  content: "準備中";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  border-radius: inherit;
  pointer-events: none;
}


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

  /* display: block; */
}

.search_img {
  /* width: calc(50% - 10px); */
  margin: 0 !important;
  width: 100%;
  position: relative;
  z-index: 1;
}

.search_img::before {
  content: "";
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(103, 86, 70, 0.5));
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.search_img img {
  width: 100%;
}

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

  width: 100%;
}

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

  width: calc(25% - 15px);
}

/* ==============================================
  *SP 病状、症状から探す
============================================== */
@media screen and (max-width: 640px) {
  .search {
    padding: 0;
  }

  .search .inner {
    padding: 50px 20px 60px;
  }

  .search .tab_list {
    flex-flow: nowrap;
    gap: 10px;
    margin: 0 0 10px;
  }

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

  .tab_list li.active::before {
    bottom: -10px;
    width: 20px;
    height: 10px;
  } 

  .search .panel {
    padding: 5px 0;
  }

  .search_list {
    gap: 10px;
  }

  .search_list li {
    width: 100%;
  }

  .search_list li a {
    min-height: auto;
    padding: 8px 35px 8px 10px;
    line-height: normal;
    font-size: 90%;
  }

  .search_list li a::before {
    right: 14px;
    width: 10px;
    height: 6px;
    -webkit-mask: url(../images/btn_arrow.png) no-repeat center / 10px 6px;
  }

  .search_list li a::after {
    right: 10px;
    width: 18px;
    height: 18px;
  }

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

  .search_img {
    width: 100%;
  }

  .panel_flex .search_list {
    width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

  .column_box {
    width: 100%;
  }
}

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

  *無限スライダー

================================================================================================================================== */
#infinitySlider {
  padding: 10px;
/* 	aaaaaaaaaa	 */
/* 	margin-top: -50px;
    position: relative;
    z-index: 1; */
}

#infinitySlider .splide__list {
  gap: 10px;
}

#infinitySlider .splide__slide {
  width: 350px !important;
}
#infinitySlider .splide__slide:nth-child(odd) {
	/* 	aaaaaaaaaa	 */
/* 	margin-top: 50px; */
}
/* ==============================================
  *SP 無限スライダー
============================================== */
@media screen and (max-width: 640px) {
	#infinitySlider {
/* 	aaaaaaaaaa	 */
/* 		margin-top: -30px; */
	}

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

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

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

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

.pickup {
  position: relative;
  z-index: 1;
  background: #dcd6ce;
}

.pickup .inner {
  width: 100%;
  padding: 0 0 140px;
  max-width: none;
}

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

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

.pickup_item::before {
  content: "";
  width: 80%;
  height: 100%;

  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;

  -o-object-fit: cover;
  object-fit: cover;

  /* -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 26% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 26% 100%); */

  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0, 26% 0);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 26% 0);
}

.pickup_item:first-child::before {
  background-image: url(../images/bg_img03.jpg);
  background-position: right;
}


.pickup_item:last-child::before {
  background-image: url(../images/bg_img04.jpg);
}

.pickup_wrap {
  display: flex;
  align-items: center;
  gap: 100px;
  padding: 100px 0 100px;
  width: 100%;
  position: relative;
  z-index: 0;

}

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

.pickup_img::before {
  content: "";
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(103, 86, 70, 0.5));
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pickup_img::after {
  position: absolute;
  top: -30px;
  right: -30px;
  content: "";
  width: calc(100% + 0px);
  height: calc(100% + 0px);
  border: solid var(--main-color) 1px;
  z-index: revert-layer;
}

.pickup_item:first-child .pickup_img::after {
  left: -30px;
  right: inherit;
}

.pickup_img img {
  width: 100%;
}

.pickup_inner {
  position: relative;
  z-index: 2;
  width: 640px;
  color: #fff;
  font-family: var(--main-font);
  margin: 0 70px 0 0;
}

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

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

.pickup_title h2 span {
  display: block;
  color: #d3d3d3;
  font-size: 160%;
  font-family: var(--main-font);
}

.pickup_eng {
  position: absolute;
  top: -80px;
  left: 20px;
  color: var(--main-color);
  font-size: 180%;
  font-family: var(--main-font);
  line-height: normal;
  font-style: italic;

  writing-mode: vertical-lr;
  display: flex;
  justify-content: center;
}

.pickup_text {
  margin: 30px 0;
}

.pickup_text p {
  font-size: 110%;
}

.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;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 10px 35px 10px 10px;
  background: var(--sub-color);
  border: 1px solid var(--sub-color);
  color: #ffffff;
  font-size: 105%;
  letter-spacing: 0.15em;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  border-radius: 10px;
}

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

.pickup_link .pickup_btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 14px;
  height: 7px;
  background: #ffffff;
  mask: url(../images/btn_arrow.png) no-repeat center / cover;
  -webkit-mask: url(../images/btn_arrow.png) no-repeat center / cover;
  transform: translateY(-50%);
  transition: right 0.2s, background 0.2s;
}

.pickup_link .pickup_btn a:hover::before {
  right: 12px;
  background: var(--sub-color);
}

.pickup_item:first-child .pickup_link .pickup_btn a {
  background: var(--main-color);
  border: 1px solid var(--main-color);
}

.pickup_item:first-child .pickup_link .pickup_btn a:hover {
  background: #ffffff;
  color: var(--main-color);
}

.pickup_item:first-child .pickup_link .pickup_btn a:hover::before {
  right: 12px;
  background: var(--main-color);
}

.pickup .point_list {
  margin: 20px 0 20px;
}

.pickup .point_list li {
  padding: 0 0 3px 0;
  border-bottom: dotted 1px #fff;
  margin-bottom: 10px;
  font-size: 115%;
}

.pickup .point_list li p {
  position: relative;
  z-index: 1;
  padding-left: 30px;
  font-size: 120%;
  font-style: italic;
}

.pickup .point_list li p::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../images/icon_check.png);
  position: absolute;
  left: 0;
  top: 20px;
  background-size: cover;
}

.pickup .point_list li span {
  padding-left: 0;
  padding-right: 20px;
  font-size: 130%;
}

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

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

.pickup_item:nth-child(even):before {
  left: 0;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 74% 0, 0 0);
  clip-path: polygon(0 100%, 100% 100%, 74% 0, 0 0);
}

.pickup_item:nth-child(even) .pickup_eng {
  left: inherit;
  right: 20px;
}

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

  .medical .fiximg_img::before {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(103, 86, 70, 0.8));
  }

  .pickup_eng {
    top: -20px;
    left: 0;
    font-size: 100%;
  }

  .pickup_wrap {
    display: inherit;
    padding: 45px 20px 35px;
  }

  .pickup_list {
    width: calc(100%);
    gap: 0;
  }

  .pickup_title h2, .pickup_title h3 {
    font-size: 122%;
    line-height: 1.6;
  }

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

  .pickup_item::before {
    width: 100%;
    clip-path: inherit;
  }

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

  .pickup_img::after {
    top: -10px;
  }

  .pickup_item:first-child .pickup_img::after {
    left: -10px;
    right: inherit;
  }

  .pickup_inner {
    width: 100%;
    margin: 0 auto;
    padding: 30px 0 0 0;
  }

  .pickup_title {
    margin: 0 auto;
  }

  .pickup_title h2 span {
    font-size: 110%;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .pickup_text {
    margin: 20px auto 0;
  }

  .pickup_text p {
    font-size: 90%;
  }

  .pickup_link {
    min-height: auto;
    margin-top: 30px;
  }

  .pickup_link .pickup_btn {
    width: 48%;
    height: auto;
  }

  .pickup .point_list {
    margin: 20px auto;
  }

  .pickup .point_list li p {
    padding-left: 23px;
    font-size: 100%;
    line-height: 1.4;
  }

  .pickup .point_list li p::before {
    width: 15px;
    height: 15px;
    top: 8px;
  }

  .pickup .point_list li span {
    padding-right: 10px;
    font-size: 110%;
  }

  .pickup_link .pickup_btn a {
    padding: 10px 25px 10px 10px;
    font-size: 90%;
    line-height: 1.5;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .pickup_link .pickup_btn a::before {
    right: 10px;
    width: 10px;
    height: 5px;
  }

  /* 偶数 */
  .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_wrap .pickup_inner {
    margin: 0 auto;
    padding: 30px 0 0 0;
  }

  .pickup_item:nth-child(even):before {
    clip-path: inherit;
  }

  .pickup_item:nth-child(even) .pickup_img::after {
    right: inherit;
    left: -10px;
  }



}
