@charset "UTF-8";

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

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

  *基本設定

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.front {
  overflow: hidden;
}

section .inner {
  padding: 120px 0;
}

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

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

/* 切り抜く範囲 */
.parallax_img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}

/* 固定する画像 */
.parallax_img::before {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  section .inner {
    padding: 40px 16px 48px;
  }

  /* ----- パララックス ----- */
  .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;
  z-index: 1;
  margin-bottom: 80px;
  text-align: center;
}

/* 左寄せ */
.top_title.title_left {
  text-align: start;
}

.top_title h2 {
  color: var(--highlight-color);
  font-family: "TsukuBRdGothicStd-M";
  font-size: 200%;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.top_title .eng {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--main-color);
	font-family: "ivyora-display", serif;
	font-weight: 400;
	font-style: normal;
  font-size: 600%;
	line-height: 1;
  letter-spacing: 0.12em;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .top_title {
    margin-bottom: 40px;
  }

  .top_title .eng {
    margin-bottom: 16px;
    font-size: 400%;
    letter-spacing: 0.1em;
  }

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

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

  *メインビジュアル

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

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

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

.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%;
  border-radius: 50%;
  background: var(--main-color);
  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-weight: 900;
  font-style: normal;
  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: 50%;
  left: 0;
  z-index: 3;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}

.mvCatch .inner {
  display: flex;
	flex-flow: column wrap;
	justify-content: center;
/*   align-items: center; */
	gap: 8px;
  position: relative;
  z-index: 1;
}

.mvCatch p {
  color: var(--text-color);
  font-family: "TsukuBRdGothicStd-D";
  font-size: 200%;
  line-height: 2;
  letter-spacing: 0.2em;
  text-shadow: 0 0 4px #ffffff, 0 0 4px #ffffff, 0 0 4px #ffffff, 0 0 4px #ffffff, 0 0 4px #ffffff, 0 0 4px #ffffff, 0 0 4px #ffffff, 0 0 4px #ffffff, 0 0 4px #ffffff, 0 0 4px #ffffff, 0 0 4px #ffffff, 0 0 4px #ffffff, 0 0 4px #ffffff, 0 0 4px #ffffff, 0 0 4px #ffffff, 0 0 4px #ffffff;
}

.mvCatch p span {
  color: var(--main-color);
  font-size: 110%;
}

.mv_slogan02 {
  font-size: 185% !important;
}

@media (max-width: 1600px) {
  .mvCatch p {
    font-size: 180%;
  }
}

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

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

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

/* ----- 新規開院・内覧会バナー ----- */
.open_bnr {
  display: inline-block;
  position: absolute;
  bottom: 180px;
  left: 40px;
  padding: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 264px;
  height: 264px;
  padding: 16px;
  border-radius: 50%;
  background: rgba(162, 195, 176, 0.95);
	    background: rgb(134 170 149 / 95%);
  color: #ffffff;
  font-family: "TsukuBRdGothicStd-M";
  font-size: 105%;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.open_bnr div {
  overflow: hidden;
}

.open_bnr div::before {
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/common/logo_icon.svg") no-repeat center / 85%;
  filter: brightness(0) invert(1);
  content: "";
}

.open_bnr p {
  position: relative;
}

.open_bnr .open_text {
  font-size: 180%;
}

.open_bnr .nairankai_tit {
  display: block;
  width: 100%;
  margin: 8px 0 0;
  padding: 4px 16px;
  border-radius: 300px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent-color);
  font-size: 90%;
  text-shadow: none;
}

.open_bnr .nairakai_date {
  margin: 12px 0 0;
}

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

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

@media (max-width: 1600px) {
  .open_bnr {
    left: 16px;
  }
  
  .open_bnr > * {
    width: 220px;
    height: 220px;
  }
}

/* ----- クリニック情報バナー ----- */
.info_bnr_box {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* WEB予約バナー */
.reservation_bnr {
  position: relative;
  width: 320px;
  height: 136px;
}

.reservation_bnr a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
}

.reservation_bnr a:hover {
  background: var(--base-color);
}

