@charset "utf-8";
/* Reset */
.asset-scope{
    font-size: 62.5%;
    -webkit-font-feature-settings: 'palt' 1;
    font-feature-settings: 'palt' 1;
}
.asset-scope{color: #3f3b3a; word-spacing: 0; font-size: 16px; line-height: 1.7; overflow-x: hidden;
    -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; -moz-text-size-adjust: 100%;
    font-family: 'Noto Sans JP', sans-serif;}

.asset-scope *{margin: 0; padding: 0; box-sizing: border-box; border: 0;}
.asset-scope h1, .asset-scope h2, .asset-scope h3, .asset-scope h4, .asset-scope h5, .asset-scope h6{font-size: 100%; font-weight: bold;}
.asset-scope ol, .asset-scope ul{list-style: none;}
.asset-scope table{border-collapse: collapse; border-spacing: 0;}
.asset-scope dt, .asset-scope th{text-align: left; font-weight: normal;}
.asset-scope a{color: inherit; text-decoration: none;}
.asset-scope img{vertical-align: bottom; max-width: 100%; height: auto;}

@media screen and (min-width: 768px){
    .asset-scope a[href^="tel:"]{pointer-events: none;}
    .asset-scope .only-sp{display: none;}
}

@media screen and (max-width: 767px){
    .asset-scope .only-pc{display: none;}
}

/* Common */
.asset-scope .container{max-width: 1200px; width: calc(100% - 40px); margin: 0 auto;}
.asset-scope .container1100{max-width: 1100px; width: calc(100% - 40px); margin: 0 auto;}

/* Animate */
@media screen{
    .asset-scope .inview{}
    .asset-scope .fade-in{opacity: 0; transition: 1.2s;}
    .asset-scope .fade-in.is-view{opacity: 1;}

    .asset-scope .fade-up{opacity: 0; transform: translateY(30px); transition: 1.2s;}
    .asset-scope .fade-up.is-view{opacity: 1; transform: translateY(0);}

    .asset-scope .fade-right{opacity: 0; transform: translateX(-30px); transition: 1.2s;}
    .asset-scope .fade-right.is-view{opacity: 1; transform: translateX(0);}
}

/* Mobile Tabs */
/* Hide tabs navigation on desktop */
.asset-scope .case-tabs-nav {
    display: none;
}

