@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 16px;
  }
  /* ----- パララックス ----- */
  .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 {
  margin-bottom: 50px;
  line-height: 1.5;
  text-align: center;
  /* 左寄せ */
}
.top_title.title_left {
  text-align: start;
}
.top_title.title_left .eng {
  padding-left: 0;
}
.top_title h2 {
  font-size: 150%;
}
.top_title .eng {
  display: inline-block;
  margin-bottom: 5px;
  padding-left: 0.1em;
  color: var(--main-color);
  font-size: 500%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 400;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .top_title {
    margin-bottom: 40px;
  }
  .top_title.title_left {
    text-align: center;
  }
  .top_title .eng {
    margin-bottom: 0;
    font-size: 400%;
  }
}
/* ==================================================================================================================================

  *メインビジュアル

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

.mvSlider {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.mvSlider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: url(../images/front/wave_bottom_white.png) no-repeat left bottom -1px/100% auto, url(../images/front/wave_bottom_blue.png) no-repeat left bottom -1px/100% auto;
}

/* ----- スライダーの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: 52%;
  left: 0;
  z-index: 3;
  width: 100%;
  transform: translateY(-50%);
}
.mvCatch .inner {
  position: relative;
  z-index: 1;
}
.mvCatch p {
  font-size: 180%;
  letter-spacing: 0.15em;
  text-align: center;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.7), 0 0 5px rgba(255, 255, 255, 0.7), 0 0 10px rgba(255, 255, 255, 0.7), 0 0 15px rgba(255, 255, 255, 0.7);
}
.mvCatch p span {
  padding: 0 5px;
  color: var(--main-color);
  font-size: 150%;
}

/* ----- コンテンツ ----- */
.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: /*58*/125px;
  left: 0;
  display: inline-block;
  flex-shrink: 0;
  border-radius: 50%;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 220px;
  padding: 15px;
  background: rgba(12, 128, 198, 0.9);
  border-radius: 50%;
  color: #ffffff;
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
}
.open_bnr .date {
  margin-bottom: 4px;
  font-family: dnp-shuei-mgothic-std, futura-pt, sans-serif;
  font-size: 110%;
}
.open_bnr .open_text {
  font-size: 130%;
  line-height: 1.4;
}
.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);
}

/* ----- 特徴バナー ----- */
.feature_bnr {
  position: absolute;
  bottom: /*60*/135px;
  left: 240px;
  display: flex;
  gap: 14px;
  align-items: flex-end;
}
.feature_bnr .feature_bnr_item a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: /*280*/238px;
  height: /*100%*/140px;
/*   min-height: 140px; */
/*   padding: 20px 28px 24px 20px; */
  padding: 20px 15px;
  background: url(../images/front/bg_texture02.png);
  background-color: var(--bg-color);
  border-radius: 14px;
  color: var(--text-color);
  line-height: 1.65;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.feature_bnr .feature_bnr_item.focus a{
	height: 180px;
	background:#fff8f5;
	font-size: 115%;
}
.feature_bnr .feature_bnr_item.sub-focus a{
	background:#f7fff5;
}
.feature_bnr .feature_bnr_item a:hover {
  opacity: 0.85;
}
.feature_bnr .feature_bnr_item a .standout {
  color: var(--main-color);
  font-size: 110%;
}
.feature_bnr .feature_bnr_item.focus a .standout{
	font-size: 130%;
	color: var(--cta-color);
}
.feature_bnr .feature_bnr_item.sub-focus a .standout{
	color:#099940;
}

.feature_bnr .feature_bnr_item a::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 12px;
  height: 12px;
  background-color: var(--main-color);
  border-radius: 0 0 4px 0;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
