@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%;
}

/* ボタン */
.top_btn a {
    display: inline-block;
    padding: 18px 0;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #83705b;
    background: url("../images/top_btn_arrow.png") no-repeat right center/36px auto;
    background-color: transparent;
    border-bottom: 1px solid #80705b;
    transition: 0.2s ease-in-out;
}
.top_btn a:hover {
    background-color: rgba(89, 72, 49, 0.1);
}

/* ==============================================
  *SP 基本設定
============================================== */
@media screen and (max-width: 640px) {
    /* ----- パララックス ----- */
    .parallax {
        height: 300px;
    }
}

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

  *タイトル

================================================================================================================================== */
.top_title {
    line-height: 1.5;
    text-align: center;
}
.top_title.title_left {
    text-align: start;
}
.top_title h2 {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 1;
    color: #594831;
}
.top_title .eng {
    display: block;
    width: 200px;
    margin: 0 auto 13px;
    padding: 5px 0;
    font-family: "Dosis", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 1;
    text-align: center;
    color: #fff;
    background-color: #594831;
}

/* ==============================================
  *SP タイトル
============================================== */
@media screen and (max-width: 640px) {
    h1 {
        margin-bottom: 0;
    }
    .top_title {
        margin-bottom: 40px;
    }
    .top_title h2 {
        margin: 5px 0 0;
        font-size: 19px;
    }
    .top_title .eng {
        width: 170px;
        font-size: 14px;
    }
}

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

  *メインビジュアル

================================================================================================================================== */
.mainvisual {
    position: relative;
    z-index: 1;
    height: 958px;
    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 {
    position: relative;
    width: 100%;
    height: 100%;
	filter: brightness(0.8);
}
.mvImg::after {
    position: absolute;
    left: calc(50% - 770px);
    bottom: -90px;
    width: 518px;
    height: 787px;
    background: url(../images/mv_deco_logo.png) no-repeat center / contain;
    content: "";
}
.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: 46.3%;
    left: 0;
    z-index: 3;
    width: 100%;
    transform: translateY(-50%);
}
.mvCatch .inner {
    position: relative;
    z-index: 1;
}
.mvCatch p {
    font-family: "A1 Mincho M JIS2004 AP";
    font-size: 48px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    color: #fff;
}
.mvCatch p.sub {
    margin-top: 20px;
    font-size: 28px;
}
.mvCatch p.sub span {
    position: relative;
    font-size: 40px;
    letter-spacing: 0.1em;
}
.mvCatch p.sub span::before {
    position: absolute;
    top: -8px;
    left: calc(50% - 70px);
    width: 136px;
    height: 5px;
    background: url(../images/mv_catch_deco.png) no-repeat center / contain;
    content: "";
}

/* ----- コンテンツ ----- */
.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_bnr {
    position: absolute;
    left: 0;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.mv_bnr_inlay {
    position: absolute;
    right: 0;
    bottom: 60px;
}
.mv_bnr li a,
.mv_bnr_inlay a {
    transition: 0.2s ease-in-out;
    opacity: 1;
}
.mv_bnr li a:hover,
.mv_bnr_inlay a:hover {
    opacity: 0.5;
}

/* ----- 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: auto;
        bottom: -30px;
        display: none;
    }
    .mvCatch.is-active {
        display: block;
    }
    .mvCatch p {
        font-size: 170%;
        line-height: 1.5;
    }
    .mvCatch p.sub {
        margin-top: 12px;
        font-size: 17px;
    }
    .mvCatch p.sub span {
        font-size: 32px;
    }
    .mvCatch p.sub span::before {
        top: -4px;
        height: 4px;
    }
    .mvContents {
        display: none;
    }
    .sp_only {
        display: block;
        background: none !important;
        padding: 30px 0 0;
    }
    .sp_only .inner {
        padding: 0 20px;
    }
    .sp_only_contents {
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
    .mv_bnr {
        position: relative;
        left: auto;
        bottom: auto;
    }
    .mv_bnr_inlay {
        position: relative;
        right: auto;
        bottom: auto;
    }
}

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

  *バナーエリア

================================================================================================================================== */
/* ----- 共通設定 ----- */
.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;
    }
}

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

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

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

