@charset "UTF-8";

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

  *基本設定

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.front {
    overflow: hidden;
}

@media print, screen and (min-width: 641px) {
    /* 下層文字サイズ変更したため */
    .front {
        font-size: 15px;
    }
}

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

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

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

    /* 左寄せ */
}

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

.top_title h2 {
    font-size: 170%;
    font-weight: 600;
    color: #585f64;
}

.top_title .eng {
    display: inline-block;
    margin-bottom: 5px;
    color: var(--main-color);
    font-size: 500%;
    line-height: 1;
    letter-spacing: 6px;
    font-family: var(--font-en2);
    font-weight: 500;
    background: linear-gradient(90deg, #6aa5cd 0%, #a6ea69 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

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

.mvSlider::before,
.mvSlider::after {
    position: absolute;
    content: "";
}

.mvSlider::before {
    background: #effafe;
    -webkit-mask: url(../images/front/shape_01.svg) no-repeat center / cover;
    mask: url(../images/front/shape_01.svg) no-repeat center / cover;
    width: 700px;
    height: 377px;
    left: -150px;
    bottom: -95px;
}

.mvSlider::after {
    background: url(../images/front/geometry_01.png) no-repeat center / cover;
    width: 558px;
    height: 425px;
    left: -70px;
    bottom: 0px;
}

/* ----- スライダーの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: calc(100% - 240px);
    margin-left: auto;
    padding-top: 40px;

}

/* ----- 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;
    border-radius: 20px 0 0 200px;
}

/* フェードの専用スタイル */
.fade .mvImg .splide__slide img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    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: 47%;
    left: 0;
    z-index: 3;
    width: 100%;
    transform: translateY(-50%);
}

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

.mvCatch p {
    font-size: 260%;
    line-height: 1.45;
    font-family: var(--font-jp);
    width: fit-content;
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 10px 30px 13px 0;
    font-weight: 600;
    color: #585f64;
}

.mvCatch .blue {
    color: var(--sub-color3);
}

.mvCatch .pink {
    color: var(--sub-color);
}

.mvCatch .sub_title {
    background: none;
    padding: 0;
    border-radius: 0;
}

.mvCatch .sub_title small {
    font-size: 65%;
    filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 3px #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: calc(100% - 100px);
}

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

/* ----- 開院バナー ----- */
.open_bnr {
    position: absolute;
    right: 30px;
    bottom: 170px;
    display: flex;
    gap: 15px;
    border-radius: 50%;
}

.open_bnr>*,
.open_bnr>a {
    color: #fff;
}

.open_bnr>* {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 250px;
    padding: 25px;
    background: url(../images/setting/logo_w.png) no-repeat center left -20px / 200px auto, linear-gradient(90deg, rgba(0, 82, 165, 0.9) 0%, rgba(0, 137, 207, 0.9) 50%, rgba(2, 169, 229, 0.8) 100%);
    border-radius: 50%;
    font-size: 110%;
    line-height: 1.5;
    text-align: center;
    font-family: var(--font-jp);
    box-shadow: 0 5px 5px rgba(10, 7, 55, 0.25);
    text-shadow: 0 5px 5px rgba(10, 7, 55, 0.1);
}

.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: rgba(255, 255, 255, 0.2);
    border-radius: 300px;
    color: #ffffff;
    font-size: 90%;
    text-align: center;
}

.open_bnr .vaccine_text {
    margin: 0 0 10px;
    font-size: 180%;
    color: #ffffff;
}

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

/* サブカラー */
.open_bnr .subcolor {
    /* background: var(--sub-color); */
    background: url(../images/setting/logo_w.png) no-repeat center left -20px / 200px auto, linear-gradient(90deg, rgba(245, 86, 125, 0.9) 0%, rgba(251, 100, 136, 0.9) 50%, rgba(249, 145, 170, 0.8) 100%);
}

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

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

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

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

    .mvImg img {
        border-radius: 0px;
    }

    .mvSlider::before {
        display: none;
    }

    .mvSlider::after {
        width: 285px;
        height: 215px;
        left: -40px;
    }

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

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

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

    .mvCatch p {
        font-size: 140%;
        line-height: 1.75;
        padding: 10px 20px 13px 20px;
    }

    .mvCatch .sub_title small {
        font-size: 80%;
    }

    /* ----- コンテンツ ----- */
    .mvContents {
        display: none;
    }

    /* ----- 開院バナー ----- */
    .open_bnr {
        position: static;
        width: 100%;
        max-width: 350px;
        border-radius: 10px;
        flex-direction: column;
    }

    .open_bnr>* {
        width: 100%;
        height: auto;
        padding: 15px 20px;
        border-radius: 10px;
    }

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

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

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

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.clinic {
    position: relative;
    z-index: 0;
    /* background: #edf8ff; */
    background: url(../images/front/clinic_bg.jpg) no-repeat left center / cover;
    padding-bottom: 190px;
}

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

