@charset "UTF-8";

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

  *基本設定

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

section .inner {
    padding: 100px 0;
    max-width: 1300px;
}

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

    /* 左寄せ */
}

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

.top_title h2 {
    font-size: 220%;
    /* font-weight: 700; */
}

.top_title .eng {
    display: inline-block;
    margin-bottom: 5px;
    color: var(--main-color);
    font-size: 150%;
    font-family: var(--font-en);
    font-weight: 700;
}

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

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

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

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

  *メインビジュアル

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

.mainvisual::before {
    display: block;
    content: "";
    position: absolute;
    z-index: 2;
    top: 250px;
    right: -60px;
    width: 407px;
    height: 450px;
    background: url(../images/mv_frame_r.png) no-repeat center / cover;
}

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

.mvSlider::before,
.mvSlider::after {
    display: block;
    content: "";
    position: absolute;
    right: 0;
    width: 100%;
}

.mvSlider::before {
    top: 0;
    height: 25%;
    background: linear-gradient(rgba(255, 255, 255), rgba(255, 255, 255, 0.4), transparent);
    z-index: 2;
}

.mvSlider::after {
    bottom: 0;
    height: 100%;
    background: url(../images/mv_frame.png) bottom center / cover no-repeat;
    -webkit-mask-image: url(../images/bg_mask.png);
    mask-image: url(../images/bg_mask.png);
    z-index: 1;
}

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

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

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

.mvCatch p {
    font-size: 250%;
    font-family: var(--font-jp);
    color: #ffffff;
    text-align: center;
    /* filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff); */
}

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

.mvContents .inner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

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

.open_bnr {
    position: absolute;
    bottom: 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: 500px;
    }

    .mainvisual::before {
        top: 40px;
        right: -100px;
        width: 200px;
        height: 230px;
    }

    /* ----- スライダーの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 p {
        font-size: 130%;
        line-height: 1.75;
        filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff);
    }

    .mvContents {
        display: none;
    }

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

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

  *バナーエリア

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

.clinic_bg::before {
    position: absolute;
    display: block;
    content: "";
    top: -300px;
    right: 0;
    width: 593px;
    height: 397px;
    background: url(../images/mv_frame_b.png) no-repeat center / cover;
    z-index: 2;
}

.top_banner {
    position: relative;
}

.top_banner::before,
.top_banner::after {
    position: absolute;
    display: block;
    content: "";
    z-index: 1;
}

.top_banner::before {
    top: -330px;
    left: 0;
    width: 100%;
    height: 360px;
    background: url(../images/wave_02.png) bottom / 100% no-repeat;
}

.top_banner::after {
    left: 0;
    bottom: 150px;
    width: 520px;
    height: 704px;
    background: url(../images/mv_frame_l.png) no-repeat center / cover;
}

.top_banner .inner {
    position: relative;
    padding: 100px 0 0;
    z-index: 3;
}

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

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

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

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

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

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

.top_banner .input 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: 0 0 10px;
}

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

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

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

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

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

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

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

/* スライダーのArrowボタン */
#bannerSlider .bannerSlider_arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    padding: 3px;
    background: rgba(0, 0, 0, 0.2);
    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%;
    border-radius: 50%;
    font-size: 80%;
    transition: background 0.2s;
}

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

#bannerSlider .bannerSlider_arrow_prev {
    left: 40px;
}

#bannerSlider .bannerSlider_arrow_next {
    right: 40px;
}

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

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

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

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

    .top_banner::before {
        display: none;
    }

    .top_banner::after {
        left: -30px;
        bottom: 270px;
        width: 200px;
        height: 264px;
    }

    .top_banner .inner {
        padding: 0;
    }

    /* ----- グリッドバナー ----- */
    .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 {
        top: 100%;
        width: 40px;
        height: 40px;
    }

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

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

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

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

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

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

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

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

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

.clinic .news .top_title {
    padding-top: 90px;
    margin: 0 0 30px;
}

.clinic .news .top_title::before {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    width: 71px;
    height: 82px;
    background: url(../images/coral.png) no-repeat center / cover;
    transform: translateX(-50%);
}

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

