@charset "UTF-8";

/* === プロジェクト INDEX === */


.intro-text-area {
    padding: 80px 0;
}

.intro-text-area p {
    padding-bottom: 1em;
    text-align: center;
    font-size: min(4vw, 1.1rem);
    line-height: 2em;
}

.data-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 2%;
    width: 80%;
    max-width: 900px;
    margin: 0 auto 120px;
}

.data-list li {
    width: 31.33%;
    background: #FFF;
    box-shadow: 0 0 10px 0 rgba(10, 98, 101, 0.25);
    padding: 20px;
    position: relative;
}

.data-list li:before {
    content: "";
    display: block;
    position: absolute;
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    width: 80px;
    height: 4px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.data-list li .title {
    text-align: center;
    color: var(--main-color);
    font-size: 1.1rem;
}

.data-list li .count-section {
    text-align: center;
}

.data-list li .count-text .js-count {
    font-size: 44px;
    font-weight: 600;
}

.data-list li .count-text .unit {
    color: var(--main-color);
    font-size: 1.2rem;
    margin-left: 2px;
}

.project-card {
    margin-bottom: 20px;
    position: relative;
    transition: all .5s;
}

.project-links {
    padding: 15px 0 30px;
}

.project-card:before {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 10px;
    height: 10px;
    background-image: url(../img/common_img/arrow-green.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 2;
}

.project-card a {
    display: flex;
    background-color: #f3f8f8;
    text-decoration: none;
    color: #333;
    transition: opacity 0.3s;
    align-items: stretch;
    position: relative;
}

.project-card:hover {
    opacity: 0.8;
}

.project-badge {
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    color: #fff;
    width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 20px 0;
}

.badge-label {
    font-family: var(--en-font);
    font-size: 19px;
    letter-spacing: 1px;
    font-weight: 600;
    line-height: 1em;
    opacity: 0.9;
}

.badge-number {
    font-family: var(--en-font);
    font-size: 50px;
    font-weight: 500;
    line-height: 1;
    margin-top: 5px;
}

.project-body {
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding: 20px 30px;
    justify-content: space-between;
}

.project-desc {
    font-size: min(1.8vw, 1.4rem);
    font-weight: bold;
    line-height: 1.6;
    flex-basis: 55%;
    padding-right: 20px;
}

.project-target {
    flex-basis: 45%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
    border-left: 1px solid #0F846E;
    color: #0F846E;
    min-height: 70px;
}

.target-text {
    font-size: min(1.5vw, 1.2rem);
    line-height: 1.6em;
    font-weight: 500;
}

/* スマホ用レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .intro-text-area {
        padding: 40px 0;
    }

    .intro-text-area p {
        padding-bottom: 1em;
        text-align: center;
        font-size: min(3.4vw, 1rem);
        line-height: 2em;
    }

    .data-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0 2%;
        width: 80%;
        max-width: 900px;
        margin: 0 auto 60px;
    }

    .data-list li {
        width: 100%;
        background: #FFF;
        box-shadow: 0 0 10px 0 rgba(10, 98, 101, 0.25);
        padding: 15px;
        position: relative;
        margin-bottom: 20px;
    }

    .data-list li:before {
        content: "";
        display: block;
        position: absolute;
        background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
        width: 80px;
        height: 4px;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .data-list li .title {
        text-align: center;
        color: var(--main-color);
        font-size: 1.1rem;
        padding-bottom: 10px;
    }

    .data-list li .count-section {
        text-align: center;
    }

    .data-list li .count-text .js-count {
        font-size: 44px;
        font-weight: 600;
    }

    .data-list li .count-text .unit {
        color: var(--main-color);
        font-size: 1.2rem;
        margin-left: 2px;
    }

    .project-card a {
        flex-direction: column;
    }

    .project-links {
        padding-bottom: 0;
    }

    .project-badge {
        width: 100%;
        flex-direction: row;
        gap: 10px;
        padding: 5px;
        align-items: baseline;
    }

    .badge-number {
        font-size: 24px;
        margin-top: 0;
    }

    .project-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 10px;
    }

    .project-desc {
        width: 100%;
        padding-right: 0;
        font-size: 16px;
    }

    .project-target {
        width: 100%;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #0F846E;
        padding-top: 15px;
        min-height: auto;
    }

    .target-text {
        font-size: min(3.5vw, 1rem);
        line-height: 1.6em;
        font-weight: 500;
    }
}



.project-main {
    width: 100%;
    position: relative;
    z-index: 1;
}

.project-main .main-visual {
    width: 100%;
    position: relative;
    z-index: -1;
    overflow: hidden;
}

.project-main.project02 {
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 40%);
}

.project-main.project02 .main-visual {
    width: 57.5%;
    position: relative;
    left: 42.5%;
    z-index: -1;
    overflow: hidden;
}

.project-main .mv-content {
    position: absolute;
    display: inline-block;
    bottom: 30px;
    left: 5%;
    z-index: 4;
}

.project-main .mv-content .wipe-group {
    position: relative;
}

.project-main .mv-content .wipe-group .wipe {
    width: 100%;
    min-width: 500px;
    position: relative;
    transition-delay: 1s;
    transition-duration: 3s;
}

.project-main .mv-content .wipe-group .wipe .title {
    position: relative;
    margin-bottom: 10px;
}

.project-main .mv-content .wipe-group .wipe .title span {
    display: inline-block;
    font-family: var(--en-font);
    color: #FFF;
    font-size: min(3vw, 34px);
    line-height: 1.6em;
    font-weight: 500;
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    padding: 5px 20px;
}

.project-main .mv-content .wipe-group .wipe .hero-txt {
    font-size: min(3vw, 2.2rem);
    font-weight: 600;
    line-height: 1.6em;
    padding: 15px;
    background: #FFF;
    display: inline-block;
    margin-bottom: 10px;
}

.project-main .mv-content .wipe-group .wipe .hero-txt~p span {
    font-size: min(2.4vw, 1.4rem);
    font-weight: 600;
    line-height: 1.6em;
    padding: 12px;
    background: #FFF;
    display: inline-block;
}


/* 装飾（三角形） */
.mv-triangle-left {
    background: #FFF;
    width: 12vw;
    height: 100%;
    top: 0;
    left: -5vw;
    opacity: 0;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    z-index: 3;
    position: absolute;
    transition: all .8s .5s ease-out;
}

.mv-triangle-left.eon {
    opacity: 1;
    left: 0;
}

.mv-triangle-left2 {
    background: rgba(0, 145, 157, 0.6);
    width: 14vw;
    height: 100%;
    top: 0;
    left: -6vw;
    opacity: 0;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    z-index: 2;
    position: absolute;
    transition: all .8s .55s ease-in-out;
}

.mv-triangle-left2.eon {
    opacity: 1;
    left: 0;
}

.mv-triangle-right {
    background: #FFF;
    width: 12vw;
    height: 100%;
    top: 0;
    right: -5vw;
    opacity: 0;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    z-index: 3;
    position: absolute;
    transition: all .8s .5s ease-out;
}

.mv-triangle-right.eon {
    opacity: 1;
    right: 0;
}

.mv-triangle-right2 {
    background: rgba(32, 159, 239, 0.6);
    width: 14vw;
    height: 100%;
    top: 0;
    right: -6vw;
    opacity: 0;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    z-index: 2;
    position: absolute;
    transition: all .8s .55s ease-in-out;
}

.mv-triangle-right2.eon {
    opacity: 1;
    right: 0;
}


.split-section {
    display: flex;
    position: relative;
    width: 100%;
}

.image-area {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.image-area img {
    object-fit: cover;
    height: 100%;
    display: block;
}

.layout-text-left .image-area.eft,
.layout-text-right .image-area.eft {
    opacity: 0;
    transition: all 2s;
}

.layout-text-left .image-area.eon,
.layout-text-right .image-area.eon {
    opacity: 1;
}

.layout-text-left .text-area {
    background: #F2F6F6;
}

.layout-text-right .text-area {
    order: 2;
}

.layout-text-right .text-area {
    background: #DAE7EA;
}

.layout-image-full .image-area {
    width: 100%;
    height: 100%;
    position: absolute;
}

.layout-image-full .image-area img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.layout-image-full.full-half .image-area {
    width: 50%;
    left: 50%;
}

.layout-image-full.full-half {
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 40%);
}

.layout-image-full .image-area::after {
    content: "";
    display: block;
    position: absolute;
    background: linear-gradient(286deg, rgba(75, 190, 141, 0.70) 0%, rgba(7, 100, 128, 0.70) 100%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all 1.5s 1.5s;
}

.layout-image-full .image-area.eon::after {
    opacity: 1;
}

.layout-text-left.full-height .image-area img {
    object-fit: contain;
    width: 85%;
    height: 100%;
    display: block;
    left: 0;
}

.layout-text-right.full-height .image-area img {
    object-fit: contain;
    width: 85%;
    height: 100%;
    display: block;
    left: 15%;
    position: relative;
}

.layout-text-left.full-height .image-area {
    background: #F2F6F6;
}

.layout-text-right.full-height .image-area {
    background: #DAE7EA;
}

.text-area {
    width: 50%;
    display: flex;
    padding: 70px 50px;
    justify-content: flex-start;
}

.text-area p {
    line-height: 1.8em;
}

.text-content {
    width: 100%;
    max-width: 550px;
}

.layout-text-left .text-area {
    justify-content: flex-end;
}

.layout-image-full .text-area .text-content {
    padding: 50px 0;
}

.layout-text-right .text-area {
    justify-content: flex-start;
}

.layout-image-full .text-area {
    justify-content: flex-end;
    z-index: 2;
    color: #FFF;
    transition-delay: 2s;
}

.text-content .h2-sub-text {
    display: inline-block;
    color: #FFF;
    font-size: 16px;
    line-height: 1.6em;
    font-weight: 500;
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    padding: 5px 20px;
    margin-bottom: 20px;
}

.text-content h2 {
    position: relative;
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.text-content h2 span:nth-child(1) {
    font-family: var(--en-font);
    font-size: 65px;
    font-weight: 500;
    display: inline-block;
    line-height: 1em;
    padding-right: 12px;
}

.text-content h2 span:nth-child(2) {
    font-size: min(2.1vw, 1.6rem);
    font-weight: 500;
    line-height: 1.6em;
    padding: 5px 15px;
    background: #FFF;
    display: inline-block;
}

.layout-image-full .text-area h2 span {
    color: #FFF;
}

.back-button {
    width: 80%;
    margin: 80px auto;
    max-width: 530px;
    background: #000;
    position: relative;
    transition: all .5s;
}

.back-button p {
    color: #FFF;
    text-align: center;
    font-size: min(4vw, 1.2rem);
    padding: 20px 0;
}

.back-button::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-image: url(../img/common_img/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.back-button:hover {
    background: #262626;
}

.project-note {
    padding: 24px 0;
    font-size: min(3vw, 12px);
    line-height: 1.6em;
    text-align: center;
}


@media (min-width: 1400px) {
    .layout-text-left.full-height .image-area img {
        object-fit: contain;
        width: 600px;
        height: 100%;
        display: block;
        left: 0;
    }

    .layout-text-right.full-height .image-area img {
        object-fit: contain;
        width: 600px;
        height: 100%;
        display: block;
        left: 100%;
        transform: translateX(-100%);
        position: relative;
    }
}

@media (max-width: 1300px) {
    .layout-text-left.full-height .image-area img {
        object-fit: contain;
        width: 95%;
        height: 100%;
        display: block;
        left: 0;
    }

    .layout-text-right.full-height .image-area img {
        object-fit: contain;
        width: 95%;
        height: 100%;
        display: block;
        left: 5%;
        position: relative;
    }
}

@media (max-width: 1200px) {
    .layout-text-left.full-height .image-area img {
        object-fit: cover;
        width: auto;
        height: 100%;
        display: block;
        left: 0;
    }

    .layout-text-right.full-height .image-area img {
        object-fit: cover;
        width: auto;
        height: 100%;
        display: block;
        left: 0;
        position: relative;
    }
}

@media (max-width: 768px) {

    .project-main .main-visual {
        width: 100%;
        position: relative;
        z-index: -1;
        overflow: hidden;
    }

    .project-main .main-visual img {
        min-height: 330px;
        object-fit: cover;
    }

    .project-main.project02 {
        background: none;
    }

    .project-main.project02 .main-visual {
        width: 100%;
        position: relative;
        left: 0;
        padding-left: 12.5%;
        z-index: -1;
        overflow: hidden;
        background: linear-gradient(98deg, #4BBE8D 0%, #076480 40%);
    }

    /* テキストコンテンツ */
    .project-main .mv-content {
        position: relative;
        display: block;
        bottom: 20px;
        left: 0;
        z-index: 4;
    }

    .project-main .mv-content .wipe-group .wipe {
        width: 90%;
        left: 5%;
        min-width: auto;
        position: relative;
        transition-delay: 1s;
        transition-duration: 3s;
    }

    .project-main .mv-content .wipe-group .wipe {
        width: 90%;
        min-width: auto;
        position: relative;
        transition-delay: 1s;
        transition-duration: 3s;
    }

    .project-main .mv-content .wipe-group .wipe .title {
        position: relative;
        margin-bottom: 5px;
    }

    .project-main .mv-content .wipe-group .wipe .title span {
        display: inline-block;
        font-family: var(--en-font);
        color: #FFF;
        font-size: 20px;
        line-height: 1.6em;
        font-weight: 500;
        background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
        padding: 2px 10px;
    }

    .project-main .mv-content .wipe-group .wipe .hero-txt {
        font-size: min(5.2vw, 1.7rem);
        font-weight: 600;
        line-height: 1.6em;
        padding: 10px 0 0;
        background: none;
        display: inline-block;
    }

    .project-main .mv-content .wipe-group .wipe .hero-txt~p span {
        font-size: min(3.6vw, 1.2rem);
        font-weight: 600;
        line-height: 1.6em;
        padding: 0 0;
        background: #FFF;
        display: inline-block;
    }

    .split-section {
        display: flex;
        flex-direction: column;
    }

    .layout-text-left,
    .layout-text-right {
        display: flex;
        flex-direction: column;
    }

    .layout-text-left .image-area img,
    .layout-text-right .image-area img {
        max-height: 350px;
    }

    .layout-image-full .image-area {
        position: relative
    }

    .image-area,
    .text-area {
        width: 100%;
        height: auto;
    }

    .text-area {
        padding: 40px 8%;
        justify-content: center !important;
    }

    .layout-text-right .text-area {
        order: 1;
    }

    .layout-text-right .image-area {
        order: 2;
    }

    .text-content {
        max-width: 100%;
    }

    .layout-image-full .text-area .text-content {
        padding: 0;
    }

    .layout-image-full .text-area {
        padding: 40px 8%;
        justify-content: flex-end;
        z-index: 2;
        color: #000;
        transition-delay: 0s;
    }

    .layout-image-full .image-area img {
        height: 100%;
        min-height: 350px;
        object-fit: cover;
        object-position: center center;
    }

    .layout-image-full .image-area::after {
        display: none;
        transition: all 1.5s 1.5s;
    }

    .layout-text-left.full-height .image-area img {
        object-fit: contain;
        width: 100%;
        height: 100%;
        min-height: auto;
        max-height: 500px;
        display: block;
        left: 50%;
        transform: translateX(-50%);
        position: relative;
        padding: 0 30px 30px;
    }

    .layout-text-right.full-height .image-area img {
        object-fit: contain;
        width: 100%;
        height: 100%;
        min-height: auto;
        max-height: 500px;
        display: block;
        left: 50%;
        transform: translateX(-50%);
        position: relative;
        padding: 0 30px 30px;
    }

    .layout-image-full.full-half .image-area {
        width: 100%;
        left: 0;
    }

    .layout-image-full.full-half {
        background: none;
    }

    .text-content .h2-sub-text {
        display: inline-block;
        color: #FFF;
        font-size: 14px;
        line-height: 1.6em;
        font-weight: 500;
        background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
        padding: 3px 15px;
        margin-bottom: 20px;
    }

    .text-content h2 {
        position: relative;
        display: flex;
        margin-bottom: 10px;
        align-items: flex-start;
    }

    .text-content h2 span:nth-child(1) {
        font-family: var(--en-font);
        font-size: 50px;
        font-weight: 500;
        display: inline-block;
        line-height: 1em;
        padding-right: 15px;
    }

    .text-content h2 span:nth-child(2) {
        font-size: min(4vw, 1.4rem);
        font-weight: 500;
        line-height: 1.6em;
        padding: 5px 15px;
        background: #FFF;
        display: inline-block;
    }

    .back-button {
        width: 50%;
        margin: 40px auto 0;
        max-width: 300px;
        background: #000;
        position: relative;
        transition: all .5s;
    }

    .back-button p {
        color: #FFF;
        text-align: center;
        font-size: min(4vw, 1rem);
        padding: 10px 0;
    }
}