@charset "UTF-8";

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

  *基本設定

================================================================================================================================== */
.front {
    overflow: hidden;
}

section .inner {
    padding: 100px 40px;
    max-width: 1300px;
}

.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;
    }

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

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

  *タイトル

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

    /* 左寄せ */
}

.top_title.title_left {
    text-align: start;
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.top_title .eng {
    display: inline-block;
    color: var(--main-color);
    font-size: 330%;
    font-family: var(--font-en);
    letter-spacing: .1em;
    line-height: 0.8;
}

/* ==============================================
  *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: 18px;
    }
}

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

  *メインビジュアル

================================================================================================================================== */
.mainvisual {
    position: relative;
    height: 100vh;
    max-height: 820px;
    overflow: hidden;
    z-index: 1;
    padding-bottom: 30px;
	min-height: 790px;
}

.mvSlider {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

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

.mvSlider .sliderBtn#mv_btnPrev {
    left: 20px;
}

.mvSlider .sliderBtn#mv_btnNext {
    right: 20px;
}

.mvSlider .sliderBtn span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    border-radius: 50%;
    transition: background 0.2s;
}

.mvSlider .sliderBtn span:hover {
    background: var(--text-color);
}

.mvSlider .sliderBtn span::before {
    padding: 0 0 1px 0;
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    color: #ffffff;
    font-size: 15px;
    transition: color 0.2s;
}

.mvSlider .sliderBtn#mv_btnPrev span::before {
    content: "\f053";
}

.mvSlider .sliderBtn#mv_btnNext span::before {
    content: "\f054";
}

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

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

.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;
    padding: 0 0 0 12%;
}

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

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

.fade.move .mvImg .splide__slide.is-active img {
    animation: showTranslate 8s ease-out forwards;
}

/* MVのアニメーション  */
@keyframes hideImg {
    0% {
        opacity: 1;
    }

    10% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes showTranslate {
    0% {
        transform: translate3d(0, 0px, 0);
    }

    100% {
        transform: translate3d(0, -30px, 0);
    }
}

@keyframes hideTranslate {

    /* 下降 */
    0% {
        transform: translate3d(0, -30px, 0);
    }

    100% {
        transform: translate3d(0, 0px, 0);
    }
}

/* ----- キャッチコピー ----- */
.mvCatch {
    position: absolute !important;
    top: 40%;
    left: 0;
    z-index: 3;
    width: 100%;
    transform: translateY(-50%);
}

.mvCatch .inner {
    position: relative;
    z-index: 1;
}

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

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

.mvContents .inner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    max-width: unset;
}

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

/* ----- MVバナー ----- */
.mv_bnr {
    position: absolute;
/*     left: 0;
	top: 140px */
	left: 400px;
    bottom: 80px;
    display: flex;
    gap: 10px;
/*     padding-left: 70px; */
    border-radius: 50%;
}

.mv_bnr>* {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 50%;
    background: rgba(54, 153, 192, 0.8);
    color: #fff;
    font-size: 110%;
    padding-top: 9px;
    border: 5px solid rgba(255, 255, 255, 0.2);
	line-height: 1.5rem;
}

.mv_bnr>*:hover {
    opacity: .5;
    color: #fff;
}

.mv_bnr>*::before,
.mv_bnr>*::after {
    content: "";
    position: absolute;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    transition: right 0.2s, background 0.2s;
    background: #ffffff;
}

.mv_bnr>*::before {
    top: 20px;
    width: 18px;
    height: 32px;
    -webkit-mask: url(../images/access.svg) no-repeat center/cover;
    mask: url(../images/access.svg) no-repeat center/cover;
}

.mv_bnr>*::after {
    bottom: 35px;
    width: 41px;
    height: 6px;
    -webkit-mask: url(../images/btn_arrow.svg) no-repeat center/cover;
    mask: url(../images/btn_arrow.svg) no-repeat center/cover;
}

.mv_bnr .online {
    background: rgba(10, 168, 155, 0.8);
    font-size: 100%;
}

.mv_bnr .online::before {
    width: 40px;
    height: 32px;
    -webkit-mask: url(../images/online.svg) no-repeat center/cover;
    mask: url(../images/online.svg) no-repeat center/cover;
    margin-left: 4px;
}
.mv_bnr .fever::before{
    width: 50px;
    height: 24px;
    -webkit-mask: url(../images/fever.svg) no-repeat center/cover;
    mask: url(../images/fever.svg) no-repeat center/cover;
}
.mv_bnr .fever::after{
	bottom: 25px;
}