/* ----- お知らせ ----- */
.clinic .news {
    position: relative;
    z-index: 1;
}
.clinic .news .inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 51px;
    padding: 104px 0 101px;
}
.clinic .news .news_left {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}
.clinic .news .top_title {
    text-align: left;
    margin: 0 0 50px;
}
.clinic .news .top_title h2 {
    color: #83705b;
}
.clinic .news .top_title .eng {
    margin: 0 0 20px;
    padding: 0 0 0;
    font-size: 50px;
    text-align: left;
    color: #5c4831;
    background-color: transparent;
}
.clinic .news .top_btn {
    margin-top: auto;
}
.clinic .news .top_btn a {
    width: 150px;
}
.clinic .news .news_list {
    margin: 8px 0 0;
    border: solid #80705b;
    border-width: 1px 0 1px 0;
}

/* ----- 医院概要 ----- */
.clinic .info {
    background: url("../images/top_bg_stripe.png") repeat center;
}
.clinic .info .inner {
    display: flex;
    gap: 60px;
    padding: 89px 0 84px;
}
.clinic .info .inner > * {
    width: calc(50% - 30px);
}
.clinic .info .logo {
    text-align: center;
    margin: 0 0 45px;
}
.clinic .info address > * {
    position: relative;
    z-index: 1;
    text-align: center;
}
.clinic .info address > *::before {
    position: relative;
    display: inline-block;
    margin-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 17px;
    color: #b19570;
}
.clinic .info address .location {
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.4;
    color: #594831;
}
.clinic .info address .location::before {
    content: "\f3c5";
}
.clinic .info address .location .zipcode {
    margin-right: 6px;
}
.clinic .info address .tel {
    margin-top: 30px;
    line-height: 1;
}
.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 address .note {
    margin-top: 20px;
    padding-left: 12px;
    font-size: 90%;
}
.clinic .info .office_hour:first-child {
    margin-top: 30px;
}
.clinic .info .calendar_text {
    margin-top: 20px;
}
.clinic .info .googlemap iframe {
    height: 490px;
    border: 1px solid #b19570 !important;
}
.clinic .info .map_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}
.clinic .info .map_btn {
}

@media screen and (max-width: 640px) {
    .clinic .news .top_title {
        margin: 0 0 30px;
        text-align: center;
    }
    .clinic .news .top_title .eng {
        display: block;
        width: 100%;
        margin: 0 0 10px;
        font-size: 34px;
        text-align: center;
    }
    .clinic .news .top_title h2 {
        font-size: 16px;
    }
    .clinic .news .inner {
        flex-flow: column;
        gap: 0;
        padding: 40px 5% 50px;
    }
    .clinic .news .news_list {
        margin: 0 0 0;
    }
    .clinic .news .top_btn {
        margin-top: 20px;
        text-align: center;
    }
    .clinic .news .top_btn a {
        text-align: left;
    }
    .clinic .info .inner {
        flex-flow: column;
        gap: 26px;
        padding: 40px 5% 40px;
    }
    .clinic .info .inner > * {
        width: 100%;
    }
    .clinic .info .logo {
        width: 42%;
        margin: 0 auto 24px;
    }
    .clinic .info address .location {
        font-size: 14px;
        line-height: 1.6;
    }
    .clinic .info address .tel {
        margin-top: 16px;
    }
    .clinic .info .googlemap iframe {
        width: calc(100% - 2px);
        height: 320px;
    }
    .clinic .info .map_info {
        flex-direction: column;
        gap: 20px;
        margin-top: 16px;
    }
    .list_access li {
        font-size: 15px;
    }
    .list_access li::before {
        width: 20px;
        height: 29px;
    }
}

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

  *当院の強み

