.btn-text {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: #e57d59;
    white-space: nowrap
}

@media screen and (min-width: 1100px) {
    .btn-text {
        font-size: 1.8rem
    }
}

.btn-text-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    background-color: #e57d59;
    border-radius: 50%;
    transition: .5s
}

@media screen and (min-width: 1100px) {
    .btn-text-icon {
        width: 5.2rem;
        height: 5.2rem
    }
}

.btn-text-icon img {
    display: block;
    width: 2rem;
    height: 2rem;
    filter: brightness(0) saturate(100%) invert(99%) sepia(6%) saturate(22%) hue-rotate(217deg) brightness(105%) contrast(100%);
    transition: .5s
}

.btn-text:hover {
    color: #dd643b
}

.btn-text:hover .btn-text-icon {
    background-color: #dd643b
}

.btn-text:hover .btn-text-icon img {
    transform: rotate(45deg)
}

.btn-text.down .btn-text-icon img {
    transform: rotate(135deg)
}

.btn {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1.6rem 6rem 1.6rem 3rem;
    background-color: #e57d59;
    border-radius: 33px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.7;
    max-width: 33rem;
    margin: 0 auto
}

.btn::after {
    content: "";
    position: absolute;
    right: .8rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4.2rem;
    height: 4.2rem;
    background-color: #fff;
    border-radius: 50%
}

@media screen and (min-width: 1100px) {
    .btn--wide {
        width: 46rem
    }
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: .8rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4.2rem;
    height: 4.2rem;
    z-index: 1
}

.btn-icon img {
    display: block;
    width: 2rem;
    height: 2rem;
    transition: .5s
}

.btn:hover {
    background-color: #dd643b
}

.btn:hover .btn-icon img {
    transform: rotate(45deg)
}

.btn.green {
    background-color: #4ca392
}

.btn.green .btn-icon img {
    filter: brightness(0) saturate(100%) invert(59%) sepia(29%) saturate(629%) hue-rotate(118deg) brightness(92%) contrast(87%)
}

.btn.green:hover {
    background-color: #3a8579
}

.btn.short {
    max-width: 32rem
}

.btn.long {
    max-width: 46rem
}

.ttl {
    text-align: center
}

.ttl-deco {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .8rem
}

.ttl-deco::before,
.ttl-deco::after {
    content: "";
    display: block;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center
}

.ttl-deco::before {
    width: 1.2rem;
    height: .9rem;
    background-image: url(../img/common/title_clover.svg);
    position: relative;
    top: -1.1rem
}

@media screen and (min-width: 1100px) {
    .ttl-deco::before {
        width: 1.6rem;
        height: 1.2rem
    }
}

.ttl-deco::after {
    width: 2.4rem;
    height: 2rem;
    background-image: url(../img/common/title_bird.svg)
}

.ttl-en {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    color: #c19d74;
    letter-spacing: .1em
}

@media screen and (min-width: 744px) {
    .ttl-en {
        font-size: 2.4rem;
        letter-spacing: .15em
    }
}

.ttl-label {
    margin-top: 1.6rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    color: #724822;
    line-height: 1.7
}

@media screen and (min-width: 744px) {
    .ttl-label {
        font-size: 1.6rem;
        margin-top: 2rem
    }
}

.ttl-title {
    margin-top: .8rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #724822;
    letter-spacing: .1em;
    line-height: 1.5
}

@media screen and (min-width: 744px) {
    .ttl-title {
        font-size: 3.2rem;
        letter-spacing: .2em
    }
}

.ttl.brown {
    margin-bottom: 2rem;
    display: block
}

.ttl.brown.left {
    display: inline-block;
    margin-bottom: 0
}

.ttl.brown.left .ttl-deco {
    justify-content: flex-start;
    width: 100%
}

.ttl.brown .ttl-en {
    font-size: 1.2rem
}

.ttl.brown .ttl-deco::before {
    background-image: url(../img/common/title_clover2.svg)
}

.ttl.brown .ttl-deco::after {
    content: none
}

@media screen and (min-width: 744px) {
    .ttl.brown {
        margin-bottom: 4.8rem
    }

    .ttl.brown .ttl-title {
        font-size: 2.4rem
    }
}

