@charset "UTF-8";

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

  *基本設定

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

section .inner {
  padding: 100px 0;
}

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

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

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

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

.front-wrap {
  position: relative;
  z-index: 1;
}

.front-wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/front/bg_img01.jpg);
  background-repeat: repeat;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.6;
}

/* ----------------------------------------------------------------------
  ▼ 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 {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
  line-height: 1.5;
  text-align: center;
  padding-top: 65px;

  /* 左寄せ */
}

.top_title::before {
  content: "";
  background-image: url(../images/front/simple_logo.png);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  width: 72px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

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

.top_title h2 {
  font-family: var(--ship-font);
  font-size: 160%;
}

.top_title .eng {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 15px;
  color: var(--main-color);
  font-family: var(--ship-font);
  font-weight: 600;
  font-size: 500%;
  letter-spacing: 0.1em;
  line-height: 1;
  background: linear-gradient(var(--accent-color) 0% 60%, var(--main-color) 60% 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 0 10px;
}

.top_title .eng::before {
  content: "";
}

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

  .top_title::before {
    width: 44px;
    height: 26.5px;
  }

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

  .top_title .eng {
    font-size: 290%;
    margin: 0;
  }
}

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

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ 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: 25%;
  left: 0;
  z-index: 3;
  width: 100%;
}

.mvCatch .inner {
  position: relative;
  z-index: 1;
  padding: 0 40px;
  max-width: 1320px;
}

.mvCatch p {
  text-shadow: 0 0 4px rgba(255, 255, 255, 1), 0 0 4px rgba(255, 255, 255, 1), 0 0 4px rgba(255, 255, 255, 1), 0 0 4px rgba(255, 255, 255, 1), 0 0 8px rgba(255, 255, 255, 1), 0 0 12px rgba(255, 255, 255, 1);
}

.mvCatch p span {
  display: block;
}

.mvCatch p span.main {
  font-size: 220%;
  color: var(--main-color);
  font-family: var(--ship-font);
}

.mvCatch p span.sub {
  font-family: var(--tsuk-font);
  font-size: 180%;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: var(--sub-color);
}

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

.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;
  padding: 4px;
  background: rgba(255, 255, 255, 0.4);
}

.open_bnr > * {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 240px;
  padding: 15px;
  color: #ffffff;
  font-size: 100%;
  line-height: 1.5;
  text-align: center;
  font-family: var(--ship-font);
  background: rgb(12 47 84 / 80%);
}

.open_bnr-date01 {
  font-size: 120%;
  margin-bottom: 8px;
}

.open_bnr-head {
  font-size: 260%;
  line-height: 1;
  margin-bottom: 18px;
}

.open_bnr-subhead {
  width: calc(100% - 50px);
  margin-bottom: 8px;
  background: #fff;
  padding: 2px;
  font-size: 110%;
}

