@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 20px;
        max-width: 100%;
    }

    /* ----- パララックス ----- */
    .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
---------------------------------------------------------------------- */
h2,
h3,
h4 {
    font-family: var(--font-jp);
}

.top_title {
    margin-bottom: 50px;
    line-height: 1.5;
    text-align: center;

    /* 左寄せ */
}

.top_title.title_left {
    text-align: start;
}

.top_title h2 {
    font-size: 220%;
}

.top_title .eng {
    display: inline-block;
    margin-bottom: 5px;
    color: var(--main-color);
    font-size: 600%;
    letter-spacing: 7px;
    line-height: 1.2;
    font-family: var(--font-en_title);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .top_title {
        margin-bottom: 40px;
    }

    .top_title h2 {
        margin: 5px 0 0;
        font-size: 26px;
    }

    .top_title .eng {
        font-size: 40px;
    }
}

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

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.mainvisual {
    position: relative;
    z-index: 1;
    height: 960px;
    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;
}

.splide.mvImg {
    width: 100%;
    margin-left: auto;
/*     padding: 40px 0 0; */
}

.splide.mvImg img {
/*     border-radius: 0 0 50px 0; */
}

/* ----- 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: 50%;
    left: 0;
    z-index: 3;
    width: 100%;
    transform: translateY(-50%);
}

.mvCatch .inner {
    position: relative;
    max-width: calc(100% - 150px);
    z-index: 1;
}

.mvCatch p {
    font-size: 170%;
    font-family: var(--font-jp);
    filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff);
}

.mvCatch p span {
    color: var(--main-color);
}

/* ----- コンテンツ ----- */
.mvContents {
    position: absolute !important;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.mvContents .inner {
    position: relative;
    z-index: 2;
    max-width: calc(100% - 150px);
    height: 100%;
}

.mvContents .splide__track {
    width: 100%;
    height: 100%;
}

/* ----- 開院バナー ----- */
.open_bnr {
    position: absolute;
    bottom: 50px;
    display: inline-block;
    padding: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.open_bnr>* {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 280px;
    padding: 15px;
    background: var(--main-color);
    border-radius: 50%;
    color: #ffffff;
    font-size: 110%;
    line-height: 1.5;
    text-align: center;
}

.open_bnr .date {
    font-size: 110%;
}

.open_bnr .open_text {
    margin: 0 0 10px;
    font-size: 180%;
}

.open_bnr .nairankai_tit {
    display: block;
    width: 100%;
    margin: 0 0 10px;
    padding: 5px 10px;
    background: #ffffff;
    border-radius: 300px;
    color: var(--main-color);
    font-size: 90%;
    text-align: center;
}

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

.open_bnr.subcolor>* .nairankai_tit {
    color: var(--sub-color);
}

.mv_bnr {
    position: absolute;
    bottom: 80px;
    left: 0;
    display: flex;
    gap: clamp(10px, 0.8vw, 15px);
}

.mv_bnr>* {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: clamp(140px, 10.4vw, 200px);
    aspect-ratio: 1;
    padding: clamp(50px, 3.6vw, 70px) clamp(10px, 0.8vw, 15px) clamp(10px, 0.8vw, 15px);
    border-radius: 50%;
    color: #fff;
    font-family: var(--font-jp);
    font-size: clamp(.9rem, .9vw, 1.15rem);
    line-height: 1.45;
    text-align: center;
    background: url(../images/front/mv_icon01.svg) no-repeat center top 16% / 28% auto,
        rgba(149, 129, 196, .8);
	transition: opacity 0.2s,transform 0.2s;
}

.mv_bnr>*:nth-child(2) {
    background: url(../images/front/mv_icon02.svg) no-repeat center top 19% / 28% auto,
        rgba(118, 164, 211, .8);
    font-size: clamp(.95rem, .95vw, 1.2rem);
}

.mv_bnr>*:nth-child(3) {
    background: url(../images/front/mv_icon03.svg) no-repeat center top 19% / 25% auto,
        rgba(143, 198, 89, .8);
    font-size: clamp(1rem, 1vw, 1.3rem);
}

.mv_bnr>*:nth-child(4) {
    background: url(../images/front/mv_icon04.svg) no-repeat center top 16% / 18% auto,
        rgba(243, 172, 187, .8);
    font-size: clamp(1rem, 1vw, 1.3rem);
}

.mv_bnr>*:hover{
	color:#fff;
	opacity: 0.8;
	transform: translatey(-8px);
}

/* ----- スマホ専用エリア ----- */
.sp_only {
    display: none;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .mainvisual {
        height: 700px;
    }

    .splide.mvImg {
        width: 100%;
        padding: 0;
    }

    /* ----- スライダーの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: /*25*/40%;
        display: none;
    }

    .mvCatch.is-active {
        display: block;
    }

    .mvCatch .inner {
        max-width: 100%;
    }

    .mvCatch p {
        font-size: 130%;
        line-height: 1.75;
        filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff);
    }

    /* ----- コンテンツ ----- */
    .mvContents {
/*         display: none; */
    }
	.mvContents .inner{
		max-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_bnr {
/*         position: static; */
		bottom: 25px;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .mv_bnr>* {
        width: min(42vw, 150px);
        aspect-ratio: 1;
        padding: 52px 10px 12px;
        font-size: .95rem;
        background-size: 30% auto;
        background-position: center 15%;
    }

    .mv_bnr>*:nth-child(2) {
        background-size: 30% auto;
        background-position: center 18%;
    }

    .mv_bnr>*:nth-child(3) {
        background-size: 27% auto;
        background-position: center 18%;
    }

    .mv_bnr>*:nth-child(4) {
        background-size: 20% auto;
        background-position: center 15%;
    }

    /* ----- スマホ専用エリア ----- */
    .sp_only {
        display: block;
        background: none !important;
    }
	.sp_only .mv_bnr{
		display:none;
	}
    .sp_only .inner {
        padding: 0 20px;
    }

    .sp_only_contents {
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
}

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

  *バナーエリア

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.top_banner .inner {
    padding: 80px 0 130px;
    width: calc(100% - 100px);
    max-width: 1400px;
}

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

/* 画像のみのバナー */
.top_banner .onlyimg .banner_slide {
    height: fit-content;
    padding: 0;
}

.top_banner .onlyimg .banner_slide img {
    width: 100%;
    height: auto;
    transition: opacity 0.2s;
}

.top_banner .onlyimg a.banner_slide:hover img {
    opacity: 0.5;
}

/* インプットバナー */
.top_banner .input .banner_slide {
    gap: 10px;
    width: 100%;
    height: 100%;
    padding: 15px;
    background: var(--bg-color);
}

.top_banner .input .banner_slide .slide_img {
    flex-shrink: 0;
    width: calc(30% - 10px);
    height: 100%;
}

.top_banner .input .banner_slide .slide_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top_banner .input .banner_slide .slide_inner {
    width: 100%;
    height: 100%;
    padding: 0 0 10px;
}

.top_banner .input .banner_slide .slide_title {
    margin: 0 auto 10px;
    padding: 5px;
    border-bottom: 1px solid var(--line-color);
    color: var(--main-color);
    font-size: 110%;
    line-height: 1.5;
}

.top_banner .input .banner_slide .slide_content {
    font-size: 90%;
}

.top_banner .input a.banner_slide:hover {
    opacity: 0.6;
}

/* ----- グリッドバナー ----- */
.banner_grid ul {
    display: flex;
    flex-flow: wrap;
    gap: 20px;
}

.banner_grid li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(33.3333333333% - 13.3333333333px);
}

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

#bannerSlider .splide__inner {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

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

/* スライダーのArrowボタン */
#bannerSlider .bannerSlider_arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    padding: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transform: translateY(-50%);
}

#bannerSlider .bannerSlider_arrow i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 0 1px 0;
    background: var(--sub-green);
    border-radius: 50%;
    font-size: 80%;
    transition: background 0.2s;
}

