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

  *基本設定

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.front {
  background-image: repeating-linear-gradient(90deg, #ffffff, #ffffff 230px, #fafafa 231px, #fafafa 232px);
  overflow: hidden;
}

section .inner {
  max-width: 1540px;
  padding: 120px 70px;
}

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

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

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

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  section .inner {
    padding: 70px 20px;
  }
  /* ----- パララックス ----- */
  .parallax {
    height: 300px;
  }
}
/* ==================================================================================================================================

  *アニメーション

================================================================================================================================== */
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes zoomInAnime {
  from {
    pointer-events: none;
    transform: scale(0.5);
  }
  to {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomOutAnime {
  from {
    pointer-events: none;
    transform: scale(1);
  }
  to {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1.5);
  }
}
@keyframes scrolldown {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes move_up {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -20px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes move_down {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 20px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes floating {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(2deg);
  }
}
.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_title01 {
  margin-bottom: 70px;
  line-height: 1.5;
  text-align: center;
}
.top_title01 h2 {
  font-size: 34px;
  letter-spacing: 0.15em;
}
.top_title01 .eng {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--main-color);
  font-size: 24px;
  letter-spacing: 0.15em;
  font-family: "gotham", sans-serif;
  font-style: normal;
  font-weight: 500;
}

.top_title02 {
  margin-bottom: 90px;
  line-height: 1.5;
  text-align: center;
}
.top_title02::before {
  content: "";
  display: block;
  width: 65px;
  height: 61.75px;
  margin: 0 auto 25px;
  background: url(../images/common/logo.svg) no-repeat center/cover;
}
.top_title02 h2 {
  font-size: 38px;
  letter-spacing: 0.15em;
}
.top_title02 .eng {
  display: inline-block;
  margin-top: 15px;
  color: var(--main-color);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.15em;
  font-family: "gotham", sans-serif;
  font-style: normal;
  font-weight: 500;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .top_title01 {
    margin-bottom: 40px;
  }
  .top_title01 h2 {
    font-size: 26px;
  }
  .top_title01 .eng {
    font-size: 18px;
  }
  .top_title02 {
    margin-bottom: 40px;
  }
  .top_title02::before {
    width: 40px;
    height: 38px;
    margin: 0 auto 15px;
  }
  .top_title02 h2 {
    font-size: 24px;
  }
  .top_title02 .eng {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
  }
  h1 {
    margin: 0;
    padding: 30px 20px;
    background: none;
  }
}
/* ==================================================================================================================================

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.mainvisual {
  position: relative;
  z-index: 3;
  height: 950px;
  padding: 0 70px;
  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 {
  position: relative;
  z-index: 1;
  height: 100%;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 10px;
  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%;
  object-fit: cover;
}

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

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

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

/* MVのアニメーション  */
@keyframes showTranslate {
  0% {
    transform: translate3d(0, 0px, 0);
  }
  100% {
    transform: translate3d(0, -30px, 0);
  }
}
@keyframes hideTranslate {
  0% {
    transform: translate3d(0, -30px, 0);
  }
  100% {
    transform: translate3d(0, 0px, 0);
  }
}
/* ----- キャッチコピー ----- */
.mvCatch {
  position: absolute !important;
  top: 40%;
  left: 0;
  z-index: 3;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
}
.mvCatch .inner {
  position: relative;
  z-index: 1;
  max-width: none;
}
.mvCatch .main {
  font-family: "ta-oonishi", sans-serif;
  font-style: normal;
  font-weight: 300;
  color: #ffffff;
  font-size: 60px;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4),0 0 10px rgba(0, 0, 0, 0.4),0 0 10px rgba(0, 0, 0, 0.4);
}

/* ----- コンテンツ ----- */
.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%;
}