.clinic .news .inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    padding: 150px 50px 90px;
    max-width: 1400px;
}

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

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

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

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

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

/* ----- 医院概要 ----- */
.clinic .info .inner {
    display: flex;
    gap: 80px;
    padding: 0 50px 100px;
    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;
    border-radius: 10px;
    overflow: hidden;
}

.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: #d1effa;
    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: 34px;
    line-height: 1;
    letter-spacing: 4px;
    font-family: var(--font-en);
}

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

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

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

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

.clinic .info .speciality {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px auto 0;
    font-family: var(--font-jp);
}

.clinic .info .speciality span {
    width: calc((100% / 2) - (0px / 2));
    background: var(--main-color);
    text-align: center;
    padding: 10px;
    color: #ffffff;
    border-radius: 30px;
}

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

.clinic .info .googlemap iframe {
    height: 350px;
    border: 1px solid #87b0cb !important;
}

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

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

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

.clinic .info .btn01>*:hover {
    background: #ffffff;
}

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

    /* ----- お知らせ ----- */
    .clinic .news .inner {
        flex-flow: column;
        gap: 0;
        padding: 60px 20px;
    }

    /* ----- 医院概要 ----- */
    .clinic .info .inner {
        flex-flow: column;
        padding: 0 20px 70px;
        gap: 40px;
    }

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

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

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

    .clinic .info .speciality {
        gap: 10px;
    }

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

    .clinic .info .btn01 {
        margin-top: 20px;
        text-align: center;
    }
}

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

  *ご挨拶（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting {
    position: relative;
    background: #e7feff;
}

.greeting::before,
.greeting::after {
    position: absolute;
    content: '';
    pointer-events: none;
}

.greeting::before {
    left: 0;
    top: -480px;
    right: 0;
    width: 100%;
    height: 540px;
    background: #e7feff;
    -webkit-mask: url(../images/front/nami_02.svg) no-repeat center / cover;
    mask: url(../images/front/nami_02.svg) no-repeat center / cover;
}

.greeting::after {
    mask: url(../images/front/mask_shape01.svg) top left / cover no-repeat;
    -webkit-mask: url(../images/front/mask_shape01.svg) top left / cover no-repeat;
    top: 150px;
    left: -340px;
    width: 1090px;
    height: 893px;
    background: linear-gradient(transparent, rgb(203 255 245), rgb(222 242 255) 70%, transparent);
    z-index: 0;
}


.greeting .inner {
    padding: 0;
    max-width: none;
}

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

.greeting_box::before,
.greeting_box::after {
    position: absolute;
    content: "";
}

.greeting_box::before {
    width: 380px;
    height: 385px;
    right: -50px;
    top: -165px;
    background: url(../images/front/geometry_04.png) left top / cover no-repeat;
    z-index: 1;
}

.greeting_box::after {
    background: url(../images/front/geometry_01.png) no-repeat center / cover;
    width: 500px;
    height: 380px;
    left: -70px;
    top: -280px;
    z-index: -1;
}

.greeting_flex {
    display: flex;
    align-items: center;
    flex-flow: row-reverse;
    gap: 40px;
}

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

.greeting_left {
    order: 2;
    width: calc(57%);
    height: fit-content;
    margin: 0;
    padding: 0 max(3.5vw, 50px);
    display: flex;
    align-items: center;
    gap: 70px;
}

.greeting_catch h3 {
    font-size: 180%;
    margin-bottom: 0 !important;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: -200px;
}