.open_bnr-subhead span {
  color: var(--main-color);
  background: var(--main-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.open_bnr-date02 {
  font-size: 110%;
}

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

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

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

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

.mv-bnr_item a {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 260px;
  height: 140px;
  color: #ffffff;
  font-family: var(--ship-font);
  background: rgb(102 71 6 / 60%);
  font-size: 100%;
  line-height: 1.6;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 10px 10px 20px;
}

.mv-bnr_item a span {
  position: relative;
  z-index: 1;
}

.mv-bnr_item a span::before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  filter: invert(100%) sepia(100%) saturate(14%) hue-rotate(212deg) brightness(104%) contrast(104%);
  width: 100px;
  height: 40px;
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  margin: auto;
}

.mv-bnr_item:nth-child(1) a span::before {
  background-image: url(../images/front/icon_img01.png);
}
.mv-bnr_item:nth-child(2) a span::before {
  background-image: url(../images/front/icon_img02.png);
}
.mv-bnr_item:nth-child(3) a span::before {
  background-image: url(../images/front/icon_img03.png);
}

/*.mv-bnr_item a:hover {
  background: rgb(102 71 6 / 80%);
}*/

/* 3番目以降の要素にのみ hover を適用 */
.mv-bnr_item:nth-child(n+3) a:hover {
  background: rgb(102 71 6 / 80%);
}

/* 1番目と2番目のクリック・ホバー反応を無効化 */
.mv-bnr_item:nth-child(1) a,
.mv-bnr_item:nth-child(2) a {
  pointer-events: none;
  cursor: default;
}

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

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

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

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

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

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

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

  .mvCatch .inner {
    padding: 0 20px;
  }

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

  .mvCatch p {
    font-size: 130%;
    line-height: 1.75;
  }

  .mvCatch p span.main {
    font-size: 120%;
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .mvCatch p span.sub {
    font-size: 80%;
  }

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

  /* ----- 開院バナー ----- */
  .open_bnr {
    position: static;
    width: 100%;
    background: none;
    padding: 0;
    margin-bottom: 5px;
  }
  
  .open_bnr > * {
    width: 100%;
    height: auto;
    padding: 12px 10px;
    line-height: normal;
    max-width: 350px;
    margin: 0 auto;
    background: rgb(12 47 84 / 90%);
  }

  .open_bnr > *::before {
    opacity: 0.04;
  }
  .open_bnr-date01 {
    font-size: 100%;
    margin-bottom: 5px;
  }
  .open_bnr-head {
    font-size: 180%;
    margin-bottom: 10px;
  }
  .open_bnr-subhead {
    width: 120px;
    padding: 3px 5px;
    font-size: 100%;
    margin-bottom: 8px;
  }
  .open_bnr-date02 {
    font-size: 100%;
    line-height: 1.2;
  }

  .open_bnr-date03 {
    font-size: 80%;
  }

  .mv-bnr {
    display: contents;
  }

  .mv-bnr_list {
    width: 100%;
    gap: 0 10px;
    flex-wrap: wrap;
  }

  .mv-bnr_item {
    width: 100%;
    height: auto;
    padding: 0;
    background: none;
    max-width: 350px;
  }

  .mv-bnr_item a {
    width: 100%;
    height: auto;
    font-size: 100%;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    line-height: normal;
  }

  .mv-bnr_item a span {
    padding-left: 63px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 5px;
    text-align: left;
  }

  .mv-bnr_item a span::before {
    top: 0;
    width: 36px;
    height: 43px;
    background-position: center;
    left: 7px;
    right: inherit;
    bottom: 0;
    margin: auto;
    filter: invert(61%) sepia(48%) saturate(221%) hue-rotate(359deg) brightness(87%) contrast(88%);
  }

  .mv-bnr_item a span::after {
    content: "";
    width: 50px;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border: 1px solid var(--sub-color);
  }
  

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

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

  .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: 1;
  padding: 0 40px 120px;
}

/* ----- お知らせ ----- */
.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: 0 0 70px;
}

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

.clinic .news .top_title {
  margin: 0 0 20px;
  padding: 0;
}

.clinic .news .top_title::before {
  display: none;
}

.clinic .top_title .eng {
  font-size: 390%;
  margin-bottom: 5px;
}

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

/* ----- 医院概要 ----- */
.clinic .info .inner {
  display: flex;
  gap: 40px;
  padding: 60px 50px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 9px 1px;
}

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

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

.clinic .info .office_hour .table_wrapper {
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 9px 1px;
  font-family: var(--ship-font);
}

.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 .zipcode {
  margin-right: 10px;
}

.clinic .info address .tel {
  margin-top: 15px;
  padding: 3px 0 7px 50px;
  font-size: 30px;
  line-height: 1;
  font-family: var(--ship-font);
  letter-spacing: 0.08em;
}

.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;
  font-family: var(--ship-font);
  color: var(--main-color);
  letter-spacing: 0.08em;
}

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

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

.clinic .info .speciality {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px auto 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 9px 1px;
}

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

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

