  @charset "utf-8";

@media screen and (min-width: 801px) {
    .epd-tab {
        display: none;
    }
}

/* ===============================================
# キービジュアル
=============================================== */
.keyvisual {
    position: relative;
    width: 100%;
    height: 520rem;
    background: url(/treecycle/value/oneclicklca/epd/img/kv.jpg) no-repeat center / cover;
}
@media screen and (max-width: 768px) {
    .keyvisual {
        height: calc(532rem * var(--sp-root));
        background: url(/treecycle/value/oneclicklca/sp/epd/img/kv.jpg) no-repeat center / cover;
    }
}
.keyvisual__contents {
    position: absolute;
    top: 84rem;
    left: 120rem;
    color: var(--wh);
}
@media screen and (max-width: 768px) {
    .keyvisual__contents {
        width: calc(100% - 40rem * var(--sp-root));
        top: calc(30rem * var(--sp-root));
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }
}
.keyvisual__name {
    font-size: max(12px, 24rem);
    font-weight: 900;
    line-height: calc(30/24);
    margin-bottom: 11rem;
    text-shadow: 0 0 14px rgba(9,123,99,0.7);
}
@media screen and (max-width: 768px) {
    .keyvisual__name {
        font-size: max(12px, calc(15rem * var(--sp-root)));
        line-height: calc(30/15);
        margin-bottom: calc(4rem * var(--sp-root));
    }
}
.keyvisual__copy {
    font-size: max(12px, 44rem);
    font-weight: 900;
    line-height: calc(56/44);
    margin-bottom: 16rem;
    text-shadow: 0 0 24px rgba(9,123,99,0.7);
}
@media screen and (max-width: 768px) {
    .keyvisual__copy {
        font-size: max(12px, calc(22rem * var(--sp-root)));
        line-height: calc(36/26);
        margin-bottom: calc(12rem * var(--sp-root));
    }
}
.keyvisual__subCopy {
    font-size: max(10px, 18rem);
    font-weight: 500;
    line-height: calc(30/18);
    margin-bottom: 24rem;
    text-shadow: 0 0 14px rgba(9,123,99,0.7);
}
@media screen and (max-width: 768px) {
    .keyvisual__subCopy {
        font-size: max(10px,calc(13rem * var(--sp-root)));
        line-height: calc(22/13);
        margin-bottom: calc(12rem * var(--sp-root));
    }
}
.keyvisual__buttonWrap {
    display: flex;
    align-items: center;
    gap: 24rem;
}
@media screen and (max-width: 768px) {
    .keyvisual__buttonWrap {
        gap: calc(15rem * var(--sp-root));
    }
}
.keyvisual__button {
    max-width: 259rem;
    min-height: auto;
    background: rgba(9,123,99,0.43);
}
.keyvisual__button:hover {
    color: var(--wh);
}
@media screen and (max-width: 768px) {
    .keyvisual__button {
        max-width: calc(160rem * var(--sp-root));
        margin-inline: auto;
    }
}


