@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;
  }
}

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

  *アニメーション

================================================================================================================================== */
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes zoomInAnime {
  from {
    pointer-events: none;
    transform: scale(0.5);
  }

  to {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomOutAnime {
  from {
    pointer-events: none;
    transform: scale(1);
  }

  to {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1.5);
  }
}
@keyframes scrolldown {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.fadeUp,
.zoomOut,
.zoomIn,
.fadeRight,
.fadeLeft {
  opacity: 0;
}

.fadeUp.is-active {
  animation: fadeUpAnime 1s forwards;
}

.fadeRight.is-active {
  animation: fadeRightAnime 1s forwards;
}

.fadeLeft.is-active {
  animation: fadeLeftAnime 1s forwards;
}

.zoomIn.is-active {
  animation: zoomInAnime 0.8s forwards;
}

.zoomOut.is-active {
  animation: zoomOutAnime 1s forwards;
}

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

  *タイトル

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

  /* 左寄せ */
}

.top_title.title_left {
  text-align: center;
  margin-bottom: 40px;
}

.top_title h2 {
  font-family: var(--main-font);
  font-size: 220%;
}

.top_title .eng {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 15px;
  color: var(--main-color);
  font-size: 190%;
  font-family: var(--sub-font);
  padding-top: 55px;
  background: linear-gradient(160deg, #d6d37d, #adb173, #566b4b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top_title .eng::after {
  content: "";
  display: block;
  width: 45px;
  height: 52px;
  background-image: url(../images/front/simple_logo.png);
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
}

.search .top_title .eng::after {
  border-radius: 50px; /* 角を丸くする場合 */
  /* 色（#ffcc00）、X軸オフセット、Y軸オフセット、ぼかしの広がり */
  box-shadow: 0 0 13px 5px rgba(255, 255, 255, 0.6); 
}

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

  .top_title h2 {
    font-size: 148%;
    margin: 0;
  }

  .top_title .eng {
    padding-top: 38px;
    font-size: 130%;
    margin-bottom: 3px;
  }

  .top_title .eng::after {
    width: 30px;
    height: 34px;
  }

  .top_title.title_left {
    margin-bottom: 20px;
  }
}

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

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.mainvisual {
  position: relative;
  z-index: 1;
  height: 800px;
  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%;
}

.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%;
  transform: translateY(-50%);
}

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

.mvCatch p {
  font-size: 200%;
  font-family: var(--sub-font);
  color: #fff;
  text-shadow: 3px 0px 10px var(--sub-color);
}



/* ----- コンテンツ ----- */
.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: 40px;
  display: inline-block;
  left: 0;
  padding: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.open_bnr > * {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 260px;
  color: rgb(255, 255, 255);
  font-size: 100%;
  line-height: 1.5;
  text-align: center;
  font-family: var(--sub-font);
  flex-flow: column;
  padding: 15px;
  background: var(--main-color);
  border-radius: 50%;
  overflow: hidden;
}

.open_bnr > *::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/front/simple_logo.png);
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.1;
}

.open_bnr-date01 {
  font-size: 110%;
  margin-bottom: 5px;
}

.open_bnr-head {
  font-size: 220%;
  letter-spacing: normal;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

.open_bnr-subhead {
  font-size: 110%;
  color: var(--main-color);
  background: rgb(255, 255, 255);
  padding: 0px 30px;
  border-radius: 9999px;
  margin: 13px auto 10px;
}

.open_bnr-date02 {
  font-size: 110%;
  margin-bottom: 5px;
}

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

.mv-bnr {
  position: absolute;
  left: 290px;
  bottom: 40px;
  display: flex;
  gap: 10px;
}

.mv-bnr_item {
  display: inline-block;
  padding: 4px;
  background: rgba(255, 255, 255, 0.4);
}

.mv-bnr_item a, .mv-bnr_item p {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 120px;
  color: #F4E511;
  color: #7b4d2a;
  color: #fff;
  font-family: var(--sub-font);
  font-size: 140%;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.08em;
  flex-flow: column;
  background: var(--accent-color);
}

.mv-bnr_item a::before .mv-bnr_item a::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/front/simple_logo.png);
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.1;
}

