@charset "UTF-8";
/* ---------------------
  - *基本設定
  - *タイトル
  - *メインビジュアル
  - *医院概要
  - *ご挨拶
  - *診療案内
  - *当院の特徴
  - *医療コラム
  - *無限スライダー
--------------------- */
/* ==================================================================================================================================

  *基本設定

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  h1 {
    margin-bottom: 0;
    background: none;
  }
  main .inner {
    padding-inline: 5%;
  }
}

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

  *タイトル

================================================================================================================================== */
.top_title {
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
}

.top_title h2 {
  font-family: "bokutoh-ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 38px;
  letter-spacing: 0.15em;
}

.top_title .eng {
  display: block;
  color: #aaa;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 0.15em;
  margin-top: 10px;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .top_title h2 {
    font-size: 30px;
  }
  .top_title .eng {
    font-size: 20px;
    margin-top: 0;
  }
}

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

  *メインビジュアル

================================================================================================================================== */
.mainvisual {
  position: relative;
  z-index: 1;
  max-width: 1800px;
  margin-left: auto;
  height: 850px;
  overflow: hidden;
}

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

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

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

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

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

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

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

.mvSlider .sliderBtn#mv_btnPrev span::before {
  content: "\f060";
}

.mvSlider .sliderBtn#mv_btnNext span::before {
  content: "\f061";
}

/* 各スライダーのボタンは非表示に */
.mvSlider .splide__arrows {
  display: none;
}

/* ----- MVの画像 ----- */
.mvImg {
  width: 100%;
  height: 100%;
  border-radius: 80px 0 0 80px;
  overflow: hidden;
}

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

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

.mvImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     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 {
  width: 100%;
  position: absolute !important;
/*   top: 236px; */
	top: 380px;
  left: 0;
  z-index: 2;
}

.mvCatch .splide__track {
  overflow: visible;
}

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

.mvCatch p {
  color: #fff;
  font-size: 26px;
  font-family: "bokutoh-ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2.2;
  text-shadow: 0 0 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.5);
}