.greeting_catch h3 span {
    writing-mode: vertical-lr;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 0 0;
    border-radius: 10px;
}

.greeting_catch h3 span:nth-child(2) {
    margin-top: 30px;
}

.greeting_text {
    font-size: 110%;
    font-family: var(--font-jp);
}

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

.greeting_img {
    position: relative;
    border-radius: 30px 0 0 30px;
    overflow: hidden;
    box-shadow: 0 5px 5px rgb(0 0 0 / 10%);
}

.greeting_img::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background: linear-gradient(transparent, transparent, rgba(0, 0, 0, 0.3));
    z-index: 0;
}

.greeting_profile {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 20px 50px;
    font-family: var(--font-jp);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.45;
    text-align: center;
    z-index: 1;
}

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

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

.greeting_profile .name small {
    font-size: 70%;
    margin-right: 20px;
}

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

.greeting_btn>* {
    padding: 20px 55px 20px 35px;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .greeting .inner {
        padding: 80px 20px;
    }

    .greeting_box::before {
        width: 200px;
        height: 205px;
        right: -140px;
        top: -185px;
    }

    .greeting_box::after {
        width: 200px;
        height: 180px;
        left: -30px;
        top: -110px;
    }

    .greeting_flex {
        flex-flow: column;
        gap: 25px;
    }

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

    .greeting_catch h3 {
        flex-flow: column;
        gap: 10px;
        margin-top: 0;
        font-size: 160%;
    }

    .greeting_catch h3 span {
        writing-mode: lr;
        padding: 3px 0 0 13px;
    }

    .greeting_catch h3 span:nth-child(2) {
        margin-top: 0;
    }

    .greeting_img {
        border-radius: 20px;
    }

    .greeting_btn {
        margin-top: 40px;
    }

    .greeting_btn>* {
        padding: 10px 55px 10px 35px;
    }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
    position: relative;
    background: linear-gradient(#e3fbff, rgba(255, 255, 255, 0)), url(../images/front/clinic_bg.jpg) no-repeat left center / cover;
}

.medical::before,
.medical::after {
    position: absolute;
    content: '';
    pointer-events: none;
    -webkit-mask: url(../images/front/nami_02.svg) no-repeat center / cover;
    mask: url(../images/front/nami_02.svg) no-repeat center / cover;
    width: 100%;
    height: 540px;
    right: 0;
}

.medical::before {
    left: 0;
    top: -480px;
    background: #e3fbff;
    transform: scale(-1, 1);
    z-index: -1;
}

.medical::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: -160px;
    background: #ffffff;
    z-index: 0;
}

.medical .inner {
    position: relative;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px 230px;
}

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

.medical .inner::before {
    width: 380px;
    height: 385px;
    left: -280px;
    top: -285px;
    background: url(../images/front/geometry_04.png) left top / cover no-repeat;
    transform: scale(-1, 1);
}

.medical .inner::after {
    position: absolute;
    content: "";
    width: 430px;
    height: 355px;
    right: -260px;
    top: -315px;
    background: url(../images/front/geometry_01.png) left top / cover no-repeat;
}

.medical .top_title {
    margin-bottom: 50px;
}

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

.medical_item {
    width: calc(50% - 10px);
    padding: 80px 50px 50px;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
}

.medical_inner {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    height: auto;
}

.medical_title {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto 25px;
    padding: 13px 30px;
    text-align: center;
}

.medical_title h2,
.medical_title h3 {
    background: none;
    font-size: 200%;
    font-weight: 600;
}

.medical_title .eng {
    font-size: 100%;
    font-family: var(--font-en2);
}

.medical_icon {
    position: relative;
    width: 30%;
    padding: 20px;
    z-index: 0;
}

.medical_icon::after {
    position: absolute;
    content: '';
    pointer-events: none;
    mask: url(../images/front/medical_ico_bg01.svg) top left / cover no-repeat;
    -webkit-mask: url(../images/front/medical_ico_bg01.svg) top left / cover no-repeat;
    top: -30px;
    left: 50%;
    width: 270px;
    height: 227px;
    background: linear-gradient(transparent, rgb(203 255 245), rgb(222 242 255));
    z-index: -1;
    transform: translateX(-50%) rotate(20deg);
}