/* リンク先準備中（クリック不可） （リンク先#の場合）*/
.reservation_bnr a[href="#"]{
  pointer-events: none;
  position:relative;
}
.reservation_bnr a[href="#"]:before{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top:0;
  left: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  content: "準備中";
  font-size: 160%;
  z-index:10;
}

.reservation_bnr div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 100%;
  height: 100%;
}

.reservation_bnr div::before {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--main-color) url("../images/common/btn_arrow.png") no-repeat center / 35%;
  content: "";
  animation-name: btn-drift-right;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.reservation_bnr p {
  color: var(--accent-color);
  font-family: "TsukuBRdGothicStd-D";
  font-size: 125%;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.reservation_bnr p span {
  display: block;
  margin-top: 4px;
  color: var(--sub-color);
  font-family: "ivyora-display", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 75%;
	line-height: 1.1;
	letter-spacing: 0.2em;
}

@keyframes btn-drift-right {
  0% {
    transform: translate(0px, 0);
  }

  50% {
    transform: translate(5px, 0);
  }

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

/*  歯周病治療・インプラント治療バナー */
.info_bnr {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.info_bnr_item {
  width: 360px;
}

.info_bnr_item a {
  display: block;
  width: 100%;
  height: 100%;
}

.info_bnr_item a:hover {
  opacity: 0.85;
}

/* ----- スマホ専用エリア ----- */
.sp_only {
  display: none;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 550px;
  }

  /* ----- スライダーの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 {
    display: none;
    top: 64%;
	text-align: left;
  }

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

  .mvCatch p {
    font-size: 135%;
    line-height: 1.8;
  }

  .mv_slogan02 {
    font-size: 115% !important;
  }
	
  .mvCatch .inner {
    padding: 0px 25px;
  }

  /* ----- WEB予約バナー ----- */
  .reservation_bnr {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    margin: auto;
    padding: 0 24px;
  }

  .reservation_bnr a::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    margin: auto;
    border: 1px solid rgba(221, 220, 214, 0.6);
    content: "";
  }

  .reservation_bnr div {
    gap: 24px;
    padding: 27px 24px;
  }

  .reservation_bnr div::before {
    width: 40px;
    height: 40px;
    background: var(--main-color) url("../images/common/btn_arrow.png") no-repeat center / 35%;
  }

  .reservation_bnr p {
    font-size: 120%;
  }

  /* ----- コンテンツ ----- */
  .mvContents {
    display: none;
  }

  /* ----- 新規開院・内覧会バナー ----- */
  .open_bnr {
    position: static;
    width: 100%;
    max-width: 350px;
    border-radius: 0;
    background: rgba(162, 195, 176, 0.4);
  }

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

  .open_bnr .nairankai_tit {
    font-size: 100%;
  }

  /* ----- クリニック情報バナー ----- */
  .info_bnr_box {
    display: initial;
    align-items: initial;
    position: static;
  }

  /*  歯周病治療・インプラント治療バナー */
  .info_bnr {
    flex-flow: column;
    justify-content: center;
    gap: 16px;
    margin: 0 auto;
  }

  .info_bnr_item {
    width: 100%;
  }

  /* ----- スマホ専用エリア ----- */
  .sp_only {
    display: block;
    background: none !important;
  }

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

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

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

  *バナーエリア

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.top_banner {
  position: relative;
  z-index: 1;
}

.top_banner .inner {
  padding: 120px 0;
}

/* ----- 共通設定 ----- */
.top_banner .banner_slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: var(--text-color);
  font-size: 100%;
  line-height: 2;
  letter-spacing: 0.1em;
}

/* 画像のみのバナー */
.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.8;
}

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

.top_banner .input a.banner_slide:hover {
  background: var(--base-color);
}

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

.top_banner .input .banner_slide .slide_img img {
  width: 100%;
  height: 100%;
	border: 1px solid rgba(221, 220, 214, 0.5);
  object-fit: cover;
}

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

.top_banner .input .banner_slide .slide_title {
  margin: 0 auto 16px;
  padding: 8px 16px;
  background: var(--main-color);
  color: #ffffff;
  font-family: "TsukuBRdGothicStd-M";
  font-size: 100%;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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

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

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

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

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

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

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

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

#bannerSlider .bannerSlider_arrow:hover i {
  background: rgba(162, 195, 176, 1);
	color: #ffffff;
}