/* ----- 医院概要 ----- */
.clinic .info .inner {
    display: flex;
    gap: 60px;
    padding: 30px 40px 80px;
}

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

.clinic .info .logo {
    margin-bottom: 30px;
    width: 95%;
}

.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";
    background: var(--sub-color);
}

.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;
    letter-spacing: 3px;
    font-family: var(--font-en);
}

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

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

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

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

.clinic .info .speciality {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 30px auto;
    font-family: var(--font-jp);
}

.clinic .info .speciality span {
    padding: 2px 20px;
    border-radius: 30px;
    width: 25%;
    text-align: center;
    color: var(--main-color);
    background: var(--bg-blue);
}

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

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

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

.clinic .info .googlemap iframe {
    width: 100%;
    height: 350px;
    border: 1px solid var(--line-color) !important;
}

.clinic .info .list_access {
    display: flex;
    gap: 30px;
}

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

    .clinic .info .inner {
        flex-flow: column;
        padding: 0 20px 70px;
    }

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

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

    .clinic .info .speciality span {
        width: 48%;
    }
}

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

  *ご挨拶

================================================================================================================================== */
.greeting {
    position: relative;
    background: url(../images/greeting_wave.png) top center / 1920px no-repeat,
        url(../images/sky_bg_wave.png) top 14% center / 1920px no-repeat,
        url(../images/sky_bg_wave_02.png) top 55% left / 1920px no-repeat,
        url(../images/sky_bg.jpg) top center / 1920px no-repeat,
        url(../images/bubble.png) bottom 90px left / 500px no-repeat,
        url(../images/sky_bg_bottom.jpg) bottom / 1920px no-repeat;
    /* url(images/bg_greet_sea.jpg) no-repeat center bottom; */
}

.greeting::before {
    position: absolute;
    content: "";
    top: 150px;
    left: 0;
    width: 504px;
    height: 287px;
    background: url(../images/fish.png) no-repeat center / cover;
}

.greeting::after{
position: absolute;
    content: "";
	top: 80px;
	right: 10%;
	width: 80px;
	height: 86px;
    background: url(../images/top_clownfish_downward.png) no-repeat top right / 100% auto;
}

.greeting .inner {
    max-width: 1920px;
    padding: 130px 0 360px;
}

.greeting .top_title {
    padding-top: 88px;
    margin: 0 0 90px;
    line-height: 1;
    text-shadow: #fff 2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
}

.greeting .top_title::before {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    width: 119px;
    height: 82px;
    background: url(../images/turtle.png) no-repeat center / cover;
    transform: translateX(-50%);
}