.mvCatch p span {
  font-size: 154%;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

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

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

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

.mvOpen {
  width: 100%;
  max-width: 288px;
  position: absolute;
  left: 0;
  bottom: 40px;
}

.mvFeature {
  display: flex;
  gap: 0 20px;
  text-align: center;
  position: absolute;
  left: 326px;
  bottom: 40px;
}

.mvFeature_item {
  width: 192px;
}

.mvFeature_item a {
  display: block;
  height: 100%;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-image: url(../images/front/mv_feature_bg1.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  color: #fff;
  padding-top: 34px;
  position: relative;
}
.mvFeature_item a::after {
  display: block;
  content: "";
  width: 1.7em;
  height: 1.7em;
  background: url(../images/front/mv_feature_arrow.png) center/100% auto no-repeat;
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
}
@media (hover: hover) {
  .mvFeature_item a:hover {
    transform: translateY(-6px);
  }
}

.mvFeature_img {
  margin-bottom: 15px;
}

.mvFeature_img img {
  width: auto;
  max-height: 34px;
}

.mvFeature_text {
  font-size: 16px;
  line-height: 1.6;
}

.mvFeature_text span {
  font-size: 125%;
  font-weight: 700;
}

.mvFeature_item:nth-child(1) .mvFeature_img {
  margin-bottom: 5px;
}

.mvFeature_item:nth-child(1) .mvFeature_text {
  font-size: 14px;
}

.mvFeature_item:nth-child(1) .mvFeature_text span {
  font-size: 114%;
}

.mvFeature_item:nth-child(2) {
  width: 188px;
}

.mvFeature_item:nth-child(2) a {
  aspect-ratio: 376/432;
  background-image: url(../images/front/mv_feature_bg2.png);
}

.mvFeature_item:nth-child(3) {
  width: 198px;
}

.mvFeature_item:nth-child(3) a {
  background-image: url(../images/front/mv_feature_bg3.png);
}

.mvFeature_item:nth-child(4) {
  width: 196px;
}

.mvFeature_item:nth-child(4) a {
  background-image: url(../images/front/mv_feature_bg4.png);
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .mainvisual {
    width: 95%;
    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;
  }

  /* ----- MVの画像 ----- */
  .mvImg {
    border-radius: 40px 0 0 40px;
  }

  /* ----- キャッチコピー ----- */
  .mvCatch {
    top: auto;
    bottom: 30px;
    display: none;
  }
  .mvCatch.is-active {
    display: block;
  }
  .mvCatch p {
    font-size: clamp(13px, 4vw, 20px);
  }

  /* ----- コンテンツ ----- */
  .mvContents {
    display: none;
  }
  .mvOpen {
    margin-inline: auto;
    position: static;
  }
  .mvFeature {
    align-items: flex-end;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    position: static;
  }
  .mvFeature_item {
    max-width: 198px;
    width: calc((100% - 10px) / 2) !important;
  }
  .mvFeature_item a {
    display: flex;
    aspect-ratio: 384/408;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 34px;
  }
  .mvFeature_item a::after {
    bottom: 10px;
  }
  .mvFeature_item:nth-child(3) a {
    aspect-ratio: 396/414;
  }
  .mvFeature_item:nth-child(4) a {
    aspect-ratio: 392/414;
  }
  .mvFeature_img {
    margin-bottom: 10px;
  }
  .mvFeature_text {
    font-size: clamp(11px, 3.5vw, 16px) !important;
  }

  /* ----- スマホ専用エリア ----- */
  .sp_only {
    display: block;
    background: var(--bg-color);
    padding-block: 20px 18%;
  }
  .sp_only_contents {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
}

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

  *医院概要

================================================================================================================================== */
.clinic {
  padding-top: 600px;
  padding-bottom: 360px;
  background: url(../images/front/info_bg_t.png) left top/1344px auto no-repeat;
  margin-top: -460px;
  position: relative;
  overflow: hidden;
}
.clinic::before, .clinic::after {
  display: block;
  content: "";
  width: 100%;
  background-image: url(../images/front/info_bg.jpg);
  background-size: 800px auto;
  pointer-events: none;
  position: absolute;
  left: 0;
}
.clinic::before {
  height: calc(100% - 188px - 732px);
  background-position: left top;
  top: 918px;
}
.clinic::after {
  height: 732px;
  background-position: left bottom;
  -webkit-mask-image: url(../images/front/info_bg_mask.png);
          mask-image: url(../images/front/info_bg_mask.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center top;
          mask-position: center top;
  -webkit-mask-size: auto 100%;
          mask-size: auto 100%;
  top: 188px;
}
.clinic > * {
  position: relative;
  z-index: 1;
}

/* ----- お知らせ ----- */
.clinic .news {
  margin-bottom: 65px;
}

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

#mp-title .news_item a {
  display: flex;
  align-items: center;
  gap: 0 35px;
  padding: 40px 55px 40px 30px;
  border-top: solid 1px #ddd;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.4;
}

#mp-title .news_item a:hover {
  color: var(--main-color);
}

#mp-title .news_item:last-of-type a {
  border-bottom: solid 1px #ddd;
}

#mp-title .news_info {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 22px;
}

#mp-title .news_info > * {
  display: block;
  flex-shrink: 0;
}

#mp-title .news_info .date {
  font-size: 94%;
}

#mp-title .news_info .cate {
  padding: 6px 20px;
  font-size: 88%;
  font-style: normal;
  text-align: center;
  border-radius: 16px;
}

#mp-title .news_title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ----- お知らせがない時 ------ */
#mp-title .news_empty {
  text-align: center;
}

/* ----- 医院概要 ----- */
.clinic .info .inner {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}

/* 左側 */
.clinic .info_left {
  width: 620px;
}

.clinic .info address > * {
  display: flex;
  align-items: center;
  gap: 0 12px;
  line-height: 1.6;
}

