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

  *基本設定

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.front {
    overflow: hidden;
}
section .inner {
    padding: 100px 0;
}
.text>*:not(:last-child) {
    margin-bottom: 2em;
}
/* ----- パララックス ----- */
.parallax {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 500px;
}
/* 切り抜く範囲 */
.parallax_img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    clip-path: inset(0);
}
/* 固定する画像 */
.parallax_img::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    section .inner {
        padding: 70px 5%;
    }

    /* ----- パララックス ----- */
    .parallax {
        height: 300px;
    }
}

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

  *アニメーション

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

  *タイトル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.top_title {
    margin-bottom: 50px;
    line-height: 1.5;
    text-align: center;
    /* 左寄せ */
}
.top_title.title_left {
    text-align: start;
}
.top_title h2 {
    font-family: mizoletbokutoh, sans-serif;
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 0.15em;
}
.top_title .eng {
    display: inline-block;
    margin-bottom: 2px;
    font-family: "bebas-neue-pro-semiexpanded", sans-serif;
    font-weight: 400;
    font-size: 90px;
    letter-spacing: 0.08em;
    line-height: 1.07;
    background: linear-gradient(90deg, #55b8d9, #17a78c);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.mainvisual {
    position: relative;
    z-index: 1;
    height: 800px;
    overflow: hidden;
}
.mvSlider {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}
/* ----- スライダーのArrowボタン ----- */
.mvSlider .sliderBtn {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    padding: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transform: translateY(-50%);
}
.mvSlider .sliderBtn#mv_btnPrev {
    left: 20px;
}
.mvSlider .sliderBtn#mv_btnNext {
    right: 20px;
}
.mvSlider .sliderBtn span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    border-radius: 50%;
    transition: background 0.2s;
}
.mvSlider .sliderBtn span:hover {
    background: var(--text-color);
}
.mvSlider .sliderBtn span::before {
    padding: 0 0 1px 0;
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    color: #ffffff;
    font-size: 15px;
    transition: color 0.2s;
}
.mvSlider .sliderBtn#mv_btnPrev span::before {
    content: "\f060";
}
.mvSlider .sliderBtn#mv_btnNext span::before {
    content: "\f061";
}
/* 各スライダーのボタンは非表示に */
.mvSlider .splide__arrows {
    display: none;
}
/* ----- MVの画像 ----- */
.mvImg {
    width: 100%;
    height: 100%;
}
.mvImg .splide__track {
    width: 100%;
    height: 100%;
}
.mvImg .splide__slide {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.mvImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* フェードの専用スタイル */
.fade .mvImg .splide__slide img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: calc(100% + 50px);
    pointer-events: none;
}
/* アニメーションを実行 */
.fade.move .mvImg .splide__slide img {
    animation: hideTranslate 8s ease-out forwards;
}
.fade.move .mvImg .splide__slide.is-active img {
    animation: showTranslate 8s ease-out forwards;
}
/* MVのアニメーション  */
@keyframes showTranslate {
    0% {
        transform: translate3d(0, 0px, 0);
    }
    100% {
        transform: translate3d(0, -30px, 0);
    }
}
@keyframes hideTranslate {
    0% {
        transform: translate3d(0, -30px, 0);
    }
    100% {
        transform: translate3d(0, 0px, 0);
    }
}
/* ----- キャッチコピー ----- */
.mvCatch {
    position: absolute !important;
    top: /*40*/30%;
    left: 0;
    z-index: 3;
    width: 100%;
    transform: translateY(-50%);
}
.mvCatch .inner {
    position: relative;
    z-index: 1;
}
.mvCatch p {
    padding: 30px 0;
    font-family: mizoletbokutoh, sans-serif;
    font-weight: 400;
    font-size: 220%;
    text-align: center;
    letter-spacing: 0.2em;
	
/*     filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 10px #ffffff) drop-shadow(0 0 15px #ffffff); */
	
	
	
	        filter: drop-shadow(0 0 1px #ffffff) drop-shadow(0 0 7px #ffffff) drop-shadow(0 0 1px #ffffff);
	
	color: /*#706d6d*/#414040;
}

/* ----- コンテンツ ----- */
.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: 5px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
}
.open_bnr>* {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 270px;
    height: 270px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #b5a378;
    border: 1px solid rgba(223, 205, 162, 0.9);
    font-family: mizoletbokutoh, sans-serif;
    font-weight: 400;
    font-size: 110%;
    line-height: 1.5;
    text-align: center;
}
.open_bnr .date {
    font-size: 110%;
}
.open_bnr .open_text {
    margin: 0 0 6px;
    font-size: 180%;
}
.open_bnr .nairankai_tit {
    display: block;
    width: 100%;
    margin: 0 0 6px;
    padding: 5px 10px;
    background: #b5a378;
    border-radius: 300px;
    color: #fff;
    font-size: 90%;
    text-align: center;
}

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