.feature_bnr .feature_bnr_item.focus a:after{
  background-color: var(--cta-color);	
}
.feature_bnr .feature_bnr_item.sub-focus a:after{
  background-color: #099940;
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 400px;
  }
  /* ----- スライダーの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: 57%;
    display: none;
  }
  .mvCatch.is-active {
    display: block;
  }
  .mvCatch p {
    font-size: 130%;
    line-height: 1.75;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.8), 0 0 5px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.8), 0 0 15px rgba(255, 255, 255, 0.8);
  }
  .mvCatch p span {
    font-size: 130%;
  }
  /* ----- コンテンツ ----- */
  .mvContents {
    display: none;
  }
  /* ----- 開院バナー ----- */
  .open_bnr {
    position: static;
    width: 100%;
    max-width: 350px;
    border-radius: 0;
  }
  .open_bnr > * {
    width: 100%;
    height: auto;
    padding: 45px 20px;
    border-radius: 24px;
  }
  /* ----- 特徴バナー ----- */
  .feature_bnr {
    position: static;
    flex-flow: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
	align-items:unset;
  }
  .feature_bnr .feature_bnr_item a {
    width: 100%;
	height: auto;
    min-width: auto;
    min-height: auto;
    padding: 18px 28px 22px 20px;
  }
	.feature_bnr .feature_bnr_item.focus a {
		height: 140px;
	}
  /* ----- スマホ専用エリア ----- */
  .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: 10px;
    width: 100%;
  }
  h1 {
    background: #ffffff;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.clinic .inner {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 60px;
}
.clinic .inner > * {
  width: calc(50% - 30px);
}

/* ----- お知らせ ----- */
.clinic .news .btn01 {
  margin-top: 30px;
  text-align: center;
}

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

/* 診療科目 */
.clinic .info .speciality {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 22px auto 0;
  padding: 20px;
  background: url(../images/front/bg_texture02.png);
  border-radius: 14px;
}
.clinic .info .speciality .title {
  flex-shrink: 0;
  width: fit-content;
  padding: 10px 30px;
  background: var(--main-color);
  border-radius: 3em;
  color: #ffffff;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
  text-align: center;
}