.mv-bnr_item a::after {
  position: absolute;
  content: "";
  border-left: 14px solid transparent;
  border-bottom: 14px solid var(--main-color);
  right: 0;
  bottom: 0;
  transition: border 0.2s, color 0.2s, opacity 0.2s, transform 0.2s;
}

.mv-bnr_item a:hover:after {
  border-bottom: 14px solid var(--sub-color);
}

.mv-bnr_item a span, .mv-bnr_item p span {
  font-size: 70%;
  border-top: 1px dotted var(--main-color);
  padding-top: 5px;
  display: block;
  width: 84%;
  color: #fff;
  text-shadow: none;
  font-weight: normal;
}


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

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

/* ----- スマホ専用エリア ----- */
.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: 12px;
  }

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

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

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

  /* ----- キャッチコピー ----- */
  .mvCatch {
    top: 50%;
    display: none;
  }

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

  .mvCatch p {
    font-size: 128%;
    line-height: 1.75;
    text-align: center;
  }

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

  /* ----- 開院バナー ----- */
  .open_bnr {
    position: static;
    width: 100%;
    /* max-width: 350px; */
    border-radius: 0;
    padding: 0;
  }

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

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

  .open_bnr-subhead {
    font-size: 100%;
    margin: 10px auto 5px;
  }

  .open_bnr-date02 {
    font-size: 100%;
    margin-bottom: 0;
  }

  .open_bnr-time {
    font-size: 90%;
  }


  .mv-bnr {
    position: static;
    width: 100%;
    justify-content: space-between;
  }

  .mv-bnr_item {
    padding: 0;
    width: 100%;
    height: 100%;
  }

  .mv-bnr_item a::after {
    border-radius: 0 0 3px 0;
  }

  .mv-bnr_item a, .mv-bnr_item p {
    width: 100%;
    height: 100px;
    font-size: 120%;
    border-radius: 5px;
  }

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

  .sp_only .inner {
    padding: 20px;
    background: var(--bg-color2);
  }

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

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

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

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

.clinic::before {
  position: absolute;
  content: "";
  background: url(../images/front/bg_img02.jpg) no-repeat;
  width: 100%;
  height: 500px;
  background-size: cover;
  bottom: 0;
  z-index: -1;
}

.clinic .inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 60px;
  padding: 90px 60px;
  background: #fff;
  background: var(--bg-color2);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 9px 1px;
  border-radius: 10px;
}

.clinic .inner::before {
  position: absolute;
  content: "";
  background: url(../images/front/bg_img04.png) no-repeat;
  width: 300px;
  height: 300px;
  background-size: cover;
  top: 0;
  z-index: 2;
  left: 0;
  opacity: 0.8;

  display: none;
}

.clinic .inner::after {
  position: absolute;
  content: "";
  background: url(../images/front/bg_img04.png) no-repeat;
  width: 300px;
  height: 300px;
  background-size: cover;
  bottom: 0;
  z-index: 2;
  right: 0;
  transform: rotate(180deg);
  opacity: 0.8;

  display: none;
}

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

/* ----- お知らせ ----- */
.clinic .news .top_title h2 {
  font-size: 180%;
  font-family: var(--main-font);
}

.clinic .news .eng {
  position: relative;
  z-index: 1;
  padding-top: 45px;
  font-size: 150%;
  margin-bottom: 10px;
}

.clinic .news  .eng::after {
  content: "";
  display: block;
  width: 35px;
  height: 40px;
  background-image: url(../images/front/simple_logo.png);
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
}

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

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

.clinic .info .office_hour .table_wrapper {
  background: var(--bg-color2);
  border-radius: 5px;
  border: 1px solid var(--main-color);
  border-radius: 8px;
}

/* 診療科目 */
.clinic .info .speciality {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px auto 0;
  background: var(--bg-color2);
  border-radius: 8px;
  border: 1px solid var(--main-color);
}

.clinic .info .speciality .title {
  flex-shrink: 0;
  width: fit-content;
  padding: 10px 30px;
  background: var(--main-color);
  color: #ffffff;
  text-align: center;
  border-radius: 5px 0 0 5px;
}

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