.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: 0 0 35px;
  }

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

  .clinic .top_title .eng {
    font-size: 290%;
    margin-bottom: 0;
    padding: 0 0 10px;
  }

  /* ----- 医院概要 ----- */
  .clinic .info {
    padding: 0 20px;
  }

  .clinic .info .inner {
    flex-flow: column;
    padding: 30px 20px 25px;
    gap: 20px;
  }

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

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

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

  .clinic .info .speciality .text {
    padding: 0 10px 10px;
    font-size: 88%;
  }

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

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

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

  .clinic .info address .tel {
    padding: 0 0 0 40px;
    min-height: auto;
    font-size: 28px;
  }

  .clinic .info address .fax {
    padding: 0 0 0 40px;
    min-height: auto;
    font-size: 28px;
  }

  .clinic .info .note {
    padding-left: 0;
  }

  .clinic .info .googlemap iframe {
    height: 250px;
  }
  
  .clinic .info .btn01 {
    margin-top: 20px;
  }
}
/* ==================================================================================================================================

  *ご挨拶（パターン01）

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

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

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

.greeting_flex {
  display: flex;
  gap: 50px;
  margin-top: 80px;
}

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

.greeting_left {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 63%;
}

.greeting_left::before {
  content: "";
  background-image: url(../images/front/simple_logo.png);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  width: 540px;
  height: 330px;
  position: absolute;
  left: -90px;
  bottom: 60px;
  opacity: 0.05;
  z-index: -1;
}

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

.greeting_text p {
  font-family: var(--ship-font);
  font-size: 110%;
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 100%), linear-gradient(rgb(238, 238, 238) 1px, transparent 1px);
  background-size: 8px 100%, 100% 2.5em;
  line-height: 2.5em;
  padding-bottom: 1px;
  position: relative;
  z-index: -2;
}

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

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

.greeting_profile-inner {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 20px;
  font-size: 150%;
}

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

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

.greeting_img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.6) inset;
  z-index: 0;
}

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

  .greeting .inner {
    padding: 45px 20px 35px;
  }

  .greeting_flex {
    flex-flow: column-reverse;
    gap: 25px;
    margin-top: 0;
  }

  .greeting_left {
    width: 100%;
  }

  .greeting_btn {
    margin-top: 40px;
  }

  .greeting_profile {
    padding: 10px;
  }

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

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

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

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

  .greeting_left::before {
    width: 350px;
    height: 212px;
    left: -110px;
    bottom: 60px;
  }

}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url(../images/front/bg_img03.jpg) no-repeat center/cover;
  padding: 0 40px;
}

.medical .inner {
  padding: 120px 0;
}

.medical .top_title {
  color: #ffffff;
}

.medical .top_title span {
  color: var(--main-color);
}

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

.medical_item {
  position: relative;
  z-index: 1;
  width: calc(25% - 15px);
  height: auto;
}

.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 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 30px 20px 40px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 9px 1px;
  font-family: var(--ship-font);
}

.medical_inner::before {
  position: absolute;
  bottom: -1px;
  right: -1px;
  content: "";
  width: 16px;
  height: auto;
  aspect-ratio: 1 / 1;
  clip-path: polygon(100% 0px, 0% 100%, 100% 100%);
  background: var(--sub-color);
  transition: 0.2s;
}

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

.medical_icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px !important;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 9px 1px;
  border-radius: 50%;
  padding: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.medical_icon img {
  filter: invert(14%) sepia(23%) saturate(4277%) hue-rotate(189deg) brightness(87%) contrast(94%);
}

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

.medical_title h3 span {
  font-size: 80%;
}

.medical_title_eng {
  position: relative;
  z-index: 1;
  color: var(--sub-color);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 1px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-feature-settings: "vert";
  position: absolute;
  top: 18px;
  right: 12px;
  padding-top: 15px;
  font-family: var(--ship-font);
}

.medical_title_eng::before {
  content: "";
  width: 1px;
  height: 10px;
  background: var(--sub-color);
  position: absolute;
  top: 0px;
  right: 6px;
}

.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);
}

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

.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 {
    padding: 0;
  }

  .medical .inner {
    padding: 45px 20px 30px;
  }

  .medical_list {
    gap: 15px 10px;
  }

  .medical_item {
    width: calc(50% - 5px);
  }

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

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

  .medical_icon {
    width: 80px;
    height: 80px;
    padding: 20px;
    margin: 0 auto 10px !important;
  }

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

  .medical_title h3 {
    font-size: 100%;
    line-height: normal;
  }

  .medical_title_eng {
    font-size: 7px;
    top: 9px;
    right: 6px;
    padding-top: 9px;
  }

  .medical_title_eng::before {
    height: 6px;
    right: 4px;
  }

  /* ----- 先頭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%;
  } */
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
  position: relative;
  z-index: 1;
  padding: 0 40px;
}