================================================================================================================================== */
.commitment {
    position: relative;
    background-color: #f4f4f4;
}
.commitment::before {
    position: absolute;
    top: 154px;
/*     right: calc(50% - 516px); */
	left: 0;
    font-family: "adobe-caslon-pro", serif;
    font-weight: 600;
/*     font-size: 150px; */
font-size: clamp(880%, 10vw, 150px);
    letter-spacing: 0.2em;
    line-height: 1;
    color: #fff;
    white-space: nowrap;
    content: "COMMITMENT";
}
.commitment .inner {
    padding: 191px 0 149px;
}
.commitment .top_title {
    position: relative;
    margin-bottom: 142px;
}
.commitment_list .commitment_item:nth-of-type(1) {
    margin-bottom: 138px;
}
.commitment_list .commitment_item:nth-of-type(2) {
    margin-bottom: 132px;
}
.commitment_list .commitment_item:nth-of-type(even) .commitment_main {
    flex-direction: row-reverse;
}
.commitment_main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 0 40px;
}
.commitment_text {
    width: 47.5%;
}
.commitment_list .commitment_item:nth-of-type(1) .commitment_text {
    padding: 54px 0 0;
}
.commitment_text h3 {
    width: fit-content;
    width: -moz-fit-content;
    margin: 0 auto 37px;
    font-family: "A1 Mincho M JIS2004 AP";
    font-size: 45px;
    letter-spacing: 0.12em;
    line-height: 1.3;
    background: linear-gradient(90deg,rgba(177, 149, 112, 1) 0%, rgba(121, 107, 88, 1) 50%, rgba(177, 149, 112, 1) 100%);    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.commitment_sub_tit {
    position: relative;
    margin: 0 auto 28px;
    padding: 21px 0 19px;
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-align: center;
    color: #ad926e;
}
.commitment_sub_tit::before,
.commitment_sub_tit::after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(90deg, rgb(177,149,112) 0%, rgb(121,107,88) 50%, rgb(177,149,112) 100%);
    content: "";
}
.commitment_sub_tit::before {
    top: 0;
}
.commitment_sub_tit::after {
    bottom: 0;
}
.commitment_text p:not(.commitment_sub_tit) {
    padding: 0 20px;
    letter-spacing: 0.075em;
    line-height: 1.933;
}
.commitment_text h4 {
    margin: 28px 0 16px;
    padding: 0 20px;
    font-family: "A1 Mincho M JIS2004 AP";
    font-size: 17px;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #ad926e;
}
.commitment_text ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 20px;
}
.commitment_text ul li {
    position: relative;
    padding: 0 0 0 20px;
    line-height: 1.5;
    letter-spacing: 0.1em;
}
.commitment_text ul li::before {
    position: absolute;
    left: 0;
    top: 10px;
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background-color: #ce6224;
    content: "";
}
.commitment_text dl {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 15px;
}
.commitment_text dl dt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    font-family: "A1 Mincho M JIS2004 AP";
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.429;
    text-align: center;
    color: #fff;
    border-radius: 100%;
    background-image: linear-gradient(90deg, rgb(177,149,112) 0%, rgb(150,130,102) 50%, rgb(177,149,112) 100%);
}
.commitment_text dl dd {
    padding: 0 9px 0 0;
    width: calc(100% - 115px);
    font-size: 14px;
    line-height: 1.714;
    letter-spacing: 0.1em;
}
.commitment_img {
    position: relative;
}
.commitment_list .commitment_item:nth-of-type(2) .commitment_img,
.commitment_list .commitment_item:nth-of-type(3) .commitment_img {
    margin: 26px 0 0;
}
.commitment_img::before {
    position: absolute;
    top: -72px;
    width: 870px;
    height: 380px;
    content: "";
}
.commitment_list .commitment_item:nth-of-type(1) .commitment_img::before {
    left: 86px;
    height: 350px;
    background: url("../images/top_commitment_img01_deco.jpg") no-repeat center/contain;
}
.commitment_list .commitment_item:nth-of-type(2) .commitment_img::before {
    right: 86px;
    background: url("../images/top_commitment_img02_deco.jpg") no-repeat center/contain;
}
.commitment_list .commitment_item:nth-of-type(3) .commitment_img::before {
    left: 86px;
    background: url("../images/top_commitment_img03_deco.jpg") no-repeat center/contain;
}
.commitment_img figure {
    position: relative;
}
.commitment_img figure::before {
    position: absolute;
    top: -36px;
    height: 128px;
    content: "";
}
.commitment_list .commitment_item:nth-of-type(1) .commitment_img figure::before {
    right: 28px;
    width: 178px;
    background: url("../images/top_commitment_no01.png") no-repeat center/contain;
}
.commitment_list .commitment_item:nth-of-type(2) .commitment_img figure::before {
    right: 20px;
    width: 186px;
    background: url("../images/top_commitment_no02.png") no-repeat center/contain;
}
.commitment_list .commitment_item:nth-of-type(3) .commitment_img figure::before {
    left: 30px;
    width: 185px;
    background: url("../images/top_commitment_no03.png") no-repeat center/contain;
}
.commitment_bna {
    margin: 30px 0 0;
    text-align: center;
}
.commitment_bna a {
    opacity: 1;
    transition: 0.2s ease-in-out;
}
.commitment_bna a:hover {
    opacity: 0.5;
}
.case_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px 60px;
    margin: 0 10px;
    padding: 48px 40px 54px;
    background-color: #fff;
    box-shadow: -0.175px 9.998px 10px 0px rgba(0, 0, 0, 0.1);
}
.case_item {
    position: relative;
    width: 520px;
}
.case_item h4 {
    position: absolute;
    left: 0;
    top: 0;
}
.case_item figure {
    margin-bottom: 40px;
    text-align: center;
}
.case_item dl {
    display: flex;
    flex-wrap: wrap;
    border: solid #80705b;
    border-width: 1px 0 1px 0;
}
.case_item dl dt {
    box-sizing: border-box;
    width: 195px;
    padding: 8px 18px;
    color: #83705b;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.5;
}
.case_item dl dd {
    width: calc(100% - 195px);
    padding: 8px 18px;
    background-color: #f4f4f4;
}
.case_item dl dt:not(:last-of-type),
.case_item dl dd:not(:last-of-type) {
    border-bottom: 1px solid #d8c9bd;
}
.case_btn {
    width: 100%;
    text-align: center;
}
.case_btn a {
    display: inline-block;
    letter-spacing: 0.1em;
    line-height: 1;
    padding: 18px 86px 18px 24px;
    color: #fff;
    background: url(../images/map_btn_arrow.png) no-repeat right 13px center / 30px auto;
    background-color: #b19570;
    transition: 0.2s ease-in-out;
}
.case_btn a:hover {
    background-position: right 4px center;
    background-color: #e79b6f;
}

