@charset "UTF-8";

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

  *基本設定

================================================================================================================================== */
.front {
    overflow: hidden;
}
.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 5%;
    }
    
    /* ----- パララックス ----- */
    .parallax {
        height: 300px;
    }
}

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

  *タイトル

================================================================================================================================== */
.top_title {
    margin-bottom: 60px;
}
.top_title h2 {
    position: relative;
    font-family: dnp-shuei-mincho-pr6, sans-serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1;
}
.top_title .eng {
    position: relative;
    display: block;
    margin-bottom: 10px;
    padding-top: 15px;
    font-family: "cormorant-garamond", serif;
    font-weight: 400;
    font-size: 60px;
    letter-spacing: 0.05em;
    line-height: 1;
    color: var(--main-color);
}
.top_title .eng::before,
.top_title .eng::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: var(--main-color);
    content: "";
}
.top_title .eng::after {
    left: 14px;
    background-color: #d1cfd0;
}

/* ==============================================
  *SP タイトル
============================================== */
@media screen and (max-width: 640px) {
    .top_title {
        margin-bottom: 30px;
    }
    .top_title h2 {
        font-size: 16px;
        line-height: 1.5;
    }
    .top_title .eng {
        margin-bottom: 8px;
        font-size: 36px;
    }
}

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

  *メインビジュアル

================================================================================================================================== */
.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: "\f053";
}
.mvSlider .sliderBtn#mv_btnNext span::before {
    content: "\f054";
}

/* 各スライダーのボタンは非表示に */
.mvSlider .splide__arrows {
    display: none;
}

/* ----- MVの画像 ----- */
.mvImg {
    width: 100%;
    height: 100%;
	position: relative;
}

.mvImg::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgb(44 44 134 / 25%);
   pointer-events: none;       
   z-index: 1;
}

.mvImg .splide__track {
    width: 100%;
    height: 100%;
}
.mvImg .splide__slide {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.mvImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* フェードの専用スタイル */
.fade .mvImg .splide__slide img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: calc(100% + 50px);
    pointer-events: none;
}

/* アニメーションを実行 */
.fade.move .mvImg .splide__slide img {
    animation: hideTranslate 8s ease-out forwards;
}
.fade.move .mvImg .splide__slide.is-active img {
    animation: showTranslate 8s ease-out forwards;
}

/* MVのアニメーション  */
@keyframes hideImg {
    0% {
        opacity: 1;
    }
    10% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
@keyframes showTranslate {
    0% {
        transform: translate3d(0, 0px, 0);
    }
    100% {
        transform: translate3d(0, -30px, 0);
    }
}
@keyframes hideTranslate {
    /* 下降 */
    0% {
        transform: translate3d(0, -30px, 0);
    }
    100% {
        transform: translate3d(0, 0px, 0);
    }
}

/* ----- キャッチコピー ----- */
.mvCatch {
    position: absolute !important;
    top: 45%;
    left: 0;
    z-index: 3;
    width: 100%;
    transform: translateY(-50%);
}
.mvCatch .inner {
    position: relative;
    z-index: 1;
}
.mvCatch p {
    padding: 50px 0;
    font-family: dnp-shuei-mincho-pr6, sans-serif;
    font-weight: 400;
    font-size: 220%;
    text-align: center;
    color: #fff;
    filter: drop-shadow(0px 0px 15px rgba(12, 21, 64, 0.7)) drop-shadow(0px 0px 30px rgba(12, 21, 64, 0.7));
}

/* ----- コンテンツ ----- */
.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%;
}
.open_bnr > * {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 250px;
    padding: 35px 15px 15px;
    background: rgba(31, 43, 97, 0.6);
    border-radius: 50%;
    font-family: dnp-shuei-mincho-pr6, sans-serif;
    font-weight: 400;
    font-size: 110%;
    line-height: 1.5;
    text-align: center;
    color: #ffffff;
}
.open_bnr .date {
    margin-bottom: 14px;
    padding: 0 0 10px;
    font-size: 110%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.open_bnr .open_text {
    margin: 0 0 10px;
    font-size: 180%;
}
.open_bnr .nairankai_tit {
    display: block;
    width: 100%;
    margin: 0 0 14px;
    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);
}