.greeting .top_title .eng {
    font-size: 350%;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

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

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

.greeting_flex {
    display: flex;
    align-items: center;
    gap: 10px;
    /* flex-flow: column-reverse; */
}

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

.greeting_left {
    order: 2;
    width: calc(55%);
    height: fit-content;
    margin: 0;
    padding: 0 max(3.5vw, 50px);
}

.greeting_left h3 {
    font-size: 190%;
    line-height: 1.55;
    color: var(--main-color);
}

.greeting_text>* {
    font-family: var(--font-jp);
}

.greeting_text>*:not(:last-child) {
    margin-bottom: 1.7em;
    line-height: 1.75;
}

.greeting_img {
    position: relative;
    margin-left: -100px;
}

.greeting_img::before,
.greeting_img::after {
    position: absolute;
    content: "";
}

.greeting_img::before {
    top: -10px;
    left: -30px;
    width: 837px;
    height: 643px;
    background: url(../images/doctor_img_bg.png) no-repeat;
    z-index: -1;
}

.greeting_img::after {
    bottom: -130px;
    left: 70px;
    width: 347px;
    height: 349px;
    background: url(../images/sea_star.png) no-repeat;
}

.greeting_img img {
    -webkit-mask-image: url(../images/doctor_img_mask.png);
    mask-image: url(../images/doctor_img_mask.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: cover;
    mask-size: cover;
    position: relative;
}

.greeting_profile {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 20px;
    background: url(../images/bg_blue.jpg) no-repeat center / cover;
    color: #ffffff;
    line-height: 1.75;
    text-align: center;
    font-family: var(--font-jp);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    outline: 1px dashed #ffffff;
    outline-offset: -10px;
}

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

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

.greeting_profile .name small {
    display: block;
    font-size: 60%;
}

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

.greeting .btn01>* {
    padding: 10px 55px 10px 25px;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    font-family: var(--font-en);
}

.greeting .btn01>*:hover {
    background: rgba(255, 255, 255);
    color: var(--main-color);
}

.greeting .btn01>*:hover::before {
    background: var(--main-color);
}

/* 副院長 */
.greeting_box:nth-child(2) .greeting_flex {
    flex-flow: row-reverse;
}

.greeting_box:nth-child(2) .greeting_flex .greeting_left h3 {
    color: #e888bd;
}

.greeting_box:nth-child(2) .greeting_img {
    margin-left: 0;
    margin-right: -100px;
}

.greeting_box:nth-child(2) .greeting_img::before {
    top: -30px;
    left: auto;
    right: -10px;
    width: 837px;
    height: 628px;
    background: url(../images/doctor_img_bg02.png) no-repeat;
}

.greeting_box:nth-child(2) .greeting_img::after {
    top: 10px;
    bottom: auto;
    left: 10px;
    width: 207px;
    height: 289px;
    background: url(../images/sea_star_02.png) no-repeat;
    background-size: contain;
}

.greeting_box:nth-child(2) .greeting_img img {
    transform: scale(-1, 1);
}

.greeting_box:nth-child(2) .greeting_profile {
    right: auto;
    left: 0;
    padding: 20px;
    background: url(../images/bg_pink.jpg) no-repeat center / cover;
    color: #ffffff;
}

.greeting_box:nth-child(2) .btn01>*:hover {
    color: var(--sub-color);
}

.greeting_box:nth-child(2) .btn01>*:hover::before {
    background: var(--sub-color);
}

/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {
    .greeting {
        position: relative;
        background: url(../images/greeting_wave.png) top center / 100% no-repeat,
            url(../images/sky_bg_wave.png) top 14% center / 100% no-repeat,
            url(../images/sky_bg.jpg) top center / 100% no-repeat,
            url(../images/bubble.png) bottom 0 left / 200px no-repeat,
            url(../images/sky_bg_bottom.jpg) bottom / 100% no-repeat;
    }

    .greeting::before {
        top: -30px;
        left: 0;
        width: 364px;
        height: 127px;
    }

	.greeting::after{
	top: 290px;
	right: 5%;
	width: 50px;
	height: 54px;		
	}
    .greeting .inner {
        padding: 130px 20px 200px;
    }

    .greeting .top_title {
        margin: 0 0 20px;
    }

    .greeting_flex,
    .greeting_box:nth-child(2) .greeting_flex {
        flex-flow: column;
        gap: 25px;
    }

    .greeting_left {
        width: 100%;
        padding: 0;
    }

    .greeting_left h3 {
        font-size: 140%;
    }

    .greeting_img::before {
        display: none;
    }

    .greeting_img::after {
        bottom: 0;
        left: 70px;
        width: 160px;
        height: 160px;
        background-size: contain;
    }

    .greeting_box:nth-child(2) .greeting_img::after {
        top: -30px;
        left: 0;
        width: 120px;
        height: 169px;
    }

    .greeting_profile {
        width: 180px;
        height: 180px;
        outline-offset: -5px;
    }

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

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

    .greeting_btn {
        margin-top: 0;
    }

    .greeting .btn01>* {
        padding: 10px 45px 10px 10px !important;
        background: none;
        font-size: 90%;
    }
}

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

  *専門的な治療 - 追加コンテンツ

==================================================================================================================================*/
.pickup {
    position: relative;
    background: url(../images/sky_bg_bottom.jpg) bottom / 1920px no-repeat;
	z-index: 1;
}
.pickup::before{
position: absolute;
    content: "";
	top: -7px;
    left: 2%;
    width: 120px;
    height: 61px;
    background: url(../images/top_clownfish.png) no-repeat center;
    background-size: contain;
    z-index: -1;
    transform: scale(-1, 1);
}

.pickup::after {
    position: absolute;
    content: "";
    top: -28px;
    right: 0;
    width: 610px;
    height: 370px;
    background: url(../images/special_bg_r.png) no-repeat center;
    background-size: contain;
    z-index: -1;
}

.pickup .inner {
    padding: 170px 50px 160px;
    max-width: 1600px;
}

.pickup .top_title {
    line-height: 1;
    padding-left: 50px;
}

.pickup .top_title .eng {
    margin-bottom: 20px;
    color: var(--sub-color);
    font-size: 170%;
    letter-spacing: 2px
}

.pickup .top_title h2 {
    font-size: 300%;
}

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

.pickup_item {
    width: calc(50% - 25px);
}

.pickup_item:nth-child(even) {
    margin-top: 50px;
}

.pickup_inner {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    height: auto;
}

.pickup_title {
    position: absolute;
    bottom: 0;
    z-index: 2;
    width: 100%;
    padding: 0 40px 50px;
    color: #ffffff;
    text-align: center;
}

.pickup_title h2,
.pickup_title h3 {
    background: none;
    font-size: 230%;
    line-height: 1.55;
}

.pickup_title span {
    font-size: 100%;
    font-family: var(--font-en);
}

.pickup_img {
    position: relative;
    z-index: 0;
    border-radius: 10px;
    overflow: hidden;
    width: calc(100% - 70px);
    margin: 0 auto;
}

.pickup_img::after {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background: linear-gradient(transparent, transparent, rgba(160, 88, 128, 0.7));
    border-radius: 20px;
    z-index: 1;
}

.pickup_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.pickup_text_inner {
    position: relative;
    padding: 40px 6% 60px;
}

.pickup_text_inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% + 50px);
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    background: #ffffff;
    border-radius: 30px;
    outline: 1px dashed #dfd39f;
    outline-offset: -5px;
    z-index: -1;
}