#bannerSlider .bannerSlider_arrow:hover i {
    background: var(--sub-green);
}

#bannerSlider .bannerSlider_arrow_prev {
    left: 10px;
}

#bannerSlider .bannerSlider_arrow_next {
    right: 10px;
}

/* ページネーション */
#bannerSlider .bannerSlider_pagination {
    z-index: 1;
    display: flex;
    gap: 15px;
    margin: 0 auto 30px;
}

#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-blue);
}

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

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

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

    /* スライダーのArrowボタン */
    #bannerSlider .bannerSlider_arrow {
        width: 40px;
        height: 40px;
    }

    #bannerSlider .bannerSlider_arrow i {
        padding: 0 0 1px 0;
    }

    /* ページネーション */
    #bannerSlider .bannerSlider_pagination {
        gap: 12px;
        margin: 0;
    }

    #bannerSlider .bannerSlider_page {
        width: 8px;
        height: 8px;
    }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.clinic {
    position: relative;
    z-index: 1;
    background: var(--bg-color);
}

.clinic::before {
    position: absolute;
    content: '';
    left: 0;
    top: -20px;
    right: 0;
    width: 100%;
    height: 80px;
    background: #ffffff;
    -webkit-mask: url(../images/front/top_news_wave.png) no-repeat center / cover;
    mask: url(../images/front/top_news_wave.png) no-repeat center / cover;
    pointer-events: none;
}

/* ----- お知らせ ----- */
.clinic .news {
    position: relative;
}

.clinic .news::before,
.clinic .news::after {
    position: absolute;
    content: '';
    z-index: 0;
}