.medical_buttons {
    display: flex;
    flex-flow: wrap;
    gap: 0 20px;
    height: 100%;
    margin-top: auto;
}

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

.medical_btn a {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 70px;
    padding: 10px 35px 10px 20px;
    color: var(--main-color);
    font-family: var(--font-jp);
    font-size: 100%;
    line-height: 1.45;
    letter-spacing: 0.15em;
    transition: background 0.2s, color 0.2s;
    border-bottom: 1px solid #c4e1f4;
    display: flex;
    align-items: center;
}

.medical_btn:nth-child(-n+2) a {
    border-top: 1px solid #c4e1f4;
}

.medical_btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 20px;
    height: 20px;
    background: var(--main-color);
    -webkit-mask: url(../images/setting/btn_arrow.svg) no-repeat center / cover;
    mask: url(../images/setting/btn_arrow.svg) no-repeat center / cover;
    transform: translateY(-50%);
    transition: right 0.2s;
}

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

/* ----- 奇数 ----- */
.medical_item:nth-child(odd) .medical_title {
    color: #0069ad;
}

.medical_item:nth-child(odd) .medical_title .eng {
    color: #67a6cf !important;
}

.medical_item:nth-child(odd) .medical_btn a:hover {
    background: var(--bg-blue);
}

/* ----- 偶数 ----- */
.medical_item:nth-child(even) .medical_title {
    color: var(--sub-color);
}

.medical_item:nth-child(even) .medical_title .eng {
    color: #f4becb !important;
}

.medical_item:nth-child(even) .medical_icon::after {
    top: -40px;
    left: 43%;
    mask: url(../images/front/medical_ico_bg02.svg) top left / cover no-repeat;
    -webkit-mask: url(../images/front/medical_ico_bg02.svg) top left / cover no-repeat;
    width: 242px;
    height: 219px;
    background: linear-gradient(transparent, rgba(255, 230, 235, 0.7), rgba(255, 247, 251, 1)70%);
}

.medical_item:nth-child(even) .medical_btn a {
    border-bottom: 1px solid #f4becb;
    color: #e7305b;
}

.medical_item:nth-child(even) .medical_btn:nth-child(-n+2) a {
    border-top: 1px solid #f4becb;
}

.medical_item:nth-child(even) .medical_btn a::after {
    background: var(--sub-color);
}

.medical_item:nth-child(even) .medical_btn a:hover {
    background: var(--bg-pink);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .medical .inner {
        padding: 0 20px 170px;
    }

    .medical .inner::before {
        width: 200px;
        height: 185px;
        left: -140px;
        top: -75px;
    }

    .medical .inner::after {
        width: 220px;
        height: 205px;
        right: -180px;
        top: -115px;
    }

    .medical .top_title {
        margin: 0 auto 40px;
    }

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

    .medical_list {
        width: 100%;
    }

    .medical_item {
        width: 100%;
        padding: 50px 20px 30px !important;
    }

    .medical_title {
        padding: 10px;
        font-size: 110%;
        margin: 0 auto 10px;
    }

    .medical_title::before {
        bottom: -20px;
        width: 25px;
        height: 20px;
    }

    .medical_title h2,
    .medical_title h3 {
        font-size: 140%;
    }

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

    .medical_icon {
        width: 50%;
    }

    .medical_icon::after {
        top: 0;
        width: 210px;
        height: 177px;
    }

    .medical_item:nth-child(even) .medical_icon::after {
        width: 212px;
        height: 194px;
    }

    .medical_btn {
        width: 100%;
    }

    .medical_btn a {
        min-height: 50px;
    }

    .medical_item:nth-child(odd) .medical_btn:nth-child(-n+2) a,
    .medical_item:nth-child(even) .medical_btn:nth-child(-n+2) a {
        border-top: none;
    }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
    position: relative;
    background: url(../images/front/geometry_04.png) no-repeat top 60px right / 350px, #ffffff;
    padding-bottom: 180px;
}

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

.feature::before {
    left: 0;
    top: -480px;
    right: 0;
    width: 100%;
    height: 540px;
    background: #ffffff;
    -webkit-mask: url(../images/front/nami_01.svg) no-repeat center / cover;
    mask: url(../images/front/nami_01.svg) no-repeat center / cover;
    pointer-events: none;
}