.clinic .info address > *:not(:last-child) {
  margin-bottom: 18px;
}

.clinic .info address > *::before {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: #c1b2a7;
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1;
}

.clinic .info address .location {
  align-items: flex-start;
  margin-bottom: 25px;
	    font-family: "source-han-sans-japanese", sans-serif;
    font-weight: 400;
    font-style: normal;
}

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

.clinic .info address .location span {
  display: block;
}

.clinic .info address .tel,
.clinic .info address .fax {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
}

.clinic .info address .tel *,
.clinic .info address .fax * {
  letter-spacing: 0.1em;
}

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

.clinic .info address .tel a {
  color: #a2958a;
  font-size: 34px;
  position: relative;
}

.clinic .info address .tel a span {
  display: block;
  width: 6em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  font-size: 41%;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-100%);
}

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

.clinic .info address .fax p {
  color: #999;
  font-size: 28px;
}

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

.clinic .info .office_hour table {
  background: #fbf7f4;
}

/* 右側 */
.clinic .info_right {
  width: 515px;
}

.clinic .info .illustmap {
  text-align: center;
}

.clinic .info .googlemap {
  position: relative;
}

.clinic .info .googlemap iframe {
  width: 100%;
  height: 400px;
}

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

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

.clinic .info_right .btn01 {
  margin-top: 35px;
  text-align: center;
}

/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
@media print, screen and (min-width: 641px) {
  /* ----- お知らせ ----- */
  .clinic .news .inner {
    display: flex;
    justify-content: space-between;
  }
  .clinic .news .news_left {
    flex: 1;
    padding-top: 12px;
    display: flex;
    flex-flow: column;
  }
  .clinic .news .news_illust {
    width: 170px;
    order: 1;
    margin-left: 74px;
    margin-top: 50px;
  }
  .clinic .news .top_title {
    margin-bottom: 0;
  }
  .clinic .news .top_title h2 {
    font-size: 26px;
  }
  .clinic .news .top_title .eng {
    font-size: 17px;
    margin-top: 5px;
  }
  #mp-title {
    width: 900px;
    flex-shrink: 0;
  }
  #mp-title .news_info .cate {
    min-width: 136px;
  }
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .clinic {
    padding-top: 26%;
    padding-bottom: calc(60px + 13%);
    background-size: 100% auto;
    margin-top: -18%;
  }
  .clinic::before, .clinic::after {
    background-size: 400px auto;
    top: 0;
  }
  .clinic::before {
    height: 100%;
    margin-top: calc(48% - 2px); /*10% + 38%*/
  }
  .clinic::after {
    height: auto;
    aspect-ratio: 1920/732;
    margin-top: 10%;
  }

  /* ----- お知らせ ----- */
  .news_illust {
    max-width: 170px;
    width: 34%;
    margin: 0 auto 10px;
  }
  #mp-title .news_item a {
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 20px 0;
  }
  #mp-title .news_info {
    flex-wrap: wrap;
    gap: 10px;
  }
  #mp-title .news_title {
    width: 100%;
  }

  /* ----- 医院概要 ----- */
  .clinic .info .inner {
    display: block;
  }

  /* 左側 */
  .clinic .info_left {
    width: 100%;
    margin-bottom: 40px;
  }
  .clinic .info address .tel a {
    font-size: clamp(28px, 9vw, 34px);
  }
  .clinic .info address .fax p {
    font-size: clamp(24px, 7.5vw, 28px);
  }

  /* 右側 */
  .clinic .info_right {
    width: 100%;
  }
  .clinic .info .googlemap iframe {
    height: 300px;
  }
}

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

  *ご挨拶

