@charset "UTF-8";

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

  *基本設定

================================================================================================================================== */
.front {
    overflow: hidden;
    font-family: var(--font-jp);
}

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

/* ==============================================
  *SP 基本設定
============================================== */
@media screen and (max-width: 640px) {
    section .inner {
        padding: 70px 20px;
    }

    /* ----- パララックス ----- */
    .parallax {
        height: 300px;
    }
}

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

  *タイトル

================================================================================================================================== */
.top_title {
    position: relative;
    margin-bottom: 50px;
    line-height: 1.5;
    text-align: center;
    padding: 0;
    z-index: 1;
    /* 左寄せ */
}

.top_title::before {
    content: "";
    display: block;
    width: 1px;
    height: 50px;
    margin: 0 auto;
    background: var(--line-color);
}

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

.top_title.title_left::before {
    display: none;
}

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

.top_title .eng {
    display: inline-block;
    color: #cac7c1;
    background: linear-gradient(to right, #cac7c1, #dde3df);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 620%;
    font-family: var(--font-en1);
    letter-spacing: .1em;
}

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

    .top_title h2, 
body .clinic_column .top_title h2 {
        margin: 5px 0 0;
        font-size: 26px;
    }
body .news .top_title .eng, 
body .clinic_column .top_title .eng,
    .top_title .eng {
        font-size: 18px;
    }
}

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

  *メインビジュアル

================================================================================================================================== */
.mainvisual {
    position: relative;
    height: 840px;
    overflow: hidden;
    z-index: 1;
}

.mvSlider {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.mvSlider::after {
    display: block;
    content: "";
    position: absolute;
    z-index: 2;
    width: calc(100% - 80px);
    top: 0;
    background: rgba(66, 70, 70, 0.4);
    height: 100%;
    right: 0;
}

/* ----- スライダーの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%;
    padding-left: 80px;
}

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

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

.mv_catch {
    position: relative;
    z-index: 0;
    max-width: 900px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 80px 0 0;
}

.mv_catch::before {
    position: absolute;
    content: '';
    background: url(../images/logomark_w.png) no-repeat center/cover;
    width: 52px;
    height: 60px;
    top: 0;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
    opacity: .5;
}

.mvCatch p {
    position: relative;
    font-size: 260%;
    text-align: center;
    line-height: 1.65;
    letter-spacing: 0.08em;
    color: #ffffff;
    /* text-shadow: 0 8px 8px rgba(54, 77, 75, 0.35); */
}

.mvCatch p.en {
    font-family: var(--font-en1) !important;
    font-size: 150%;
    text-shadow: none !important;
    letter-spacing: .2em;
    margin-top: 20px;
    opacity: .8;
}

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

    .mvSlider::before {
        background: linear-gradient(rgb(0 0 0 / 30%), rgb(42 92 81 / 40%), transparent);
    }

    .mvSlider::before,
    .mvSlider::after {
        width: 100%;
    }

    /* ----- スライダーの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;
    }

    .mvImg {
        padding-left: 0;
    }

    .mvCatch {
        top: 50%;
    }

    .mvCatch .inner {
        padding: 0;
    }

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

    .mvCatch p {
        font-size: 120%;
        line-height: 1.5;
        padding-left: 0;
    }

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

.top_banner::before {
    position: absolute;
    content: '';
    bottom: 0;
    background: var(--bg-color);
    width: 100%;
    height: calc(100% + 180px);
    z-index: -1;
}

/* ----- 共通設定 ----- */
.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: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
}

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

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

.top_banner .input .slide_img {
    flex-shrink: 0;
    width: calc(40% - 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: 0 0 40px;
}

.top_banner .input .slide_title {
    margin: 0 auto 25px;
    padding: 30px 20px 20px;
    border-bottom: 1px solid var(--line-color);
    color: #828282;
    font-size: 140%;
    line-height: 1.45;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.top_banner .input .slide_content {
    font-size: 90%;
    line-height: 1.65;
    padding: 0 8%;
}

/* ----- グリッドバナー ----- */
.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 .inner {
    max-width: 1400px;
    margin-top: -50px;
    padding: 0 50px 70px;
}

#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;
    bottom: -70px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    padding: 3px;
    background: linear-gradient(to right, #afa97d, #bebca5);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
}

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

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

#bannerSlider .bannerSlider_arrow_prev {
    left: 0;
}

#bannerSlider .bannerSlider_arrow_next {
    right: 0;
}

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

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

