.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: 9.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
    }
}

.sns-sec {
    padding: 6rem 0 7rem;
    background-color: #faf7f4;
    border-radius: 40px 40px 0 0;
    position: relative;
}

@media screen and (min-width: 744px) {
    .sns-sec {
        padding: 10rem 0 22rem
    }
}
.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
    }
}
.sns-sec-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
    margin-top: 4rem
}

@media screen and (min-width: 1100px) {
    .sns-sec-profile {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
        max-width: 103rem;
        margin: 4rem auto 0
    }
}

.sns-sec-profile-icon {
    width: 10rem;
    height: 10rem;
    flex-shrink: 0
}

.sns-sec-profile-icon img {
    width: 100%;
    height: 100%
}

.sns-sec-profile-body {
    flex: 1;
    width: 100%
}

.sns-sec-profile-name {
    display: flex;
    align-items: center;
    gap: .8rem;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #776656
}

.sns-sec-profile-name img {
    width: 2rem;
    height: 2rem
}

.sns-sec-profile-text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #776656;
    line-height: 2;
    margin-top: 1rem
}

.sns-sec-feed {
    margin: 4rem auto 0;
    background-color: #fff;
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 103rem
}

@media screen and (min-width: 1100px) {
    .sns-sec-feed {
        padding: 4rem 3rem
    }
}

.sns-sec-feed .sb_instagram_header {
    display: none
}

.sns-sec-feed #sb_instagram {
    padding: 0 !important
}

.sns-sec-btn {
    margin-top: 4rem;
    display: flex;
    justify-content: center
}

.sns-sec-btn .btn {
    width: 32rem
}

.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 .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%)
}

.services-intro {
    padding: 6rem 0 8rem;
    text-align: center;
    max-width: 70rem;
    margin: 0 auto
}

.services-intro-text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #776656;
    line-height: 2
}

.services-list {
    padding: 0 0 10rem
}

@media screen and (min-width: 744px) {
    .services-list {
        padding: 0 0 12rem;

        .ttl.brown {
            text-align: left;
        }
    }
}

.services-list-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem
}

@media screen and (min-width: 1100px) {
    .services-list-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem
    }
}

.services-list-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #c19d74;
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    transition: opacity .3s
}

.services-list-card:hover {
    opacity: .7
}

.services-list-card-thumb {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 570/260
}

.services-list-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.services-list-card-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
    width: 100%;
    margin-top: 1.2rem
}

@media screen and (min-width: 744px) {
    .services-list-card-meta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0
    }
}

.services-list-card-tag {
    display: inline-block;
    background-color: #c19d74;
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    padding: .2rem 1.2rem;
    border-radius: 4px;
    line-height: 1.8
}

.services-list-card-area {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #776656
}

.services-list-card-area img {
    width: 1.6rem;
    height: auto
}

.services-list-card-name {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: #724822;
    letter-spacing: .2rem;
    text-align: center;
    margin-top: 2rem;
    border-bottom: solid 1px #c19d74;
    width: 100%;
    padding-bottom: 1rem
}

.services-list-card-address {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #776656;
    margin-top: 1.6rem;
    width: 100%
}

.services-list-card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    background-color: #c19d74;
    margin-top: 3.5rem
}

.services-list-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%)
}

/*# sourceMappingURL=page-services.css.map */