/* Show tabs and handle mobile layout */
@media screen and (max-width: 767px) {
    /* Show tabs navigation only on mobile */
    .asset-scope .case-tabs-nav {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin: 80px auto 20px;
        max-width: 400px;
    }

    .asset-scope .case-tabs-nav .case-tit {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translate(-50%, -100%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        line-height: 1;
    }

    .asset-scope .case-tabs-nav .case-tit::after {
        content: '';
        display: block;
        width: 15px;
        height: 12px;
        margin-left: 0.5em;
        background: url(../img/icon-arrow-down.png) no-repeat center center/100% 100%;
    }

    .asset-scope .tab-btn {
        position: relative;
        flex: 1;
        min-width: 45%;
        padding: 20px 5px;
        background: transparent;
        border: 1px solid #699f8a;
        font-size: 12px;
        font-weight: bold;
        color: #333;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
    }

    .asset-scope .tab-btn::after {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        display: block;
        margin: 0 auto;
        width: 70%;
        height: 100%;
        content: "";
    }

    .asset-scope .tab-btn1::after {
        background: #699f8a;
        mask: url(../img/case-single.svg) no-repeat center center/contain;
    }

    .asset-scope .tab-btn2::after {
        background: #0ba29a;
        mask: url(../img/case-dinks.svg) no-repeat center center/contain;
    }

    .asset-scope .tab-btn3::after {
        background: #06827b;
        mask: url(../img/case-family.svg) no-repeat center center/contain;
        width: 75%;
    }

    .asset-scope .tab-btn4::after {
        background: #006835;
        mask: url(../img/case-senior.svg) no-repeat center center/contain;
        width: 75%;
    }

    .asset-scope .tab-btn1.active {
        background: #699f8a;
        border-color: #699f8a;
    }

    .asset-scope .tab-btn2.active {
        background: #0ba29a;
        border-color: #0ba29a;
    }

    .asset-scope .tab-btn3.active {
        background: #06827b;
        border-color: #06827b;
    }

    .asset-scope .tab-btn4.active {
        background: #006835;
        border-color: #006835;
    }

    .asset-scope .tab-btn.active::after {
        background: #fff;
    }
    
    /* Show only the active tab content on mobile */
    .asset-scope .case-list {
        display: block;
    }
    
    .asset-scope .case-list li {
        display: none;
    }
    
    .asset-scope .case-list li[data-tab-content] {
        display: none;
    }
    
    .asset-scope .case-list li[data-tab-content].active {
        display: block;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* DEVELOP */
.asset-scope .contents {
    padding: min(10vw, 100px) 0;
}

.asset-scope .section {
    margin-bottom: 100px;
}

.asset-scope .section:last-child {
    margin-bottom: 0;
}

.asset-scope .section .block {
    margin-bottom: 100px;
}

.asset-scope .m-tit {
    font-size: min(3.8vw, 34px);
    text-align: center;
    line-height: 1.5;
}

.asset-scope .m-tit.bg-green {
    position: relative;
    background: #00827c;
    width: fit-content;
    margin: 0 auto 100px;
    color: #ffffff;
    padding: 5px 100px 8px;
    border-radius: 50px;
}

.asset-scope .m-tit.bg-green .triangle {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%) rotate(180deg);
    display: block;
    width: 66px;
    height: 66px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background-color: #00827c;
    z-index: -1;
}

.asset-scope .s-tit {
    font-size: min(2.5vw, 30px);
    line-height: 1.5;
    color: #00827c;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #00913a;
}

.asset-scope .m-desc {
    font-size: 16px;
    text-align: center;
    line-height: 2;
    margin-top: 20px;
}

.asset-scope .s-desc {
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    .asset-scope .contents {
        padding: 50px 0 0;
    }

    .asset-scope .section {
        margin-bottom: 50px;
    }

    .asset-scope .section .block {
        margin-bottom: 80px;
    }
    
    .asset-scope .m-tit {
        font-size: min(6vw, 34px);
    }

    .asset-scope .s-tit {
        font-size: min(5.2vw, 26px);
        margin-bottom: 10px;
        line-height: 1.5;
    }

    .asset-scope .m-desc {
        font-size: 14px;
        margin-top: 15px;
        line-height: 1.8;
    }

    .asset-scope .s-desc {
        font-size: 14px;
        line-height: 1.8;
    }

    .asset-scope .m-tit.bg-green {
        padding: 5px 20px 8px;
        margin-bottom: 40px;
        line-height: 1.3;
        text-align: center;
        width: 100%;
        max-width: 340px;
        font-size: min(5.5vw, 24px);
    }

    .asset-scope .m-tit.bg-green .triangle {
        width: 36px;
        height: 36px;
    }
}

/* MV */
.asset-scope .mv {
    position: relative;
}

.asset-scope .mv-txt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: min(4vw,34px);
    text-align: center;
    color: #fff;
    letter-spacing: 0.075em;
    padding: 3px 0 5px;
}
.asset-scope .mv-txt span{position: relative;z-index: 2;}
.asset-scope .mv-txt::after{
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
 background: rgba(0, 130, 124, 1);
   mix-blend-mode: multiply;
   bottom: 0;
   left: 0;
}

@media screen and (max-width: 768px) {
    .asset-scope .mv-txt {
        font-size: min(6.8vw, 34px);
    }
}

.asset-scope .intro .m-tit {
    color: #00827c;
}

.asset-scope .intro .m-desc {
    margin-top: 40px;
}

@media screen and (max-width: 768px) {
    .asset-scope .intro .m-desc {
        margin-top: 20px;
    }
}

.asset-scope .sec1 .block01 .list-item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 60px 0 0;
}

.asset-scope .sec1 .block01 .list-item .item {
    width: 22%;
}

.asset-scope .sec1 .block01 .list-item .item .message {
    position: relative;
    font-size: 16px;
    text-align: center;
    padding: 15px 0;
    width: 90%;
    min-height: 85px;
    margin: 0 auto 30px;
    background: #00827c;
    color: #ffffff;
    align-content: center;
    border-radius: 20px;
}

.asset-scope .sec1 .block01 .list-item .item .message::after {
    position: absolute;
    bottom: 0;
    left: 20%;
    content: "";
    display: block;
    width: 28px;
    height: 80px;
    background: #00827c;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: translate(50%, 55%) rotate(120deg);
    z-index: -1;
}

.asset-scope .sec1 .block01 .list-item .item.item01 .message {
    background: #699f8a;
}

.asset-scope .sec1 .block01 .list-item .item.item01 .message::after {
    background: #699f8a;
}