.families {
    position: relative;
    z-index: 2;
    background-color: #fff;
    padding-bottom: 8rem
}

@media screen and (min-width: 1100px) {
    .families {
        padding-bottom: 6.25vw
    }
}

.families-birds {
    display: flex;
    justify-content: flex-end;
    padding-right: 3rem;
    pointer-events: none
}

@media screen and (min-width: 1100px) {
    .families-birds {
        position: absolute;
        top: -1.7vw;
        right: 15.1041666667vw;
        padding-right: 0;
        margin-bottom: 0;
        z-index: 1
    }
}

.families-birds img {
    display: block;
    width: 14.8rem;
    height: auto
}

@media screen and (min-width: 1100px) {
    .families-birds img {
        width: 7.7083333333vw
    }
}

.families-photo {
    position: relative;
    background-image: url(../img/top/families_photo.webp);
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding-top: 77vw
}

@media screen and (min-width: 1100px) {
    .families-photo {
        padding-top: 0;
        margin: 0 3rem;
        border-radius: 20px;
        height: 44vw;
        width: 95%;
        background-size: cover;
        background-position: center;
        background-image: url(../img/top/families_photo_pc.webp)
    }
}

.families-photo--mvv {
    background-image: url(../img/mvv/families_photo_mvv.webp)
}

@media screen and (min-width: 1100px) {
    .families-photo--mvv {
        background-image: url(../img/mvv/families_photo_mvv_pc.webp)
    }
}

.families-photo .btn {
    border-radius: 56px
}

.families-content {
    position: relative;
    padding: 4rem 3rem;
    background: rgba(0, 0, 0, 0);
    border-radius: 0;
    isolation: isolate
}

.families-content::before {
    content: "";
    position: absolute;
    top: -5rem;
    left: -6rem;
    width: 32rem;
    height: 23.5rem;
    background: url("../img/top/families-blob_pc.svg") 0 0/100% 100% no-repeat;
    z-index: -1;
    pointer-events: none
}

@media screen and (min-width: 1100px) {
    .families-content::before {
        inset: 0;
        width: 100%;
        height: auto
    }
}

@media screen and (min-width: 1100px) {
    .families-content {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 6.375vw;
        margin: 0;
        width: 68rem;
        height: 50rem;
        padding: 10.3rem 12rem 10rem 10rem;
        overflow: visible
    }
}

.families-title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: #724822;
    line-height: 1.5;
    margin-bottom: 2.4rem
}

@media screen and (min-width: 1100px) {
    .families-title {
        font-size: 1.8rem;
        margin-bottom: 2.8rem
    }
}

.families-text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #724822;
    line-height: 2
}

@media screen and (min-width: 1100px) {
    .families-text {
        font-size: 1.6rem
    }
}

.families-text p+p {
    margin-top: 2rem
}

.families .btn {
    margin-top: 4rem
}

@media screen and (min-width: 1100px) {
    .families .btn {
        max-width: 46rem;
        margin-top: 3rem
    }
}

.reason {
    position: relative;
    z-index: 2;
    background-color: #fff;
    padding-bottom: 6rem
}

@media screen and (min-width: 744px) {
    .reason {
        padding-bottom: 0rem
    }
}

.reason-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none
}

.reason-bg picture,
.reason-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.reason-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 25rem;
    background: linear-gradient(to bottom, #fff 30%, transparent 100%);
    z-index: 1;
    pointer-events: none
}

.reason-bg::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25rem;
    background: linear-gradient(to top, #fff 30%, transparent 100%);
    z-index: 1;
    pointer-events: none
}

.reason-branch {
    display: none
}

@media screen and (min-width: 1100px) {
    .reason-branch {
        display: block;
        position: absolute;
        z-index: 1;
        pointer-events: none;
        width: 25vw
    }

    .reason-branch img {
        display: block;
        width: 100%;
        height: auto
    }

    .reason-branch--left {
        left: 0;
        top: 16rem;
        z-index: 10
    }

    .reason-branch--right {
        right: 0;
        top: 78rem;
        z-index: 10
    }
}