.mv_icon {
    position: absolute;
    left: 280px;
    bottom: 40px;
    display: flex;
    gap: 20px;
}
.mv_icon li {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 170px;
    height: 170px;
    padding: 35px 15px 15px;
    border-radius: 100%;
    font-family: dnp-shuei-mincho-pr6, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    color: #1f2b61;
    background: rgba(255, 255, 255, 0.7);
	transition: transform 0.2s,color 0.2s;
}
.mv_icon li::before {
    display: block;
    margin-bottom: 5px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 22px;
    line-height: 1;
}
.mv_icon li:nth-of-type(1)::before {
    content: "\f239";
}
.mv_icon li:nth-of-type(2)::before {
    content: "\f274";
}
.mv_icon li a{
	width: 100%;
	height: 100%;
}
.mv_icon li:hover{
	transform:translatey(-10px);
}
.mv_icon li:hover a,
.mv_icon li:hover:before{
	color:rgba(31, 43, 97, 0.6)!important;
}

/* ----- RIBONバナー ----- */
.mv_ribon {
    position: absolute;
    bottom: 150px;
    left: 0;
}
.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: 42%;
        display: none;
    }
    .mvCatch.is-active {
        display: block;
    }
    .mvCatch p {
        font-size: 120%;
        line-height: 2;
    }
    .mvContents .open_bnr {
        display: none;
    }
    .sp_only {
        display: block;
        background: none !important;
        padding: 0 0 30px;
    }
    .sp_only .inner {
        padding: 0 20px;
    }
    .sp_only_contents {
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
    .open_bnr {
        position: static;
        width: 100%;
        max-width: 350px;
        border-radius: 0;
    }
    .open_bnr > * {
        width: 100%;
        height: auto;
        padding: 15px 20px;
        border-radius: 0;
    }
    .mv_icon {
        left: 0;
        bottom: 20px;
        justify-content: center;
        gap: 3vw;
        width: 100%;
    }
    .mv_icon li {
        width: 126px;
        height: 126px;
        padding: 20px 10px 10px;
        font-size: 14px;
    }
}

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

  *バナーエリア

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

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

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

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

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

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

/* スライダーのArrowボタン */
#bannerSlider .bannerSlider_arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    padding: 3px;
    background: rgba(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(--text-color);
}
#bannerSlider .bannerSlider_arrow_prev {
    left: 0;
}
#bannerSlider .bannerSlider_arrow_next {
    right: 0;
}

/* ページネーション */
#bannerSlider .bannerSlider_pagination {
    z-index: 1;
    display: flex;
    gap: 15px;
    margin: 30px 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) {
    /* ----- グリッドバナー ----- */
    .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;
    }
}

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

  *インフォメーション

================================================================================================================================== */
.sp_only + section {
    padding: 100px 0;
    background: url("../images/top_info_bg.png") no-repeat right center, #f8f8f8;
}
.sp_only + section .top_title {
    margin-bottom: 50px;
}
.top_info_head {
    font-family: dnp-shuei-mincho-pr6, sans-serif;
    font-weight: 400;
    font-size: 110%;
    margin-bottom: 1em;
}

/* ==============================================
  *SP インフォメーション
============================================== */
@media screen and (max-width: 640px) {
    .sp_only + section {
        padding: 50px 0 80px;
        background-size: 100% auto;
        background-position: center bottom;
    }
    .sp_only + section .top_title {
        margin-bottom: 30px;
    }
}

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

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

==================================================================================================================================*/
.clinic {
}
.clinic_top {
    background: linear-gradient(90deg,rgba(255, 255, 255, 1) 50%, rgba(243, 244, 248, 1) 50%);
}
.clinic .clinic_top .inner {
    display: flex;
}
.clinic .top_title {
    margin-bottom: 40px;
}

