@charset "UTF-8";

/* ---------------------
  - *基本設定
  - *タイトル
  - *メインビジュアル
  - *バナーエリア
  - *医院概要
  - *ご挨拶
  - *診療案内
  - *当院の特徴
  - *病状・病名から探す
  - *医療コラム
  - *無限スライダー
--------------------- */
@import url("variables.css");

/* ==================================================================================================================================

  *基本設定

================================================================================================================================== */
.front {
    overflow: hidden;
    background: url("../images/top_bg.jpg") repeat;
}
.text > *:not(:last-child) {
    margin-bottom: 2em;
}

/* ----- ボタン ----- */
.top_btn > * {
    position: relative;
    display: inline-block;
    padding: 10px 45px 10px 35px;
    background-color: transparent;
    border: 1px solid #a68b0c;
    color: #a68b0c;
    font-size: 100%;
    letter-spacing: 0.15em;
    text-align: center;
    vertical-align: bottom;
    border-radius: 30px;
    transition: background 0.2s, color 0.2s;
}
.top_btn > *:hover {
    background: #a68b0c;
    color: #fff;
}
.top_btn > *::after {
    position: absolute;
    top: 50%;
    right: 15px;
    display: block;
    width: 14px;
    height: 7px;
    background: #a68b0c;
    -webkit-mask: url(../images/btn_arrow.png) no-repeat center/cover;
    mask: url(../images/btn_arrow.png) no-repeat center/cover;
    transform: translateY(-50%);
    transition: right 0.2s, background 0.2s;
    content: "";
}
.top_btn > *:hover::after {
    right: 12px;
    background: #fff;
}

/* ----- パララックス ----- */
.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: 0 5%;
    }
    
    /* ----- パララックス ----- */
    .parallax {
        height: 300px;
    }
}

/* ==================================================================================================================================

  *タイトル

================================================================================================================================== */
h1 {
    background-color: #fff;
}
.top_title {
    font-family: "fot-matisse-pron", sans-serif;
    font-weight: 500;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center top;
}
.top_title.title_left {
    text-align: start;
}
.top_title h2 {
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: 0.15em;
}
.top_title .eng {
    display: block;
    margin-top: 15px;
    font-size: 15px;
    letter-spacing: 0.1em;
    line-height: 1;
    color: var(--main-color);
}

/* ==============================================
  *SP タイトル
============================================== */
@media screen and (max-width: 640px) {
    .top_title {
        margin-bottom: 40px;
    }
    .top_title h2 {
        font-size: 24px;
    }
    .top_title .eng {
        margin-top: 10px;
        font-size: 13px;
    }
}

/* ==================================================================================================================================

  *メインビジュアル

================================================================================================================================== */
.mainvisual {
    position: relative;
    z-index: 1;
    height: 700px;
    overflow: hidden;
}
.mvSlider {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

/* ----- スライダーのArrowボタン ----- */
.mvSlider .sliderBtn {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    padding: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transform: translateY(-50%);
}
.mvSlider .sliderBtn#mv_btnPrev {
    left: 20px;
}
.mvSlider .sliderBtn#mv_btnNext {
    right: 20px;
}
.mvSlider .sliderBtn span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    border-radius: 50%;
    transition: background 0.2s;
}
.mvSlider .sliderBtn span:hover {
    background: var(--text-color);
}
.mvSlider .sliderBtn span::before {
    padding: 0 0 1px 0;
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    color: #ffffff;
    font-size: 15px;
    transition: color 0.2s;
}
.mvSlider .sliderBtn#mv_btnPrev span::before {
    content: "\f053";
}
.mvSlider .sliderBtn#mv_btnNext span::before {
    content: "\f054";
}

/* 各スライダーのボタンは非表示に */
.mvSlider .splide__arrows {
    display: none;
}

/* ----- MVの画像 ----- */
.mvImg {
    width: 100%;
    height: 100%;
}
.mvImg .splide__track {
    width: 100%;
    height: 100%;
}
.mvImg .splide__slide {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.mvImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* フェードの専用スタイル */
.fade .mvImg .splide__slide img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: calc(100% + 50px);
    pointer-events: none;
}

/* アニメーションを実行 */
.fade.move .mvImg .splide__slide img {
    animation: hideTranslate 8s ease-out forwards;
}

.fade.move .mvImg .splide__slide.is-active img {
    animation: showTranslate 8s ease-out forwards;
}