.banner-renewal {
  position: absolute;
  bottom: 50px;
  left: 70px;
  z-index: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 350px;
  height: 150px;
  padding: 15px 20px;
  background: rgba(0, 121, 194, 0.9);
  border: 2px solid #ffffff;
  border-radius: 7px;
  color: #ffffff;
  font-size: 110%;
  line-height: 1.6;
  text-align: center;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  overflow: hidden;
}
.banner-renewal::before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: -25px;
  z-index: -1;
  display: block;
  width: 200px;
  height: 190px;
  background: #ffffff;
  -webkit-mask: url(../images/common/logo.svg) no-repeat center/cover;
  mask: url(../images/common/logo.svg) no-repeat center/cover;
  opacity: 10%;
}
.banner-renewal .date {
  display: inline-block;
  width: 100%;
  margin: 0 auto 10px;
  padding: 5px 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  font-size: 90%;
}

.banner-wrapper {
  position: absolute;
  bottom: 50px;
  left: 450px;
  display: flex;
  gap: 5px;
}
.banner-wrapper .banner-item {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 200px;
  height: 150px;
  padding: 15px;
  background: rgba(0, 158, 194, 0.9);
  border: 2px solid #ffffff;
  border-radius: 7px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.banner-wrapper .banner-item:hover {
  color: #ffffff;
  opacity: 0.7;
}
.banner-wrapper .banner-item i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  min-width: 50px;
  height: 50px;
  min-height: 50px;
  margin: 0 auto 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 25px;
}
.banner-wrapper .banner-item .small {
  font-size: 12px;
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 500px;
    padding: 20px;
  }
  .mainvisual::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 60%;
    background: url(../images/front/sand-grd.jpg) no-repeat center/cover;
  }
  /* ----- スライダーの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: 25%;
    display: none;
  }
  .mvCatch.is-active {
    display: block;
  }
  .mvCatch .main {
    font-size: 24px;
/*     text-shadow: 0 0 10px rgba(0, 0, 0, 0.4); */
  }
  /* ----- コンテンツ ----- */
  .mvContents {
    display: none;
  }
  .banner-renewal {
    position: relative;
    bottom: auto;
    left: auto;
    width: 90%;
    max-width: 300px;
    height: auto;
  }
  .banner-wrapper {
    position: static;
    flex-flow: column;
    gap: 5px;
    width: 90%;
    max-width: 300px;
  }
  .banner-wrapper .banner-item {
    width: 100%;
    height: auto;
  }
  /* ----- スマホ専用エリア ----- */
  .sp_only {
    display: block;
    background: none !important;
  }
  .sp_only .inner {
    padding: 0 20px;
  }
  .sp_only_contents {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.clinic {
  position: relative;
  z-index: 2;
}
.clinic::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: block;
  width: calc(75% + 100px);
  height: 780px;
  background: url(../images/common/sand-blue.jpg) repeat center/200px 200px;
}
.clinic::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 350px;
  background: url(../images/common/sand-blue.jpg) repeat center/200px 200px;
}

/* ----- お知らせ ----- */
.clinic .news {
  position: relative;
  z-index: 1;
}
.clinic .news::before {
  content: "";
  position: absolute;
  top: -400px;
  left: 0px;
  z-index: -1;
  display: block;
  width: calc((100% - (100% - 1200px) - 600px) / 2);
  height: calc(100% + 100px);
  background: linear-gradient(180deg, var(--main-color), #9ad3f7, #e3f5ff, #f6fcff);
  background: url(../images/front/sand-grd.jpg) no-repeat center/cover;
}
.clinic .news .inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  padding: 80px 70px 100px;
}
.clinic .news .news_left {
  flex-shrink: 0;
}
.clinic .news .top_title {
  margin: 0 0 30px;
}
.clinic .news .btn01 {
  margin-top: 30px;
  text-align: center;
}