.clinic .info address > * {
  position: relative;
  z-index: 1;
  min-height: 40px;
}

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

.clinic .info address .location {
  padding: 5px 0 5px 50px;
}

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

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

.clinic .info address .tel {
  margin-top: 15px;
  padding: 5px 0 5px 50px;
  font-size: 30px;
  line-height: 1;
  font-family: var(--main-font);
}

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

.clinic .info address .fax {
  margin-top: 15px;
  padding: 5px 0 5px 50px;
  font-size: 30px;
  line-height: 1;
  color: var(--main-color);
  font-family: var(--main-font);
}

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

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

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

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {

  .clinic {
    padding: 0 0 80px;
  }

  .clinic::before {
    height: 300px;
  }

  .clinic .inner {
    width: calc(100% - 40px);
    padding: 30px 20px;
    gap: 30px;
  }

  .clinic .inner::before {
    width: 120px;
    height: 120px;
  }

  .clinic .inner::after {
    width: 120px;
    height: 120px;
  }

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

  /* ----- 医院概要 ----- */
  .clinic .info .speciality {
    flex-flow: column;
    gap: 10px;
    padding: 0;
  }

  .clinic .info .speciality .title {
    width: 100%;
    border-radius: 5px 5px 0 0;
    padding: 5px 10px;
  }

  .clinic .info .speciality .text {
    padding: 0 10px 10px;
    font-size: 90%;
    line-height: 1.4;
  }

  .clinic .info address > * {
    min-height: auto;
  }

  .clinic .info address > *::before {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  .clinic .info address .location {
    padding: 0 0 0 35px;
  }

  .clinic .info address .tel {
    padding: 0 0 0 35px;
    font-size: 25px;
  } 

  .clinic .info address .fax {
    padding: 0 0 0 35px;
    font-size: 25px;
  }

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

  .clinic .news .eng {
    padding-top: 38px;
    font-size: 130%;
    margin-bottom: 3px;
  }

  .clinic .news .eng::after {
    width: 30px;
    height: 34px;
  }

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


}

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

  *ご挨拶（パターン01）

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

.greeting::before {
  content: "";
  position: absolute;
  left: 0px;
  width: 100%;
  height: 140px;
  background: var(--main-color);
  z-index: -1;
  opacity: 1;
  mask: url(../images/front/musk_img02.png) left bottom / 100% no-repeat;
}

.greeting::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 140px;
  background-image: url(../images/front/bg_img01.png);
  z-index: -1;
  opacity: /*0.03*/0.1;
  mask: url(../images/front/musk_img02.png) left bottom / 100% no-repeat;
}

.greeting .inner {
  padding: 150px 0 120px;
}

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

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

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

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

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

.greeting_profile {
  padding: 20px;
  background: var(--main-color);
  color: #ffffff;
  line-height: 1.75;
  text-align: center;
  font-family: var(--main-font);
  border-radius: 0 0 10px 10px;
}

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

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

.greeting_profile-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.greeting_profile-text {
  font-size: 120%;
}

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

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

.greeting_img img {
  border-radius: 10px 10px 0 0;
}

.greeting_text {
  font-family: var(--main-font);
}

.greeting_text h3 {
  font-size: 150%;
  color: var(--main-color);
}

.greeting_text h3 span {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--main-color);
  padding-left: 40px;
  display: block;
}