.mv_wrap {
    position: absolute;
    left: 320px;
    bottom: 50px;
    display: flex;
    gap: 15px;
}

.mv_icon {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 190px;
    height: 190px;
    box-sizing: border-box;
    padding: 0 0 6px;
    font-family: mizoletbokutoh, sans-serif;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.4;
    color: #fff;
    border-radius: 100%;
    background:#c4beae;
	padding: 20px 0 0; 
}

.mv_icon i {
    display: block;
    width: 42px;
    height: 42px;
    font-size: 22px;
    margin-bottom: 6px;
    line-height: 42px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 100%;
}
.mv_icon span {
    display: block;
    margin-top: -6px;
    font-size: 22px;
}
.mv_icon span em {
    font-style: normal;
    font-size: 36px;
}

/* --- 2つ目のバナー専用の調整 --- */
.mv_icon.mv_chirashi p {
    font-size: 16px;
    line-height: 1.5;
}

.mv_icon.mv_chirashi:hover {
    opacity: 0.85;
}

@media screen and (min-width: 641px){
	.mv_icon.mv_chirashi p{
		padding-top: 15px;
	}	
}

/* ----- スマホ専用エリア ----- */
.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: 35%;
		top: 75%;
        display: none;
    }
    .mvCatch.is-active {
        display: block;
    }
    .mvCatch p {
        padding: 15px 0;
        font-size: min(4.8vw, 19px);
        line-height: 1.75;
/*         filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff); */
		        filter: drop-shadow(0 0 1px #ffffff) drop-shadow(0 0 7px #ffffff) drop-shadow(0 0 1px #ffffff);
    }

    /* ----- コンテンツ ----- */
    .mvContents .open_bnr,
    .mvContents .mv_icon{
        display: none;
    }
    .mv_icon {
        left: calc(50% - 95px);
        bottom: 20px;
        width: 160px;
        height: 160px;
    }
    .mv_icon i {
/*         width: 36px;
        height: 36px;
        font-size: 18px; */
        width: 30px;
        height: 30px;
		line-height: 30px;
        font-size: 15px;
    }
    .mv_icon span {
        font-size: 18px;
    }
    .mv_icon span em {
        font-size: 30px;
    }

    /* ----- 開院バナー ----- */
    .open_bnr {
        position: static;
        width: 86%;
        max-width: 350px;
        border-radius: 0;
		margin-bottom:30px;
    }
    .open_bnr>* {
        width: 100%;
        height: auto;
        padding: 15px 20px;
        border-radius: 0;
    }	
	
	.mv_wrap{
	position: static;
/* 		left:10px;
		bottom:10px;
		 left: 50%;
    transform: translateX(-50%); */
	}
	
	.mv_icon{
		width:140px;
		height:100px;
		padding: 8px 0 6px 0;
		border-radius: 0;
	}
	
	.mv_icon p{
		font-size:/*13*/12px;
		line-height: 1.5;
	}
	
	 .mv_icon span {
        font-size: 13px;
    }
    .mv_icon span em {
        font-size: 16px;
    }
	
	.mv_icon.mv_chirashi p {
    font-size: 13px;
    line-height: 1.5;
}

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

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.clinic {
    position: relative;
    z-index: 1;
}
.clinic::before {
    position: absolute;
    z-index: -1;
    width: calc(50% - 300px);
    height: calc(100% - 60px);
    background: url(../images/front/top_clinic_bg.jpg) repeat-x right center;
    content: "";
}

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

/* ----- 医院概要 ----- */
.clinic .info {
    position: relative;
}
.clinic .info::before {
    position: absolute;
    right: 0;
    top: 0;
    width: calc(50% + 660px);
    height: 100%;
    background-color: #fff;
    box-shadow: 0px 0px 80px 0px rgba(161, 142, 99, 0.1);
    content: "";
}
.clinic .info .inner {
    position: relative;
    display: flex;
    gap: 40px;
    padding: 70px 0 70px;
}
.clinic .info .inner>* {
    width: calc(50% - 20px);
}
.clinic .info .office_hour .title {
    background: #ffffff;
}
.clinic .info .office_hour .table_wrapper {
    background: #faf7f1;
}
.clinic .info address>* {
    position: relative;
    z-index: 1;
    min-height: 40px;
}
.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: #bfaa78;
}
.clinic .info address .location {
    padding: 0 0 0 30px;
    letter-spacing: 0.05em;
}
.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: "bebas-neue-pro-semiexpanded", sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0.15em;
}
.clinic .info address .tel a {
    color: #bfaa78;
}
.clinic .info address .tel::before {
    content: "\f3cd";
}
.clinic .info address .fax {
    margin-top: 15px;
    padding: 5px 0 5px 50px;
    font-size: 30px;
    line-height: 1;
}
.clinic .info address .fax::before {
    content: "\f249";
}
.clinic .info .note {
    margin-top: 12px;
    padding-left: 12px;
    font-size: 90%;
}
.clinic .info .speciality {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 20px auto 0;
    padding: 15px 20px;
    background: #faf7f1;
}
.clinic .info .speciality .title {
    flex-shrink: 0;
    width: fit-content;
    padding: 5px 40px;
    text-align: center;
    border-right: 1px solid #dbc99e;
}
.clinic .info .googlemap iframe {
    height: 380px;
}
.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::before {
        width: 40%;
        height: calc(100% - 40px);
    }
    .clinic .news .top_title {
        margin: 0 0 15px;
        text-align: center;
    }
    .clinic .news .top_title .eng {
        font-size: 50px;
    }
    .clinic .news .top_title h2 {
        font-size: 18px;
    }

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

    /* ----- 医院概要 ----- */
    .clinic .info::before {
        width: 97%;
    }
    .clinic .info .inner {
        flex-flow: column;
        gap: 30px;
        padding: 40px 4% 60px 7%;
    }
    .clinic .info .inner>* {
        width: 100%;
    }
    .clinic .info address .location {
        line-height: 1.7;
    }
    .clinic .info .speciality {
        flex-flow: column;
        gap: 10px;
        padding: 10px;
    }
    .clinic .info .speciality .title {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #dbc99e;
    }
    .clinic .info .googlemap iframe {
        height: 300px;
    }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.pickup {
    margin-top: -60px;
}
.pickup .inner {
    width: 100%;
    max-width: none;
    padding: 0 0 0;
}
.pickup_list {
    display: flex;
    flex-flow: wrap;
}
.pickup_item {
    width: 50%;
    padding: 100px 15px;
}
.pickup_inner {
    display: flex;
    flex-flow: column;
    justify-content: center;
    max-width: 520px;
    height: auto;
}
.pickup_title {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto 15px;
    padding: 0 0 30px;
    text-align: center;
    background: url(../images/front/top_pickup_tit_deco.png) no-repeat center bottom/520px auto;
}
.pickup_title h2, .pickup_title h3 {
    margin-top: -48px;
    font-family: mizoletbokutoh, sans-serif;
    font-weight: 400;
    font-size: 23px;
    letter-spacing: 0.15em;
    line-height: 1.6;
    color: var(--text-color);
    background: none;
}
.pickup_title .eng {
    font-family: "bebas-neue-pro-semiexpanded", sans-serif;
    font-weight: 400;
    font-size: 90px;
    letter-spacing: 0.05em;
    color: #7e7e7e;
    opacity: 0.1;
    line-height: 1;
}
.pickup_img {
    position: relative;
    z-index: 1;
}
.pickup_text {
    margin: 30px 0 40px;
}
.pickup_buttons {
    display: flex;
    flex-flow: wrap;
    gap: 10px;
    height: 100%;
    margin-top: auto;
}
.pickup_btn {
    width: calc(50% - 5px);
    height: fit-content;
}
.pickup_btn a {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    padding: 10px 35px;
    color: #ffffff;
    font-size: 95%;
    letter-spacing: 0.15em;
    text-align: center;
    background: linear-gradient(90deg, rgb(223,205,162) 0%, rgb(161,142,99) 50%, rgb(223,205,162) 100%);
    background-size: 200% 100%;
    background-position: 0% 50%;
    border-radius: 50px;
    transition: background-position .4s ease, color .2s ease;
}
.pickup_btn a:hover {
    color: #fff;
    background-position: 100% 50%;
}