.clinic .info address {
  margin-top: 24px;
}
.clinic .info address > * {
  position: relative;
  z-index: 1;
  min-height: 40px;
}
.clinic .info address > *::before {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0 0 0 2px;
  background: var(--main-color);
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 16px;
}
.clinic .info address .location {
  padding: 5px 0 5px 50px;
}
.clinic .info address .location::before {
  content: "\f3c5";
}
.clinic .info address .location span {
  display: inline-block;
  margin-right: 10px;
}
.clinic .info address .tel {
  margin-top: 15px;
  padding: 5px 0 5px 50px;
  font-size: 30px;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
.clinic .info address .tel::before {
  content: "\f3cd";
}
.clinic .info address .fax {
  margin-top: 15px;
  padding: 5px 0 5px 50px;
  font-size: 30px;
  line-height: 1;
}
.clinic .info address .fax::before {
  content: "\f249";
}
.clinic .info address .note {
  margin-top: 20px;
  padding-left: 12px;
  font-size: 90%;
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .clinic .inner > * {
    width: 100%;
  }
  /* ----- 医院概要 ----- */
  .clinic .info .speciality {
    flex-flow: column;
    gap: 10px;
    padding: 15px;
  }
  .clinic .info .speciality .title {
    width: 100%;
  }
}
/* ==================================================================================================================================

  *ご挨拶（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting {
  position: relative;
  z-index: 1;
}
.greeting::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../images/front/wave_white.png) repeat-x left bottom -1px/100% auto, url(../images/front/wave_top_white.png) no-repeat center top/100% auto, url(../images/front/bg_texture02.png);
  background-color: var(--bg-color);
  opacity: 0.65;
}
.greeting .inner {
  padding-top: 130px;
  padding-bottom: 130px;
}

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

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

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

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

.greeting_text h3 {
  margin-bottom: 24px !important;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-color);
  color: var(--main-color);
  font-size: 160%;
}
.greeting_text > *:not(:last-child) {
  margin-bottom: 2em;
}
.greeting_text p {
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 2.5;
}

.greeting_img img {
  border-radius: 14px;
}

.greeting_profile {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 16px;
  margin-top: 32px;
  line-height: 1;
  text-align: right;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.greeting_profile .position {
  font-size: 130%;
}
.greeting_profile .name {
  font-size: 150%;
}
.greeting_profile .name span {
  font-size: 80%;
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .greeting .inner {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .greeting_flex {
    flex-flow: column-reverse;
    gap: 25px;
  }
  .greeting_left {
    width: 100%;
  }
  .greeting_text h3 {
    margin-bottom: 16px !important;
    font-size: 130%;
  }
  .greeting_profile {
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
  }
  .greeting_profile .position {
    font-size: 100%;
  }
  .greeting_profile .name {
    font-size: 130%;
  }
  .greeting_btn {
    margin-top: 40px;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
  position: relative;
  z-index: 1;
  margin-top: -80px;
}
.medical::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgb(255, 255, 255), rgba(255, 255, 255, 0.2)) no-repeat bottom left/100% 150px, url(../images/front/wave_white_bg.jpg) no-repeat left top/cover, url(../images/front/bg_texture02.png);
  background-color: var(--bg-color);
  mask: url(../images/front/mask_wave.png) no-repeat left top/100% auto;
}
.medical .inner {
  padding-top: 180px;
  padding-bottom: 140px;
}

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

.medical_item {
  position: relative;
  z-index: 1;
  width: calc(25% - 15px);
  height: auto;
  border-radius: 14px;
  overflow: hidden;
}
.medical_item:hover .medical_img img {
  transform: scale(1.1);
}

.medical_img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: translate(-50%, -50%);
  transition: 0.2s;
}
.medical_img img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
  transition: 0.2s;
}

.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(12, 128, 198, 0.6);
  border-radius: 14px;
  text-align: center;
}
.medical_inner > *:not(:last-child) {
  margin-bottom: 15px;
}

.medical_icon {
  width: 40%;
  margin: 0 auto 15px !important;
  padding: 14px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
}

.medical_title h3 {
  color: #ffffff;
  font-size: 120%;
}

.medical_title_eng {
  margin-top: 5px;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 400;
}

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

.medical_btn span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 auto;
  padding: 7px 25px 7px 15px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: #ffffff;
  letter-spacing: 1px;
  text-align: center;
  transition: padding 0.2s, color 0.2s, background 0.2s;
}
.medical_btn span::after {
  content: "\f105";
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  transform: translateY(-50%);
}

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

@media screen and (min-width: 2000px) {
  .medical {
    margin-top: -130px;
  }
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .medical {
    margin-top: -4vw;
  }
  .medical::before {
    mask: url(../images/front/mask_wave_sp.png) no-repeat left top/100% auto;
  }
  .medical .inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .medical_list {
    gap: 15px 10px;
  }
  .medical_item {
    width: calc(50% - 5px);
    aspect-ratio: 1;
  }
  .medical_item:hover {
    transform: translateY(-5px);
  }
  .medical_inner {
    min-height: auto;
    padding: 10px 5px;
  }
  .medical_icon {
    width: 40%;
    padding: 6px;
  }
  .medical_title h3 {
    font-size: 100%;
    line-height: 1.4;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
  position: relative;
  z-index: 1;
  margin-top: -80px;
}
.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../images/front/wave_bottom_blue.png) no-repeat left bottom -1px/100% auto, url(../images/front/bg_texture02.png);
  background-color: var(--bg-color);
  mask: url(../images/front/mask_wave.png) no-repeat left top/100% auto;
}
.feature .inner {
  padding-top: 180px;
  padding-bottom: 240px;
}

.feature_list {
  counter-reset: number 0;
  display: flex;
  flex-flow: wrap;
  gap: 50px 30px;
}

.feature_item {
  counter-increment: number;
  display: flex;
  flex-flow: column;
  width: calc(33.3333333333% - 20px);
  height: auto;
}

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

.feature_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 25px 24px 48px;
  background: #ffffff;
  border-radius: 0 0 14px 14px;
}

.feature_title {
  position: relative;
  z-index: 2;
  display: flex;
  flex-flow: column;
  justify-content: center;
  min-height: 70px;
  margin-bottom: 15px;
  text-align: center;
}
.feature_title::after {
  content: counter(number, decimal-leading-zero);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  color: var(--main-color);
  font-size: 500%;
  line-height: 1;
  letter-spacing: 0.1em;
  opacity: 0.1;
  transform: translate(-50%, -50%);
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.feature_title h3 {
  position: relative;
  z-index: 1;
  font-size: 120%;
  line-height: 1.75;
  text-align: center;
}
.feature_title h3 span {
  color: var(--main-color);
  font-size: 120%;
}

.feature_button {
  display: flex;
  flex-flow: column;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 25px;
}
.feature_button .btn01 {
  text-align: center;
}

@media screen and (min-width: 2000px) {
  .feature {
    margin-top: -130px;
  }
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .feature {
    margin-top: -4vw;
  }
  .feature::before {
    mask: url(../images/front/mask_wave_sp.png) no-repeat left top/100% auto;
  }
  .feature .inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .feature_list {
    gap: 30px;
  }
  .feature_item {
    width: 100%;
  }
  .feature_title {
    min-height: auto;
    margin-bottom: 15px !important;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.column .inner {
  padding-top: 80px;
}
.column .column_list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 50px 25px;
  padding: 40px;
  background: url(../images/front/bg_texture02.png);
  background-color: var(--bg-color);
  border-radius: 14px;
}
.column .column_box {
  width: calc(25% - 18.75px);
  background: #ffffff;
  border-radius: 14px;
}
.column .column_box dt a {
  display: block;
  padding: 15px 10px;
  background: var(--main-color);
  border-radius: 14px 14px 0 0;
  color: #ffffff;
  font-size: 110%;
  text-align: center;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.column .column_box dd {
  padding: 10px 10px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.column .column_box dd:not(:last-child) {
  border-bottom: 1px dashed var(--line-color);
}
.column .column_box dd a {
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .column .column_list {
    gap: 40px;
  }
  .column .column_box {
    width: 100%;
  }
}
/* ==================================================================================================================================

  *無限スライダー

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
#infinitySlider {
  padding: 20px 0;
}
#infinitySlider .splide__list {
  gap: 16px;
}
#infinitySlider .splide__slide {
  width: 440px !important;
}
#infinitySlider .splide__slide img {
  border-radius: 14px;
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.pickup {
  position: relative;
}
.pickup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(255, 255, 255), transparent) no-repeat left top/100% 100px, url(../images/front/wave_bottom_blue.png) no-repeat left bottom -1px/100% auto, url(../images/front/wave_white_bg.jpg) no-repeat left top/cover;
}
.pickup .inner {
  max-width: 1300px;
  padding-bottom: 240px;
}

.pickup_list {
  counter-reset: number 0;
  display: flex;
  flex-flow: wrap;
  gap: 50px;
  width: 100%;
}

.pickup_item {
  counter-increment: number;
  width: calc(50% - 25px);
  padding: 60px 40px;
  background: url(../images/front/bg_texture02.png), var(--bg-color);
  border-radius: 14px;
}

.pickup_inner {
  display: flex;
  flex-flow: column;
  justify-content: center;
  height: 100%;
}

.pickup_title {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto 24px;
  color: var(--main-color);
  text-align: center;
}
.pickup_title::after {
  content: counter(number, decimal-leading-zero);
  position: absolute;
  top: calc(50% + 16px);
  left: 50%;
  z-index: -1;
  color: var(--main-color);
  font-size: 500%;
  line-height: 1;
  letter-spacing: 0.1em;
  opacity: 0.1;
  transform: translate(-50%, -50%);
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.pickup_title h2,
.pickup_title h3 {
  background: none;
  color: var(--text-color);
  font-size: 170%;
  letter-spacing: 0.1em;
}
.pickup_title .eng {
  font-size: 100%;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.pickup_img {
  position: relative;
  z-index: 1;
}
.pickup_img img {
  border-radius: 10px;
}

.pickup_text {
  margin: 32px 0;
}

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

.pickup_btn {
  width: calc(50% - 5px);
  height: fit-content;
}
.pickup_btn a {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 10px 35px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 3em;
  color: #ffffff;
  font-size: 95%;
  letter-spacing: 0.15em;
  text-align: center;
  transition: background 0.2s, color 0.2s;
	font-family: dnp-shuei-mgothic-std, sans-serif;
    font-style: normal;
    font-weight: 400;
}
.pickup_btn > a[href="#"] {
  pointer-events: none;
}
.pickup_btn > a[href="#"]::before {
  content: "準備中";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 3em;
  color: #ffffff;
  transform: translate(-50%, -50%);
}
.pickup_btn a:hover {
  background: #ffffff;
  color: var(--main-color);
}
.pickup_btn a::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 15px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 11px;
  transform: translateY(-50%);
}
.pickup_btn a:hover::after {
  right: 12px;
  color: var(--main-color);
}

/* ----- 偶数 ----- */
.pickup_item:nth-child(even) {
  background: url(../images/front/bg_texture.png), var(--bg-color02);
  background-color: #ffffff;
}
.pickup_item:nth-child(even) .pickup_title {
  color: var(--sub-color);
}
.pickup_item:nth-child(even) .pickup_title::after {
  color: var(--sub-color);
}
.pickup_item:nth-child(even) .pickup_btn a {
  background: var(--sub-color);
  border: 1px solid var(--sub-color);
}
.pickup_item:nth-child(even) .pickup_btn a:hover {
  background: #ffffff;
  color: var(--sub-color);
}
.pickup_item:nth-child(even) .pickup_btn a:hover::after {
  color: var(--sub-color);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .pickup .inner {
    padding: 40px 16px 80px;
  }
  .pickup_list {
    width: 100%;
  }
  .pickup_item {
    width: 100%;
    padding: 40px 16px !important;
  }
  .pickup_title {
    padding: 10px;
    font-size: 110%;
  }
  .pickup_title::before {
    bottom: -20px;
    width: 25px;
    height: 20px;
  }
  .pickup_title h2,
  .pickup_title h3 {
    font-size: 140%;
  }
  .pickup_title .eng {
    font-size: 80%;
  }
  .pickup_inner {
    max-width: none;
    min-height: auto;
    margin: 0 !important;
  }
  .pickup_btn {
    width: 100%;
  }
}
/* ==================================================================================================================================

  *お悩みの部位から探す - 追加コンテンツ

================================================================================================================================== */
.body-parts {
  background: url(../images/front/wave_white.png) repeat-x left bottom -1px/100% auto, url(../images/front/wave_top_white.png) no-repeat left top -1px/100% auto, url(../images/front/bg_texture02.png);
  background-color: var(--bg-color);
}
.body-parts .inner {
  padding-top: 140px;
  padding-bottom: 240px;
}
.body-parts .top_title {
  position: relative;
  z-index: 2;
  margin-bottom: 130px;
}

.body-parts_wrap {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.body-parts_wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 100%;
  height: calc(100% + 160px);
  background: #ffffff;
  border-radius: 24px;
  transform: translate(-50%, -50%);
}

/* ----- 体の画像 ----- */
.body-parts_img {
  max-width: 250px;
  margin: 0 auto;
}

/* ----- 各部位の共通設定 ----- */
.body_parts_list > li {
  position: absolute;
  display: block;
}

/* ----- 各部位の位置 ----- */
#body-parts1 {
  top: 0;
  left: 150px;
}
#body-parts1 .body_parts_title::before {
  top: 180%;
  right: 12px;
  width: 300px;
  transform: translate(100%, -50%) rotate(23deg);
}
#body-parts1 .body_parts_title::after {
  top: 0;
  right: 0;
  transform: translate(599%, 238%);
}