.feature::after {
    background: url(../images/front/geometry_02.png) no-repeat center / cover;
    width: 550px;
    height: 465px;
    left: -70px;
    top: -140px;
    transform: scale(-1, 1);
}

.feature .inner {
    position: relative;
    padding: 90px 50px 170px;
    max-width: 1500px;
}

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

.feature_item {
    position: relative;
    display: flex;
    justify-content: center;
    height: auto;
    width: 100%;
    margin-top: 120px;
}

.feature_img {
    position: relative;
    width: 47%;
    flex-shrink: 0;
    margin-top: -120px;
    border-radius: 30px;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 5px rgb(0 0 0 / 10%);
}

.feature_img::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    right: 0;
    bottom: 0;
    margin: auto;
    background: linear-gradient(to left, rgb(224 241 252 / 55%), rgba(52, 100, 131, 0.1), transparent);
}

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

.feature_inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-flow: column;
    width: 100%;
    height: 100%;
    margin: 0 0 0 -50px;
    padding: 70px 5% 0 10%;
}

.feature_inner::before {
    position: absolute;
    content: '';
    top: -10px;
    left: 0;
    background: #c4e1f4;
    width: calc(100% - 190px);
    height: 1px;
}

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

.feature_title {
    display: flex;
    flex-flow: column;
    margin-bottom: 30px !important;
    width: fit-content;
}

.feature_title h3 {
    color: var(--main-color);
    font-size: 180%;
    line-height: 1.75;
    font-weight: 600;
    background: #ffffff;
    border-radius: 3px;
    padding: 1px 20px 3px 15px;
}

.feature_text {
    font-size: 110%;
}

.feature_num {
    position: absolute;
    top: -60px;
    right: 20px;
    font-family: var(--font-en2);
    font-weight: 500;
}

.feature_num::before {
    content: "";
    position: absolute;
    top: 25px;
    left: -28px;
    display: block;
    width: 47px;
    height: 36px;
    background: var(--main-color);
    mask: url(../images/front/point_bg.svg) no-repeat center / cover;
    -webkit-mask: url(../images/front/point_bg.svg) no-repeat center / cover;
    transform: rotate(20deg);
}

.feature_num span {
    color: var(--main-color);
    font-size: 95px;
    line-height: 80px;
    opacity: .2;
}

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

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

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

.feature_item:nth-child(even) .feature_inner {
    margin: 0 -50px 0 0;
    padding: 70px 10% 0 5%;
}

.feature_item:nth-child(even) .feature_inner::before {
    left: auto;
    right: 0;
    background: #f4becb;
}

.feature_item:nth-child(even) .feature_img::after {
    background: linear-gradient(to right, rgb(252 224 236 / 55%), rgb(131 52 119 / 10%), transparent);
}

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

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

.feature_item:nth-child(even) .feature_num span {
    color: var(--sub-color);
}

.feature_item:nth-child(even) .feature_title h3 {
    color: var(--sub-color);
}

.feature_item:nth-child(even) .btn01>* {
    background: linear-gradient(90deg, rgba(237, 121, 148) 0%, rgba(255, 153, 205) 100%);
}

.feature_item:nth-child(even) .btn01>*:hover {
    background: #f6e1e6;
    color: #e25274;
}

.feature_item:nth-child(even) .btn01>*:hover::after {
    background: var(--sub-color);
}

/* 装飾 */
.feature_item:nth-child(odd)::before,
.feature_item:nth-child(even)::before {
    position: absolute;
    content: "";
    z-index: 0;
    mask: url(../images/front/mask_shape01.svg) top left / cover no-repeat;
    -webkit-mask: url(../images/front/mask_shape01.svg) top left / cover no-repeat;
    top: -360px;
    width: 1090px;
    height: 893px;
}

.feature_item:nth-child(odd)::before {
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(213, 255, 248, 0.7), rgba(244, 250, 255, 1) 70%);
    right: -445px;
    transform: rotate(-165deg);
}

.feature_item:nth-child(even)::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.7), rgba(255, 247, 251, 1)70%);
    left: -295px;
}

.feature_item:nth-child(1)::before {
    content: none;
}