@media screen and (max-width: 640px) {
    .commitment::before {
        top: 46px;
        right: 50%;
        font-size: 70px;
        letter-spacing: 0.1em;
        transform: translateX(50%);
    }
    .commitment .inner {
        padding: 50px 5% 50px;
    }
    .commitment .top_title {
        margin-bottom: 30px;
    }
    .commitment_main {
        display: block;
        margin: 0 0 30px;
    }
    .commitment_text {
        width: 100%;
    }
    .commitment_list .commitment_item:nth-of-type(1) .commitment_text {
        padding: 0 0 0;
    }
    .commitment_text h3 {
        margin: 0 auto 18px;
        font-size: 30px;
        letter-spacing: 0.05em;
    }
    .commitment_sub_tit {
        margin: 0 auto 16px;
        padding: 13px 0 11px;
        font-size: 16px;
        letter-spacing: 0.05em;
    }
    .commitment_text p:not(.commitment_sub_tit) {
        padding: 0 10px;
    }
    .commitment_img::before {
        top: -30px;
        width: 140vw;
        height: 61vw;
    }
    .commitment_list .commitment_item:nth-of-type(1) .commitment_img::before {
        left: 30px;
        height: 56vw;
    }
    .commitment_list .commitment_item:nth-of-type(3) .commitment_img::before {
        left: 30px;
    }
    .commitment_img {
        margin-top: 45px;
    }
    .commitment_list .commitment_item:nth-of-type(2) .commitment_img, 
    .commitment_list .commitment_item:nth-of-type(3) .commitment_img {
        margin: 45px 0 0;
    }
    .commitment_img figure::before {
        top: -20px;
        height: 58px;
    }
    .commitment_list .commitment_item:nth-of-type(1) .commitment_img figure::before {
        width: 80px;
    }
    .commitment_list .commitment_item:nth-of-type(2) .commitment_img figure::before {
        width: 84px;
    }
    .commitment_list .commitment_item:nth-of-type(3) .commitment_img figure::before {
        width: 84px;
    }
    .commitment_bna {
        margin: 16px 0 0;
        text-align: center;
    }
    .case_wrap {
        flex-direction: column;
        gap: 30px 0;
        margin: 0 0;
        padding: 20px 10px 25px 30px;
    }
    .case_item {
        position: relative;
        width: 100%;
    }
    .commitment_list .commitment_item:nth-of-type(1),
    .commitment_list .commitment_item:nth-of-type(2) {
        margin-bottom: 40px;
    }
    .case_item h4 {
        left: -20px;
        top: 1px;
        width: 12px;
    }
    .commitment_text h4 {
        margin: 18px 0 15px;
        padding: 0 0;
        font-size: 16px;
    }
    .commitment_text ul {
        padding: 0 0;
    }
    .commitment_text dl {
        gap: 15px 15px;
    }
    .commitment_text dl dd {
        padding: 0 0 0 0;
    }
    .case_item figure {
        margin-bottom: 20px;
    }
    .case_item dl dt {
        width: 44%;
        padding: 8px 5px;
        font-size: 14px;
        letter-spacing: 0;
    }
    .case_item dl dd {
        width: 56%;
        padding: 8px 8px;
    }
}

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

  *ご挨拶

