/* day-care - 通所リハビリセンター */

.page-ttl-area .band {
    background-color: #fcdfca;
}

.page-ttl-area .container-fluid {
    padding: var(--mp100) 0 var(--mp100);
}

.page-ttl-area .title .stxt {
    color: var(--gry-dark);
}

@media (max-width: 767px) {
    .page-ttl-area .container-fluid {
        padding: var(--mp60) 0 var(--mp80);
    }

    .page-ttl-area .title {
        font-size: var(--f-sz40);
    }
}

/* sec-intro ------------------------ */
.sec-intro {
    margin-top: calc(var(--mp50) * -1);
}

.sec-intro .is-blc {
    gap: 1em;
}

.sec-intro .txt-area {
    flex: 1;
}

.sec-intro .contact {
    flex-flow: column;
    align-items: center;
    justify-content: center;
    width: min(29.166%, 350px);
    min-width: 270px;
    max-height: 168px;
    aspect-ratio: 85/42;
    border: 1px solid rgb(0 0 0 / 20%);
    border-radius: 5px;
}

.sec-intro .contact .tel-num-time {
    border-top: 1px solid rgb(0 0 0 / 10%);
}

@media (max-width: 767px) {
    .sec-intro .img-area .img-wrap {
        aspect-ratio: 3/2;
    }

    .sec-intro .contact {
        width: 100%;
        aspect-ratio: initial;
        padding: 35px 20px;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .sec-intro .contact {
        flex-flow: row;
        width: 100%;
    }

    .sec-intro .contact .title {
        padding-right: 30px;
        padding-bottom: 0;
    }

    .sec-intro .contact .tel-num-time {
        padding-top: 0;
        padding-left: 30px;
        border-top: initial;
        border-left: 1px solid rgb(0 0 0 / 10%);
    }
}

@media (max-width: 480px) {
    .sec-intro .img-area .img-wrap {
        aspect-ratio: 3/2;
    }
}

/* sec-news ------------------------ */
.sec-news .news-block {
    min-height: 130px;
}
.sec-news .sec-ttl {
    width: 200px;
}

.sec-news .news-list {
    width: calc(100% - 240px);
    max-width: 880px;
}

.sec-news .sec-ttl .sub::before {
    height: 100%;
}

@media (max-width: 767px) {
    .sec-news .news-list {
        width: 100%;
        margin-bottom: var(--mp30);
    }
}

/* ancher-menu ------------------------ */
.ancher-menu li {
    flex: 1 1 0%;
}

.ancher-menu li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 24px 0.5em 34px;
    font-size: var(--f-sz18);
    font-weight: 500;
    line-height: 1.4;
    color: var(--base);
    text-align: center;
    background-color: #fcdfca;
    border: 1px solid #fafaf7;
    transition: opacity 0.28s ease;
}

.ancher-menu li a::after {
    position: absolute;
    bottom: 15px;
    left: 50%;
    display: block;
    width: 11px;
    height: 6px;
    content: "";
    background-image: url("../img/common/arrow-org-u.svg");
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateX(-50%);
}

.ancher-menu li:first-child a {
    border-radius: 10px 0 0 10px;
}

.ancher-menu li:last-child a {
    border-radius: 0 10px 10px 0;
}

@media (min-width: 768px) {
    .ancher-menu li a:hover {
        opacity: 0.7;
    }

    .ancher-menu li a:hover::after {
        bottom: 10px;
    }
}

@media (max-width: 1280px) {
    .ancher-menu li {
        flex: 1 0 auto;
    }
}

@media (max-width: 767px) {
    .ancher-menu {
        overflow: hidden;
    }

    .ancher-menu .outer {
        overflow: auto;
    }

    .ancher-menu li a br {
        display: none;
    }

    .ancher-menu .is-blc {
        flex-wrap: nowrap;
    }

    .ancher-menu li a {
        padding: 24px 1em 34px;
    }
}

