@charset "UTF-8";

/*============================================================================================================
	.l-container (common)
============================================================================================================*/
/*==========================================
	.l-main
==========================================*/
/*============================================================================================================
	page
============================================================================================================*/
/*	home
============================================================================================================*/
/*------------------------------------------
	.homeMv
------------------------------------------*/
.homeMv {
    display: grid;
    grid-template-columns: 1fr 30%;
    grid-gap: max(24px, 2.3vw);
    padding: max(24px, 2.3vw) max(24px, 2.3vw) 0;
    background: url(../img/home/bg_en01.png) repeat center bottom;
}
@media screen and (max-width: 767px) {
    .homeMv {
        grid-template-columns: 1fr;
        grid-gap: 6vw;
        padding: 0;
        background-size: 280px;
    }
}

/*	.homeMv-main (左側)
------------------------------------------*/
.homeMv-main {
    overflow: clip;
    border-radius: 20px;
    position: relative;
}
.homeMv-main-txtBox {
    position: absolute;
    left: 5.5%;
    bottom: 8%;
    z-index: 2;
}
.homeMv-main__txt01 {
    overflow: clip;
    display: flex;
    width: fit-content;
    margin: 0 auto max(12px, 1.2vw) 0;
    border-radius: 100px;
    border: 2px solid;
    color: #7b6d4e;
    font-weight: 700;
    font-size: max(14px, 1.42vw);
    line-height: 1.4;
}
.homeMv-main__txt01 .small {
    display: flex;
    align-items: center;
    padding: 0.4em 0.7em;
    background: #fff;
}
.homeMv-main__txt01 .big {
    display: flex;
    align-items: center;
    padding: 0 0.6em;
    background: #7b6d4e;
    color: #fff;
    font-size: 1.33em;
}
.homeMv-main__txt02 {
    margin-left: 0.5%;
    color: #fff;
    font-weight: 700;
    font-size: max(38px, 3.8vw);
    line-height: 1.4;
    white-space: nowrap;
}
.homeMv-main__txt02 img {
    width: 1.6875em;
    margin-inline: 0.1em;
}
.homeMv-main__txt02 .small {
    display: block;
    margin-top: 0.3em;
    font-size: 0.75em;
    letter-spacing: 0.08em;
}
.homeMv-main-imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 767px) {
    .homeMv-main {
        display: flex;
        flex-direction: column;
        border-radius: 0;
    }
    .homeMv-main-txtBox {
        margin-top: -9%;
        position: relative;
        left: 0;
        bottom: auto;
        z-index: 2;
    }
    .homeMv-main__txt01 {
        display: block;
        margin: 0 auto 4vw;
        border-radius: 10px;
        font-size: 3.8vw;
        text-align: center;
    }
    .homeMv-main__txt01 .small {
        display: block;
        padding: 0.1em 1em;
    }
    .homeMv-main__txt01 .big {
        display: block;
        padding: 0.3em 0.6em;
    }
    .homeMv-main__txt02 {
        margin-left: 0;
        color: var(--color-txt);
        font-size: 10.2vw;
        line-height: 1.3;
        text-align: center;
    }
    .homeMv-main__txt02 img {
        width: 1.475em;
    }
    .homeMv-main__txt02 .small {
        font-size: 0.6em;
    }
    .homeMv-main-imgBox {
        order: -1;
    }
    .homeMv-main-imgBox img {
        height: auto;
        object-fit: fill;
    }
}