/* MVのアニメーション  */
@keyframes 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%;
}
.mvContents .splide__track {
    width: 100%;
    height: 100%;
}

/* バナー */
.mv_bna {
    position: absolute;
    left: 0;
    bottom: 50px;
    display: flex;
    gap: 10px;
}
.mv_bna li a {
    opacity: 1;
    transition: 0.3s ease-out;
}
.mv_bna li a:hover {
    opacity: 0.6;
}

/* サブカラー */
.open_bnr.subcolor > * {
    background: var(--sub-color);
}
.open_bnr.subcolor > * .nairankai_tit {
    color: var(--sub-color);
}

/* ----- RIBONバナー ----- */
.mv_ribon {
    position: absolute;
    bottom: 150px;
    left: 0;
}
.sp_only {
    display: none;
}

/* ==============================================
  *SP メインビジュアル
============================================== */
@media screen and (max-width: 640px) {
    .mainvisual {
        height: 400px;
    }
    
    /* ----- スライダーのArrowボタン ----- */
    .mvSlider .sliderBtn {
        top: 50%;
        width: 40px;
        height: 40px;
        padding: 2px;
        font-size: 12px;
    }
    .mvSlider .sliderBtn#mv_btnPrev {
        left: 10px;
    }
    .mvSlider .sliderBtn#mv_btnNext {
        right: 10px;
    }
    .mvSlider .sliderBtn span::before {
        font-size: 11px;
    }
    .mvCatch {
        top: auto;
        bottom: 20px;
    }
    .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 {
    }
    .mv_bna {
        bottom: 15px;
        left: 15px;
    }
    .mv_bna li {
        width: 35vw;
    }
    .sp_only {
        display: block;
        background: none !important;
    }
    .sp_only .inner {
        padding: 0 20px;
    }
    .sp_only_contents {
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        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_prev span::before {
    content: "\f104";
}
#bannerSlider .bannerSlider_arrow_next {
    right: 0;
}
#bannerSlider .bannerSlider_arrow_next span::before {
    content: "\f105";
}

/* ページネーション */
#bannerSlider .bannerSlider_pagination {
    z-index: 1;
    display: flex;
    gap: 15px;
    margin: 30px auto 0;
}
#bannerSlider .bannerSlider_page {
    width: 10px;
    height: 10px;
    background-color: #e8e8e8;
    border-radius: 50%;
    transition: background 0.2s;
}
#bannerSlider .bannerSlider_page.is-active {
    background: var(--main-color);
}

/* ==============================================
  *SP バナーエリア（追加コンテンツ）
============================================== */
@media screen and (max-width: 640px) {
    /* ----- グリッドバナー ----- */
    .banner_grid li {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* ----- スライダーバナー ----- */
    #bannerSlider .splide__inner {
        position: relative;
        z-index: 1;
        padding: 0 15px;
    }
    /* スライダーのArrowボタン */
    #bannerSlider .bannerSlider_arrow {
        width: 40px;
        height: 40px;
    }
    #bannerSlider .bannerSlider_arrow i {
        padding: 0 0 1px 0;
    }
    /* ページネーション */
    #bannerSlider .bannerSlider_pagination {
        gap: 12px;
        margin: 20px auto 0;
    }
    #bannerSlider .bannerSlider_page {
        width: 8px;
        height: 8px;
    }
}

/*==================================================================================================================================

  *医院概要（パターン02）

==================================================================================================================================*/
.clinic {
    position: relative;
    z-index: 1;
    background: url("../images/top_bg_cloud_left.png") no-repeat left calc(50% - 580px) top 70px / 400px auto, url("../images/top_bg_cloud_right.png") no-repeat right calc(50% - 550px) top 700px / 400px auto;
}

/* ----- お知らせ ----- */
.clinic .news {
    position: relative;
    z-index: 1;
}
.clinic .news .inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding: 100px 0 60px;
}
.clinic .news .news_left {
    flex-shrink: 0;
}
.clinic .news .top_title {
    margin: 0 0 0;
    padding: 40px 0 0;
    background-image: url("../images/top_tit_deco01.png");
    background-size: 47px auto;
}
.clinic .news .top_title h2 {
    font-size: 28px;
}
.clinic .top_title .eng {
    margin-top: 10px;
}
.clinic .news .top_btn {
    margin-top: 30px;
    text-align: center;
}