/* sec-feature ------------------------ */
.sec-feature .is-blc {
    padding-right: var(--mp80);
    padding-left: var(--mp80);
}

.sec-feature .list-blc {
    margin-left: var(--mp40);
}

.sec-feature .list {
    gap: 20px;
}

.sec-feature .num {
    width: 23px;
    overflow-y: hidden;
}

.sec-feature .num em {
    position: relative;
    font-family: var(--f-en);
    font-size: 18px;
    font-style: normal;
    font-weight: bold;
    line-height: 2em;
    color: var(--org);
}

.sec-feature .num em::after {
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    display: block;
    width: 2px;
    height: 100vh;
    content: "";
    background-color: #ccc;
    transform: translateX(-50%);
}

.sec-feature .text-area {
    flex: 1;
}

@media (max-width: 767px) {
    .sec-feature .is-blc {
        padding: var(--mp60) var(--mp50) var(--mp60) var(--mp30);
    }
}

@media (max-width: 480px) {
    .sec-feature .is-blc {
        padding: var(--mp40) var(--mp30);
    }

    .sec-feature .list-blc {
        margin-left: 0;
    }
}

/* sec-schedule ------------------------ */
.sec-schedule .title {
    position: relative;
}

.sec-schedule .title::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    width: 32px;
    height: 5px;
    content: "";
    background-color: var(--org);
    transform: translateX(-50%);
}

.sec-schedule .is-blc {
    gap: 30px 40px;
}

.sec-schedule .course {
    width: calc(50% - 20px);
    background-color: var(--wht);
    border-radius: 10px;
}

.sec-schedule .course:last-child {
    width: 100%;
}

.sec-schedule .header {
    align-items: center;
    height: 60px;
    padding: 0 20px;
    background-color: #fcdfca;
    border-radius: 10px 10px 0 0;
}

.sec-schedule .header .time {
    padding: 0 15px;
    line-height: 1.5;
    background-color: var(--wht);
    border-radius: 5px;
}

.sec-schedule .course .inner {
    display: flex;
    column-gap: 7%;
    justify-content: center;
    padding: var(--mp30);
}

.sec-schedule .course dl {
    display: flex;
    gap: 24px;
    align-items: self-start;
    padding-bottom: var(--mp30);
    overflow: hidden;
    position: relative;
}

.sec-schedule .course dl:last-child {
    padding-bottom: 0;
}

.sec-schedule .course dt {
    /* position: relative; */
    width: 50px;
    font-family: var(--f-en);
    font-size: var(--f-sz18);
    font-weight: 600;
    color: #b3b3b3;
    text-align: center;
}

.sec-schedule .course dt::after {
    position: absolute;
    top: 1.75em;
    left: 25px;
    display: block;
    width: 1px;
    height: 100%;
    content: "";
    background-color: #ccc;
}

.sec-schedule .course dd {
    font-size: var(--f-sz18);
    color: var(--base);
    font-feature-settings: "palt";
}

.sec-schedule .course .clm:first-child dd {
    white-space: nowrap;
}

.sec-schedule .img-list {
    gap: var(--mp30) 27px;
}

.sec-schedule .img-list li {
    width: calc((100% - 27px * 2) / 3);
}

@media (max-width: 991px) {
    .sec-schedule .is-blc {
        gap: 30px 20px;
    }

    .sec-schedule .course {
        width: calc(50% - 10px);
    }

    .sec-schedule .header {
        padding: 0 10px 0 0;
    }

    .sec-schedule .header .sub {
        padding-left: 15px;
        font-size: var(--f-sz20);
        font-feature-settings: "palt";
    }

    .sec-schedule .header .time {
        font-size: var(--f-sz16);
    }

    .sec-schedule .course .inner {
        flex-direction: column;
        width: 400px;
        margin: 0 auto;
    }

    .sec-schedule .course dd {
        font-size: var(--f-sz16);
    }
}

