@charset "UTF-8";

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

  *基本設定

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

section .inner {
  padding: 120px 0;
}

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

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

/* 切り抜く範囲 */
.parallax_img {
  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;
  }
}

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

  *タイトル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.top_title {
  margin-bottom: 70px;
  line-height: 1.5;
  text-align: center;

  /* 左寄せ */
}

.top_title.title_left {
  text-align: start;
}

.top_title .eng {
  display: inline-block;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #7f5658 70%, #d55e64 70%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: transparent;
  font-size: 500%;
  line-height: 1;
  letter-spacing: 0.1em;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  white-space: nowrap;
}

.top_title h2 {
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 150%;
  letter-spacing: 0.15em;
}

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

  .top_title .eng {
    margin-bottom: 12px;
    font-size: 330%;
  }

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

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

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.mainvisual {
  position: relative;
  z-index: 1;
  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#sliderBtn_prev {
  left: 20px;
}

.mvSlider .sliderBtn#sliderBtn_next {
  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#sliderBtn_prev span::before {
  content: "\f053";
}

.mvSlider .sliderBtn#sliderBtn_next span::before {
  content: "\f054";
}

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

/* ----- MVの画像 ----- */
.mvImg {
  width: 100%;
  height: 100%;
}

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

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

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

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

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

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

/* MVのアニメーション  */
@keyframes showTranslate {
  0% {
    transform: translate3d(0, 0px, 0);
  }

  100% {
    transform: translate3d(0, -30px, 0);
  }
}
@keyframes hideTranslate {
  0% {
    transform: translate3d(0, -30px, 0);
  }

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

/* ----- キャッチコピー ----- */
.mvCatch {
  position: absolute !important;
  top: 40%;
  left: 0;
  z-index: 3;
  width: 100%;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  transform: translateY(-50%);
}

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

.mvCatch p {
  color: #7f5658;
  font-size: 250%;
  letter-spacing: 0.25em;
  text-align: center;
  filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff);
}

/* ----- コンテンツ ----- */
.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: 60px;
  left: 0;
  width: 250px;
}

.banner_wrapper {
  position: absolute;
  bottom: 60px;
  left: 260px;
  display: flex;
  gap: 8px;
}

.banner_wrapper .banner {
  width: 220px;
  height: auto;
}

.orthodontic_banner {
  position: absolute;
  right: 0;
  bottom: 90px;
  max-width: 400px;
}

.orthodontic_banner a:hover{
  opacity: 0.7;
}

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

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

  /* ----- スライダーのArrowボタン ----- */
  .mvSlider .sliderBtn {
    top: 50%;
    width: 40px;
    height: 40px;
    padding: 2px;
    font-size: 10px;
  }

  .mvSlider .sliderBtn#sliderBtn_prev {
    left: 10px;
  }

  .mvSlider .sliderBtn#sliderBtn_next {
    right: 10px;
  }

  .mvSlider .sliderBtn span::before {
    font-size: 11px;
  }

  /* ----- キャッチコピー ----- */
  .mvCatch {
    top: auto;
    bottom: 20px;
    display: none;
  }

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

  .mvCatch p {
    font-size: 130%;
    line-height: 1.75;
    filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff);
  }

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

  /* ----- 開院バナー ----- */
  .open_bnr {
    position: static;
  }

  .banner_wrapper {
    position: static;
    display: flex;
    gap: 10px;
  }

  .banner_wrapper .banner {
    width: 50%;
    height: auto;
  }

  .orthodontic_banner {
    position: static;
    margin: 30px auto 0;
  }

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

  .sp_only .inner {
    padding: 0 20px 70px;
  }

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

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

  *バナーエリア

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
/* ----- 共通設定 ----- */
.top_banner .banner_slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: var(--text-color);
}

/* 画像のみのバナー */
.top_banner .onlyimg .banner_slide {
  height: fit-content;
  padding: 0;
}

.top_banner .onlyimg .banner_slide img {
  width: 100%;
  height: auto;
  transition: opacity 0.2s;
}

.top_banner .onlyimg a.banner_slide:hover img {
  opacity: 0.5;
}

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

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