/* ----- 奇数 ----- */
.pickup_item:nth-child(odd) {
    padding: 140px 80px 120px 50px;
    background: #fcfaf6;
}
.pickup_item:nth-child(odd) .pickup_inner {
    margin: 0 0 0 auto;
}

/* ----- 偶数 ----- */
.pickup_item:nth-child(even) {
    padding: 140px 50px 120px 80px;
    background: #f5f3ef;
}
.pickup_item:nth-child(even) .pickup_inner {
    margin: 0 auto 0 0;
}

/* ----------------------------------------------------------------------
    ▼ SP
  ---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .pickup {
        margin-top: -40px;
    }
    .pickup .top_title {
        margin: 0 auto 50px;
        padding: 0 20px;
    }
    .pickup .top_title h2 {
        font-size: 150%;
    }
    .pickup_list {
        width: 100%;
    }
    .pickup_item {
        width: 100%;
    }
    .pickup_item:nth-child(odd) {
        padding: 90px 5% 50px;
    }
    .pickup_item:nth-child(even) {
        padding: 40px 5% 50px;
    }
    .pickup_title h2, .pickup_title h3 {
        margin-top: -48px;
        font-size: 20px;
        letter-spacing: 0.1em;
    }
    .pickup_title .eng {
        font-size: 65px;
    }
    .pickup_inner {
        max-width: none;
        min-height: auto;
        margin: 0 !important;
    }
    .pickup_text {
        margin: 20px 0 30px;
    }
    .pickup_btn {
        width: 100%;
    }
}

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

  *バナーエリア

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
/* ----- 共通設定 ----- */
.top_banner {
    background: url(../images/front/top_banner_bg.jpg) no-repeat center/cover;
}
.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: 373px;
    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(--sub-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: 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(--sub-color);
}

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

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

    /* ----- スライダーバナー ----- */
    #bannerSlider .splide__inner {
        position: relative;
        z-index: 1;
        padding: 0 15px;
    }
    #bannerSlider .splide__slide {
        min-height: initial;
    }
    .top_banner .onlyimg .banner_slide img {
        width: 100% !important;
    }

    /* スライダーの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;
    }
}

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

  *ご挨拶（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting {
    position: relative;
    z-index: 1;
}
.greeting::before {
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
    width: calc(50% - 360px);
    height: 100%;
    background: url(../images/front/top_greeting_bg.jpg) no-repeat center/cover;
    content: "";
}
.greeting .inner {
    padding: 90px 0 120px;
}
.greeting_box {
    position: relative;
    z-index: 1;
}
.greeting_flex {
    display: flex;
    gap: 60px;
}
.greeting_box:not(:last-child) {
    margin-bottom: 70px;
}
.greeting_left {
    flex-shrink: 0;
    width: 700px;
}
.greeting_text>*:not(:last-child) {
    margin-bottom: 1.3em;
}
.greeting_text h3 {
    font-family: mizoletbokutoh, sans-serif;
    font-size: 22px;
    letter-spacing: 0.15em;
    line-height: 1.7;
    color: var(--main-color);
}
.greeting_profile {
    position: relative;
    margin: -60px 40px 0;
    padding: 25px;
    background: #bfaa78;
    color: #ffffff;
    text-align: center;
    font-family: mizoletbokutoh, sans-serif;
    letter-spacing: 0.1em;
    line-height: 1.7;
}
.greeting_profile .position {
    font-size: 120%;
}
.greeting_profile .name {
    font-size: 150%;
}
.greeting_profile .name span {
    margin-right: 20px;
    font-size: 80%;
}
.greeting_btn {
    margin-top: 50px;
    text-align: center;
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .greeting::before {
        width: 100%;
        height: 340px;
        opacity: 0.5;
    }
    .greeting .inner {
        padding: 40px 5% 60px;
    }
    .greeting_flex {
        flex-flow: column-reverse;
        gap: 25px;
    }
    .greeting_img {
        padding: 0 10%;
    }
    .greeting_profile {
        margin: -40px calc(10% + 15px) 0;
        padding: 15px;
    }
    .greeting_profile .position {
        font-size: 110%;
        letter-spacing: 0;
    }
    .greeting_profile .name {
        font-size: 140%;
    }
    .greeting_left {
        width: 100%;
    }
    .greeting_text h3 {
        font-size: min(4.8vw, 19px);
    }
    .greeting_btn {
        margin-top: 40px;
    }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.search {
    position: relative;
}
.search::before {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 60%;
    background-color: #fcfaf6;
    content: "";
}
.search .inner {
    padding: 80px 0 140px;
}
.search .tab_list {
    display: flex;
    flex-flow: wrap;
    gap: 10px;
    margin-bottom: 10px;
}
.search .tab_list li {
    display: flex;
    flex: 1;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 10px 20px;
    background: #dbc99e;
    color: #ffffff;
    font-family: mizoletbokutoh, sans-serif;
    font-weight: 400;
    font-size: 125%;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: transform 0.2s, padding 0.2s;
}
.search .tab_list li.is-active {
    background: #a18e63;
}

/* ----- パネル ----- */
.search .panel {
    display: none;
    margin: 0 !important;
    padding: 30px;
    background: #fcfaf6;
    border: 15px solid #fff;
    box-shadow: 0px 0px 80px 0px rgba(161, 142, 99, 0.1);
}
.search .panel>*:not(:last-child) {
    margin-bottom: 2em;
}