/* ----- 医院概要 ----- */
.clinic .info {
  position: relative;
  z-index: 1;
}
.clinic .info::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -150px;
  z-index: -1;
  display: block;
  width: 300px;
  height: 300px;
  background: linear-gradient(200deg, var(--main-color), rgb(154, 211, 247), rgba(192, 231, 255, 0.5));
  background: url(../images/common/greeting-top-2.jpg) no-repeat center/cover;
  border-radius: 10px 0 0 10px;
}
.clinic .info::after {
  content: "";
  position: relative;
  z-index: -2;
  display: block;
  width: calc(100% - 200px);
  height: 700px;
  margin: 0 auto;
  background: url(../images/common/greeting-top-1.jpg) no-repeat center/cover;
  border-radius: 12px;
}
.clinic .info .inner {
  display: flex;
  gap: 60px;
  padding: 0 70px 150px;
}
.clinic .info .inner::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: -50px;
  display: block;
  width: 430px;
  height: 220px;
  background: url(../images/front/plane.svg) no-repeat center/cover;
}
.clinic .info .inner > * {
  width: calc(50% - 20px);
}
.clinic .info .inner .info_right {
  position: relative;
  z-index: 1;
}
.clinic .info .inner .info_right::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -75px;
  z-index: -1;
  display: block;
  width: 280px;
  height: 95px;
  background: url(../images/front/ship-01.svg) no-repeat center/cover;
  animation: floating 5s ease-in-out infinite;
}
.clinic .info .office_hour {
  margin-top: 30px;
}
.clinic .info address > * {
  position: relative;
  z-index: 1;
  min-height: 50px;
}
.clinic .info address > *::before {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 0 0 0 2px;
  background: var(--main-color);
  border-radius: 3px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 18px;
}
.clinic .info address .location {
  padding: 10px 0 10px 70px;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.clinic .info address .location::before {
  content: "\f3c5";
}
.clinic .info address .location .zipcode {
  margin-right: 10px;
}
.clinic .info address .tel {
  margin-top: 20px;
  padding: 8px 0 6px 70px;
  font-size: 30px;
  line-height: 1;
  font-family: "gotham", sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.15em;
}
.clinic .info address .tel::before {
  content: "\f3cd";
  letter-spacing: 0.1em;
}
.clinic .info address .fax {
  margin-top: 20px;
  padding: 8px 0 6px 70px;
  font-size: 30px;
  line-height: 1;
  font-family: "gotham", sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.15em;
}
.clinic .info address .fax::before {
  content: "\f249";
  letter-spacing: 0.1em;
}
.clinic .info .speciality {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 30px auto 0;
  padding: 15px 0;
  border-top: 1px solid var(--line-color);
  border-bottom: 1px solid var(--line-color);
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.clinic .info .speciality .title {
  flex-shrink: 0;
  width: fit-content;
  padding: 13px 35px;
  background: var(--sub-color);
  border-radius: 5px;
  color: #ffffff;
  font-size: 110%;
  text-align: center;
}
.clinic .info .googlemap {
  padding: 5px;
  border: 1px solid var(--line-color);
  border-radius: 10px;
}
.clinic .info .googlemap iframe {
  width: 100%;
  height: 400px;
  border-radius: 7px;
}
.clinic .info .list_access {
  margin-top: 5px;
}
.clinic .info .btn01 {
  margin-top: 30px;
  text-align: center;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .clinic::before {
    width: calc(100% - 80px);
    height: 350px;
  }
  .clinic::after {
    height: 150px;
  }
  /* ----- お知らせ ----- */
  .clinic .news::before {
    display: none;
  }
  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 60px 20px;
  }
  /* ----- 医院概要 ----- */
  .clinic .info::before {
    bottom: -75px;
    width: 150px;
    height: 150px;
  }
  .clinic .info::after {
    width: calc(100% - 40px);
    height: 300px;
  }
  .clinic .info .inner {
    flex-flow: column;
    gap: 40px;
    padding: 0 20px 100px;
  }
  .clinic .info .inner::before {
    bottom: 0;
    left: -70px;
    width: 200px;
    height: 102px;
  }
  .clinic .info .inner > * {
    width: 100%;
  }
  .clinic .info .inner .info_right::after {
    right: -50px;
    bottom: -75px;
    width: 140px;
    height: 47.5px;
  }
  .clinic .info address .location {
    padding: 5px 0 5px 65px;
    line-height: 1.6;
  }
  .clinic .info address .location .zipcode {
    display: block;
    margin: 0;
  }
  .clinic .info address .tel {
    margin-top: 20px;
    padding: 10px 0 6px 63px;
    font-size: 26px;
  }
  .clinic .info address .fax {
    margin-top: 20px;
    padding: 10px 0 6px 63px;
    font-size: 26px;
  }
  .clinic .info .speciality {
    flex-flow: column;
    gap: 10px;
    padding: 10px 0;
  }
  .clinic .info .speciality .title {
    width: 100%;
    padding: 5px 10px;
  }
  .clinic .info .googlemap {
    padding: 4px;
  }
  .clinic .info .googlemap iframe {
    height: 300px;
  }
}
/* ==================================================================================================================================

  *ご挨拶（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting {
  position: relative;
  z-index: 1;
  background: url(../images/common/sand-blue.jpg) repeat center/200px 200px;
}
.greeting::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 1400px;
  height: 700px;
  background: linear-gradient(#def2fa);
  -webkit-mask: url(../images/front/kobe.svg) no-repeat center/cover;
  mask: url(../images/front/kobe.svg) no-repeat center/cover;
}
.greeting .inner {
  position: relative;
  z-index: 1;
  padding: 120px 70px;
}
.greeting .inner::before {
  content: "";
  position: absolute;
  left: -130px;
  display: block;
  width: 280px;
  height: 220px;
  background: url(../images/front/seagull-01.svg) no-repeat center/cover;
  animation: move_up 5s ease-in-out infinite alternate;
}

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

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

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

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

.greeting_text {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 110%;
  line-height: 2.5;
  letter-spacing: 0.15em;
}
.greeting_text .catch {
  margin-bottom: 40px !important;
  color: var(--main-color);
  font-size: 150%;
  line-height: 1.6;
}
.greeting_text > *:not(:last-child) {
  margin-bottom: 2em;
}

.greeting_img {
  padding: 5px;
  border: 1px solid #dfdfdf;
  border-radius: 10px;
}
.greeting_img img {
  border-radius: 7px;
}

.greeting_profile {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  margin-top: 35px;
  line-height: 2;
  text-align: center;
}
.greeting_profile::after {
  content: "";
  display: block;
  width: 300px;
  height: 30px;
  margin: 30px auto 0;
  background: url(../images/front/wave-01.svg) no-repeat center/cover;
}
.greeting_profile .position {
  font-size: 150%;
}
.greeting_profile .name {
  font-size: 180%;
}
.greeting_profile .name .kana {
  display: inline-block;
  padding-left: 10px;
  font-size: 80%;
}

.greeting_btn {
  margin-top: 60px;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .greeting::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 1400px;
    height: 700px;
    background: linear-gradient(#def2fa);
    -webkit-mask: url(../images/front/kobe.svg) no-repeat center/cover;
    mask: url(../images/front/kobe.svg) no-repeat center/cover;
  }
  .greeting .inner {
    position: relative;
    z-index: 1;
    padding: 120px 20px 70px;
  }
  .greeting .inner::before {
    content: "";
    top: 20px;
    left: 20px;
    width: 140px;
    height: 110px;
  }
  .greeting_flex {
    flex-flow: column-reverse;
    gap: 25px;
  }
  .greeting_left {
    width: 100%;
  }
  .greeting_text .catch {
    font-size: 130%;
    text-align: center;
  }
  .greeting_img {
    width: 85%;
    margin: 0 auto;
  }
  .greeting_profile {
    margin-top: 25px;
  }
  .greeting_profile::after {
    width: 200px;
    height: 20px;
    margin: 20px auto 0;
    background: url(../images/front/wave-01.svg) no-repeat center/cover;
  }
  .greeting_profile .position {
    font-size: 130%;
  }
  .greeting_profile .name {
    font-size: 150%;
  }
  .greeting_btn {
    margin-top: 40px;
    text-align: center;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.pickup {
  position: relative;
  z-index: 1;
  padding-bottom: 120px;
}
.pickup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 500px;
  height: 120px;
  background: url(../images/common/sand-blue.jpg) repeat center/200px 200px;
}
.pickup::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: block;
  width: 50%;
  height: 120px;
  background: url(../images/common/sand-blue.jpg) repeat center/200px 200px;
}
.pickup .inner {
  width: 100%;
  padding: 120px 70px;
}
.pickup .inner::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -30px;
  z-index: -1;
  display: block;
  width: 435px;
  height: 135px;
  background: url(../images/front/ship-02.svg) no-repeat center/cover;
  animation: floating 3s ease-in-out infinite;
}
.pickup .inner::after {
  content: "";
  position: absolute;
  top: 120px;
  right: 100px;
  z-index: -1;
  display: block;
  width: 308px;
  height: 242px;
  background: url(../images/front/seagull-02.svg) no-repeat center/cover;
  animation: move_down 7s ease-in-out infinite alternate;
}

.pickup_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.pickup_item {
  height: auto;
}

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

.pickup_title {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto 15px;
  border-radius: 5px;
  color: #ffffff;
  text-align: center;
}
.pickup_title::after {
  content: "";
  position: absolute;
  right: 50px;
  bottom: -24px;
  display: block;
  width: 30px;
  height: 25px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform: translateX(-50%);
}
.pickup_title h3 {
  position: relative;
  z-index: 1;
  padding: 25px 15px 25px 20px;
  font-size: 140%;
  line-height: 1.6;
  letter-spacing: 0.15em;
  overflow: hidden;
}
.pickup_title h3::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 30px;
  z-index: 1;
  display: block;
  width: 80px;
  height: 96px;
  background: #ffffff;
  -webkit-mask: url(../images/common/logo-twon.svg) no-repeat center/cover;
  mask: url(../images/common/logo-twon.svg) no-repeat center/cover;
  opacity: 0.15;
}

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

.pickup_text {
  margin: 30px 0;
}

.pickup_buttons {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
  height: fit-content;
  margin-top: auto;
  padding-top: 20px;
}

.pickup_btn {
  width: calc(50% - 5px);
  height: fit-content;
}
.pickup_btn a {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 20px 60px 20px 30px;
  background: var(--bg-gray);
  border-radius: 5px;
  color: var(--text-color);
  font-size: 105%;
  letter-spacing: 0.15em;
  transition: background 0.2s, color 0.2s;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.pickup_btn a::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  padding: 0 0 0 1px;
  border-radius: 3px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 10px;
  transform: translateY(-50%);
  transition: background 0.2s;
}

/* ----- 奇数 ----- */
.pickup_item:nth-child(odd) .pickup_title {
  background: var(--main-color);
}
.pickup_item:nth-child(odd) .pickup_title::after {
  background: var(--main-color);
}
.pickup_item:nth-child(odd) .pickup_btn a::after {
  background: var(--main-color);
}
.pickup_item:nth-child(odd) .pickup_btn a:hover {
  color: var(--text-color);
}
.pickup_item:nth-child(odd) .pickup_btn a:hover::after {
  background: var(--text-color);
}

/* ----- 偶数 ----- */
.pickup_item:nth-child(even) .pickup_title {
  background: var(--sub-color);
}
.pickup_item:nth-child(even) .pickup_title::after {
  background: var(--sub-color);
}
.pickup_item:nth-child(even) .pickup_btn a::after {
  background: var(--sub-color);
}
.pickup_item:nth-child(even) .pickup_btn a:hover {
  color: var(--text-color);
}
.pickup_item:nth-child(even) .pickup_btn a:hover::after {
  background: var(--text-color);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .pickup {
    position: relative;
    z-index: 1;
    padding-bottom: 0;
  }
  .pickup::before {
    width: 170px;
    height: 50px;
  }
  .pickup::after {
    width: calc(50% - 40px);
    height: 50px;
  }
  .pickup .inner {
    width: 100%;
    padding: 70px 20px 120px;
  }
  .pickup .inner::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 130.5px;
    height: 40.5px;
  }
  .pickup .inner::after {
    top: -10px;
    right: 20px;
    width: 112px;
    height: 88px;
  }
  .pickup_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    width: 100%;
  }
  .pickup_item {
    width: 100%;
  }
  .pickup_title {
    padding: 10px;
    font-size: 110%;
  }
  .pickup_title::after {
    right: 30px;
  }
  .pickup_title h3 {
    padding: 10px 15px;
    font-size: 17px;
  }
  .pickup_buttons {
    padding-top: 0;
  }
  .pickup_btn {
    width: 100%;
    padding-top: 0;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
  position: relative;
  z-index: 2;
  background: url(../images/common/sand-blue.jpg) repeat center/200px 200px;
}
.feature::before {
  content: "";
  position: absolute;
  top: 120px;
  right: 0;
  display: block;
  width: 516px;
  height: 264px;
  background: #d5eaf4;
  -webkit-mask: url(../images/front/plane.svg) no-repeat center/cover;
  mask: url(../images/front/plane.svg) no-repeat center/cover;
  transform: scale(-1, 1);
}
.feature::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: 0;
  z-index: -2;
  display: block;
  width: calc(50% - 350px);
  height: 600px;
  margin: 0 auto 0 0;
  background: url(../images/common/feature-top-2.jpg) center center/cover no-repeat;
  border-radius: 0 12px 12px 0;
}
.feature .inner {
  position: relative;
  z-index: 1;
}
.feature .inner::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50px;
  z-index: -2;
  display: block;
  width: 500px;
  height: 220px;
  background: url(../images/common/feature-top-1.jpg) center center/cover no-repeat;
  border-radius: 12px;
}

