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

  *基本設定

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.front {
    overflow: hidden;
}
section .inner {
    padding: 0 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: 0 0;
    }

    /* ----- パララックス ----- */
    .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;
    padding: 58px 0 0;
    background: url(../images/front/top_tit_deco_g.png) no-repeat center top/35px auto;
}
.top_title.title_left {
    text-align: start;
}
.top_title h2 {
    font-family: "zen-maru-gothic", sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: #423229;
}
.top_title .eng {
    display: inline-block;
    margin-top: 12px;
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.15em;
    font-size: 22px;
    color: #7fb237;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .top_title {
        margin-bottom: 30px;
        padding: 36px 0 0;
        background-size: 22px auto;
    }
    .top_title h2 {
        font-size: 26px;
    }
    .top_title .eng {
        margin-top: 8px;
        font-size: 16px;
    }
}

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

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ 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: 38%;
    left: 0;
    z-index: 3;
    width: 100%;
    transform: translateY(-50%);
}
.mvCatch .inner {
    position: relative;
    z-index: 1;
    padding: 0 10px;
}
.mvCatch p {
    font-family: "zen-maru-gothic", sans-serif;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.2em;
    line-height: 2.2;
    text-align: center;
    color: #423229;
    text-shadow: #fff 3px 0px 0, #fff -3px 0px 0, #fff 0px -3px 0, #fff 0px 3px 0, #fff 3px 3px 0, #fff -3px 3px 0, #fff 3px -3px 0, #fff -3px -3px 0, #fff 2px 3px 0, #fff -2px 3px 0, #fff 2px -3px 0, #fff -2px -3px 0, #fff 3px 2px 0, #fff -3px 2px 0, #fff 3px -2px 0, #fff -3px -2px 0;
}
.mvCatch p span {
    font-size: 40px;
    color: #f297a0;
}

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

/* ----- アクセス ----- */
.mv_bna {
    position: absolute;
    left: 0;
    bottom: 50px;
}

/* ----- ボタン ----- */
.mv_btn {
    position: absolute;
    left: 300px;
    bottom: 40px;
    display: flex;
    gap: 20px;
}
.mv_btn li:nth-of-type(even) {
    position: relative;
    top: -50px;
}
.mv_btn li a {
    position: relative;
    top: 0;
    transition: 0.4s ease;
}
.mv_btn li a:hover {
    top: -20px;
}

/* ----- 開院バナー ----- */
.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);
}

/* ----- スマホ専用エリア ----- */
.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: 28%;
        display: none;
    }
    .mvCatch .inner {
        padding: 0 10px;
    }
    .mvCatch.is-active {
        display: block;
    }
    .mvCatch p {
        font-size: min(4.4vw, 16px);
        letter-spacing: 0.08em;
        text-shadow: #fff 2px 0 0, #fff -2px 0 0, #fff 0 -2px 0, #fff 0 2px 0, #fff 2px 2px 0, #fff -2px 2px 0, #fff 2px -2px 0, #fff -2px -2px 0, #fff 1px 2px 0, #fff -1px 2px 0, #fff 1px -2px 0, #fff -1px -2px 0, #fff 2px 1px 0, #fff -2px 1px 0, #fff 2px -1px 0, #fff -2px -1px 0;
    }
    .mvCatch p span {
        display: block;
        font-size: 26px;
        line-height: 1.2;
    }
    
    /* ----- コンテンツ ----- */
    .mvContents .mv_btn {
        display: none;
    }
    .mv_bna {
        left: calc(50% - 80px);
        bottom: 20px;
        width: 160px;
    }

    /* ----- 開院バナー ----- */
    .open_bnr {
        position: static;
        width: 100%;
        max-width: 350px;
        border-radius: 0;
    }
    .open_bnr>* {
        width: 100%;
        height: auto;
        padding: 15px 20px;
        border-radius: 0;
    }

    /* ----- スマホ専用エリア ----- */
    .sp_only {
        display: block;
        background: none !important;
    }
    .sp_only .inner {
        padding: 0 5%;
    }
    .sp_only_contents {
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
    .sp_only .mv_bna {
        display: none;
    }
    .mv_btn {
        position: relative;
        left: auto;
        bottom: auto;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 4vw;
    }
    .mv_btn li {
        width: 36vw;
    }
    .mv_btn li:nth-of-type(even) {
        top: 0;
    }
}

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

  *バナーエリア

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
/* ----- 共通設定 ----- */
.top_banner {
    position: relative;
    z-index: 2;
}
.top_banner::before,
.top_banner::after {
    position: absolute;
    content: "";
}
.top_banner::before {
    left: calc(50% - 706px);
    bottom: 33px;
    width: 139px;
    height: 165px;
    background: url(../images/front/top_banner_tree02.png) no-repeat center/contain;
}
.top_banner::after {
    right: calc(50% - 645px);
    bottom: -30px;
    width: 182px;
    height: 109px;
    background: url(../images/front/top_banner_tree01.png) no-repeat center/contain;
}
.top_banner .inner {
    padding: 80px 0 100px;
}
.top_banner .banner_slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: var(--text-color);
}

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