#bannerSlider .bannerSlider_arrow_prev {
  left: 0;
}

#bannerSlider .bannerSlider_arrow_next {
  right: 0;
}

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

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

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
	.top_banner .inner {
  	padding: 24px 16px 48px;
	}

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

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

  /* スライドの設定  */
  #bannerSlider .splide__slide {
    min-height: 160px;
  }

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

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

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

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.clinic {
  position: relative;
  z-index: 1;
}

/* ----- お知らせ ----- */
.clinic .news {
  position: relative;
  z-index: 1;
}

.clinic .news::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background: url("../images/front/clinic_bg.jpg") no-repeat center / cover;
	content: "";
}

.clinic .news .inner {
  position: relative;
  z-index: 1;
  max-width: none;
  padding: 80px 144px;
}

.clinic .news .news_wrap {
	width: 53%;
	margin: 0 0 0 auto;
	padding: 64px;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.04);
  background: url("../images/front/watercolor_bg_02.jpg") no-repeat center / cover;
}

@media (max-width: 1600px) {
  .clinic .news .inner {
    max-width: 1280px;
    padding: 80px 0;
  }

  .clinic .news .news_wrap {
    width: 60%;
  }
}

.clinic .news .top_title {
	display: flex;
	align-items: baseline;
	gap: 16px;
	margin-bottom: 32px;
}

.clinic .news .top_title .eng {
  font-size: 500%;
}

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

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

/* ----- 医院概要 ----- */
.clinic .info {
  position: relative;
  z-index: 1;
}

.clinic .info .inner {
  display: flex;
  gap: 40px;
  padding: 80px 0 120px;
}

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

/* 所在地・電話・FAX */
.clinic .info address > * {
  position: relative;
  z-index: 1;
  min-height: 40px;
}

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