.feature_list {
  display: flex;
  flex-flow: wrap;
  justify-content: flex-end;
  gap: 60px 35px;
}

.feature_item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column;
  width: calc(33.3333333333% - 23.3333333333px);
  height: auto;
  padding: 0 0 30px 20px;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}
.feature_item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 75%;
  background: #ffffff;
  border-radius: 7px;
}

.feature_num {
  position: absolute;
  right: -13px;
  bottom: -20px;
  font-size: 90px;
  line-height: 1;
  letter-spacing: -3px;
  opacity: 0.1;
  font-family: "gotham", sans-serif;
  font-style: normal;
  font-weight: 500;
}
.feature_num span {
  color: var(--main-color);
  font-size: 140%;
}

.feature_title {
  position: relative;
  z-index: 2;
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: calc(100% - 40px);
  width: fit-content;
  min-height: 60px;
  margin: 0 0 -30px auto;
  padding: 0 20px;
  background: var(--main-color);
  border-radius: 5px;
}
.feature_title h3 {
  color: #ffffff;
  font-size: 120%;
  line-height: 1.75;
  text-align: right;
}

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

.feature_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  margin-top: 20px;
  padding: 0 25px 0 15px;
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .feature::before {
    content: "";
    position: absolute;
    top: 80px;
    right: 0;
    display: block;
    width: 172px;
    height: 88px;
  }
  .feature::after {
    position: static;
    width: calc(100% - 20px);
    height: 200px;
    margin: 0 auto 0 0;
  }
  .feature .inner {
    padding: 150px 20px 70px;
  }
  .feature .inner::before {
    top: -50px;
    left: 0;
    width: 50%;
    height: 150px;
    border-radius: 0 10px 10px 0;
  }
  .feature_list {
    gap: 30px;
  }
  .feature_item {
    width: 100%;
  }
  .feature_title {
    min-height: auto;
    padding: 10px 15px;
  }
  .feature_title h3 {
    font-size: 15px;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical_wrapper {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 270px 70px 120px;
}
.medical_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0px;
  z-index: -1;
  display: block;
  width: 50%;
  height: 120px;
  background: url(../images/common/sand-blue.jpg) repeat center/200px 200px;
}

