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

  *基本設定

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.front {
    overflow: hidden;
}
.text>*:not(:last-child) {
    margin-bottom: 1em;
}
/* ----- パララックス ----- */
.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) {
    /* ----- パララックス ----- */
    .parallax {
        height: 300px;
    }
}
/* ==================================================================================================================================

  *アニメーション

================================================================================================================================== */
@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeRightAnime {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeLeftAnime {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes zoomInAnime {
    from {
        pointer-events: none;
        transform: scale(0.5);
    }
    to {
        pointer-events: auto;
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes zoomOutAnime {
    from {
        pointer-events: none;
        transform: scale(1);
    }
    to {
        pointer-events: auto;
        opacity: 1;
        transform: scale(1.5);
    }
}
@keyframes scrolldown {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
.fadeUp,
.zoomOut,
.zoomIn,
.fadeRight,
.fadeLeft {
    opacity: 0;
}
.fadeUp.is-active {
    animation: fadeUpAnime 1s forwards;
}
.fadeRight.is-active {
    animation: fadeRightAnime 1s forwards;
}
.fadeLeft.is-active {
    animation: fadeLeftAnime 1s forwards;
}
.zoomIn.is-active {
    animation: zoomInAnime 0.8s forwards;
}
.zoomOut.is-active {
    animation: zoomOutAnime 1s forwards;
}
/* ==================================================================================================================================

  *タイトル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.top_title {
    margin-bottom: 50px;
    line-height: 1.5;
    text-align: center;
    /* 左寄せ */
}
.top_title.title_left {
    text-align: start;
}
.top_title h2 {
    position: relative;
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.15em;
    color: #666;
}
.top_title .eng {
    display: inline-block;
    margin-bottom: 2px;
    font-family: "laca", sans-serif;
    font-weight: 600;
    font-size: 70px;
    line-height: 1;
    letter-spacing: 0.07em;
    color: var(--main-color);
    opacity: 80%;
}

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

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

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.mainvisual {
    position: relative;
    z-index: 1;
    height: 800px;
    overflow: hidden;
}
.mvSlider {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}
/* ----- スライダーのArrowボタン ----- */
.mvSlider .sliderBtn {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    padding: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transform: translateY(-50%);
}
.mvSlider .sliderBtn#mv_btnPrev {
    left: 20px;
}
.mvSlider .sliderBtn#mv_btnNext {
    right: 20px;
}
.mvSlider .sliderBtn span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    border-radius: 50%;
    transition: background 0.2s;
}
.mvSlider .sliderBtn span:hover {
    background: var(--text-color);
}
.mvSlider .sliderBtn span::before {
    padding: 0 0 1px 0;
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    color: #ffffff;
    font-size: 15px;
    transition: color 0.2s;
}
.mvSlider .sliderBtn#mv_btnPrev span::before {
    content: "\f060";
}
.mvSlider .sliderBtn#mv_btnNext span::before {
    content: "\f061";
}
/* 各スライダーのボタンは非表示に */
.mvSlider .splide__arrows {
    display: none;
}
/* ----- MVの画像 ----- */
.mvImg {
    width: 100%;
    height: 100%;
}
.mvImg .splide__track {
    width: 100%;
    height: 100%;
}
.mvImg .splide__slide {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.mvImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* フェードの専用スタイル */
.fade .mvImg .splide__slide img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: calc(100% + 50px);
    pointer-events: none;
}
/* アニメーションを実行 */
.fade.move .mvImg .splide__slide img {
    animation: hideTranslate 8s ease-out forwards;
}
.fade.move .mvImg .splide__slide.is-active img {
    animation: showTranslate 8s ease-out forwards;
}
/* MVのアニメーション  */
@keyframes showTranslate {
    0% {
        transform: translate3d(0, 0px, 0);
    }
    100% {
        transform: translate3d(0, -30px, 0);
    }
}
@keyframes hideTranslate {
    0% {
        transform: translate3d(0, -30px, 0);
    }
    100% {
        transform: translate3d(0, 0px, 0);
    }
}
/* ----- キャッチコピー ----- */
.mvCatch {
    position: absolute !important;
    top: 37%;
    left: 0;
    z-index: 3;
    width: 100%;
    transform: translateY(-50%);
}
.mvCatch .inner {
    position: relative;
    z-index: 1;
}
.mvCatch p {
    font-size: 27px;
    line-height: 2.37;
    letter-spacing: 0.2em;
    text-align: center;
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 600;
    color: #fff;
    filter: drop-shadow(0 0 5px rgba(1, 66, 136, 0.6)) drop-shadow(0 0 10px rgba(1, 66, 136, 0.3)) drop-shadow(0 0 15px rgba(1, 66, 136, 0.3));
}
/* ----- コンテンツ ----- */
.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;
    border-radius: 50%;
    padding: 4px;
    background: rgba(255, 255, 255, 0.4);
}
.open_bnr>* {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 280px;
    padding: 15px;
    border-radius: 50%;
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 600;
    font-size: 110%;
    line-height: 1.5;
    text-align: center;
    color: #00a0e9;
    background: rgba(255, 255, 255, 0.7);
}
.open_bnr>*::before {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background: url(../images/common/logo_mark.svg) no-repeat center/330px auto;
    opacity: 0.1;
    content: "";
}
.open_bnr .date {
    position: relative;
    font-size: 110%;
}
.open_bnr .open_text {
    position: relative;
    margin: 0 0 10px;
    font-size: 180%;
}
.open_bnr .nairankai_tit {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 10px;
    padding: 5px 10px;
    background: #00a0e9;
    border-radius: 300px;
    color: #fff;
    font-size: 90%;
    text-align: center;
}

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