/* 所在地 */
.clinic .info address .location {
  padding: 10px 0 10px 50px;
  color: var(--text-color);
  font-size: 100%;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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

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

/* 電話 */
.clinic .info address .tel {
  margin-top: 16px;
  padding: 5px 0 5px 50px;
	color: var(--highlight-color);
  font-family: "TsukuBRdGothicStd-M";
  font-size: 30px;
  line-height: 1;
	letter-spacing: 0.075em;
}

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

.clinic .info address .tel a {
  color: var(--highlight-color);
}

.clinic .info address .tel a:hover {
  color: var(--main-color);
}

/* 注意事項 */
.clinic .info address .note {
  margin-top: 16px;
  padding-left: 16px;
  color: var(--text-color);
  font-size: 90%;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

/* FAX */
.clinic .info address .fax {
  margin-top: 16px;
  padding: 5px 0 5px 50px;
	color: var(--highlight-color);
  font-family: "TsukuBRdGothicStd-M";
  font-size: 28px;
  line-height: 1;
	letter-spacing: 0.075em;
}

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

/* 診療科目 */
.clinic .info .speciality {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  position: relative;
  margin-top: 24px;
  padding: 24px 24px 24px 152px;
  background: var(--bg-color);
  color: var(--text-color);
  font-size: 100%;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.clinic .info .speciality .title {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 128px;
  height: 100%;
  background: var(--main-color);
  color: #ffffff;
  font-family: "TsukuBRdGothicStd-D";
}

/* 診療時間 */
.clinic .info .office_hour .title {
  background: var(--bg-color);
}

.clinic .info .office_hour .table_wrapper {
  background: var(--bg-color);
}

/* Google Map */
.clinic .info .googlemap {
  position: relative;
}

.clinic .info .googlemap iframe {
  height: 350px;
}

/* アクセス詳細 */
.clinic .info .list_access {
  margin-top: 8px;
}

/* カレンダー */
.clinic .info .calendar_text {
  margin-top: 24px;
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  /* ----- お知らせ ----- */
  .clinic .news::before {
    width: 100%;
    height: 200px;
  }

  .clinic .news .inner {
    padding: 160px 16px 32px;
  }

  .clinic .news .news_wrap {
    width: 100%;
    padding: 40px 24px;
    background: url("../images/front/watercolor_bg_02_sp.jpg") no-repeat center / cover;
  }

  .clinic .news .top_title {
    display: block;
    margin-bottom: 24px;
  }

  .clinic .news .top_title .eng {
    margin-bottom: 8px;
    font-size: 400%;
  }

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

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

  /* ----- 医院概要 ----- */
  .clinic .info .inner {
    flex-flow: column;
    gap: 24px;
    padding: 0 16px 48px;
  }

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

  /* 所在地・電話・FAX */
  .clinic .info address > *::before {
    width: 38px;
    height: 38px;
    padding: 2px 0 0 2px;
    font-size: 15px;
  }

  /* 所在地 */
  .clinic .info address .location {
    padding: 10px 0 10px 48px;
  }

  /* 電話 */
  .clinic .info address .tel {
    padding: 10px 0 10px 48px;
    font-size: 28px;
  }

  .clinic .info address .tel::before {
    top: 6px;
  }

  /* FAX */
  .clinic .info address .fax {
    padding: 10px 0 10px 48px;
    font-size: 24px;
  }

  .clinic .info address .fax::before {
    top: 3px;
  }

  /* 診療科目 */
  .clinic .info .speciality {
    align-items: center;
    gap: 8px;
    padding: 60px 8px 16px 8px;
		font-size: 100%;
  }

  .clinic .info .speciality .title {
    bottom: auto;
    width: 100%;
    height: auto;
    padding: 12px;
  }

  /* Google Map */
  .clinic .info .googlemap iframe {
    height: 300px;
  }
}

@media screen and (max-width: 320px) {
  /* ----- お知らせ ----- */
  .clinic .news .top_title .eng {
    margin-bottom: 8px;
    font-size: 345%;
  }

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

  /* 所在地・電話・FAX */
  .clinic .info address > *::before {
    top: 4px;
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  /* 所在地 */
  .clinic .info address .location {
    padding: 10px 0 10px 45px;
  }

  /* 電話 */
  .clinic .info address .tel {
    margin-top: 8px;
    padding: 10px 0 10px 45px;
    font-size: 24px;
  }

  .clinic .info address .tel::before {
    top: 6px;
  }

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

  /* FAX */
  .clinic .info address .fax {
    margin-top: 8px;
    padding: 10px 0 10px 45px;
    font-size: 22px;
  }

  .clinic .info address .fax::before {
    top: 4px;
  }
}

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

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

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

.pickup .inner {
  max-width: none;
  padding: 0;
}

.pickup_list {
  display: flex;
  flex-flow: wrap;
}

.pickup_item {
  display: flex;
  justify-content: center;
  width: 100%;
  background: #ffffff;
}

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

.pickup_img figure {
  width: 100%;
  height: 100%;
}

.pickup_img figure::before {
  position: absolute;
  top: 0;
	bottom: 0;
  left: 0;
  right: 0;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.6);
  content: "";
}

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

.pickup_inner {
  display: flex;
	flex-flow: column;
	justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 50%;
  padding: 48px 120px;
  background: url("../images/front/watercolor_bg_01.jpg") no-repeat center / cover;
}

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

.pickup_title .eng {
  margin-bottom: 16px;
  color: var(--main-color);
  font-family: "ivyora-display", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 150%;
  line-height: 1.3;
  letter-spacing: 0.12em;
}

.pickup_title .eng span {
  margin-left: 4px;
  font-size: 120%;
}

.pickup_title h2, .pickup_title h3 {
  color: var(--highlight-color);
  font-family: "TsukuBRdGothicStd-M";
  font-size: 175%;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media (max-width: 1600px) {
  .pickup_title h2 span,
  .pickup_title h3 span {
    display: block;
  }
}

.pickup_text {
  margin: 32px 0;
  color: var(--text-color);
  font-size: 100%;
  line-height: 2;
  letter-spacing: 0.1em;
}

.pickup_buttons {
  display: flex;
  flex-flow: wrap;
  gap: 8px;
  padding-top: 24px;
}

.pickup_btn {
  width: calc(50% - 4px);
  height: fit-content;
}

.pickup_btn a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 14px 24px;
  border-radius: 5px;
  border: 1px solid var(--main-color);
  background: var(--main-color);
  color: #ffffff;
  font-family: "TsukuBRdGothicStd-M";
  font-size: 95%;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

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

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

.pickup_item:nth-child(even) .pickup_title .eng {
  color: var(--sub-color);
}

.pickup_item:nth-child(even) .pickup_btn a {
  border: 1px solid var(--sub-color);
  background: var(--sub-color);
}

.pickup_item:nth-child(even) .pickup_btn a:hover {
  background: #ffffff;
  color: var(--sub-color);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .pickup_list {
    width: 100%;
  }

  .pickup_title {
    margin: 0 auto 8px;
  }

  .pickup_title .eng {
    font-size: 120%;
  }

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

  .pickup_title h2 span, .pickup_title h3 span {
    display: block;
  }

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

  .pickup_img {
    width: 100%;
    height: 180px;
    margin: 0;
  }

  .pickup_inner {
    width: 100%;
    margin: 0;
    padding: 32px 24px 48px;
    background: url("../images/front/watercolor_bg_01_sp.jpg") no-repeat center / cover;
  }

  .pickup_text {
    margin: 16px 0;
  }

  .pickup_buttons {
    padding-top: 0;
  }

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

  .pickup_btn a {
    padding: 10px 10px;
  }

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

@media screen and (max-width: 320px) {
  .pickup_btn a {
    padding: 8px 8px;
    font-size: 90%;
  }
}

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

  *無限スライダー

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
#infinitySlider {
  padding: 16px 0;
}

#infinitySlider .splide__list {
  gap: 8px;
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  #infinitySlider .splide__slide {
    width: 250px !important;
  }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
  position: relative;
  z-index: 1;
  background: var(--bg-color);
}

.feature .inner {
  padding: 120px 0 144px;
}

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

.feature_item {
  display: flex;
  align-items: center;
  gap: 64px;
  width: 100%;
  padding: 40px 40px;
  border-radius: 10px;
  border: 1px solid rgba(221, 220, 214, 0.4);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.04);
  background: url("../images/front/watercolor_bg_01.jpg") no-repeat center / cover;
}

.feature_img {
  position: relative;
  flex-shrink: 0;
  width: 464px;
}

.feature_img figure {
  position: relative;
}

.feature_img figure::before {
  position: absolute;
  top: 0;
	bottom: 0;
  left: 0;
  right: 0;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  margin: auto;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  content: "";
}

.feature_img figure img {
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.04);
}