#bannerSlider .bannerSlider_page.is-active {
    background: #aeaaaa;
}

/* ==============================================
  *SP バナーエリア（追加コンテンツ）
============================================== */
@media screen and (max-width: 640px) {
    #bannerSlider .inner {
        margin-top: 0;
        padding: 0 10px 70px;
    }

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

    #bannerSlider .bannerSlider_arrow_prev {
        left: 30px;
    }

    #bannerSlider .bannerSlider_arrow_next {
        right: 30px;
    }

    .top_banner .input .banner_slide {
        flex-flow: column;
    }

    .top_banner .input .banner_slide .slide_img {
        width: 100%;
        height: 40%;
    }

    .top_banner .input .slide_inner {
        padding: 0;
    }

    .top_banner .input .slide_title {
        padding: 20px;
    }
}

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

  *バナーエリア（下部）

==================================================================================================================================*/
#bottomSlider {
    background: none;
}

#bottomSlider .inner {
    max-width: none;
    padding: 100px 0 50px;
}

#bottomSlider .splide {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

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

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

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

#bottomSlider .splide__arrow span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgb(148, 158, 160, 0.8);
    color: #ffffff;
    transition: background 0.2s;
    border-radius: 50%;
}

#bottomSlider .splide__arrow:hover span {
    background: var(--text-color);
}

#bottomSlider .splide__arrow span::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-style: normal;
    color: #ffffff;
    font-size: 14px;
    transition: color 0.2s;
}

#bottomSlider .splide__arrow--prev {
    left: 100px;
}

#bottomSlider .splide__arrow--prev span::before {
    content: "\f104";
}

#bottomSlider .splide__arrow--next {
    right: 100px;
}

#bottomSlider .splide__arrow--next span::before {
    content: "\f105";
}

#bottomSlider .slide_inner {
    position: relative;
    display: block;
    z-index: 1;
    color: var(--text-color);
}

#bottomSlider .slide_img {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

#bottomSlider .slide_img::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(150deg, transparent, transparent 45%, rgb(176, 170, 127, 1));
    transition: opacity 0.4s;
}

#bottomSlider .slide_img img {
    transition: transform 0.4s;
}

#bottomSlider .slide_title {
    position: absolute;
    z-index: 2;
    right: 15px;
    bottom: 10px;
    padding: 10px;
    color: #ffffff;
    font-size: 110%;
    text-align: center;
    transition: color 0.2s;
}

/* リンクの場合 */
#bottomSlider a.slide_inner:hover .slide_img::before {
    opacity: 0;
}

#bottomSlider a.slide_inner:hover .slide_img::after {
    opacity: 1;
}

#bottomSlider a.slide_inner:hover .slide_img img {
    transform: scale(1.1);
}

/* ----- ページネーション ----- */
#bottomSlider .splide__pagination {
    position: absolute;
    z-index: 1;
    bottom: -50px;
    left: 50%;
    display: flex;
    gap: 15px;
    transform: translateX(-50%);
}

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

#bottomSlider .bottomSlider-page.is-active {
    background: #aeaaaa;
}

#bottomSlider .btn01 {
    padding-top: 60px;
    text-align: center;
}

/*==============================================
  *SP　 設備紹介スライダー（追加コンテンツ）
==============================================*/
@media screen and (max-width: 640px) {
    #bottomSlider .inner {
        padding: 0;
    }

    #bottomSlider .splide__slide {
        width: 250px !important;
    }

    #bottomSlider .splide {
        margin-bottom: 30px;
    }

    #bottomSlider .splide__arrow {
        width: 35px;
        height: 35px;
    }

    #bottomSlider .splide__arrow--prev {
        left: 15px;
    }

    #bottomSlider .splide__arrow--next {
        right: 15px;
    }

    #bottomSlider .splide__arrow span::before {
        font-size: 16px;
    }

    #bottomSlider .splide__pagination {
        bottom: -80px;
    }
}

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

  *料金表バナー - 追加コンテンツ

==================================================================================================================================*/
.price {
    position: relative;
}