.asset-scope .sec1 .block01 .list-item .item.item02 .message {
    background: #00a29a;
}

.asset-scope .sec1 .block01 .list-item .item.item02 .message::after {
    background: #00a29a;
}

.asset-scope .sec1 .block01 .list-item .item.item03 .message {
    background: #00827c;
}

.asset-scope .sec1 .block01 .list-item .item.item03 .message::after {
    background: #00827c;
    left: unset;
    right: 35%;
    transform: translate(50%, 55%) rotate(240deg);
}

.asset-scope .sec1 .block01 .list-item .item.item04 .message {
    background: #006935;

}

.asset-scope .sec1 .block01 .list-item .item.item04 .message::after {
    background: #006935;
    left: unset;
    right: 35%;
    transform: translate(50%, 55%) rotate(240deg);

}

.asset-scope .sec1 .block01 .list-item .item-tit {
    font-size: min(2.3vw, 20px);
    text-align: center;
    margin: 40px 0 10px;
}

.asset-scope .sec1 .block01 .list-item .item01 .item-tit {
    color: #699f8a;
}

.asset-scope .sec1 .block01 .list-item .item02 .item-tit {
    color: #00a29a;
}

.asset-scope .sec1 .block01 .list-item .item03 .item-tit {
    color: #00827c;
}

.asset-scope .sec1 .block01 .list-item .item04 .item-tit {
    color: #006935;
}

.asset-scope .sec1 .block01 .list-item .item-desc {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
    color: #727171;
}

.asset-scope .sec1 .block02 .case-list {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

@media screen and (max-width: 768px) {
    .asset-scope .sec1 .block01 .list-item {
        margin: 40px 0 0;
        row-gap: 40px;
    }

    .asset-scope .sec1 .block01 .list-item .item {
        width: 47%;
    }
    
    .asset-scope .sec1 .block01 .list-item .item-tit {
        font-size: min(4.6vw, 18px);
        margin: 20px 0 10px;
    }

    .asset-scope .sec1 .block01 .list-item .item-tit.fs-14 {
        font-size: min(4.2vw, 14.6px);
        margin: 22px 0 13px;
    }

    .asset-scope .sec1 .block01 .list-item .item-desc {
        font-size: 14px;
        line-height: 1.8;
    }

    .asset-scope .sec1 .block01 .list-item .item .message {
        width: 95%;
        max-width: 160px;
        font-size: 14px;
        padding: 10px 4px;
        min-height: 70px;
    }

    .asset-scope .sec1 .block01 .list-item .item .message::after {
        width: 20px;
        height: 60px;
    }

    .asset-scope .sec1 .block02 .case-list {
        margin-top: 40px;
        gap: 30px;
    }

    .asset-scope .swipe {
        text-align: center;
        margin: 10px auto 0;
    }

    .asset-scope .swipe span {
        background: #00827c;
        border-radius: 5px;
        color: #fff;
        padding: 5px 20px;
        font-size: 14px;
    }

    .asset-scope .swipe img {
        margin-left: 10px;
    }

    .asset-scope .swipe * {
        display: inline-block;
        vertical-align: middle;
        line-height: 1.4;
    }
}


.asset-scope .sec2 {
    background: rgba(0, 130, 124, 0.15);
    padding: 100px 0 0;
}

.asset-scope .sec2 .block01 .list-item {
    margin: 50px 0 0;
    display: flex;
    justify-content: space-between;
}

.asset-scope .sec2 .block01 .list-item .item {
    width: 31.3223%;
    border: 1px solid #00827c;
    background: #ffffff;
}

.asset-scope .sec2 .block01 .list-item .item-tit {
    background: #00827c;
    color: #ffffff;
    font-size: min(3.8vw, 34px);
    text-align: center;
    padding: 15px 0 20px;
}

.asset-scope .sec2 .block01 .list-item .m-desc {
    margin: 0;
    padding: 20px;
    text-align: left;
    text-align: justify;
    color: #727171;
}

.asset-scope .sec2 .block02 {
    background: rgba(0, 130, 124, 0.15)
}

.asset-scope .sec2 .block02 .s-desc {
    color: #231916;
}

.asset-scope .sec2 .block02 .row {
    width: 100%;
}

.asset-scope .sec2 .block02 .row .row-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
}

.asset-scope .sec2 .block02 .row .row-flex {
    display: flex;
    padding-left: 155px;
}

.asset-scope .sec2 .block02 .row .row-flex p:first-of-type {
   width: 25%;
}