#body-parts2 {
  top: 0;
  right: 150px;
}
#body-parts2 .body_parts_title::before {
  top: 180%;
  left: 15px;
  width: 269px;
  transform: translate(-100%, -50%) rotate(-26deg);
}
#body-parts2 .body_parts_title::after {
  top: 0;
  left: 0;
/*   z-index: -1; */
  transform: translate(-546%, 253%);
}

#body-parts3 {
  top: 240px;
  left: 100px;
}
#body-parts3 .body_parts_title::before {
  top: 26%;
  right: 0;
  width: 311px;
  transform: translate(100%, -50%) rotate(-4deg);
}
#body-parts3 .body_parts_title::after {
  top: 0;
  right: 0;
/*   z-index: -1; */
  transform: translate(663%, -42%);
}

#body-parts4 {
  top: 240px;
  right: 100px;
}
#body-parts4 .body_parts_title::before {
  top: 147%;
  left: 15px;
  width: 181px;
  transform: translate(-100%, -50%) rotate(-30deg);
}
#body-parts4 .body_parts_title::after {
  top: 0;
  left: 0;
  transform: translate(-355%, 183%);
}

#body-parts5 {
  top: 380px;
  left: 100px;
}
#body-parts5 .body_parts_title::before {
  top: 126%;
  right: 10px;
  width: 361px;
  transform: translate(100%, -50%) rotate(11deg);
}
#body-parts5 .body_parts_title::after {
  top: 0;
  right: 0;
  transform: translate(743%, 138%);
}