.price::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 92%;
    height: 80%;
    background: url(../images/mable.jpg) no-repeat center / cover;
    z-index: -1;
    opacity: .6;
}

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

.price_bnr a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    animation: auto;
    max-width: 750px;
    min-height: 137px;
    margin: 0px auto;
    padding: 40px;
    background: url(../images/top_price_bnr.jpg) no-repeat center / cover;
    transition: .2s;
}

.price_bnr a:hover {
    opacity: .8;
}

.price_bnr a::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), #a3acad);
}

.price_bnr a::after {
    content: "";
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: block;
    width: 38px;
    height: 13px;
    background: #ffffff;
    mask: url(../images/btn_arrow.png) no-repeat center / cover;
    -webkit-mask: url(../images/btn_arrow.png) no-repeat center / cover;
    transition: right 0.2s, background 0.2s;
}

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

.price_bnr_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60%;
}

.price_bnr_title {
    position: relative;
    font-size: 170%;
    font-family: var(--font-jp);
    letter-spacing: .1em;
    line-height: 1.5;
    color: #fff;
}

.price_bnr_title {
    position: relative;
    font-size: 170%;
    font-family: var(--font-jp);
    letter-spacing: .1em;
    line-height: 1.5;
    color: #fff;
}

.price_bnr_title_eng {
    font-family: var(--font-en1);
    color: #fff;
}

@media screen and (max-width: 640px) {
    .price::before {
        width: 100%;
        height: 50%;
    }

    .price .inner {
        padding: 80px 20px;
    }

    .price_bnr_content {
        width: 100%;
    }
}

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

  *お知らせ・コラム

==================================================================================================================================*/
.clinic .clinic_top .inner {
    display: flex;
    max-width: 1500px;
    gap: 90px;
    padding: 120px 50px 140px;
}

/* ------ お知らせ ------ */
.clinic .news {
    width: calc(50% - 35px);
}

.news .top_title,
.clinic_column .top_title {
    margin-bottom: 0 !important;
}

.news .top_title h2 {
    font-size: 120%;
}