/* インプットバナー */
.top_banner .input .banner_slide {
    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;
}
#bannerSlider .banner_slide img {
    border-radius: 10px;
}

/* スライダーの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: 15px auto 0;
}
#bannerSlider .bannerSlider_page {
    width: 10px;
    height: 10px;
    background-color: #e8e8e8;
    border-radius: 50%;
    transition: background 0.2s;
}
#bannerSlider .bannerSlider_page.is-active {
    background: var(--main-color);
}

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

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

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.clinic {
    position: relative;
    z-index: 1;
    background: url(../images/front/top_deco_wave_w_top.png) repeat-x left top/auto auto, url(../images/front/top_deco_wave_w_btm.png) repeat-x left bottom/auto auto, url(../images/front/top_info_bg_deco01.png) no-repeat left calc(50% - 530px) top -94px/509px auto, url(../images/front/top_info_bg_deco02.png) no-repeat right calc(50% - 620px) bottom 160px/467px auto, #f3f9dd;
}

/* ----- お知らせ ----- */
.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: 120px;
    padding: 140px 0 70px;
}
.clinic .news .news_left {
    flex-shrink: 0;
}
.clinic .news .top_title {
    margin: 0 0 30px;
    padding: 0 0 0;
    background-image: none;
}
.clinic .news .btn01 {
    margin-top: 30px;
    text-align: center;
}
.clinic .news .btn01>* {
    width: 240px;
    background: var(--main-color);
    border: 1px solid var(--main-color);
}
.clinic .news .btn01>*:hover {
    color: var(--main-color);
    background-color: #fff;
}
.clinic .news .btn01>*::after {
    color: var(--main-color);
}
.clinic .news .btn01>*:hover::after {
    color: #fff;
    background-color: var(--main-color);
}