#body-parts6 {
  top: 380px;
  right: 100px;
}
#body-parts6 .body_parts_title::before {
  top: 175%;
  left: 15px;
  width: 285px;
  transform: translate(-100%, -50%) rotate(-25deg);
}
#body-parts6 .body_parts_title::after {
  top: 0;
  left: 0;
  transform: translate(-566%, 238%);
}

/* ----- 各部位のタイトル ----- */
.body_parts_title {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 5px 20px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 3em;
  color: #ffffff;
  font-size: 110%;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
  text-align: center;
}
.body_parts_title:hover {
  background: var(--sub-color);
  border-color: var(--sub-color);
  color: #ffffff;
}
.body_parts_title::before {
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  height: 1px;
  background: var(--main-color);
}
.body_parts_title::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: var(--sub-color);
  border-radius: 50%;
  opacity: 0.25;
}

/* -----　部位ごとの病状・病名　----- */
.body-parts_search {
  margin: 10px 0 0;
}
.body-parts_search li {
  line-height: 1.5;
}
.body-parts_search li:not(:last-child) {
  margin-bottom: 5px;
}
.body-parts_search li a {
  font-size: 95%;
}

/* ==============================================
  *SP　お悩みの部位から探す（追加コンテンツ）
============================================== */
@media screen and (max-width: 640px) {
  .body-parts .inner {
    padding-top: 80px;
    padding-bottom: 170px;
  }
  .body-parts .top_title .eng {
    font-size: min(7vw, 32px);
  }
  .body-parts_wrap {
    max-width: 450px;
  }
  .body-parts_wrap::before {
    height: calc(100% + 100px);
  }
  .body-parts_img {
    width: 55%;
  }
  /* ----- 各部位の共通設定 ----- */
  .body_parts_list > li {
    padding: 8px;
  }
  /* ----- 各部位の位置 ----- */
  #body-parts1 {
    top: 0;
    left: 0;
  }
  #body-parts2 {
    top: 0;
    right: 0;
  }
  #body-parts3 {
    top: 30%;
    left: 0;
  }
  #body-parts4 {
    top: 35%;
    right: 0;
  }
  #body-parts5 {
    top: auto;
    bottom: 18%;
    left: 0;
  }
  #body-parts6 {
    top: auto;
    right: 0;
    bottom: 13%;
  }
  /* ----- 各部位のタイトル ----- */
  .body_parts_title {
    padding: 10px 15px;
    font-size: 100%;
    line-height: 1.4;
  }
  .body_parts_title::before, .body_parts_title::after {
    display: none;
  }
  /* -----　部位ごとの病状・病名　----- */
  .body-parts_search {
    display: none;
  }
}