/* ----- 医院概要 ----- */
.clinic .info .inner {
    display: flex;
    gap: 40px;
    padding: 30px 0 150px;
}
.clinic .info .inner > * {
    width: calc(50% - 20px);
}
.clinic .info address > * {
    position: relative;
    z-index: 1;
}
.clinic .info address .location {
    padding: 0 0;
    letter-spacing: 0.05em;
}
.clinic .info address .location .zipcode {
    margin-right: 10px;
}
.clinic .info address .tel {
    font-family: "fot-matisse-pron", sans-serif;
    font-weight: 500;
    margin-top: 15px;
    padding: 0 0;
    font-size: 32px;
    line-height: 1;
}
.clinic .info address .tel span {
    font-size: 18px;
}
.clinic .info address .fax {
    margin-top: 15px;
    padding: 0 0;
    font-size: 30px;
    line-height: 1;
}
.clinic .info address .fax::before {
    content: "\f249";
}
.clinic .info address .note {
    margin-top: 20px;
    padding-left: 12px;
    font-size: 90%;
}
.clinic .info .speciality {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px auto 0;
    padding: 15px;
    background: #fff;
}
.clinic .info .speciality .title {
    flex-shrink: 0;
    width: fit-content;
    padding: 6px 30px;
    background: var(--main-color);
    color: #ffffff;
    text-align: center;
}
.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 .top_btn {
    margin-top: 30px;
    text-align: center;
}
.clinic .info .googlemap iframe {
    height: 350px;
}

@media screen and (max-width: 640px) {
    .clinic .news .top_title {
        margin: 0 0 30px;
        padding: 22px 0 0;
        background-size: 32px auto;
    }
    .clinic .news .top_title h2 {
        font-size: 22px;
    }
    .clinic .top_title .eng {
        margin-top: 8px;
        font-size: 13px;
    }
    .clinic .news .inner {
        flex-flow: column;
        gap: 0;
        padding: 20px 5% 40px;
    }
    .clinic .info .inner {
        flex-flow: column;
        gap: 25px;
        padding: 0 5% 120px;
    }
    .clinic .info address .tel {
        margin-top: 10px;
        font-size: 30px;
    }
    .clinic .info .inner > * {
        width: 100%;
    }
    .clinic .info .googlemap iframe {
        height: 320px;
    }
    .clinic .info .speciality {
        flex-flow: column;
        gap: 10px;
        margin: 16px auto 0;
        padding: 10px;
    }
    .clinic .info .speciality .title {
        width: 100%;
    }
}

/* ==================================================================================================================================

  *ご挨拶

================================================================================================================================== */
.greeting {
    position: relative;
    padding: 0 0 200px;
    background: url("../images/top_greeting_bg01.png") no-repeat left calc(50% - 460px) top 80px #fff;
}
.greeting::before {
    position: absolute;
    top: -130px;
    left: calc(50% - 200px);
    width: 400px;
    height: 200px;
    border-radius: 200px 200px 0 0;
    background-color: #fff;
    content: "";
}
.greeting::after {
    position: absolute;
    z-index: 1;
    right: calc(50% - 780px);
    bottom: 40px;
    width: 466px;
    height: 308px;
    background: url(../images/top_greeting_bg02.png) no-repeat center / contain;
    content: "";
}
.greeting_box {
    position: relative;
    z-index: 1;
    padding: 1px 0 0;
}
.greeting .top_title {
    margin: -67px 0 60px;
    padding: 62px 0 0;
    background-image: url("../images/top_tit_deco02.png");
    background-size: 84px auto;
}
.greeting_flex {
    display: flex;
    gap: 70px;
}
.greeting_box:not(:last-child) {
    margin-bottom: 70px;
}
.greeting_left {
    flex-shrink: 0;
    width: 64%;
}
.greeting_text h3 {
    margin-bottom: 30px !important;
    font-family: "fot-matisse-pron", sans-serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.5;
    color: var(--main-color);
}
.greeting_text p {
    line-height: 2.2;
}
.greeting_profile {
    margin-top: 30px;
    font-family: "fot-matisse-pron", sans-serif;
    font-weight: 500;
    line-height: 1.5;
}
.greeting_profile .position {
    font-size: 120%;
}
.greeting_profile .name {
    font-size: 150%;
}
.greeting_btn {
    margin-top: 50px;
    text-align: left;
}