.reason .container {
    position: relative;
    z-index: 2
}

.reason .ttl {
    padding-top: 6rem
}

@media screen and (min-width: 1100px) {
    .reason .ttl {
        padding-top: 6.9791666667vw
    }
}

.reason-cards {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin: 5rem 0 4rem
}

@media screen and (min-width: 1100px) {
    .reason-cards {
        flex-direction: row;
        align-items: stretch;
        gap: 2rem;
        max-width: 124rem;
        margin: 4rem auto 0rem
    }
}

.reason-card {
    position: relative;
    width: 33rem;
    background: #fff;
    border-radius: 20px
}

@media screen and (min-width: 744px) {
    .reason-card {
        width: 58rem
    }
}

@media screen and (min-width: 1100px) {
    .reason-card {
        flex: 1;
        width: auto;
        &:not(:first-child)::after {
            content: "";
            position: absolute;
            left: -1rem;
            top: 50%;
            height: 30rem;
            width: 1px;
            background-color: #F5E9DC;
            transform: translateY(-50%);

        }
    }
}

.reason-card-top {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 3.6rem 2rem 2.4rem
}

.reason-card-num-area {
    position: absolute;
    top: 1.6rem;
    left: 1.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 6rem;
    padding-top: 1.6rem
}

.reason-card-leaf {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 7rem;
    height: auto;
    pointer-events: none;
    z-index: 0
}

.reason-card-leaf--orange {
    filter: brightness(0) saturate(100%) invert(57%) sepia(40%) saturate(700%) hue-rotate(330deg) brightness(105%)
}

.reason-card-leaf--teal {
    filter: brightness(0) saturate(100%) invert(58%) sepia(25%) saturate(600%) hue-rotate(130deg) brightness(90%)
}

.reason-card-leaf--gold {
    filter: brightness(0) saturate(100%) invert(68%) sepia(22%) saturate(500%) hue-rotate(10deg) brightness(100%)
}

.reason-card-en {
    position: relative;
    z-index: 1;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .1em;
    line-height: 1.5
}

.reason-card-en--orange {
    color: #e57d59
}

.reason-card-en--teal {
    color: #4ca392
}

.reason-card-en--gold {
    color: #c19d74
}

.reason-card-num {
    position: relative;
    z-index: 1;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 2rem;
    letter-spacing: .2em;
    line-height: 1.3
}

.reason-card-num--orange {
    color: #e57d59
}

.reason-card-num--teal {
    color: #4ca392
}

.reason-card-num--gold {
    color: #c19d74
}

.reason-card-icon {
    width: 8rem;
    height: 8rem;
    flex-shrink: 0
}

.reason-card-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain
}

.reason-card-title {
    padding: 0 2rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
    color: #724822;
    text-align: center;
    line-height: 1
}

@media screen and (min-width: 1100px) {
    .reason-card-title {
        font-size: 2rem;
        letter-spacing: .1em
    }
}

.reason-card-text {
    padding: 0 2rem;
    margin-top: 2rem;
    padding-bottom: 4rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: #776656;
    line-height: 2
}

@media screen and (min-width: 1100px) {
    .reason-card-text {
        font-size: 1.6rem;
        padding: 0 4rem 4rem
    }
}

.reason-photos {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    margin-top: 4rem;
    padding-bottom: 5rem
}

@media screen and (min-width: 1100px) {
    .reason-photos {
        gap: 2rem;
        margin-top: 6rem;
        padding-bottom: 10rem;
        justify-content: flex-start
    }
}

.reason-photos-item {
    width: 10.3rem;
    height: 8.4rem;
    border-radius: 32px 8px 32px 8px;
    overflow: hidden;
    flex-shrink: 0
}

@media screen and (min-width: 1100px) {
    .reason-photos-item {
        width: 11.4583333333vw;
        height: 9.375vw
    }
}

.reason-photos-item picture,
.reason-photos-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.reason-photos-item--lower {
    margin-top: 2rem
}

@media screen and (min-width: 1100px) {
    .reason-photos-item--lower {
        margin-top: 2.0833333333vw
    }
}

