@charset "UTF-8";
/* ---------------------
  - *基本設定
  - *アニメーション
  - *タイトル
  - *メインビジュアル
  - *医院概要
  - *ご挨拶
  - *診療案内
  - *当院の特徴
  - *医療コラム
  - *無限スライダー
  - *ピックアップ
  - *病状・症状から探す

--------------------- */
/* ==================================================================================================================================

  *基本設定

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.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;
  }
}
/* ==================================================================================================================================

  *アニメーション

================================================================================================================================== */
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes zoomInAnime {
  from {
    pointer-events: none;
    transform: scale(0.5);
  }
  to {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomOutAnime {
  from {
    pointer-events: none;
    transform: scale(1);
  }
  to {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1.5);
  }
}
@keyframes scrolldown {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.fadeUp, .zoomOut, .zoomIn, .fadeRight, .fadeLeft {
  opacity: 0;
}
.fadeUp.is-active {
  animation: fadeUpAnime 1s forwards;
}
.fadeRight.is-active {
  animation: fadeRightAnime 1s forwards;
}
.fadeLeft.is-active {
  animation: fadeLeftAnime 1s forwards;
}
.zoomIn.is-active {
  animation: zoomInAnime 0.8s forwards;
}
.zoomOut.is-active {
  animation: zoomOutAnime 1s forwards;
}
/* ==================================================================================================================================

  *タイトル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.top_title {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;
  margin-bottom: 50px;
  line-height: 1.5;
  text-align: center;
}
.top_title::before {
  position: absolute;
  content: "";
  width: 98px;
  height: 80px;
  top: -45px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: url(../images/front/sub_logomark.png) center center / cover no-repeat;
  z-index: -1;
  opacity: 0.5;
}
/* 左寄せ */
.top_title.title_left {
  text-align: start;
}
.top_title h2 {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 320%;
  color: var(--text-color);
}
.top_title .eng {
  display: inline-block;
  margin-bottom: 5px;
  font-family: "menco", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 150%;
  color: var(--text-color02);
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .top_title {
    margin-bottom: 20px;
  }
  .top_title h2 {
    margin: 5px 0 0;
    font-size: 26px;
  }
  .top_title .eng {
    font-size: 18px;
  }
}
/* ==================================================================================================================================

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.mainvisual {
  position: relative;
  z-index: 1;
  height: 800px;
  overflow: hidden;
  margin: 0 40px;
  border-radius: 50px;
}
.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: "\f060";
}
.mvSlider .sliderBtn#mv_btnNext span::before {
  content: "\f061";
}
/* 各スライダーのボタンは非表示に */
.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 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-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 260%;
  line-height: 1.5;
  text-shadow: 2px 2px 1px #ffffff, -2px 2px 1px #ffffff, 2px -2px 1px #ffffff, -2px -2px 1px #ffffff, 2px 0px 1px #ffffff, 0px 2px 1px #ffffff, -2px 0px 1px #ffffff, 0px -2px 1px #ffffff;
}
.mvCatch p span {
  font-size: 120%;
}
/* ----- コンテンツ ----- */
.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-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  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);
}