.medical_container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 100px;
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
}
.medical_container::after {
  content: "";
  position: absolute;
  top: -450px;
  right: 100px;
  z-index: -1;
  display: block;
  width: 280px;
  height: 220px;
  background: url(../images/front/seagull-02.svg) no-repeat center/cover;
  transform: rotate(10deg);
  animation: move_up 6s ease-in-out infinite alternate;
}

.medical {
  width: 100%;
}

.body-parts {
  flex-shrink: 0;
  width: 600px;
}

.medical .inner {
  padding: 0;
}

.medical_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  height: fit-content;
}

.medical_item {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  background: var(--bg-gray);
  border-radius: 7px;
  color: var(--text-color);
  overflow: hidden;
}

.medical_item:hover {
  background: var(--bg-color);
  color: var(--text-color);
  transform: translateY(-10px);
}

.medical_inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 280px;
  padding: 20px 10px 30px;
  text-align: center;
  overflow: hidden;
}

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

.medical_title h3 {
  width: 100%;
  font-size: 120%;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.medical_title h3 .small {
  display: block;
  margin: 5px;
  font-size: 70%;
}

.medical_title_eng {
  display: inline-block;
  width: fit-content;
  margin: 10px auto 0;
  color: var(--main-color);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 1px;
  text-align: center;
  font-family: "gotham", sans-serif;
  font-style: normal;
  font-weight: 500;
}

.medical_item:nth-child(even) .medical_title_eng {
  color: var(--sub-color);
}

/* ----------------------------------------------------------------------
  ▼ タブレット
---------------------------------------------------------------------- */
@media screen and (max-width: 1500px) {
  .medical_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .medical_wrapper {
    padding: 100px 20px 30px;
  }
  .medical_wrapper::before {
    width: calc(100% - 40px);
    height: 50px;
  }
  .medical_container {
    flex-flow: column;
    gap: 40px;
  }
  .medical_container::after {
    content: "";
    position: absolute;
    top: -250px;
    right: 0;
    width: 140px;
    height: 110px;
  }
  .medical_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
  }
  .medical_inner {
    flex-flow: column;
    min-height: auto;
    padding: 20px 10px;
  }
  .medical_icon {
    width: 50%;
  }
  .medical_title h3 {
    font-size: 100%;
  }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
.body-parts .inner {
  padding: 0;
}

.body-parts_wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

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

/* ----- 各部位の共通設定 ----- */
.body_parts_list > li {
  position: absolute;
  display: block;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  transform: translateX(-50%);
}

.body_parts_list > li .body_parts_title::before {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  border: 1px dashed var(--main-color);
}

.body_parts_list > li .body_parts_title::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 23px;
  height: 23px;
  background: #0079c2;
  border: 5px solid #edf8ff;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background 0.2s;
}