/* ------ お知らせ ------ */
.clinic .news {
    padding: 70px 80px 90px 0;
    width: 50%;
}
.news .btn01 {
    margin-top: 30px;
    text-align: center;
}

/* ------ コラム ------ */
.clinic_column {
    padding: 70px 0 90px 80px;
    width: 50%;
}
.clinic_column .column_list {
    margin-bottom: 30px;
}
.clinic_column .column_item {
    width: 100%;
    border-top: 1px solid var(--line-color);
}
.clinic_column .column_item:last-child {
    border-bottom: 1px solid var(--line-color);
}
.clinic_column .column_item a {
    display: flex;
    gap: 20px;
    height: 100%;
    padding: 20px 15px;
}

/* サムネイル */
.clinic_column .column_item_thum {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    overflow: hidden;
}
.clinic_column .column_item_thum img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s;
}
.clinic_column .column_item a:hover .column_item_thum img {
    transform: scale(1.1);
}
.clinic_column .column_info_inner {
    display: flex;
    flex-flow: wrap;
    gap: 10px 20px;
}
.clinic_column .column_item a .column_info {
    display: flex;
    flex-flow: column;
    gap: 15px;
    width: calc(100% - 120px);
    color: var(--text-color);
    font-size: 90%;
}

/*　カテゴリー */
.clinic_column .column_item a .column_date {
    flex-shrink: 0;
}
.clinic_column .column_item a .column_info ul {
    display: flex;
    flex-flow: wrap;
    gap: 5px;
}
.clinic_column .column_item a .column_info ul li {
    min-width: 80px;
    padding: 2px 10px;
    background: var(--main-color);
    color: #ffffff;
    font-size: 90%;
    text-align: center;
}

/* コラムタイトル */
.clinic_column .column_item a .column_title {
    color: var(--text-color);
    font-size: 120%;
    white-space: nowrap;
    transition: color 0.2s;
}
.clinic_column .column_item a:hover .column_title {
    color: var(--main-color);
}
.clinic_column .column_item a .column_title p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.clinic_column .btn01 {
    text-align: center;
}

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