.feature_item:nth-child(2)::after {
    position: absolute;
    content: "";
    width: 350px;
    height: 355px;
    right: -300px;
    top: -185px;
    background: url(../images/front/geometry_04.png) left top / cover no-repeat;
    z-index: 1;
}

.feature_item:nth-child(3)::after {
    position: absolute;
    content: "";
    width: 275px;
    height: 376px;
    left: -130px;
    top: -185px;
    background: url(../images/front/geometry_03.png) left top / cover no-repeat;
    z-index: 1;
}

.feature_item:nth-child(5)::after {
    position: absolute;
    content: "";
    width: 300px;
    aspect-ratio: 587 / 492;
    left: -144px;
    top: -220px;
    background: url(../images/front/geometry_02.png) left top / 100% auto no-repeat;
    z-index: 1;
}

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

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

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

    .feature::after {
        top: -170px;
        left: -30px;
        width: 280px;
        height: 235px;
    }

    .feature .inner {
        padding: 60px 20px 70px;
    }

    .feature::before {
        top: -300px;
        height: 300px;
    }

    .feature_list {
        gap: 80px;
    }

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

    .feature_img {
        width: 100%;
        margin: 0;
        border-radius: 20px;
    }

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

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

    .feature_title h3 {
        font-size: 140%;
        line-height: 1.45;
        background: none;
        padding: 0;
    }

    .feature_num {
        top: -40px;
    }

    .feature_num span {
        font-size: 70px;
        line-height: 70px;
    }

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

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

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

    .feature_inner::before {
        display: none;
    }

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

    /* 装飾 */
    .feature_item:nth-child(odd)::before,
    .feature_item:nth-child(even)::before {
        position: absolute;
        content: "";
        z-index: 0;
        mask: url(../images/front/mask_shape01.svg) top left / cover no-repeat;
        -webkit-mask: url(../images/front/mask_shape01.svg) top left / cover no-repeat;
        top: -360px;
        width: 1090px;
        height: 893px;
    }

    .feature_item:nth-child(odd)::before {
        background: linear-gradient(rgba(255, 255, 255, 0), rgba(213, 255, 248, 0.7), rgba(244, 250, 255, 1) 70%);
        right: -445px;
        transform: rotate(-165deg);
    }

    .feature_item:nth-child(even)::before {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.7), rgba(255, 247, 251, 1)70%);
        left: -295px;
    }

    .feature_item:nth-child(1)::before {
        content: none;
    }

    .feature_item:nth-child(2)::after {
        width: 200px;
        height: 205px;
        right: -70px;
    }

    .feature_item:nth-child(3)::after {
        width: 170px;
        height: 226px;
        left: -80px;
        top: -95px;
    }

    .feature_item:nth-child(5)::after {
        width: 200px;
        left: -94px;
        top: -100px;
    }

}

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

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

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

.search::before,
.search::after {
    position: absolute;
    content: "";
    z-index: -1;
}

.search::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.7), rgba(255, 247, 251, 1)70%);
    mask: url(../images/front/mask_shape01.svg) top left / cover no-repeat;
    -webkit-mask: url(../images/front/mask_shape01.svg) top left / cover no-repeat;
    top: -360px;
    right: -200px;
    width: 1090px;
    height: 893px;
}

.search::after {
    right: -30px;
    top: 45px;
    width: 380px;
    height: 385px;
    background: url(../images/front/geometry_06.png) left top / cover no-repeat;
}

.search .inner {
    max-width: 1500px;
    padding: 150px 50px 170px;
}

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

.search .tab_list .tab {
    position: relative;
}

.search .tab_list li {
    display: flex;
    flex: 1;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 15px;
    background: #a9a9a9;
    color: #ffffff;
    font-size: 140%;
    cursor: pointer;
    transition: transform 0.2s, padding 0.2s;
    font-family: var(--font-jp);
    font-weight: 600;
    border-radius: 20px 20px 0 0;
}

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

/* 泌尿器科と婦人科で色を分ける */
.search .tab_list li.tab1.is-active::before,
.search .tab_list li.tab2.is-active::before,
.search .tab_list li.tab3.is-active::before,
.search .tab_list li.tab4.is-active::before,
.search .tab_list li.tab5.is-active::before {
    content: "";
    position: absolute;
    display: block;
    bottom: -18px;
    left: 50%;
    width: 25px;
    height: 18px;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    transform: translateX(-50%);
}