.asset-scope .sec2 .block02 .col {
    padding: 50px;
}

.asset-scope .sec2 .block02 .col .title {
    display: flex;
    justify-content: flex-start;
    gap: min(5vw, 50px);
    min-height: 146px;
    padding-left: min(1.667vw, 20px);
}
.asset-scope .sec2 .block02 .row02 .col .title{
    min-height: 100px;
}
.asset-scope .sec2 .block02 .row02 .col{width: 100%;}
.asset-scope .sec2 .block02 .col .title p {
    position: relative;
    z-index: 1;
    width: 80px;
    min-width: 80px;
    height: 80px;
    font-size: 12px;
    text-align: center;
    align-content: center;
    color: #ffffff;
    line-height: 1.4;
}

.asset-scope .sec2 .block02 .col .title p::before {
    position: absolute;
    content: "";
    display: block;
    inset: 0;
    background: #00827c;
    z-index: -1;
    transform: rotate(45deg);
    border: 1px solid #ffffff;
    margin: 4px;
}

.asset-scope .sec2 .block02 .col .title p::after {
    position: absolute;
    content: "";
    inset: 0;
    display: block;
    background: #00827c;
    z-index: -2;
    transform: rotate(45deg);
}

.asset-scope .sec2 .block02 .col .title p .num {
    font-size: 16px;
    font-family: 'Jost', sans-serif;
}

.asset-scope .sec2 .block02 .col .s-tit {
    text-align: left;
    font-weight: normal;
    border: none;
}

.asset-scope .sec2 .block02 .row01 .col1 {
    border-right: 1px solid #231916;
}

.asset-scope .sec2 .block02 .row01 .col1 .s-tit {
    text-wrap: nowrap;
}

.asset-scope .sec2 .block02 .row01 .col2 .s-tit {
    text-wrap: nowrap;
}

.asset-scope .sec2 .block02 .row02 {
    border-top: 1px solid #231916;
    border-bottom: 1px solid #231916;
}

.asset-scope .sec2 .block02 .row03 .col1 {
    border-right: 1px solid #231916;
}

@media screen and (max-width: 1200px) {
    .asset-scope .sec2 .block02 .row01 .col1 .s-tit {
        text-wrap: wrap;
    }

    .asset-scope .sec2 .block02 .row01 .col2 .s-tit {
        text-wrap: wrap;
    }
}

@media screen and (max-width: 768px) {
    .asset-scope .sec2 {
        padding: 80px 0 0;
    }

    .asset-scope .sec2 .block01 .list-item {
        flex-direction: column;
        row-gap: 40px;
    }

    .asset-scope .sec2 .block01 .list-item .item {
        width: 100%;
    }

    .asset-scope .sec2 .block01 .list-item .item-tit {
        font-size: min(6.8vw, 34px);
        padding: 10px 0 15px;
    }

    .asset-scope .sec2 .block02 .row .row-inner {
        flex-direction: column;
    }

    .asset-scope .sec2 .block02 .col {
        padding: 40px 20px;
        border-bottom: 1px solid #231916;
    }

    .asset-scope .sec2 .block02 .col .title {
        padding-left: 20px;
        gap: 30px;
        min-height: 120px;
    }
    .asset-scope .sec2 .block02 .row02 .col .title{
    min-height: 120px;
    }

    .asset-scope .sec2 .block02 .row01 .col1 {
        border-right: none;
    }

    .asset-scope .sec2 .block02 .row02 {
        border: none;
    }

    .asset-scope .sec2 .block02 .row03 .col1 {
        border-right: none;
    }

    .asset-scope .sec2 .block02 .row03 .col2 {
        border: none;
    }

    .asset-scope .sec2 .block02 .row01 .col1 .s-tit {
        text-wrap: unset;
    }

    .asset-scope .sec2 .block02 .row01 .col2 .s-tit {
        text-wrap: unset;
    }

    .asset-scope .sec2 .block02 .row .row-flex {
        flex-direction: column;
        padding-left: 0;
    }

    .asset-scope .sec2 .block02 .row .row-flex p {
        width: 100% !important;
    }

    .asset-scope .sec2 .block02 .col .s-tit {
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

.asset-scope .sec3 .block01 .m-desc {
    margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
    .asset-scope .sec3 .block01 .m-desc {
        margin-bottom: 40px;
    }

    .asset-scope .sec3 .block01 .img img {
        object-fit: cover;
        object-position: left;
        min-height: 200px;
    }
}