.clinic .news::before {
    top: -80px;
    left: clamp(-15px, -2vw, -30px);
    width: clamp(220px, 23.5vw, 452px);
    aspect-ratio: 452 / 272;
    background: url(../images/front/flower_01.png) no-repeat center / cover;
}

.clinic .news::after {
    top: -60px;
    right: clamp(-150px, -8vw, -60px);
    width: clamp(300px, 31vw, 596px);
    aspect-ratio: 596 / 272;
    background: url(../images/front/flower_02.png) no-repeat center / cover;
    transform: rotate(36deg);
}

.clinic .news .inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    padding: 160px 0 70px;
    width: calc(100% - 150px);
    max-width: 1400px;
}

.clinic .news .news_left {
    flex-shrink: 0;
}

.clinic .news .top_title {
    margin: 0 0 30px;
}

.clinic .news .top_title h2 {
    font-size: 180%;
}

.clinic .news .top_title .eng {
    font-size: 300%;
}

.clinic .news .btn01 {
    margin-top: 30px;
    text-align: center;
}

.clinic .news .btn01>* {
    background: none;
    color: var(--main-color);
}

/* ----- 医院概要 ----- */
.clinic .info .inner {
    display: flex;
    gap: 70px;
    padding: 0 0 150px;
    width: calc(100% - 150px);
    max-width: 1400px;
}

.clinic .info .inner>* {
    width: calc(50% - 20px);
}

.clinic .info .office_hour .title {
    background: #ffffff;
}

.clinic .info .office_hour .table_wrapper {
    background: #ffffff;
}

.clinic .info address>* {
    position: relative;
    z-index: 1;
    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: var(--sub-color);
    border-radius: 50%;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--main-color);
    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: 15px;
    padding: 3px 0 7px 50px;
    font-size: 105%;
/*     line-height: 1; */
    letter-spacing: 4px;
    font-family: var(--font-en);
}
.clinic .info address .tel a{
	color: var(--text-color);
	pointer-events: none;
}
.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: 20px;
    padding-left: 12px;
    font-size: 90%;
}

.clinic .info .speciality {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 30px auto;
    font-family: var(--font-jp);
}

.clinic .info .speciality span {
    padding: 2px 20px;
    border-radius: 30px;
    width: 33%;
    text-align: center;
    color: var(--main-color);
    border: 1px solid;
    font-size: 90%;
}

.clinic .info .office_hour:first-child {
    margin-top: 30px;
}

.clinic .info .googlemap iframe {
    width: 100%;
    height: 350px;
    border: 1px solid var(--line-color) !important;
}

.clinic .info .list_access {
    margin-top: 5px;
}

.clinic .info .calendar_text {
    margin-top: 20px;
}

.clinic .info .btn01 {
    margin-top: 30px;
    text-align: right;
}

.clinic .info .btn01>* {
    font-family: var(--font-en);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .clinic .news::before {
        top: -30px;
        left: -20px;
        width: 140px;
    }

    .clinic .news::after {
        top: -20px;
        right: -50px;
        width: 180px;
        transform: rotate(36deg);
    }

    /* ----- お知らせ ----- */
    .clinic .news .inner {
        flex-flow: column;
        gap: 0;
        padding: 100px 0 60px;
        width: calc(100% - 40px);
    }

    .clinic .news .top_title .eng {
        font-size: 40px;
        margin-bottom: 0;
    }

    /* ----- 医院概要 ----- */
    .clinic .info .inner {
        flex-flow: column;
        padding: 0 0 70px;
        width: calc(100% - 40px);
    }

    .clinic .info .inner>* {
        width: 100%;
    }

    .clinic .info address .location {
        display: block;
    }

    .clinic .info .speciality {
/*         flex-flow: column; */
        gap: /*10*/6px;
    }

    .clinic .info .speciality span {
        width: 100%;
        padding: 10px;
        font-size: 100%;
    }

    .clinic .info .btn01 {
        text-align: center;
    }
}

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

  *ご挨拶（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting {
    position: relative;
    z-index: 1;
}

.greeting_box {
    position: relative;
    z-index: 1;
}

.greeting_flex {
    display: flex;
    gap: 50px;
}

.greeting_box:not(:last-child) {
    margin-bottom: 70px;
}

.greeting_left {
    flex-shrink: 0;
    width: 60%;
}

.greeting_text>*:not(:last-child) {
    margin-bottom: 2em;
}

.greeting_profile {
    padding: 20px;
    background: var(--main-color);
    color: #ffffff;
    line-height: 1.75;
    text-align: center;
}

.greeting_profile .position {
    font-size: 130%;
}

.greeting_profile .name {
    font-size: 150%;
}