.about-sec {
    padding: 8rem 0 6rem;
    position: relative;
}

@media screen and (min-width: 744px) {
    .about-sec {
        padding: 10rem 0 12rem
    }
}
.about-sec .bird {
    position: absolute;
    top: -3rem;
    right: 3rem;
    width: 6.4rem;
    height: auto;
    z-index: 1;
    @media screen and (min-width: 744px) {
        right: 27.74vw;
        top: -8rem;
    }
}
.about-sec::after {
    content: "";
    background-image: url(../img/mvv/greeting-sep.svg);
    width: 100%;
    height: 3vw;
    position: absolute;
    top: -3vw;
    left: 0;
    background-position: center top;
    background-size: cover
}

@media screen and (min-width: 744px) {
    .about-sec::after {
        height: 3.5vw;
        top: -3.5vw
    }
}
.about-sec .container {
    max-width: 130rem
}

.about-sec-tree {
    display: none
}

@media screen and (min-width: 1100px) {
    .about-sec-tree {
        display: block;
        position: absolute;
        left: -17.7083333333vw;
        bottom: 0;
        width: min(49.4791666667vw, 950px);
        pointer-events: none
    }

    .about-sec-tree img {
        width: 100%;
        height: auto
    }
}

.about-sec-inner {
    position: relative;
    z-index: 1
}

@media screen and (min-width: 1100px) {
    .about-sec-inner {
        display: flex;
        gap: 3.125vw;
        align-items: flex-start
    }
}

.about-sec-body {
    flex: 1
}

.about-sec-logo {
    width: 12rem;
    margin-bottom: 2rem
}

.about-sec-logo img {
    max-width: 100%;
    height: auto
}

.about-sec-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: #724822;
    letter-spacing: .3em;
    line-height: 1.8
}

@media screen and (min-width: 1100px) {
    .about-sec-title {
        font-size: 3.2rem
    }
}

.about-sec-text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: #724822;
    line-height: 2.5;
    letter-spacing: .1em;
    margin-top: 2rem
}

@media screen and (min-width: 1100px) {
    .about-sec-text {
        font-size: 2rem
    }
}

.about-sec-text strong {
    font-weight: 900;
    color: #4ca392;
    letter-spacing: .2em
}

.about-sec .btn {
    margin-top: 3rem;
    margin-left: 0
}

.about-sec-photos {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 1rem;
    margin-top: 4rem;
    justify-content: center
}

@media screen and (min-width: 1100px) {
    .about-sec-photos {
        display: block;
        position: relative;
        width: 50rem;
        height: 56.4rem;
        flex-shrink: 0;
        margin-top: 0
    }
}

.about-sec-photo {
    border-radius: 32px 8px 32px 8px;
    overflow: hidden;
    width: min(48%, 22rem);
    aspect-ratio: 220/180
}

@media screen and (min-width: 1100px) {
    .about-sec-photo {
        position: absolute;
        width: 22rem;
        height: 18rem
    }
}

.about-sec-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

@media screen and (min-width: 1100px) {
    .about-sec-photo--01 {
        top: 0;
        left: 0
    }
}

@media screen and (min-width: 1100px) {
    .about-sec-photo--02 {
        top: 50%;
        transform: translateY(-50%);
        right: 0
    }
}

@media screen and (min-width: 1100px) {
    .about-sec-photo--03 {
        bottom: 0;
        left: 0
    }
}

.business-guide {
    padding: 6rem 0 10rem;
    background-color: #faf7f4;
    border-radius: 20px
}

@media screen and (min-width: 744px) {
    .business-guide {
        padding: 8rem 0 12rem
    }
}

.business-guide .container {
    max-width: 130rem
}

.business-guide-heading {
    text-align: center;
    padding-top: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #d8d6d2;
    position: relative
}

.business-guide-heading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    height: 1.4rem;
    background: url("../img/facility/ttl_leaf.svg") no-repeat center/contain
}

.business-guide-heading-text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: #c19d74;
    letter-spacing: .2rem
}

.business-guide-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem
}