/* ----- リニューアルOPENバナー ----- */
.renewal_bnr {
    position: absolute;
/*     top: 340px; */
	bottom: 80px;
    left: 0;
    padding-left: 100px;
    text-align: center;
    color: var(--main-color);
    font-size: 130%;
}

.renewal_bnr .year,
.renewal_bnr .num,
.renewal_bnr .tit,
.renewal_bnr .time {
    font-family: var(--font-en);
    font-style: normal;
}

.renewal_bnr .year {
    padding: 0 3px;
}

.renewal_bnr .num {
    font-size: 190%;
    padding: 0 3px;
}

.renewal_bnr .date {
    position: relative;
    top: -4px;
    background: var(--main-color);
    color: #ffffff;
    padding: 6px;
    border-radius: 50%;
    margin: 10px;
    font-size: 80%;
}

.renewal_bnr .sub {
    position: relative;
    padding: 0 20px;
}

.renewal_bnr .sub::before,
.renewal_bnr .sub::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 1.4em;
    top: 0.2em;
    background: var(--main-color);
}

.renewal_bnr .sub::before {
    left: 0;
    transform: rotate(-30deg);
}

.renewal_bnr .sub::after {
    right: 0;
    transform: rotate(30deg);
}

.renewal_bnr .tit {
    font-size: 500%;
    line-height: 1;
    padding-top: 10px;
}

.nairankai_wrap {
    border: solid 1px;
    padding: 20px;
    margin-top: 20px;
    font-size: 100%;
    line-height: 1.3;
}

.nairankai_wrap .tit {
    font-size: 90%;
    padding-bottom: 10px;
}

.nairankai_wrap .num {
    font-size: 150%;
}

.nairankai_wrap .time {
    padding-top: 7px;
}

.mv_bnr_top {
    position: absolute;
    left: 0;
	top: 130px;
    display: flex;
    gap: 10px;
/*     padding-left: 70px; */
	padding-left: 40px;
    border-radius: 50%;
}

.mv_bnr_top>* {
    position: relative;
    width: 430px;
	padding: 15px;
    background: rgb(256 256 256 / .8);
    color: #C94C4C;
    border: 5px solid rgb(107 188 110 / .8);
	text-align: center;
}

.mv_bnr_top .title {
	margin-bottom: 5px;
	color: var(--text-color);
    font-size: 120%;
}

/* ----- RIBONバナー ----- */
.mv_ribon {
    position: absolute;
    bottom: 150px;
    left: 0;
}

.sp_only {
    display: none;
}

/* ==============================================
  *SP メインビジュアル
============================================== */
@media screen and (max-width: 640px) {
    .mainvisual {
        height: 600px;
        padding-bottom: 0;
		min-height: auto;
    }

    .mvImg img {
        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: auto;
        bottom: 20px;
        display: none;
    }

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

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

    .mvContents {
        display: none;
    }

    .sp_only {
        display: block;
        background: url(../images/triangle_bg02.png) no-repeat top 0px left -60px / 330px, #fff !important;
    }

    .sp_only .inner {
        padding: 0 20px;
    }

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

    .mv_bnr {
        position: static;
    }

    .renewal_bnr {
        position: relative;
        top: 0;
        padding: 0;
    }

    .renewal_bnr .tit {
        font-size: 300%;
    }

    .nairankai_wrap .tit {
        font-size: 80%;
    }
	
	.mv_bnr_top {
	  position: static;
	  padding-left: 0;
	}
	
	.mv_bnr_top>* {
	  width: 100%;
	}
}

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

  *バナーエリア

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

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

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

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

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

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

.top_banner .input a.banner_slide:hover {
    background: #f5f5f5;
}

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

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

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

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

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

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

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

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

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

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

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

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

#bannerSlider .bannerSlider_arrow:hover i {
    background: var(--text-color);
}

#bannerSlider .bannerSlider_arrow_prev {
    left: 0;
}

#bannerSlider .bannerSlider_arrow_next {
    right: 0;
}

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

#bannerSlider .bannerSlider_page {
    width: 10px;
    height: 10px;
    background-color: #e8e8e8;
    border-radius: 50%;
    transition: background 0.2s;
}

#bannerSlider .bannerSlider_page.is-active {
    background: var(--main-color);
}