.greeting_btn {
    margin-top: 50px;
    text-align: center;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .greeting_flex {
        flex-flow: column-reverse;
        gap: 25px;
    }

    .greeting_left {
        width: 100%;
    }

    .greeting_btn {
        margin-top: 40px;
    }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
    position: relative;
    background: linear-gradient(rgba(42, 52, 95, 0.8), rgba(149, 134, 185, 0.8)), url(../images/front/medical_bg.jpg) no-repeat bottom center/cover;
}

.medical::before,
.medical::after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    width: 100%;
    height: 15px;
    pointer-events: none;
}

.medical::before {
    top: -5px;
    background: var(--bg-color);
    -webkit-mask: url(../images/front/wave_01.svg) repeat-x top center / contain;
    mask: url(../images/front/wave_01.svg) repeat-x top center / contain;
    transform: rotate(180deg);
}

.medical::after {
    bottom: 0;
    background: #ffffff;
    -webkit-mask: url(../images/front/wave_01.svg) repeat-x top center / contain;
    mask: url(../images/front/wave_01.svg) repeat-x top center / contain;
}

.medical .inner {
    width: calc(100% - 100px);
    max-width: 1400px;
    padding: 120px 0 170px;
}

.medical .top_title .eng,
.medical .top_title {
    color: #ffffff;
}

.medical .top_title span {
    color: var(--main-color);
}

.medical_list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 20px;
}

.medical_item {
    position: relative;
    z-index: 1;
    width: calc(25% - 15px);
    height: auto;
}

.medical_item:hover {
    transform: translateY(-10px);
}

.medical_img {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    transition: background 0.2s;
}

.medical_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.medical_inner {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 30px 20px 40px;
    text-align: center;
    border-right: 1px solid #ffffff;
}

.medical_item:last-child .medical_inner {
    border-right: none;
}

.medical_inner>*:not(:last-child) {
    margin-bottom: 15px;
}

.medical_icon {
    width: 70%;
    max-width: 130px;
    padding: 20px;
    margin: 0 auto 15px !important;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
}

.medical_title h3 {
    color: #ffffff;
    font-size: 140%;
}

.medical_title_eng {
    margin-top: 5px;
    color: #ffffff;
    font-family: var(--font-en);
    font-size: 12px;
    line-height: 1;
    letter-spacing: 1px;
    text-align: center;
}

.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 {
        background: linear-gradient(rgba(65, 79, 140, 0.8), rgba(149, 134, 185, 0.8)), url(../images/front/medical_bg_sp.jpg) no-repeat top center/cover;
    }

    .medical .inner {
        width: calc(100% - 40px);
    }

    .medical_item:nth-child(2n) .medical_inner {
        border-right: none;
    }

    .medical_list {
        gap: 15px 10px;
    }

    .medical_item {
        width: calc(50% - 5px);
    }

    .medical_item:hover {
        transform: translateY(-5px);
    }

    .medical_inner {
        min-height: auto;
        padding: 20px 10px;
    }

    .medical_icon {
        width: 100%;
    }

    .medical_title h3 {
        font-size: 110%;
    }
}

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

  *当院のオススメ診療

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.pickup {
    position: relative;
}

.pickup::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 300px;
    background: var(--bg-color);
    -webkit-mask: url(../images/front/wood.svg) repeat-x top center / contain;
    mask: url(../images/front/wood.svg) repeat-x top center / contain;
    pointer-events: none;
}

.pickup_deco {
    position: absolute;
    top: -100px;
    right: clamp(10px, 2vw, 20px);
    display: flex;
    gap: 15px;
}

.pickup_deco img {
    width: clamp(250px, 20vw, 360px);
    aspect-ratio: 5 / 6;
    object-fit: cover;
    border-radius: clamp(25px, 2vw, 40px);
}

.pickup .inner {
    max-width: 1920px;
    padding: 120px 0 400px;
}

.pickup .top_title {
    width: calc(100% - 200px);
    text-align: left;
    margin: 0 auto 80px;
}

.pickup_list {
    position: relative;
    display: flex;
    flex-flow: wrap;
    gap: 120px;
}

.pickup_item {
    display: flex;
    align-items: center;
    width: 100%;
}

.pickup_img {
    position: relative;
    flex: 0 0 40%;
}

/* Vビームの機器 */
.pickup_item:first-of-type .pickup_img::before {
    position: absolute;
    content: '';
    bottom: -50px;
    right: 60px;
    width: 160px;
    height: 270px;
    background: url(../images/front/Vbeam-II_Gray.png) no-repeat center / contain;
    z-index: 0;
}