.feature_num {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
	position: absolute;
	top: -24px;
	left: -16px;
	z-index: 1;
  width: 88px;
  height: 88px;
  padding-top: 4px;
  border-radius: 50%;
  border: 1px solid rgba(162, 195, 176, 0.95);
  color: #ffffff;
	font-family: "neue-haas-unica", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 80%;
	line-height: 1.1;
	letter-spacing: 0.15em;
}

.feature_num::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  margin: auto;
  border-radius: 50%;
  background: rgba(162, 195, 176, 0.95);
  content: "";
}

.feature_num span {
  font-size: 190%;
  letter-spacing: 0.1em;
}

.feature_img figure {
  position: relative;
}

.feature_img figure img {
  border-radius: 10px;
}

.feature_inner {
  flex: 1;
  color: var(--text-color);
  font-size: 100%;
  line-height: 2;
  letter-spacing: 0.1em;
}

.feature_title {
  display: flex;
  flex-flow: column;
  margin-bottom: 24px;
}

.feature_title h3 {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-color);
  color: var(--highlight-color);
  font-family: "TsukuBRdGothicStd-M";
  font-size: 140%;
  line-height: 1.5;
	letter-spacing: 0.1em;
  text-align: center;
}

.feature_button {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 32px;
}

.feature_button .btn01 {
  text-align: center;
}

.feature_button .btn01 > * {
  padding: 12px 60px 12px 40px;
  font-size: 95%;
}

/* ----- 左右 ----- */
.feature_item:nth-child(even) {
  flex-flow: row-reverse;
}