/* ----- 医院概要 ----- */
.clinic .info .inner {
    display: flex;
    gap: 40px;
    padding: 0 0 180px;
}
.clinic .info .inner>* {
    width: calc(50% - 20px);
}
.clinic .info .office_hour .title {
    background: #ffffff;
}
.clinic .info address>* {
    position: relative;
    z-index: 1;
    min-height: 40px;
	font-size:98%;
}
.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.7;
}
.clinic .info address .location {
    padding: 0 0 0 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 0 50px;
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 500;
    font-size: 32px;
    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: 10px;
    padding-left: 12px;
    font-size: 90%;
    line-height: 1.8;
    letter-spacing: 0.03em;
}
.clinic .info .speciality {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px auto 0;
    padding: 14px 20px;
    background: #ffffff;
    border-radius: 10px;
}
.clinic .info .speciality .title {
    flex-shrink: 0;
    width: fit-content;
    padding: 10px 30px;
    background: var(--main-color);
    color: #ffffff;
    text-align: center;
    border-radius: 8px;
}
.clinic .info .googlemap iframe {
    height: 350px;
    border-radius: 20px;
}
.clinic .info .list_access {
    margin-top: 5px;
}
.clinic .info .calendar_text {
    margin-top: 20px;
}
.clinic .info .btn01 {
    margin-top: 30px;
    text-align: center;
}
/* ----------------------------------------------------------------------
▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .clinic {
        background-position: left top, left bottom, left calc(50% - 120px) top -40px, right calc(50% - 150px) bottom 30px;
        background-size: 99px auto, 99px auto, 300px auto, 280px auto;
    }

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

    /* ----- 医院概要 ----- */
    .clinic .info .inner {
        flex-flow: column;
        gap: 30px;
        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%;
        padding: 7px;
    }
}

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

  *ご挨拶（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting {
    position: relative;
    z-index: 1;
    padding: 80px 0 110px;
    background: url(../images/front/top_greeting_bg.png) no-repeat left calc(50% - 490px) bottom 70px;
}
.greeting::before {
    position: absolute;
    right: calc(50% - 1150px);
    top: -110px;
    width: 807px;
    height: 534px;
    background: url(../images/front/top_greeting_bg_tree.png) no-repeat center/contain;
    content: "";
}
.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.2;
}
.greeting_text > h3 {
    margin-bottom: 25px !important;
    font-family: "zen-maru-gothic", sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.15em;
    line-height: 1.7 !important;
    color: #423229;
}
.greeting_text > h3 span {
    font-size: 30px;
    color: #f297a0;
}
.greeting_img {
    position: relative;
}
.greeting_img::after {
    position: absolute;
    right: 0;
    bottom: -20px;
    width: 80px;
    height: 157px;
    background: url(../images/front/top_greeting_deco_bear.png) no-repeat center/contain;
    content: "";
}
.greeting_profile {
    margin-top: 30px;
    font-family: "zen-maru-gothic", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.75;
    letter-spacing: 0.1em;
    color: #423229;
    text-align: center;
}
.greeting_profile .name {
    font-size: 133.3333%;
}
.greeting_profile .name span {
    margin-right: 20px;
    font-size: 75%;
}
.greeting_profile .name em {
    font-style: normal;
    font-size: 66.6666%;
}
.greeting_btn {
    margin-top: 50px;
    text-align: center;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .greeting {
        padding: 60px 5% 60px;
        background-position: left -200px bottom 24px;
        background-size: auto 300px;
    }
    .greeting_flex {
        flex-flow: column-reverse;
        gap: 25px;
    }
    .greeting_img {
        width: 90%;
        margin: 0 auto;
    }
    .greeting_profile {
        margin-top: 20px;
        font-size: 17px;
        line-height: 1.6;
        letter-spacing: 0.06em;
    }
    .greeting_profile .name em {
        display: block;
    }
    .greeting_left {
        width: 100%;
    }
    .greeting_text > h3 {
        margin-bottom: 10px !important;
        font-size: 17px;
        font-size: min(4.6vw, 17px);
        letter-spacing: 0.08em;
        line-height: 1.8 !important;
    }
    .greeting_text > h3 span {
        display: block;
        font-size: 24px;
    }
    .greeting_btn {
        margin-top: 30px;
    }
}
/* ==================================================================================================================================

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
    position: relative;
    z-index: 1;
    padding: 95px 0 150px;
}
.medical::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/front/top_medical_bg.png) no-repeat center bottom/auto auto, #f3f9dd;
    mask-image: url(../images/front/top_medical_bg_mask.png);
    mask-repeat: repeat-x;
    mask-position: center bottom -1px;
    mask-size: auto auto;
    -webkit-mask-image: url(../images/front/top_medical_bg_mask.png);
    -webkit-mask-repeat: repeat-x;
    -webkit-mask-position: center bottom -1px;
    -webkit-mask-size: auto auto;
    content: "";
}
@media screen and (min-width: 1920px) {
    .medical::before {
        background: url(../images/front/top_medical_bg.png) no-repeat center bottom/100% 691px, #f3f9dd;
    }    
}
.medical::after {
    position: absolute;
    left: 0;
    top: -18px;
    width: 100%;
    height: 19px;
    background: url(../images/front/top_deco_wave_g_top.png) repeat-x left top;
    content: "";
}
.medical_ph01 {
    position: absolute;
    z-index: 1;
    right: calc(50% - 1066px);
    top: -60px;
}
.medical_ph02 {
    position: absolute;
    left: calc(50% - 1160px);
    bottom: -140px;
}
.medical .top_title {
    position: relative;
    margin-bottom: 30px;
}
.medical_list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 26.6px;
}
.medical_item {
    position: relative;
    z-index: 1;
    width: calc(25% - 20px);
    height: auto;
}
.medical_item:hover {
    transform: translateY(-10px);
}
.medical_img {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    transition: background 0.2s;
}
.medical_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.medical_inner {
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 280px;
    padding: 35px 10px 40px;
    background: #fff;
    border-radius: 100%;
    text-align: center;
}
.medical_inner::after {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 60px;
    height: 60px;
    background: url(../images/front/top_medical_arrow.png) no-repeat center/contain;
    content: "";
}
.medical_inner>*:not(:last-child) {
    margin-bottom: 15px;
}
.medical_icon {
    width: 70%;
    max-width: 120px;
    margin: 0 auto 10px !important;
}
.medical_title h3 {
    font-family: "zen-maru-gothic", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #423229;
}
.medical_title_eng {
    margin-top: 4px;
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.1em;
    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: 140px 5% 120px;
    }
    .medical::before {
        background-size: 960px auto;
        mask-size: 99px auto;
        -webkit-mask-size: 99px 100%;
    }
    .medical::after {
        top: -9px;
        height: 10px;
        background-size: 99px 100%;
    }
    .medical_ph01 {
        width: 300px;
        right: -100px;
        top: -30px;
    }
    .medical_ph02 {
        width: 280px;
        left: -90px;
        bottom: -100px;
    }
    .medical .top_title {
        position: relative;
        margin-bottom: 30px;
    }
    .medical_list {
        gap: 15px 10px;
    }
    .medical_item {
        width: 43vw;
        min-height: 43vw;
    }
    .medical_item:hover {
        transform: translateY(-5px);
    }
    .medical_inner {
        min-height: auto;
        padding: 10px 5px 20px;
    }
    .medical_inner::after {
        right: 5px;
        bottom: 5px;
        width: 30px;
        height: 30px;
    }
    .medical_icon {
        width: 40%;
        margin: 0 auto 8px !important;
    }
    .medical_title h3 {
        font-size: 106%;
        letter-spacing: 0;
        line-height: 1.4;
    }
    .medical_title_eng {
        margin-top: 3px;
        font-size: 11px;
    }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
    padding: 110px 0 140px;
    background: url(../images/front/top_deco_wave_w_top.png) repeat-x left top/auto auto, url(../images/front/top_feature_bg_tree01.png) no-repeat right calc(50% - 720px) top 140px/212px auto, url(../images/front/top_feature_bg_tree02.png) no-repeat left calc(50% - 752px) bottom 95px/215px auto, url(../images/front/top_feature_bg.png) repeat-x left bottom/244px auto, #fff7f9;
}
.feature .top_title {
    background-image: url(../images/front/top_tit_deco_p.png);
}
.feature .top_title .eng {
    color: #f5acb3;
}
.feature_list {
    display: flex;
    flex-flow: wrap;
    gap: 40px 30px;
}
.feature_item {
    display: flex;
    flex-flow: column;
    width: 380px;
    height: auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0px 0px 25px 0px rgba(245, 172, 179, 0.08);
}
.feature_item:is(:nth-child(5), :nth-child(6)) :nth-child(2 of .btn01) > *{
    background: #7ecf75;
    border: 1px solid #7ecf75;
}
.feature_item:is(:nth-child(5), :nth-child(6)) :nth-child(2 of .btn01) > *::after{
	    color: #7ecf75;
}
.feature_item:is(:nth-child(5), :nth-child(6)) :nth-child(2 of .btn01) > *:hover{
	background:#fff;
	    color: #7ecf75;
}
.feature_item:is(:nth-child(5), :nth-child(6)) :nth-child(2 of .btn01) > *:hover::after{
		background:#7ecf75;
	    color: #fff;
}
.feature_item .btn01 a{
	position:relative;
}
.feature_item .btn01 a[href="#"]{ 
     pointer-events: none;
} 
.feature_item .btn01 a[href="#"]:before{ 
    content: "準備中"; 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    z-index: 2; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    width: 100%; 
    height: 100%; 
    background: rgb(0, 0, 0, 0.7); 
    color: #ffffff; 
    transform: translate(-50%, -50%); 
    border-radius: 30px;
} 

.feature_img {
    position: relative;
}
.feature_img::after {
    position: absolute;
    width: 100px;
    height: 65px;
    left: calc(50% - 50px);
    bottom: -18px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.feature_item:nth-of-type(1) .feature_img::after {
    background-image: url(../images/front/top_feature_no01.png);
}
.feature_item:nth-of-type(2) .feature_img::after {
    background-image: url(../images/front/top_feature_no02.png);
}
.feature_item:nth-of-type(3) .feature_img::after {
    background-image: url(../images/front/top_feature_no03.png);
}
.feature_item:nth-of-type(4) .feature_img::after {
    background-image: url(../images/front/top_feature_no04.png);
}
.feature_item:nth-of-type(5) .feature_img::after {
    background-image: url(../images/front/top_feature_no05.png);
}
.feature_item:nth-of-type(6) .feature_img::after {
    background-image: url(../images/front/top_feature_no06.png);
}
.feature_inner {
    display: flex;
    flex-flow: column;
    height: 100%;
    padding: 25px 28px 40px;
    background: #ffffff;
}
.feature_title {
    display: flex;
    flex-flow: column;
    justify-content: center;
    min-height: 90px;
    padding: 0 0 22px;
    margin-bottom: 15px;
    background: url(../images/front/top_feature_tit_line.png) no-repeat center bottom / auto 11px;
}
.feature_title h3 {
    font-family: "zen-maru-gothic", sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 1.7;
    text-align: center;
    color: #423229;
}
.feature_button {
    display: flex;
    flex-flow: column;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 25px;
}
.feature_button .btn01 {
    text-align: center;
}
.feature_button .btn01>* {
    letter-spacing: 0.05em;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .feature {
        padding: 60px 5% 70px;
        background-size: 99px auto, 212px auto, 215px auto, 122px auto;
    }
    .feature_list {
        gap: 30px;
    }
    .feature_item {
        width: 100%;
    }
    .feature_inner {
        padding: 25px 20px 40px;
    }
    .feature_title {
        min-height: auto;
        margin-bottom: 15px !important;
		background: url(../images/front/top_feature_tit_line.png) no-repeat center bottom / auto 10px;
    }
    .feature_title h3 {
        font-size: min(5vw, 18px);
        letter-spacing: 0.06em;
    }
	.feature_button{
		flex-flow:wrap;
	}
    .feature_button .btn01>* {
        padding: 13px 48px 13px 15px;
        letter-spacing: 0;
    }
    .feature_button .btn01>*::after {
        right: 8px;
        width: 28px;
        height: 28px;
        line-height: 28px;
        font-size: 15px;
    }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.search {
    position: relative;
    margin-top: -18px;
    padding: 120px 0 165px;
    background: url(../images/front/top_deco_wave_g_top.png) repeat-x left bottom/auto auto, url(../images/front/top_search_bg_tree.png) no-repeat right calc(50% - 630px) top -40px/auto auto, url(../images/front/top_search_bg.png) repeat-x left bottom/250px auto;
}
.search .top_title {
    background-image: url(../images/front/top_tit_deco_p.png);
}
.search .top_title .eng {
    color: #f5acb3;
}
.search .tab_list {
    display: flex;
    flex-flow: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.search .tab_list li {
    position: relative;
    display: flex;
    flex: 1;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 10px 20px;
    font-family: "zen-maru-gothic", sans-serif;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.05em;
    color: #ffffff;
    cursor: pointer;
    background: #9ec757;
    border-radius: 40px;
    transition: transform 0.2s, padding 0.2s;
}
.search .tab_list li.is-active {
    background: #f3bac0;
}
.search .tab_list li::after {
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 3px;
    height: 20px;
    background: #f3bac0;
    opacity: 0;
    content: "";
}
.search .tab_list li.is-active::after {
    opacity: 1;
}

/* ----- パネル ----- */
.search .panel {
    position: relative;
    display: none;
    margin: 0 !important;
    padding: 40px;
    background: #fef2f5;
    border-radius: 16px;
}
.search .panel::after {
    position: absolute;
    left: -255px;
    bottom: -100px;
    width: 279px;
    height: 256px;
    background: url(../images/front/top_search_beer.png) no-repeat center/contain;
    content: "";
}
.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 65px 10px 30px;
    line-height: 1.6;
    color: var(--text-color);
    background: #ffffff;
    border-radius: 100px;
}
.search_list a::after {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 38px;
    height: 38px;
    line-height: 38px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    text-align: center;
    color: #fff;
    transform: translateY(-50%);
    background-color: #f3bac0;
    border: 1px solid #f3bac0;
    border-radius: 100%;
    content: "\f061";
    transition: 0.3s;
}
.search_list a:hover::after {
    color: #f3bac0;
    background-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 {
        margin-top: -10px;
        padding: 100px 5% 130px;
        background-size: 99px auto, 300px auto, 125px auto;
        background-position: left bottom, right -100px top -20px, left bottom;
    }
    .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: 120%;
        transform: translate(0, 0) !important;
    }

    /* ----- パネル ----- */
    .search .panel {
        padding: 20px;
    }
    .search .panel::after {
        left: -30px;
        bottom: -100px;
        width: 140px;
        height: 128px;
    }

    /* ----- 項目 ----- */
    .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%;
    }
}

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

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