/* 丸バナー */
.mv_bnr_circle{
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
position: absolute;
bottom: 50px;
left: 310px;
}
.mv_bnr_circle li,
.mv_bnr_circle a{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.mv_bnr_circle li{
width: 220px;
height: 220px;
aspect-ratio: 1 / 1;
padding: 20px 25px;
background: rgba(185,215,121,0.95);
color: #fff;
border-radius: 50%;
font-size: 110%;
font-family: "fot-tsukuardgothic-std", sans-serif;
font-weight: 700;
font-style: normal;
text-align: center;
line-height: 1.75;
position: relative;
transition: all 0.2s;
}
.mv_bnr_circle li:before{
content: "";
border: 1px solid #fff;
width: calc(100% - 20px);
height: calc(100% - 20px);
border-radius: 50%;
position: absolute;
top:10px;
left:10px;
}
.mv_bnr_circle a{
width: 100%;
height: 100%;
position:relative;
z-index:10;
}
.mv_bnr_circle .top_mv_bnr_tit{
font-size: 118%;
color:#fff;
}
.mv_bnr_circle .top_mv_bnr_link{
display: flex;
justify-content: center;
align-items: center;
margin-top: 3px;
color:#fff;
font-size: 90%;
}
.mv_bnr_circle .top_mv_bnr_link:after{
margin-left: 5px;
color: #fff;
font-family: FontAwesome;
font-style: normal;
font-size: 110%;
font-weight: 900;
content: "\f0a9";
transition: all 0.2s;
}
.mv_bnr_circle li:has(a):hover{
background: var(--main-color);
color: #fff;
}
.mv_bnr_circle li:has(a):hover .top_mv_bnr_sub-tit{
color: var(--main-color);
}
.mv_bnr_circle li:has(a):hover .top_mv_bnr_link:after{
transform: translatex(5px);
}

/* ----- スマホ専用エリア ----- */
.sp_only {
  display: none;
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 400px;
    border-radius: 30px;
    margin: 0 15px 15px;
  }
  /* ----- スライダーの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;
    display: none;
  }
  .mvCatch.is-active {
    display: block;
  }
  .mvCatch p {
    font-size: 130%;
    line-height: 1.75;
  }
  /* ----- コンテンツ ----- */
  .mvContents {
    display: none;
  }
  /* ----- 開院バナー ----- */
  .open_bnr {
    position: static;
    width: 100%;
    max-width: 350px;
    border-radius: 0;
  }
  .open_bnr > * {
    width: 100%;
    height: auto;
    padding: 15px 20px;
    border-radius: 15px;
  }
	
	.mv_bnr_circle{
	position: static;
	/* flex-direction: column; */
	width: 100%;
	}
	.mv_bnr_circle li{
	width: calc((100% - 10px) / 2);
	height: auto;
	padding: 10px;
		aspect-ratio: 1 / 1;
		min-height: 0;
	}
	.mv_bnr_circle .top_mv_bnr_tit{
/*	font-size: 100%;
	letter-spacing: normal;
*/
	font-size: 3.2vw;
	letter-spacing: -0.05em;
	}
	.mv_bnr_circle .top_mv_bnr_link{
	font-size: 75%;
	}
	
	
  /* ----- スマホ専用エリア ----- */
  .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%;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.clinic {
  position: relative;
  background: var(--bg-color);
  border-radius: 50px;
  padding-bottom: 60px;
  margin: 50px 40px 100px;
  z-index: 0;
}
.clinic .inner {
  position: relative;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 60px;
  overflow: hidden;
}
.clinic .inner::before {
  position: absolute;
  content: "";
  bottom: -140px;
  left: -150px;
  width: 850px;
  height: 525px;
  background: #f4f0e5;
  -webkit-mask: url(../images/front/logo_mark.png) no-repeat center / contain;
  mask: url(../images/front/logo_mark.png) no-repeat center / contain;
  z-index: -1;
  opacity: 0.5;
}
.clinic .inner > * {
  width: calc(50% - 30px);
}
/* ----- お知らせ ----- */
.clinic .top_title::before {
  width: 86px;
  height: 70px;
  top: -46px;
  left: 36px;
  margin: 0;
}
.clinic .news .top_title h2 {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 240%;
  letter-spacing: 0.1em;
}
.clinic .news .btn01 {
  margin-top: 30px;
  text-align: center;
}
/* ----- 医院概要 ----- */
.clinic .info .office_hour .title {
  background: #ffffff;
}
.clinic .info .office_hour .table_wrapper {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  background: #ffffff;
  border-radius: 15px;
}
/* 診療科目 */
.clinic .info .speciality {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px auto 0;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.clinic .info .speciality .title {
  flex-shrink: 0;
  width: fit-content;
  padding: 10px 30px;
  background: var(--main-color);
  border-radius: 8px;
  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;
  letter-spacing: 0.12em;
}
.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-family: "menco", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 34px;
  line-height: 0.8;
  letter-spacing: 0.12em;
}
.clinic .info address .tel::before {
  content: "\f3cd";
}
.clinic .info address .tel a {
  color: var(--text-color);
}
.clinic .info address .tel a:hover {
  color: var(--sub-color);
}
.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 .tel p {
  color: var(--text-color);
}
.clinic .info address .note {
  margin-top: 20px;
  padding-left: 12px;
  font-size: 90%;
}
.clinic .info .list_access {
  margin-top: 10px;
}
.clinic .info .btn01 {
  margin-top: 20px;
  text-align: center;
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .clinic {
    border-radius: 20px;
    margin: 20px 20px 40px;
  }
  .clinic .inner {
    gap: 40px;
  }
  .clinic .inner::before {
    display: none;
  }
  .clinic .inner > * {
    width: 100%;
  }
  .clinic .news .top_title h2, .clinic .news .top_title .eng {
    text-align: center;
  }
  .clinic .top_title::before {
    left: 50%;
    transform: translateX(-50%);
  }
  /* ----- 医院概要 ----- */
  .clinic .info .speciality {
    flex-flow: column;
    gap: 10px;
    padding: 15px;
    line-height: 1.6;
  }
  .clinic .info .speciality .title {
    width: 100%;
  }
  .clinic .info address .location {
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .clinic .info address .tel {
    letter-spacing: 0.08em;
  }
}
/* ==================================================================================================================================

  *ご挨拶（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting {
  position: relative;
  padding-top: 50px;
  background: var(--bg-color);
  z-index: 1;
}
.greeting::before {
  content: "";
  position: absolute;
  top: -170px;
  left: 0;
  display: block;
  width: 100%;
  height: 500px;
  background: url(../images/front/greeting_top_bg.jpg) no-repeat center / cover;
  z-index: -1;
}
.greeting .inner {
  padding: 140px 120px 80px;
  background: var(--bg-color);
  z-index: 1;
  border-radius: 120px;
  max-width: 1500px;
}
.greeting_box {
  position: relative;
  z-index: 1;
}
.greeting_flex {
  display: flex;
  gap: 70px;
}
.greeting_box:not(:last-child) {
  margin-bottom: 70px;
}
.greeting_left {
  flex-shrink: 0;
  width: 60%;
}
.greeting_img {
  position: relative;
}
.greeting_img::before {
  content: '';
  position: absolute;
  background: url(../images/front/sub_logomark_w.png) no-repeat center / 150px;
  width: 160px;
  height: 160px;
  bottom: 0;
  left: 0;
  transform: translate(-45%, 20px);
  z-index: 0;
  opacity: 0.8;
}
.greeting_img img {
  margin-bottom: 30px;
  border-radius: 25px;
  box-shadow: rgb(244, 241, 231) 0px 3px 5px;
}
.greeting_text p {
  font-size: 105%;
  line-height: 2.4;
}
.greeting_text > *:not(:last-child) {
  margin-bottom: 2em;
}
.greeting_profile {
  color: var(--text-color);
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.75;
  text-align: center;
}
.greeting_profile .position {
  font-size: 130%;
}
.greeting_profile .name {
  font-size: 170%;
}
.greeting_profile .name span {
  font-size: 70%;
}
.greeting_btn {
  margin-top: 50px;
  text-align: center;
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .greeting {
    padding: 0 20px;
  }
  .greeting::before {
    height: 220px;
    top: -110px;
  }
  .greeting .inner {
    border-radius: 30px;
    padding: 80px 10px 50px;
  }
  .greeting_flex {
    flex-flow: column-reverse;
    gap: 25px;
  }
  .greeting_left {
    width: 100%;
  }
  .greeting_text p {
    line-height: 1.9;
  }
  .greeting_img::before {
    background: url(../images/front/sub_logomark_w.png) no-repeat center / 110px;
    width: 120px;
    height: 120px;
    transform: translate(-20%, 15px);
  }
  .greeting_btn {
    margin-top: 40px;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
  position: relative;
  background: #eef3ea; /*ペールグリーン*/
  z-index: 0;
}
.medical::before {
  position: absolute;
  content: "";
  background: #eef3ea;
  -webkit-mask: url(../images/front/wave.png) no-repeat center / contain;
  mask: url(../images/front/wave.png) no-repeat center / contain;
  width: 100%;
  height: 200px;
  top: -100px;
  left: 0;
  pointer-events: none;
  z-index: 0;
}
.medical .inner {
  padding: 140px 0 110px;
}
.medical .top_title {
  color: #ffffff;
}
.medical .top_title span.eng {
  color: var(--text-color02);
}
.medical_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
}
.medical_item {
  position: relative;
  z-index: 1;
  width: calc((100% - 40px) / 3);
  height: auto;
}
.medical_item:hover {
  transform: translateY(-10px);
}
.medical_img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  transition: background 0.2s;
}
.medical_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.medical_inner {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 30px 20px 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 25px;
  text-align: center;
}
.medical_inner > *:not(:last-child) {
  margin-bottom: 15px;
}
.medical_icon {
  width: 70%;
  max-width: 150px;
  background: var(--bg-color);
  border-radius: 50%;
  padding: 32px;
  aspect-ratio: 1 / 1;
  transition: 0.2s;
}
.medical_title h3 {
  color: var(--text-color);
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 120%;
}
.medical_title_eng {
  margin-top: 5px;
  color: var(--sub-color);
  font-family: "menco", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
}
.medical_text {
  color: var(--text-color);
}
.medical_btn span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 auto;
  padding: 4px 30px 5px 18px;
  background: var(--sub-color);
  border: 1px solid var(--sub-color);
  border-radius: 100px;
  color: #ffffff;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  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(--sub-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 .inner {
    padding: 90px 0 50px;
  }
  .medical_list {
    gap: 15px 10px;
    margin: 0 20px;
  }
  .medical_item {
    width: calc(50% - 5px);
  }
  .medical_item:hover {
    transform: translateY(-5px);
  }
  .medical_inner {
    min-height: auto;
    padding: 20px 10px;
    border-radius: 20px;
  }
  .medical_icon {
    width: 80%;
    padding: 25px;
  }
  .medical_title h3 {
    font-size: 100%;
    letter-spacing: 0.05em;
  }
  .medical_title_eng {
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 0.08em;
  }
  /* ----- 先頭2つの設定----- */
  /*  .medical_item:nth-of-type(-n + 2) {
    width: 100%;
    min-height: auto;
  }
  .medical_item:nth-of-type(-n + 2) .medical_inner {
    padding: 15px 20px 30px;
  }
  .medical_item:nth-of-type(-n + 2) .medical_icon {
    width: 30%;
  }
  .medical_item:nth-of-type(-n + 2) .medical_title h3 {
    font-size: 140%;
  }*/
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.private {
  position: relative;
  background: #fff4e0; /*ペールオレンジ*/
  margin-bottom: 50px;
  z-index: 0;
}
.private::before {
  position: absolute;
  content: "";
  background: #fff4e0;
  -webkit-mask: url(../images/front/wave.png) no-repeat center / contain;
  mask: url(../images/front/wave.png) no-repeat center / contain;
  width: 100%;
  height: 200px;
  bottom: -90px;
  left: 0;
  pointer-events: none;
  z-index: 0;
  transform: scaleY(-1);
}
.private .inner {
  padding: 120px 0 110px;
}
.private .top_title {
  color: #ffffff;
}
.private .top_title span.eng {
  color: var(--text-color02);
}
.private_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
  justify-content: center;
}
.private_item {
  position: relative;
  z-index: 1;
  width: calc(25% - 15px);
  height: auto;
}
.private_item:hover {
  transform: translateY(-10px);
}
.private_img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  transition: background 0.2s;
}
.private_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.private_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);
  border-radius: 25px;
  text-align: center;
}
.private_inner > *:not(:last-child) {
  margin-bottom: 15px;
}
.private_icon {
  width: 70%;
  max-width: 150px;
  background: var(--bg-color);
  border-radius: 50%;
  padding: 32px;
  aspect-ratio: 1 / 1;
  transition: 0.2s;
}
.private_title h3 {
  color: var(--text-color);
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 120%;
}
.private_title_eng {
  margin-top: 5px;
  color: var(--sub-color02);
  font-family: "menco", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
}
.private_text {
  color: var(--text-color);
}
.private_btn span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 auto;
  padding: 4px 30px 5px 18px;
  background: var(--sub-color02);
  border: 1px solid var(--sub-color02);
  border-radius: 100px;
  color: #ffffff;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 1px;
  text-align: center;
  transition: padding 0.2s, color 0.2s, background 0.2s;
}
.private_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%);
}
.private_item:hover .private_btn span {
  background: #ffffff;
  color: var(--sub-color02);
}
/* ----- 先頭2つの設定----- */
/*.private_item:nth-of-type(-n + 2) {
  width: calc(50% - 10px);
  min-height: 350px;
}
.private_item:nth-of-type(-n + 2) .private_inner {
  padding: 20px 20px 40px;
}
.private_item:nth-of-type(-n + 2) .private_icon {
  max-width: 100px;
  margin: 0 auto 5px !important;
}
.private_item:nth-of-type(-n + 2) .private_title h3 {
  font-size: 150%;
}*/
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .private {
    margin-bottom: 20px;
  }
  .private::before {
    height: 40px;
    bottom: -25px
  }
  .private .inner {
    padding: 90px 0 50px;
  }
  .private_list {
    gap: 15px 10px;
    margin: 0 20px;
  }
  .private_item {
    width: calc(50% - 5px);
  }
  .private_item:hover {
    transform: translateY(-5px);
  }
  .private_inner {
    min-height: auto;
    padding: 20px 10px;
    border-radius: 20px;
  }
  .private_icon {
    width: 80%;
    padding: 25px;
  }
  .private_title h3 {
    font-size: 110%;
  }
  .private_title_eng {
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 0.08em;
  }
  /* ----- 先頭2つの設定----- */
  /*  .private_item:nth-of-type(-n + 2) {
    width: 100%;
    min-height: auto;
  }
  .private_item:nth-of-type(-n + 2) .private_inner {
    padding: 15px 20px 30px;
  }
  .private_item:nth-of-type(-n + 2) .private_icon {
    width: 30%;
  }
  .private_item:nth-of-type(-n + 2) .private_title h3 {
    font-size: 140%;
  }*/
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
  position: relative;
  background: var(--bg-color);
  z-index: 0;
}
.feature::before {
  position: absolute;
  content: "";
  background: var(--bg-color);
  -webkit-mask: url(../images/front/wave.png) no-repeat center / contain;
  mask: url(../images/front/wave.png) no-repeat center / contain;
  width: 100%;
  height: 200px;
  top: -100px;
  left: 0;
  pointer-events: none;
  z-index: 0;
}
.feature .inner {
  padding: 120px 0 90px;
}
.feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 50px 30px;
}
.feature_item {
  display: flex;
  flex-flow: column;
  width: calc(33.3333333333% - 20px);
  height: auto;
  z-index: 0;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 3px 5px rgb(244 241 231);
}
.feature_num {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0 !important;
  padding: 10px 20px;
  background: #fff;
  border-radius: 0 25px 0 0;
  color: var(--main-color);
  font-family: "menco", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 150%;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.feature_item:nth-child(even) .feature_num {
  color: var(--sub-color);
}
.feature_num::before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 20px;
  height: 20px;
  background: #fff;
  -webkit-mask: url(../images/front/kadomaru.svg) no-repeat center / cover;
  mask: url(../images/front/kadomaru.svg) no-repeat center / cover;
}
.feature_num::after {
  position: absolute;
  content: '';
  background: url(../images/front/item_icon.png) no-repeat center / contain;
  width: calc(151px * 0.38);
  height: calc(150px * 0.38);
  top: 0;
  right: 0;
  z-index: -1;
}
.feature_num span {
  color: #6ec9b0; /*濃いミントグリーン*/
  font-size: 140%;
}
.feature_item:nth-child(even) .feature_num span {
  color: var(--sub-color03); /*グリーン*/
}
.feature_inner {
  position: relative;
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 40px 30px 35px;
  background: #ffffff;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  z-index: -1;
}
.feature_inner::before {
  position: absolute;
  bottom: 0;
  right: -120px;
  content: "";
  width: 340px;
  height: 305px;
  background: #baebca;
  -webkit-mask: url(../images/front/sub_logomark.png) no-repeat center / contain;
  mask: url(../images/front/sub_logomark.png) no-repeat center / contain;
  opacity: 0.2;
  z-index: -1;
}
.feature_item:nth-child(even) .feature_inner::before {
  background: #d6e0b6;
}
.feature_img {
  position: relative;
}
.feature_img img {
  border-radius: 30px 30px 0 0;
}
.feature_title {
  display: flex;
  flex-flow: column;
  justify-content: center;
  min-height: 70px;
  margin-bottom: 15px;
}
.feature_title h3 {
  color: var(--text-color);
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 140%;
  line-height: 1.5;
  letter-spacing: 0.05rem;
  text-align: center;
}
.feature_button {
  display: flex;
  flex-flow: column;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 25px;
}
.feature_button .btn01 {
  text-align: center;
}
.feature_item:nth-child(even) .feature_button .btn01 > * {
  background: var(--sub-color);
  border: 1px solid var(--sub-color);
}
.feature_item:nth-child(even) .btn01 > *:hover {
  background: #ffffff;
  color: var(--sub-color);
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .feature .inner {
    padding: 100px 0 50px;
  }
  .feature_list {
    gap: 30px;
    margin: 0 20px;
  }
  .feature_item {
    width: 100%;
  }
  .feature_title {
    min-height: auto;
    margin-bottom: 15px !important;
  }
  .feature_num {
    bottom: -6px;
  }
  .feature_num::before {
    right: -39px;
    bottom: 5px;
    width: 40px;
    height: 40px;
  }
  .feature_title h3 {
    font-size: 130%;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.column {
  background: var(--bg-color);
}
.column .column_list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 50px 25px;
  padding: 30px;
  background: #ffffff;
}
.column .column_box {
  width: calc(25% - 18.75px);
}
.column .column_box dt a {
  display: block;
  padding: 15px 10px;
  background: var(--main-color);
  color: #ffffff;
  font-size: 110%;
  text-align: center;
}
.column .column_box dd {
  padding: 10px 10px;
  border-bottom: 1px dashed var(--line-color);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .column .column_list {
    gap: 40px;
  }
  .column .column_box {
    width: 100%;
  }
}
/* ==================================================================================================================================

  *無限スライダー

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
#infinitySlider {
  padding: 10px 0;
}
#infinitySlider .splide__list {
  gap: 10px;
}
#infinitySlider .splide__slide {
  width: 400px !important;
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  #infinitySlider .splide__slide {
    width: 300px !important;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.pickup {
  position: relative;
}
.pickup::before {
  position: absolute;
  content: "";
  background: var(--bg-color);
  -webkit-mask: url(../images/front/wave.png) no-repeat center / contain;
  mask: url(../images/front/wave.png) no-repeat center / contain;
  width: 100%;
  height: 200px;
  top: -100px;
  left: 0;
  pointer-events: none;
  z-index: 0;
  transform: scaleY(-1);
}
.pickup::after {
  position: absolute;
  content: "";
  background: url(../images/front/item_leaf.png) no-repeat left -150px top 110px / 430px auto, url(../images/front/item_leaf02.png) no-repeat right -150px bottom 110px / 430px auto;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pickup .inner {
  width: 100%;
  padding: 180px 0 240px;
}
.pickup .top_title {
  margin-bottom: 20px;
}
.pickup_list {
  display: flex;
  flex-flow: wrap;
  gap: 120px;
}
.pickup_item {
  display: flex;
  align-items: center;
  width: 100%;
}
.pickup_img {
  position: relative;
  z-index: 1;
  height: fit-content;
}
.pickup_img::before {
  position: absolute;
  content: "";
  background: url(../images/front/item_bg_suisai.png) no-repeat center / 620px auto;
  z-index: -1;
  top: 220px;
  left: 0;
  transform: translate(-45%, 20px);
  width: 100%;
  height: 100%;
}
.pickup_item:nth-child(even) .pickup_img::before {
  position: absolute;
  content: "";
  background: url(../images/front/item_bg_suisai02.png) no-repeat center / 620px auto;
  z-index: -1;
  top: 220px;
  right: 0;
  transform: translate(35%, 32px);
  width: 100%;
  height: 100%;
}
.pickup_img img {
  border-radius: 110px 30px 30px 30px;
  max-width: 660px
}
.pickup_item:nth-child(2) .pickup_img img {
  border-radius: 30px 110px 30px 30px;
  max-width: 660px
}
.pickup_inner {
  position: relative;
  z-index: 2;
  width: 50%;
  margin: 0 0 0 -50px;
  padding: 70px;
  background: var(--bg-color);
  border-radius: 30px 30px 100px 30px;
  box-shadow: 0 3px 5px rgb(237 233 221);
  top: 100px;
  overflow: hidden;
}
.pickup_inner::before {
  position: absolute;
  content: "";
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 330px;
  height: 205px;
  background: #f4f0e5;
  -webkit-mask: url(../images/front/sub_icon01.png) no-repeat center / contain;
  mask: url(../images/front/sub_icon01.png) no-repeat center / contain;
  z-index: -1;
}
.pickup_title::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: url(../images/front/tit_dot.png) no-repeat center center;
  background-size: contain;
}
.pickup_item:nth-child(2) .pickup_inner {
  border-radius: 30px 30px 30px 100px;
}
.pickup_title {
  position: relative;
  z-index: 2;
  margin: 0 auto 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;
}
.pickup_title h2, .pickup_title h3 {
  background: none;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 200%;
  line-height: 1.5;
  letter-spacing: 0.03rem;
}
.pickup_title h3 {
  padding-bottom: 12px;
}
.pickup_title .eng {
  color: var(--main-color);
  font-family: "menco", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 80%;
  line-height: 1.3;
}
.pickup_text {
  margin: 30px 0;
}
.pickup_buttons {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
}
.pickup_btn {
  width: calc(50% - 5px);
  height: fit-content;
}
.pickup_btn a {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 10px 20px;
  background: var(--sub-color03);
  border: 1px solid var(--sub-color03);
  border-radius: 100px;
  color: #ffffff;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 88%;
  letter-spacing: 0.1em;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}
.pickup_btn a:hover {
  background: #ffffff;
  color: var(--sub-color03);
}
/* ----- 偶数 ----- */
.pickup_item:nth-child(even) {
  flex-flow: row-reverse;
}
.pickup_item:nth-child(even) .pickup_inner {
  margin: 0 -70px 0 0;
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .pickup::before {
    height: 50px;
    top: -20px;
  }
  .pickup .inner {
    width: 100%;
    padding: 100px 0 60px;
  }
  .pickup::after {
    background: url(../images/front/item_leaf.png) no-repeat left -68px top -17px / 170px auto, url(../images/front/item_leaf02.png) no-repeat right -80px bottom -50px / 230px auto;
  }
  .pickup_list {
    gap: 40px;
  }
  .pickup_item {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .pickup_img, .pickup_inner {
    width: 100%;
  }
  .pickup_img {
    padding: 0 20px; /* 左右余白 */
    box-sizing: border-box;
  }
  .pickup_img::before {
    display: none;
  }
  .pickup_img img {
    max-width: 100%;
    width: 100%;
    display: block;
    border-radius: 60px 60px 30px 30px;
  }
  .pickup_item:nth-child(2) .pickup_img img {
    border-radius: 60px 60px 30px 30px;
  }
  .pickup_inner {
    width: calc(100% - 40px);
    margin: -30px auto 0;
    padding: 40px 25px;
    top: 0;
    border-radius: 30px;
  }
  .pickup_inner::before {
    top: 10px;
    width: 280px;
    height: 165px;
  }
  .pickup_title {
    margin-bottom: 30px;
  }
  .pickup_title h3 {
    font-size: 150%;
  }
  .pickup_link {
    min-height: auto;
    margin-top: 20px;
  }
  .pickup_btn {
    width: 100%;
  }
  /* ----- 偶数 ----- */
  .pickup_item:nth-child(even) {
    flex-flow: column;
    gap: 40px;
  }
  .pickup_item:nth-child(even) .pickup_img {
    margin: 0 0 0 auto;
  }
  .pickup_item:nth-child(even) .pickup_inner {
    width: calc(100% - 40px);
    margin: -30px auto 0;
    padding: 40px 25px;
    top: 0;
    border-radius: 30px;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.search {
  position: relative;
}
.search::before {
  position: absolute;
  content: "";
  background: var(--bg-color);
  -webkit-mask: url(../images/front/wave.png) no-repeat center / contain;
  mask: url(../images/front/wave.png) no-repeat center / contain;
  width: 100%;
  height: 200px;
  top: -100px;
  left: 0;
  pointer-events: none;
  z-index: 0;
  transform: scaleY(-1);
}
.search::after {
  position: absolute;
  content: "";
  background: url(../images/front/item_leaf.png) no-repeat left -150px top -50px / 430px auto, url(../images/front/item_leaf02.png) no-repeat right -150px bottom -40px / 430px auto;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.search .inner {
  padding: 160px 0 150px;
}
.search .top_title {
  margin-bottom: 30px;
}
.search .tab_list {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}
.search .tab_list .tab {
  position: relative;
  overflow: hidden;
}
.search .tab_list .tab::before {
  position: absolute;
  content: "";
  padding: 25px 20px;
  left: -18px;
  top: -44px;
  width: 160px;
  height: 160px;
  background: #ffffff;
  -webkit-mask: url(../images/front/sub_logomark.png) no-repeat center / contain;
  mask: url(../images/front/sub_logomark.png) no-repeat center / contain;
  opacity: 0.2;
}
.search .tab_list li {
  display: flex;
  flex: 1;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 10px 20px;
  background: #a9a9a9;
  border-radius: 15px 15px 0 0;
  color: #ffffff;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 140%;
  line-height: 1.4;
  cursor: pointer;
  transition: transform 0.2s, padding 0.2s;
}
.search .tab_list li span {
  font-size: 80%;
}
.search .tab_list li.is-active {
  background: var(--main-color);
}
.search .tab_list li.tab.tab2.is-active {
  background: var(--sub-color);
}
.search .tab_list li.tab.tab3.is-active {
  background: var(--sub-color04);
}
/* ----- パネル ----- */
.search .panel {
  display: none;
  margin: 0 !important;
  padding: 20px;
  background: var(--bg-color02);
  border-radius: 0 0 15px 15px;
}
.search .panel.panel2.panel_flex.is-active {
  background: #eff6df;
}
.search .panel.panel3.panel_flex.is-active {
  background: #cbeceb;
}
.search .panel > *:not(:last-child) {
  margin-bottom: 2em;
}
/* ----- 項目 ----- */
.search_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  height: fit-content;
}
/* ----- リンクボタン ----- */
.search_list a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 60px;
  padding: 20px 30px;
  background: #ffffff;
  border-radius: 10px;
  color: var(--text-color);
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 110%;
  line-height: 1.6;
  letter-spacing: 0.03em;
  text-align: center;
}
.search_list li a:hover {
  background: #cce0cb;
}
.search .panel.panel2.panel_flex.is-active .search_list li a:hover {
  background: #dbe5c4;
}
.search .panel.panel3.panel_flex.is-active .search_list li a:hover {
  background: #acd5d4;
}
.search_list li a::before {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 23px;
  z-index: 2;
  transform: translateY(-50%);
  color: #ffffff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 11px;
  line-height: 1;
  content: "\f002";
  transition: background 0.2s;
}
.search_list li a::after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  right: 15px;
  z-index: 1;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--main-color);
  background: var(--main-color);
  transition: background 0.2s;
}
.search .panel.panel2.panel_flex.is-active .search_list li a::after {
  border: 1px solid var(--sub-color);
  background: var(--sub-color);
}
.search .panel.panel3.panel_flex.is-active .search_list li a::after {
  border: 1px solid var(--sub-color04);
  background: var(--sub-color04);
}
.search_list li a:hover::after, .search .panel.panel2.active .search_list li a:hover::after {
  background: #ffffff;
}
.search_list li a:hover::before {
  color: var(--main-color);
}
.search .panel.panel2.panel_flex.is-active .search_list li a:hover::before {
  color: var(--sub-color);
}
.search .panel.panel3.panel_flex.is-active .search_list li a:hover::before {
  color: var(--sub-color04);
}
.search_list li a:hover::after {
  background: #ffffff;
  color: var(--main-color);
}
.search .panel.panel2.panel_flex.is-active .search_list li a:hover::after {
  border: 1px solid var(--sub-color);
  background: #ffffff;
  color: #ffffff;
}
.search .panel.panel3.panel_flex.is-active .search_list li a:hover::after {
  border: 1px solid var(--sub-color04);
  background: #ffffff;
  color: var(--sub-color04);
}
/* ----- 画像あり ----- */
.panel_flex.is-active {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
  justify-content: space-around;
}
.panel_flex .search_img {
  width: calc(50% - 145px);
  margin: 0 !important;
}
.panel_flex .search_img img {
  border-radius: 15px;
}
.panel_flex .search_list {
  grid-template-columns: repeat(2, 1fr);
  width: calc(50% - -120px);
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .search::before {
    height: 40px;
    top: -20px;
  }
  .search::after {
    background: url(../images/front/item_leaf.png) no-repeat left -90px top -40px / 210px auto, url(../images/front/item_leaf02.png) no-repeat right -110px bottom -70px / 300px auto;
  }
  .search .inner {
    padding: 90px 0 50px;
  }
  .search .tab_list {
    flex-flow: column;
    gap: 7px;
    margin: 0 15px 10px;
  }
  .search .tab_list .tab {
    width: 100%;
    min-height: auto;
    padding: 10px !important;
    font-size: 120%;
    transform: translate(0, 0) !important;
    border-radius: 15px;
  }
  .search .tab_list .tab::before {
    left: -18px;
    top: -36px;
    width: 140px;
    height: 140px;
  }
  /* ----- パネル ----- */
  .search .panel {
    padding: 20px;
    border-radius: 15px;
  }
  /* ----- 項目 ----- */
  .search_list {
    grid-template-columns: repeat(1, 1fr);
  }
  /* ----- 画像あり ----- */
  .panel_flex.is-active {
    gap: 20px;
  }
  .panel_flex .search_img {
    width: 100%;
  }
  .panel_flex .search_list {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }
}