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

  *基本設定

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.front {
    overflow: hidden;
}

/* ----- パララックス ----- */
.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) {
    .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: 45px;
    text-align: center;
}
.top_title.title_left {
    text-align: start;
}
.top_title h2 {
    font-family: "source-han-serif-japanese", serif;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 0.17em;
    line-height: 1.5;
}
.top_title .eng {
    display: inline-block;
    margin-bottom: 16px;
    font-family: "ivyjournal", sans-serif;
    font-weight: 400;
    font-size: 70px;
    letter-spacing: 0.12em;
    line-height: 1;
    color: var(--main-color);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .top_title {
        margin-bottom: 40px;
    }
    .top_title h2 {
        font-size: 18px;
    }
    .top_title .eng {
        margin-bottom: 6px;
        font-size: 40px;
        letter-spacing: 0.1em;
    }
}

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

  *メインビジュアル

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

#mvVideo video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(-50%) translateY(-50%);
}

.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: 40%;
    left: 0;
    z-index: 3;
    width: 100%;
    transform: translateY(-50%);
}
.mvCatch .inner {
    position: relative;
    z-index: 1;
}
.mvCatch p {
    font-size: 220%;
    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);
}
/* ----- スマホ専用エリア ----- */
.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: 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;
    }
    /* ----- 開院バナー ----- */
    .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 20px;
    }
    .sp_only_contents {
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
}

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

  *バナーエリア

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.top_banner {
    position: relative;
    z-index: 2;
}

/* ----- 共通設定 ----- */
.top_banner .inner {
    padding: 90px 0 0;
}
.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: #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 {
        margin-bottom: 70px;
    }
    .top_banner .inner {
        padding: 0 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;
    margin-top: -96px;
    background: url(../images/front/top_info_bg.jpg) no-repeat center bottom/auto auto;
}
@media screen and (min-width: 1920px) {
    .clinic {
        background-size: 100% 1300px;
    }
}

/* ----- お知らせ ----- */
.clinic .news {
    position: relative;
    z-index: 1;
}
.clinic .news .inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding: 171px 0 100px;
}
.clinic .news .news_left {
    flex-shrink: 0;
}
.clinic .news .top_title {
    text-align: left;
}
.clinic .news .btn01 {
    margin-top: 30px;
    text-align: center;
}

/* ----- 医院概要 ----- */
.clinic .info .inner {
    display: flex;
    gap: 40px;
    padding: 0 0 220px;
}
.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;
}
.clinic .info address > *::before {
    position: absolute;
    top: 6px;
    left: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    line-height: 1;
    color: var(--main-color);
}
.clinic .info address .location {
    padding: 0 0 0 30px;
}
.clinic .info address .location::before {
    content: "\f3c5";
}
.clinic .info address .location .zipcode {
    margin-right: 10px;
}
.clinic .info address .tel {
    margin-top: 20px;
    padding: 0 0 0 30px;
    font-family: "ivyjournal", sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1;
}
.clinic .info address .tel::before {
    top: 8px;
    content: "\f3cd";
}
.clinic .info address .fax {
    margin-top: 20px;
    padding: 5px 0 5px 50px;
    font-size: 30px;
    line-height: 1;
}
.clinic .info address .fax::before {
    content: "\f249";
}
.clinic .info .note {
    margin-top: 14px;
    font-size: 90%;
    line-height: 1.8;
}
.clinic .info .speciality {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 30px auto 0;
    padding: 15px 20px;
    background: #F9F6F2;
}
.clinic .info .speciality .title {
    flex-shrink: 0;
    width: fit-content;
    padding: 5px 40px;
    text-align: center;
    border-right: 1px solid var(--line-color);
}
.clinic .info .googlemap iframe {
    height: 350px;
}
.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-size: auto 650px;
    }

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

    /* ----- 医院概要 ----- */
    .clinic .info .inner {
        flex-flow: column;
        padding: 0 5% 60px;
        gap: 30px;
    }
    .clinic .info .inner>* {
        width: 100%;
    }
    .clinic .info .speciality {
        flex-flow: column;
        gap: 10px;
        padding: 10px;
    }
    .clinic .info .speciality .title {
        width: 100%;
        padding: 0 40px 5px;
        border-bottom: 1px solid var(--line-color);
        border-right: none;
    }
    .clinic .info .note {
        margin-top: 6px;
    }
}

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

  *コンセプト

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
#concept {
    position: relative;
    z-index: 1;
    width: calc(100% - 120px);
    min-width: 1280px;
    margin: -90px auto 80px;
    color: #fff;
    background: url(../images/front/top_concept_bg.jpg) no-repeat center/cover;
}
#concept .inner {
    padding: 100px 0 120px;
}
#concept .top_title .eng {
    color: #fff;
}
#concept h3 {
    margin-bottom: 30px;
    font-family: "source-han-serif-japanese", serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: 0.15em;
    text-align: center;
    text-shadow: 0px 0px 15px rgba(0, 0, 0, 1);
}
#concept p {
  width: fit-content;
  padding: 40px 70px;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 2.2;
  text-align: center;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 1);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  margin: 0 auto;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    #concept {
        width: 100%;
        min-width: initial;
        margin: 0 auto 40px;
    }
    #concept .inner {
        padding: 60px 4% 80px;
    }
    #concept h3 {
        margin-bottom: 20px;
        font-weight: 500;
        font-size: 19px;
        line-height: 1.6;
        letter-spacing: 0.1em;
    }
    #concept p {
        padding: 30px 4%;
        font-size: 15px;
        letter-spacing: 0.1em;
        text-align: left;
    }
}

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

  *無限スライダー

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
#infinitySlider {
}
#infinitySlider .splide__list {
    gap: 20px;
}
#infinitySlider .splide__slide {
    width: 400px !important;
}