.greeting_text h3 span::before {
  content: "❖";
  font-weight: 900;
  position: absolute;
  font-size: 105%;
  left: 0;
  top: 0;
  color: var(--main-color);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {

  .greeting::before {
    height: 70px;
  }

  .greeting::after {
    height: 70px;
    background-size: 180%;
  }

  .greeting .inner {
    padding: 100px 20px 40px;
  }

  .greeting_profile {
  padding: 10px;
  border-radius: 0 0 10px 10px;
  }

  .greeting_profile-text {
    font-size: 100%;
  }

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

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

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

  .greeting_text h3 {
    font-size: 128%;
    line-height: 1.6;
    margin-bottom: 20px !important;
  }

  .greeting_text h3 span {
    padding-left: 25px;
  }

  .greeting_text h3 span::before {
    font-size: 100%;
  }

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

  .greeting_text p {
    font-size: 96%;
  }

  .greeting_left {
    width: 100%;
  }

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

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

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

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

.medical::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(000, 000, 000, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.medical .top_title {
  color: #fff;
}

.medical .top_title .eng {
  color: #fff;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.medical_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.medical_item {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}

.medical_item:not(:nth-child(4n))::before {
  content: "";
  top: 50%;
  right: 0;
  width: 1px;
  height: 100%;
  background: #fff;
  transform: translateY(-50%);
  position: absolute;
}

.medical_item:nth-last-child(n + 5)::after {
  content: "";
  left: 50%;
  bottom: 0;
  width: calc(100% - 5px);
  height: 1px;
  background: #fff;
  transform: translateX(-50%);
  position: absolute;
}

.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;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px 20px 40px;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.medical_inner::before {
  position: absolute;
  bottom: 8px;
  right: 8px;
  content: "";
  width: 20px;
  height: auto;
  aspect-ratio: 1;
  background: #fff;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  transition: .2s;
}

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

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

.medical_icon img {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(76deg) brightness(105%) contrast(102%);
}

.medical_title h3 {
  color: var(--text-color);
  font-size: 120%;
  font-family: var(--main-font);
  color: #fff;
}

.medical_title_eng {
  margin-top: 5px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
  font-family: var(--sub-font);
}

.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:hover .medical_inner {
  background: rgba(255, 255, 255, 0.6);
}

.medical_item:hover .medical_inner .medical_title h3 {
  color: var(--text-color);
}

.medical_item:hover .medical_inner .medical_title_eng {
  color: var(--main-color);
}

.medical_item:hover .medical_icon img {
  filter: invert(35%) sepia(30%) saturate(474%) hue-rotate(346deg) brightness(94%) contrast(89%);
}

.medical_item:hover .medical_inner::before {
  background: var(--main-color);
}

/* ----- 先頭2つの設定----- */
/* .medical_item:nth-of-type(-n + 2) {
  width: calc(50% - 10px);
  min-height: 350px;
}rgb(87, 64, 64)

.medical_item:nth-of-type(-n + 2) .medical_inner {
  padding: 20px 20px 40px;
}

.medical_item:nth-of-type(-n + 2) .medical_icon {
  max-width: 100px;
  margin: 0 auto 5px !important;
}

.medical_item:nth-of-type(-n + 2) .medical_title h3 {
  font-size: 150%;
} */

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .medical {

  }

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

  .medical_list {
    grid-template-columns: repeat(2, 1fr);
  }

  .medical_item {
    width: 100%;
  }

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

  .medical_item:nth-last-child(n + 3)::after {
    content: "";
    left: 50%;
    bottom: 0;
    width: calc(100% - 5px);
    height: 1px;
    background: #fff;
    transform: translateX(-50%);
    position: absolute;
  }

  .medical_item:nth-child(2n)::before {
    display: none;
  }

  .medical_inner {
    min-height: auto;
    padding: 10px 8px;
    background: rgba(255, 255, 255, 0.5);
  }

  .medical_inner::before {
    bottom: 4px;
    right: 4px;
    width: 6px;
    background: var(--main-color);
  }

  .medical_icon {
    width: 40%;
    margin: 0 auto 15px !important;
  }

  .medical_icon img {
    filter: invert(35%) sepia(30%) saturate(474%) hue-rotate(346deg) brightness(94%) contrast(89%);
  }

  .medical_title_eng {
    color: var(--main-color);
  }

  .medical_title h3 {
    font-size: 110%;
    line-height: 1.4;
    color: var(--text-color);
  }

  .medical_title_eng {
    font-size: 9px;
  }

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

  .medical_item:nth-of-type(-n + 2) .medical_inner {
    padding: 15px 20px 30px;
  }

  .medical_item:nth-of-type(-n + 2) .medical_icon {
    width: 30%;
  }

  .medical_item:nth-of-type(-n + 2) .medical_title h3 {
    font-size: 140%;
  } */
}

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

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

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

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

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

.feature_item {
  display: flex;
  width: 100%;
  height: auto;
  margin-top: 50px;
  align-items: center;
  justify-content: flex-start;
}

.feature_img {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  /* width: 680px; */

  width: 720px;

  /* margin-top: -50px; */
}

.feature_img::before {
  position: absolute;
  content: "";
  width: 90%;
  height: 90%;
  left: -30px;
  bottom: -30px;
  z-index: -1;
  border-radius: 5px;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(160deg, rgb(86, 107, 75), rgb(86, 107, 75), rgb(214, 211, 125));
}

.feature_img img {
  width: 100%;
  border-radius: 10px;
}

.feature_num {
  position: absolute;
  top: 20px;
  left: 30px;
  line-height: normal;
}

.feature_num span {
  color: var(--main-color);
  font-size: 400%;
  font-family: var(--sub-font);
  -webkit-text-fill-color: transparent;
  background: linear-gradient(160deg, rgb(214, 211, 125), rgb(173, 177, 115), rgb(86, 107, 75)) text;
  font-style: italic;
  padding-right: 10px;
}

.feature_inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-flow: column;
  width: calc(100% + 50px);
  /* height: 100%; */
  min-height: 400px;
  margin: 0 0 0 -80px;
  padding: 70px 55px 60px;
  /* background: var(--sub-color); */

  /* box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 9px 1px; */
  /* overflow: hidden;
      border-radius: 10px; */
}

.feature_inner::before {
  content: "";
  width: calc(100% + 1000px);
  height: 100%;
  background-color: var(--sub-color);
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.feature_inner::after {
  content: "";
  width: calc(100% + 1000px);
  height: 100%;
  background-image: url(../images/front/bg_img01.png);
  background-size: 180%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.03;
}

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

.feature_title h3 {
  color: #fff;
  font-size: 150%;
  line-height: 1.75;
  font-family: var(--main-font);
}

.feature_title h3 span {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #fff;
  padding-left: /*35*/45px;
  display: block;
}

.feature_title h3 span::before {
/*   content: "❖"; 
  font-weight: 900;*/
  position: absolute;
/*   font-size: 105%; */
  left: 0;
  top: 0;
/*   color: #fff; */
  content:"";
  width: 35px;
  height: 35px;
  background:url(../images/front/feature_title_icon01.png) no-repeat center;
  background-size: 35px auto;
}
.feature_item:nth-of-type(2n) .feature_title h3 span::before{
  background:url(../images/front/feature_title_icon02.png) no-repeat center;	
  background-size: 35px auto;
}
.feature_button {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 25px;
}

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

.feature_button .btn01 a {
  border: 1px solid #fff;
}

.feature_text {
  color: #fff;
}

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

.feature_item:nth-child(even) .feature_inner {
  margin: 0 -50px 0 0;
}

.feature_item:nth-child(even) .feature_inner::before {
  left: inherit;
  right: 0;
}

.feature_item:nth-child(even) .feature_inner::after {
  left: inherit;
  right: 0;
}

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

.feature_item:nth-child(even) .feature_img::before {
  left: inherit;
  right: -30px;
}

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

  .feature .inner {
    padding: 50px 20px 80px;
  }

  .feature_inner::before {
    width: 100%;
    border-radius: 0 0 10px 10px;
  }

  .feature_inner::after {
    width: 100%;
  }

  .feature .top_title {
    margin-bottom: 45px;
  }

  .feature_list {
    gap: 50px;
  }

  .feature_item {
    flex-flow: column;
    width: 100%;
    margin: 0;
  }

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

  .feature_inner {
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 35px 20px 30px;
  }

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

  .feature_title h3 {
    font-size: 125%;
  }

  .feature_title h3 span {
    padding-left: /*23*/27px;
    line-height: 1.5;
  }

  .feature_title h3 span::before,
.feature_item:nth-of-type(2n) .feature_title h3 span::before{
/*     font-size: 100%; */
    width: 22px;
    height: 22px;
    background-size: 22px auto;
  }

  .feature_num {
    top: 5px;
    left: 10px;
  }

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

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

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

  .feature_item::before {
    position: absolute;
    content: "";
    width: 95%;
    height: 35%;
    left: -10px;
    top: -10px;
    z-index: -1;
    border-radius: 12px 5px 0 5px;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(160deg, rgb(86, 107, 75), rgb(136 168 91), rgb(214, 211, 125));
  }

  .feature_img::before {
    display: none;
  }

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

  .feature_item:nth-child(even) .feature_inner {
    margin: 0 auto;
  }

  .feature_item:nth-child(even)::before {
    left: inherit;
    right: -10px;
    bottom: -10px;
    border-radius: 5px 12px 5px 0;
  }

}

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

  *医療コラム（パターン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: 10px 10px 60px;
  position: relative;
  z-index: 1;
  background-color: var(--bg-color2);
}

#infinitySlider::before {
  content: "";
  width: 100%;
  height: 180px;
  background-color: var(--main-color);
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: -1;
}