/* ===============================================
# リンクボタン
=============================================== */
@media screen and (max-width: 768px) {
    .link__sp {
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }
}
.link__spButton {
    display: none;
}
@media screen and (max-width: 768px) {
    .link__spButton {
        position: relative;
        display: block;
        padding: calc(14rem * var(--sp-root)) calc(20rem * var(--sp-root));
        font-size: max(12px, calc(14rem * var(--sp-root)));
        font-weight: 700;
        line-height: calc(20/14);
    }
    .link__spButton:hover {
        color: initial;
    }
    .link__spButton.active {
        color: var(--main);
    }
    .link__spButton::before,
    .link__spButton::after {
        content: "";
        position: absolute;
        width: calc(20rem * var(--sp-root));
        height: calc(2rem * var(--sp-root));
        background: var(--main);
        transition: 0.2s;
    }
    .link__spButton::before {
        top: 50%;
        right: calc(20rem * var(--sp-root));
        transform: translateY(-50%);
    }
    .link__spButton::after {
        top: 50%;
        right: calc(20rem * var(--sp-root));
        transform: translateY(-50%) rotate(90deg);
    }
    .link__spButton.active::after {
        transform: translateY(-50%) rotate(0);
    }
}
.link {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
@media screen and (max-width: 768px) {
    .link {
        display: none;
        flex-direction: column;
        border-top: none;
        border-bottom: none;
    }
}
.link__item {
    position: relative;
    width: 240rem;
    min-width: 150px;
    height: 64rem;
}
@media screen and (max-width: 768px) {
    .link__item {
        width: calc(335rem * var(--sp-root));
        min-width: auto;
        height: auto;
        padding: calc(14rem * var(--sp-root)) 0;
    }
    .link__item:last-of-type {
        margin-bottom: calc(21rem * var(--sp-root));
    }
}
.link__item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 28rem;
    background: var(--border);
}
@media screen and (max-width: 768px) {
    .link__item::before {
        top: auto;
        bottom: 0;
        transform: translateY(0);
        width: 100%;
        height: 1px;
    }
    .link__item:first-of-type:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: var(--border);
    }
}
.link__item:last-child:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 28rem;
    background: var(--border);
}
.link__button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: max(12px, 14rem);
    font-weight: 700;
    line-height: calc(20/14);
}
@media screen and (max-width: 768px) {
    .link__button {
        justify-content: flex-start;
        font-size: max(12px, calc(14rem * var(--sp-root)));
    }
}
.link__button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20rem;
    transform: translateY(-50%) rotate(90deg);
    width: 15rem;
    height: 14rem;
    background: url(/treecycle/value/oneclicklca/common/img/icn_arrow_gr.png) no-repeat center / contain;
}
@media screen and (max-width: 768px) {
    .link__button::after {
        right: 0;
        width: calc(17rem * var(--sp-root));
        height: calc(16rem * var(--sp-root));
    }
}


/* ===============================================
# 環境製品宣言ラベル?EPD?とは
=============================================== */
.about__inner {
    width: 100%;
    max-width: 1024rem;
    min-width: 700px;
    margin-inline: auto;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .about__inner {
        min-width: auto;
        padding-inline: calc(30rem * var(--sp-root));
    }
}
.about__text {
    margin-top: 48rem;
}
@media screen and (max-width: 768px) {
    .about__text {
        margin-top: calc(24rem * var(--sp-root));
    }
}
.about .related {
    justify-content: center;
    margin-top: 32rem;
    margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
    .about .related {
        justify-content: flex-start;
        margin-top: calc(20rem * var(--sp-root));
        margin-bottom: calc(11rem * var(--sp-root));
    }
}
.about .related__word {
    display: inline-block;
}
@media screen and (max-width: 768px) {
    .about .related__word {
        display: block;
        -moz-text-align-last: left;
             text-align-last: left;
    }
}
.about .related__word:not(:first-child) {
    margin-left: 24rem;
}
@media screen and (max-width: 768px) {
    .about .related__word:not(:first-child) {
        margin-left: 0;
    }
}
.about__image{
    width: 610rem;
}
@media screen and (max-width: 768px) {
    .about__image{
        width: calc(280rem * var(--sp-root));
    }
}