/* ------ 医院概要 ------ */
.clinic .info {
    width: 100%;
    color: #fff;
    padding: 100px 0 100px;
    background-color: #1f2b61;
}
.clinic .info .inner {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    gap: 40px;
}
.clinic .info .inner > * {
    width: calc(50% - 20px);
}
.clinic .info address > * {
    position: relative;
    z-index: 1;
    min-height: 40px;
}
.clinic .info address > *::before {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0 0 0 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ffffff;
    font-size: 16px;
}
.clinic .info address .location {
    padding: 5px 0 5px 50px;
}
.clinic .info address .location::before {
    content: "\f3c5";
}
.clinic .info address .location .zipcode {
    margin-right: 10px;
}
.clinic .info address .tel {
    margin-top: 20px;
    padding: 1px 0 5px 50px;
    font-family: dnp-shuei-mincho-pr6, sans-serif;
    font-weight: 400;
    font-size: 32px;
    letter-spacing: 0.1em;
    line-height: 1;
}
.clinic .info address .tel a {
    color: #fff;
}
.clinic .info address .tel::before {
    content: "\f3cd";
}
.clinic .info address .fax {
    margin-top: 15px;
    padding: 5px 0 5px 50px;
    font-size: 30px;
    line-height: 1;
}
.info address .fax::before {
    content: "\f249";
}
.info address .note {
    margin-top: 20px;
    padding-left: 12px;
    font-size: 90%;
}
.clinic .info .speciality {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 30px auto 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
}
.clinic .info .speciality .title {
    flex-shrink: 0;
    width: fit-content;
    padding: 5px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
}
.clinic .info .office_hour .table_wrap {
    background: rgba(255, 255, 255, 0.05);
}
.clinic .info .office_hour:first-child {
    margin-top: 30px;
}
.clinic .info .office_hour th, 
.clinic .info .office_hour td {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.clinic .info .office_hour tr td:last-of-type {
    border-right: none;
}
.clinic .info .office_hour .closed {
    color: #fff;
}
.clinic .info .list_access {
    margin-top: 5px;
}
.clinic .info .calendar_text {
    margin-top: 20px;
}
.clinic .info .btn01 {
    margin-top: 20px;
    text-align: center;
}
.clinic .info .btn01 > * {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}
.clinic .info .btn01 > *:hover {
    background: #fff;
    color: var(--main-color);
}
.clinic .info .btn01 > *::before {
    background: rgba(255, 255, 255, 0.2);
}
.clinic .info .btn01 > *:hover::before {
    background: var(--main-color);
}
.clinic .info .btn01 > *::after {
    background:  rgba(255, 255, 255, 0.2);
}
.clinic .info .btn01 > *:hover::after {
    background: var(--main-color);
}
.clinic .info .googlemap iframe {
    height: 350px;
}
.clinic .info .list_access li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 640px) {
    .clinic_top {
        background: none;
    }
    .clinic .clinic_top .inner {
        flex-flow: column;
        padding: 0 0;
    }
    .clinic .top_title {
        margin-bottom: 20px;
    }
    
    /* ------ お知らせ ------ */
    .clinic .news {
        width: 100%;
        padding: 50px 5%;
    }
    
    /* ------ 医療コラム ------ */
    .clinic_column {
        width: 100%;
        padding: 50px 5%;
        background-color: rgba(243, 244, 248, 1);
    }
    .clinic_column .column_item a {
        padding: 15px 5px 15px 10px;
    }
    .clinic_column .column_item a .column_info ul li {
        min-width: 70px;
    }
    
    /* ------ 医院概要 ------ */
    .clinic .info {
        padding: 45px 0 50px;
    }
    .clinic .info .inner {
        flex-flow: column;
        gap: 30px;
    }
    .clinic .info .inner > * {
        width: 100%;
    }
    .clinic .info address .location {
        padding: 0 0 0 50px;
        line-height: 1.7;
    }
    .clinic .info .speciality {
        flex-flow: column;
        gap: 10px;
        padding: 10px;
    }
    .clinic .info .speciality .title {
        width: 100%;
    }
}

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

  *ご挨拶

================================================================================================================================== */
.greeting {
    position: relative;
}
.greeting::after {
    position: absolute;
    z-index: 1;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    min-width: 1300px;
    border: 1px solid var(--main-color);
    content: "";
}
.greeting .inner {
    max-width: initial;
}
.greeting_box {
    position: relative;
    z-index: 2;
}
.greeting .greeting_box:first-of-type {
    padding: 100px calc((100% - 610px) / 2) 140px;
    background: url("../images/top_concept_bg.jpg") no-repeat center/cover;
}
.greeting .greeting_box:first-of-type::after {
    position: absolute;
    z-index: 1;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    height: calc(100% - 20px);
    min-width: 1300px;
    border: solid var(--main-color);
    border-width: 1px 1px 0 1px;
    content: "";
}
.greeting .greeting_box:nth-of-type(2) {
    padding: 85px calc((100% - 1200px) / 2) 80px;
}
.greeting .greeting_box:first-of-type::before {
    position: absolute;
    top: 0;
    left: calc(50% - 385px);
    width: 770px;
    height: 100%;
    background-color: #fff;
    content: "";
}
.greeting_flex {
    position: relative;
    display: flex;
    gap: 50px;
}
.greeting_inner {
    position: relative;
    z-index: 2;
}
.greeting_left {
    position: relative;
}
.greeting_left p {
    width: 57.5%;
    line-height: 2.2;
}
.greeting .greeting_box:first-of-type .greeting_left p {
    width: 100%;
}
.greeting_left .career {
    margin-top: 90px;
    display: flex;
    justify-content: space-between;
}
.greeting_left .career_box {
    width: calc(50% - 20px);
    padding: 20px 30px;
    background-color: #f8f8f8;
}
.greeting_left .career_box h3 {
    margin-bottom: 10px;
    padding: 11px 20px 17px;
    font-family: dnp-shuei-mincho-pr6, sans-serif;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.15em;
    line-height: 1;
    color: #fff;
    background-color: #1d3757;
}
.greeting_left .career_box h3::before {
    position: relative;
    top: -2px;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 14px;
    border-radius: 100%;
    background-color: #fff;
    vertical-align: middle;
    content: "";
}
.greeting_left .career_box ul li {
    padding: 10px 20px;
    line-height: 1.5;
}
.greeting_left .career_box ul li:not(:last-of-type) {
    border-bottom: 1px solid #ececec;
}
.greeting_right {
    position: absolute;
    right: 0;
    top: -170px;
    width: 460px;
}