/* ==============================================
  *SP バナーエリア（追加コンテンツ）
============================================== */
@media screen and (max-width: 640px) {

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

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

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

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

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

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

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

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

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

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

.clinic::before {
    background: url(../images/triangle_bg02.png) no-repeat;
    top: -267px;
    left: -135px;
    width: 570px;
    height: 900px;
}

.clinic::after {
    background: url(../images/triangle_bg01.png) no-repeat;
    bottom: -197px;
    left: -60px;
    width: 470px;
    height: 470px;
}

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

.clinic .news_wrap {
    border: 4px solid #dbe7ec;
    padding: 30px 80px 50px;
    background: #ffffff;
}

.clinic .news .inner {
    position: relative;
    padding: 50px 40px 30px;
    z-index: 1;
}

.clinic .news .news_left {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 30px;
}

.clinic .news .top_title {
    margin: 0;
    text-align: left;
    display: flex;
    align-items: self-end;
    gap: 20px;
}

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

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

.clinic .news .btn01 a {
    font-family: var(--font-en);
    background: var(--main-color);
    border: none;
}

.clinic .news .btn01 a:hover {
    background: var(--sub-color);
    color: #ffffff;
}

.clinic .news .btn01 a:hover::after {
    background: #ffffff;
}

/* ----- 医院概要 ----- */
.clinic .info .inner {
    display: flex;
    gap: 80px;
    padding: 30px 40px 100px;
}

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

.clinic .info address {
    display: flex;
    gap: 20px;
}

.clinic .info address>* {
    position: relative;
    z-index: 1;
}

.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(--main-color);
    border-radius: 50%;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ffffff;
    font-size: 16px;
}

.clinic .info address .tel {
    margin-top: 15px;
    padding: 3px 0 7px 50px;
    font-size: 30px;
    line-height: 1;
    letter-spacing: .1em;
    font-family: var(--font-en);
}

.clinic .info address .tel::before {
    content: "\f3cd";
}

.clinic .info address .tel span {
    font-size: 60%;
}

.clinic .info address .fax {
    margin-top: 15px;
    padding: 10px 0 0 50px;
    font-size: 19px;
    line-height: 1;
    letter-spacing: .1em;
    font-family: var(--font-en);
    color: var(--main-color);
}

.clinic .info address .fax::before {
    content: "\f249";
}

.clinic .info address .fax span {
    font-size: 60%;
}

.clinic .info address .note {
    margin-top: 20px;
    padding-left: 12px;
    font-size: 90%;
}

.clinic .info .speciality {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px auto;
}

.clinic .info .speciality span {
    padding: 2px 30px;
    border-radius: 30px;
    min-width: 160px;
    text-align: center;
    border: solid 1px;
}

.clinic .info .speciality span:nth-child(1) {
    color: var(--main-color);
}

.clinic .info .speciality span:nth-child(2) {
    color: var(--sub-color);
}

.clinic .info .speciality span:nth-child(3) {
    color: var(--sub2-color);
}

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

.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 .googlemap iframe {
    width: 100%;
    height: 500px;
}

.clinic .info .location {
    padding-top: 10px;
}

.clinic .info .location .zipcode {
    margin-right: 10px;
}

.clinic .btn01 a {
    font-family: var(--font-en);
    font-size: 110%;
}

@media screen and (max-width: 640px) {
    .clinic::before {
        top: 0;
    }

    .clinic::after {
        display: none;
    }

    .clinic .news .inner {
        flex-flow: column;
        gap: 0;
        padding: 30px 0 10px;
    }

    .clinic .info .inner {
        flex-flow: column;
        padding: 0 20px 70px;
        gap: 40px;
    }

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

    .clinic .news_wrap {
        padding: 50px 30px 40px;
    }

    .clinic .info address {
        flex-wrap: wrap;
        gap: 5px;
    }

    .clinic .info .speciality {
        flex-flow: column;
        gap: 10px;
        padding: 10px;
    }

    .clinic .info .speciality span {
        min-width: 320px;
    }

    .clinic .info .speciality .title {
        width: 100%;
    }
}

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

  *ご挨拶

================================================================================================================================== */
.greeting {
    position: relative;
    z-index: 2;
}

.greeting .inner {
    padding: 120px 40px;
}

.greeting_box {
    position: relative;
    padding: 40px 40px 70px 20px;
    border: 4px solid #cbd7dc;
    background: #ffffff;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 0px 0px 0px inset,
        rgb(147 173 186 / 25%) 0px 20px 10px -10px,
        rgb(201 211 216) 0px 30px 100px -100px;
    z-index: 1;
}

.greeting_box .top_title {
    margin-top: -70px;
    padding: 0 30px;
    width: fit-content;
    background: #ffffff;
}

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

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

.greeting_text_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
}

.greeting_text {
    width: 70%;
    border-right: 1px dashed var(--line-color);
    padding-right: 80px;
}

.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 {
    text-align: center;
}