/* ===============================================
# 環境製品宣言ラベル?EPD?とは
=============================================== */
.reason {
    background: var(--blue-light2);
}
.reason__inner {
    width: 100%;
    max-width: 1024rem;
    min-width: 700px;
    margin-inline: auto;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .reason__inner {
        min-width: auto;
        padding-inline: calc(30rem * var(--sp-root));
    }
}
.reason__title::before {
    color: var(--copy-text3);
}
.reason__box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 64rem;
    padding: 29rem 56rem 0 88rem;
    background: var(--wh);
    border-radius: 18rem;
    -webkit-filter: drop-shadow(var(--shadow));
            filter: drop-shadow(var(--shadow));
}
@media screen and (max-width: 900px) {
    .reason__box {
        padding-top: 20px;
        padding-bottom: 10px;
    }
}
@media screen and (max-width: 768px) {
    .reason__box {
        flex-direction: column;
        margin-top: calc(32rem * var(--sp-root));
        padding: calc(24rem * var(--sp-root)) calc(20rem * var(--sp-root)) calc(30rem * var(--sp-root));
        border-radius: calc(18rem * var(--sp-root));
    }
}
.reason__box::before {
    content: "";
    position: absolute;
    bottom: -63rem;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -32rem;
    border: 32rem solid transparent;
    border-top-color: var(--wh);
}
@media screen and (max-width: 768px) {
    .reason__box::before {
        bottom: calc(-47rem * var(--sp-root));
        margin-left: calc(-24rem * var(--sp-root));
        border: calc(24rem * var(--sp-root)) solid transparent;
        border-top-color: var(--wh);
    }
}
.reason__icon {
    width: 145rem;
    margin-right: 50rem;
}
@media screen and (max-width: 900px) {
    .reason__icon {
        transform: translateY(10px);
    }
}
@media screen and (max-width: 768px) {
    .reason__icon {
        order: 2;
        width: calc(119rem * var(--sp-root));
        margin-right: 0;
        margin-top: calc(24rem * var(--sp-root));
        transform: translateY(0);
    }
}
.reason__item {
    padding: 14rem 24rem;
    color: var(--main);
    font-size: max(12px, 18rem);
    font-weight: 700;
    line-height: calc(20/14);
    border-radius: 99rem;
    border: 2px solid var(--main);
}
@media screen and (max-width: 768px) {
    .reason__item {
        padding: calc(14rem * var(--sp-root)) calc(20rem * var(--sp-root));
        font-size: max(12px, calc(14rem * var(--sp-root)));
    }
}
.reason__item:not(:first-child) {
    margin-top: 24rem;
}
@media screen and (max-width: 768px) {
    .reason__item:not(:first-child) {
        margin-top: calc(12rem * var(--sp-root));
    }
}
.reason__copy {
    color: var(--main);
    font-size: max(12px, 32rem);
    font-weight: 900;
    line-height: calc(48/32);
    margin-top: 72rem;
}
@media screen and (max-width: 768px) {
    .reason__copy {
        font-size: max(12px, calc(22rem * var(--sp-root)));
        line-height: calc(32/22);
    }
}


/* ===============================================
# EPDジェネレータ 導入のメリット
=============================================== */
.merit__inner {
    position: relative;
    width: 100%;
    max-width: 1200rem;
    min-width: 700px;
    margin-inline: auto;
}
@media screen and (max-width: 768px) {
    .merit__inner {
        min-width: auto;
        padding-inline: calc(30rem * var(--sp-root));
    }
}
.merit__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 72rem;
    margin-top: 64rem;
    counter-reset: number 0;
}
@media screen and (max-width: 768px) {
    .merit__list {
        grid-template-columns: repeat(1, 1fr);
        gap: calc(32rem * var(--sp-root));
        margin-top: calc(32rem * var(--sp-root));
    }
}
.merit__list .list__image {
    margin-bottom: 18rem;
}
@media screen and (max-width: 768px) {
    .merit__list .list__image {
        margin-bottom: calc(14rem * var(--sp-root));
    }
}
.merit__list .list__title {
    position: relative;
    font-size: max(12px, 18rem);
    font-weight: 700;
    line-height: calc(26/18);
    color: var(--green);
    margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
    .merit__list .list__title {
        font-size: max(12px, calc(16rem * var(--sp-root)));
        line-height: calc(26/16);
    }
}
.merit__list .list__title::before {
    counter-increment: number 1;
    content: counter(number,decimal-leading-zero);
    position: absolute;
    top: -25rem;
    right: 0;
    font-family: var(--mont);
    font-size: max(12px, 65rem);
    font-weight: 800;
    line-height: 1;
    color: var(--blue-light);
}
@media screen and (max-width: 768px) {
    .merit__list .list__title::before {
        top: calc(-20rem * var(--sp-root));
        font-size: max(12px, calc(56rem * var(--sp-root)));
    }
}
.merit__list .list__text {
    font-size: max(12px, 14rem);
    line-height: calc(24/14);
}
@media screen and (max-width: 768px) {
    .merit__list .list__text {
        font-size: max(12px, calc(13rem * var(--sp-root)));
        line-height: calc(20/13);
    }
}
.merit__list .list__note {
    font-size: max(10px, 12rem);
    line-height: calc(24/14);
    margin-top: 8rem;
}
@media screen and (max-width: 768px) {
    .merit__list .list__note {
        font-size: max(10px, calc(11rem * var(--sp-root)));
        line-height: calc(20/11);
        margin-top: calc(8rem * var(--sp-root));
    }
}