.news .top_title .eng {
    font-size: 200%;
    background: linear-gradient(to right, #909090, #a4a4a4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.info_title_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

/* ------ コラム ------ */
.clinic_column {
    width: calc(50% - 35px);
}

.clinic_column .top_title h2 {
    font-size: 120%;
}

.clinic_column .top_title .eng {
    font-size: 180%;
    background: linear-gradient(to right, #909090, #a4a4a4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.clinic_column .column_list {
    margin-bottom: 30px;
}

.clinic_column .column_item {
    width: 100%;
    border-top: 1px solid var(--line-color);
}

.clinic_column .column_item:last-child {
    border-bottom: 1px solid var(--line-color);
}

.clinic_column .column_item a {
    display: flex;
    gap: 20px;
    height: 100%;
    padding: 42px 15px;
}

.clinic_column .column_item a:hover {
    background: var(--bg-color);
}

/* サムネイル */
.clinic_column .column_item_thum {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    overflow: hidden;
}

.clinic_column .column_item_thum img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s;
}

.clinic_column .column_item a:hover .column_item_thum img {
    transform: scale(1.1);
}

.clinic_column .column_info_inner {
    display: flex;
    flex-flow: wrap;
    gap: 10px 20px;
}

.clinic_column .column_item a .column_info {
    display: flex;
    flex-flow: column;
    gap: 25px;
    width: calc(100% - 120px);
    color: var(--text-color);
    font-size: 90%;
}

/*　カテゴリー */
.clinic_column .column_item a .column_date {
    flex-shrink: 0;
    font-family: var(--font-en1);
    color: #b4b4b4;
    padding-top: 3px;
    letter-spacing: 2px;
}

.clinic_column .column_item a .column_info ul {
    display: flex;
    flex-flow: wrap;
    gap: 5px;
}

.clinic_column .column_item a .column_info ul li {
    min-width: 110px;
    padding: 0px 12px;
    border: 1px solid #969696;
    color: #969696;
    font-size: 100%;
    border-radius: 100px;
    text-align: center;
}

/* コラムタイトル */
.clinic_column .column_item a .column_title {
    color: var(--text-color);
    font-size: 120%;
    white-space: nowrap;
    transition: color 0.2s;
}

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

.clinic_column .column_item a .column_title p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

/* コラムがない時 */
.colum_coming {
    margin: 0 auto 30px;
    text-align: center;
}

/* ------ 医院概要 ------ */
.clinic .info {
    width: 100%;
}

.clinic .info .inner {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    gap: 40px;
    padding: 0 0 100px;
}

.clinic .info .inner>* {
    width: calc(50% - 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 .zipcode {
    margin-right: 10px;
}

.clinic .info address .tel {
    margin-top: 15px;
    padding: 3px 0 7px 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;
    font-size: 30px;
    line-height: 1;
}

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

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

.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 .office_hour .title {
    background: #ffffff;
}

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

.clinic .info .office_hour:first-child {
    margin-top: 30px;
}

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

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

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

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

@media screen and (max-width: 640px) {
    .clinic .clinic_top .inner {
        flex-flow: column;
        gap: 60px;
        padding: 60px 20px;
    }

    /* ------ お知らせ ------ */
    .clinic .news {
        width: 100%;
    }

    .news .top_title h2 {
        font-size: 26px;
    }

    .news .btn01 {
        margin-top: 30px;
    }

    /* ------ 医療コラム ------ */
    .clinic_column {
        width: 100%;
    }

    .clinic_colum .top_title h2 {
        font-size: 26px;
    }

    .clinic_column .column_item a {
        padding: 15px 5px 15px 10px;
    }

    .clinic_column .column_item a .column_info ul li {
        min-width: 70px;
    }

	.clinic_column .column_item a .column_title p {
	white-space: normal; 
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
        font-size: 86%;
	}
	
    /* ------ 医院概要 ------ */
    .clinic .info .inner {
        flex-flow: column;
        padding: 0 20px 70px;
    }

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

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

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

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

  *ご挨拶

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

.greeting::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: calc(50% - 130px);
    height: calc(100% - 80px);
    background: url(../images/mable.jpg) no-repeat center / cover;
    opacity: .45;
    z-index: -1;
}

.greeting .inner {
    max-width: 1600px;
    padding: 0 4rem 150px;
}

.greeting .top_title .eng {
    font-size: 700%;
    margin-bottom: 0;
    color: #cac7c1;
    background: linear-gradient(to right, #cac7c1, #dde3df);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.greeting_title_box {
    position: relative;
}

.greeting_flex {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 0 auto;
    z-index: 0;
}

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

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

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

.message_text {
    position: relative;
    font-size: 120%;
    margin-bottom: 50px;
    line-height: 1.75;
    padding: 120px 0 50px;
    border-bottom: 1px solid var(--line-color);
}

.message_text::before,
.message_text::after {
    position: absolute;
}

.message_text::before {
    content: 'MESSAGE';
    top: 70px;
    left: 0;
    font-family: var(--font-en1);
    font-size: 150%;
    line-height: 1;
    letter-spacing: 3px;
    color: #828282;
}

.message_text::after {
    position: absolute;
    content: '';
    top: 0;
    left: -250px;
    width: calc(100% + 500px);
    height: 100%;
    background: linear-gradient(to right, #ffffff, transparent);
    z-index: -1;
}

.greeting_right {
    margin-top: -75px;
}

.greeting_img {
    max-width: 450px;
}

.greeting_profile {
    padding: 40px 0 0;
    line-height: 1.75;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.greeting_profile .position {
    position: relative;
    font-size: 150%;
}

.greeting_profile .position::before {
    position: absolute;
    content: '';
    background: url(../images/logomark.png) no-repeat center / cover;
    width: 52px;
    height: 58px;
    top: 0;
    left: -75px;
    z-index: -1;
}

.greeting_profile .name {
    font-size: 250%;
    line-height: 1.45;
}

.greeting_profile .name span {
    font-size: 50%;
    margin-right: 15px;
}

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

/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {
    .greeting::before {
        width: calc(55% - 130px);
        height: 390px;
    }

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

    .greeting .top_title .eng {
        font-size: 300%;
    }

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

    .greeting_left {
        width: 100%;
    }

    .message_text {
        font-size: 100%;
        margin-bottom: 30px;
        padding: 90px 0 40px;
    }

    .message_text::before {
        top: 50px;
    }

    .greeting_right {
        margin-top: 0;
    }

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

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

  *診療案内

================================================================================================================================== */
.medical {
    position: relative;
}

.medical::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: calc(85% - 70px);
    height: 50%;
    background: url(../images/mable.jpg) no-repeat center / cover;
    z-index: -1;
    opacity: .5;
}

.medical .inner {
    max-width: 1600px;
    padding: 100px 5rem;
}

.medical .top_title .eng {
    font-size: 700%;
    letter-spacing: .1em;
    line-height: 1.25;
    background: linear-gradient(to right, #c9c9c9, #c1d3c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

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

.medical_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.medical_inner {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 300px;
    padding: 30px 20px 40px;
    background: rgb(124 136 136 / 30%);
    text-align: center;
}

.medical_inner::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, rgb(169 178 178 / 70%));
    z-index: -1;
}

.medical_item:hover .medical_inner {
    background: none;
}

.medical_item:hover .medical_img img {
    transform: scale(1.1);
}

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

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

.medical_title h3 {
    position: absolute;
    bottom: 30px;
    left: 30px;
    text-align: left;
    color: #ffffff;
    font-size: 120%;
    line-height: 1.5;
}

.medical_title_eng {
    position: absolute;
    top: 18px;
    right: 15px;
    display: block;
    width: fit-content;
    font-family: var(--font-en1);
    font-style: normal;
    color: #ffffff;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 1px;
    text-align: center;
    writing-mode: vertical-rl;
    transition: color 0.2s;
}

.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 + 3) {
    width: calc(33.3333333333% - 7px);
    min-height: 400px;
}

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

.medical_item:nth-of-type(-n + 3) .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 .inner {
        padding: 50px 20px 70px;
    }

    .medical .top_title .eng {
        font-size: 350%;
    }

    .medical_list {
        gap: 15px 10px;
    }

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

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

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

    .medical_icon {
        width: 50%;
    }

    .medical_title h3 {
        font-size: 110%;
        bottom: 20px;
        left: 12px;
    }

    .medical_title_eng {
        font-size: 70%;
    }

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

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

  *美容皮膚科の治療法について

================================================================================================================================== */
.treatment {
    position: relative;
}

.treatment .inner {
    max-width: 1600px;
    padding: 0 5rem;
}

.treatment .top_title {
    display: flex;
    align-items: center;
}

.treatment .top_title h2 {
    position: relative;
    font-size: 180%;
    padding-left: 80px;
}

.treatment .top_title h2::before {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background: var(--line-color);
    transform: translateY(-50%);
    top: 50%;
    position: absolute;
    left: 0;
}

.treatment .top_title .eng {
    margin-right: 20px;
    font-size: 380%;
    background: linear-gradient(to right, #c9c9c9, #c1d3c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.treatment_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

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

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

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

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

.treatment_inner {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 350px;
    padding: 30px 20px;
    text-align: center;
    background: #f7f7f7;
    border: 1px solid rgb(170 178 149 / 20%);
}

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

.treatment_icon {
    position: relative;
    max-width: 130px;
    padding: 20px;
    margin: 0 auto 15px !important;
    background: #ffffff;
    border-radius: 50%;
    z-index: 0;
}

.treatment_icon::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: -10px;
    right: 0;
    margin: auto;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    z-index: -1;
}

.treatment_title h3 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 120%;
    line-height: 1.5;
    min-height: 70px;
}

.treatment_title_eng {
    position: absolute;
    top: 18px;
    right: 15px;
    display: block;
    width: fit-content;
    font-family: var(--font-en1);
    font-style: normal;
    color: var(--main-color);
    font-size: 12px;
    line-height: 1;
    letter-spacing: 1px;
    text-align: center;
    writing-mode: vertical-rl;
    transition: color 0.2s;
}

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

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

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

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

/* ==============================================
  *SP 美容皮膚科の治療法について
============================================== */
@media screen and (max-width: 640px) {
    .treatment .inner {
        padding: 50px 20px 70px;
    }

    .treatment .top_title {
        flex-flow: column;
    }

    .treatment .top_title h2 {
        font-size: 160%;
        padding-left: 0;
    }

    .treatment .top_title h2::before {
        display: none;
    }

    .treatment .top_title .eng {
        margin-right: 0;
        font-size: 330%;
    }

    .treatment_list {
        gap: 15px 10px;
    }

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

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

    .treatment_inner {
        min-height: 260px;
        padding: 30px 10px 20px;
    }

    .treatment_icon {
        width: 60%;
    }

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

    .treatment_title_eng {
        font-size: 70%;
    }

    .treatment_title_eng {
        top: 11px;
        right: 7px;
    }

}



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

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

==================================================================================================================================*/
.section_img_feature {
    position: relative;
    z-index: 2;
}

.grid_img {
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 2fr;
    width: calc(100% - 70px);
    margin: 0 auto 0 0;
    grid-template-areas: "img01 img02";
}

.grid_img li {
    height: fit-content;
    height: 600px;
}

.grid_img li picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature {
    overflow: hidden;
}

.feature .inner {
    max-width: none;
    padding: 0 70px 120px;
}

.feature .top_title {
    padding: 100px 0 60px;
    margin: 0;
}

.feature .top_title em {
    font-size: 60px;
    line-height: 60px;
    font-style: normal;
    padding: 0 10px;
    font-family: var(--font-en2);
    color: #bebca5;
}

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

.feature_item {
    display: flex;
    align-items: center;
    height: auto;
    width: 100%;
    counter-increment: number 1;
}

.feature_img {
    position: relative;
    flex-shrink: 0;
    width: 50%;
}

.feature_item .feature_img::before {
    position: absolute;
    left: 35px;
    bottom: 30px;
    content: '0' counter(number);
    font-family: var(--font-en1);
    font-size: 100px;
    line-height: 100px;
    font-style: italic;
    color: #ffffff;
    z-index: 1;
}

.feature_item .feature_img::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(transparent, rgb(176 170 127 / 70%));
}

.feature_img img {
    width: 100%;
    height: 100%;
    /* height: calc(100% - 20px); */
    object-fit: cover;
}

.feature_inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    width: calc(100% + 50px);
    height: 100%;
    padding: 50px 5rem 0 6rem;
}

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

.feature_title {
    position: relative;
    display: flex;
    flex-flow: column;
    margin-bottom: 30px !important;
    padding-top: 80px;
    gap: 50px;
    text-align: center;
}

.feature_title h3 {
    position: relative;
    color: var(--text-color);
    font-size: 210%;
    line-height: 1.55;
}

.feature_num {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 !important;
    font-size: 230%;
    font-family: var(--font-en2);
    color: #bebca5;
    line-height: 1;
}

.feature_num span {
    position: relative;
    padding-top: 27px;
}

.feature_num span::before {
    position: absolute;
    content: '';
    left: 50%;
    top: -20px;
    margin: auto;
    width: 100px;
    height: 102px;
    background: #bebca5;
    mask: url(../images/circle.svg) no-repeat center / cover;
    -webkit-mask: url(../images/circle.svg) no-repeat center / cover;
    transform: translateX(-50%);
}

.feature_text_wrap {
    max-width: 750px;
}

.feature_text_wrap p {
    font-size: 105%;
    line-height: 1.85;
}

.feature_textarea {
    position: relative;
    padding: 50px 7rem;
}

@media screen and (min-width: 641px) and (max-width: 1700px) {
    .feature_textarea {
        padding: 50px 1.5rem;
    }

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

    .feature_inner {
        padding: 50px 4rem 0 4rem;
    }

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

.feature_textarea::before,
.feature_textarea::after {
    position: absolute;
    content: '';
    background: #bebca5;
    mask: url(../images/feature_frame_top.svg) no-repeat center;
    -webkit-mask: url(../images/feature_frame_top.svg) no-repeat center;
    width: 100%;
    height: 32px;
    left: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.feature_textarea::before {
    top: 0;
}

.feature_textarea::after {
    bottom: 0;
    transform: rotate(180deg);
}

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

.feature_item .btn01>* {
    padding: 10px 40px 10px 30px;
    font-size: 95%;
}

.btnflex_feature {
    display: flex;
    align-items: center;
    flex-flow: wrap;
    gap: 5px;
    margin-top: auto;
}

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

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

.feature_item:nth-child(even) .feature_inner {
    padding: 50px 6rem 0 5rem;
}

/* ボタン横並び */
.btnflex_feature .btn01 {
    width: calc(50% - 2.5px);
}

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

@media screen and (max-width: 640px) {
    .grid_img {
        width: 100%;
        gap: 15px;
    }

    .grid_img li {
        height: 250px;
    }

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

    .feature .top_title {
        padding: 60px 0 30px;
    }

    .feature_list {
        gap: 20px;
    }

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

    .feature_img {
        width: 100%;
        margin: 0 auto 30px;
    }

    .feature_item .feature_img::before {
        left: 20px;
        bottom: 20px;
        font-size: 60px;
        line-height: 60px;
    }

    .feature_inner {
        width: 100%;
        min-height: auto;
        margin: 0;
        padding: 0 1% 50px;
    }

    .feature_title {
        padding-top: 0;
        margin-bottom: 15px !important;
    }

    .feature_num {
        display: none;
    }

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

    .feature_textarea {
        padding: 50px 5%;
    }

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

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

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

    /* 横並び */
    .btnflex_feature .btn01 {
        width: 100%;
    }
}

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

  *皮膚科のお悩みについて

================================================================================================================================== */
.search {
    position: relative;
}

.search .inner {
    max-width: 1500px;
    padding: 0 3rem 150px;
}

.search .top_title::before {
    margin: 0 auto 20px;
}

.search .top_title .eng {
    font-size: 130%;
    background: linear-gradient(to right, #909090, #a4a4a4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.search .top_title h2 {
    padding-top: 10px;
}

.search .panel {
    position: relative;
    background: none;
    padding: 0;
    z-index: 1;
}

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

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

/* ----- リンクボタン ----- */
.search_list li a {
    position: relative;
    display: block;
    padding: 20px 60px 20px 30px;
    background-image: linear-gradient(to right, var(--main-color) 0%, var(--main-color) 50%, transparent 50%, transparent 100%);
    background-position: 100% 0;
    background-size: 200% auto;
    border: 1px solid #828282;
    color: #828282;
    font-size: 110%;
    letter-spacing: 0.15em;
    text-align: left;
    transition: background 0.5s, color 0.5s, padding 0.5s, border 0.5s;
}

.search_list li a::before {
    content: "";
    position: absolute;
    top: 48%;
    right: 15px;
    z-index: 2;
    display: block;
    width: 28px;
    height: 10px;
    background: #828282;
    -webkit-mask: url(../images/btn_arrow.png) no-repeat center/cover;
    mask: url(../images/btn_arrow.png) no-repeat center/cover;
    transform: translateY(-50%);
    transition: background 0.2s;
}

.search_list li a:hover {
    background-position: 0 0;
    color: #ffffff;
}

.search_list li a:hover::before {
    background: #ffffff;
    animation: showArrow 0.3s 0.5s ease-out forwards;
}

/* ==============================================
  *SP 病状、症状から探す
============================================== */
@media screen and (max-width: 640px) {
    .search .inner {
        padding: 0 20px 70px;
    }

    .search .panel {
        padding: 20px;
    }

    .search_list {
        gap: 10px;
    }

    .search_list li {
        width: 100%;
    }

    .search_list li a {
        min-height: auto;
        padding: 10px 40px;
    }

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

    .search_img {
        width: 100%;
    }

    .panel_flex .search_list {
        width: 100%;
    }

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

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

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

==================================================================================================================================*/
#columnSlider .inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 130px;
    width: 90%;
    max-width: 1520px;
    margin: 0 auto;
    padding: 70px 50px 100px;
}

#columnSlider .top_title {
    flex-shrink: 0;
}

#columnSlider .top_title::before {
    height: 40px;
    margin: 0 auto 10px;
}

#columnSlider .top_title .eng {
    font-size: 130%;
    background: linear-gradient(to right, #909090, #a4a4a4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ----- コラムスライダー設定 ----- */
#columnSlider .splide {
    width: 100%;
    padding-top: 75px;
    overflow: hidden;
}

#columnSlider .splide__list {
    align-items: flex-start;
    width: 100%;
}

/* スライダーのArrowボタン */
#columnSlider .splide__arrow {
    position: absolute;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(to right, #afa97d, #bebca5);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    overflow: hidden;
    transform: translateZ(0);
    transition: background 0.2s, color 0.2s;

}

#columnSlider .splide__arrow:hover {
    background: #edf4ef;
    color: var(--main-color);
}

#columnSlider .splide__arrow span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    transition: background 0.2s;
}

#columnSlider .splide__arrow span::before {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
}

#columnSlider .splide__arrow--prev {
    right: 55px;
}