.greeting_img {
   position: relative; 
}

.greeting_img::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
    background: linear-gradient(to top, rgb(44 44 134 / 75%) 0%, rgb(44 44 134 / 0%) 45%);
   pointer-events: none;
   z-index: 1;
}

.greeting_profile {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0 20px 30px;
    color: #ffffff;
    font-family: dnp-shuei-mincho-pr6, sans-serif;
    font-weight: 400;
    line-height: 1.8;
    text-align: center;
	z-index: 1;
}
.greeting_profile .position {
    font-size: 120%;
    letter-spacing: 0.12em;
}
.greeting_profile .name {
    font-size: 150%;
    letter-spacing: 0.1em;
}
.greeting_profile .name span {
    margin-right: 20px;
    font-size: 80%;
}
.greeting_btn {
    position: relative;
    z-index: 2;
    margin-top: 50px;
    text-align: center;
}

/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {
    .greeting::after {
        top: 5px;
        left: 5px;
        transform: translateX(0);
        width: calc(100% - 10px);
        height: calc(100% - 10px);
        min-width: initial;
    }
    .greeting .inner {
        padding: 0 0;
    }
    .greeting .greeting_box:first-of-type {
        padding: 180px 12% 60px;
        background-size: auto 200px;
        background-position: center top;
    }
    .greeting .greeting_box:first-of-type::before {
        position: absolute;
        top: 140px;
        left: 6%;
        width: 88%;
        height: calc(100% - 140px);
        background-color: #fff;
        content: "";
    }
    .greeting .greeting_box:first-of-type::after {
        top: 5px;
        left: 5px;
        transform: translateX(0);
        width: calc(100% - 10px);
        height: calc(100% - 5px);
        min-width: initial;
    }
    .greeting .greeting_box:nth-of-type(2) {
        padding: 0 7% 50px;
    }
    .greeting_flex {
        flex-flow: column-reverse;
        gap: 25px;
    }
    .greeting_left {
        width: 100%;
    }
    .greeting_left p {
        width: 100%;
    }
    .greeting_left .career {
        margin-top: 30px;
        flex-direction: column;
        gap: 20px;
    }
    .greeting_left .career_box {
        width: 100%;
        padding: 20px 5%;
    }
    .greeting_left .career_box h3 {
        padding: 10px 20px 12px;
        font-size: 17px;
    }
    .greeting_right {
        position: relative;
        right: auto;
        top: auto;
        width: 90%;
        margin: 0 auto;
    }
    .greeting_profile {
        padding: 0 5px 20px;
    }
    .greeting_profile .position {
        font-size: 108%;
        letter-spacing: 0;
        line-height: 1.4;
    }
    .greeting_profile .name {
        margin-top: 5px;
        font-size: 140%;
        letter-spacing: 0.1em;
    }
    .greeting_btn {
        margin-top: 30px;
    }
}

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

  *ピックアップ（パターン01） - 追加コンテンツ