/* ===============================================
# EPD取得までの流れ
=============================================== */
.flow {
    background: var(--blue-light2);
}
.flow__inner {
    position: relative;
    width: 100%;
    max-width: 1024rem;
    min-width: 700px;
    margin-inline: auto;
}
@media screen and (max-width: 768px) {
    .flow__inner {
        min-width: auto;
        padding-inline: calc(30rem * var(--sp-root));
    }
}
.flow__title::before {
    color: var(--copy-text3);
}
.flow__wrap {
    display: flex;
    margin-top: 64rem;
    margin-bottom: 56rem;
}
@media screen and (max-width: 768px) {
    .flow__wrap {
        margin-top: calc(32rem * var(--sp-root));
        margin-bottom: calc(24rem * var(--sp-root));
    }
}
.flow__line {
    position: relative;
    width: calc(100% - 902rem);
}
@media screen and (max-width: 768px) {
    .flow__line {
        width: calc(100% - 66.66vw);
    }
}
.flow__line::before {
    content: "";
    position: absolute;
    top: 51%;
    right: 33rem;
    transform: translateY(-50%);
    width: 6rem;
    height: 96.58%;
    background: var(--main);
    border-radius: 99rem;
}
@media screen and (max-width: 768px) {
    .flow__line::before {
        top: 50.5%;
        right: calc(20rem * var(--sp-root));
        width: calc(4rem * var(--sp-root));
        height: 99%;
    }
}
.flow__num {
    position: absolute;
    top: 25rem;
    left: -112rem;
    display: block;
    font-family: var(--mont);
    font-size: max(12px, 40rem);
    font-weight: 800;
    line-height: 1;
    color: var(--main);
}
@media screen and (max-width: 768px) {
    .flow__num {
        top: calc(13rem * var(--sp-root));
        left: calc(-65rem * var(--sp-root));
        font-size: max(12px, calc(22rem * var(--sp-root)));
    }
}
.flow__num::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 60rem;
    transform: translateY(-50%);
    width: 32rem;
    height: 32rem;
    border: 6rem solid var(--main);
    background: var(--wh);
    border-radius: 50%;
}
@media screen and (max-width: 768px) {
    .flow__num::before {
        left: calc(33rem * var(--sp-root));
        width: calc(20rem * var(--sp-root));
        height: calc(20rem * var(--sp-root));
        border: calc(4rem * var(--sp-root)) solid var(--main);
    }
}
.flow__boxs {
    width: 902rem;
    min-width: 630px;
}
@media screen and (max-width: 768px) {
    .flow__boxs {
        width: calc(250rem * var(--sp-root));
        min-width: auto;
    }
}
.flow__box {
    position: relative;
    width: 100%;
    padding-top: 20rem;
    padding-bottom: 32rem;
    background: var(--wh);
    box-shadow: var(--shadow);
    border-radius: 18rem;
}
@media screen and (max-width: 768px) {
    .flow__box {
        padding-top: calc(14rem * var(--sp-root));
        padding-bottom: calc(24rem * var(--sp-root));
    }
}
.flow__box:not(:first-child) {
    margin-top: 56rem;
}
@media screen and (max-width: 768px) {
    .flow__box:not(:first-child) {
        margin-top: calc(24rem * var(--sp-root));
    }
}
.flow__box .box__title {
    padding-inline: 32rem;
    padding-bottom: 20rem;
    margin-bottom: 32rem;
    font-size: max(12px, 20rem);
    font-weight: 700;
    line-height: calc(48/20);
    border-bottom: 1px solid var(--green-light);
}
@media screen and (max-width: 768px) {
    .flow__box .box__title {
        padding-inline: calc(16rem * var(--sp-root));
        padding-bottom: calc(14rem * var(--sp-root));
        margin-bottom: calc(16rem * var(--sp-root));
        font-size: max(12px, calc(14rem * var(--sp-root)));
        line-height: calc(18/14);
    }
}
.flow__box .box__main {
    display: flex;
    align-items: center;
    margin-inline: 32rem;
}
@media screen and (max-width: 768px) {
    .flow__box .box__main {
        flex-direction: column;
        margin-inline: calc(16rem * var(--sp-root));
    }
}
.flow__box .box__left {
    flex-shrink: 0;
    margin-right: 24rem;
}
@media screen and (max-width: 768px) {
    .flow__box .box__left {
        margin-right: 0;
    }
}
.flow__box .box__image {
    width: 120rem;
}
@media screen and (max-width: 768px) {
    .flow__box .box__image {
        width: calc(72rem * var(--sp-root));
        margin-bottom: calc(16rem * var(--sp-root));
    }
}
.flow__box .box__text {
    font-size: max(12px, 14rem);
    line-height: calc(28/14);
}
@media screen and (max-width: 768px) {
    .flow__box .box__text {
        font-size: max(12px, calc(13rem * var(--sp-root)));
        line-height: calc(22/13);
    }
}
.flow__box .box__subTitle {
    font-size: max(12px, 13rem);
    font-weight: 700;
    line-height: calc(22/13);
    margin-top: 16rem;
    margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
    .flow__box .box__subTitle {
        font-size: max(12px, calc(13rem * var(--sp-root)));
        margin-top: calc(16rem * var(--sp-root));
        margin-bottom: calc(8rem * var(--sp-root));
    }
}
.flow__box .box__subText {
    font-size: max(12px, 13rem);
    line-height: calc(22/13);
}
@media screen and (max-width: 768px) {
    .flow__box .box__subText {
        font-size: max(10px, calc(12rem * var(--sp-root)));
        line-height: calc(18/12);
    }
}
.flow__example {
    padding: 32rem 32rem 28rem;
    background: var(--wh);
    box-shadow: var(--shadow);
    border-radius: 18rem;
}
@media screen and (max-width: 768px) {
    .flow__example {
        padding: calc(20rem * var(--sp-root)) calc(16rem * var(--sp-root)) calc(40rem * var(--sp-root));
        border-radius: calc(18rem * var(--sp-root));
    }
}
.flow__example .example__title {
    font-size: max(12px, 20rem);
    font-weight: 700;
    line-height: calc(48/20);
    text-align: center;
    margin-bottom: 24rem;
}
@media screen and (max-width: 768px) {
    .flow__example .example__title {
        font-size: max(12px, calc(14rem * var(--sp-root)));
        line-height: calc(18/14);
        margin-bottom: calc(24rem * var(--sp-root));
    }
}
.flow__example .example__list {
    display: flex;
    justify-content: space-between;
    gap: 20rem;
}
@media screen and (max-width: 768px) {
    .flow__example .example__list {
        flex-direction: column;
        gap: calc(16rem * var(--sp-root));
    }
}
.flow__example .example__item {
    position: relative;
    width: 175rem;
    min-width: 115px;
    height: 125rem;
    min-height: 82px;
}
@media screen and (max-width: 768px) {
    .flow__example .example__item {
        width: 100%;
        min-width: auto;
        height: calc(167rem * var(--sp-root));
        min-height: auto;
    }
}
.flow__example .example__item::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 26rem;
    height: 26rem;
    min-width: 20px;
    min-height: 20px;
    background: url(/treecycle/value/oneclicklca/common/img/icn_arrow_bg_gr.png) no-repeat center / contain;
    z-index: 2;
    pointer-events: none;
}
@media screen and (max-width: 768px) {
    .flow__example .example__item::before {
        width: calc(34rem * var(--sp-root));
        height: calc(34rem * var(--sp-root));
    }
}
.flow__example .example__link {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.flow__example .example__link::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.15);
    opacity: 0;
    z-index: 2;
    transition: 0.3s;
}
.flow__example .example__link:hover::before {
    opacity: 1;
}
.example__link .example__image {
    transition: 0.3s;
}
.example__link:hover .example__image {
    transform: scale(1.1);
}