/* ==============================================
  *SP ご挨拶
============================================== */
@media screen and (max-width: 640px) {
    .greeting {
        padding: 0 0 100px;
        background-size: 404px auto;
        background-position: left -100px top 30%;
    }
    .greeting::before {
        top: -70px;
        left: calc(50% - 110px);
        width: 220px;
        height: 100px;
        border-radius: 110px 110px 0 0;
    }
    .greeting::after {
        right: -30px;
        bottom: 20px;
        width: 233px;
        height: 154px;
    }
    .greeting .top_title {
        margin: -35px 0 30px;
        padding: 40px 0 0;
        background-size: 52px auto;
    }
    .greeting_flex {
        flex-flow: column-reverse;
        gap: 25px;
    }
    .greeting_img {
        width: 80%;
        margin: 0 auto;
    }
    .greeting_left {
        width: 100%;
    }
    .greeting_text h3 {
        margin-bottom: 14px !important;
        font-size: 20px;
    }
    .greeting_profile {
        margin-top: 18px;
    }
    .greeting_profile .position {
        line-height: 1.5;
    }
    .greeting_btn {
        margin-top: 25px;
        text-align: center;
    }
}

/* ==================================================================================================================================

  *診療案内

================================================================================================================================== */
.medical {
    position: relative;
    padding: 80px 0 140px;
    background: url("../images/top_bg_cloud_right.png") no-repeat right calc(50% - 660px) bottom 276px / 400px auto;
}
.medical::before {
    position: absolute;
    top: -60px;
    left: calc(50% - 720px);
    width: 400px;
    height: 199px;
    background: url(../images/top_bg_cloud_left.png) no-repeat center / contain;
    content: "";
}
.medical .top_title {
    margin-bottom: 60px;
    padding: 46px 0 0;
    background-image: url("../images/top_tit_deco03.png");
    background-size: 80px auto;
}
.medical .top_title span {
    color: var(--main-color);
}
.medical_list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 20px;
}
.medical_item {
    position: relative;
    box-sizing: border-box;
    z-index: 1;
    width: calc(25% - 15px);
    padding: 9px;
    height: auto;
    border: 1px solid rgba(166, 139, 12, 0.5);
}
.medical_item:hover {
    transform: translateY(-10px);
}
.medical_img {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    transition: background 0.2s;
}
.medical_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.medical_inner {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 25px 20px 30px;
    background: #fff;
    text-align: center;
}
.medical_icon {
    width: 100%;
    max-width: 134px;
    margin: 0 auto 12px !important;
}
.medical_title h3 {
    font-family: "fot-matisse-pron", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    color: #89670b;
}
.medical_title_eng {
    margin-top: 5px;
    font-family: "fot-matisse-pron", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-align: center;
    color: #89670b;
    opacity: 0.5;
}
.medical_text {
    color: var(--text-color);
}
.medical_btn span {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin: 15px auto 0;
    padding: 12px 25px 12px 15px;
    background: #fff;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    font-size: 14px;
    letter-spacing: 0.08em;
    line-height: 1;
    text-align: center;
    border-radius: 22px;
    transition: padding 0.2s, color 0.2s, background 0.2s;
}
.medical_btn span::after {
    content: "\f105";
    position: absolute;
    top: 50%;
    right: 10px;
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    transform: translateY(-50%);
}
.medical_item:hover .medical_btn span {
    background: var(--main-color);
    color: #fff;
}

/* ==============================================
  *SP 診療案内
============================================== */
@media screen and (max-width: 640px) {
    .medical {
        padding: 40px 0 50px;
        background: url(../images/top_bg_cloud_right.png) no-repeat  / 200px auto;
        background-size: 200px auto;
        background-position: right -60px bottom 20px;
    }
    .medical::before {
        top: -30px;
        left: -60px;
        width: 200px;
        height: 100px;
    }
    .medical .top_title {
        margin-bottom: 30px;
        padding: 30px 0 0;
        background-size: 50px auto;
    }
    .medical_list {
        gap: 15px 10px;
    }
    .medical_item {
        width: calc(50% - 5px);
        padding: 5px;
    }
    .medical_item:hover {
        transform: translateY(-5px);
    }
    .medical_inner {
        min-height: auto;
        padding: 15px 5px;
    }
    .medical_icon {
        width: 50%;
    }
    .medical_title h3 {
        font-size: 110%;
    }
}