#infinitySlider::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 180px;
  background-image: url(../images/front/bg_img01.png);
  z-index: -1;
  opacity: /*0.03*/0.1;
}

#infinitySlider .splide__list {
  gap: 10px;
}

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

#infinitySlider .splide__slide:nth-child(odd){
  margin-top: 50px;
}

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

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

  #infinitySlider::before {
    height: 200px;
  }

  #infinitySlider::after {
    height: 200px;
  }

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

  #infinitySlider .splide__slide:nth-child(odd){
    margin-top: 40px;
  }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.search {
  position: relative;
  z-index: 1;
  padding: 220px 0 120px;
  margin-top: -120px;
}

.search::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  mask: url(../images/front/musk_img01.png) left top / 100% no-repeat;
  background-color: var(--main-color);
  z-index: -1;
}

.search::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  mask: url(../images/front/musk_img01.png) left top / 100% no-repeat;
  background-image: url(../images/front/bg_img01.png);
  z-index: -1;
  opacity: /*0.03*/0.1;
}

.search .top_title h2 {
  color: #fff;
}

.search .inner {
  padding: 0;
}

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

.search .tab_list li {
  display: flex;
  flex: 1;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 10px 20px;
  background: #314b23;
  color: #ffffff;
  font-size: 140%;
  cursor: pointer;
  transition: transform 0.2s, padding 0.2s;
  border-radius: 5px;
  font-family: var(--main-font);
}