==================================================================================================================================*/
.pickup {
    padding: 90px 0 140px;
    background: url("../images/top_pickup_bg.jpg") no-repeat center/cover;
}
.pickup .inner {
    width: 100%;
}
.pickup_list {
    display: flex;
    flex-flow: wrap;
    gap: 60px;
}
.pickup_item {
    display: flex;
    width: 100%;
}
.pickup_img {
    position: relative;
    z-index: 1;
    width: 600px;
    height: fit-content;
}
.pickup_inner {
    position: relative;
    z-index: 2;
    width: 660px;
    margin: 40px 0 0 -60px;
    padding: 60px 50px 45px 40px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0px 0px 60px 0px rgba(31, 43, 97, 0.07);
}
.pickup_title {
    margin: 0 auto 15px;
}
.pickup_title h2, 
.pickup_title h3 {
    font-family: dnp-shuei-mincho-pr6, sans-serif;
    font-weight: 400;
    font-size: 23px;
    line-height: 1.6;
    letter-spacing: 0.15em;
    color: var(--main-color);
}
.pickup_title span {
    position: absolute;
    top: 18px;
    left: 20px;
    font-family: "cormorant-garamond", serif;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.05em;
    line-height: 1;
    color: var(--main-color);
}
.pickup_title span::before {
    position: relative;
    top: -1px;
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 11px;
    border-radius: 100%;
    background-color: var(--main-color);
    vertical-align: middle;
    content: "";
}
.pickup_text {
    line-height: 2.2;
}
.pickup_link {
    display: flex;
    flex-flow: wrap;
    flex-direction: row-reverse;
    gap: 10px;
    margin-top: 30px;
}
.pickup_link .btn01 {
    width: calc((100% / 2) - (10px / 2));
    height: fit-content;
}
.pickup_link .btn01 a {
    width: 100%;
}

/* 偶数 */
.pickup_item:nth-child(even) {
    flex-flow: row-reverse;
}
.pickup_item:nth-child(even) .pickup_inner {
    margin: 40px -60px 0 0;
}

/*==============================================
  *SP　ピックアップ（追加コンテンツ）
==============================================*/
@media screen and (max-width:640px) {
    .pickup {
        padding: 50px 0 60px;
    }
    .pickup_list {
        gap: 40px;
        width: calc(100%);
    }
    .pickup_title h2, 
    .pickup_title h3 {
        font-size: 18px;
    }
    .pickup_item {
        flex-flow: column;
        width: 100%;
    }
    .pickup_img {
        width: calc(100% - 20px);
        margin: 0 auto 0 0;
    }
    .pickup_inner {
        width: 100%;
        width: calc(100% - 20px);
        margin: -30px 0 0 auto;
        padding: 50px 20px 30px;
    }
    .pickup_link {
        min-height: auto;
        margin-top: 20px;
    }
    .pickup_link .btn01 {
        width: 100%;
    }
    
    /* 偶数 */
    .pickup_item:nth-child(even) {
        flex-flow: column;
    }
    .pickup_item:nth-child(even) .pickup_img {
        margin: 0 0 0 auto;
    }
    .pickup_item:nth-child(even) .pickup_inner {
        margin: -30px auto 0 0;
    }
}

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

  *診療案内