/* アイコン */
.mv_icon {
    position: absolute;
    right: 0;
    bottom: 50px;
    display: flex;
    gap: 20px;
}
.mv_icon li a {
    display: block;
    width: 200px;
    height: 200px;
    padding: 25px 0 0;
    border-radius: 100%;
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 600;
    font-size: 19px;
    letter-spacing: 0.075em;
    line-height: 1.8;
    text-align: center;
    color: #fff;
    background-image: linear-gradient(0deg, rgba(21,87,159,0.8) 0%, rgba(0,160,233,0.8) 61%);
    opacity: 1;
    transition: 0.2s ease-in-out;
}
.mv_icon li a:hover {
    opacity: 0.6;
}
.mv_icon li:nth-of-type(2) a {
    font-size: 17px;
    line-height: 1.556;
    letter-spacing: 0.07em;
}
.mv_icon li a::before {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--main-color);
    font-size: 20px;
}
.mv_icon li:nth-of-type(1) a::before {
    content: "\f073";
}
.mv_icon li:nth-of-type(2) a::before {
    content: "\f0f0";
}


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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .mainvisual {
        height: 400px;
    }
    /* ----- スライダーのArrowボタン ----- */
    .mvSlider .sliderBtn {
        top: 50%;
        width: 40px;
        height: 40px;
        padding: 2px;
        font-size: 12px;
    }
    .mvSlider .sliderBtn#mv_btnPrev {
        left: 10px;
    }
    .mvSlider .sliderBtn#mv_btnNext {
        right: 10px;
    }
    .mvSlider .sliderBtn span::before {
        font-size: 11px;
    }

    /* ----- キャッチコピー ----- */
    .mvCatch {
        top: 30%;
        display: none;
    }
    .mvCatch.is-active {
        display: block;
    }
    .mvCatch p {
        padding: 30px 0;
        font-size: min(4.2vw, 16px);
        line-height: 1.8;
    }
    
    /* ----- コンテンツ ----- */
    .mvContents .open_bnr {
        display: none;
    }

    /* ----- 開院バナー ----- */
    .open_bnr {
        position: static;
        width: 100%;
        max-width: 350px;
        border-radius: 0;
    }
    .open_bnr>* {
        width: 100%;
        height: auto;
        padding: 15px 20px;
        border-radius: 0;
        background: var(--bg-color);
    }
    .open_bnr>*::before {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: url(../images/common/logo_mark.svg) no-repeat center / 330px auto;
        opacity: 0.1;
        content: "";
    }

    /* アイコン */
    .mv_icon {
        bottom: 20px;
        width: 100%;
        justify-content: center;
        gap: 4vw;
    }
    .mv_icon li a {
        width: 44vw;
        height: 44vw;
        max-width: 150px;
        max-height: 150px;
        padding: 10px 0 0;
        font-size: min(4.4vw, 16px);
        line-height: 1.6;
    }
    .mv_icon li:nth-of-type(2) a {
        font-size: min(4vw, 15px);
        letter-spacing: 0;
    }
    .mv_icon li a::before {
        margin: 0 auto 6px;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    /* ----- スマホ専用エリア ----- */
    .sp_only {
        display: block;
        background: none !important;
    }
    .sp_only .inner {
        padding: 0 20px 40px;
    }
    .sp_only_contents {
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
}

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

  *バナーエリア

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.top_banner {
    background-color: #f0f9fc;
}
.top_banner .inner {
    padding: 100px 0 90px;
}

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

/* 画像のみのバナー */
.top_banner .onlyimg .banner_slide {
    height: fit-content;
    padding: 0;
}
.top_banner .onlyimg .banner_slide img {
    width: 100%;
    height: auto;
    transition: opacity 0.2s;
}
.top_banner .onlyimg a.banner_slide:hover img {
    opacity: 0.5;
}

/* インプットバナー */
.top_banner .input .banner_slide {
    gap: 10px;
    width: 100%;
    height: 100%;
    padding: 15px;
    background: var(--bg-color);
}
.top_banner .input .banner_slide .slide_img {
    flex-shrink: 0;
    width: calc(30% - 10px);
    height: 100%;
}
.top_banner .input .banner_slide .slide_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top_banner .input .banner_slide .slide_inner {
    width: 100%;
    height: 100%;
    padding: 0 0 10px;
}
.top_banner .input .banner_slide .slide_title {
    margin: 0 auto 10px;
    padding: 5px;
    border-bottom: 1px solid var(--line-color);
    color: var(--main-color);
    font-size: 110%;
    line-height: 1.5;
}
.top_banner .input .banner_slide .slide_content {
    font-size: 90%;
}
.top_banner .input a.banner_slide:hover {
    opacity: 0.6;
}

/* ----- グリッドバナー ----- */
.banner_grid ul {
    display: flex;
    flex-flow: wrap;
    gap: 20px;
}
.banner_grid li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(33.3333333333% - 13.3333333333px);
}

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

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