/*==================================================================================================================================

  *当院の特徴（パターン02）

==================================================================================================================================*/
.feature {
    position: relative;
    padding: 60px 0 160px;
    background: #fbf5f5;
}
.feature::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 146px;
    background-color: #fff;
    content: "";
}
.feature .top_title {
    position: relative;
    margin-bottom: 50px;
    padding: 64px 0 0;
    background-image: url("../images/top_tit_deco04.png");
    background-size: 38px auto;
}
.feature_bg::before,
.feature_bg::after {
    position: absolute;
    width: 800px;
    height: 180px;
    background-repeat: repeat;
    background-position: center;
    content: "";
}
.feature_bg::before {
    left: 0;
    top: 0;
    background-image: url("../images/top_feature_deco01.png");
    clip-path: polygon(100% 0, 0 0, 0 100%);
}
.feature_bg::after {
    right: 0;
    bottom: 0;
    background-image: url("../images/top_feature_deco02.png");
    clip-path: polygon(100% 100%, 100% 0, 0 100%);
}
.feature_list {
    display: flex;
    flex-flow: wrap;
    gap: 60px 30px;
}
.feature_item {
    display: flex;
    height: auto;
    width: 100%;
    margin-top: 50px;
}
.feature_img {
    position: relative;
    z-index: 1;
    width: 560px;
    flex-shrink: 0;
    margin-top: -40px;
}
.feature_inner {
    position: relative;
    display: flex;
    flex-flow: column;
    width: calc(100% + 50px);
    height: 100%;
    min-height: 400px;
    margin: 0 10px 0 -160px;
    padding: 50px 30px 50px 210px;
    background: #fff;
}
.feature_inner::before,
.feature_inner::after {
    position: absolute;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.feature_item:nth-child(1) .feature_inner::before {
    top: -20px;
    right: -20px;
    background-image: url("../images/top_feature_corner_righttop.png");
}
.feature_item:nth-child(1) .feature_inner::after {
    bottom: -20px;
    left: -20px;
    background-image: url("../images/top_feature_corner_leftbtm.png")
}
.feature_item:nth-child(2) .feature_inner::before {
    top: -20px;
    left: -20px;
    background-image: url("../images/top_feature_corner_lefttop.png");
}
.feature_item:nth-child(2) .feature_inner::after {
    right: -20px;
    bottom: -20px;
    background-image: url("../images/top_feature_corner_rightbtm.png");
}
.feature_inner > *:not(:last-child) {
    margin-bottom: 30px;
}
.feature_title {
    display: flex;
    flex-flow: column;
    margin-bottom: 20px !important;
}
.feature_title h3 {
    padding: 6px 0 6px 105px;
    font-family: "fot-matisse-pron", sans-serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.385;
    letter-spacing: 0.1em;
    color: var(--main-color);
    background: url("../images/top_feature_no01.png") no-repeat left center / 86px auto;
}
.feature_item:nth-child(2) .feature_title h3 {
    background-image: url("../images/top_feature_no02.png");
}
.feature_item .top_btn {
    margin-top: auto;
    text-align: right;
}
.feature_item .btn01 > * {
    padding: 10px 40px 10px 30px;
    font-size: 95%;
}
.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 -160px 0 10px;
    padding: 50px 200px 50px 50px;
}

/* ボタン横並び */
.btnflex_feature .btn01 {
    width: calc(50% - 2.5px);
}
.btnflex_feature .btn01 > * {
    width: 100%;
}