================================================================================================================================== */
.medical {
    position: relative;
    padding: 100px 0 140px;
    background: url("../images/top_bg_grid.png") repeat left top;
}
.medical::before {
    position: absolute;
    left: 0;
    top: 0;
    width: calc(50% - 200px);
    height: 100%;
    background: url("../images/top_medical_bg_logo.png") no-repeat right -25px bottom 80px, var(--main-color);
    content: "";
}
.medical_list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.medical_item {
    position: relative;
    z-index: 1;
    height: auto;
}
.medical_img {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    transition: background 0.2s;
}
.medical_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.medical_inner {
    display: flex;
    background: rgba(255, 255, 255, 0.9);
}
.medical_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 400px;
    padding: 0 0 0 45px;
    color: #fff;
    background-color: #404b79;
}
.medical_title h3 {
    margin-bottom: 24px;
    font-family: dnp-shuei-mincho-pr6, sans-serif;
    font-weight: 400;
    font-size: 26px;
    letter-spacing: 0.15em;
    line-height: 1;
}
.medical_title_eng {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.1em;
}
.medical_text {
    position: relative;
    width: calc(100% - 400px);
    padding: 40px 50px;
    background-color: #f4f4f4;
    overflow: hidden;
}
.medical_text::before {
    position: absolute;
    right: -20px;
    bottom: -34px;
    font-family: "cormorant-garamond", serif;
    font-weight: 400;
    font-size: 140px;
    letter-spacing: 0;
    line-height: 1;
    color: var(--main-color);
    opacity: 0.1;
}
.medical_item:nth-of-type(1) .medical_text::before {
    content: "Protect";
}
.medical_item:nth-of-type(2) .medical_text::before {
    content: "Restore";
}
.medical_item:nth-of-type(3) .medical_text::before {
    content: "Align";
}
.medical_text ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 20px;
}
.medical_text ul li {
    width: calc((100% - 40px) / 3);
}
.medical_text ul li a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 10px 8px;
    letter-spacing: 0;
    line-height: 1.5;
    text-align: left;
    color: var(--main-color);
    background-color: #fff;
    transition: background 0.2s, color 0.2s;
}
.medical_text ul li a:hover {
    color: #fff;
    background-color: var(--main-color);
}
.medical_text ul li a::before {
    position: absolute;
    right: 8px;
    bottom: 8px;
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: var(--main-color);
    vertical-align: middle;
    content: "";
    transition: background 0.2s;
}
.medical_text ul li a:hover::before {
    background-color: #fff;
}

/* ==============================================
  *SP 診療案内
============================================== */
@media screen and (max-width: 640px) {
    .medical {
        padding: 50px 0 60px;
    }
    .medical_list {
        gap: 15px 10px;
    }
    .medical_inner {
        flex-direction: column;
    }
    .medical_icon {
        width: 50%;
    }
    .medical_title {
        width: 100%;
        padding: 20px 20px;
        text-align: center;
    }
    .medical_title h3 {
        margin-bottom: 15px;
        font-size: 19px;
    }
    .medical_title_eng {
        font-size: 14px;
        letter-spacing: 0;
    }
    .medical_text {
        width: 100%;
        padding: 25px 5% 35px;
    }
    .medical_text::before {
        right: -5px;
        bottom: -10px;
        font-size: 60px;
        letter-spacing: 0;
    }
    .medical_text ul {
        gap: 10px 10px;
    }
    .medical_text ul li {
        width: calc(50% - 5px);
    }
}

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

  *病状、症状から探す

================================================================================================================================== */
.search {
    position: relative;
}
.search::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: url("../images/top_search_img.jpg") no-repeat center / cover;
    content: "";
}
.search .inner {
    width: 70%;
    max-width: initial;
    margin: 0 0;
    padding: 90px 4vw 140px;
    background: url("../images/top_search_bg.jpg") no-repeat right center / cover;
}
.search .tab_list {
    gap: 10px;
}
.search .tab_list .tab {
    padding: 15px 20px;
}
.search .panel {
    position: relative;
    z-index: 1;
    padding: 25px 25px;
    background: #fff;
    border: 5px solid var(--main-color);
}
.search_list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    height: fit-content;
}
.search_list li {
    width: calc(33.3333333333% - 10px);
    height: auto;
}

/* ----- リンクボタン ----- */
.search_list li a {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 60px;
    line-height: 1.4;
    padding: 10px 20px 10px 42px;
    background: #f3f4f8;
    color: var(--text-color);
    transition: background 0.2s color 0.2s;
}
.search_list li a:hover {
    background: var(--main-color);
    color: #fff;
}
.search_list li a::before {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 14px;
    display: block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--main-color);
    opacity: 0.5;
    transform: translateY(-50%);
    transition: color 0.2s;
    content: "\f002";
}
.search_list li a:hover::before {
    color: #fff;
}