================================================================================================================================== */
.greeting {
    position: relative;
}
.greeting::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 350px;
    background: url("../images/top_doctor_tit_bg.jpg") no-repeat center/cover;
    content: "";
}
.greeting::after {
    position: absolute;
    top: 553px;
    left: calc(50% - 1052px);
    width: 347px;
    height: 286px;
    background: url(../images/top_doctor_deco_ph.jpg) no-repeat center / cover;
    content: "";
}
.greeting .inner {
    padding: 160px 0 245px;
}
.greeting .top_title {
    position: relative;
    margin-bottom: 207px;
}
.greeting .top_title::before {
    position: absolute;
    top: -27px;
    left: 50%;
    transform: translateX(-49%);
    font-family: "adobe-caslon-pro", serif;
    font-weight: 600;
    font-size: 150px;
    letter-spacing: 0.2em;
    line-height: 1;
    color: #f7f5f3;
    white-space: nowrap;
    content: "GREETING";
    opacity: 0.08;
}
.greeting .top_title h2 {
    color: #fff;
}
.greeting .top_title .eng {
    color: #594831;
    background-color: #fff;
}
.greeting_box {
    position: relative;
    z-index: 1;
}
.greeting_flex {
    display: flex;
    gap: 74px;
}
.greeting_box:not(:last-child) {
    margin-bottom: 70px;
}
.greeting_left {
    flex-shrink: 0;
    width: 52.5%;
}
.greeting_text > p {
    line-height: 1.933;
    letter-spacing: 0.1em;
}
.greeting_text > p:not(:last-of-type) {
    margin-bottom: 1.95em;
}
.greeting_right {
    position: relative;
}
.greeting_img {
    position: absolute;
    top: -132px;
    left: 0;
    width: 856px;
    height: 900px;
}
.greeting_logo {
    margin-top: 53px;
    text-align: right;
}
.greeting_btn {
    margin-top: 50px;
    text-align: right;
}
.greeting_btn a {
    width: 208px;
    text-align: left;
}