.feature::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/front/bg_img02.jpg);
  background-position: bottom;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

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

.medical_inner::before {
  width: 13px;
}

.feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 75px 30px;
  margin-top: 100px;
}

.feature_item {
  display: flex;
  flex-flow: column;
  width: calc(33.3333333333% - 20px);
  height: auto;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 9px 1px;
}

.feature_num {
  margin: 0 0 0 !important;
  font-size: 160%;
  font-family: var(--ship-font);
  color: var(--main-color);
  position: absolute;
  right: 5px;
  top: -60px;
  line-height: normal;
  font-weight: 500;
  z-index: 2;
}

.feature_num span {
  color: var(--sub-color);
  font-size: 200%;
}

.feature_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 25px 20px 30px;
  background: rgba(255, 255, 255, 0.85);
}

.feature_title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  min-height: 70px;
}

.feature_title::before {
  content: "";
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 1);
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 9999px;
  z-index: -1;
}

.feature_title::after {
  content: "";
  width: 57px;
  height: 50px;
  background-size: cover;
  filter: invert(75%) sepia(3%) saturate(6374%) hue-rotate(354deg) brightness(79%) contrast(65%);
  filter: invert(14%) sepia(23%) saturate(4277%) hue-rotate(189deg) brightness(87%) contrast(94%);
  position: absolute;
  top: -45px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}

.feature_item:nth-child(1) .feature_title::after {
  background-image: url(../images/front/icon_img06.png);
}
.feature_item:nth-child(2) .feature_title::after {
  background-image: url(../images/front/icon_img02.png);
}
.feature_item:nth-child(3) .feature_title::after {
  background-image: url(../images/front/icon_img01.png);
}
.feature_item:nth-child(4) .feature_title::after {
  background-image: url(../images/front/icon_img04.png);
}
.feature_item:nth-child(5) .feature_title::after {
  background-image: url(../images/front/icon_img05.png);
}
.feature_item:nth-child(6) .feature_title::after {
  background-image: url(../images/front/icon_img03.png);
}


.feature_title h3 {
  position: relative;
  z-index: 1;
  color: var(--main-color);
  font-size: 145%;
  line-height: 1.75;
  text-align: center;
  font-family: var(--ship-font);
  font-weight: 600;
  margin: 25px auto 30px;
}

.feature_title h3::before {
  content: "";
  width: 100px;
  height: 1px;
  background: var(--sub-color);
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
}

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

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

.feature_button .btn01 a {
  padding: 10px 35px 10px 15px;
  min-width: auto;
  width: 100%;
  background: var(--main-color);
  border: 1px solid var(--main-color);
}

.feature_button .btn01 a:hover {
  background: #fff;
  color: var(--main-color);
}

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

.feature_img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.6) inset;
  z-index: 0;
}

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

  .feature .inner {
    padding: 45px 20px 35px;
  }
  .feature_list {
    gap: 30px;
    padding: 0;
    margin-top: 0;
  }

  .feature_item {
    width: 100%;
  }

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

  .feature_title::before {
    width: 72px;
    height: 72px;
    top: -60px;
  }

  .feature_title::after {
    width: 50px;
    height: 43px;
    top: -45px;
  }

  .feature_title h3 {
    margin: 20px auto 20px;
    font-size: 132%;
  }

  .feature_num {
    font-size: 140%;
    right: 15px;
    top: 5px;
    text-shadow: 0px 0px 15px rgba(255, 255, 255, 1), 0px 0px 15px rgba(255, 2555, 255, 1);
  }

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

  .feature_inner {
    padding: 25px 20px 20px;
  }

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

  .medical_btn span {
    padding: 5px 25px 5px 10px;
    font-size: 90%;
  }

  

}

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

  *医療コラム（パターン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 0;
}