/* ===============================================
# 取得できる環境認証ラベル
=============================================== */
.certification__inner {
    position: relative;
    width: 100%;
    max-width: 1024rem;
    min-width: 700px;
    margin-inline: auto;
}
@media screen and (max-width: 768px) {
    .certification__inner {
        min-width: auto;
        padding-inline: calc(30rem * var(--sp-root));
    }
}
.certification__text {
    margin-top: 48rem;
    margin-bottom: 32rem;
    text-align: center;   
}
@media screen and (max-width: 768px) {
    .certification__text {
        margin-top: calc(24rem * var(--sp-root));
        margin-bottom: calc(32rem * var(--sp-root));
        text-align: left;
    }
}
.certification__wrap {
    max-width: 480px;
    margin-top: 64rem;
    margin-inline: auto;
}
@media screen and (max-width: 768px) {
    .certification__wrap {
        max-width: 100%;
        margin-top: calc(32rem * var(--sp-root));
    }
}
.certification__box {
    padding: 24rem;
    background: var(--wh);
    box-shadow: var(--shadow);
    border-radius: 18rem;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .certification__box {
        padding: calc(16rem * var(--sp-root));
        border-radius: calc(18rem * var(--sp-root));
    }
}
.certification__image {
    width: 244rem;
}
@media screen and (max-width: 768px) {
    .certification__image {
        width: calc(160rem * var(--sp-root));
    }
}
.certification__head {
    margin-top: 24rem;
    font-size: max(12px, 15rem);
    font-weight: 700;
    line-height: calc(20/15);
}
@media screen and (max-width: 768px) {
    .certification__head {
        margin-top: calc(24rem * var(--sp-root));
        font-size: max(12px, calc(13rem * var(--sp-root)));
        line-height: calc(20/13);
    }
}
.certification__list {
    margin-top: 8rem;
}
@media screen and (max-width: 768px) {
    .certification__list {
        margin-top: calc(8rem * var(--sp-root));
    }
}
.certification__item {
    position: relative;
    padding-left: 16rem;
    font-size: max(12px, 15rem);
    line-height: calc(28/15);
}
@media screen and (max-width: 768px) {
    .certification__item {
        padding-left: calc(13rem * var(--sp-root));
        font-size: max(12px, calc(13rem * var(--sp-root)));
        line-height: calc(20/13);
    }
}
.certification__item::before {
    content: "?";
    position: absolute;
    top: 0;
    left: 0;
}
.certification__buttonWrap {
    margin-top: 32rem;
}
@media screen and (max-width: 768px) {
    .certification__buttonWrap {
        margin-top: calc(24rem * var(--sp-root));
    }
}
.certification__button {
    max-width: 497rem;
    margin-inline: auto;
}
@media screen and (max-width: 768px) {
    .certification__button {
        max-width: 100%;
        height: calc(56rem * var(--sp-root));
    }
}