/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {
    .greeting::before {
        height: 190px;
    }
    .greeting .inner {
        padding: 70px 5% 45px;
    }
    .greeting .top_title {
        margin-bottom: 54px;
    }
    .greeting .top_title::before {
        top: -10px;
        font-size: 70px;
        letter-spacing: 0.1em;
    }
    .greeting_flex {
        flex-flow: column-reverse;
        gap: 25px;
    }
    .greeting_left {
        width: 100%;
    }
    .greeting_img {
        position: relative;
        top: auto;
        left: auto;
        width: 90%;
        height: auto;
        margin: -26px auto 0;
    }
    .greeting_text > p:not(:last-of-type) {
        margin-bottom: 1em;
    }
    .greeting_logo {
        margin-top: 30px;
    }
    .greeting_logo img {
        width: 70%;
        height: auto;
    }
    .greeting_btn {
        margin-top: 14px;
    }
}

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

  *診療案内

================================================================================================================================== */
.medical {
    position: relative;
    background: url("../images/top_medical_bg.jpg") no-repeat center/cover;
}
.medical::before {
    position: absolute;
    top: 149px;
    left: 50%;
    transform: translateX(-48.7%);
    font-family: "adobe-caslon-pro", serif;
    font-weight: 600;
    font-size: 150px;
    letter-spacing: 0.202em;
    line-height: 1;
    color: #f7f5f3;
    white-space: nowrap;
    content: "MEDICAL";
    opacity: 0.1;
}
.medical .inner {
    padding: 176px 0 130px;
}
.medical .top_title {
    position: relative;
    margin-bottom: 76px;
}
.medical .top_title h2 {
    color: #fff;
}
.medical .top_title .eng {
    color: #594831;
    background-color: #fff;
}
.medical_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 26.6px;
}
.medical_item {
    position: relative;
    z-index: 1;
    width: calc(25% - 20px);
    height: auto;
    background-color: rgba(72, 58, 45, 0.6);
}
.medical_item:hover {
    transform: translateY(-10px);
    background-color: rgba(72, 58, 45, 0.9);
}
.medical_img {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    transition: background 0.2s;
}
.medical_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.medical_inner {
    display: flex;
    flex-flow: column;
    width: 100%;
    height: 100%;
    min-height: 270px;
    padding: 30px 20px 29px;
    text-align: center;
}
.medical_icon {
    width: 100%;
    max-width: 120px;
    margin: 0 auto 26px !important;
}
.medical_title {
    margin-bottom: 22px;
}
.medical_title h3 {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 1.4;
    color: #fff;
}
.medical_item:nth-of-type(4) .medical_title h3 {
    letter-spacing: 0;
}
.medical_title_eng {
    margin-top: 12px;
    font-family: "adobe-caslon-pro", serif;
    font-weight: 600;
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-align: center;
    color: #af936f;
}
.medical_text {
    padding: 0 12px;
}
.medical_text ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.medical_text ul li {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.09em;
    text-align: left;
    color: #fff;
}
.medical_text ul li::before {
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background-color: #e79b6f;
    content: "";
}
.medical_btn {
    margin-top: 30px;
}
.medical_btn span {
    display: inline-block;
    width: 180px;
    padding: 25px 0 25px 15px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1;
    text-align: left;
    color: #fff;
    background: url(../images/top_medical_arrow.png) no-repeat right 12px center / 36px auto;
    background-color: transparent;
    border-bottom: 1px solid #fff;
    transition: 0.2s ease-in-out;
}
.medical_item:hover .medical_btn span {
    background-position: right 4px center;
    background-color: rgba(255, 255, 255, 0.2);
}