.greeting_btn a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: var(--main-color);
    color: #ffffff;
    border: solid 1px;
    font-size: 110%;
    letter-spacing: 0.15em;
    text-align: center;
    transition: background 0.2s, color 0.2s;
    font-family: var(--font-en);
    border-radius: 50%;
    width: 200px;
    height: 200px;
    padding: 30px 0 0;
    border: 7px solid rgba(255, 255, 255, 0.2);
}

.greeting_btn a::before,
.greeting_btn a::after {
    content: "";
    position: absolute;
    right: 50%;
    display: block;
    transform: translateX(50%);
    transition: right 0.2s, background 0.2s;
}

.greeting_btn a::before {
    bottom: 40px;
    width: 41px;
    height: 6px;
    background: #ffffff;
    -webkit-mask: url(../images/btn_arrow.svg) no-repeat center / cover;
    mask: url(../images/btn_arrow.svg) no-repeat center / cover;
}

.greeting_btn a::after {
    top: 30px;
    background: #ffffff;
    -webkit-mask: url(../images/doctor.svg) no-repeat center / cover;
    mask: url(../images/doctor.svg) no-repeat center / cover;
    width: 50px;
    height: 50px;
}

.greeting_btn a:hover {
    background: var(--sub-color);
}

/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {
    .greeting .inner {
        padding: 120px 15px;
    }

    .greeting_box {
        padding: 10px 30px 40px;
    }

    .greeting_box .top_title {
        display: block;
        margin-top: -30px;
    }

    .greeting_text_wrap {
        flex-wrap: wrap;
        gap: 0;
    }

    .greeting_text {
        width: 100%;
        border-right: 0;
        border-bottom: 1px dashed var(--line-color);
        padding: 0 0 50px;
    }

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

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

  *一般内科・消化器内・心療内科・カウンセリング（共通）

================================================================================================================================== */
.medical .inner,
.psychosis .inner,
.counseling .inner {
    border-bottom: 1px dashed var(--line-color);
    max-width: unset;
}

.medical .top_title,
.psychosis .top_title,
.counseling .top_title {
    text-align: justify;
}

.medical .top_title h2,
.psychosis .top_title h2,
.counseling .top_title h2 {
    padding-bottom: 13px;
    font-size: 300%;
}

.medical .top_title .eng,
.psychosis .top_title .eng,
.counseling .top_title .eng {
    font-size: 100%;
}

.medical_list,
.psychosis_list,
.counseling_list {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.medical_item,
.psychosis_item,
.counseling_item {
    position: relative;
    height: 280px;
    z-index: 1;
}

.medical_item::before,
.psychosis_item::before,
.counseling_item:before {
    content: "";
    position: absolute;
    right: 8px;
    bottom: 8px;
    display: block;
    width: 17px;
    height: 17px;
    background: var(--main-color);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    transition: background 0.2s, width 0.2s, height 0.2s;
    opacity: .3;
}

.medical_item:hover .medical_inner,
.psychosis_item:hover .psychosis_inner,
.counseling_item:hover .counseling_inner {
    background: #ffffff;
}

.medical_item:hover::before,
.psychosis_item:hover::before,
.counseling_item:hover::before {
    width: 13px;
    height: 13px;
}

.medical_img,
.psychosis_img,
.counseling_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,
.psychosis_img img,
.counseling_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.medical_inner,
.psychosis_inner,
.counseling_inner {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 30px 10px 40px;
    text-align: center;
}

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

.medical_icon,
.psychosis_icon,
.counseling_icon {
    width: 70%;
    max-width: 120px;
    margin: 0 auto 15px !important;
    padding: 20px;
    border-radius: 50%;
}

.medical_title h3,
.psychosis_title h3,
.counseling_title h3 {
    font-size: 120%;
    line-height: 1.45;
}

.medical_title_eng,
.psychosis_title_eng,
.counseling_title_eng {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .2em;
    text-align: center;
    font-family: var(--font-en);
}

.medical_text,
.psychosis_text,
.counselin_text {
    color: var(--text-color);
}

.medical_btn span,
.psychosis_btn span,
.counselin_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,
.psychosis_btn span::after,
.counselin_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,
.psychosis_item:hover .psychosis_btn span,
.counselin_item:hover .counselin_btn span {
    background: #ffffff;
    color: var(--main-color);
}

/* ==============================================
  *SP 診療案内
============================================== */
@media screen and (max-width: 640px) {

    .medical .top_title h2,
    .psychosis .top_title h2,
    .counseling .top_title h2 {
        font-size: 200%;
    }

    .medical_list,
    .psychosis_list,
    .counseling_list {
        gap: 15px 10px;
        grid-template-columns: repeat(2, 1fr);
    }

    .medical_item,
    .psychosis_item,
    .counseling_item {
        height: 170px;
    }

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

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

    .medical_icon,
    .psychosis_icon,
    .counseling_icon {
        width: 55%;
        margin: 0 auto 10px !important;
    }

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

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

  *診療案内

================================================================================================================================== */
.medical {
    position: relative;
    padding-top: 290px;
}

.medical::before,
.medical::after {
    position: absolute;
    content: '';
}

.medical:before {
    position: absolute;
    top: 100px;
    left: 40px;
    font-family: var(--font-en);
    font-size: 180px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.09em;
    color: var(--main-color);
    white-space: nowrap;
    content: "MEDICAL";
    -webkit-text-fill-color: #ffffff;
    -webkit-text-stroke: 1px #d4e1e5;
    z-index: 1;
}

.medical::after {
    background: url(../images/triangle_bg07.png) no-repeat left / cover;
    top: -120px;
    right: 10px;
    width: 480px;
    height: 620px;
    opacity: .5;
    z-index: 0;
}

.medical .inner {
    padding: 0 5% 100px;
}

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

.medical_inner {
    background: #d8eaf2;
    border: 2px solid #b9cfd9;
}

.medical_icon {
    background: linear-gradient(135deg, rgb(122 189 215), rgb(0 115 160));
}

.medical_title h3 {
    color: #16779c;
}

.medical_title_eng {
    color: var(--main-color);
}

@media screen and (max-width: 640px) {
    .medical {
        padding-top: 170px;
    }

    .medical:before {
        top: 70px;
        left: 20px;
        font-size: 70px;
        webkit-text-fill-color: #ffffff;
        -webkit-text-stroke: 1px #96c2d0;
    }

    .medical::after {
        top: -30px;
        right: -60px;
        width: 260px;
        height: 340px;
        opacity: .4;
    }

    .medical .inner {
        padding: 0 5% 60px;
    }
}

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

  *心療内科

================================================================================================================================== */
.psychosis_item::before {
    background: var(--sub-color);
}

.psychosis .inner {
    padding: 70px 5% 100px;
}

.psychosis .top_title h2 {
    color: var(--sub-color);
}

.psychosis_inner {
    background: #d4ebeb;
    border: 2px solid #b1d9d9;
}

.psychosis_icon {
    background: linear-gradient(135deg, rgb(106 187 186), rgb(0 163 159));
    padding: 10px;
}

.psychosis_title {
    color: #16908d;
}

.psychosis_title_eng {
    color: var(--sub-color);
}

.psychosis .top_title .eng {
    color: var(--sub-color);
}

/* ==============================================
  *SP 診療案内
============================================== */
@media screen and (max-width: 640px) {
    .psychosis {}

    .psychosis .inner {
        padding: 40px 5% 60px;
    }
}

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

  *カウンセリング

================================================================================================================================== */
.counseling {
    position: relative;
    background: url(../images/medical_bg.jpg) no-repeat top 120px right/ 60%;
}

.counseling::before {
    position: absolute;
    content: '';
    bottom: 0;
    width: 100%;
    height: 20%;
    background: #edf4f7;
    z-index: -1;
}

.counseling_item::before {
    background: var(--sub2-color);
}

.counseling .inner {
    padding: 70px 5% 10px;
    border-bottom: none;
}

.counseling .top_title h2 {
    color: var(--sub2-color);
}

.counseling_inner {
    background: #e2f2e2;
    border: 2px solid #bfe2c0;
}

.counseling_icon {
    background: linear-gradient(135deg, rgb(188 218 190), rgb(121 192 124));
    padding: 10px;
}

.counseling_title {
    color: #3f8642;
}

.counseling_title_eng {
    color: var(--sub2-color);
}

.counseling .top_title .eng {
    color: var(--sub2-color);
}

/* ==============================================
  *SP 診療案内
============================================== */
@media screen and (max-width: 640px) {
    .counseling {
        background: url(../images/medical_bg.jpg) no-repeat bottom -70px right / 100%;
    }

    .counseling .inner {
        padding: 50px 5% 30px;
    }
}

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

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

==================================================================================================================================*/
.feature {
    position: relative;
    background: url(../images/triangle_bg05.png) no-repeat bottom 50px left -200px / 700px,
        url(../images/triangle_bg03.png) no-repeat center right -124px / 550px, #edf4f7;
    z-index: 0;
}

.feature::before,
.feature::after {
    position: absolute;
    content: '';
    z-index: -1;
    opacity: .6;
}

.feature::before {
    background: url(../images/triangle_bg03.png) no-repeat left / cover;
    top: -100px;
    right: -10px;
    width: 480px;
    height: 860px;
}

.feature::after {
    background: url(../images/triangle_bg04.png) no-repeat left / cover;
    top: -90px;
    left: -20px;
    width: 550px;
    height: 890px;
}

.feature .inner {
    padding: 100px 0 160px;
    max-width: 1200px;
}

.feature .top_title .eng {
    font-size: 150%;
    padding-bottom: 5px;
}

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

.feature_item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 60px 70px 50px 0;
    background: #fff;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 0px 0px 0px inset,
        rgb(147 173 186 / 25%) 0px 20px 10px -10px,
        rgb(201 211 216) 0px 30px 100px -100px;
}

.feature_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 150px 170px 0px 0px;
    border-color: #edf5f9 transparent transparent transparent;
}

.feature_img {
    position: relative;
    width: 520px;
    flex-shrink: 0;
    margin: 0 60px -90px 0;
    border: 6px solid #ffffff;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 0px 0px 0px inset,
        rgba(201, 211, 216, 0.25) 0px 20px 10px -10px,
        rgb(201 211 216) 0px 30px 100px -100px;
}

.feature_inner {
    position: relative;
    display: flex;
    flex-flow: column;
    width: 70%;
    z-index: 2;
}

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

.feature_title {
    position: relative;
    display: flex;
    flex-flow: column;
    margin-bottom: 20px !important;
}

.feature_title::before,
.feature_title::after {
    position: absolute;
    content: '';
    background: #d0d6d9;
    opacity: .5;
}

.feature_title::before {
    top: -5px;
    left: 0;
    -webkit-mask: url(../images/brackets_l.svg) no-repeat center / cover;
    mask: url(../images/brackets_l.svg) no-repeat center / cover;
    width: 60px;
    height: 40px;
}

.feature_title::after {
    right: 0;
    bottom: -5px;
    -webkit-mask: url(../images/brackets_r.svg) no-repeat center / cover;
    mask: url(../images/brackets_r.svg) no-repeat center / cover;
    width: 60px;
    height: 40px;
    bottom: -5px;
}

.feature_title h3 {
    position: relative;
    font-size: 200%;
    line-height: 1.5;
    letter-spacing: .1em;
    border-bottom: 1px dashed var(--line-color);
    padding: 0 0 30px;
    margin-bottom: 15px;
    text-align: center;
}

.feature_num {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 150%;
    font-family: var(--font-en);
    position: absolute;
    top: -70px;
    left: -30px;
    color: #59849a;
}

.feature_num .eng {
    font-size: 100%;
    letter-spacing: .1em;
}

.feature_num .num {
    font-size: 700%;
    line-height: 0.75;
    color: var(--main-color);
}

.feature_item .btn01 {
    margin-top: auto;
    text-align: right;
}

.feature_item .btn01>* {
    font-family: var(--font-en);
    color: var(--main-color);
    background: none;
    border: 1px solid;
    padding: 5px 75px 5px 35px;
}

.feature_item .btn01>*::after {
    background: var(--main-color);
}

.btnflex_feature {
    display: flex;
    align-items: center;
    flex-flow: wrap;
    gap: 5px;
    margin-top: auto;
}

/* 左右 */
.feature_item:nth-child(even) {
    flex-flow: row-reverse;
    padding: 60px 0 50px 70px;
}

.feature_item:nth-child(even)::before {
    right: 0;
    left: auto;
    border-width: 0px 170px 150px 0px;
    border-color: transparent #edf5f9 transparent transparent;
}

.feature_item:nth-child(even) .feature_img {
    margin: 0 0 -90px 60px;
}

.feature_item:nth-child(even) .feature_num {
    right: -30px;
    left: auto;
}

/* ボタン横並び */
.btnflex_feature .btn01 {
    width: calc(50% - 2.5px);
}

.btnflex_feature .btn01>* {
    width: 100%;
}

@media screen and (max-width: 640px) {
    .feature {
        padding-bottom: 0;
        background: #edf4f7;
    }

    .feature::before {
        top: -180px;
        right: -110px;
        width: 300px;
        height: 530px;
    }

    .feature::after {
        top: -210px;
        left: -20px;
        width: 300px;
        height: 470px;
    }

    .feature .inner {
        padding: 100px 10px;
    }

    .feature_list {
        gap: 40px;
    }

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

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

    .feature_num {
        top: -30px;
        left: -30px;
    }

    .feature_num .eng {
        font-size: 80%;
        line-height: 1.45;
    }

    .feature_num .num {
        font-size: 400%;
    }

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

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

    .feature_title::before,
    .feature_title::after {
        width: 50px;
        height: 32px;
    }

    .feature_title h3 {
        font-size: 150%;
    }

    .feature_item .btn01 {
        text-align: center;
    }

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

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

    .feature_item:nth-child(even) .feature_num {
        right: -30px;
    }

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

    /* 横並び */
    .btnflex_feature .btn01 {
        width: 100%;
    }
}

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

  *病状、症状から探す

==================================================================================================================================*/
.search {
    position: relative;
    background: url(../images/triangle_bg05.png) no-repeat bottom 10px left -250px / 600px,
        url(../images/triangle_bg03.png) no-repeat center right / 400px, #edf4f7;
}

.search .inner {
    padding: 120px 40px 120px;
}

.search .tab_list {
    gap: 10px;
}

.search .tab_list li {
    padding: 20px;
}

.search .panel {
    position: relative;
    padding: 30px 50px 50px;
    background: var(--main-color);
    background: #ffffff;
    border-top: 3px solid var(--main-color);
    box-shadow: rgba(255, 255, 255, 0.1) 0px 0px 0px 0px inset,
        rgb(147 173 186 / 25%) 0px 20px 10px -10px,
        rgb(201 211 216) 0px 30px 100px -100px;
    z-index: 1;
}

.search_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    height: fit-content;
}