.top_banner .input .banner_slide .slide_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.top_banner .input .banner_slide .slide_title {
  margin: 0 auto 10px;
  padding: 5px;
  border-bottom: 1px solid var(--line-color);
  color: var(--main-color);
  font-size: 110%;
  line-height: 1.5;
}

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

.top_banner .input a.banner_slide:hover {
  opacity: 0.6;
}

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

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

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

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

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

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

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

#bannerSlider .bannerSlider_arrow:hover i {
  background: var(--sub-color);
}

#bannerSlider .bannerSlider_arrow_prev {
  left: 0;
}

#bannerSlider .bannerSlider_arrow_next {
  right: 0;
}

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

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

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  /* ----- グリッドバナー ----- */
  .banner_grid li {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

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

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

  #bannerSlider .bannerSlider_arrow i {
    padding: 0 0 1px 0;
  }

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

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

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.clinic {
  position: relative;
  z-index: 1;
  padding: 0 0 150px;
  background: var(--bg-pattern-red);
}

.clinic::before {
  content: "";
  position: absolute;
  bottom: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 320px;
  background: #ffffff;
  -webkit-mask: url(../images/front/section_cloud.svg) repeat-x center/3840px 320px;
  mask: url(../images/front/section_cloud.svg) repeat-x center/3840px 320px;
}

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

.clinic .news .inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  padding: 100px 0 70px;
}

.clinic .news .news_left {
  flex-shrink: 0;
}

.clinic .news .top_title {
  margin: 0 0 50px;
}

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

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

/* ----- 医院概要 ----- */
.clinic .info .inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 60px;
  padding: 0 0 100px;
}

.clinic .info .inner::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -220px;
  z-index: -1;
  display: block;
  width: 150px;
  height: 185px;
  background: url(../images/front/balloon-blue.png) no-repeat center/cover;
}

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

.clinic .info .office_hour .title {
  background: #ffffff;
}

.clinic .info .office_hour .table_wrapper {
  background: #ffffff;
}

.clinic .info address > * {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto 20px;
  padding: 0 0 20px;
  border-bottom: 2px dashed #e7d8d9;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.65;
}

.clinic .info address > * .title {
  flex-shrink: 0;
  width: 110px;
  padding: 12px 10px;
  background: var(--main-color);
  border-radius: 7px;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
}

.clinic .info address .location .zipcode {
  display: block;
  margin-right: 10px;
}

.clinic .info address .tel {
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--text-color);
  font-size: 30px;
}

.clinic .info address .tel a {
  color: var(--text-color);
  letter-spacing: 0.2em;
}

.clinic .info address .tel .title {
  background: var(--orange);
}

.clinic .info address .fax {
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
}

.clinic .info address .fax .title {
  background: var(--orange);
}

.clinic .info .speciality {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto 20px;
  padding: 0 0 20px;
  border-bottom: 2px dashed #e7d8d9;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.65;
}

.clinic .info .speciality .title {
  flex-shrink: 0;
  width: 110px;
  padding: 12px 10px;
  background: var(--green);
  border-radius: 7px;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
}

.clinic .info .googlemap {
  padding: 10px;
  background: #ffffff;
  border-radius: 25px;
}

.clinic .info .googlemap iframe {
  height: 430px;
  border-radius: 20px;
}

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

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

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .clinic {
    padding-bottom: 50px;
  }

  .clinic::before {
    height: 83px;
    background: #ffffff;
    -webkit-mask: url(../images/front/section_cloud.svg) repeat-x center/1000px 83px;
    mask: url(../images/front/section_cloud.svg) repeat-x center/1000px 83px;
  }

  /* ----- お知らせ ----- */
  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 60px 20px;
  }

  .clinic .news .top_title {
    margin-bottom: 40px;
  }

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

  /* ----- 医院概要 ----- */
  .clinic .info .inner {
    flex-flow: column;
    gap: 25px;
    padding: 0 20px 70px;
  }

  .clinic .info .inner::after {
    bottom: -60px;
    left: -15px;
    width: 60px;
    height: 74px;
  }

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

  .clinic .info address > * {
    flex-flow: column;
    gap: 10px;
    width: 100%;
  }

  .clinic .info address > * .title {
    width: 100%;
    padding: 10px;
    font-size: 14px;
  }

  .clinic .info address .location .zipcode {
    display: block;
    margin-right: 10px;
  }

  .clinic .info address .tel {
    gap: 5px;
    font-size: 28px;
  }

  .clinic .info address .fax {
    gap: 5px;
    font-size: 28px;
  }

  .clinic .info .speciality {
    flex-flow: column;
    gap: 10px;
  }

  .clinic .info .speciality .title {
    width: 100%;
    padding: 10px;
    font-size: 14px;
  }

  .clinic .info .googlemap {
    padding: 7px;
  }

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

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

  *ご挨拶（パターン01）

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