/* スライダーのArrowボタン */
#bannerSlider .bannerSlider_arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    padding: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transform: translateY(-50%);
}
#bannerSlider .bannerSlider_arrow i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 0 1px 0;
    background: var(--main-color);
    border-radius: 50%;
    font-size: 80%;
    transition: background 0.2s;
}
#bannerSlider .bannerSlider_arrow:hover i {
    background: var(--sub-color);
}
#bannerSlider .bannerSlider_arrow_prev {
    left: 0;
}
#bannerSlider .bannerSlider_arrow_next {
    right: 0;
}

/* ページネーション */
#bannerSlider .bannerSlider_pagination {
    z-index: 1;
    display: flex;
    gap: 15px;
    margin: 20px auto 0;
}
#bannerSlider .bannerSlider_page {
    width: 10px;
    height: 10px;
    background-color: #dddddd;
    border-radius: 50%;
    transition: background 0.2s;
}
#bannerSlider .bannerSlider_page.is-active {
    background: var(--main-color);
}

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

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

    /* ----- スライダーバナー ----- */
    #bannerSlider .splide__slide {
        min-height: initial;
    }
    #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;
    }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.clinic {
    position: relative;
    z-index: 1;
    background: #f0f9fc;
}

/* ----- お知らせ ----- */
.clinic .news {
    position: relative;
    z-index: 1;
    margin-bottom: 70px;
}
.clinic .news .inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    padding: 0 0 72px;
    background-image: linear-gradient(to right, #addbef 0, #addbef 5px, transparent 5px, transparent 10px);
    background-size: 10px 2px;
    background-repeat: repeat-x;
    background-position: bottom;
}
.clinic .news .news_left {
    flex-shrink: 0;
}
.clinic .news .top_title {
    text-align: left;
}
.clinic .news .btn01 {
    margin-top: 50px;
    text-align: center;
}