/* ===============================================
# ユーザーサポート
=============================================== */
.support {
    background: var(--blue-light2);
}
.support__inner {
    position: relative;
    width: 100%;
    max-width: 1200rem;
    min-width: 700px;
    margin-inline: auto;
}
@media screen and (max-width: 768px) {
    .support__inner {
        min-width: auto;
        padding-inline: calc(30rem * var(--sp-root));
    }
}
.support__title::before {
    color: var(--copy-text3);
}
.support__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 72rem;
    margin-top: 64rem;
    counter-reset: number 0;
}
@media screen and (max-width: 768px) {
    .support__list {
        grid-template-columns: repeat(1, 1fr);
        gap: calc(32rem * var(--sp-root));
        margin-top: calc(32rem * var(--sp-root));
    }
}
.support__list .list__image {
    margin-bottom: 18rem;
}
@media screen and (max-width: 768px) {
    .support__list .list__image {
        margin-bottom: calc(14rem * var(--sp-root));
    }
}
.support__list .list__title {
    position: relative;
    font-size: max(12px, 18rem);
    font-weight: 700;
    line-height: calc(26/18);
    color: var(--green);
    margin-bottom: 8rem;
    z-index: 0;
}
@media screen and (max-width: 768px) {
    .support__list .list__title {
        font-size: max(12px, calc(16rem * var(--sp-root)));
        line-height: calc(26/16);
    }
}
.support__list .list__title::before {
    counter-increment: number 1;
    content: counter(number,decimal-leading-zero);
    position: absolute;
    top: -25rem;
    right: 0;
    font-family: var(--mont);
    font-size: max(12px, 65rem);
    font-weight: 800;
    line-height: 1;
    color: var(--copy-text3);
    z-index: -1;
}
@media screen and (max-width: 768px) {
    .support__list .list__title::before {
        top: calc(-20rem * var(--sp-root));
        font-size: max(12px, calc(56rem * var(--sp-root)));
    }
}
.support__list .list__text {
    margin-bottom: 18rem;
    font-size: max(12px, 14rem);
    line-height: calc(24/14);
}
@media screen and (max-width: 768px) {
    .support__list .list__text {
        font-size: max(12px, calc(13rem * var(--sp-root)));
        line-height: calc(20/13);
        margin-bottom: calc(14rem * var(--sp-root));
    }
}