@media screen and (max-width: 640px) {
    .feature {
        padding: 40px 0 70px;
    }
    .feature::before {
        height: 106px;
    }
    .feature_bg::before, 
    .feature_bg::after {
        width: 60%;
        height: 50px;
        background-repeat: repeat;
        background-position: center;
        content: "";
    }
    .feature .top_title {
        margin-bottom: 30px;
        padding: 48px 0 0;
        background-size: 28px auto;
    }
    .feature_list {
        gap: 40px;
    }
    .feature_item {
        position: relative;
        flex-flow: column;
        width: 100%;
        margin: 0;
    }
    .feature_item::before,
    .feature_item::after {
        position: absolute;
        width: 40px;
        height: 40px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        content: "";
    }
    .feature_item::before {
        top: -20px;
        right: -20px;
        background-image: url(../images/top_feature_corner_righttop.png);
    }
    .feature_item::after {
        bottom: -20px;
        left: -20px;
        background-image: url(../images/top_feature_corner_leftbtm.png);
    }
    .feature_img {
        width: 100%;
        margin: 0;
    }
    .feature_inner {
        width: 100%;
        min-height: auto;
        padding: 20px 20px 30px;
        margin: 0;
    }
    .feature_inner::before,
    .feature_inner::after {
        display: none;
    }
    .feature_inner > *:not(:last-child) {
        margin-bottom: 20px;
    }
    .feature_title {
        margin-bottom: 15px !important;
        min-height: auto;
    }
    .feature_title h3 {
        padding: 4px 0 4px 70px;
        font-size: 19px;
        background-size: 60px auto;
    }
    .feature_item .top_btn {
        text-align: center;
    }
    
    /* 左右 */
    .feature_item:nth-child(even) {
        flex-flow: column;
    }
    .feature_item:nth-child(even) .feature_inner {
        margin: 0 auto;
        padding: 20px 20px 30px;
    }
    
    /* 横並び */
    .btnflex_feature .btn01 {
        width: 100%;
    }
}

/* ==================================================================================================================================

  *病状、症状から探す

================================================================================================================================== */
.search {
    position: relative;
    padding: 80px 0 80px;
    background: url("../images/top_search_bg01.png") no-repeat left calc(50% - 530px) top 144px, url("../images/top_search_bg02.png") no-repeat right calc(50% - 550px) bottom 0px;
}
.search .top_title {
    margin-bottom: 50px;
    padding: 44px 0 0;
    background-image: url("../images/top_tit_deco05.png");
    background-size: 104px auto;
}
.search .tab_list {
    gap: 10px;
}
.search .tab_list .tab {
    padding: 12px 20px;
    border-radius: 10px 10px 0 0;
}
.search .panel {
    position: relative;
    z-index: 1;
    padding: 25px;
    background: #e0aeb1;
}
.search_list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 20px;
    height: fit-content;
}
.search_list li {
    width: calc(33.3333333333% - 13.3333333333px);
    height: auto;
}

/* ----- リンクボタン ----- */
.search_list li a {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 60px;
    padding: 10px 45px 10px 30px;
    background: #fff;
    color: var(--text-color);
    border-radius: 8px;
}
.search_list li a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 19px;
    z-index: 2;
    display: block;
    width: 14px;
    height: 7px;
    background: #ffffff;
    -webkit-mask: url(../images/btn_arrow.png) no-repeat center/14px 7px;
    mask: url(../images/btn_arrow.png) no-repeat center/14px 7px;
    transform: translateY(-50%);
    transition: background 0.2s;
}
.search_list li a:hover::before {
    background: #e0aeb1;
}

/* 矢印の背景 */
.search_list li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    z-index: 1;
    display: block;
    width: 22px;
    height: 22px;
    background: #e0aeb1;
    border: 1px solid #e0aeb1;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: background 0.2s;
}
.search_list li a:hover::after {
    background: #ffffff;
}

/* ----- 画像あり ----- */
.panel_flex.active {
    display: flex;
    flex-flow: wrap;
    gap: 20px;
}
.search_img {
    width: calc(50% - 10px);
    margin: 0 !important;
}
.panel_flex .search_list {
    width: calc(50% - 10px);
}
.panel_flex .search_list li {
    width: calc(50% - 10px);
}

/* ==============================================
  *SP 病状、症状から探す
============================================== */
@media screen and (max-width: 640px) {
    .search {
        padding: 40px 0 60px;
        background-size: 419px auto, 587px auto;
        background-position: left -200px top 80px, right -300px bottom 10px;
    }
    .search {
        position: relative;
        padding: 40px 0 70px;
    }
    .search .top_title {
        margin-bottom: 30px;
        padding: 30px 0 0;
        background-size: 64px auto;
    }
    .search .tab_list {
        flex-flow: column;
        gap: 7px;
        margin: 0 0 10px;
    }
    .search .tab_list .tab {
        width: 100%;
        min-height: auto;
        padding: 10px !important;
        font-size: 120%;
        transform: translate(0, 0) !important;
    }
    .search .panel {
        padding: 20px;
    }
    .search_list {
        gap: 10px;
    }
    .search_list li {
        width: 100%;
    }
    .search_list li a {
        min-height: auto;
        padding: 10px 40px;
    }
    
    /* ----- 画像あり ----- */
    .search .panel_flex.active {
        gap: 20px;
    }
    .search_img {
        width: 100%;
    }
    .panel_flex .search_list {
        width: 100%;
    }
    .panel_flex .search_list li {
        width: 100%;
    }
}