/* ----- 医院概要 ----- */
.clinic .info .inner {
    display: flex;
    gap: 40px;
    padding: 0 0 310px;
}
.clinic .info .inner>* {
    width: calc(50% - 20px);
}
.clinic .info .office_hour .title {
    background: #ffffff;
}
.clinic .info .office_hour .table_wrapper {
    background: #ffffff;
}
.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;
    opacity: 0.4;
}
.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-family: "laca", sans-serif;
    font-weight: 600;
    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;
}
.clinic .info address .fax::before {
    content: "\f249";
}
.clinic .info .note {
    margin-top: 14px;
    padding-left: 12px;
    font-size: 90%;
}
.clinic .info .speciality {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px auto 0;
    padding: 15px 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 .googlemap iframe {
    height: 350px;
}
.clinic .info .list_access {
    margin-top: 5px;
}
.clinic .info .list_access li {
    border-bottom: 1px solid #addbef;
}
.clinic .info .calendar_text {
    margin-top: 20px;
}
.clinic .info .btn01 {
    margin-top: 30px;
    text-align: center;
}

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

    /* ----- お知らせ ----- */
    .clinic .news .top_title {
        margin-bottom: 20px;
        text-align: center;
    }
    .clinic .news .inner {
        width: 90%;
        flex-flow: column;
        gap: 0;
        padding: 50px 0 40px;
        margin: 0 5%;
    }
    .clinic .news .btn01 {
        margin-top: 26px;
    }

    /* ----- 医院概要 ----- */
    .clinic .info .inner {
        flex-flow: column;
        padding: 0 5% 100px;
        gap: 30px;
    }
    .clinic .info .inner>* {
        width: 100%;
    }
    .clinic .info .speciality {
        flex-flow: column;
        gap: 10px;
        padding: 10px;
    }
    .clinic .info .speciality .title {
        width: 100%;
        padding: 5px 30px;
    }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
    position: relative;
    z-index: 1;
    padding: 1px 0 155px;
    background: url(../images/front/top_feature_bg_top.jpg) no-repeat center top, url(../images/front/top_feature_bg_btm.jpg) no-repeat center bottom;
}
@media screen and (min-width: 1920px) {
    .feature {
        background-position: right top, left bottom;
    }
}
.feature_top_ph {
    width: calc(100% - 200px);
    min-width: 1280px;
    height: 400px;
    margin: -201px auto 90px;
}
.feature_top_ph img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feature .top_title {
    margin-bottom: 80px;
}
.feature_list {
    display: flex;
    flex-flow: wrap;
    gap: 60px 30px;
}
.feature_item {
    position: relative;
    display: flex;
    flex-flow: column;
    box-sizing: border-box;
    width: 380px;
    height: auto;
    padding: 15px 19px 30px;
    border: 1px solid #c2e4f9;
    background-color: #fff;
}
.feature_num {
    position: absolute;
    right: 0;
    top: -27px;
    margin: 0 0 0 !important;
    font-family: "laca", sans-serif;
    font-weight: 600;
    font-size: 150%;
    line-height: 1;
    letter-spacing: 0;
    color: var(--sub-color);
}
.feature_num span {
    font-size: 140%;
}
.feature_inner {
    display: flex;
    flex-flow: column;
    height: 100%;
    padding: 25px 0px 0;
    background: #ffffff;
}
.feature_title {
    display: flex;
    flex-flow: column;
    justify-content: center;
    min-height: 64px;
    margin-bottom: 15px;
}
.feature_title h3 {
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.1em;
    text-align: center;
    color: var(--main-color);
}
.feature_button {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 25px;
}
.feature_button .btn01 {
    text-align: center;
}
.feature_button .btn01>* {
    background: var(--main-color);
    border: 1px solid var(--main-color);
}
.feature_button .btn01>*:hover {
    color: var(--main-color);
    background: #fff;
}
.feature_button .btn01>*::after {
    color: var(--main-color);
}
.feature_button .btn01>*:hover::after {
    color: #fff;
    background-color: var(--main-color);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .feature {
        padding: 1px 0 100px;
    }
    .feature_top_ph {
        width: 100%;
        min-width: initial;
        height: 40vw;
        margin: -60px auto 50px;
    }
    .feature .top_title {
        margin-bottom: 50px;
    }
    .feature_list {
        gap: 40px;
    }
    .feature_item {
        width: 100%;
        padding: 15px 9px 20px;
    }
    .feature_title {
        min-height: auto;
        margin-bottom: 15px !important;
    }
    .feature_title h3 {
        font-size: 18px;
    }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.search {
    position: relative;
    padding: 90px 0 120px;
    background-color: #f0f9fc;
}
.search::before {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: -73px;
    width: 800px;
    height: 533px;
    background: url(../images/common/logo_mark.svg) no-repeat center/contain;
    opacity: 0.13;
    transform: translateX(-50%);
    content: "";
}
.search .top_title {
    position: relative;
    z-index: 1;
}
.search .tab_wrapper {
    position: relative;
    z-index: 1;
}
.search .tab_list {
    display: flex;
    flex-flow: wrap;
    gap: 10px;
}
.search .tab_list li {
    display: flex;
    flex: 1;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 12px 20px;
    background: #cccccc;
    color: #fff;
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 600;
    font-size: 140%;
    cursor: pointer;
    transition: transform 0.2s, padding 0.2s;
}
.search .tab_list li.is-active {
    background: #fff;
    color: var(--main-color);
    border-top: 4px solid #7fcff4;
}

/* ----- パネル ----- */
.search .panel {
    display: none;
    margin: 0 !important;
    padding: 30px 20px;
    background: #fff;
}
.search .panel>*:not(:last-child) {
    margin-bottom: 2em;
}

/* ----- 項目 ----- */
.search_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    height: fit-content;
}
.search_list a {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 60px;
    padding: 10px 30px;
    background: #ebf8fd;
    color: var(--text-color);
    font-size: 110%;
}
.search_list a:hover {
    color: #fff;
    background: rgba(0, 160, 233, 0.7);
}
.search_list a::before {
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    font-size: 90%;
    color: #15579f;
    opacity: 0.3;
    content: "\f002";
}
.search_list a:hover:before {
    color: #fff;
}