#columnSlider .splide__arrow--prev span::before {
    content: "\f104";
}

#columnSlider .splide__arrow--next {
    right: 0;
}

#columnSlider .splide__arrow--next span::before {
    content: "\f105";
}

#columnSlider .splide__slide {
    display: flex;
    align-items: center;
    min-height: 200px;
}

/* ----- ページネーション ----- */
#columnSlider .splide__pagination {
    position: absolute;
    top: 15px;
    right: 140px;
    z-index: 1;
    display: flex;
    gap: 15px;
}

#columnSlider .columnSlider-page {
    width: 10px;
    height: 10px;
    background-color: #c9c9c9;
    border-radius: 50%;
    transition: background 0.2s;
}

#columnSlider .columnSlider-page.is-active {
    background: #aeaaaa;
}

/* ----- コラム個別 ----- */
#columnSlider .column_item a {
    width: 100%;
}

#columnSlider .column_item_thum {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    margin: 0 0 15px;
    overflow: hidden;
}

#columnSlider .column_item_thum img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;

    aspect-ratio: 13 / 9;
}

#columnSlider .column_item a:hover .column_item_thum img {
    transform: scale(1.1);
}

#columnSlider .column_item:first-child .column_item_thum::before,
#columnSlider .column_item:first-child .column_item_thum::after {
    position: absolute;
    display: block;
    z-index: 2;
    transition: opacity 0.4s;
}