/*	.homeMv-cv (右側)
------------------------------------------*/
.homeMv-cv {
    padding: max(45px, 4.5vw) max(20px, 2.3vw) 20px;
    border-radius: var(--border-radius);
    background: var(--color-orange-dark);
    position: relative;
    z-index: 2;
}
.homeMv-cv::after {
    content: "";
    display: block;
    width: 22%;
    aspect-ratio: 106/120;
    background: url(../img/common/ico_clover01.svg) no-repeat center/contain;
    position: absolute;
    top: 6%;
    right: 0;
    left: 0;
    margin: auto;
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: soft-light;
    opacity: 0.4;
}
.homeMv-cv__txt01 {
    margin-bottom: max(12px, 1.2vw);
    color: #fff;
    font-weight: 700;
    font-size: max(25px, 2.5vw);
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-align: center;
}
.homeMv-cv__tel {
    margin-bottom: max(16px, 1.6vw);
    border-radius: var(--border-radius);
    font-size: max(28px, 2.8vw);
    text-align: center;
}
.homeMv-cv__tel a {
    display: flex;
    flex-direction: column;
    gap: 0.1em;
    padding: 0.45em 10px;
    border-radius: inherit;
    background: #fff;
}
.homeMv-cv__tel .num {
    color: var(--color-orange-dark);
    font-weight: 700;
    font-size: 1em;
    line-height: 1;
}
.homeMv-cv__tel .time {
    font-weight: 400;
    font-size: 0.32em;
    line-height: 1;
}
.homeMv-cv-btnBox {
    padding: max(14px, 1.4vw) min(10px, 1vw) max(17px, 1.7vw);
    border-radius: var(--border-radius);
    background: #fff;
}
.homeMv-cv-btnBox__txt {
    margin-bottom: max(10px, 1vw);
    font-weight: 700;
    font-size: max(11px, 1.05vw);
    line-height: 1.6;
    text-align: center;
}
.homeMv-cv-btnBox__btn {
    width: 95%;
    margin-inline: auto;
    border-radius: 100px;
    color: #fff;
    font-weight: 700;
    font-size: max(12px, 1.2vw);
    line-height: 1.4;
    text-align: center;
}
.homeMv-cv-btnBox__btn + .homeMv-cv-btnBox__btn {
    margin-top: 15px;
}
.homeMv-cv-btnBox__btn a {
    height: 5em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.1em;
    padding-inline: 1em;
    background: var(--btnColor);
    border-radius: inherit;
}
.homeMv-cv-btnBox__btn a::before,
.homeMv-cv-btnBox__btn a::after {
    content: "";
    display: block;
    aspect-ratio: 1/1;
    flex-shrink: 0;
}
.homeMv-cv-btnBox__btn a::before {
    width: 2.2em;
    background: no-repeat center/contain;
}
.homeMv-cv-btnBox__btn a::after {
    width: 1em;
    -webkit-mask-image: url(../img/common/ico_arrow01.svg);
    mask-image: url(../img/common/ico_arrow01.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    margin-left: 0.4em;
    background: #fff;
    transition: all 0.3s;
}
.homeMv-cv-btnBox__btn.is-information {
    --btnColor: var(--color-yellow);
}
.homeMv-cv-btnBox__btn.is-information a::before {
    background-image: url(../img/home/ico_mv01.png);
}
.homeMv-cv-btnBox__btn.is-consultation {
    --btnColor: var(--color-brown);
}
.homeMv-cv-btnBox__btn.is-consultation a::before {
    background-image: url(../img/home/ico_mv02.png);
}
@media screen and (max-width: 767px) {
    .homeMv-cv {
        width: calc(100% - 40px);
        padding: 12vw 5vw 8vw;
        margin-inline: auto;
    }
    .homeMv-cv::after {
        width: 17%;
        top: 4%;
    }
    .homeMv-cv__txt01 {
        margin-bottom: 4vw;
        font-size: 6vw;
    }
    .homeMv-cv__tel {
        margin-bottom: 5vw;
        font-size: 9.2vw;
    }
    .homeMv-cv__tel a {
        padding-block: 0.4em;
    }
    .homeMv-cv__tel .time {
        font-size: 0.36em;
    }
    .homeMv-cv-btnBox {
        padding: 5vw 3vw;
    }
    .homeMv-cv-btnBox__txt {
        margin-bottom: 2.5vw;
        font-size: 3.5vw;
    }
    .homeMv-cv-btnBox__btn {
        font-size: 3.8vw;
    }
    .homeMv-cv-btnBox__btn + .homeMv-cv-btnBox__btn {
        margin-top: 4vw;
    }
    .homeMv-cv-btnBox__btn a {
        height: 4.6em;
        padding-inline: 0.8em;
    }
}
@media (hover: hover) {
    .homeMv-cv-btnBox__btn a {
        border: 3px solid var(--btnColor);
    }
    .homeMv-cv-btnBox__btn a:hover {
        opacity: 1;
        background: #fff;
        color: var(--btnColor);
    }
    .homeMv-cv-btnBox__btn a:hover::after {
        background: var(--btnColor);
    }
}

/*------------------------------------------
	.homeMessage
------------------------------------------*/
.homeMessage {
    padding-block: 60px 0;
    background: url(../img/home/bg_en01.png) repeat center bottom;
    position: relative;
    z-index: 1;
}
.homeMessage::before,
.homeMessage::after {
    content: "";
    display: block;
    width: 100%;
    background: url(../img/common/bg_noise01.jpg);
    position: absolute;
    left: 0;
    bottom: 0;
    pointer-events: none;
}
.homeMessage::before {
    height: 150px;
    z-index: -2;
}
.homeMessage::after {
    height: 280px;
    border-radius: 50%;
    z-index: -1;
}
.homeMessage__catch {
    width: fit-content;
    margin: 0 auto 130px;
    padding: 15px 40px;
    border-radius: 100px;
    background: var(--color-txt);
    color: #fff;
    font-weight: 700;
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0.08em;
}
.homeMessage__catch .big {
    color: #ffca32;
    font-size: 1.3em;
}
.homeMessage__secTit {
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 48px;
    text-align: center;
}
.homeMessage__secTit .small {
    display: block;
    margin-bottom: 8px;
    color: var(--color-yellow);
    font-size: 0.6em;
}
.homeMessage__lead {
    margin-bottom: 115px;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .homeMessage {
        padding-block: 40px 0;
        background-size: 280px;
    }
    .homeMessage::before {
        content: none;
    }
    .homeMessage::after {
        height: 80px;
        bottom: -40px;
    }
    .homeMessage__catch {
        margin-bottom: 55px;
        padding: 12px 20px;
        border-radius: 30px;
        font-size: 18px;
        text-align: left;
    }
    .homeMessage__secTit {
        margin-bottom: 17px;
        font-size: 32px;
    }
    .homeMessage__secTit .small {
        margin-bottom: 6px;
        font-size: 0.56em;
    }
    .homeMessage__lead {
        margin-bottom: 95px;
        font-size: 16px;
    }
}

/*	.homeMessage-case
------------------------------------------*/
.homeMessage-case {
    width: min(100%, 1200px);
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}
.homeMessage-case__item {
    flex: 1;
    padding: 30px 15px 60px;
    border-radius: var(--border-radius);
    background: var(--itemColor) url(../img/common/bg_noise03.png);
    position: relative;
}
.homeMessage-case__item:nth-of-type(1) {
    --itemColor: var(--color-yellow);
    --subColor: #b29137;
}
.homeMessage-case__item:nth-of-type(1) .homeMessage-case__num {
    background-image: url(../img/home/ico_case01.svg);
}
.homeMessage-case__item:nth-of-type(2) {
    --itemColor: var(--color-moss);
    --subColor: #8f966b;
}
.homeMessage-case__item:nth-of-type(2) .homeMessage-case__num {
    background-image: url(../img/home/ico_case02.svg);
}
.homeMessage-case__item:nth-of-type(3) {
    --itemColor: var(--color-brown);
    --subColor: #7b6d4e;
}
.homeMessage-case__item:nth-of-type(3) .homeMessage-case__num {
    background-image: url(../img/home/ico_case03.svg);
}
.homeMessage-case__num {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.1em;
    width: 120px;
    aspect-ratio: 1/1;
    background: no-repeat center/contain;
    color: var(--subColor);
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    line-height: 1;
    position: absolute;
    top: -55px;
    left: 30px;
}
.homeMessage-case__num .big {
    font-size: 1.8em;
}
.homeMessage-case__img {
    display: block;
    margin: 0 auto 20px;
}
.homeMessage-case__txt {
    margin-bottom: 13px;
    color: #fff;
    font-weight: 700;
    font-size: clamp(25px, 2.5vw, 28px);
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0.08em;
}
.homeMessage-case__prof {
    width: fit-content;
    margin-inline: auto;
    padding: 6px 22px;
    background: #fff;
    border-radius: 100px;
    color: var(--subColor);
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}
@media screen and (min-width: 768px) {
    .homeMessage-case__item:nth-of-type(odd) {
        margin-top: 50px;
    }
}
@media screen and (max-width: 767px) {
    .homeMessage-case {
        width: min(100%, 300px);
        align-items: stretch;
        flex-direction: column;
        gap: 60px;
    }
    .homeMessage-case__item {
        padding: 0 20px 30px;
    }
    .homeMessage-case__num {
        width: 28%;
        font-size: 14px;
        top: -40px;
        left: 15px;
    }
    .homeMessage-case__num .big {
        font-size: 2.2em;
    }
    .homeMessage-case__img {
        width: 52%;
        margin: -50px auto 10px;
    }
    .homeMessage-case__txt {
        margin-bottom: 18px;
        font-size: 22px;
    }
}

/*------------------------------------------
	.homeSupport
------------------------------------------*/
.homeSupport {
    padding-block: 63px 0;
    background:
        url(../img/home/bg_support01_pc.png) no-repeat left calc(50% - 500px) top 147px/334px,
        url(../img/home/bg_support02_pc.png) no-repeat right calc(50% - 505px) top 105px/314px,
        url(../img/common/bg_noise01.jpg);
    position: relative;
}
.homeSupport::after {
    content: "";
    display: block;
    width: 100%;
    height: 300px;
    background: url(../img/common/bg_noise01.jpg);
    border-radius: 50%;
    position: absolute;
    left: 0;
    bottom: -150px;
    pointer-events: none;
}
.homeSupport-inner {
    position: relative;
    z-index: 2;
}
.homeSupport__catch {
    margin-bottom: 30px;
    padding-top: 142px;
    position: relative;
}
.homeSupport__catch .in {
    display: block;
    width: fit-content;
    margin-inline: auto;
    padding: 8px 27px;
    border: 2px solid;
    background: #fff;
    border-radius: 100px;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0.08em;
    position: relative;
    z-index: 2;
}
.homeSupport__catch::after {
    content: "";
    display: block;
    width: 176px;
    aspect-ratio: 176/183;
    background: url(../img/home/ico_support01.svg) no-repeat center/contain;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
}
.homeSupport__secTit {
    margin-bottom: 113px;
    font-weight: 700;
    font-size: 40px;
    text-align: center;
}
.homeSupport__secTit .big {
    display: block;
    font-size: 1.2em;
}
.homeSupport__secTit .color {
    color: var(--color-orange-dark);
}
@media screen and (max-width: 767px) {
    .homeSupport {
        padding-block: 60px;
        background:
            url(../img/home/bg_support01_sp.png) no-repeat left calc(50% - 92px) top 311px/134px,
            url(../img/home/bg_support02_sp.png) no-repeat right calc(50% - 85px) top 315px/171px,
            url(../img/common/bg_noise01.jpg);
    }
    .homeSupport::after {
        height: 80px;
        bottom: -40px;
    }
    .homeSupport__catch {
        margin-bottom: 10px;
        padding-top: 88px;
    }
    .homeSupport__catch .in {
        padding: 4px 22px;
        font-size: 16px;
    }
    .homeSupport__catch::after {
        width: 110px;
    }
    .homeSupport__secTit {
        margin-bottom: 105px;
        font-size: 24px;
    }
    .homeSupport__secTit .big {
        font-size: 1.3em;
    }
}

/*	.homeSupport-service
------------------------------------------*/
.homeSupport-service {
    padding: 93px var(--inner-padding) 110px;
    background: #fff;
    border-radius: 20px;
}
.homeSupport-service__tit {
    margin-bottom: 80px;
}
.homeSupport-service__tit .sub {
    padding: 9px 58px;
    border-radius: 100px;
    background: var(--color-yellow);
    color: #fff;
    font-size: 0.67em;
}
.homeSupport-service-list {
    width: min(100%, 1120px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 60px;
}
.homeSupport-service-list__item {
    --imgSize: min(46.5%, 520px);
    display: grid;
    grid-template-columns: var(--imgSize) 1fr;
    align-items: center;
    grid-gap: 62px;
}
.homeSupport-service-list__item:nth-of-type(2) .homeSupport-service-list-imgBox::after {
    background-image: url(../img/home/ico_service02.svg);
    left: auto;
    right: 5%;
}
.homeSupport-service-list__item:nth-of-type(3) .homeSupport-service-list-imgBox::after {
    background-image: url(../img/home/ico_service03.svg);
}
.homeSupport-service-list-imgBox {
    position: relative;
}
.homeSupport-service-list-imgBox::after {
    content: "";
    display: block;
    width: 17.3%;
    aspect-ratio: 90/180;
    background: url(../img/home/ico_service01.svg) no-repeat center/contain;
    position: absolute;
    left: 5%;
    bottom: -11%;
}
.homeSupport-service-list-imgBox img {
    width: 100%;
    border-radius: var(--border-radius);
}
.homeSupport-service-list-txtBox {
    padding-right: 85px;
    position: relative;
    z-index: 1;
}
.homeSupport-service-list-txtBox::after {
    content: "";
    display: block;
    width: 142px;
    aspect-ratio: 106/120;
    -webkit-mask-image: url(../img/common/ico_clover01.svg);
    mask-image: url(../img/common/ico_clover01.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: rgba(200, 216, 137, 0.2);
    position: absolute;
    right: 70px;
    bottom: -20px;
    pointer-events: none;
    z-index: -1;
}
.homeSupport-service-list__tag {
    color: #a2ad75;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
}
.homeSupport-service-list__tit {
    margin-bottom: 23px;
    padding-bottom: 23px;
    border-bottom: var(--border-bottom);
    font-weight: 700;
    font-size: 32px;
}
.homeSupport-service__btn {
    margin: 60px auto 0;
}
@media screen and (min-width: 768px) {
    .homeSupport-service-list__item:nth-of-type(even) {
        grid-template-columns: 1fr var(--imgSize);
    }
    .homeSupport-service-list__item:nth-of-type(even) .homeSupport-service-list-txtBox {
        order: -1;
    }
    .homeSupport-service-list__tag {
        letter-spacing: 0.2em;
        writing-mode: vertical-rl;
        text-orientation: upright;
        position: absolute;
        top: 0;
        right: 7px;
    }
}
@media screen and (max-width: 767px) {
    .homeSupport-service {
        padding: 40px 20px 30px;
    }
    .homeSupport-service__tit {
        margin: 0 -15px 30px;
        font-size: min(7.8vw, 32px);
    }
    .homeSupport-service__tit .sub {
        padding: 7px 23px;
        font-size: 0.56em;
    }
    .homeSupport-service-list {
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }
    .homeSupport-service-list__item {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
    .homeSupport-service-list-imgBox::after {
        left: auto;
        right: 6% !important;
        bottom: -12%;
        transform: scale(-1, 1);
    }
    .homeSupport-service-list-txtBox {
        padding-right: 0;
    }
    .homeSupport-service-list-txtBox::after {
        width: 70px;
        right: 0;
        bottom: -8px;
    }
    .homeSupport-service-list__tag {
        margin-bottom: 5px;
        font-size: 16px;
        letter-spacing: 0.08em;
    }
    .homeSupport-service-list__tit {
        margin-bottom: 13px;
        padding-bottom: 13px;
        font-size: 24px;
    }
    .homeSupport-service__btn {
        margin-top: 30px;
    }
}

/*------------------------------------------
	.homeRelief
------------------------------------------*/
.homeRelief {
    padding-block: 300px 120px;
}
.homeRelief__secTit {
    margin-bottom: 60px;
}
.homeRelief-list {
    counter-reset: number;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: clamp(40px, 4vw, 70px);
}
.homeRelief-list__img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
}
.homeRelief-list__txt {
    display: flex;
    align-items: center;
    gap: 0.7em;
    font-weight: 700;
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.5;
}
.homeRelief-list__txt::after {
    order: -1;
    counter-increment: number;
    content: counter(number, decimal-leading-zero);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5em;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: var(--color-yellow);
    color: #fff;
    font-weight: 700;
    font-size: 1em;
    font-family: var(--font-family-en);
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .homeRelief {
        padding-block: 105px 60px;
    }
    .homeRelief__secTit {
        margin-bottom: 20px;
    }
    .homeRelief-list {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px 20px;
    }
    .homeRelief-list__img {
        margin-bottom: 15px;
        box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    }
    .homeRelief-list__txt {
        flex-direction: column;
        gap: 0.3em;
        font-size: 14px;
        text-align: center;
    }
    .homeRelief-list__txt::after {
        width: 2.3em;
    }
}

/*------------------------------------------
	.homeUsage
------------------------------------------*/
.homeUsage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 230px;
}
.homeUsage-txtBox {
    align-self: center;
    padding: clamp(30px, 6vw, 100px);
}
.homeUsage-txtBox-in {
    padding: clamp(30px, 3vw, 50px);
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius);
}
.homeUsage__secTit {
    margin-bottom: 23px;
    padding-bottom: 23px;
    border-bottom: var(--border-bottom);
    font-size: 40px;
}
.homeUsage__secTit .c-tit01__sub {
    font-size: 0.6em;
}
.homeUsage__btn {
    margin-top: 25px;
}
.homeUsage-imgBox {
    order: -1;
    position: relative;
}
.homeUsage-imgBox::after {
    content: "";
    display: block;
    width: 34.5%;
    aspect-ratio: 289/330;
    background: url(../img/home/ico_usage01.svg) no-repeat center/contain;
    position: absolute;
    right: -6%;
    bottom: -11%;
    pointer-events: none;
}
.homeUsage-imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (min-width: 768px) {
    .homeUsage__secTit {
        text-align: left;
        align-items: flex-start;
    }
}
@media screen and (max-width: 767px) {
    .homeUsage {
        grid-template-columns: 1fr;
        margin-bottom: 65px;
    }
    .homeUsage-txtBox {
        padding: 40px var(--inner-padding) 60px;
    }
    .homeUsage-txtBox-in {
        padding: 30px;
    }
    .homeUsage__secTit {
        margin-bottom: 15px;
        padding-bottom: 15px;
        font-size: 28px;
    }
    .homeUsage__secTit .c-tit01__sub {
        font-size: 0.54em;
    }
    .homeUsage__btn {
        margin: 15px auto 0;
    }
    .homeUsage-imgBox {
        aspect-ratio: 380/250;
    }
    .homeUsage-imgBox::after {
        width: 24%;
        right: 5.5%;
        bottom: -9%;
    }
}

/*------------------------------------------
	.homeQualification
------------------------------------------*/
.homeQualification {
    width: min(100% - 60px, var(--inner-width));
    margin: 0 auto 235px;
    padding-block: 60px 90px;
    border-radius: var(--border-radius);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
    position: relative;
}
.homeQualification::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: #eee;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-3deg);
    z-index: -1;
    pointer-events: none;
}
.homeQualification__secTit {
    margin-bottom: 60px;
}
.homeQualification__btn {
    margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
    .homeQualification {
        width: calc(100% - var(--inner-padding) * 2);
        margin-bottom: 75px;
        padding-block: 60px;
        box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    }
    .homeQualification::after {
        transform: rotate(-2deg);
    }
    .homeQualification__secTit {
        margin-bottom: 30px;
    }
    .homeQualification__btn {
        margin-top: 20px;
    }
}