.greeting::before {
  content: "";
  position: absolute;
  bottom: 700px;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 250px;
  background: url(../images/front/town.png) repeat-x center/auto 250px;
  opacity: 100%;
}

.greeting::after {
  content: "";
  display: block;
  width: 100%;
  height: 700px;
  border: 10px solid #fff;
  background: url(../images/front/greeting_after.jpg) no-repeat center/cover;
}

.greeting .inner {
  padding-top: 70px;
}

.greeting_box {
  position: relative;
  z-index: 1;
  padding-bottom: 150px;
}

.greeting_box::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -250px;
  z-index: -1;
  display: block;
  width: 325px;
  height: 309px;
  background: url(../images/front/balloons.png) no-repeat center/cover;
}

.greeting_box::after {
  content: "";
  position: absolute;
  bottom: 100px;
  left: -250px;
  z-index: -1;
  display: block;
  width: 656px;
  height: 600px;
  background: url(../images/common/logo.svg) no-repeat center/cover;
  opacity: 3%;
}

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

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

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

.greeting_text {
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 105%;
  line-height: 2.5;
}

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

.greeting_img {
  border-radius: 30px;
  overflow: hidden;
}

.greeting_profile {
  margin-top: 30px;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
  text-align: center;
}

.greeting_profile .position {
  font-size: 130%;
}

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

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .greeting .inner {
    padding-top: 100px;
  }

  .greeting::before {
    bottom: 350px;
    height: 130px;
    background: url(../images/front/town.png) repeat-x center/auto 130px;
  }

  .greeting::after {
    height: 350px;
    border: 5px solid #fff;
  }

  .greeting_box {
    padding-bottom: 100px;
  }

  .greeting_box::before {
    top: -170px;
    right: -50px;
    width: 150px;
    height: 142px;
  }

  .greeting_box::after {
    bottom: 200px;
    left: -150px;
    width: 437px;
    height: 400px;
    opacity: 3%;
  }

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

  .greeting_left {
    width: 100%;
  }

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

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.pickup {
  position: relative;
  z-index: 2;
  padding: 0 10px 8px;
  background: #ffffff;
}

.pickup::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 50%;
  z-index: 1;
  display: block;
  width: 3px;
  height: 200px;
  background: linear-gradient(to bottom, #ffffff 110px, #7f5658 110px);
  transform: translateX(-50%);
}

.pickup::after {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 30px;
  background: #ffffff;
  -webkit-mask: url(../images/front/wave.svg) repeat-x center/contain;
  mask: url(../images/front/wave.svg) repeat-x center/contain;
}

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

.pickup .top_title {
  margin-bottom: 100px;
}

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

.pickup_item {
  width: 50%;
  padding: 100px 15px;
}

.pickup_inner {
  display: flex;
  flex-flow: column;
  justify-content: center;
  max-width: 550px;
  height: auto;
}

.pickup_title {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto 15px;
  padding: 25px 30px;
  border-radius: 10px;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
}

.pickup_title::before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  display: block;
  width: 30px;
  height: 25px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform: translateX(-50%);
}

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

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

.pickup_img {
  position: relative;
  z-index: 1;
  padding: 10px;
  background: #ffffff;
  border-radius: 30px;
}

.pickup_img img {
  border-radius: 25px;
}

.pickup_text {
  margin: 30px 0;
}

