@charset "UTF-8";

/* ---------------------
  - *基本設定
  - *タイトル
  - *メインビジュアル
  - *バナーエリア
  - *医院概要
  - *お知らせ＆ブログ  
  - *ご挨拶
  - *ピックアップ
  - *診療案内
  - *当院の特徴
  - *病状・病名から探す
  - *無限スライダー
--------------------- */
/* ==================================================================================================================================

  *基本設定

================================================================================================================================== */
.front {
  overflow: hidden;
}

section .inner {
  padding: 100px 60px;
}

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

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

  *タイトル

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

  /* 左寄せ */
}

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

.top_title h2 {
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 400;
  font-size: 200%;
}

.top_title .eng {
  display: inline-block;
  color: var(--main-color);
  font-family: iowan-old-style-bt, sans-serif;
  font-weight: 400;
  font-size: 75px;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

/* ==============================================
  *SP タイトル
============================================== */
@media screen and (max-width: 640px) {
  .top_title {
    margin-bottom: 40px;
  }

  .top_title h2 {
    margin: 5px 0 0;
    font-size: 22px;
  }

  .top_title .eng {
    font-size: 40px;
  }
}

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

  *メインビジュアル

================================================================================================================================== */
.mainvisual {
  position: relative;
  z-index: 1;
  height: 880px;
  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: "\f053";
}

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

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

/* ----- MVの画像 ----- */
.mvImg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}

.mvImg::before{
  position: absolute;
  content: '';
  background: linear-gradient(rgb(98, 131, 132, 0.28) 50%, rgba(98, 131, 132, 0.28) 100%);
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
}

.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 hideImg {
  0% {
    opacity: 1;
  }

  10% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}
@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: 50%;
  left: 0;
  z-index: 3;
  width: 100%;
  transform: translateY(-50%);
}

.mvCatch .inner {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}

.mvCatch p {
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 400;
  font-size: 220%;
  color: #fff;
}

.mvCatch p span{
  padding: 0 8px 0 10px;
  filter: drop-shadow(0 0 5px rgb(104, 195, 197, 0.3)) drop-shadow(0 0 5px rgb(104, 195, 197, 0.4)) drop-shadow(0 0 5px rgb(104, 195, 197, 0.5)) drop-shadow(0 0 5px rgb(104, 195, 197, 0.2));
}

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

.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 280px;
  padding: 15px;
  background: var(--main-color);
  border-radius: 50%;
  color: #ffffff;
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
}

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

.open_bnr .open_text {
  margin: 0 0 10px;
  font-size: 180%;
}

.open_bnr .nairankai_tit {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  padding: 5px 10px;
  background: #ffffff;
  border-radius: 300px;
  color: var(--main-color);
  font-size: 90%;
  text-align: center;
}

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

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

/* ----- RIBONバナー ----- */
.mv_ribon {
  position: absolute;
  bottom: 150px;
  left: 0;
}

.sp_only {
  display: none;
}

/* ==============================================
  *SP メインビジュアル
============================================== */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 540px;
  }

  /* ----- スライダーの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: 20px;
    display: none;
  }

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

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

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

  .mvContents {
    display: none;
  }

  .sp_only {
    display: block;
    background: none !important;
  }

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

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

  .open_bnr {
    position: static;
    width: 100%;
    max-width: 350px;
    border-radius: 0;
  }

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

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

  *バナーエリア

================================================================================================================================== */
/* ----- 共通設定 ----- */
.top_banner{
  position: relative;
  z-index: 0;
}

.top_banner::before{
  position: absolute;
  content: '';
  background: url(../images/suisai01.jpg) no-repeat center / contain;
  width: 600px;
  height: 600px;
  top: -100px;
  left: -110px;
  z-index: -1;
  opacity: 0.5;
}

.top_banner::after{
  position: absolute;
  content: '';
  background: url(../images/leaf01.svg) no-repeat center / contain;
  width: calc(150px * 2.3);
  height: calc(150px * 2.3);
  left: -10px;
  bottom: -80px;
  z-index: -1;
  transform: rotate(340deg);
}

.top_banner .inner{
  padding: 90px 60px 100px;
}