/*	.homeQualification-sec
------------------------------------------*/
.homeQualification-sec {
    display: grid;
    grid-template-columns: min(46.5%, 520px) 1fr;
    grid-gap: 60px;
    align-items: center;
    width: min(100%, 1120px);
    margin-inline: auto;
}
.homeQualification-sec__tit {
    margin-bottom: 23px;
    padding-bottom: 23px;
    border-bottom: var(--border-bottom);
    font-weight: 700;
    font-size: 32px;
}
.homeQualification-sec-imgBox {
    order: -1;
    position: relative;
}
.homeQualification-sec-imgBox::after {
    content: "";
    display: block;
    width: 26%;
    aspect-ratio: 135/196;
    background: url(../img/home/ico_qualification01.svg) no-repeat center/contain;
    position: absolute;
    left: -7%;
    bottom: -19%;
    pointer-events: none;
}
.homeQualification-sec-imgBox img {
    width: 100%;
    border-radius: var(--border-radius);
}
@media screen and (max-width: 767px) {
    .homeQualification-sec {
        grid-template-columns: 1fr;
        grid-gap: 17px;
    }
    .homeQualification-sec__tit {
        padding-bottom: 13px;
        margin-bottom: 13px;
        font-size: 24px;
        text-align: center;
    }
    .homeQualification-sec-imgBox {
        width: calc(100% - 20px);
        margin-inline: auto 0;
    }
    .homeQualification-sec-imgBox::after {
        width: 24%;
        bottom: -12%;
    }
}