/* ==============================================
  *SP 病状、症状から探す
============================================== */
@media screen and (max-width: 640px) {
    .search::after {
        width: 100%;
        height: 180px;
        background: url("../images/top_search_img_sp.jpg") center /cover;;
    }
    .search .inner {
        width: 100%;
        padding: 220px 5% 60px;
    }
    .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: 25px 20px;
        border: 3px solid var(--main-color)
    }
    .search_list {
        gap: 10px;
    }
    .search_list li {
        width: 100%;
    }
    .search_list li a {
        min-height: auto;
        padding: 16px 40px;
    }
    
    /* ----- 画像あり ----- */
    .search .panel_flex.active {
        gap: 20px;
    }
    .search_img {
        width: 100%;
    }
    .panel_flex .search_list {
        width: 100%;
    }
    .panel_flex .search_list li {
        width: 100%;
    }
}

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

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

================================================================================================================================== */
.feature {
    padding: 90px 0 240px;
    background: url("../images/top_bg_grid.png") repeat center;
}
.feature_list {
    display: flex;
    flex-flow: wrap;
    gap: 60px 60px;
}
.feature_item {
    display: flex;
    flex-flow: column;
    width: 47.5%;
    height: auto;
}
.feature_img {
    position: relative;
}
.feature_num {
    position: absolute;
    right: 11px;
    bottom: 10px;
    margin: 0 0 0 !important;
    font-family: dnp-shuei-mincho-pr6, sans-serif;
    font-weight: 400;
    font-size: 30px;
    letter-spacing: 0;
    line-height: 1;
    color: #fff;
    opacity: 0.7;
}
.feature_num span {
    font-size: 78px;
}
.feature_inner {
    display: flex;
    flex-flow: column;
    height: 100%;
    padding: 25px 20px 30px;
    background: #f3f4f8;
}
.feature_inner > *:not(:last-child) {
    margin-bottom: 30px;
}
.feature_title {
    display: flex;
    flex-flow: column;
    justify-content: center;
    min-height: 70px;
    margin-bottom: 15px !important;
}
.feature_title h3 {
    font-family: dnp-shuei-mincho-pr6, sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.8;
    letter-spacing: 0.1em;
    text-align: center;
    color: var(--main-color);
}
.feature_item .btn01 {
    margin-top: auto;
    text-align: center;
}

/* ---- 横並びボタン ----- */
.btnflex_feature {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    gap: 5px;
    margin-top: auto;
}
.btnflex_feature .btn01 {
    width: calc(50% - 2.5px);
}
.btnflex_feature .btn01 > * {
    width: 100%;
}

@media screen and (max-width: 640px) {
    .feature {
        padding: 50px 0 140px;
    }
    .feature_list {
        gap: 30px;
    }
    .feature_item {
        width: 100%;
    }
    .feature_title {
        min-height: auto;
        margin-bottom: 15px !important;
    }
    .feature_title h3 {
        font-size: 18px;
        line-height: 1.6;
        letter-spacing: 0;
    }
    
    /* ---- 横並びボタン ----- */
    .btnflex_feature .btn01 {
        width: 100%;
    }
}

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

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

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

/* ==============================================
  *SP 医療コラム
============================================== */
@media screen and (max-width: 640px) {
    .column_list {
        gap: 40px;
    }
    .column_box {
        width: 100%;
    }
}

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

  *無限スライダー

================================================================================================================================== */
#infinitySlider {
    margin-top: -100px;
    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: -80px;
        padding: 0 0 60px;
    }
    #infinitySlider .splide__list {
        gap: 8px;
    }
    #infinitySlider .splide__slide {
        width: 200px !important;
    }
}