.pickup_inner {
    flex: 0 0 55%;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.pickup_title {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.pickup_title h3 {
    background: none;
    font-size: clamp(1.5rem, 1.1vw + 1rem, 2.25rem);
    text-align: left;
    line-height: 1.5;
    color: var(--main-color);
}

.pickup_title .eng {
    color: var(--main-color);
}

.pickup_text {
    margin: 30px 0;
}

.pickup_text h4 {
    font-size: clamp(1.125rem, 0.85vw + 0.5rem, 1.6rem);
    margin-bottom: 20px;
    color: var(--main-color);
}

/* 共通 */
.pickup_text ul,
.pickup_text ol {
    background: var(--bg-green);
    border-radius: 10px;
}

.pickup_text ul li,
.pickup_text ol li {
    position: relative;
    padding-left: 50px;
    line-height: 30px;
}

.pickup_text ul li:before,
.pickup_text ol li:before {
    position: absolute;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: var(--sub-green);
    border-radius: 50%;
    color: #ffffff;
    font-style: normal;
}

.pickup_text ul {
    margin-bottom: 30px;
    padding: 30px 30px 20px 40px;
}

.pickup_text ul li {
    margin-bottom: 10px;
}

.pickup_text ul li:before {
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.pickup_text ol {
    padding: 30px 30px 30px 40px;
}

.pickup_text ol li:before {
    content: counter(number);
    font-size: 140%;
    font-family: var(--font-en);
    font-weight: 500;
}

.pickup_buttons {
    display: flex;
    flex-flow: wrap;
    gap: 10px;
    margin-top: auto;
}

.pickup_buttons .pickup_btn:only-child {
    width: 100%;
}

.pickup_btn {
    width: calc(50% - 5px);
    height: fit-content;
}

.pickup_btn a {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    padding: 15px 35px;
    background: #ffffff;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    font-family: var(--font-jp);
    font-size: 95%;
    letter-spacing: 0.15em;
    text-align: center;
    transition: background 0.2s, color 0.2s;
    border-radius: 10px;
}

.pickup_btn a::after {
    content: "\f054";
    position: absolute;
    top: 50%;
    right: 15px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 11px;
    transform: translateY(-50%);
    transition: right 0.2s;
}

.pickup_btn a:hover {
    background: var(--main-color);
    color: #ffffff;
    border: 1px solid var(--main-color);
}

.pickup_btn a:hover::after {
    right: 12px;
}

/* ----- 奇数 ----- */
.pickup_item:nth-child(odd) .pickup_inner {
    margin-left: 0;
    margin-right: auto;
    padding-left: 100px;
}

.pickup_item:nth-child(odd) .pickup_img img {
    border-radius: 0 30px 30px 0;
}

/* ----- 偶数 ----- */
.pickup_item:nth-child(even) {
    flex-direction: row-reverse;
}

.pickup_item:nth-child(even) .pickup_inner {
    margin-right: 0;
    margin-left: auto;
    padding-right: 100px;
}

.pickup_item:nth-child(even) .pickup_img img {
    border-radius: 30px 0 0 30px;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .pickup::after {
        height: 100px;
    }

    .pickup_deco {
        top: -50px;
        right: 10px;
        gap: 10px;
    }

    .pickup_deco img {
        width: clamp(80px, 22vw, 110px);
        height: auto;
        border-radius: 12px;
    }

    .pickup .inner {
        padding: 100px 20px 120px;
    }

    .pickup .top_title {
        width: 100%;
    }

    .pickup_list {
        width: 100%;
        gap: 70px;
    }

    .pickup_item,
    .pickup_item:nth-child(even) {
        flex-direction: column;
    }

    .pickup_img,
    .pickup_inner {
        flex: inherit;
        width: 100%;
    }

    .pickup_inner,
    .pickup_item:nth-child(odd) .pickup_inner,
    .pickup_item:nth-child(even) .pickup_inner {
        margin: 0;
        padding: 30px 10px 0;
    }

    .pickup_title {
        margin-bottom: 25px;
    }

    .pickup_title h3 {
        font-size: 1.75rem;
        line-height: 1.4;
    }

    .pickup_text {
        margin: 20px 0;
    }

    .pickup_text h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .pickup_text ul,
    .pickup_text ol {
        padding: 20px;
    }

    .pickup_text ul li,
    .pickup_text ol li {
        padding-left: 40px;
        line-height: 1.8;
    }

    .pickup_text ul li::before,
    .pickup_text ol li::before {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }

    .pickup_buttons {
        gap: 12px;
    }

    .pickup_btn,
    .pickup_buttons .pickup_btn:only-child {
        width: 100%;
    }

    .pickup_btn a {
        padding: 14px 40px 14px 20px;
        font-size: 0.95rem;
    }

    /* 画像の角丸を統一 */
    .pickup_item:nth-child(odd) .pickup_img img,
    .pickup_item:nth-child(even) .pickup_img img {
        border-radius: 20px;
    }

    /* Vビーム装飾 */
    .pickup_item:first-of-type .pickup_img::before {
        width: 90px;
        height: 150px;
        bottom: -20px;
        right: 15px;
    }
}

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

  *お悩みから探す

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.search {
    position: relative;
    background: var(--bg-color);
}

.search::before {
    position: absolute;
    content: '';
    z-index: 0;
    top: -15px;
    left: 0;
    right: 0;
    width: 100%;
    height: 15px;
    background: var(--bg-color);
    -webkit-mask: url(../images/front/wave_01.svg) repeat-x top center / contain;
    mask: url(../images/front/wave_01.svg) repeat-x top center / contain;
    z-index: 1;
}

.search_deco img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.search .inner {
    width: calc(100% - 200px);
    max-width: 1500px;
    padding: 180px 0 0;
}

.search_img {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
    height: 100%;
}

.search_img img {
    border-radius: 10px;
    max-height: 45vh;
    height: 100%;
    object-fit: cover;
}

.search .top_title {
    position: absolute;
    text-align: left;
    padding: 0 70px 30px 30px;
    background: var(--bg-color);
    border-radius: 0 0 20px 0;
    margin-bottom: 0;
}

.search .top_title::before,
.search .top_title::after {
    position: absolute;
    content: '';
    background: url(../images/front/kadomaru.svg) no-repeat center / cover;
    width: 10px;
    height: 10px;
}

.search .top_title::before {
    bottom: -10px;
    left: 0;
}

.search .top_title::after {
    top: 0;
    right: -10px;
}

.search .top_title .eng {
    font-size: 500%;
}

.search .top_title h2 {
    font-size: 180%;
}

.search .tab_wrapper {
    display: flex;
    gap: 60px;
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 100px;
}

.search .tab_list {
    display: flex;
    flex-flow: column;
    gap: 0;
    width: 30%;
}

.search .tab_list li {
    position: relative;
    padding: 0 20px 0 25px;
    color: #bfb7d3;
    font-family: var(--font-jp);
    font-size: 130%;
    cursor: pointer;
    transition: transform 0.2s, padding 0.2s;
    width: 100%;
}

.search .tab_list li.is-active {
    color: var(--main-color);
}

.search .tab_list li.is-active::before,
.search .tab_list li.is-active::after {
    position: absolute;
    content: '';
    background: var(--main-color);
}

.search .tab_list li.is-active::before {
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    transform: translateY(-50%);
    border-radius: 50%;
}

.search .tab_list li.is-active::after {
    margin: auto;
    right: 0;
    width: /*80px*/18%;
    height: 1px;
    top: 0;
    bottom: 0;
}

.search .panel_wrapper {
    width: 70%;
}

/* ----- パネル ----- */
.search .panel {
    display: none;
    margin: 0 !important;
    background: var(--bg-color);
}

.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;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 80px;
    padding: 10px 30px 10px 20px;
    background: #ffffff;
    color: var(--main-color);
    font-family: var(--font-jp);
    font-size: 110%;
    line-height: 1.5;
    border-radius: 8px;
}

.search_list a::after {
    content: "\f054";
    position: absolute;
    top: 50%;
    right: 15px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 11px;
    transform: translateY(-50%);
    transition: right 0.2s;
}

.search_list a:hover {
    background: var(--main-color);
    color: #ffffff;
}

.search_list a:hover::after {
    right: 12px;
}

/* リンク先準備中（クリック不可） （リンク先#の場合）*/
.search_list a[href="#"]{
  pointer-events: none;
  position:relative;
}
.search_list a[href="#"]:before{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top:0;
  left: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  content: "準備中";
    border-radius: 8px;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .search::before {
        height: 10px;
        top: -10px;
    }

    .search_deco img {
        height: 220px;
    }

    .search .inner {
        width: calc(100% - 40px);
        padding: 80px 0 0;
    }

    .search_img {
        min-height: 300px;
        margin-bottom: 10px;
    }

    .search_img img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .search .top_title {
        padding: 0 25px 20px 20px;
        border-radius: 0 0 15px 0;
    }

    .search .top_title::before,
    .search .top_title::after {
        width: 8px;
        height: 8px;
    }

    .search .top_title::before {
        bottom: -8px;
    }

    .search .top_title::after {
        right: -8px;
    }

    .search .top_title .eng {
        font-size: 2rem;
        letter-spacing: 4px;
        margin-bottom: 0;
    }

    .search .top_title h2 {
        font-size: 1.4rem;
    }

    /* タブ */
    .search .tab_wrapper {
        flex-direction: column;
        gap: 30px;
        padding-bottom: 60px;
    }

    .search .tab_list,
    .search .panel_wrapper {
        width: 100%;
    }

    .search .tab_list li {
        padding: 12px 0 12px 20px;
        font-size: 1.1rem;
        border-bottom: 1px solid #ddd;
    }

    .search .tab_list li.is-active::before {
        width: 6px;
        height: 6px;
    }

    .search .tab_list li.is-active::after {
        display: none;
    }

    /* パネル */
    .search .panel>*:not(:last-child) {
        margin-bottom: 1.5em;
    }

    /* リスト */
    .search_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .search_list a {
        min-height: 60px;
        padding: 12px 28px 12px 14px;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .search_list a::after {
        right: 12px;
        font-size: 10px;
    }
}

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

  *▼施術メニューから探す（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.treatment {
    position: relative;
    background: var(--bg-color);
}

.treatment::before,
.treatment::after {
    position: absolute;
    content: '';
    z-index: 2;
    bottom: -130px;
}

.treatment::before {
    left: clamp(-25px, -2vw, -30px);
    width: clamp(220px, 23.5vw, 452px);
    aspect-ratio: 452 / 272;
    background: url(../images/front/flower_01.png) no-repeat center / cover;
}

.treatment::after {
    right: clamp(-150px, -8vw, -60px);
    width: clamp(300px, 31vw, 596px);
    aspect-ratio: 596 / 272;
    background: url(../images/front/flower_02.png) no-repeat center / cover;
}

.treatment .inner {
    width: calc(100% - 200px);
    max-width: 1500px;
    padding: 100px 0 150px;
}

.treatment .tab_wrapper {
    display: flex;
    gap: 60px;
}
@media screen and (min-width:641px){
.treatment .tab_wrapper {
	min-height: 260px;
}	
}

.treatment_img {
    margin-bottom: 50px;
    width: 100%;
    height: 100%;
}

.treatment_img img {
    border-radius: 10px;
    max-height: 40vh;
    height: 100%;
    object-fit: cover;
}

.treatment .top_title {
    position: absolute;
    text-align: left;
    padding: 0 70px 30px 30px;
    background: var(--bg-color);
    border-radius: 0 0 20px 0;
    margin-bottom: 0;
}

.treatment .top_title::before,
.treatment .top_title::after {
    position: absolute;
    content: '';
    background: url(../images/front/kadomaru.svg) no-repeat center / cover;
    width: 10px;
    height: 10px;
}

.treatment .top_title::before {
    bottom: -10px;
    left: 0;
}

.treatment .top_title::after {
    top: 0;
    right: -10px;
}

.treatment .top_title .eng {
    font-size: 500%;
}

.treatment .top_title h2 {
    font-size: 180%;
}

.treatment .tab_list {
    display: flex;
    flex-flow: column;
    gap: 0;
    width: 30%;
}

.treatment .tab_list li {
    position: relative;
    padding: 0 20px 0 25px;
    color: #bfb7d3;
    font-family: var(--font-jp);
    font-size: 130%;
    cursor: pointer;
    transition: transform 0.2s, padding 0.2s;
    width: 100%;
}

.treatment .tab_list li.is-active {
    color: var(--main-color);
}

.treatment .tab_list li.is-active::before,
.treatment .tab_list li.is-active::after {
    position: absolute;
    content: '';
    background: var(--main-color);
}

.treatment .tab_list li.is-active::before {
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    transform: translateY(-50%);
    border-radius: 50%;
}

.treatment .tab_list li.is-active::after {
    margin: auto;
    right: 0;
    width: /*80px*/18%;
    height: 1px;
    top: 0;
    bottom: 0;
}

.treatment .panel_wrapper {
    width: 70%;
}

/* ----- パネル ----- */
.treatment .panel {
    display: none;
    margin: 0 !important;
    background: var(--bg-color);
}

.treatment .panel>*:not(:last-child) {
    margin-bottom: 2em;
}

/* ----- 項目 ----- */
.treatment_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    height: fit-content;
}

.treatment_list a {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 80px;
    padding: 10px 30px 10px 20px;
    background: #ffffff;
    color: var(--main-color);
    font-family: var(--font-jp);
    font-size: 110%;
    line-height: 1.5;
    border-radius: 8px;
}

.treatment_list a::after {
    content: "\f054";
    position: absolute;
    top: 50%;
    right: 15px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 11px;
    transform: translateY(-50%);
    transition: right 0.2s;
}

.treatment_list a:hover {
    background: var(--main-color);
    color: #ffffff;
}

.treatment_list a:hover::after {
    right: 12px;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {

    .treatment::before,
    .treatment::after {
        bottom: -50px;
    }

    .treatment::before {
        left: -20px;
        width: clamp(120px, 38vw, 160px);
    }

    .treatment::after {
        right: -50px;
        width: clamp(150px, 48vw, 210px);
    }

    .treatment_deco img {
        height: 220px;
    }

    .treatment .inner {
        width: calc(100% - 40px);
        padding: 80px 0 0;
    }

    .treatment_img {
        min-height: 300px;
        margin-bottom: 10px;
    }

    .treatment_img img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .treatment .top_title {
        padding: 0 25px 20px 20px;
        border-radius: 0 0 15px 0;
    }

    .treatment .top_title::before,
    .treatment .top_title::after {
        width: 8px;
        height: 8px;
    }

    .treatment .top_title::before {
        bottom: -8px;
    }

    .treatment .top_title::after {
        right: -8px;
    }

    .treatment .top_title .eng {
        font-size: 2rem;
        letter-spacing: 4px;
        margin-bottom: 0;
    }

    .treatment .top_title h2 {
        font-size: 1.4rem;
    }

    /* タブ */
    .treatment .tab_wrapper {
        flex-direction: column;
        gap: 30px;
        padding-bottom: 60px;
    }

    .treatment .tab_list,
    .treatment .panel_wrapper {
        width: 100%;
    }

    .treatment .tab_list li {
        padding: 12px 0 12px 20px;
        font-size: 1.1rem;
        border-bottom: 1px solid #ddd;
    }

    .treatment .tab_list li.is-active::before {
        width: 6px;
        height: 6px;
    }

    .treatment .tab_list li.is-active::after {
        display: none;
    }

    /* パネル */
    .treatment .panel>*:not(:last-child) {
        margin-bottom: 1.5em;
    }

    /* リスト */
    .treatment_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .treatment_list a {
        min-height: 60px;
        padding: 12px 28px 12px 14px;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .treatment_list a::after {
        right: 12px;
        font-size: 10px;
    }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
    position: relative;
}

.feature::before {
    position: absolute;
    content: '';
    top: -5px;
    left: 0;
    right: 0;
    width: 100%;
    height: 15px;
    pointer-events: none;
    background: var(--bg-color);
    -webkit-mask: url(../images/front/wave_01.svg) repeat-x top center / contain;
    mask: url(../images/front/wave_01.svg) repeat-x top center / contain;
    transform: rotate(180deg);
}

.feature .inner {
    width: calc(100% - 100px);
    max-width: 1400px;
    padding: 150px 0 120px;
}

.feature .top_title h2 {
    font-size: 160%;
}

.feature_list {
    display: flex;
    flex-flow: wrap;
    gap: 70px 30px;
}

.feature_item {
    display: flex;
    width: 100%;
    height: auto;
}

.feature_img {
    flex-shrink: 0;
    width: 50%;
}

.feature_img img {
    border-radius: 40px;
}

.feature_inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-flow: column;
    width: 100%;
    height: 100%;
    padding: 50px;
    background: #ffffff;
}

.feature_title {
    display: flex;
    flex-flow: column;
    margin-bottom: 20px;
}

.feature_title h3 {
    color: var(--main-color);
    font-size: 200%;
    line-height: 1.75;
}

.feature_num {
    position: relative;
    margin: 0 0 10px;
    font-size: 120%;
    font-family: var(--font-en);
    color: var(--main-color);
}

.feature_num::after {
    position: absolute;
    content: '';
    margin: auto;
    left: 110px;
    width: 100px;
    height: 1px;
    top: 0;
    bottom: 0;
    background: var(--main-color);
}

.feature_num span {
    font-size: 130%;
}

.feature_button {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 25px;
    width: 100%;
}

.feature_button .btn01:only-child {
    width: 100%;
}

.feature_button .btn01 {
    text-align: center;
    width: calc(50% - 5px);
    height: fit-content;
}

.feature_button .btn01>* {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    padding: 15px 35px;
    background: #ffffff;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    font-family: var(--font-jp);
    font-size: 95%;
    letter-spacing: 0.15em;
    text-align: center;
    transition: background 0.2s, color 0.2s;
    border-radius: 10px;
}

.feature_button .btn01>*:hover {
    background: var(--main-color);
    color: #ffffff;
}

/* リンク先準備中（クリック不可） （リンク先#の場合）*/
.feature_button .btn01>*[href="#"]{
  pointer-events: none;
  position:relative;
}
.feature_button .btn01>*[href="#"]:before{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top:0;
  left: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  content: "準備中";
  border-radius: 8px;
}

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


/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .feature {
        padding-bottom: 0;
    }

    .feature .inner {
        width: 100%;
        padding: 100px 20px 30px;
    }

    .feature_list {
        gap: 40px;
    }

    .feature_item {
        flex-flow: column;
        width: 100%;
        margin: 0;
    }

    .feature_img {
        width: 100%;
        margin: 0;
    }

    .feature_img img {
        border-radius: 20px;
    }

    .feature_inner {
        width: 100%;
        min-height: auto;
        margin: 0;
        padding: 30px 10px;
    }

    .feature_title {
        min-height: auto;
        margin-bottom: 15px;
    }

    .feature_title h3 {
        font-size: 170%;
        line-height: 1.45;
    }

    .feature_button .btn01 {
        width: 100%;
    }

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

    .feature_item:nth-child(even) .feature_inner {
        margin: 0 auto;
    }
}

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

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

#infinitySlider .splide__list {
    gap: 20px;
}

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

#infinitySlider .splide__slide img {
    border-radius: 30px;
}

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

    #infinitySlider .splide__slide img {
        border-radius: 20px;
    }
}