/* ----------------------------------------------------------------------
    ▼ SP
  ---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    #infinitySlider .splide__list {
        gap: 10px;
    }
    #infinitySlider .splide__slide {
        width: 200px !important;
    }
}

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

  *ご挨拶（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting {
    position: relative;
    z-index: 1;
    padding: 90px 0 0;
    overflow: hidden;
    background: url(../images/front/tpp_greeting_bg.jpg) no-repeat center top/cover;
}
.greeting .top_title {
    text-align: left;
}
.greeting_box {
    position: relative;
    z-index: 1;
}
.greeting_flex {
    display: flex;
    gap: 30px;
}
.greeting_box:not(:last-child) {
    margin-bottom: 70px;
}
.greeting_right {
    position: relative;
    margin-top: auto;
    padding: 0 0 0 6px;
}
.greeting_right img {
    filter: drop-shadow(0px 0px 40px rgba(0, 0, 0, 0.1));
}
.greeting_left {
    flex-shrink: 0;
    width: 740px;
    padding-bottom: 120px;
}
.greeting_text>*:not(:last-child) {
    margin-bottom: 1.5em;
}
.greeting_text h3 {
    margin-bottom: 30px !important;
    font-family: "source-han-serif-japanese", serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: 0.15em;
    color: #56aeaf;
}
.greeting_text p {
    letter-spacing: 0.07em;
}
.greeting_profile {
    position: absolute;
    right: 40px;
    bottom: 110px;
    font-family: "source-han-serif-japanese", serif;
    font-weight: 500;
    line-height: 1.75;
    text-align: right;
    color: #444;
    letter-spacing: 0.15em;
    filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 8px #ffffff);
}
.greeting_profile .position {
    font-size: 18px;
}
.greeting_profile .name {
    font-size: 24px;
}
.greeting_profile .name span {
    margin-right: 30px;
    font-size: 18px;
}
.greeting_btn {
    margin-top: 50px;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .greeting {
        padding: 60px 5% 0;
    }
    .greeting .top_title {
        text-align: center;
    }
    .greeting_flex {
        flex-flow: column-reverse;
        gap: 25px;
    }
    .greeting_right {
        margin: 0 10%;
        padding: 0 0 0;
    }
    .greeting_profile {
        right: 0;
        bottom: 30px;
        width: 100%;
        text-align: center;
    }
    .greeting_left {
        width: 100%;
        padding-bottom: 80px;
    }
    .greeting_text h3 {
        margin-bottom: 20px !important;
        font-size: 19px;
        line-height: 1.8;
        text-align: center;
    }
    .greeting_btn {
        margin-top: 30px;
        text-align: center;
    }
}

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

  *お悩みから探す

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.trouble {
    position: relative;
    padding: 90px 0 360px;
}
.trouble::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 560px;
    background: url(../images/front/top_search_bg_dmy.jpg) no-repeat center/cover;
    content: "";
}
.trouble .top_title {
    margin-bottom: 55px;
    text-align: center;
}
.trouble_list {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    gap: 50px 30px;
}
.trouble_item {
    display: flex;
    flex-flow: column;
    width: 380px;
    height: auto;
    padding: 25px 25px 40px;
    background-color: #fff;
    filter: drop-shadow(0px 0px 14px rgba(184, 184, 184, 0.16));
}
.trouble_img {
    margin-bottom: 20px;
}
.trouble_inner {
    display: flex;
    flex-flow: column;
    height: 100%;
    background: #ffffff;
}
.trouble_title {
    display: flex;
    flex-flow: column;
    justify-content: center;
    margin-bottom: 17px;
}
.trouble_title h3 {
    font-family: "source-han-serif-japanese", serif;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 0.12em;
    line-height: 1;
    text-align: center;
    color: var(--main-color);
}
.trouble_text_list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: fit-content;
    margin: 0 auto;
}
.trouble_text_list li {
    position: relative;
    padding-left: 15px;
    line-height: 1.7;
    letter-spacing: 0.075em;
}
.trouble_text_list li::before {
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #51c3c7;
    content: "";
}
.trouble_button {
    display: flex;
    flex-flow: column;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 25px;
}
.trouble_button .btn01 {
    text-align: center;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .trouble {
        padding: 60px 5% 200px;
    }
    .trouble::before {
        height: 300px;
    }
    .trouble .top_title {
        margin-bottom: 30px;
    }
    .trouble_list {
        gap: 30px;
    }
    .trouble_item {
        width: 100%;
    }
    .trouble_title {
        min-height: auto;
        margin-bottom: 15px !important;
    }
    .trouble_title h3 {
        font-size: 20px;
    }
    .trouble_text_list li::before {
        top: 7px;
    }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
    padding: 95px 0 160px;
    background: url(../images/front/top_feature_bg01.jpg) no-repeat right top, url(../images/front/top_feature_bg02.jpg) no-repeat left bottom, #fcfcfa;
}
.feature_list {
    display: flex;
    flex-flow: wrap;
    gap: 70px 30px;
}
.feature_item {
    display: flex;
    align-items: flex-start;
    width: 100%;
    height: auto;
    margin-top: 50px;
}
.feature_img {
    position: relative;
    flex-shrink: 0;
    width: 600px;
    margin-top: -50px;
}
.feature_img::before {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 100%;
    height: 100%;
    background-color: #51c3c7;
    opacity: 0.1;
    content: "";
}
.feature_list .feature_item:nth-of-type(even) .feature_img::before {
    left: auto;
    right: 30px;
}
.feature_img img {
    position: relative;
}
.feature_inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-flow: column;
    width: calc(100% + 50px);
    height: 100%;
    min-height: 380px;
    margin: 0 0 0 -100px;
    padding: 50px 40px 50px;
    background: rgba(255, 255, 255, 0.8);
}
.feature_inner::before {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid var(--main-color);
    opacity: 0.5;
    content: "";
}
.feature_list .feature_item:nth-of-type(even) .feature_inner::before {
    left: auto;
    right: 10px;
}
.feature_title {
    display: flex;
    flex-flow: column;
    box-sizing: border-box;
    margin-bottom: 25px;
    padding: 20px 0 0 60px;
    min-height: 74px;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 108px auto;
}
.feature_list .feature_item:nth-of-type(1) .feature_title {
    background-image: url(../images/front/top_feature_no01.png);
}
.feature_list .feature_item:nth-of-type(2) .feature_title {
    background-image: url(../images/front/top_feature_no02.png);
}
.feature_list .feature_item:nth-of-type(3) .feature_title {
    background-image: url(../images/front/top_feature_no03.png);
}
.feature_list .feature_item:nth-of-type(4) .feature_title {
    background-image: url(../images/front/top_feature_no04.png);
}
.feature_list .feature_item:nth-of-type(5) .feature_title {
    background-image: url(../images/front/top_feature_no05.png);
}
.feature_list .feature_item:nth-of-type(6) .feature_title {
    background-image: url(../images/front/top_feature_no06.png);
}
.feature_title h3 {
    font-family: "source-han-serif-japanese", serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.45;
    letter-spacing: 0.15em;
    color: var(--main-color);
}
.feature_button {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 25px;
}
.feature_button .btn01 {
    text-align: center;
}
.feature_button .btn01>*::after {
    display: none;
}

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

/* ----------------------------------------------------------------------
    ▼ SP
  ---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .feature {
        padding: 60px 5% 80px;
        background-size: 285px auto, 285px auto;
    }
    .feature .top_title {
        margin-bottom: 40px;
    }
    .feature_list {
        gap: 40px;
    }
    .feature_item {
        flex-flow: column;
        width: 100%;
        margin: 0;
    }
    .feature_img {
        width: 100%;
        margin: 0;
    }
    .feature_img::before {
        top: -10px;
        left: -10px;
    }
    .feature_inner {
        width: 95%;
        min-height: auto;
        margin: -20px 0 0 auto;
        padding: 30px 20px;
    }
    .feature_inner::before {
        top: 6px;
        left: 6px;
    }
    .feature_title {
        margin-bottom: 15px;
        padding: 35px 0 0 30px;
    }
    .feature_title h3 {
        font-size: 18px;
        line-height: 1.6;
        letter-spacing: 0.03em;
    }

    /* ----- 左右 ----- */
    .feature_item:nth-child(even) {
        flex-flow: column;
    }
    .feature_list .feature_item:nth-of-type(even) .feature_img::before {
        left: -10px;
        right: auto;
    }
    .feature_item:nth-child(even) .feature_inner {
        margin: -20px 0 0 auto;
    }
    .feature_list .feature_item:nth-of-type(even) .feature_inner::before {
        right: auto;
        left: 6px;
    }

}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
    position: relative;
    padding: 95px 0 150px;
    background: #f8f5f0;
    overflow: hidden;
}
.medical::before {
    position: absolute;
    left: calc(50% - 305px);
    top: -20px;
    width: 610px;
    height: 352px;
    background: url(../images/front/top_medical_logo.svg) no-repeat center top -20px/contain;
    opacity: 0.08;
    content: "";
}
.medical::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background: url(../images/front/top_medical_bg.jpg) repeat center;
    content: "";
}
.medical_list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 30px;
}
.medical_item {
    position: relative;
    z-index: 1;
    width: 380px;
    height: auto;
    overflow: hidden;
}
.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;
    transition: transform 0.5s;
}
.medical_item:hover .medical_img img {
    transform: scale(1.2);
}
.medical_inner {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 230px;
    padding: 30px 20px 40px;
    text-align: center;
    transition: background 0.5s, backdrop-filter 0.5s;
}
.medical_item:hover .medical_inner {
    backdrop-filter: blur(3px);
}
.medical_inner>*:not(:last-child) {
    margin-bottom: 15px;
}
.medical_icon {
    width: 70%;
    max-width: 80px;
    margin: 0 auto 15px !important;
}
.medical_title h3 {
    font-family: "source-han-serif-japanese", serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.571;
    letter-spacing: 0.15em;
    color: #fff;
    filter: drop-shadow(0px 0px 12px #453f34) drop-shadow(0px 0px 20px #453f34);
}
.medical_title_eng {
    margin-top: 8px;
    color: var(--main-color);
    font-family: "ivyjournal", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.15em;
    opacity: 0.6;
    text-align: center;
    filter: drop-shadow(0px 0px 15px #705119);
    color: #fff;
}
.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);
}