.search .tab_list li.tab1.is-active::before,
.search .tab_list li.tab2.is-active::before,
.search .tab_list li.tab3.is-active::before {
    background: #0088ce;
}

.search .tab_list li.tab4.is-active::before,
.search .tab_list li.tab5.is-active::before {
    background: #f78ab2;
}

.search .tab_list li.tab1,
.search .tab_list li.tab2,
.search .tab_list li.tab3 {
    background: linear-gradient(90deg, rgba(0, 82, 165) 0%, rgba(0, 137, 207) 50%, rgba(2, 169, 229) 100%);
}

.search .tab_list li.tab4,
.search .tab_list li.tab5 {
    background: linear-gradient(90deg, rgba(237, 121, 148) 0%, rgba(255, 153, 205) 100%);
}

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

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

/* ----- 項目 ----- */
.search_list {
    display: grid;
    grid-template-columns: repeat(4, 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: 70px;
    padding: 10px 45px 10px 20px;
    background: #ffffff;
    color: var(--text-color);
    font-size: 105%;
    font-family: var(--font-jp);
    line-height: 1.45;
    border-radius: 10px;
}

.search_list a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 20px;
    height: 20px;
    background: var(--sub-color);
    -webkit-mask: url(../images/setting/btn_arrow.svg) no-repeat center / cover;
    mask: url(../images/setting/btn_arrow.svg) no-repeat center / cover;
    transform: translateY(-50%);
    transition: right 0.2s;
}


/* 泌尿器科と婦人科でボタンの色を分ける */
.panel1 .search_list a,
.panel2 .search_list a,
.panel3 .search_list a {
    background: var(--bg-blue);
    color: var(--main-color);
}

.panel1 .search_list a::after,
.panel2 .search_list a::after,
.panel3 .search_list a::after {
    background: var(--main-color);
}

.panel4 .search_list a,
.panel5 .search_list a {
    background: var(--bg-pink);
    color: #e7305b;
}

/* ----- 画像あり ----- */
.panel_flex.is-active {
    display: flex;
    flex-flow: wrap;
    flex-direction: column-reverse;
    gap: 60px;
}

.panel_flex .search_img {
    width: calc(100% - 200px);
    margin: 0 auto !important;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
}

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

.panel_flex .search_list {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    padding: 40px 40px 50px;
    background: #ffffff;
    border-radius: 0 0 30px 30px;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .search::after {
        right: -90px;
        top: 65px;
        width: 200px;
        height: 185px;
    }

    .search .inner {
        padding: 100px 10px 80px;
    }

    .search .tab_list {
        flex-flow: none;
    }

    .search .tab_list .tab {
        width: 100%;
        min-height: auto;
        padding: 10px !important;
        font-size: 90%;
        transform: translate(0, 0) !important;
        text-align: center;
        line-height: 1.45;
        border-radius: 10px 10px 0 0;
    }

    /* ----- パネル ----- */
    .search .panel {}

    /* ----- 項目 ----- */
    .search_list {
        grid-template-columns: repeat(1, 1fr);
        padding: 30px 20px 20px;
    }

    /*
    .panel1 .search_list a,
    .panel2 .search_list a {
        min-height: inherit;
        padding: 13px 45px 13px 20px;
    }
    */

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

    .panel_flex .search_img {
        width: 100%;
    }

    .panel_flex .search_list {
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
        padding: 40px 20px 20px;
    }
}

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

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

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

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

.pickup::before {
    left: 0;
    top: -480px;
    right: 0;
    width: 100%;
    height: 540px;
    background: #ffffff;
    -webkit-mask: url(../images/front/nami_01.svg) no-repeat center / cover;
    mask: url(../images/front/nami_01.svg) no-repeat center / cover;
    pointer-events: none;
    transform: scale(-1, 1);
}

.pickup::after {
    left: -40px;
    top: -345px;
    width: 600px;
    height: 339px;
    background: url(../images/front/geometry_05.png) left top / cover no-repeat;
}

.pickup .inner {
    position: relative;
    width: 100%;
    max-width: 1500px;
    padding: 70px 50px 0;
}