.pickup_text {
    padding: 0 0 40px;
    font-family: var(--font-jp);
    min-height: 170px;
}

.pickup_link {
    display: flex;
    flex-flow: wrap;
    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 35px 15px 30px;
    background: var(--sub-color);
    border: 1px solid var(--sub-color);
    color: #ffffff;
    font-size: 90%;
    letter-spacing: 0.15em;
    line-height: 1.55;
    transition: background 0.2s, color 0.2s;
    font-family: var(--font-jp);
    border-radius: 10px;
}

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

.pickup_link .pickup_btn a::before,
.pickup_link .pickup_btn a::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: right 0.2s, background 0.2s;
}

.pickup_link .pickup_btn a::before {
    content: "\f178";
    right: 15px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ffffff;
    font-size: 16px;
    z-index: 1;
}

.pickup_link .pickup_btn a::after {
    content: "";
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
}

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

.pickup_link .pickup_btn a:hover::after {
    background: rgba(198, 125, 166, 0.2);
}

/* 奇数 */
.pickup_item:nth-child(odd) .pickup_img::after {
    background: linear-gradient(transparent, transparent, rgba(82, 143, 187, 0.5));
    border-radius: 20px;
    z-index: 1;
}

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

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

.pickup_item:nth-child(odd) .pickup_link .pickup_btn a:hover::after {
    background: rgba(82, 143, 187, 0.2);
}

/*==============================================
  *SP　ピックアップ（追加コンテンツ）
==============================================*/
@media screen and (max-width:640px) {
    .pickup::before {
	top: -3px;
	left: 2%;
	width: 70px;
	height: 35px;
    }

    .pickup::after {
        top: -12px;
        right: -30px;
        width: 240px;
        height: 150px;
    }

    .pickup .inner {
        padding: /*40*/55px 10px 90px;
    }

    .pickup .top_title {
        margin: 0 auto 30px;
        padding-left: 0;
    }

    .pickup .top_title .eng {
        margin-bottom: 10px;
    }

    .pickup .top_title h2 {
        font-size: 150%;
    }

    .pickup_list {
        width: calc(100%);
        gap: 30px;
    }

    .pickup_item {
        width: 100%;
        padding: 0 !important;
    }

    .pickup_img {
        width: calc(100% - 30px);
    }

    .pickup_title {
        padding: 15px 20px;
    }

    .pickup_title h2,
    .pickup_title h3 {
        font-size: 160%;
    }

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

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

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

    .pickup_text_inner {
        padding: 25px 8% 30px;
    }

    .pickup_text .check {
        gap: 5px;
    }

    .pickup_text .check li {
        padding: 8px 12px;
        font-size: 13px;
    }

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

    .pickup_link .pickup_btn {
        width: 100%;
    }

    .pickup_link .pickup_btn a {
        padding: 10px 35px 10px 20px;
    }
}

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

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