@media screen and (min-width: 1100px) {
    .business-guide-cards {
        flex-direction: row;
        justify-content: space-between
    }
}

.business-guide-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: opacity .3s;
    flex: 1
}

@media screen and (min-width: 1100px) {
    .business-guide-card {
        max-width: min(48%, 59rem)
    }
}

.business-guide-card:hover {
    opacity: .8
}

.business-guide-card-thumb {
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 2rem 0;
    aspect-ratio: 550/200
}

.business-guide-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.business-guide-card-body {
    padding: 1.5rem 2rem 0
}

@media screen and (min-width: 1100px) {
    .business-guide-card-body {
        height: 14rem
    }
}

.business-guide-card-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: #724822;
    letter-spacing: .2rem;
    text-align: center
}

.business-guide-card-text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #776656;
    line-height: 2;
    margin-top: 1rem
}

.business-guide-card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    background-color: #4ca392;
    margin: 1.5rem auto 2rem
}

.business-guide-card-arrow img {
    width: 2rem;
    height: 2rem;
    filter: brightness(0) saturate(100%) invert(99%) sepia(6%) saturate(22%) hue-rotate(217deg) brightness(105%) contrast(100%)
}

.business-intro {
    padding: 6rem 0 8rem
}

@media screen and (min-width: 744px) {
    .business-intro {
        padding: 12rem 0 6rem
    }
}

.business-intro-inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center
}

@media screen and (min-width: 1100px) {
    .business-intro-inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 3.125vw
    }
}

.business-intro-photos {
    display: flex;
    gap: 2rem;
    flex-shrink: 0;
}

@media screen and (min-width: 1100px) {
    .business-intro-photos {
        gap: 1.0416666667vw;
        max-width: 460px;
    }
}

.business-intro-photo {
    border-radius: 35px 12px;
    overflow: hidden;
    width: min(48%, 22rem);
    height: min(33vw, 18rem)
}

@media screen and (min-width: 1100px) {
    .business-intro-photo {
        border-radius: 8px 12px
    }
}

.business-intro-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.business-intro-photo--02 {
    margin-top: -4rem
}

.business-intro-body {
    /* flex: 1 */
    width: 100%;
}

.business-intro-lead {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: #724822;
    line-height: 2;
    letter-spacing: .2rem
}

.business-intro-text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #776656;
    line-height: 2;
    margin-top: .6rem
}

.business-medical {
    position: relative;
    padding: 0 0 10rem;
    /* overflow-x: hidden */
}

@media screen and (min-width: 744px) {
    .business-medical {
        padding: 0 0 12rem
    }
}

.business-medical-tree {
    display: none
}

@media screen and (min-width: 1100px) {
    .business-medical-tree {
        display: block;
        position: absolute;
        right: -13vw;
        bottom: 0;
        z-index: 0;
        pointer-events: none;
        width: 44vw
    }

    .business-medical-tree img {
        display: block;
        width: 100%;
        height: auto
    }
}

.business-medical-bird {
    display: none
}

@media screen and (min-width: 1100px) {
    .business-medical-bird {
        display: block;
        position: absolute;
        left: 4.1666666667vw;
        bottom: 0;
        z-index: 1;
        pointer-events: none;
        width: 3.2rem;
        height: 4rem
    }

    .business-medical-bird img {
        display: block;
        width: 100%;
        height: auto
    }
}

.business-medical .container {
    position: relative;
    z-index: 2
}

.business-medical-card {
    background-color: #faf7f4;
    border-radius: 20px;
    padding: 4rem 2rem
}
.business-medical-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);
    width: 60px;
    height: 20px;
    /* XDのSVGをData URIとして埋め込み（色指定はカードの背景色に同期） */
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="60" height="20" viewBox="0 0 60 20"%3E%3Cpath d="M30,0,60,20H0Z" fill="%23faf7f4"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none; /* クリック操作を透過 */
    z-index: 1;
}
@media screen and (min-width: 744px) {
    .business-medical-card {
        max-width: 124rem;
        margin: 0 auto
    }
}

@media screen and (min-width: 1100px) {
    .business-medical-card {
        padding: 6rem 5.46875vw
    }
}