.pickup_buttons {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
  height: 100%;
  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: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10000px;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.15em;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.pickup_btn a span {
  display: block;
  padding: 15px 20px;
  background: #ffffff;
  border-radius: 10000px;
  transition: background 0.2s;
}

/* ----- 奇数 ----- */
.pickup_item:nth-child(odd) {
  position: relative;
  z-index: 1;
  padding: 100px 70px 150px 30px;
  background: linear-gradient(rgba(251, 247, 238, 0.7), rgba(251, 247, 238, 0.7)), url(../images/common/pattern_01.jpg) top right/120px 120px repeat;
  border-right: 5px solid #ffffff;
}

.pickup_item:nth-child(odd)::after {
  content: "こどもの矯正";
  position: absolute;
  bottom: 50px;
  left: 50px;
  z-index: -1;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #f6ebd5;
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0;
}

.pickup_item:nth-child(odd) .pickup_inner {
  margin: 0 0 0 auto;
}

.pickup_item:nth-child(odd) .pickup_title {
  background: var(--orange);
}

.pickup_item:nth-child(odd) .pickup_title::before {
  background: var(--orange);
}

.pickup_item:nth-child(odd) .pickup_btn a {
  background: rgb(245, 217, 160);
}

.pickup_item:nth-child(odd) .pickup_btn a span {
  background: var(--orange);
}

.pickup_item:nth-child(odd) .pickup_btn a:hover {
  background: rgb(229, 190, 110);
}

.pickup_item:nth-child(odd) .pickup_btn a:hover span {
  background: #d29d34;
}

/* ----- 偶数 ----- */
.pickup_item:nth-child(even) {
  position: relative;
  z-index: 1;
  padding: 100px 30px 130px 70px;
  background: linear-gradient(rgba(243, 249, 236, 0.7), rgba(243, 249, 236, 0.7)), url(../images/common/pattern_01.jpg) top right/120px 120px repeat;
  border-left: 5px solid #ffffff;
  overflow: hidden;
}

.pickup_item:nth-child(even)::after {
  content: "おとなの矯正";
  position: absolute;
  right: 50px;
  bottom: 50px;
  z-index: -1;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #e5eedc;
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0;
}

.pickup_item:nth-child(even) .pickup_inner {
  margin: 0 auto 0 0;
}

.pickup_item:nth-child(even) .pickup_title {
  background: var(--green);
}

.pickup_item:nth-child(even) .pickup_title::before {
  background: var(--green);
}

.pickup_item:nth-child(even) .pickup_btn {
  width: 100%;
}

.pickup_item:nth-child(even) .pickup_btn a {
  background: #c9e7a9;
}

.pickup_item:nth-child(even) .pickup_btn a span {
  background: var(--green);
}

.pickup_item:nth-child(even) .pickup_btn a:hover {
  background: #bdde9a;
}

.pickup_item:nth-child(even) .pickup_btn a:hover span {
  background: #7cb93a;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .pickup {
    padding: 0 5px 5px;
  }

  .pickup::before {
    top: -70px;
    height: 120px;
    background: linear-gradient(to bottom, #ffffff 50px, #7f5658 50px);
  }

  .pickup::after {
    top: -20px;
    height: 20px;
    -webkit-mask: url(../images/front/wave.svg) repeat-x center/contain;
    mask: url(../images/front/wave.svg) repeat-x center/contain;
  }

  .pickup .inner {
    padding: 80px 0 0;
  }

  .pickup .top_title {
    margin-bottom: 40px;
  }

  .pickup_img {
    padding: 5px;
  }

  .pickup_list {
    gap: 5px;
    width: 100%;
  }

  .pickup_item {
    width: 100%;
    padding: 50px 20px 60px !important;
    border: none !important;
  }

  .pickup_title {
    padding: 15px 10px;
  }

  .pickup_title h2, .pickup_title h3 {
    font-size: 110%;
    line-height: 1.65;
  }

  .pickup_title::before {
    bottom: -20px;
    width: 25px;
    height: 20px;
  }

  .pickup_inner {
    max-width: none;
    min-height: auto;
    margin: 0 !important;
  }

  .pickup_buttons {
    gap: 5px;
    padding-top: 0px;
  }

  .pickup_btn {
    width: 100%;
  }

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

  /* ----- 奇数 ----- */
  .pickup_item:nth-child(odd)::after {
    right: 20px;
    bottom: 20px;
    left: auto;
    font-size: 24px;
  }

  /* ----- 偶数 ----- */
  .pickup_item:nth-child(even)::after {
    right: 20px;
    bottom: 20px;
    font-size: 24px;
  }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.search {
  position: relative;
  background: var(--bg-pattern-red);
}

.search .tab_list {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.search .tab_list li {
  display: flex;
  flex: 1;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 15px 20px;
  background: #a9a9a9;
  border-radius: 10000px;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  font-size: 140%;
  cursor: pointer;
  transition: transform 0.2s, padding 0.2s;
}

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

/* ----- パネル ----- */
.search .panel {
  display: none;
  margin: 0 !important;
}

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

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

.search_list a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 60px;
  padding: 25px 15px 25px 25px;
  background: #ffffff;
  border-radius: 10px;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--text-color);
  font-size: 105%;
  overflow: hidden;
}

.search_list a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 10px;
  height: 100%;
  background: rgb(213, 94, 100);
  transition: opacity 0.2s;
}

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