/* ==================================================================================================================================

  *医療コラム（パターン01）

================================================================================================================================== */
.column {
    padding: 80px 0 140px;
    background: url("../images/top_bg_cloud_left.png") no-repeat left calc(50% - 560px) top 108px / 400px auto, url("../images/top_bg_cloud_right.png") no-repeat right calc(50% - 660px) bottom 80px / 400px auto;
}
.column .top_title {
    margin-bottom: 50px;
    padding: 46px 0 0;
    background-image: url("../images/top_tit_deco07.png");
    background-size: 92px auto;
}
.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: 13px 10px 12px;
    background: var(--main-color);
    color: #ffffff;
    font-size: 110%;
    line-height: 1.4;
    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 {
        padding: 40px 0 60px;
        background-size: 200px auto, 200px auto;
        background-position: left -80px top 80px, right -80px bottom 20px;
    }
    .column .top_title {
        margin-bottom: 30px;
        padding: 30px 0 0;
        background-size: 58px auto;
    }
    .column_list {
        gap: 40px;
    }
    .column_box {
        width: 100%;
    }
}

/*==================================================================================================================================

  *ピックアップ（パターン02） - 追加コンテンツ

==================================================================================================================================*/
.pickup {
    position: relative;
    padding: 100px 0 140px;
    background-color: rgba(255, 255, 255, 0.5);
}
.pickup::before {
    position: absolute;
    left: 0;
    top: calc(50% - 150px);
    width: 100%;
    height: 420px;
    background: url("../images/top_treatment_bg.png") repeat left top;
    content: "";
}
.pickup .top_title {
    margin-bottom: 50px;
    padding: 48px 0 0;
    background-image: url("../images/top_tit_deco06.png");
    background-size: 72px auto;
}
.pickup .inner {
    width: 100%;
    max-width: none;
}
.pickup_list {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 1200px;
    margin: 0 auto;
}
.pickup_item {
    width: 23.5%;
}
.pickup_inner {
    display: flex;
    flex-flow: column;
    justify-content: center;
    max-width: 550px;
    height: auto;
}
.pickup_title {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto 12px;
    padding: 13px 30px;
    line-height: 1;
    text-align: center;
    border-radius: 5px;
    background-color: #f6e9e8;
}
.pickup_title h2, .pickup_title h3 {
    background: none;
    font-family: "fot-matisse-pron", sans-serif;
    font-weight: 500;
    font-size: 130%;
}
.pickup_title span {
    font-size: 100%;
}
.pickup_img {
    position: relative;
    z-index: 1;
}
.pickup_text {
    min-height: 146px;
    margin: 10px 0 15px;
    padding: 15px 15px;
    line-height: 1.8;
    background-color: #fff;
    border: 10px;
}
.pickup_link {
    display: flex;
}
.pickup_link .top_btn {
    width: 100%;
    text-align: center;
}
.pickup_link .top_btn a {
    min-width: 180px;
    background-color: #fff;
}
.pickup_link .top_btn a:hover {
    background-color: #a68b0c;
}

/*==============================================
  *SP　ピックアップ（追加コンテンツ）
==============================================*/
@media screen and (max-width:640px) {
    .pickup {
        padding: 40px 0 50px;
    }
    .pickup::before {
        top: 180px;
        height: calc(100% - 260px);
    }
    .pickup .top_title {
        margin-bottom: 30px;
        padding: 32px 0 0;
        background-size: 42px auto;
    }
    .pickup_list {
        width: calc(100%);
        flex-direction: column;
        gap: 40px;
    }
    .pickup_item {
        width: 100%;
    }
    .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_link {
        min-height: auto;
    }
    .pickup_text {
        min-height: initial;
    }
    .pickup_link .pickup_btn {
        width: 100%;
    }
}

/* ==================================================================================================================================

  *無限スライダー

================================================================================================================================== */
#infinitySlider {
}
#infinitySlider .splide__list {
    gap: 14px;
}
#infinitySlider .splide__slide {
    width: 260px !important;
}

/* ==============================================
  *SP 無限スライダー
============================================== */
@media screen and (max-width: 640px) {
    #infinitySlider .splide__slide {
        width: 160px !important;
    }
}