.business-medical-heading {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: #724822;
    text-align: center;
    letter-spacing: .2rem;
    line-height: 1.5;
    padding-top: 7.5rem;
    position: relative
}

.business-medical-heading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 8rem;
    background: url("../img/business/ill_bird.svg") no-repeat center/contain
}

.business-medical-cols {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem
}

@media screen and (min-width: 1100px) {
    .business-medical-cols {
        flex-direction: row;
        gap: 3.6458333333vw;
        margin-top: 4rem;
        justify-content: center
    }
}

.business-medical-col {
    flex: 1
}

@media screen and (min-width: 1100px) {
    .business-medical-col {
        max-width: 46.5rem;
        justify-content: center
    }
}

.business-medical-col-img {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 465/304;
    max-width: 46.5rem;
    margin: 0 auto
}

@media screen and (min-width: 1100px) {
    .business-medical-col-img {
        margin: 0
    }
}

.business-medical-col-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.business-medical-col-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #776656;
    line-height: 1.5;
    margin-top: 2rem
}

.business-medical-col-text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #776656;
    line-height: 2;
    margin-top: 1.2rem
}

.business-medical-col-text strong {
    font-weight: 700
}

.business-service {
    position: relative;
    overflow: hidden;
    background-color: #faf7f4
}

.business-service-branch {
    display: none
}

@media screen and (min-width: 1100px) {
    .business-service-branch {
        display: block;
        position: absolute;
        right: 0;
        top: 25rem;
        z-index: 1;
        pointer-events: none;
        width: 25vw
    }

    .business-service-branch img {
        display: block;
        width: 100%;
        height: auto
    }
}

.business-service .container {
    position: relative;
    z-index: 2
}

.business-service .ttl {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #c19d74
}

@media screen and (min-width: 1100px) {
    .business-service-block {
        justify-content: center
    }
}

.business-service-block-heading {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: #724822;
    letter-spacing: .2rem;
    line-height: 1.5
}

.business-service-block-lead {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #776656;
    line-height: 2;
    margin-top: 1rem
}

.business-service-block-body {
    flex: 1
}

@media screen and (min-width: 1100px) {
    .business-service-block-body {
        width: min(50%, 55.1rem);
        flex: none
    }
}

.business-service-block-photo {
    margin-top: 3rem;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden
}

@media screen and (min-width: 1100px) {
    .business-service-block-photo {
        margin-top: 0;
        width: min(36.9270833333vw, 709px)
    }
}

.business-service-block-photo img {
    width: 100%;
    height: auto;
    display: block
}

.business-service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem
}

.business-service-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 2rem
}

@media screen and (min-width: 1100px) {
    .business-service-card {
        padding: 3rem 4rem
    }
}

.business-service-card-head {
    display: flex;
    align-items: flex-end;
    gap: 1.2rem
}

.business-service-card-icon {
    width: 6rem;
    height: 5.5rem;
    flex-shrink: 0
}

.business-service-card-icon img {
    width: 100%;
    height: auto
}

.business-service-card-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #776656;
    line-height: 1.5
}

.business-service-card-text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #776656;
    line-height: 2;
    margin-top: .6rem
}

.business-service-card .btn-text {
    margin-top: 2rem
}

.business-service-card .btn-text img {
    transform: rotate(135deg)
}
.business-service-card-btn:hover {
    img {
    transform: rotate(135deg) translate(0.2rem, -0.2rem) !important;
}
}

.business-service,
.business-day {
    padding: 8rem 0 10rem
}

@media screen and (min-width: 744px) {

    .business-service,
    .business-day {
        padding: 10rem 0 12rem
    }
    .business-service {
        padding-bottom: 0;
    }
}

.business-service .container,
.business-day .container {
    max-width: 130rem
}

.business-service-block,
.business-day-inner {
    margin-top: 5rem
}

@media screen and (min-width: 1100px) {

    .business-service-block,
    .business-day-inner {
        display: flex;
        gap: 3.125vw;
        margin-top: 6rem
    }
}

.business-day-inner .business-day-body {
    flex: 1
}