.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 {
  width: 100%;
  height: 100%;
  background: #e4e9e9;
}

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

.top_banner .input a.banner_slide:hover .slide_img img{
  opacity: 0.8;
}

.top_banner .input a.banner_slide:hover {
  background: #f5f5f5;
}

.top_banner .input .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 .slide_inner {
  width: 100%;
  height: 100%;
  padding: 10px 8px;
}

.top_banner .input .slide_title {
  margin: 0 auto 10px;
  padding: 5px;
  border-bottom: 1px solid #fff;
  color: var(--title-color);
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 400;
  font-size: 120%;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.top_banner .input a.banner_slide:hover .slide_title{
  border-bottom: 1px solid #a4dbdc;
}

.top_banner .input .slide_content {
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 400;
  font-size: 94%;
  line-height: 1.75;
}

/* ----- グリッドバナー ----- */
.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;
  padding: 5px;
  position: relative;
  z-index: 0;
}

#bannerSlider .splide__slide::before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  border: 1px solid var(--main-color);
}

/* スライダーの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(--text-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(--sub02-color);
}

/* ==============================================
  *SP バナーエリア（追加コンテンツ）
============================================== */
@media screen and (max-width: 640px) {
  .top_banner::before{
    width: 300px;
    height: 300px;
    top: -100px;
    left: -110px;
  }

  .top_banner .inner{
    padding: 10px 10px 40px;
  }

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

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

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

================================================================================================================================== */
.clinic {
  background: var(--bg-color);
}

.clinic .inner {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 60px;
}

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

/* ----- お知らせ ----- */
.clinic .news .top_title h2 {
  font-size: 170%;
}

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

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

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

.clinic .info .speciality {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px auto 0;
  padding: 20px;
  background: #ffffff;
}

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

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

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

.clinic .info address .fax {
  margin-top: 15px;
  padding: 5px 0 5px 50px;
  line-height: 1;
}

.clinic .info address .fax p {
  font-size: 30px;
}

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

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

@media screen and (max-width: 640px) {
  .clinic .inner > * {
    width: 100%;
  }

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

  .clinic .info .speciality .title {
    width: 100%;
  }
}


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

  *お知らせ＆ブログ

================================================================================================================================== */
.columnLatest {
  position: relative;
  z-index: 1;
}

.columnLatest::after{
  position: absolute;
  content: '';
  background: var(--bg-color);
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  z-index: -2;
}

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

.columnLatest .inner::before{
  position: absolute;
  content: '';
  background: #e3e3e3;
  background: url(../images/bg01.jpg) no-repeat center / cover;
  width: 123%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.columnLatest .column_left{
  flex-shrink: 0;
}

.columnLatest .column_left .top_title{
  margin-bottom: 30px;
}

.columnLatest .column_left .top_title .eng{
  font-size: 45px;
  line-height: 1.3;
}

.columnLatest .column_left .top_title .eng .small{
  font-size: 35px;
  margin: 0 10px;
}

.columnLatest .column_left .top_title h2{
  font-size: 180%;
}

.column_list{
  width: 100%;
  min-width: 0;
}

.columnLatest .column_item {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

.columnLatest .column_item:last-of-type{
  margin-bottom: 0;
}

.columnLatest .column_item a {
  display: flex;
  gap: 15px;
  width: 100%;
  height: 100%;
  padding: 25px 10px 20px 25px;
  background: #fff;
}

/* .columnLatest .column_item_thum {
  width: calc(40% - 10px);
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.columnLatest .column_item:first-child .column_item_thum::before {
  content: "New";
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 2;
  width: 80px;
  height: 70px;
  padding: 9px 29px 0 0;
  background: var(--sub-color);
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.075em;
  text-align: center;
  opacity: 0.95;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.columnLatest .column_item_thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
  aspect-ratio: 13 / 9;
}

.columnLatest .column_item a:hover .column_item_thum img {
  transform: scale(1.1);
} */

.columnLatest .column_details {
  display: flex;
  width: 100%;
}

.columnLatest .column_details .info {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 20px;
  margin-right: 30px;
  color: var(--text-color);
  line-height: 1;
}

.columnLatest .column_details .date {
  font-size: 85%;
  letter-spacing: 0.075em;
  line-height: 1;
}

.columnLatest .column_details .cate_list {
  display: flex;
  flex-flow: wrap;
  gap: 5px;
}

.columnLatest .column_details .cate_list li {
  display: inline-block;
  flex-shrink: 0;
  min-width: 100px;
  background: var(--main-color);
  color: #fff;
  padding: 6px 10px;
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 400;
  font-size: 83%;
  line-height: 1;
  text-align: center;
}

.columnLatest .column_title {
  width: 100%;
  color: var(--text-color);
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.4s;
}

.columnLatest .column_item a:hover .column_title {
  color: var(--main-color);
}

.columnLatest .column_text {
  margin-top: 11px;
  padding: 13px 0 0;
  border-top: 1px solid #ebebeb;
  color: var(--text-color);
  font-size: 85%;
  line-height: 1.75;
}

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

.columnLatest .btn01 a{
  width: 240px;
}

/*==============================================
  *SP 医療コラム
==============================================*/
@media screen and (max-width: 640px) {
  .columnLatest::before{
    background: url(../images/bg01_sp.jpg) no-repeat bottom / cover;
    width: 100%;
  }

  .columnLatest .inner {
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    padding: 70px 20px;
    gap: 0;
  }

  .columnLatest .inner::before{
    background: url(../images/bg01_sp.jpg) no-repeat center / cover;
  }

  .columnLatest .column_left .top_title .eng{
    font-size: 40px;
  }

  .columnLatest .column_left .top_title .eng .small{
    font-size: 35px;
  }

  .columnLatest .column_list {
    flex-direction: column;
    gap: 30px 0;
  }

  .columnLatest .column_item {
    width: 100%;
    margin-bottom: 15px;
  }

  .columnLatest .column_item a {
    flex-direction: column;
    padding: 13px 13px 20px;
  }

  .columnLatest .column_item_thum {
    width: 100%;
  }

  .columnLatest .column_details {
    width: 100%;
    flex-direction: column;
  }

  .columnLatest .column_details .info{
    margin: 0 0 10px;
    gap: 10px;
  }

  .columnLatest .column_details .cate_list li {
    min-width: 60px;
  }

  .columnLatest .column_title {
    font-size: 100%;
  }

  .columnLatest .btn01{
    width: 100%;
    margin-top: 20px;
  }

  .columnLatest .btn01 a{
    width: 90%;
  }
}

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

  *ご挨拶

================================================================================================================================== */
.greeting{
  position: relative;
  z-index: 2;
  background: var(--bg-color);
}

.greeting::before{
  position: absolute;
  content: '';
  background: url(../images/logo_mark_white.svg) no-repeat center / contain;
  width: 800px;
  height: 800px;
  left: -100px;
  bottom: -90px;
  z-index: -1;
  opacity: 0.5;
}

.greeting::after{
  position: absolute;
  content: '';
  width: 100%;
  height: calc(100% + 100px);
  background-image: url(../images/leaf02.svg), url(../images/dots01.svg);
  background-repeat: no-repeat, no-repeat;
  background-size: calc(247px * 1.8) calc(150px * 1.8), calc(300px* 1.8) calc(134px* 1.8);
  background-position: 103% 0%, 117% 18%;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0.7;
}

.greeting .inner{
  padding: 120px 60px 100px;
}

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

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

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

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

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

.greeting_text h3{
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  font-size: 150%;
}

.greeting_right{
  width: 60%;
}

.greeting_img{
  position: relative;
  z-index: 0;
  padding: 10px 10px 0 0;
}

.greeting_img::before{
  position: absolute;
  content: '';
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  top: 0;
  right: 0;
  border: 1px solid var(--main-color);
  z-index: 0;
}

.greeting_profile {
  margin-top: 20px;
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: center;
}

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

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

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

.greeting_btn a{
  width: 300px;
}

/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {
  .greeting{
    overflow: hidden;
  }

  .greeting::before{
    width: 360px;
    height: 360px;
    left: -70px;
    bottom: -70px;
  }

  .greeting::after{
    height: 100%;
    background-size: calc(247px * 0.8) calc(150px * 0.8), calc(300px * 0.8) calc(134px * 0.8);
    background-position: 108% 2%, -10% 14%;
  }

  .greeting .inner{
    padding: 70px 20px;
  }

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

  .greeting_left {
    width: 100%;
  }

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

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

  .greeting_btn {
    margin-top: 40px;
  }

  .greeting_btn a{
    width: 90%;
  }

  .greeting_right{
    width: 100%;
  }

  .greeting_img{
    width: 70%;
    margin: 0 auto;
  }

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

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

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

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

==================================================================================================================================*/
.pickup{
  position: relative;
  z-index: 1;
}

.pickup::before{
  position: absolute;
  content: '';
  background: url(../images/suisai01.jpg) no-repeat center / contain;
  width: 600px;
  height: 600px;
  top: -120px;
  right: -110px;
  z-index: -1;
  opacity: 0.5;
}

.pickup::after{
  position: absolute;
  content: '';
  background: url(../images/dots01.svg) no-repeat center / contain;
  width: calc(300px * 1.8);
  height: calc(134px * 1.8);
  top: 100px;
  left: -20px;
  z-index: -1;
}

.pickup .inner {
  width: 100%;
  padding: 100px 60px;
  max-width: unset;
}

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

.pickup_item {
  width: 50%;
  min-height: 670px;
  padding: 100px 50px 100px 50px;
}

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

.pickup_title {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  color: #ffffff;
  text-align: center;
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 400;
}

.pickup_title h2, .pickup_title h3 {
  background: none;
  font-size: 180%;
  line-height: 1.3;
  filter: drop-shadow(0 0 5px rgb(69, 92, 92, 0.3)) drop-shadow(0 0 5px rgb(69, 92, 92, 0.3)) drop-shadow(0 0 10px rgb(69, 92, 92, 0.3));
}

.pickup_title span {
  display: inline-block;
  font-family: iowan-old-style-bt, sans-serif;
  font-weight: 400;
  font-size: 100%;
  line-height: 1.5;
  margin-bottom: 10px;
  background: rgb(231, 245, 245, 0.3);
  padding: 6px 20px 3px;
  margin-bottom: 15px;
}

.pickup_title .border{
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: 0 160px;
  margin-top: 30px;
}

.pickup_title .border::before{
  position: absolute;
  content: '';
  top: calc(50% - 0.5px);
  left: 0;
  width: 130px;
  height: 1px;
  background-color: #fff;
  z-index: 0;
}

.pickup_title .border::after{
  position: absolute;
  content: '';
  top: calc(50% - 0.5px);
  right: 0;
  width: 130px;
  height: 1px;
  background-color: #fff;
  z-index: 0;
}

.pickup_title .border i{
  font-size: 10px;
}

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

.pickup_text {
  margin: 30px 0;
  color: #fff;
}

.pickup_text p{
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 400;
  font-size: 110%;
  letter-spacing: 0.08em;
  line-height: 1.75;
  filter: drop-shadow(0 0 5px rgb(69, 92, 92, 0.3)) drop-shadow(0 0 5px rgb(69, 92, 92, 0.3));
}

.pickup_text p:not(:last-of-type){
  margin-bottom: 1em;
}

.pickup_link {
  display: flex;
  flex-flow: wrap;
  align-items: end;
  gap: 10px;
  height: 100%;
  margin-top: auto;
}

.pickup_link .pickup_btn {
  width: calc((100% / 2) - (10px / 2));
  height: fit-content;
}

.pickup_link .pickup_btn a {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 15px 60px 15px 30px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: #ffffff;
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 400;
  font-size: 100%;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

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

.pickup_link .pickup_btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  display: block;
  width: 14px;
  height: 7px;
  background: #ffffff;
  mask: url(../images/btn_arrow.png) no-repeat center / cover;
  -webkit-mask: url(../images/btn_arrow.png) no-repeat center / cover;
  transform: translateY(-50%);
  transition: right 0.2s, background 0.2s;
}

.pickup_link .pickup_btn a:hover::before {
  background: var(--bg-color);
}

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

.pickup_link .pickup_btn a:hover::after{
  background: var(--bg-color);
}


/* 奇数 */
.pickup_item:nth-child(odd) {
  background: linear-gradient(135deg, rgb(66, 125, 126, 0.5), rgba(49, 66, 66, 0.6)), url(../images/pickup01.jpg) no-repeat top / cover;
}

.pickup_item:nth-child(odd) .pickup_link .pickup_btn a:hover::before{
  background: var(--sub-color);
}

.pickup_item:nth-child(odd) .pickup_link .pickup_btn a::after{
  background: #86cfd1;
}

.pickup_item:nth-child(odd) .pickup_link .pickup_btn a:hover::after{
  background: var(--bg-color);
}

/* 偶数 */
.pickup_item:nth-child(even) {
  background: linear-gradient(135deg, rgb(66, 125, 126, 0.5), rgba(49, 66, 66, 0.6)), url(../images/pickup02.jpg) no-repeat center / cover;
}

.pickup_item:nth-child(2) .pickup_link .pickup_btn a {
  background: var(--sub-color);
  border: 1px solid var(--sub-color);
}

.pickup_item:nth-child(even) .pickup_link .pickup_btn a:hover {
  background: #ffffff;
  color: var(--sub-color);
}

.pickup_item:nth-child(even) .pickup_link .pickup_btn a:hover::before {
  background: var(--sub-color);
}

/*==============================================
  *SP　ピックアップ（追加コンテンツ）
==============================================*/
@media screen and (max-width:640px) {
  .pickup::before{
    width: 300px;
    height: 300px;
    top: -80px;
    right: -50px;
  }

  .pickup::after{
    width: calc(300px * 0.8);
    height: calc(134px * 0.8);
    top: 15px;
    left: 0;
  }

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

  .pickup .top_title {
    margin: 0 auto 50px;
    padding: 0 20px;
  }

  .pickup_title h2, .pickup_title h3 {
    font-size: 130%;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }

  .pickup_list {
    width: calc(100%);
    padding: 0 20px;
  }

  .pickup_item {
    width: 100%;
    min-height: auto;
    padding: 60px 20px 30px!important;
  }

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

  .pickup_title {
    font-size: 110%;
  }

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

  .pickup_title span{
    font-size: 90%;
  }

  .pickup_title .border{
    padding: 0 100px;
    margin-top: 10px;
  }

  .pickup_title .border::before{
    width: 80px;
  }

  .pickup_title .border::after{
    width: 80px;
  }

  .pickup_text{
    margin: 20px 0;
  }


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

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

  .pickup_link .pickup_btn {
    width: 100%;
  }
}

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

  *診療案内

================================================================================================================================== */
.medical {
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url(../images/medical_bg.jpg) no-repeat center/cover !important;
}

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

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

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

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

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

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

.medical_btn span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 auto;
  padding: 7px 25px 7px 15px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: #ffffff;
  letter-spacing: 1px;
  text-align: center;
  transition: padding 0.2s, color 0.2s, background 0.2s;
}

.medical_btn span::after {
  content: "\f105";
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  transform: translateY(-50%);
}

.medical_item:hover .medical_btn span {
  background: #ffffff;
  color: var(--main-color);
}

/* ----- 先頭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 {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url(../images/medical_bg_sp.jpg) no-repeat center/cover !important;
  }

  .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: 50%;
  }

  .medical_title h3 {
    font-size: 110%;
  }

  /* ----- 先頭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）

================================================================================================================================== */
.feature {
  position: relative;
  z-index: 1;
}

.feature::before{
  position: absolute;
  content: '';
  background: var(--bg-color);
  width: calc(100% - 60px);
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
}

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

.feature_item {
  display: flex;
  flex-flow: column;
  width: calc(33.3333333333% - 20px);
  height: auto;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

.feature_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 30px;
  background: #ffffff;
  overflow: hidden;
}

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

.feature_title {
  display: flex;
  flex-flow: column;
  justify-content: center;
  min-height: 70px;
  margin-bottom: 25px !important;
  padding-bottom: 15px;
  position: relative;
  z-index: 0;
}

.feature_title::before{
  position: absolute;
  content: '';
  width: calc(100% + 30px);
  bottom: 0;
  right: -30px;
  z-index: 0;
  border-bottom: solid 1px var(--main-color);
}

.feature_title h3 {
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 400;
  font-size: 140%;
  line-height: 1.5;
}

.feature_num {
  position: absolute;
  right: -35px;
  bottom: -15px;
  z-index: -1;
  margin: 0 0 0 !important;
  font-family: iowan-old-style-bt, sans-serif;
  font-weight: 400;
  font-size: 350%;
  line-height: 1;
  opacity: 0.14;
}

.feature_num span {
  color: var(--sub02-color);
  font-size: 160%;
  letter-spacing: 0.08em;
	line-height: 1;
}

.feature_item .btn01 {
  margin: auto 0 0;
  text-align: center;
}

.feature_item .btn01 a{
  width: 100%;
}

/* ---- 横並びボタン ----- */
.btnflex_feature {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}

.btnflex_feature .btn01 {
  width: calc(50% - 2.5px);
}

.btnflex_feature .btn01 > * {
  width: 100%;
}

@media screen and (max-width: 640px) {
  .feature_list {
    gap: 30px;
  }

  .feature_item {
    width: 100%;
  }

  .feature_inner{
    padding: 30px 20px;
  }

  .feature_title {
    min-height: auto;
    margin-bottom: 15px !important;
  }
	
	.feature_num{
		right: -25px;
	}
	
	.feature_num span{
		font-size: 140%;
	}

  /* ---- 横並びボタン ----- */
  .btnflex_feature .btn01 {
    width: 100%;
  }
}

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

  *病状、症状から探す

================================================================================================================================== */
.search {
  position: relative;
  z-index: 0;
}

.search::before{
  position: absolute;
  content: '';
  background: url(../images/bg03.jpg) no-repeat center / cover;
  width: 40%;
  height: 110%;
  bottom: 30%;
  left: 0;
  z-index: -1;
}

.search::after{
  position: absolute;
  content: '';
  background: url(../images/leaf03.svg) no-repeat center / contain;
  width: calc(149px * 2.4);
  height: calc(150px * 2.4);
  top: -20px;
  right: -10px;
  z-index: -1;
}

.search .inner{
  padding-top: 20px;
}

.search .top_title{
  text-align: left;
}


.search .tab_list {
  gap: 10px;
}

.search .tab_list .tab {
  padding: 15px 20px;
}

.search .tab_list .tab.active{
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.search .tab_list .tab.active::before{
  position: absolute;
  content: '';
  background: url(../images/logo_mark_white.svg) no-repeat center / contain;
  width: 90px;
  height: 90px;
  top: 7px;
  right: 7px;
  z-index: -1;
  opacity: 0.7;
}

.search .tab_list .tab.active::after{
  position: absolute;
  content: '';
  border-bottom: 2px solid #fff;
  width: calc(100% - 24px);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  opacity: 0.7;
}

.search .panel {
  position: relative;
  z-index: 1;
  padding: 35px;
  background: var(--main-color);
}

.search_list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  height: fit-content;
}

.search_list li {
  width: calc(33.3333333333% - 13.3333333333px);
  height: auto;
}

/* ----- リンクボタン ----- */
.search_list li a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 60px;
  padding: 10px 45px 10px 20px;
  background: #fff;
  color: var(--text-color);
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 400;
}

.search .panel.panel1 .search_list li a{
  min-height: 70px;
}

.search_list li a:hover{
  background: var(--bg-color);
}

.search_list li a::before {
  content: "";
  position: absolute;
  background: var(--sub02-color);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  top: 50%;
  right: 19px;
  transform: translateY(-50%);
  z-index: 0;
}

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

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

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

.panel_flex .search_list {
  width: calc(70% - 5px);
}

.panel_flex .search_list li {
  width: calc(50% - 8px);
}

/* ==============================================
  *SP 病状、症状から探す
============================================== */
@media screen and (max-width: 640px) {
  .search::before{
    background: url(../images/bg03_sp.jpg) no-repeat center / cover;
  }

  .search::after{
    width: calc(149px * 1.0);
    height: calc(150px * 1.0);
    top: 15px;
    right: -5px;
  }

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

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

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

  .search .tab_list .tab.active::before{
    width: 25px;
    height: 25px;
    top: unset;
    bottom: -7px;
    opacity: 0.5;
  }

  .search .tab_list .tab.active::after{
    border-bottom: 1px solid #fff;
  }

  .search .panel {
    padding: 20px;
    justify-content: center;
  }

  .search_list {
    gap: 10px;
  }

  .search_list li {
    width: 100%;
  }

  .search_list li a,
  .search .panel.panel1 .search_list li a {
    min-height: auto;
    padding: 10px 40px 10px 20px;
  }

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

  .search_img {
    width: 70%;
    margin: 0 auto;
  }

  .panel_flex .search_list {
    width: 100%;
  }

  .panel_flex .search_list li {
    width: 100%;
  }
}

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

  *Instagram

================================================================================================================================== */
.top_instagram{
  position: relative;
  z-index: 0;
}

.top_instagram::before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url(../images/leaf02.svg), url(../images/suisai01.jpg), url(../images/dots01.svg), url(../images/leaf01.svg),url(../images/suisai01.jpg);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: calc(247px * 1.8) calc(150px * 1.8), 700px 700px, calc(300px * 1.8) calc(134px * 1.8), calc(150px * 2.1) calc(150px * 2.1), 600px 600px;
  background-position: 99% 9%, 110% -18%, 100% 100%, 3% 105%, -10% 112%;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0.5;
}

.top_instagram::after{
  position: absolute;
  content: '';
  background: url(../images/leaf03.svg) no-repeat center / contain;
  width: calc(149px * 2.4);
  height: calc(150px * 2.4);
  top: 52%;
  left: -20px;
  transform: translateY(-50%) scale(-1, 1);
  z-index: -1;
}


.feed_item:not(:last-of-type) {
  margin-bottom: 60px;
}

.feed_item{
  background: var(--bg-color);
	padding: 60px 60px;
}

.feed_item .insta_tit {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 20px;
  padding: 25px 25px 25px 70px;
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 400;
  font-size: 160%;
  line-height: 1.5;
  border-top: solid 1px var(--main-color);
  border-bottom: solid 1px var(--main-color);
}

.feed_item .insta_tit::before{
  position: absolute;
  content: '';
  background: url(../images/logo_mark.svg) no-repeat center / contain;
  width: 45px;
  height: 45px;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  z-index: -1;
}

.feed_item .btn01{
  text-align: center;
  margin-top: 10px;
}

.feed_item .btn01 a{
  width: 300px;
}

/* ==============================================
  *SP Instagram
============================================== */
@media screen and (max-width: 640px) {
  .top_instagram::before{
    background-size: calc(247px * 1.0) calc(150px * 1.0), 300px 300px, calc(300px * 1.0) calc(134px * 1.0), calc(150px * 1.1) calc(150px * 1.1), 300px 300px;
    background-position: 110% 3%, 160% -2%, 100% 55%, 3% 100%, -35% 103%;
  }

  .top_instagram::after{
    width: calc(149px * 1.0);
    height: calc(150px * 1.0);
    top: 51%;
    left: -10px;
  }

  .top_instagram .inner {
    padding: 65px 20px 70px !important;
  }

  .feed_wrap {
    flex-wrap: wrap;
    gap: 50px 0;
  }

  .feed_item {
    width: 100%;
    padding: 30px 20px;
  }

  .feed_item .insta_tit{
    width: 100%;
    padding: 20px 20px 20px 50px;
	  margin-bottom: 8px;
    font-size: 135%;
  }

  .feed_item .insta_tit::before{
    width: 30px;
    height: 30px;
    left: 10px;
  }

  .feed_item .btn01 a{
    width: 90%;
  }
}


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

  *無限スライダー

================================================================================================================================== */
#infinitySlider {
  padding: 10px;
}

#infinitySlider .splide__list {
  gap: 10px;
}

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

/* ==============================================
  *SP 無限スライダー
============================================== */
@media screen and (max-width: 640px) {
  #infinitySlider .splide__slide {
    width: 250px !important;
  }
}