.body_parts_list > li .body_parts_title:hover::after {
  background: var(--sub-color);
}

/* ----- 各部位の位置 ----- */
#body-parts1 {
  top: 110px;
  left: calc(50% - 200px);
}

#body-parts1 .body_parts_title::before {
  right: -120px;
  width: 70px;
  transform: translateX(-50%);
}

#body-parts1 .body_parts_title::after {
  right: -120px;
}

#body-parts2 {
  top: 70px;
  left: calc(50% + 150px);
}

#body-parts2 .body_parts_title::before {
  left: -110px;
  width: 95px;
}

#body-parts2 .body_parts_title::after {
  left: -145px;
}

#body-parts3 {
  top: 210px;
  left: calc(50% - 250px);
}

#body-parts3 .body_parts_title::before {
  right: -100px;
  width: 85px;
}

#body-parts3 .body_parts_title::after {
  right: -130px;
}

#body-parts4 {
  top: 150px;
  left: calc(50% + 250px);
}

#body-parts4 .body_parts_title::before {
  left: -105px;
  width: 90px;
}

#body-parts4 .body_parts_title::after {
  left: -140px;
}

#body-parts5 {
  top: 280px;
  left: calc(50% - 250px);
}

#body-parts5 .body_parts_title::before {
  right: -165px;
  width: 150px;
}