#infinitySlider .splide__list {
  gap: 10px;
}

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

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

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.search {
  position: relative;
  padding: 0 40px;
}

.search .inner {
  padding: 120px 0;
}

.search::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/front/bg_img01.jpg);
  background-repeat: repeat;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.6;
}

.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;
  font-size: 124%;
  cursor: pointer;
  transition: transform 0.2s, padding 0.2s;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--main-color);
  color: var(--main-color);
  font-family: var(--ship-font);
}

.search .tab_list li.is-active {
  position: relative;
  z-index: 1;
  background: var(--main-color);
  color: #fff;
}

.search .tab_list li.is-active::before {
  position: absolute;
  bottom: -1px;
  right: -1px;
  content: "";
  width: 12px;
  height: auto;
  aspect-ratio: 1 / 1;
  clip-path: polygon(100% 0px, 0% 100%, 100% 100%);
  background: var(--sub-color);
  transition: 0.2s;
}

/* ----- パネル ----- */
.search .panel {
  display: none;
  margin: 0 !important;
  padding: 20px 0 0;
  /* background: var(--bg-color); */
}

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

/* ----- 項目 ----- */
.search_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  height: fit-content;
  max-width: 1400px;
  margin: 0 auto;
}

.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 30px;
  background: #ffffff;
  color: var(--text-color);
  font-size: 110%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 9px 1px;
  font-family: var(--ship-font);
}

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

.search_list a::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 11px;
  transform: translateY(-50%);
  transition: right 0.2s;
  z-index: 1;
  color: #fff;
}

.search_list a:hover {
  background: var(--sub-color);
  color: #fff;
}

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

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

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

.panel_flex .search_img {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 !important;
}

.panel_flex .search_img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.6) inset;
  z-index: 0;
}

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

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

  .search .inner {
    padding: 45px 20px 40px;
  }

  .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: 100%;
    transform: translate(0, 0) !important;
  }

  /* ----- パネル ----- */
  .search .panel {
    padding: 0;
  }

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

  .search_list a {
    padding: 10px 30px 10px 10px;
    font-size: 90%;
    line-height: normal;
    justify-content: flex-start;
  }

  .search_list a::after {
    top: 50%;
    right: 13px;
  }

  .search_list a::before {
    right: 10px;
    width: 18px;
    height: 18px;
  }

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

  .panel_flex .search_img {
    width: 100%;
    overflow: hidden;
    height: 250px;
  }

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

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


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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.pickup {
  padding: 0 40px;
}

.pickup .inner {
  width: 100%;
}

.pickup_list {
  display: flex;
  flex-flow: wrap;
  gap: 50px;
  margin-top: 80px;
}

.pickup_item {
  display: flex;
  align-items: center;
  width: 100%;
}

.pickup_img {
  position: relative;
  height: fit-content;
}

.pickup_img p.eng {
  font-size: 220%;
  font-family: var(--ship-font);
  color: var(--main-color);
  position: absolute;
  left: 20px;
  bottom: 0;
  line-height: normal;
  font-weight: 500;
  z-index: 2;
  text-shadow: 0px 0px 15px rgba(255, 255, 255, 1), 0px 0px 15px rgba(255, 2555, 255, 1);
}

.pickup_img p.eng span {
  color: var(--sub-color);
  font-size: 180%;
}

.pickup_img p.img {
  position: relative;
  z-index: 1;
}

.pickup_img p.img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.6) inset;
  z-index: 0;
}

.pickup_inner {
  position: relative;
  z-index: 2;
  width: 85%;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 9px 1px;
  margin: 0 0 0 -40px;
}

.pickup_wrap {
  padding: 40px 45px 30px;
}

.pickup_title {
  position: relative;
  z-index: 2;
  margin: 0 auto 15px;
  text-align: center;
}