==================================================================================================================================*/
.feature {
    position: relative;
    background: url(../images/seagull.png) no-repeat bottom 80px left 90px / 120px,
        url(../images/feature_bg_coral.png) top 30% left -50px / 200px no-repeat,
        url(../images/feature_bg_seastar.png) center right -30px / 200px no-repeat,
        url(../images/feature_bg.jpg) top center / cover no-repeat;
}

.feature::before {
    position: absolute;
    content: "";
    top: /*-90*/-135px;
    left: 0;
    width: 100%;
    height: 443px;
    background: url(../images/feature_sea.png) no-repeat;
    z-index: 1;
	background-size:cover;
}

.feature .inner {
    position: relative;
    padding: 160px 50px 200px;
    z-index: 1;
}

.feature .top_title {
    padding-top: 150px;
    line-height: 1;
    text-shadow: #fff 2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
}

.feature .top_title .eng {
    margin-bottom: 20px;
    font-size: 260%;
    letter-spacing: 3px;
    color: var(--sub-color);
}

.feature .top_title h2 {
    font-size: 170%;
}

.feature .top_title::before {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    width: 119px;
    height: 148px;
    background: url(../images/feature_tit_bg.png) no-repeat center / cover;
    transform: translateX(-50%);
}

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

.feature_item {
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    counter-increment: number 1;
    outline: 1px dashed #dfd39f;
    outline-offset: -5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature_img {
    position: relative;
    width: 600px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.feature_img::before,
.feature_img::after {
    position: absolute;
    content: "";
    display: block;
}

.feature_img::before {
    left: 30px;
    bottom: 30px;
    content: '0' counter(number);
    font-family: var(--font-en);
    font-size: 90px;
    line-height: 90px;
    color: #ffffff;
    text-shadow: 0 5px 10px rgb(141 153 169 / 40%);
    z-index: 2;
}

.feature_img::after {
    width: 100%;
    height: 100%;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background: linear-gradient(transparent, transparent, rgba(82, 143, 187, 0.5));
    border-radius: 12px;
}

.feature_inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    height: 100%;
    padding: 0 30px 0 60px;
}

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

.feature_title {
    position: relative;
    display: flex;
    flex-flow: column;
    margin-bottom: 30px !important;
    padding-bottom: 20px;
}

.feature_title::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #dfd39f;
    -webkit-mask-image: url(../images/bg_mask.png);
    mask-image: url(../images/bg_mask.png);
}

.feature_title h3 {
    color: var(--main-color);
    font-size: 160%;
    line-height: 1.75;
}

.feature_num {
    margin: 0 0 5px !important;
    font-size: 100%;
    font-family: var(--font-en);
    color: var(--line-color);
    letter-spacing: 3px;
}

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

.feature_item .btn01 {
    margin-top: 0;
    text-align: right;
}

.feature_item .btn01>* {
    font-family: var(--font-en);
    background: var(--main-color);
    border: 1px solid var(--main-color);
}

.feature_item .btn01>*:hover {
    background: #ffffff;
    color: var(--main-color);
}

.feature_item .btn01>*:hover::before {
    background: var(--main-color);
}

.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_inner {
    padding: 0 60px 0 30px;
}

.feature_item:nth-child(even) .feature_title h3 {
    color: #e888bd;
}

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

.feature_item:nth-child(even) .btn01>* {
    background: var(--sub-color);
    border: 1px solid var(--sub-color);
}

.feature_item:nth-child(even) .btn01>*:hover {
    background: #ffffff;
    color: var(--sub-color);
}