#body-parts5 .body_parts_title::after {
  right: -185px;
}

#body-parts6 {
  top: 230px;
  left: calc(50% + 250px);
}

#body-parts6 .body_parts_title::before {
  left: -125px;
  width: 110px;
}

#body-parts6 .body_parts_title::after {
  left: -160px;
}

#body-parts7 {
  top: 390px;
  left: calc(50% - 245px);
}

#body-parts7 .body_parts_title::before {
  right: -80px;
  width: 70px;
}

#body-parts7 .body_parts_title::after {
  right: -110px;
}

#body-parts8 {
  top: 300px;
  left: calc(50% + 200px);
}

#body-parts8 .body_parts_title::before {
  left: -115px;
  width: 100px;
}

#body-parts8 .body_parts_title::after {
  left: -150px;
}

#body-parts9 {
  top: 415px;
  left: calc(50% + 200px);
}

#body-parts9 .body_parts_title::before {
  left: -50px;
  width: 40px;
}

#body-parts9 .body_parts_title::after {
  left: -80px;
}

/* ----- 各部位のタイトル ----- */
.body_parts_title {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 7px 20px;
  background: var(--main-color);
  border-radius: 5px;
  color: #ffffff;
  font-size: 120%;
  text-align: center;
  white-space: nowrap;
}

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