.feature_item:nth-child(even) .feature_num {
	left: auto;
  right: -16px;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .feature .inner {
    padding: 40px 16px 48px;
  }

  .feature_list {
    gap: 24px;
  }

  .feature_item {
    flex-flow: column;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 16px 16px;
    background: url("../images/front/watercolor_bg_01_sp.jpg") no-repeat center / cover;
  }

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

  .feature_num {
    gap: 2px;
    left: -24px;
    width: 72px;
    height: 72px;
    padding-top: 2px;
    font-size: 75%;
  }

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

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

  .feature_title {
    min-height: auto;
    margin-bottom: 16px;
  }

  .feature_title h3 {
    padding-bottom: 8px;
    font-size: 120%;
  }

  .feature_button {
    padding-top: 16px;
  }

  .feature_button .btn01 {
    width: 100%;
  }

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

  /* ----- 左右 ----- */
  .feature_item:nth-child(even) {
    flex-flow: column;
  }

  .feature_item:nth-child(even) .feature_num {
    right: -24px;
  }
}

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

  *ご挨拶（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting {
  position: relative;
  z-index: 1;
}

.greeting::before {
  position: absolute;
  top: 64px;
  left: -40px;
  color: rgba(34, 34, 34, 0.05);
  font-family: "allura", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 240px;
  line-height: 1;
  letter-spacing: 0.1em;
  content: "Greeting";
}

.greeting .inner {
	max-width: none;
	padding: 144px 120px;
}

.greeting .top_title {
	text-align: left;
}

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

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

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

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

.greeting_text {
	color: var(--text-color);
  font-family: "TsukuBRdGothicStd-R";
  font-size: 105%;
  line-height: 2;
  letter-spacing: 0.1em;
}

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

.greeting_slogan {
  color: var(--text-color);
  font-family: "TsukuBRdGothicStd-D";
  font-size: 120%;
  line-height: 2;
  letter-spacing: 0.1em;
}

.greeting_slogan span {
  color: var(--main-color);
  font-size: 120%;
}

.greeting_img figure {
  position: relative;
}

.greeting_img figure::before {
  position: absolute;
  top: 0;
	bottom: 0;
  left: 0;
  right: 0;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.6);
  content: "";
}

.greeting_img figure img {
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.04);
}

.greeting_profile {
  margin-top: 24px;
  color: var(--highlight-color);
	font-family: "TsukuBRdGothicStd-M";
	font-size: 130%;
  line-height: 1.5;
	letter-spacing: 0.1em;
  text-align: center;
}

.greeting_profile .position {
  margin-bottom: 8px;
}

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

.greeting_profile .name span.director {
	margin-right: 8px;
	font-size: 85%;
}

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

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .greeting::before {
    top: 24px;
    left: -24px;
    font-size: 80px;
  }

  .greeting .inner {
    padding: 56px 16px;
  }

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

  .greeting_left {
    width: 100%;
  }

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

  .greeting_slogan {
    font-size: 110%;
  }

  .greeting_slogan span {
    font-size: 110%;
  }

  .greeting_profile .position {
    margin-bottom: 4px;
  }

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

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
  position: relative;
  z-index: 1;
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url("../images/front/top_medical_bg.jpg") no-repeat center / cover;
}

.medical .inner {
  padding: 120px 0 144px;
}

.medical .top_title span {
  color: #ffffff;
}

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

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

.medical_item {
  position: relative;
  z-index: 1;
  width: calc((100% - 72px) / 4);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.04);
}

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

.medical_img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  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;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 32px 32px 40px;
  background: rgba(186, 207, 196, 0.98);
  text-align: center;
}

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

.medical_inner::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.8);
  content: "";
}

.medical_icon {
  position: relative;
  width: 100%;
  max-width: 104px;
  margin: 0 auto 16px !important;
	padding: 8px;
	border-radius: 50%;
  border: 1px solid #ffffff;
}

.medical_title {
  position: relative;
}

.medical_title h3 {
  color: #ffffff;
	font-family: "TsukuBRdGothicStd-M";
  font-size: 115%;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-align: center;
}

.medical_title_eng {
  margin-top: 4px;
  color: #ffffff;
	font-family: "neue-haas-unica", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 85%;
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-align: center;
}

.medical_text {
  position: relative;
  color: #ffffff;
  font-size: 90%;
	line-height: 1.8;
	letter-spacing: 0.1em;
}

.medical_btn {
  position: relative;
}