/* ===============================================
# EPD取得を支援する研修メニュー
=============================================== */
.menu__inner {
    position: relative;
    width: 100%;
    max-width: 1200rem;
    margin-inline: auto;
}
@media screen and (max-width: 768px) {
    .menu__inner {
        padding-inline: calc(30rem * var(--sp-root));
    }
}
.menu__text {
    margin-top: 48rem;
    margin-bottom: 64rem;
    text-align: center;   
}
@media screen and (max-width: 768px) {
    .menu__text {
        margin-top: calc(24rem * var(--sp-root));
        margin-bottom: calc(32rem * var(--sp-root));
        text-align: left;
    }
}
.menu__title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: max(12px, 22rem);
    font-weight: 900;
    line-height: calc(48/22);
}
@media screen and (max-width: 768px) {
    .menu__title {
        font-size: max(12px, calc(16rem * var(--sp-root)));
        line-height: calc(48/16);
    }
}
.menu__title::before,
.menu__title::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: var(--main);
}
.menu__title::before {
  margin-right: 25rem;
}
@media screen and (max-width: 768px) {
    .menu__title::before {
        margin-right: calc(16rem * var(--sp-root));
    }
}
.menu__title::after {
  margin-left: 25rem;
}
@media screen and (max-width: 768px) {
    .menu__title::after {
        margin-left: calc(16rem * var(--sp-root));
      }
}
.menu__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48rem;
    margin-top: 32rem;
}
@media screen and (max-width: 768px) {
    .menu__list {
        grid-template-columns: repeat(1, 1fr);
        gap: calc(24rem * var(--sp-root));
        margin-top: calc(24rem * var(--sp-root));
    }
}
.menu__list .list__image {
    margin-bottom: 12rem;
}
@media screen and (max-width: 768px) {
    .menu__list .list__image {
        margin-bottom: calc(12rem * var(--sp-root));
    }
}
.menu__list .list__chap {
    color: var(--green);
    font-family: var(--mont);
    font-size: max(12px, 13rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
    .menu__list .list__chap {
        font-size: max(12px, calc(13rem * var(--sp-root)));
    }
}
.menu__list .list__title {
    font-size: max(12px, 16rem);
    font-weight: 700;
    line-height: calc(20/16);
    margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
    .menu__list .list__title {
        font-size: max(12px, calc(16rem * var(--sp-root)));
        line-height: calc(26/16);
        margin-bottom: calc(8rem * var(--sp-root));
    }
}
.menu__list .list__text {
    font-size: max(12px, 14rem);
    line-height: calc(24/14);
}
@media screen and (max-width: 768px) {
    .menu__list .list__text {
        font-size: max(12px, calc(13rem * var(--sp-root)));
        line-height: calc(20/13);
    }
}


/* ===============================================
# EPDジェネレータなら様々な建築製品の事前認証に対応
=============================================== */
.templates {
    background: var(--blue-light2);
}
.templates__inner {
    position: relative;
    width: 100%;
    max-width: 1024rem;
    min-width: 700px;
    margin-inline: auto;
}
@media screen and (max-width: 768px) {
    .templates__inner {
        min-width: auto;
        padding-inline: calc(30rem * var(--sp-root));
    }
}
.templates__title::before {
    color: var(--copy-text3);
}
.templates__text {
    margin-top: 48rem;
    margin-bottom: 64rem;
    text-align: center;   
}
@media screen and (max-width: 768px) {
    .templates__text {
        margin-top: calc(24rem * var(--sp-root));
        margin-bottom: calc(32rem * var(--sp-root));
        text-align: left;
    }
}
.templates__box {
    padding: 32rem;
    background: var(--wh);
    box-shadow: var(--shadow);
    border-radius: 18rem;
}
@media screen and (max-width: 768px) {
    .templates__box {
        padding: calc(24rem * var(--sp-root)) calc(24rem * var(--sp-root)) calc(30rem * var(--sp-root));
        border-radius: calc(18rem * var(--sp-root));
    }
}
.templates__box .box__title {
    font-size: max(12px, 17rem);
    font-weight: 700;
    line-height: calc(48/17);
    text-align: center;
}
@media screen and (max-width: 768px) {
    .templates__box .box__title {
        font-size: max(12px, calc(13rem * var(--sp-root)));
        line-height: calc(18/13);
    }
}
.templates__box .box__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24rem;
    margin-top: 32rem;
}
@media screen and (max-width: 768px) {
    .templates__box .box__list {
        grid-template-columns: repeat(2, 1fr);
        gap: calc(16rem * var(--sp-root)) calc(15rem * var(--sp-root));
        margin-top: calc(16rem * var(--sp-root));
    }
}
.templates__box .box__item {
    display: flex;
    flex-direction: column;
}
.templates__box .box__image {
    width: 120rem;
    margin-inline: auto;
    margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
    .templates__box .box__image {
        width: calc(87rem * var(--sp-root));
        margin-bottom: calc(7rem * var(--sp-root));
    }
}
.templates__box .box__subTitle {
    min-height: 38px;
    font-size: max(12px, 14rem);
    font-weight: 700;
    line-height: calc(18/14);
    text-align: center;
    margin-bottom: 6rem;
}
@media screen and (min-width: 1440px) {
    .templates__box .box__subTitle {
        min-height: 38rem;
    }
}
@media screen (min-width: 769px) and (max-width: 1099px) {
    .templates__box .box__item:nth-last-of-type(-n+5) .box__subTitle {
        min-height: 47px;
    }
}
@media screen and (max-width: 768px) {
    .templates__box .box__subTitle {
        min-height: auto;
        font-size: max(10px, calc(12rem * var(--sp-root)));
        line-height: calc(16/12);
        margin-bottom: calc(8rem * var(--sp-root));
    }
    .templates__box .box__item:nth-child(3) .box__subTitle,
    .templates__box .box__item:nth-child(7) .box__subTitle {
        height: calc(32rem * var(--sp-root));
    }
    .templates__box .box__item:nth-child(5) .box__subTitle {
        height: calc(48rem * var(--sp-root));
    }
    /* .templates__box .box__item:nth-child(6) .box__subTitle {
        width: 105%;
        transform: translateX(-2.5%);
    } */
}
.templates__box .box__text {
    font-size: max(10px, 13rem);
    line-height: calc(18/13);
}
@media screen and (max-width: 768px) {
    .templates__box .box__text {
        font-size: max(10px, calc(11rem * var(--sp-root)));
        line-height: calc(14/11);
    }
}
.templates__note {
    margin-top: 16rem;
    font-size: max(12px, 13rem);
    line-height: calc(22/13);
}
@media screen and (max-width: 768px) {
    .templates__note {
        margin-top: calc(16rem * var(--sp-root));
        font-size: max(10px, calc(11rem * var(--sp-root)));
        line-height: calc(18/11);
    }
}