.pickup .inner::after {
    position: absolute;
    content: '';
    pointer-events: none;
    mask: url(../images/front/mask_shape01.svg) top left / cover no-repeat;
    -webkit-mask: url(../images/front/mask_shape01.svg) top left / cover no-repeat;
    top: 100px;
    left: -340px;
    width: 1200px;
    height: 983px;
    background: linear-gradient(transparent, rgb(222 242 255), rgb(203 255 245) 70%, transparent);
    z-index: -1;
    transform: rotate(155deg);
}

.pickup_list {
    display: flex;
    flex-flow: wrap;
    gap: 20px;
}

.pickup_item {
    width: calc(50% - 10px);
    padding: 30px;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
}

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

.pickup_wrap {
    padding: 0 30px 30px;
}

.pickup_title {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto 15px;
    padding: 30px;
    text-align: center;
    font-family: var(--font-jp);
    letter-spacing: 3px;
}

.pickup_title h2,
.pickup_title h3 {
    background: none;
    font-size: 200%;
    font-weight: 600;
    letter-spacing: 1px;
}

.pickup_title .eng {
    font-size: 100%;
    font-family: var(--font-en);
}

.pickup_img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    max-height: 300px;
    z-index: 1;
}

.pickup_img::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    right: 0;
    bottom: 0;
    margin: auto;
    background: linear-gradient(to left, rgb(177 207 226 / 30%), rgba(52, 100, 131, 0.1), transparent);
}

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

.pickup_text {
    margin: 30px 0 50px;
    min-height: 120px;
    font-size: 110%;
}

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

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

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

.pickup_buttons .pickup_btn:first-child a{
    padding: 10px 28px 10px 5px;
    letter-spacing: 0;
}

.pickup_btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 20px;
    height: 20px;
    background: var(--sub-color);
    -webkit-mask: url(../images/setting/btn_arrow.svg) no-repeat center / cover;
    mask: url(../images/setting/btn_arrow.svg) no-repeat center / cover;
    transform: translateY(-50%);
    transition: right 0.2s;
}

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

/* ----- 奇数 ----- */
.pickup_item:nth-child(odd) .pickup_title {
    color: #0069ad;
    border-bottom: 1px solid #c4e1f4;
}

.pickup_item:nth-child(odd) .pickup_title .eng {
    color: #67a6cf !important;
}

.pickup_item:nth-child(odd) .pickup_btn a::after {
    background: var(--main-color);
}

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

/* ----- 偶数 ----- */
.pickup_item:nth-child(even) .pickup_title {
    color: var(--sub-color);
    border-bottom: 1px solid #f4becb;
}

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

.pickup_item:nth-child(even) .pickup_title .eng {
    color: #f4becb !important;
}

.pickup_item:nth-child(even) .pickup_btn a {
    background: var(--bg-pink);
    border: 1px solid var(--bg-pink);
    color: #e7305b;
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .pickup::after {
        left: -40px;
        top: -165px;
        width: 250px;
        height: 142px;
    }

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

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

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

    .pickup_list {
        width: 100%;
    }

    .pickup_item {
        width: 100%;
        padding: 20px !important;
    }

    .pickup_title {
        padding: 10px;
        font-size: 110%;
    }

    .pickup_title::before {
        bottom: -20px;
        width: 25px;
        height: 20px;
    }

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

    .pickup_wrap {
        padding: 0;
    }

    .pickup_title h2,
    .pickup_title h3 {
        font-size: 130%;
    }

    .pickup_text {
        margin: 20px 0 30px;
    }

    .pickup_btn {
        width: 100%;
    }
}

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

  *医療コラム（パターン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: 180px 0 220px;
    background: linear-gradient(#e7feff 0%, #e2fffa 100%);
}

#infinitySlider .splide__list {
    gap: 20px;
}

#infinitySlider .splide__slide {
    position: relative;
    width: 400px !important;
    z-index: 1;
}

#infinitySlider .splide__slide:nth-child(odd) {
    margin-top: 20px;
}

#infinitySlider .splide__slide img {
    border-radius: 10px;
    overflow: hidden;
}

#infinitySlider .splide__track {
    z-index: 1 !important;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    #infinitySlider {
        padding: 0 0 140px;
    }

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