.pickup_title h2, .pickup_title h3 {
  background: none;
  font-size: 220%;
  font-family: var(--ship-font);
  line-height: normal;
  color: var(--main-color);
}

.pickup_title h3 {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  line-height: 1;
}

.pickup_title h3::after {
  content: "";
  width: 57px;
  height: 50px;
  background-size: cover;
  filter: invert(75%) sepia(3%) saturate(6374%) hue-rotate(354deg) brightness(79%) contrast(65%);
  filter: invert(14%) sepia(23%) saturate(4277%) hue-rotate(189deg) brightness(87%) contrast(94%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}

.pickup_item:nth-child(1) .pickup_title h3::after {
  background-image: url(../images/front/icon_img07.png);
}

.pickup_item:nth-child(2) .pickup_title h3::after {
  background-image: url(../images/front/icon_img08.png);
}

.pickup_title h2 span, .pickup_title h3 span {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 68%;
  color: var(--sub-color);
  margin-top: 20px;
  padding: 0 45px;
}

.pickup_title h2 span::before, .pickup_title h3 span::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--sub-color);
  position: absolute;
  top: 50%;
  left: 0;
}

.pickup_title h2 span::after, .pickup_title h3 span::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--sub-color);
  position: absolute;
  top: 50%;
  right: 0;
}

.pickup_text {
  margin: 30px 0 0;
}

.pickup_buttons {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  flex-flow: wrap;
  gap: 3px 4px;
}

.pickup_btn {
  width: calc(50% - 2px);
  height: fit-content;
}

.pickup_btn a {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 12px 30px 12px 20px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: #ffffff;
  font-size: 100%;
  letter-spacing: 0.15em;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  font-family: var(--ship-font);
}

.pickup_btn a:hover {
  background: #ffffff;
  color: var(--main-color);
}

.pickup_btn a::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 15px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 11px;
  transform: translateY(-50%);
  transition: right 0.2s;
}

.pickup_btn a:hover::after {
  right: 12px;
}


/* ----- 偶数 ----- */
.pickup_item:nth-child(even) {
  flex-flow: row-reverse;
}

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

.pickup_item:nth-child(even) .pickup_img p.eng {
  left: inherit;
  right: 20px;
}

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

  .pickup .inner {
    padding: 45px 20px 35px;
  }

  .pickup_list {
    width: 100%;
    margin-top: 0;
    gap: 30px;
  }

  .pickup_title h2, .pickup_title h3 {
    font-size: 160%;
    padding-top: 55px;
  }

  .pickup_title h2 span, .pickup_title h3 span {
    margin-top: 15px;
  }

  .pickup_text {
    margin: 25px 0 0;
  }

  .pickup_item {
    flex-flow: column;
    width: 100%;
  }

  .pickup_img {
    width: 100%;
    margin: 0 auto;
  }

  .pickup_inner {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .pickup_link {
    min-height: auto;
    margin-top: 20px;
  }

  .pickup_btn {
    width: 100%;
  }

  .pickup_wrap {
    padding: 25px 20px 20px;
  }

  .pickup_img p.eng {
    font-size: 140%;
    bottom: 10px;
  }

  .pickup_img p.eng span {
    font-size: 170%;
  }

  .pickup_title h3::after {
    width: 50px;
    height: 43px;
  }

  /* ----- 偶数 ----- */
  .pickup_item:nth-child(even) {
    flex-flow: column;
  }

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

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

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

  *バナーエリア

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
/* ----- 共通設定 ----- */
.top_banner {
  padding: 0 40px;
}

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

  .top_banner {
    padding: 30px 20px 0;
  }

  .top_banner .inner {
    padding: 0;
  }

  /* ----- グリッドバナー ----- */
  .banner_grid li {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  /* ----- スライダーバナー ----- */
  #bannerSlider .splide__slide {
    min-height: auto;
  }

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

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

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

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

  #bannerSlider .bannerSlider_arrow_prev {
    left: -10px;
  }

  #bannerSlider .bannerSlider_arrow_next {
    right: -10px;
  }
}