/* -----　部位ごとの病状・病名　----- */
.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 {
    width: 100%;
  }
  .body-parts_img {
    width: 55%;
  }
  /* ----- 各部位の共通設定 ----- */
  .body_parts_list > li {
    padding: 8px;
  }
  .body_parts_list > li .body_parts_title::before {
    display: none;
  }
  .body_parts_list > li .body_parts_title::after {
    display: none;
  }
  /* ----- 各部位の位置 ----- */
  #body-parts1 {
    top: 12%;
    left: 20%;
  }
  #body-parts2 {
    top: 7%;
    left: 75%;
  }
  #body-parts3 {
    top: 28%;
    left: 15%;
  }
  #body-parts4 {
    top: 33%;
    left: 85%;
  }
  #body-parts5 {
    top: 50%;
    left: 25%;
  }
  #body-parts6 {
    top: 50%;
    left: 75%;
  }
  #body-parts7 {
    top: 65%;
    left: 28%;
  }
  #body-parts8 {
    top: 65%;
    left: 70%;
  }
  #body-parts9 {
    top: 80%;
    left: 30%;
  }
  /* ----- 各部位のタイトル ----- */
  .body_parts_title {
    padding: 3px 10px;
    font-size: 90%;
  }
  .body_parts_title::before {
    display: none;
  }
  /* -----　部位ごとの病状・病名　----- */
  .body-parts_search {
    display: none;
  }
}
/* ==================================================================================================================================

  *無限スライダー

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
#infinitySlider {
  padding: 30px 0;
}
#infinitySlider .splide__list {
  gap: 30px;
}
#infinitySlider .splide__slide {
  width: 500px !important;
  border-radius: 10px;
  overflow: hidden;
}

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