/*------------------------------------------
	.homeBlog
------------------------------------------*/
.homeBlog {
    overflow-x: clip;
    padding-block: 0 135px;
}
.homeBlog-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-gap: 35px;
    position: relative;
}
@media screen and (min-width: 768px) {
    .homeBlog__btn {
        position: absolute;
        right: 15px;
        bottom: -10px;
        z-index: 3;
    }
}
@media screen and (max-width: 767px) {
    .homeBlog {
        padding-block: 0 80px;
    }
    .homeBlog-inner {
        display: block;
    }
    .homeBlog__secTit {
        margin-bottom: 25px;
    }
    .homeBlog__btn {
        margin: 30px auto 0;
    }
}

/*	.homeBlog-archive
------------------------------------------*/
.homeBlog-archive {
    margin-right: min(var(--inner-padding) * -1, (50vw - var(--inner-width) / 2) * -1);
    padding-bottom: 140px;
}
.homeBlog-archive__item a {
    display: block;
    height: 100%;
}
.homeBlog-archive-imgBox {
    overflow: clip;
    margin-bottom: 20px;
    border-radius: 10px;
}
.homeBlog-archive-imgBox img {
    width: 100%;
	border: 1px solid #eee;
	border-radius: 1rem;
	height: 100%;
    object-fit: cover;
}
.homeBlog-archive__tit {
    color: var(--color-orange);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
}
.homeBlog-archive-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.homeBlog-archive__date {
    font-size: 16px;
    line-height: 1.6;
}
.homeBlog-archive__cat {
    width: fit-content;
    padding: 4px 12px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    background: #f5f5f5;
    border-radius: 100px;
}
@media screen and (max-width: 767px) {
    .homeBlog-archive {
        margin-right: 0;
        padding-bottom: 0;
    }
    .homeBlog-archive .splide__list {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
    .homeBlog-archive-imgBox {
        margin-bottom: 10px;
		aspect-ratio: 16/9;
		height: auto;
    }
    .homeBlog-archive__tit {
        font-size: 15px;
    }
    .homeBlog-archive-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        margin-top: 5px;
    }
    .homeBlog-archive__date {
        font-size: 13px;
    }
    .homeBlog-archive__cat {
        font-size: 12px;
    }
}
@media (hover: hover) {
    .homeBlog-archive__item a:hover {
        opacity: 1;
        color: var(--color-orange);
    }
    .homeBlog-archive__item a:hover .homeBlog-archive-imgBox img {
        transform: scale(1.1);
        filter: brightness(0.7);
    }
    .homeBlog-archive-imgBox img {
        transition: all 0.5s;
    }
}