.feature_item:nth-child(even) .btn01>*:hover::before {
    background: var(--sub-color);
}

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

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

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

    .feature {
        background: url(../images/seagull.png) no-repeat bottom 80px left 30px / 120px,
            url(../images/feature_bg_coral.png) top 50px left -50px / 100px no-repeat,
            url(../images/feature_bg_seastar.png) top 50px right -50px / 100px no-repeat,
            url(../images/feature_bg.jpg) top center / cover no-repeat;
    }

    .feature::before {
        top: -20px;
        height: 93px;
/*         background-size: contain; */
    }

    .feature .inner {
        padding: 20px 10px 180px;
    }

    .feature .top_title {
        padding-top: 90px;
    }

    .feature .top_title::before {
        width: 70px;
        height: 88px;
    }

    .feature .top_title .eng {
        margin-bottom: 10px;
    }

    .feature .top_title h2,
    .feature .top_title h3 {
        font-size: 26px;
        line-height: 1.45;
    }

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

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

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

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

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

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

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

    .feature_item:nth-child(even) .feature_inner {
        padding: 30px 10px;
    }

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

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

  *病状、症状から探す

================================================================================================================================== */
.search {
    position: relative;
    background: linear-gradient(#ffffff, rgba(255, 255, 255, 0.6), transparent),
        url(../images/mv_frame.png) bottom center / cover no-repeat;
}

.search::before {
    position: absolute;
    content: "";
    top: -50px;
    left: 0;
    width: 100%;
    height: 90px;
    background: url(../images/wave.svg) repeat-x;
}

.search::after {
    position: absolute;
    content: "";
    top: -140px;
    right: 30px;
    width: 660px;
    height: 340px;
    background: url(../images/search_bg_r.png) no-repeat center;
    background-size: contain;
    z-index: 1;
}

.search .inner {
    position: relative;
    padding: 120px 50px 190px;
}

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

.search .top_title h2 {
    line-height: 0.5;
}

.search .top_title .eng {
    color: var(--line-color);
    margin-bottom: 0;
}

.search .top_title .blue {
    color: var(--main-color);
}

.search .top_title .pink {
    color: var(--sub-color);
    font-size: 2em;
    padding: 0 4px;
}

.search .tab_list {
    gap: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.search .tab_list .tab {
    position: relative;
    padding: 25px 20px;
    font-family: var(--font-jp);
    border-radius: 10px;
}

.search .tab_list li.active::before {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    z-index: 2;
    display: block;
    transform: translateX(-50%);
    width: 1.5px;
    height: 50px;
    background: linear-gradient(#ffffff 0px, #ffffff 20px, var(--main-color) 10px, var(--main-color));
}

.search_tab_list li {
    position: relative;
    z-index: 1;
    flex: 1;
    padding: 15px 20px;
    border-radius: 8px;
    background: #f1f1f1;
    font-size: 200%;
    text-align: center;
    cursor: pointer;
}

.search .panel_wrap {
    background: #ffff;
    padding: 30px;
    border-radius: 20px;
}

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

.search_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    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;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 80px;
    padding: 10px 15px 10px 60px;
    background: var(--bg-blue);
    color: var(--main-color);
    font-family: var(--font-jp);
    line-height: 1.55;
    border-radius: 10px;
}

.search_list li a::before {
    content: "\f002";
    position: absolute;
    left: 25px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--main-color);
    font-size: 110%;
}

/* ----- 画像あり ----- */
.panel_flex.active {
    display: flex;
    flex-flow: column-reverse;
    gap: 30px;
    padding: 0;
    background: none;
}

.search_img {
    position: relative;
    width: 100%;
    margin: 0 !important;
    border-radius: 10px;
    overflow: hidden;
}

.search_img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background: rgba(82, 143, 187, 0.3);
    border-radius: 12px;
}

.search_img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

.panel_flex .search_list {
    width: 100%;
    border-radius: 10px;
}

.panel_flex .search_list li {
    width: calc(25% - 15.333333px);
}

/* ==============================================
  *SP 病状、症状から探す
============================================== */
@media screen and (max-width: 640px) {
    .search::before {
        top: -30px;
        height: 40px;
    }

    .search::after {
        top: -50px;
        right: -10px;
        width: 270px;
        height: 120px;
    }

    .search .inner {
        padding: 80px 10px 130px;
    }

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

    .search .top_title h2 {
        font-size: 20px;
    }

    .search .panel_wrap {
        padding: 30px 10px 10px;
    }

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

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

    .search_list {
        gap: 10px;
    }

    .search_list li {
        width: 100%;
    }

    .search_list li a {
        min-height: auto;
    }

    /* ----- 画像あり ----- */
    .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 {
    position: relative;
/*     background: var(--bg-color); */
background: url(../images/top_clownfish.png) no-repeat bottom 20px right 3% / 125px auto, var(--bg-color);
}

#columnSlider::before,
#columnSlider::after {
    position: absolute;
    content: "";
}