.search .tab_list li.is-active {
  background: var(--sub-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: 10px;
  height: fit-content;
  margin-top: 30px;
}

.search_list a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 60px;
  padding: 10px 35px 10px 20px;
  background:var(--bg-color2);
  color: var(--text-color);
  font-size: 110%;
  border-radius: 5px;
  font-family: var(--main-font);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 9px 1px;
}

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

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

.search_list  a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 1;
  display: block;
  width: 22px;
  height: 22px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background 0.2s;
}

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

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

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

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .search {
    padding: 80px 20px 50px;
    margin-top: -40px;
  }

  .search::before {
    mask: url(../images/front/musk_img01_sp.png) left top / 100% no-repeat;
  }

  .search .top_title {
    margin-bottom: 20px;
  }

  .search .tab_list {
    flex-flow: column;
    gap: 7px;
    margin: 0 0 15px;
  }

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

  .search_list a {
    padding: 5px 42px 5px 20px;
    font-size: 100%;
  }

  /* ----- パネル ----- */
  .search .panel {
  }

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

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

  .panel_flex .search_img {
    width: 100%;
  }

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

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

  *バナーエリア

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
/* ----- 共通設定 ----- */

.front_wrap {
  position: relative;
  z-index: 1;
  background: var(--main-color);
}

.front_wrap::before {
  content: "";
  width: 100%;
  height: calc(100% - 500px);
  background-image: url(../images/front/bg_img01.png);
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: /*0.03*/0.1;
}

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

.top_banner .inner {
  padding: 100px 0 80px;
}

.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(--sub-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) {

  .top_banner .inner {
    padding: 40px 20px 30px;
  }

  /* ----- グリッドバナー ----- */
  .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;
  }
}