/* sliderアイコン */
.js-home-blog-slider .splide__arrows {
    display: grid;
    grid-template-columns: repeat(2, 50px);
    grid-gap: 30px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
}
.js-home-blog-slider .splide__arrow {
    cursor: pointer;
    aspect-ratio: 1/1;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-orange);
    border-radius: 50%;
    background: none;
    color: var(--color-orange);
    position: relative;
    transition: all 0.3s;
}
.js-home-blog-slider .splide__arrow svg {
    display: none;
}
.js-home-blog-slider .splide__arrow::before {
    content: "";
    display: block;
    width: 33%;
    aspect-ratio: 10/6;
    -webkit-mask-image: url(../img/common/ico_arrow03.svg);
    mask-image: url(../img/common/ico_arrow03.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: currentColor;
}
.js-home-blog-slider .splide__arrow.splide__arrow--prev {
    transform: scale(-1, 1);
    left: 0;
}
.js-home-blog-slider .splide__arrow.splide__arrow--next {
    right: 0;
}
.js-home-blog-slider .splide__arrow:hover {
    opacity: 1;
    background: var(--color-orange);
    color: #fff;
}

/*------------------------------------------
	.homeAccess
------------------------------------------*/
.homeAccess {
    padding-block: 0 100px;
    background: #f5f5f5;
}
.homeAccess-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row-reverse;
    gap: clamp(40px, 4.5vw, 80px);
}
.homeAccess__secTit {
    flex-shrink: 0;
}
.homeAccess-content {
    width: min(100%, 935px);
    margin-inline: auto 0;
    padding: 60px 45px;
    display: grid;
    grid-template-columns: min(45%, 380px) 1fr;
    grid-gap: 40px;
    align-items: center;
    background: #fff;
    border-radius: var(--border-radius);
}
.homeAccess__tit {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 32px;
}
.homeAccess__tel {
    width: fit-content;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    text-align: center;
}
.homeAccess__tel a {
    display: block;
    padding: 12px 30px;
    border-radius: inherit;
    background: #f5f5f5;
}
.homeAccess__tel .num {
    color: var(--color-orange-dark);
    font-size: 40px;
    line-height: 1;
}
.homeAccess__tel .time {
    display: block;
    margin-top: 5px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
}
.homeAccess__address {
    line-height: 1.4;
}
.homeAccess__img {
    order: -1;
    width: 100%;
    border-radius: var(--border-radius);
}
.homeAccess__btn {
    grid-column: span 2;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .homeAccess {
        padding-block: 0 60px;
    }
    .homeAccess-inner {
        display: block;
    }
    .homeAccess__secTit {
        margin-bottom: 25px;
    }
    .homeAccess-content {
        width: 100%;
        margin-inline: auto;
        padding: 30px 15px;
        grid-template-columns: 1fr;
        grid-gap: 25px;
    }
    .homeAccess__tit {
        margin-bottom: 10px;
        font-size: 24px;
        text-align: center;
    }
    .homeAccess__tel {
        width: calc(100% - 30px);
        margin: 0 auto 15px;
    }
    .homeAccess__tel a {
        padding: 8px;
    }
    .homeAccess__tel .num {
        font-size: min(7.6vw, 32px);
    }
    .homeAccess__tel .time {
        margin-top: 3px;
        font-size: 12px;
    }
    .homeAccess__address {
        text-align: center;
    }
    .homeAccess__img {
        width: calc(100% - 30px);
        margin-inline: auto;
    }
    .homeAccess__btn {
        grid-column: span 1;
    }
}

/*	.homeAccess-mapBox
------------------------------------------*/
.homeAccess-mapBox {
    height: 350px;
    margin-bottom: 100px;
}
.homeAccess-mapBox iframe {
    display: block;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 767px) {
    .homeAccess-mapBox {
        height: auto;
        aspect-ratio: 380/220;
        margin-bottom: 55px;
    }
}