.search_list li {
    width: calc((100% / 4) - (30px / 4));
    height: auto;
}

/* リンク */
.search_list li a {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 60px;
    padding: 10px 65px 10px 20px;
    color: var(--text-color);
    border-bottom: 1px solid #bfcbd0;
}

/* 矢印の背景 */
.search_list li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    display: block;
    width: 41px;
    height: 6px;
    background: var(--main-color);
    -webkit-mask: url(../images/btn_arrow.svg) no-repeat center/cover;
    mask: url(../images/btn_arrow.svg) no-repeat center/cover;
    transform: translateY(-50%);
    transition: right 0.2s, background 0.2s;
}

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

/* ----- 画像あり ----- */
.search .panel_flex.active {
    display: flex;
    flex-flow: wrap;
    gap: 20px;
}

.search_img {
    width: 100%;
    margin: 0 !important;
}

.panel_flex .search_list {
    width: 100%;
}

.panel_flex .search_list li {
    width: calc(25% - 15px);
}

/*==============================================
    *SP 病状、症状から探す
  ==============================================*/
@media screen and (max-width: 640px) {
    .search {
        background: url(../images/triangle_bg05.png) no-repeat bottom -90px left -220px / 470px,
            url(../images/triangle_bg03.png) no-repeat top -100px right -140px / 300px,
            #edf4f7;
    }

    .search .inner {
        padding: 100px 20px;
    }

    .search .tab_list {
        flex-flow: wrap;
        gap: 3px;
    }

    .search .tab {
        width: 100%;
        min-height: auto;
        padding: 10px !important;
        font-size: 110%;
        line-height: 1.45;
        transform: translate(0, 0) !important;
    }

    .search_list {
        gap: 10px;
    }

    .search_list li {
        width: calc(100%);
    }

    .search_list li a {
        min-height: auto;
        padding: 10px 40px;
    }

    .search .panel {
        padding: 20px;
    }

    /* ----- 画像あり ----- */
    .search .panel_flex.active {
        gap: 20px;
    }

    .search_img {
        width: 100%;
    }

    .panel_flex .search_list {
        width: 100%;
    }

    .panel_flex .search_list li {
        width: 100%;
    }
}


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

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