================================================================================================================================== */
#columnSlider {
    background: #f3f9dd;
}
#columnSlider .inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 130px;
    width: 90%;
    max-width: 1520px;
    margin: 0 auto;
    padding: 90px 50px 40px;
}
#columnSlider .top_title {
    flex-shrink: 0;
}
#columnSlider .top_title h2::before, #columnSlider .top_title h2::after {
    display: none;

}
/* ----- コラムスライダー設定 ----- */
#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: 60px;
    height: 45px;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    color: #ffffff;
    cursor: pointer;
    overflow: hidden;
    transform: translateZ(0);
    border-radius: 5px;
    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: 70px;
}
#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: 17px;
    right: 190px;
    z-index: 1;
    display: flex;
    gap: 15px;
}
#columnSlider .columnSlider-page {
    width: 10px;
    height: 10px;
    background-color: #e8e8e8;
    border-radius: 50%;
    transition: background 0.2s;
}
#columnSlider .columnSlider-page.is-active {
    background: var(--main-color);
}

/* ----- コラム個別 ----- */
#columnSlider .column_item:first-child .column_item_thum::before {
    content: "New";
    position: absolute;
    top: -1px;
    left: -1px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-self: center;
    width: 90px;
    height: 90px;
    padding: 10px 35px 0 0;
    background: var(--sub-color);
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0.075em;
    opacity: 0.9;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}