/* ==============================================
  *SP 診療案内
============================================== */
@media screen and (max-width: 640px) {
    .medical {
    }
    .medical::before {
        top: 52px;
        font-size: 70px;
        letter-spacing: 0.1em;
    }
    .medical .inner {
        padding: 60px 5% 50px;
    }
    .medical .top_title {
        margin-bottom: 30px;
    }
    .medical_list {
        flex-direction: column;
        gap: 10px;
    }
    .medical_item {
        width: 100%;
    }
    .medical_item:hover {
        transform: translateY(-5px);
    }
    .medical_inner {
        min-height: auto;
        padding: 20px 10px;
    }
    .medical_icon {
        width: 50%;
        max-width: 80px;
        margin: 0 auto 16px !important;
    }
    .medical_title {
        margin-bottom: 15px;
    }
    .medical_title h3 {
        font-size: 110%;
    }
    .medical_title_eng {
        margin-top: 7px;
        font-size: 10px;
    }
    .medical_btn {
        margin-top: 16px;
    }
}

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

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

================================================================================================================================== */
.feature {
    position: relative;
    padding: 715px 0 159px;
    background: url("../images/top_feature_bg_ph01.png") no-repeat left calc(50% - 686px) top 130px,  url("../images/top_feature_bg_ph02.jpg") no-repeat right calc(50% - 215px) bottom 0;
    background-color: #f4f4f4;
}
.feature .inner {
/*     position: relative; */
}
.feature .inner::before {
    position: absolute;
/*     top: -62px;
    left: calc(50% - 207px); */
	top: 650px;
	right: 0;
    font-family: "adobe-caslon-pro", serif;
    font-weight: 600;
    font-size: 190px;
    letter-spacing: 0.2105em;
    line-height: 1;
    color: #fff;
    white-space: nowrap;
    content: "FEATURE";
}
.feature_ph {
    position: absolute;
    top: -165px;
    right: calc(50% - 898px);
    width: 1600px;
    height: 700px;
}
.feature .top_title {
    position: relative;
    margin-bottom: 99px;
}
.feature_list {
    display: flex;
    flex-flow: wrap;
    gap: 67px 35px;
    padding: 0 10px;
}
.feature_item {
    position: relative;
    display: flex;
    flex-flow: column;
    width: 370px;
    height: auto;
    background-color: #fff;
}
.feature_item::before {
    position: absolute;
    top: -36px;
    right: 21px;
    width: 118px;
    height: 119px;
    background: no-repeat center/contain;
    content: "";
}
.feature_list .feature_item:nth-of-type(1)::before {
    background-image: url("../images/top_feature_no01.png");
}
.feature_list .feature_item:nth-of-type(2)::before {
    background-image: url("../images/top_feature_no02.png");
}
.feature_list .feature_item:nth-of-type(3)::before {
    background-image: url("../images/top_feature_no03.png");
}
.feature_list .feature_item:nth-of-type(4)::before {
    background-image: url("../images/top_feature_no04.png");
}
.feature_list .feature_item:nth-of-type(5)::before {
    background-image: url("../images/top_feature_no05.png");
}
.feature_list .feature_item:nth-of-type(6)::before {
    background-image: url("../images/top_feature_no06.png");
}
.feature_num span {
    color: var(--main-color);
    font-size: 140%;
}
.feature_inner {
    display: flex;
    flex-flow: column;
    height: 100%;
    padding: 15px 25px 43px;
}
.feature_title {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    min-height: 108px;
    margin-bottom: 25px !important;
}
.feature_title::after {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(90deg, rgb(177,149,112) 0%, rgb(121,107,88) 50%, rgb(177,149,112) 100%);
    content: "";
}
.feature_title h3 {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-align: center;
    color: #ad926e;
}
.feature_inner p {
    min-height: 184px;
    padding: 0 20px;
    letter-spacing: 0.09em;
    line-height: 1.733;
}
.top_feature_btn a {
    display: inline-block;
    letter-spacing: 0.1em;
    line-height: 1;
    padding: 14px 86px 16px 24px;
    color: #fff;
    background: url(../images/map_btn_arrow.png) no-repeat right 13px center / 30px auto;
    background-color: #b19570;
    transition: 0.2s ease-in-out;
}
.top_feature_btn a:hover {
    background-position: right 4px center;
    background-color: #e79b6f;
}
.top_feature_btn {
    margin-top: 20px;
    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: 44vw 0 50px;
        background-size: 388px auto, 745px auto;
        background-position: left calc(50% - 120px) top 42vw, left bottom;
    }
    .feature .inner {
        padding: 40px 5% 0;
    }
    .feature .inner::before {
        top: 34px;
        left: 50%;
        font-size: 74px;
        letter-spacing: 0.1em;
        transform: translateX(-50%);
    }
    .feature .top_title {
        margin-bottom: 34px;
    }
    .feature_ph {
        top: 0;
        right: 0;
        width: 100vw;
        height: 44vw;
    }
    .feature_list {
        gap: 30px;
        padding: 0 0;
    }
    .feature_item {
        width: 100%;
    }
    .feature_item::before {
        top: -14px;
        right: 12px;
        width: 68px;
        height: 69px;
    }
    .feature_inner {
        padding: 15px 12px 20px;
    }
    .feature_title {
        min-height: initial;
        padding: 0 0 8px;
        margin-bottom: 14px !important;
    }
    .feature_title h3 {
        font-size: 17px;
        letter-spacing: 0.05em;
    }
    .feature_inner p {
        min-height: initial;
        padding: 0 0;
    }
    
    /* ---- 横並びボタン ----- */
    .btnflex_feature .btn01 {
        width: 100%;
    }
}

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

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