/* ===============================================
# 導入までの流れ
=============================================== */
.flow02__inner {
    position: relative;
    width: 100%;
    max-width: 1024rem;
    min-width: 700px;
    margin-inline: auto;
}
@media screen and (max-width: 768px) {
    .flow02__inner {
        min-width: auto;
        padding-inline: calc(30rem * var(--sp-root));
    }
}
.flow02__box {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 64rem;
    padding: 32rem 56rem;
    box-shadow: var(--shadow);
    border-radius: 18rem;
}
@media screen and (max-width: 768px) {
    .flow02__box {
        flex-direction: column;
        margin-top: calc(32rem * var(--sp-root));
        padding: calc(20rem * var(--sp-root));
        border-radius: calc(18rem * var(--sp-root));
    }
}
.flow02__item {
    position: relative;
    width: 25%;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .flow02__item {
        width: 100%;
        text-align: center;
    }
    .flow02__item:not(:first-child) {
        margin-top: calc(40rem * var(--sp-root));
    }
}
.flow02__item:not(:first-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -10rem;
    transform: translateY(-50%);
    width: 24rem;
    height: 20rem;
    background: url(/treecycle/value/oneclicklca/common/img/icn_arrow_gr_triangle.png) no-repeat center / contain;
}
@media screen and (max-width: 768px) {
    .flow02__item:not(:first-child)::after {
        top: calc(-30rem * var(--sp-root));
        left: 50%;
        transform: translate(-50%,0) rotate(90deg);
        width: calc(20rem * var(--sp-root));
        height: calc(16rem * var(--sp-root));
    }
}
.flow02__image {
    width: 93rem;
    margin-bottom: 12rem;
}
@media screen and (max-width: 768px) {
    .flow02__image {
        width: calc(93rem * var(--sp-root));
        margin-bottom: calc(12rem * var(--sp-root));
    }
}
.flow02__title {
    font-size: max(12px, 16rem);
    font-weight: 700;
    line-height: calc(20/16);
}
@media screen and (max-width: 768px) {
    .flow02__title {
        font-size: max(12px, calc(16rem * var(--sp-root)));
    }
}