================================================================================================================================== */
.greeting_head {
  text-align: center;
  margin-top: -248px;
  position: relative;
}
.greeting_head > img {
  -webkit-mask-image: url(../images/front/greeting_head_mask.png);
          mask-image: url(../images/front/greeting_head_mask.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center top;
          mask-position: center top;
  -webkit-mask-size: 1920px auto;
          mask-size: 1920px auto;
}
.greeting_head > div {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.greeting_head > div div {
  position: absolute;
}
.greeting_head > div div:nth-child(1) {
  width: 252px;
  right: 20px;
  top: -208px;
}
.greeting_head > div div:nth-child(2) {
  width: 246px;
  left: -30px;
  bottom: -104px;
}

.greeting {
  background-image: url(../images/front/greeting_bg.jpg);
  background-size: 502px auto;
  padding-top: 175px;
  padding-bottom: 100px;
  overflow: hidden;
}

.greeting_title_illust {
  max-width: 80px;
  margin: 0 auto 15px;
}

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

.greeting_img {
  position: relative;
}
.greeting_img::before, .greeting_img::after {
  display: block;
  content: "";
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  bottom: 0;
}
.greeting_img::before {
  width: 60%;
  max-width: 248px;
  aspect-ratio: 496/488;
  background-image: url(../images/front/greeting_img_bg.png);
  right: -14%;
  transform: translateY(21%);
}
.greeting_img::after {
  width: 29%;
  max-width: 118px;
  aspect-ratio: 236/288;
  background-image: url(../images/front/greeting_img_dec.png);
  right: -6%;
  transform: translateY(11%);
}
.greeting_img img {
  -webkit-mask-image: url(../images/front/greeting_img_mask.png);
          mask-image: url(../images/front/greeting_img_mask.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center top;
          mask-position: center top;
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
  position: relative;
}

.greeting_profile {
  text-align: center;
  margin-top: 15px;
  position: relative;
}

.greeting_profile .position {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  margin-bottom: 15px;
}

.greeting_profile .name,
.greeting_profile .name * {
  letter-spacing: 0.15em;
}

.greeting_profile .name {
  width: -moz-fit-content;
  width: fit-content;
  color: #67766f;
  font-size: 160%;
  font-family: "bokutoh-ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
  line-height: 1.4;
  margin-inline: auto;
}

.greeting_profile .name span:nth-child(1) {
  display: block;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 50%;
  text-align: right;
}

.greeting_profile .name span:nth-child(2) {
  font-size: 67%;
}

.greeting_catch {
  color: #a2958a;
  font-size: 24px;
  font-family: "bokutoh-ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: center;
}

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

.greeting_btn {
  margin-top: 15px;
  text-align: right;
}

/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
@media print, screen and (min-width: 641px) {
  .greeting .top_title {
    margin-bottom: 50px;
  }
  .greeting_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 75px;
  }
  .greeting_imgArea {
    width: 418px;
    flex-shrink: 0;
    order: 2;
  }
  .greeting_catch {
    width: 100%;
    order: 0;
  }
  .greeting_textArea {
    flex: 1;
    order: 1;
  }
  .greeting_text {
    font-size: 16px;
  }
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .greeting_head {
    margin-top: -13%;
  }
  .greeting_head > img {
    -webkit-mask-size: 100% auto;
            mask-size: 100% auto;
  }
  .greeting_head > div div:nth-child(1) {
    width: 26%;
    right: 5%;
    top: 0;
    transform: translateY(-50%);
  }
  .greeting_head > div div:nth-child(2) {
    width: 26%;
    left: -10px;
    bottom: 0;
    transform: translateY(50%);
  }
  .greeting {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .greeting_title_illust {
    width: 60px;
  }
  .greeting_imgArea {
    margin-bottom: 30px;
  }
  .greeting_img {
    max-width: 418px;
    margin-inline: auto;
  }
  .greeting_catch {
    font-size: clamp(13px, 4vw, 18px);
    margin-bottom: 1.6em;
  }
}

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

  *当院の特徴

================================================================================================================================== */
:root {
  --feature-color: #de9595;
}

.feature {
  background: url(../images/front/feature_illust_l.png) left 46px center/190px auto no-repeat, url(../images/front/feature_illust_r.png) right 105px center/148px auto no-repeat, url(../images/front/feature_t.png) center top/1920px auto no-repeat, url(../images/front/feature_bg.jpg) left top/100px auto;
  max-width: 1920px;
  margin-inline: auto;
  padding-bottom: 575px;
  position: relative;
  overflow: hidden;
}

.feature .inner {
  background: url(../images/front/feature_illust_r_t.png) right 8px top 65px/330px auto no-repeat;
  padding-top: 305px;
  position: relative;
  z-index: 2;
}

.feature .top_title .eng {
  color: #fff;
}

.feature_item {
  padding: 30px 30px 70px;
  background: #fff;
  border-radius: 180px;
}
.feature_item:nth-child(2) {
  --feature-color: #daba7c;
}
.feature_item:nth-child(3) {
  --feature-color: #aada7c;
}
.feature_item:nth-child(4) {
  --feature-color: #87d6c3;
}
.feature_item:nth-child(5) {
  --feature-color: #8796d6;
}
.feature_item:nth-child(6) {
  --feature-color: #ae87d6;
}

.feature_img {
  margin-bottom: 15px;
}

.feature_img img {
  border-radius: 50%;
	    aspect-ratio: 1 / 1;
	    object-fit: cover;
}

.feature_num {
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 80px;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  margin-top: -0.6em;
  background: linear-gradient(to bottom, var(--text-color) 0%, var(--text-color) 0.6em, var(--feature-color) 0.6em, var(--feature-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
}

.feature_title {
  margin-bottom: 18px;
}
.feature_title::after {
  display: block;
  content: "";
  width: 86px;
  height: 5px;
  background: var(--feature-color);
  -webkit-mask-image: url(../images/front/feature_title_dec_mask.png);
          mask-image: url(../images/front/feature_title_dec_mask.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center top;
          mask-position: center top;
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
  margin: 20px auto 0;
}

.feature_title h3 {
  font-size: 22px;
  font-family: "bokutoh-ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
}

.feature_title h3 span {
  color: var(--feature-color);
}

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

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

/* ---------- 犬アニメ ---------- */
/* 横移動 */
@keyframes dog-run-move {
  from {
    left: 0;
  }
  to {
    left: 100%;
  }
}

/* コマ1（illust.png）表示 */
@keyframes dog-run-frame1 {
  0%, 50% {
    opacity: 1;
  }
  50.01%, 100% {
    opacity: 0;
  }
}

/* コマ2（illust2.png）表示 */
@keyframes dog-run-frame2 {
  0%, 50% {
    opacity: 0;
  }
  50.01%, 100% {
    opacity: 1;
  }
}
.feature_dogAnimation {
  position: absolute;
  top: 38px;
  left: 0;
  z-index: 2;
  width: 178px;
  aspect-ratio: 356/218;
  pointer-events: none;
  animation: dog-run-move 8s linear infinite;
}
.feature_dogAnimation::before, .feature_dogAnimation::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: left center;
  animation-duration: 0.4s;
  animation-timing-function: steps(2, jump-none);
  animation-iteration-count: infinite;
}
.feature_dogAnimation::before {
  background-image: url(../images/front/feature_animation_illust.png);
  animation-name: dog-run-frame1;
}
.feature_dogAnimation::after {
  background-image: url(../images/front/feature_animation_illust2.png);
  animation-name: dog-run-frame2;
}

/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
@media print, screen and (min-width: 641px) {
  .feature .top_title {
    margin-bottom: 65px;
  }
  .feature_list {
    display: flex;
    flex-flow: wrap;
    gap: 70px 60px;
  }
  .feature_item {
    display: flex;
    flex-flow: column;
    width: 360px;
  }
  .feature_inner {
    display: flex;
    flex-flow: column;
    height: 100%;
  }
  .feature_text {
    font-size: 16px;
    padding-inline: 10px;
  }
  .feature_button {
    margin-top: auto;
  }
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .feature {
    background-position: left -10px center, right -10px center, center top, left top;
    background-size: 20% auto, 20% auto, 100% auto, 100px auto;
    padding-bottom: calc(38% - 30px);
  }
  .feature .inner {
    background-size: 165px auto;
    background-position: right 8px top 24px;
    padding-top: 125px;
  }
  .feature_list {
    max-width: 360px;
    margin-inline: auto;
  }
  .feature_item {
    padding: 6% 6% 60px;
  }
  .feature_item:not(:last-child) {
    margin-bottom: 30px;
  }

  /* ---------- 犬アニメ ---------- */
  .feature_dogAnimation {
    top: 30px;
    width: 118px;
    animation-duration: 3s;
  }
}

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

  *診療案内

================================================================================================================================== */
.medical {
  position: relative;
  overflow: hidden;
  margin-top: -730px;
}
.medical::before, .medical::after {
  display: block;
  content: "";
  width: 100%;
  background-image: url(../images/front/medical_bg.jpg);
  background-size: 800px auto;
  pointer-events: none;
  position: absolute;
  left: 0;
}
.medical::before {
  height: calc(100% - 732px);
  background-position: left top;
  top: 732px;
}
.medical::after {
  height: 732px;
  background-position: left bottom;
  -webkit-mask-image: url(../images/front/medical_bg_mask.png);
          mask-image: url(../images/front/medical_bg_mask.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center top;
          mask-position: center top;
  -webkit-mask-size: auto 100%;
          mask-size: auto 100%;
  top: 0;
}
.medical .inner {
  padding-top: 450px;
  padding-bottom: 205px;
  background: url(../images/front/medical_illust_t_l.png) left 38px top 224px/250px auto no-repeat, url(../images/front/medical_illust_t_r.png) right 90px top 224px/294px auto no-repeat;
  position: relative;
  z-index: 1;
}

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

.medical_item {
  width: 270px;
  position: relative;
  z-index: 1;
}

.medical_item:not(a)::after {
  content: "準備中";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(100% + 10px);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  font-family: "bokutoh-ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 200%;
  color: #fff;
  position: absolute;
  left: 0;
  bottom: -5px;
}

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

@media (hover: hover) {
  a.medical_item:hover {
    transform: translateY(-10px);
  }
}
.medical_img {
  padding: 9px;
  background: url(../images/front/medical_img_bg.png) center/100% auto no-repeat;
  position: relative;
}

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

.medical_img > img {
  -webkit-mask-image: url(../images/front/medical_img_mask.png);
          mask-image: url(../images/front/medical_img_mask.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
}

.medical_icon {
  width: 90px;
  background: url(../images/front/medical_icon_bg.jpg) center/100% auto no-repeat;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: 20px;
}

.medical_inner {
  text-align: center;
  margin-top: 20px;
}

.medical_title_text {
  color: var(--text-color);
  font-size: 20px;
  font-family: "bokutoh-ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.medical_title_eng {
  color: #999;
  font-size: 14px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-top: 5px;
}

.medical_item .btn01 {
  margin-top: 20px;
}

.medical_item .btn01 span {
  padding: 11px 45px 11px 30px;
}

.medical_item:hover .btn01 span {
    padding: 11px 45px 11px 30px;
    background: #7a7068;
    color: #fff;
	transition: background 0.2s, color 0.2s;
}

/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
@media print, screen and (min-width: 641px) {
  .medical .top_title {
    margin-bottom: 85px;
  }
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .medical {
    margin-top: -38%;
  }
  .medical::before, .medical::after {
    background-size: 400px auto;
    top: 0;
  }
  .medical::before {
    height: 100%;
    margin-top: calc(38% - 2px);
  }
  .medical::after {
    height: auto;
    aspect-ratio: 1920/732;
  }
  .medical .inner {
    padding-top: 38%;
    padding-bottom: 80px;
    background-size: 30% auto, 30% auto;
    background-position: left 10px top 30px, right 10px top 30px;
  }
  .medical_list {
    justify-content: center;
    gap: 40px 10px;
  }
  .medical_item {
    max-width: 270px;
    width: calc(50% - 5px);
  }
  .medical_icon {
    width: 37%;
    max-width: 90px;
    top: -20px;
    left: 0;
  }
  .medical_inner {
    margin-top: 10px;
  }
  .medical_title_text {
    font-size: clamp(15px, 4.3vw, 20px);
  }
  .medical_title_eng {
    font-size: clamp(12px, 3.7vw, 14px);
  }
  .medical_item .btn01 {
    margin-top: 15px;
  }
  .medical_item .btn01 span {
    font-size: clamp(13px, 3.7vw, 15px);
    padding-left: 20px;
    padding-right: 40px;
  }
}

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

  *医療コラム

================================================================================================================================== */
.columnWrap {
  background: url(../images/front/column_bg.jpg) left top/709px auto;
  padding-bottom: 200px;
  position: relative;
}
.columnWrap::after {
  display: block;
  content: "";
  width: 138px;
  aspect-ratio: 276/356;
  background: url(../images/front/column_illust_b.png) left top/100% auto no-repeat;
  pointer-events: none;
  position: absolute;
  right: calc((100% - 1200px) / 2);
  bottom: 0;
  transform: translateY(20%);
  z-index: 1;
}

.column .inner {
  padding-top: 190px;
  position: relative;
}
.column .inner::before, .column .inner::after {
  display: block;
  content: "";
  background-size: 100% auto;
  background-repeat: no-repeat;
  pointer-events: none;
  position: absolute;
}
.column .inner::before {
  width: 214px;
  aspect-ratio: 428/454;
  background-image: url(../images/front/column_illust_l.png);
  top: -114px;
  left: 48px;
}
.column .inner::after {
  width: 232px;
  aspect-ratio: 464/306;
  background-image: url(../images/front/column_illust_r.png);
  top: -40px;
  right: 62px;
}

.column .column_box {
  background: #f8f8f8;
  border-radius: 16px;
  overflow: hidden;
}

.column .column_box dt a {
  display: block;
  background: url(../images/front/column_tit_bg.jpg) left top/100% auto;
  color: #fff;
  font-family: "bokutoh-ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 17px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
  padding: 22px 20px;
}
@media (hover: hover) {
  .column .column_box dt a:hover {
    opacity: 0.8;
  }
}

.column .column_box dd a {
  display: block;
  color: var(--text-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  padding: 15px 15px 15px 35px;
  background: url(../images/front/column_arrow.png) left 12px center/auto 8px no-repeat;
}
@media (hover: hover) {
  .column .column_box dd a:hover {
    background-color: #eaeaea;
  }
}

.column .column_box dd:not(:last-child) {
  border-bottom: 1px dotted #ccc;
}

/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
@media print, screen and (min-width: 641px) {
  .column .top_title {
    margin-bottom: 75px;
  }
  .column .column_list {
    display: flex;
    flex-flow: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 50px 26px;
  }
  .column .column_box {
    width: 280px;
  }
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .columnWrap {
    padding-bottom: 60px;
  }
  .columnWrap::after {
    width: 76px;
    right: 10px;
  }
  .column .inner {
    padding-top: 100px;
  }
  .column .inner::before, .column .inner::after {
    top: 0;
  }
  .column .inner::before {
    width: 30%;
    left: 10px;
    transform: translateY(-30%);
  }
  .column .inner::after {
    width: 30%;
    right: 10px;
    transform: translateY(-14%);
  }
  .column .column_box:not(:last-child) {
    margin-bottom: 30px;
  }
  .column .column_box dt a {
    padding: 15px 20px;
  }
  .column .column_box dd a {
    padding: 12px 15px 12px 35px;
  }
}

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

  *無限スライダー

================================================================================================================================== */
#infinitySlider {
  margin-top: 105px;
}

#infinitySlider .splide__list {
  gap: 40px;
}

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

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  #infinitySlider {
    margin-top: 80px;
  }
  #infinitySlider .splide__list {
    gap: 20px;
  }
  #infinitySlider .splide__slide {
    width: 220px !important;
  }
}