================================================================================================================================== */
.column {
    position: relative;
    background-color: #e4ded7;
}
.column::before {
    position: absolute;
    top: 132px;
    left: 50%;
    transform: translateX(-48.6%);
    font-family: "adobe-caslon-pro", serif;
    font-weight: 600;
    font-size: 120px;
    letter-spacing: 0.207em;
    line-height: 1;
    color: #fff;
    white-space: nowrap;
    content: "COLUMN";
    opacity: 0.3;
}
.column .inner {
    padding: 150px 0 99px;
}
.column .top_title {
    position: relative;
    margin-bottom: 58px;
}
.column_list {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    gap: 50px 13.33333px;
}
.column_box {
    position: relative;
    width: calc(25% - 10px);
    padding-bottom: 1px;
}
.column_box dt a {
    position: relative;
    display: block;
    padding: 18px 10px 15px;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-align: center;
    color: #594831;
    background-color: rgba(255, 255, 255, 0.9);
    transition: 0.2s ease-in-out;
}
.column_box dt a:hover {
    color: #ad926e;
    background-color: rgba(255, 255, 255, 0.9);
}
.column_box::after,
.column_box dt a::before,
.column_box dt a::after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(90deg, rgb(177,149,112) 0%, rgb(121,107,88) 50%, rgb(177,149,112) 100%);
    content: "";
}
.column_box dt a::before {
    top: 0;
}
.column_box::after,
.column_box dt a::after {
    bottom: 0;
}
.column_box dd:not(:last-of-type) {
    margin-bottom: 1px;
}
.column_box dd a {
    display: block;
    padding: 15px 10px 15px 33px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.1em;
    line-height: 1.5;
    color: #594831;
    background-color: rgba(255, 255, 255, 0.5);
}
.column_box dd a:hover {
    color: #e07d44;
    background-color: rgba(255, 255, 255, 0.8);
}
.column_box dd a::before {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 10px;
    border-radius: 100%;
    vertical-align: middle;
    background-color: #e79b6f;
    content: "";
}

/* ==============================================
  *SP 医療コラム
============================================== */
@media screen and (max-width: 640px) {
    .column::before {
        top: 42px;
        font-size: 60px;
        letter-spacing: 0.1em;
    }
    .column .inner {
        padding: 50px 5% 50px;
    }
    .column .top_title {
        margin-bottom: 30px;
    }
    .column_list {
        gap: 40px;
    }
    .column_box {
        width: 100%;
    }
}

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

  *無限スライダー

================================================================================================================================== */
#infinitySlider {
  padding: 10px;
}

#infinitySlider .splide__list {
  gap: 10px;
}

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

/* ==============================================
  *SP 無限スライダー
============================================== */
@media screen and (max-width: 640px) {
  #infinitySlider .splide__slide {
    width: 250px !important;
  }
}