#columnSlider .column_item:first-child .column_item_thum::before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(330deg, transparent, transparent 45%, rgb(204 217 208));
}

#columnSlider .column_item:first-child .column_item_thum::after {
    content: "New!";
    position: absolute;
    color: #ffffff;
    font-family: var(--font-en1);
    font-size: 20px;
    letter-spacing: 0.15em;
    top: 10px;
    left: 20px;
}

#columnSlider .column_info {
    display: flex;
    flex-flow: wrap;
    gap: 15px;
    margin: 0 0 15px;
    color: #747474;
    font-size: 90%;
}

#columnSlider .column_date {
    flex-shrink: 0;
    font-family: var(--font-en1);
    color: #b4b4b4;
    padding-top: 3px;
    letter-spacing: 2px;
}

#columnSlider .column_info ul {
    display: flex;
    flex-flow: wrap;
    gap: 5px;
}

#columnSlider .column_info ul li {
    min-width: 110px;
    padding: 0px 12px;
    border: 1px solid #969696;
    color: #969696;
    font-size: 100%;
    border-radius: 100px;
    text-align: center;
}

#columnSlider .column_title {
    color: var(--text-color);
    font-size: 120%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s;
}

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

/*==============================================
  *SP　医療コラム
==============================================*/
@media screen and (max-width: 640px) {
    #columnSlider .inner {
        flex-flow: column;
        gap: 0;
        width: 100%;
        margin: 0 auto;
        padding: 50px 20px 100px;
    }

    #columnSlider .top_title {
        margin: 0 auto 50px;
    }

    #columnSlider .splide {
        margin-right: -40px;
    }

    #columnSlider .splide__arrow {
        width: 35px;
        height: 35px;
    }

    #columnSlider .splide__arrow--next {
        right: 20px;
    }

    #columnSlider .splide__arrow--prev {
        right: 80px;
    }

    #columnSlider .splide__pagination {
        top: 13px;
        right: auto;
        left: 0;
        justify-content: flex-end;
        gap: 13px;
        transform: translate(0);
    }

    #columnSlider .columnSlider-page {
        width: 8px;
        height: 8px;
    }

    #columnSlider .splide__slide:first-child .column_item_thum::before {
        width: 80px;
        height: 80px;
        padding: 13px 25px 0 0;
    }
}

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

  *無限スライダー

================================================================================================================================== */
#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;
    }
}