.search_list a:hover::after {
  opacity: 100%;
}

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

.panel_flex .search_img {
  width: 100%;
  margin: 0 !important;
  padding: 10px;
  background: #ffffff;
  border-radius: 30px;
}

.panel_flex .search_img img {
  border-radius: 25px;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .search .tab_list {
    flex-flow: column;
    gap: 7px;
    margin: 0 0 15px;
  }

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

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

  .search_list a {
    padding: 15px 10px 15px 15px;
    border-radius: 7px;
  }

  .search_list a::after {
    width: 7px;
  }

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

  .panel_flex .search_img {
    width: 100%;
    padding: 6px;
    border-radius: 20px;
  }

  .panel_flex .search_img img {
    width: 100%;
    min-height: 200px;
    border-radius: 15px;
    object-fit: cover;
  }

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

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
  position: relative;
  z-index: 1;
  padding-bottom: 150px;
  background: repeating-linear-gradient(90deg, #ffffff, #ffffff 200px, #fff7f9 201px, #fff7f9 202px);
}

.feature::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  z-index: -1;
  display: block;
  width: 100%;
  height: 250px;
  background: url(../images/front/town.png) center center/auto 250px repeat-x;
  opacity: 1;
}

.feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 50px 30px;
}

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

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

.feature_img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 25%;
  background: rgb(213, 94, 100);
  border-radius: 0 0 25px 25px;
}

.feature_img {
  padding: 0 7px 7px;
}

.feature_img img {
  border-radius: 20px;
}

.feature_num {
  margin: 0 0 0 !important;
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 150%;
}

.feature_num span {
  color: var(--main-color);
  font-size: 140%;
}

.feature_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  margin-top: 30px;
}

.feature_title {
  display: flex;
  flex-flow: column;
  justify-content: center;
  min-height: 70px;
  margin-bottom: 15px;
}

.feature_title h3 {
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 120%;
  line-height: 1.75;
  text-align: center;
}

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

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

.feature_button .btn01 a {
  min-width: auto;
  padding: 10px 50px 10px 35px;
  font-size: 90%;
}

.feature_button .btn01 a::after {
  width: 25px;
  height: 25px;
  font-size: 10px;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .feature {
    padding-bottom: 60px;
  }

  .feature::after {
    height: 130px;
    background: url(../images/front/town.png) center center/auto 130px repeat-x;
  }

  .feature_list {
    gap: 15px;
  }

  .feature_item {
    width: 100%;
  }

  .feature_inner {
    margin-top: 25px;
  }

  .feature_title {
    min-height: auto;
    margin-bottom: 25px !important;
  }

  .feature_button {
    padding-top: 25px;
  }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
  background: linear-gradient(rgba(255, 225, 226, 0.4), rgba(255, 255, 255, 0.4)), url(../images/front/dmy.jpg) no-repeat center/cover;
  border: 10px solid #ffffff;
}

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

.medical_item {
  position: relative;
  z-index: 1;
  width: calc(25% - 15px);
  height: auto;
  padding: 7px;
  border-radius: 50%;
  overflow: hidden;
}

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

.medical_img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  transition: background 0.2s;
}

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

.medical_inner {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 45px 20px 30px;
  border-radius: 50%;
  text-align: center;
  aspect-ratio: 1;
}

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

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