#columnSlider::before {
    top: -50px;
    left: 0;
    width: 100%;
    height: 90px;
	background: var(--bg-color);
    mask: url(../images/wave.svg) repeat-x;
    -webkit-mask: url(../images/wave.svg) repeat-x;
}

#columnSlider::after {
    top: -220px;
    left: -140px;
    width: 500px;
    height: 500px;
    background: url(../images/bubble.png) bottom left / 500px no-repeat;
    transform: rotateZ(20deg);
}

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

#columnSlider .top_title {
    flex-shrink: 0;
    padding-top: 100px;
    margin: 130px 0 0;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#columnSlider .top_title::before {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    width: 71px;
    height: 82px;
    background: url(../images/coral.png) no-repeat center / cover;
    transform: translateX(-50%);
}

#columnSlider .top_title h2 {
    font-size: 190%;
    writing-mode: vertical-rl;
}

#columnSlider .top_title h2::after {
    display: none;
}

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

#columnSlider .splide__list {
    align-items: flex-start;
    width: 100%;
    padding-bottom: 50px !important;
}

#columnSlider .splide__list::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--main-color);
    -webkit-mask-image: url(../images/bg_mask.png);
    mask-image: url(../images/bg_mask.png);
}


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

#columnSlider .splide__arrow:hover {
    background: #ffffff;
    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;
    bottom: 15px;
    left: 50%;
    z-index: 1;
    display: flex;
    gap: 15px;
    transform: translateX(-50%);
}

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

#columnSlider .columnSlider-page.is-active {
    background: var(--sub-color);
}

/* ----- コラム個別 ----- */
#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;
    border-radius: 10px;
    outline: 1px dashed #ffffff;
    outline-offset: -10px;
}

#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%, rgba(198, 125, 166, 0.5));
}

#columnSlider .column_item:first-child .column_item_thum::after {
    content: "New";
    position: absolute;
    color: #ffffff;
    font-family: var(--font-en);
    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-en);
    color: #a3a3a3;
}

#columnSlider .column_date i {
    margin-right: 9px;
}

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

#columnSlider .column_info ul li {
    min-width: 80px;
    padding: 2px 10px;
    background: #ffffff;
    color: var(--main-color);
    font-size: 90%;
    font-family: var(--font-jp);
    text-align: center;
    border-radius: 30px;
}

#columnSlider .column_title {
    color: var(--text-color);
    font-size: 105%;
    font-family: var(--font-jp);
    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 {
background: url(../images/top_clownfish.png) no-repeat bottom 23px right 10% / 70px auto, var(--bg-color);
	}
    #columnSlider::before {
        top: -40px;
        height: 40px;
    }

    #columnSlider::after {
        top: -100px;
        left: -120px;
        width: 250px;
        height: 210px;
        background-size: contain;
    }

    #columnSlider .inner {
        flex-flow: column;
        gap: 0;
        width: 100%;
        margin: 0 auto;
        padding: 20px 10px 140px;
    }

    #columnSlider .top_title {
        padding-top: 90px;
        margin: 0 auto 30px;
        gap: 0;
    }

    #columnSlider .top_title h2 {
        font-size: 26px;
        writing-mode: inherit;
    }

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

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

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

    #columnSlider .splide__pagination {
        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 {
    position: relative;
    margin-top: -200px;
}

#infinitySlider .splide__list {
    gap: 20px;
}

#infinitySlider .splide__slide {
    position: relative;
    width: 500px !important;
}

#infinitySlider .splide__slide::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background: rgba(82, 143, 187, 0.15);
    border-radius: 20px;
}

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

/* ==============================================
  *SP 無限スライダー
============================================== */
@media screen and (max-width: 640px) {
    #infinitySlider {
        margin-top: -50px;
    }

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