/* ----- 項目 ----- */
.search_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    height: fit-content;
}
.search_list a {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 60px;
    padding: 10px 30px;
    background: #f2ede1;
    color: #433411;
    font-size: 100%;
    letter-spacing: 0.02em;
}
.search_list a:hover {
    color: #fff;
    background: #dbc99e;
}
.search_list a::before {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    font-size: 100%;
    color: #a18e63;
    opacity: 0.3;
    content: "\f002";
}
.search_list a:hover:before {
    color: #fff;
}

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

/* ----------------------------------------------------------------------
    ▼ SP
  ---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .search .inner {
        padding: 40px 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: 120%;
        transform: translate(0, 0) !important;
    }

    /* ----- パネル ----- */
    .search .panel {
        padding: 10px;
        border: 6px solid #fff;
    }

    /* ----- 項目 ----- */
    .search_list {
        grid-template-columns: repeat(1, 1fr);
    }
    .search_list a {
        padding: 10px 15px 10px 30px;
        line-height: 1.5;
        letter-spacing: 0;
    }

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

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
    background: url(../images/front/top_feature_bg.jpg) repeat;
}
.feature .inner {
    padding: 100px 0 140px;
}
.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;
    left: -30px;
    bottom: -30px;
    width: calc(100% + 60px);
    height: 100%;
    background-color: #bababa;
    opacity: 0.2;
    content: "";
}
.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: 360px;
    margin: 0 0 0 -50px;
    padding: 40px 50px 45px;
    background: url(../images/front/top_feature_text_bg.png) no-repeat center/100% auto;
}
.feature_title {
    position: relative;
    display: flex;
    flex-flow: column;
    margin-bottom: 25px;
    padding-bottom: 18px;
}
.feature_title::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    width: calc(100% - 90px);
    height: 1px;
    background-color: #bfaa78;;
    content: "";
}
.feature_title h3 {
    font-family: mizoletbokutoh, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.6;
    letter-spacing: 0.15em;
    color: var(--main-color);
}
.feature_num {
    position: absolute;
    left: 0;
    bottom: -10px;
    font-family: "bebas-neue-pro-semiexpanded", sans-serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.08em;
    line-height: 1;
    color: #bfaa78;
}
.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_item:nth-child(even) {
    flex-flow: row-reverse;
}
.feature_item:nth-child(even) .feature_inner {
    margin: 0 -50px 0 0;
}
.feature_item:nth-child(even) .feature_img::before {
    left: auto;
    right: -30px;
}