.medical_title h3 {
  margin-bottom: 5px;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  font-size: 130%;
  line-height: 1.75;
}

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

.medical_title_eng {
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--main-color);
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
}

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

.medical_btn span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 auto;
  padding: 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);
}

.medical_item:nth-child(4n+1) {
  background: rgba(214, 50, 58, 0.3);
}

.medical_item:nth-child(4n+1) .medical_inner {
  background: url(../images/front/suisai-red.jpg) no-repeat center/cover;
}

.medical_item:nth-child(4n+2) {
  background: rgba(232, 172, 56, 0.4);
}

.medical_item:nth-child(4n+2) .medical_inner {
  background: url(../images/front/suisai-orange.jpg) no-repeat center/cover;
}

.medical_item:nth-child(4n+3) {
  background: rgba(144, 200, 84, 0.4);
}

.medical_item:nth-child(4n+3) .medical_inner {
  background: url(../images/front/suisai-green.jpg) no-repeat center/cover;
}

.medical_item:nth-child(4n+4) {
  background: rgba(124, 205, 220, 0.4);
}

.medical_item:nth-child(4n+4) .medical_inner {
  background: url(../images/front/suisai-blue.jpg) no-repeat center/cover;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .medical {
    background: linear-gradient(rgba(255, 225, 226, 0.4), rgba(255, 255, 255, 0.4)), url(../images/front/dmy.jpg) no-repeat center/cover;
    border: 5px solid #ffffff;
  }

  .medical .inner {
    padding: 70px 15px;
  }

  .medical_list {
    gap: 10px 5px;
  }

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

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

  .medical_inner {
    min-height: auto;
    padding: 20px 10px;
  }

  .medical_icon {
    width: 50%;
  }

  .medical_title h3 {
    font-size: 13px;
    letter-spacing: 0.1em;
  }

  .medical_title h3 .small {
    font-size: 10px;
  }

  .medical_item:nth-child(1), .medical_item:nth-child(2) {
    background: rgba(214, 50, 58, 0.3);
  }

  .medical_item:nth-child(1) .medical_inner, .medical_item:nth-child(2) .medical_inner {
    background: url(../images/front/suisai-red.jpg) no-repeat center/cover;
  }

  .medical_item:nth-child(3), .medical_item:nth-child(4) {
    background: rgba(232, 172, 56, 0.4);
  }

  .medical_item:nth-child(3) .medical_inner, .medical_item:nth-child(4) .medical_inner {
    background: url(../images/front/suisai-orange.jpg) no-repeat center/cover;
  }

  .medical_item:nth-child(5), .medical_item:nth-child(6) {
    background: rgba(144, 200, 84, 0.4);
  }

  .medical_item:nth-child(5) .medical_inner, .medical_item:nth-child(6) .medical_inner {
    background: url(../images/front/suisai-green.jpg) no-repeat center/cover;
  }

  .medical_item:nth-child(7), .medical_item:nth-child(8) {
    background: rgba(124, 205, 220, 0.4);
  }

  .medical_item:nth-child(7) .medical_inner, .medical_item:nth-child(8) .medical_inner {
    background: url(../images/front/suisai-blue.jpg) no-repeat center/cover;
  }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.column {
  background: var(--bg-color);
}

.column .column_list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 50px 25px;
  padding: 30px;
  background: #ffffff;
}

.column .column_box {
  width: calc(25% - 18.75px);
}

.column .column_box dt a {
  display: block;
  padding: 15px 10px;
  background: var(--main-color);
  color: #ffffff;
  font-size: 110%;
  text-align: center;
}

.column .column_box dd {
  padding: 10px 10px;
  border-bottom: 1px dashed var(--line-color);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

  .column .column_box {
    width: 100%;
  }
}

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

  *無限スライダー

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

#infinitySlider .splide__list {
  gap: 10px;
}

#infinitySlider .splide__slide {
  width: 450px !important;
  border-radius: 30px;
  overflow: hidden;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  #infinitySlider {
    padding: 0 0 5px;
  }

  #infinitySlider .splide__list {
    gap: 5px;
  }

  #infinitySlider .splide__slide {
    width: 270px !important;
    border-radius: 15px;
  }
}