==================================================================================================================================*/
.pickup {
    position: relative;
    z-index: 0;
}

.pickup::before {
    position: absolute;
    content: '';
    background: url(../images/logomark.svg) no-repeat left / cover;
    top: -150px;
    right: 0;
    width: 610px;
    height: 860px;
    opacity: .38;
    z-index: -1;
}

.pickup .inner {
    width: 100%;
    max-width: none;
    padding: 50px 0 0;
}

.pickup .top_title .eng {
    font-size: 200%;
}

.pickup .top_title em {
    color: var(--main-color);
    font-size: 400%;
    font-family: var(--font-en);
    font-style: normal;
    padding: 0 11px;
    line-height: 0.2;
    background: linear-gradient(135deg, rgb(191 237 255), rgb(0 115 160));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pickup_list {
    display: flex;
    flex-flow: wrap;
}

.pickup_item {
    position: relative;
    width: 50%;
    background: #d2f1ff;
}

.pickup_inner {
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.pickup_title {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 80px;
    color: #ffffff;
}

.pickup_title h2,
.pickup_title h3 {
    background: none;
    font-size: 170%;
}

.pickup_title span {
    font-size: 90%;
    font-family: var(--font-en);
    letter-spacing: .2em;
}

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

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

.pickup_text {
    margin: 60px 0;
    padding: 0 11%;
}

.pickup_link {
    position: absolute;
    top: 50%;
    right: 50px;
    z-index: 2;
    transform: translateY(-50%);
}

.pickup_link .pickup_btn {
    position: relative;
}

.pickup_link .pickup_btn a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: var(--main-color);
    color: #ffffff;
    border: solid 1px;
    font-size: 110%;
    letter-spacing: 0.15em;
    text-align: center;
    transition: background 0.2s, color 0.2s;
    font-family: var(--font-en);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    padding-bottom: 20px;
}

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

.pickup_link .pickup_btn a::before {
    content: "";
    position: absolute;
    bottom: 30px;
    right: 50%;
    display: block;
    width: 41px;
    height: 6px;
    background: #ffffff;
    -webkit-mask: url(../images/btn_arrow.svg) no-repeat center / cover;
    mask: url(../images/btn_arrow.svg) no-repeat center / cover;
    transform: translateX(50%);
    transition: right 0.2s, background 0.2s;
}

.pickup_link .pickup_btn a:hover::before {
    background: var(--main-color);
}

/* 奇数 */
.pickup_item:nth-child(odd) .pickup_title {
    background: var(--main-color);
}

/* 偶数 */
.pickup_item:nth-child(even) {
    background: #dbffff;
}

.pickup_item:nth-child(even) .pickup_title {
    background: var(--sub-color);
}

.pickup_item:nth-child(even) .pickup_title::before {
    background: var(--sub-color);
}

.pickup_item:nth-child(2) .pickup_link .pickup_btn a {
    background: var(--sub-color);
}

.pickup_item:nth-child(even) .pickup_link .pickup_btn a:hover {
    background: #ffffff;
    color: var(--sub-color);
}

.pickup_item:nth-child(even) .pickup_link .pickup_btn a:hover::before {
    background: var(--sub-color);
}

.pickup_under img {
 	width: 100%;
	height: 450px;
	object-fit: cover;
}

/*==============================================
    *SP　ピックアップ（追加コンテンツ）
  ==============================================*/
@media screen and (max-width:640px) {
    .pickup::before {
        top: -60px;
        width: 320px;
        height: 500px;
    }

    .pickup .inner {
        padding: 20px 0 0;
    }

    .pickup .top_title {
        margin: 0 auto 50px;
        padding: 0 20px;
    }

    .pickup .top_title h2 {
        font-size: 150%;
    }

    .pickup .top_title em {
        font-size: 300%;
        line-height: 1;
    }

    .pickup_list {
        width: calc(100%);
    }

    .pickup_item {
        width: 100%;
    }

    .pickup_title {
        padding: 30px 20px;
    }

    .pickup_title h3 {
        font-size: 140%;
    }

    .pickup_title span {
        display: block;
        font-size: 80%;
        word-break: break-all;
        width: 230px;
        line-height: 1;
    }
	
	.pickup_under img {
    	height: 200px;
  	}
}

.pickup_inner {
    max-width: none;
    min-height: auto;
    margin: 0 !important;
}

.pickup_text {
    margin: 60px 0;
    padding: 0 10%;
}

.pickup_link {
    right: 50px;
}

.pickup_link .pickup_btn a {
    width: 80px;
    height: 80px;
}

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

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

================================================================================================================================== */
.column {
    background: var(--bg-color);
}

.column_list {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    gap: 50px 25px;
    padding: 30px;
    background: #ffffff;
}

.column_box {
    width: calc(25% - 18.75px);
}

.column_box dt a {
    display: block;
    padding: 15px 10px;
    background: var(--main-color);
    color: #ffffff;
    font-size: 110%;
    text-align: center;
}

.column_box dd {
    padding: 15px 10px;
    border-bottom: 1px dashed var(--line-color);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.column_box dd a {
    color: var(--text-color);
}

.column_box dd a:hover {
    color: var(--main-color);
}

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

    .column_box {
        width: 100%;
    }
}

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

  *無限スライダー

================================================================================================================================== */
#infinitySlider {
    padding: 0;
}

#infinitySlider .splide__list {
    gap: 0;
}

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

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