.business-day-heading {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: #724822;
    letter-spacing: .2rem;
    line-height: 1.5
}

.business-day-lead {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #776656;
    line-height: 2;
    margin-top: 1rem
}

.business-day-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem
}

.business-day-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 2rem
}

@media screen and (min-width: 1100px) {
    .business-day-card {
        padding: 3rem 4rem
    }
}

.business-day-card-head {
    display: flex;
    align-items: flex-end;
    gap: 1.2rem
}

.business-day-card-icon {
    width: 6rem;
    height: 5.5rem;
    flex-shrink: 0
}

.business-day-card-icon img {
    width: 100%;
    height: auto
}

.business-day-card-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #776656;
    line-height: 1.5
}

.business-day-card-text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #776656;
    line-height: 2;
    margin-top: .6rem
}

.business-day-photos {
    position: relative;
    margin-top: 3rem;
    flex-shrink: 0;
    width: 100%;
    aspect-ratio: 5/4
}

@media screen and (min-width: 1100px) {
    .business-day-photos {
        margin-top: 0;
        width: min(43.4vw, 680px);
        aspect-ratio: auto;
        height: auto
    }
}

.business-day-photo {
    border-radius: 20px;
    overflow: hidden;
    position: absolute
}

.business-day-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.business-day-photo--lg {
    top: 0;
    left: 0;
    width: 70%;
    aspect-ratio: 1/1
}

@media screen and (min-width: 1100px) {
    .business-day-photo--lg {
        top: -2rem;
        width: min(31.25vw, 504px)
    }
}

.business-day-photo--sm {
    bottom: 0;
    right: 0;
    width: 48%;
    aspect-ratio: 1/1
}

@media screen and (min-width: 1100px) {
    .business-day-photo--sm {
        width: min(15.3645833333vw, 295px);
        bottom: -35vw
    }
}

.business-clasias {
    padding: 4rem 0 1rem;
    background-color: #faf7f4
}

.business-clasias .container {
    background-color: #fff;
    border-radius: 20px 20px 8px 8px;
    padding: 3rem 2rem 4rem;
    margin: 0 2rem
}

@media screen and (min-width: 1100px) {
    .business-clasias {
        padding-bottom: 10rem;
        padding-top: 8rem;
    }
    .business-clasias .container {
        max-width: 131rem;
        padding: 4rem;
        margin: 0 auto;
    }
}

.business-clasias-label {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: #c19d74;
    letter-spacing: .2rem;
    padding-top: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #c19d74;
    position: relative;
    margin-bottom: 3rem;
    text-align: center
}

@media screen and (min-width: 1100px) {
    .business-clasias-label {
        grid-column: 1/-1;
        margin-bottom: 0
    }
}

.business-clasias-label::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 2rem;
    height: 1.4rem;
    background: url("../img/facility/ttl_leaf.svg") no-repeat center/contain
}

@media screen and (min-width: 1100px) {
    .business-clasias-inner {
        display: grid;
        grid-template-columns: 50.4rem 1fr;
        gap: 5rem 2.0833333333vw;
        max-width: 124rem;
        margin-left: auto;
        margin-right: auto
    }
}

.business-clasias-photo {
    border-radius: 20px;
    overflow: hidden;
    text-align: center
}

@media screen and (min-width: 1100px) {
    .business-clasias-photo {
        flex-shrink: 0
    }
}

.business-clasias-photo img {
    max-width: 100%;
    height: auto
}

@media screen and (min-width: 1100px) {
    .business-clasias-photo img {
        height: 100%;
        object-fit: cover
    }
}

.business-clasias-info {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem
}

@media screen and (min-width: 1100px) {
    .business-clasias-info {
        margin-top: 0;
        flex: none
    }
}

.business-clasias-info-card {
    background-color: #faf7f4;
    border-radius: 20px;
    padding: 2.5rem 3rem
}

.business-clasias-info-card-label {
    display: inline-block;
    background-color: #c19d74;
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    padding: .2rem 1.6rem;
    border-radius: 4px;
    line-height: 2
}

.business-clasias-info-card-text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #776656;
    line-height: 2;
    margin-top: 1rem
}