/* ----------------------------------------------------------------------
    ▼ SP
  ---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .feature {
        padding-bottom: 0;
    }
    .feature .inner {
        padding: 40px 5% 60px;
    }
    .feature_list {
        gap: 30px;
    }
    .feature_item {
        flex-flow: column;
        width: 100%;
        margin: 0;
    }
    .feature_img {
        width: 100%;
        margin: 0;
    }
    .feature_inner {
        width: 100%;
        min-height: auto;
        margin: 0;
        padding: 30px 20px;
        background-size: cover;
    }
    .feature_title {
        min-height: auto;
        margin-bottom: 15px;
    }
    .feature_title h3 {
        letter-spacing: 0.1em;
        font-size: min(5vw, 19px);
    }

    /* ----- 左右 ----- */
    .feature_item:nth-child(even) {
        flex-flow: column;
    }
    .feature_item:nth-child(even) .feature_inner {
        margin: 0 auto;
    }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
    background: url(../images/front/top_medical_bg.jpg) no-repeat center top/cover;
}
.medical .inner {
    padding: 90px 0 140px;
}
.medical_list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 24px;
}
.medical_item {
    position: relative;
    z-index: 1;
    width: calc(25% - 18px);
    height: auto;
    box-shadow: 0px 0px 30px 0px rgba(161, 142, 99, 0.1);
}
.medical_item:hover {
    transform: translateY(-10px);
}
.medical_item::before {
    position: absolute;
    top: 8px;
    left: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border: 1px solid #dbc99e;
    content: "";
}
.medical_img {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    transition: background 0.2s;
}
.medical_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.medical_inner {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 270px;
    padding: 30px 20px 40px;
    background: url(../images/front/top_medical_item_bg.jpg) no-repeat center;
    text-align: center;
}
.medical_inner>*:not(:last-child) {
    margin-bottom: 15px;
}
.medical_icon {
    width: 70%;
    max-width: 110px;
    margin: 0 auto 15px !important;
}
.medical_title h3 {
    font-family: mizoletbokutoh, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.364;
    letter-spacing: 0.12em;
    color: var(--text-color);
}
.medical_title h3 span {
    display: inline-block;
    margin-top: 3px;
    font-size: 14px;
    letter-spacing: 0.07em;
    line-height: 1.4;
}
.medical_title_eng {
    margin-top: 10px;
    font-family: "bebas-neue-pro-semiexpanded", sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.08em;
    color: #bfaa78;
}
.medical_text {
    color: var(--text-color);
}
.medical_btn span {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin: 0 auto;
    padding: 7px 25px 7px 15px;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    color: #ffffff;
    letter-spacing: 1px;
    text-align: center;
    transition: padding 0.2s, color 0.2s, background 0.2s;
}
.medical_btn span::after {
    content: "\f105";
    position: absolute;
    top: 50%;
    right: 10px;
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    transform: translateY(-50%);
}
.medical_item:hover .medical_btn span {
    background: #ffffff;
    color: var(--main-color);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .medical .inner {
        padding: 40px 5% 60px;
    }
    .medical_list {
        gap: 15px 10px;
    }
    .medical_item {
        width: calc(50% - 5px);
    }
    .medical_item:hover {
        transform: translateY(-5px);
    }
    .medical_item::before {
        top: 4px;
        left: 4px;
        width: calc(100% - 8px);
        height: calc(100% - 8px);
    }
    .medical_inner {
        min-height: auto;
        padding: 20px 10px;
    }
    .medical_icon {
        width: 50%;
    }
    .medical_title h3 {
        font-size: 105%;
        letter-spacing: 0;
    }
    .medical_title h3 span {
        font-size: min(3.5vw, 13px);
        letter-spacing: 0;
    }
    .medical_title_eng {
        margin-top: 6px;
        font-size: 11px;
    }
}

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

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

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

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

  *無限スライダー

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

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