.medical_btn span {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 8px 24px;
	border-radius: 25px;
	border: 1px solid #ffffff;
  color: #ffffff;
	font-family: "TsukuBRdGothicStd-M";
  font-size: 85%;
	line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  transition: padding 0.2s, color 0.2s, background 0.2s;
}

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

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

.medical_item:nth-of-type(-n + 3) .medical_inner {
  padding: 32px 32px 40px;
	background: rgba(68, 68, 68, 0.8);
}

.medical_item:nth-of-type(-n + 3) .medical_icon {
  max-width: 112px;
  margin: 0 auto 16px !important;
  padding: 16px;
}

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

.medical_item:nth-of-type(-n + 3) .medical_btn span {
  font-size: 90%;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .medical {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url("../images/front/top_medical_bg.jpg") no-repeat center / cover;
  }

  .medical .inner {
    padding: 40px 16px 48px;
  }

  .medical_list {
    gap: 8px 8px;
  }

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

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

  .medical_inner {
    min-height: auto;
    padding: 24px 16px;
  }

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

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

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

  .medical_title_eng {
    font-size: 80%;
  }

  .medical_text {
    font-size: 85%;
  }

  .medical_btn span {
    padding: 8px 16px;
    font-size: 80%;
  }

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

  .medical_item:nth-of-type(-n + 3) .medical_inner {
    padding: 24px 24px 32px;
  }

  .medical_item:nth-of-type(-n + 3) .medical_icon {
    width: 40%;
    max-width: none;
    margin: 0 auto 8px !important;
  }

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

@media screen and (max-width: 320px) {
  .medical_title h3 {
    font-size: 100%;
  }

  .medical_btn span {
    padding: 6px 16px;
    font-size: 70%;
  }

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

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

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.search {
  position: relative;
  z-index: 1;
}

.search .inner {
	padding: 120px 0 144px;
}

.search .tab_list {
  display: flex;
  flex-flow: wrap;
  gap: 8px;
}

.search .tab_list li {
  display: flex;
  flex: 1;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 16px 24px;
  background: #a8a8a8;
  color: #ffffff;
  font-family: "TsukuBRdGothicStd-M";
  font-size: 130%;
  line-height: 1.5;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: transform 0.2s, padding 0.2s;
}

.search .tab_list li.is-active {
  background: var(--main-color);
}

/* ----- パネル ----- */
.search .panel {
  display: none;
  margin: 0 !important;
  padding: 24px;
  background: var(--bg-color);
}

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

/* ----- 項目 ----- */
.search_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  height: fit-content;
}

.search_list a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 60px;
  padding: 10px 40px 10px 30px;
  border: 1px solid rgba(221, 220, 214, 0.5);
  background: #ffffff;
  color: var(--text-color);
  font-family: "TsukuBRdGothicStd-M";
  font-size: 98%;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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

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

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

/* 矢印の背景 */
.search_list a::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 1;
	transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--sub-color);
  background: var(--sub-color);
	content: "";
  transition: background 0.2s;
}

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

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

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

.panel_flex .search_img figure {
  position: relative;
  width: 100%;
  height: 100%;
}

.panel_flex .search_img figure::before {
  position: absolute;
  top: 0;
	bottom: 0;
  left: 0;
  right: 0;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.6);
  content: "";
}

.panel_flex .search_img figure img {
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.04);
  object-fit: cover;
}

.panel_flex .search_list {
  grid-template-columns: repeat(2, 1fr);
  width: calc(50% - 12px);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .search .inner {
    padding: 40px 16px 48px;
  }

  .search .tab_list {
    gap: 4px;
  }

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

  /* ----- パネル ----- */
  .search .panel {
    padding: 8px;
  }

  /* ----- 項目 ----- */
  .search_list {
    grid-template-columns: repeat(1, 1fr);
  }

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

  .panel_flex .search_img {
    width: 100%;
    height: 160px;
  }

  .panel_flex .search_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 4px;
    width: 100%;
  }

  .search_list a {
    min-height: 40px;
    padding: 4px 40px 4px 30px;
  }
}

@media screen and (max-width: 320px) {
  .search .tab_list .tab {
    font-size: 100%;
  }

  .search_list a {
    font-size: 95%;
  }
}


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

  *医療コラム（パターン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%;
  }
}