.business-clasias-info-small {
    display: flex;
    flex-direction: column;
    gap: 2rem
}

@media screen and (min-width: 1100px) {
    .business-clasias-info-small {
        flex-direction: row
    }
}

.business-clasias-info-small .business-clasias-info-card--half {
    flex: 1
}

.business-cta {
    padding: 4rem 0;
    text-align: center
}



@media screen and (min-width: 1100px) {
    .business-yasuragi {
        padding-bottom: 24rem;   
        padding-top: 6rem;

}
    .business-yasuragi .business-clasias-inner {
        display: grid;
        grid-template-columns: min(25.2604166667vw, 485px) 1fr;
        grid-template-areas: "label  label" "intro  photo" "cards  cards" "medical medical";
        column-gap: 2.0833333333vw;
        row-gap: 4rem;
        align-items: center
    }
}

@media screen and (min-width: 1100px) {
    .business-yasuragi .business-clasias-label {
        grid-area: label;
        margin-bottom: 0
    }
}

.business-yasuragi-intro {
    margin-top: 3rem
}

@media screen and (min-width: 1100px) {
    .business-yasuragi-intro {
        grid-area: intro;
        width: auto;
        margin-top: 0
    }
}

.business-yasuragi-intro-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: #724822;
    letter-spacing: .2rem
}

.business-yasuragi-intro-text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #776656;
    line-height: 2;
    margin-top: 1.6rem
}

.business-yasuragi-intro-text p+p {
    margin-top: 1.6rem
}

.business-yasuragi-photo {
    border-radius: 20px;
    overflow: hidden;
    margin-top: 3rem;
    aspect-ratio: 715/415
}

@media screen and (min-width: 1100px) {
    .business-yasuragi-photo {
        grid-area: photo;
        width: auto;
        margin-top: 0;
        margin-left: 0
    }
}

.business-yasuragi-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.business-yasuragi-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem
}

@media screen and (min-width: 1100px) {
    .business-yasuragi-cards {
        grid-area: cards;
        flex-direction: row;
        gap: 1.0416666667vw;
        margin-top: 0
    }
}

.business-yasuragi-cards .business-clasias-info-card--half {
    flex: 1
}

.business-yasuragi-medical {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem
}

@media screen and (min-width: 1100px) {
    .business-yasuragi-medical {
        grid-area: medical;
        flex-direction: row;
        align-items: center;
        gap: 2.0833333333vw;
        margin-top: 0
    }
}

.business-yasuragi-medical-photo {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 505/412
}

@media screen and (min-width: 1100px) {
    .business-yasuragi-medical-photo {
        width: min(34vw, 505px);
        flex-shrink: 0
    }
}

.business-yasuragi-medical-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.business-yasuragi-feature {
    background-color: #faf7f4;
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    flex: 1
}

@media screen and (min-width: 1100px) {
    .business-yasuragi-feature {
        padding: 4rem
    }
}

.business-yasuragi-feature-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #c19d74;
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    padding: .8rem 2.4rem;
    border-radius: 20px;
    position: relative
}

.business-yasuragi-feature-label::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid rgba(0, 0, 0, 0);
    border-right: 8px solid rgba(0, 0, 0, 0);
    border-top: 8px solid #c19d74
}

.business-yasuragi-feature-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: #724822;
    letter-spacing: .2rem;
    margin-top: 2rem
}

.business-yasuragi-feature-text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #776656;
    line-height: 2;
    margin-top: 1.6rem
}

.business-yasuragi-feature-text p+p {
    margin-top: 1.6rem
}

.reason {
    background-color: #faf7f4;
}

.reason .container {
    padding: 0;
    margin: 0 2rem;
    background-color: #fff;
    border-radius: 8px 8px 20px 20px;
    max-width: 131rem
}

@media screen and (min-width: 1100px) {
    .reason .container {
        margin: 0 auto
    }
}

.reason .ttl {
    padding-top: 7rem
}

.reason-branch--left {
    top: 1rem
}

.reason-branch--right {
    top: 65rem
}

/*# sourceMappingURL=page-business.css.map */