#columnSlider .column_item a {
    width: 100%;
}
#columnSlider .column_item a:hover .column_item_thum img {
    transform: scale(1.1);
}
#columnSlider .column_item a:hover .column_title {
    color: var(--main-color);
}
#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_info {
    display: flex;
    flex-flow: wrap;
    gap: 15px;
    margin: 0 0 15px;
    color: #747474;
    font-size: 90%;
}
#columnSlider .column_info ul {
    display: flex;
    flex-flow: wrap;
    gap: 5px;
}
#columnSlider .column_info ul li {
    min-width: 80px;
    padding: 2px 10px;
    background: var(--main-color);
    color: #ffffff;
    font-size: 90%;
    text-align: center;
    border-radius: 5px;
}
#columnSlider .column_date {
    flex-shrink: 0;
}
#columnSlider .column_title {
    font-family: "zen-maru-gothic", sans-serif;
    font-weight: 500;
    font-size: 105%;
    color: #423229;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s;
}

/* ==============================================
    *SP　医療コラム
  ============================================== */
@media screen and (max-width: 640px) {
    #columnSlider .inner {
        flex-flow: column;
        gap: 0;
        width: 100%;
        margin: 0 auto;
        padding: 60px 5% 20px;
    }
    #columnSlider .top_title {
        margin: 0 auto 30px;
    }
    #columnSlider .splide {
        margin-right: -40px;
    }
    #columnSlider .splide__arrow {
        width: 50px;
        height: 40px;
    }
    #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 .splide__slide:first-child .column_item_thum::before {
        width: 80px;
        height: 80px;
        padding: 13px 25px 0 0;
    }
    #columnSlider .columnSlider-page {
        width: 8px;
        height: 8px;
    }
}

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

  *無限スライダー

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
#infinitySlider {
    position: relative;
    padding: 40px 0 130px;
}
#infinitySlider::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 200px;
    background-color: #f3f9dd;
    content: "";
}
#infinitySlider .splide__list {
    gap: 20px;
}
#infinitySlider .splide__slide {
    width: 400px !important;
}
#infinitySlider .splide__slide:nth-of-type(even) {
    margin-top: 60px;
}
#infinitySlider .splide__slide img {
    border-radius: 10px;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    #infinitySlider {
        padding: 20px 0 70px;
    }
    #infinitySlider::before {
        height: 110px;
    }
    #infinitySlider .splide__slide:nth-of-type(even) {
        margin-top: 30px;
    }
    #infinitySlider .splide__list {
        gap: 8px;
    }
    #infinitySlider .splide__slide {
        width: 200px !important;
    }
}