@media (max-width: 767px) {
    .sec-schedule .course {
        width: 100%;
    }

    .sec-schedule .course dd {
        flex: 1;
    }

    .sec-schedule .course .clm:first-child dd {
        white-space: initial;
    }

    .sec-schedule .course .clm:first-child dl:last-child {
        padding-bottom: var(--mp30);
    }

    .sec-schedule .img-list li {
        width: calc((100% - 27px) / 2);
    }
}

@media (max-width: 480px) {
    .sec-schedule .course .inner {
        width: auto;
    }

    .sec-schedule .img-list li {
        width: 100%;
    }

    .sec-schedule .header .sub::before {
        height: 100%;
    }
}

@media (max-width: 420px) {
    .sec-schedule .header {
        flex-flow: column;
        gap: 5px;
        align-items: flex-start;
        height: initial;
        padding: 15px 10px 10px 0;
    }

    .sec-schedule .header .time {
        margin-left: 17px;
    }
}

/* sec-office ------------------------ */
.sec-office .sec-ttl {
    width: max(207px, 29.16%);
}

.sec-office .dl-list {
    flex: 1;
    word-break: break-all;
}

.sec-office .dl-list.line-style01 .list-item dt {
    width: 139px;
}

.sec-office .dl-list.line-style01 .list-item dd {
    flex: 1;
}

.sec-office .list-item .lm {
    position: relative;
    padding-left: 1.5em;
}

.sec-office .list-item .lm i {
    position: absolute;
    top: 0.5em;
    left: 0;
    display: inline-block;
    width: 1em;
    aspect-ratio: 1/1;
    border: 1px solid var(--base);
    border-radius: 50%;
}

.sec-office .img-list {
    gap: 20px;
}

.sec-office .img-list li {
    width: calc((100% - 60px) / 4);
}

@media (max-width: 991px) {
    .sec-office .img-list li {
        width: calc((100% - 40px) / 3);
    }
}

@media (max-width: 767px) {
    .sec-office .sec-ttl {
        width: 100%;
    }

    .sec-office .img-list li {
        width: calc((100% - 20px) / 2);
    }
}

@media (max-width: 480px) {
    .sec-office .img-list li {
        width: 100%;
    }
}

/* sec-getstarted ------------------------ */
.sec-getstarted .bg-col {
    background-color: #ededeb;
}

.sec-getstarted .title {
    position: relative;
}

.sec-getstarted .title::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    width: 32px;
    height: 5px;
    content: "";
    background-color: var(--org);
    transform: translateX(-50%);
}

.sec-getstarted .list {
    background-color: var(--wht);
    border-radius: 10px;
}

.sec-getstarted .list:not(:last-child) {
    position: relative;
    margin-bottom: var(--mp30);
}

.sec-getstarted .list:not(:last-child)::after {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 100%;
    height: var(--mp30);
    content: "";
    background-image: url("../img/common/arrow-gry-u.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 10px;
}

.sec-getstarted .list .inner {
    padding-right: var(--mp80);
    padding-left: var(--mp80);
    overflow: hidden;
}

.sec-getstarted .sub {
    position: relative;
}

.sec-getstarted .num {
    position: absolute;
    right: calc(100% + 8px);
    display: block;
    width: 1.25em;
    text-align: center;
    line-height: 1;
    font-size: 1.1em;
    top: 0.2em;
}

.sec-getstarted .num::before {
    position: absolute;
    top: 50%;
    right: calc(100% + 12px);
    display: block;
    width: 100px;
    height: 1px;
    content: "";
    background-color: var(--org);
}

/* sec-service ------------------------ */
.sec-service .sec-ttl {
    width: max(430px, 41.66%);
}

.sec-service .title::before {
    height: 100%;
}

.sec-service .dl-btn {
    flex: 1;
}

@media (max-width: 991px) {
    .sec-service .sec-ttl {
        width: 100%;
    }
}