/* ----- 画像あり ----- */
.panel_flex.is-active {
    display: flex;
    flex-flow: wrap;
    gap: 20px;
}
.panel_flex .search_img {
    width: calc(50% - 10px);
    margin: 0 !important;
}
.panel_flex .search_list {
    grid-template-columns: repeat(2, 1fr);
    width: calc(50% - 10px);
}

/* ----------------------------------------------------------------------
    ▼ SP
  ---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .search {
        padding: 50px 0 60px;
    }
    .search::before {
        top: -50px;
        width: 500px;
        height: 333px;
    }
    .search .tab_list {
        flex-flow: column;
        gap: 7px;
        margin: 0 0 15px;
    }
    .search .tab_list .tab {
        width: 100%;
        min-height: auto;
        padding: 10px !important;
        font-size: 110%;
        transform: translate(0, 0) !important;
    }

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

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

    /* ----- 画像あり ----- */
    .panel_flex.is-active {
        gap: 20px;
    }
    .panel_flex .search_img {
        width: 100%;
    }
    .panel_flex .search_list {
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
    }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
    position: relative;
    padding: 40px 0 160px;
    background: url(../images/front/top_medical_bg.jpg) no-repeat center top/cover;
}
.medical::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 500px;
    background-image: linear-gradient(0deg, rgba(237,249,253,0) 0%, rgb(240,249,252) 100%);    
    content: "";
}
.medical_list {
    display: flex;
    flex-wrap: wrap;
    gap: 45px 28px;
}
.medical_item {
    position: relative;
    z-index: 1;
    width: calc(25% - 21px);
    height: auto;
    box-shadow: 0px 0px 41px 0px rgba(1, 66, 136, 0.08);
}
.medical_item::before {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 18px;
    height: 18px;
    background-color: var(--main-color);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    content: "";
}
.medical_item:hover {
    transform: translateY(-10px);
}
.medical_img {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    transition: background 0.2s;
}
.medical_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.medical_inner {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 270px;
    padding: 30px 20px 40px;
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
}
.medical_inner>*:not(:last-child) {
    margin-bottom: 15px;
}
.medical_icon {
    width: 70%;
    max-width: 110px;
    margin: 0 auto 15px !important;
}
.medical_title h3 {
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 600;
    font-size: 120%;
    line-height: 1.474;
    letter-spacing: 0.15em;
    color: #555555;
}
.medical_title_eng {
    margin-top: 5px;
    font-family: "laca", sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.07em;
    text-align: center;
    color: var(--sub-color);
}
.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);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .medical {
        padding: 40px 0 70px;
    }
    .medical_list {
        gap: 15px 10px;
    }
    .medical_item {
        width: calc(50% - 5px);
    }
    .medical_item:hover {
        transform: translateY(-5px);
    }
    .medical_inner {
        min-height: auto;
        padding: 20px 10px;
    }
    .medical_icon {
        width: 50%;
    }
    .medical_title h3 {
        font-size: 110%;
        letter-spacing: 0.1em;
    }
    .medical_title_eng {
        font-size: 11px;
    }
}

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

  *ご挨拶（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting {
    position: relative;
    z-index: 1;
    padding: 90px 0 290px;
    background: url(../images/front/top_greetingl_bg.jpg) no-repeat center bottom/auto auto;
}
.greeting::before {
    position: absolute;
    z-index: 1;
    right: calc(50% - 1036px);
    top: 142px;
    width: 996px;
    height: 664px;
    background: url(../images/common/logo_mark.svg) no-repeat center / contain;
    opacity: 0.13;
    content: "";
}
@media screen and (min-width: 1920px) {
    .greeting {
        background-size: 100% 894px;
    }
}
.greeting_box {
    position: relative;
    z-index: 1;
}
.greeting_flex {
    display: flex;
    gap: 50px;
}
.greeting_box:not(:last-child) {
    margin-bottom: 70px;
}
.greeting_left {
    flex-shrink: 0;
    width: 60%;
}
.greeting_text>*:not(:last-child) {
    margin-bottom: 1em;
    line-height: 2.4;
}
.greeting_text .greeting_profile {
    margin-top: 30px;
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 600;
    letter-spacing: 0.15em;
    line-height: 1.8;
}
.greeting_profile .position {
    font-size: 130%;
}
.greeting_profile .name {
    font-size: 150%;
}
.greeting_profile span {
    margin-right: 30px;
    font-size: 80%;
}
.greeting_profile em {
    font-style: normal;
    font-size: 70%;
}
.greeting_btn {
    margin-top: 45px;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .greeting {
        padding: 50px 0 130px;
        background-size: auto 447px;
    }
    .greeting::before {
        right: calc(50% - 249px);
        top: 340px;
        width: 498px;
        height: 332px;
    }
    .greeting_flex {
        flex-flow: column-reverse;
        gap: 25px;
    }
    .greeting_img {
        width: 80%;
        margin: 0 auto;
    }
    .greeting_left {
        width: 100%;
    }
    .greeting_btn {
        margin-top: 40px;
    }
    .greeting_text .greeting_profile {
        margin-top: 20px;
        letter-spacing: 0.1em;
    }
    .greeting_profile .position {
        font-size: 110%;
    }
    .greeting_profile span {
        margin-right: 18px;
    }
    .greeting_btn {
        margin-top: 25px;
        text-align: center;
    }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.column {
    background: var(--bg-color);
}
.column .column_list {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    gap: 50px 25px;
    padding: 30px;
    background: #ffffff;
}
.column .column_box {
    width: calc(25% - 18.75px);
}
.column .column_box dt a {
    display: block;
    padding: 15px 10px;
    background: var(--main-color);
    color: #ffffff;
    font-size: 110%;
    text-align: center;
}
.column .column_box dd {
    padding: 10px 10px;
    border-bottom: 1px dashed var(--line-color);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .column .column_list {
        gap: 40px;
    }
    .column .column_box {
        width: 100%;
    }
}

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

  *無限スライダー

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
#infinitySlider {
    position: relative;
    z-index: 1;
    margin-top: -140px;
    padding: 0 0 100px;
}
#infinitySlider .splide__list {
    gap: 20px;
}
#infinitySlider .splide__slide {
    width: 400px !important;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    #infinitySlider {
        margin-top: -70px;
        padding: 0 0 60px;
    }
    #infinitySlider .splide__slide {
        width: 200px !important;
    }
    #infinitySlider .splide__list {
        gap: 8px;
    }
}