/* ----- 先頭4つの設定----- */
.medical_item:nth-of-type(-n + 4) {
    width: calc(50% - 15px);
    min-height: 350px;
}
.medical_item:nth-of-type(-n + 4) .medical_inner {
    padding: 20px 20px 40px;
}
.medical_item:nth-of-type(-n + 4) .medical_icon {
    max-width: 100px;
    margin: 0 auto 5px !important;
}
.medical_item:nth-of-type(-n + 4) .medical_title h3 {
    font-size: 28px;
}
.medical_item:nth-of-type(-n + 4) .medical_title_eng {
    font-size: 16px;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .medical {
        padding: 60px 5% 80px;
    }
    .medical::before {
        left: calc(50% - 190px);
        width: 380px;
        height: 220px;
    }
    .medical::after {
        height: 35%;
    }
    .medical_list {
        gap: 10px 10px;
    }
    .medical_item {
        width: calc(50% - 5px);
    }
    .medical_item:hover {
        transform: translateY(-5px);
    }
    .medical_inner {
        min-height: auto;
        padding: 20px 5px;
    }
    .medical_icon {
        width: 50%;
    }
    .medical_title h3 {
        font-size: 110%;
        letter-spacing: 0;
    }

    /* ----- 先頭2つの設定----- */
    .medical_item:nth-of-type(-n + 4) {
        width: 100%;
        min-height: auto;
    }
    .medical_item:nth-of-type(-n + 4) .medical_inner {
        padding: 15px 20px 30px;
    }
    .medical_item:nth-of-type(-n + 4) .medical_icon {
        width: 30%;
    }
    .medical_item:nth-of-type(-n + 4) .medical_title h3 {
        font-size: 130%;
        letter-spacing: 0.1em;
    }
}

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

  *医療コラム（パターン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%;
    }
}