  @charset "utf-8";

/* ===============================================
# キービジュアル
=============================================== */
.keyvisual {
    position: relative;
    width: 100%;
    height: 520rem;
    background: url(/treecycle/value/oneclicklca/feature/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/feature/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(34,139,11,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(34,139,11,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(34,139,11,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__button {
    max-width: 340rem;
    min-width: 250px;
    background: rgba(25,90,11,0.43);
}
.keyvisual__button:hover {
    color: var(--wh);
}
@media screen and (max-width: 768px) {
    .keyvisual__button {
        max-width: calc(230rem * var(--sp-root));
        margin-inline: auto;
    }
}
.keyvisual__buttonText {
    max-width: 340rem;
    min-width: 250px;
    margin-top: 5rem;
    font-size: max(10px, 14rem);
    font-weight: 700;
    line-height: 2;
    text-align: center;
    text-shadow: 0 0 14px rgba(34,139,11,0.7);
}
@media screen and (max-width: 768px) {
    .keyvisual__buttonText {
        max-width: 100%;
        margin-top: calc(5rem * var(--sp-root));
        font-size: max(10px, calc(11rem * var(--sp-root)));
    }
}


/* ===============================================
# リンクボタン
=============================================== */
@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));
    }
}


/* ===============================================
# プロジェクトのフェーズごとに適したLCA算定機能をご用意
=============================================== */
.functions__inner {
    width: 100%;
    max-width: 1024rem;
    min-width: 700px;
    margin-inline: auto;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .functions__inner {
        min-width: auto;
        padding-inline: calc(30rem * var(--sp-root));
        text-align: left;
    }
}
.functions__text {
    margin-top: 48rem;
    margin-bottom: 32rem;
}
@media screen and (max-width: 768px) {
    .functions__text {
        margin-top: calc(24rem * var(--sp-root));
        margin-bottom: calc(20rem * var(--sp-root));
    }
}
.functions .related {
    justify-content: center;
}
@media screen and (max-width: 768px) {
    .functions .related {
        justify-content: flex-start;
    }
}
.functions__box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 64rem;
    padding: 32rem 0;
    box-shadow: var(--shadow);
    border-radius: 18rem;
}
@media screen and (max-width: 768px) {
    .functions__box {
        flex-direction: column;
        margin-top: calc(20rem * var(--sp-root));
        padding: calc(32rem * var(--sp-root)) calc(32rem * var(--sp-root)) calc(88rem * var(--sp-root));
        border-radius: calc(18rem * var(--sp-root));
    }
}
.functions__item {
    position: relative;
    width: 20%;
}
@media screen and (max-width: 768px) {
    .functions__item {
        width: 100%;
        text-align: center;
    }
    .functions__item:not(:first-child) {
        margin-top: calc(40rem * var(--sp-root));
    }
    .functions__item:nth-child(3) {
        margin-top: calc(100rem * var(--sp-root));
    }
}
.functions__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) {
    .functions__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));
    }
}
.functions__image {
    width: 93rem;
    margin-bottom: 12rem;
}
@media screen and (max-width: 768px) {
    .functions__image {
        width: calc(72rem * var(--sp-root));
        margin-bottom: calc(12rem * var(--sp-root));
    }
}
.functions__title {
    font-size: max(12px, 16rem);
    font-weight: 700;
}
@media screen and (max-width: 768px) {
    .functions__title {
        font-size: max(12px, calc(14rem * var(--sp-root)));
    }
}
.functions__button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10rem 24rem;
    background: var(--wh);
    border: 1px solid var(--main);
    box-shadow: var(--shadow);
    border-radius: 99rem;
}
@media screen and (max-width: 768px) {
    .functions__button {
        padding: calc(10rem * var(--sp-root)) calc(12rem * var(--sp-root)) calc(10rem * var(--sp-root)) calc(20rem * var(--sp-root));
    }
}
.functions__button:hover {
    color: var(--text);
}
.functions__button.carbon {
    min-width: 340rem;
    top: -48rem;
    left: 52rem;
}
@media screen and (max-width: 768px) {
    .functions__button.carbon {
        min-width: calc(280rem * var(--sp-root));
        top: calc(302rem * var(--sp-root));
        left: 50%;
        transform: translateX(-50%);
    }
}
.functions__button.functions {
    min-width: 414rem;
    bottom: -46rem;
    right: 98rem;
}
@media screen and (max-width: 768px) {
    .functions__button.functions {
        min-width: calc(280rem * var(--sp-root));
        bottom: calc(24rem * var(--sp-root));
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}
.functions__button .button__subCopy {
    color: var(--main);
    font-size: max(10px, 11rem);
    line-height: 1;
    text-align: left;
}
@media screen and (max-width: 768px) {
    .functions__button .button__subCopy {
        font-size: max(10px, calc(10rem * var(--sp-root)));
    }
}
.functions__button .button__copy {
    font-size: max(12px, 17rem);
    font-weight: 900;
    line-height: 1.5;
    text-align: left;
}
@media screen and (max-width: 768px) {
    .functions__button .button__copy {
        font-size: max(12px, calc(14rem * var(--sp-root)));
    }
}
.functions__button .button__link {
    position: relative;
    padding: 12rem 33rem 12rem 20rem;
    margin-left: 16rem;
    font-size: max(10px, 12rem);
    font-weight: 500;
    line-height: 1.5;
    color: var(--main);
    background: #EAF4EB;
    border-radius: 99rem;
    transition: 0.3s;
}
@media screen and (max-width: 768px) {
    .functions__button .button__link {
        padding: calc(8rem * var(--sp-root)) calc(24rem * var(--sp-root)) calc(8rem * var(--sp-root)) calc(12rem * var(--sp-root));
        margin-left: calc(13rem * var(--sp-root));
        font-size: max(10px, calc(10rem * var(--sp-root)));
    }
}
.functions__button:hover .button__link {
    color: var(--wh);
    background: var(--main);
}
.functions__button .button__link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 13rem;
    transform: translateY(-50%) rotate(90deg);
    width: 13rem;
    height: 12rem;
    background: url(/treecycle/value/oneclicklca/common/img/icn_arrow_gr.png) no-repeat center / contain;
    transition: 0.3s;
}
@media screen and (max-width: 768px) {
    .functions__button .button__link::after {
        right: calc(8rem * var(--sp-root));
        width: calc(12rem * var(--sp-root));
        height: calc(11rem * var(--sp-root));
    }
}
.functions__button:hover .button__link::after {
    top: 60%;
    background: url(/treecycle/value/oneclicklca/common/img/icn_arrow_wh.png) no-repeat center / contain;
}


/* ===============================================
# エンボディドカーボン算定の流れ
=============================================== */
.flow {
    padding-top: 172rem;
    background: var(--bg);
}
@media screen and (max-width: 768px) {
    .flow {
        padding-top: calc(117rem * var(--sp-root));
    }
}
.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__tag {
    position: absolute;
    top: -52rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    padding: 10rem 16rem;
    font-size: max(10px, 15rem);
    font-weight: 700;
    line-height: 1;
    color: var(--green);
    border: 1px solid var(--green);
    border-radius: 99rem;
    z-index: 2;
}
@media screen and (max-width: 768px) {
    .flow__tag {
        top: calc(-30rem * var(--sp-root));
        padding: calc(5rem * var(--sp-root)) calc(12rem * var(--sp-root));
        font-size: max(10px, calc(11rem * var(--sp-root)));
    }
}
.flow__title::before {
    top: -110rem;
}
@media screen and (max-width: 768px) {
    .flow__title::before {
        top: calc(-65rem * var(--sp-root));
    }
}
.flow__wrap {
    display: flex;
    margin-top: 64rem;
}
@media screen and (max-width: 768px) {
    .flow__wrap {
        margin-top: calc(32rem * 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.2%;
        right: calc(20rem * var(--sp-root));
        width: calc(4rem * var(--sp-root));
        height: 99.49%;
    }
}
.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;
    justify-content: space-between;
    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 {
    margin-right: 28rem;
}
@media screen and (max-width: 768px) {
    .flow__box .box__left {
        margin-right: 0;
    }
}
.flow__box .box__image {
    width: 310rem;
}
@media screen and (max-width: 768px) {
    .flow__box .box__image {
        width: 100%;
    }
}
.flow__box .box__imageText {
    font-size: max(10px, 13rem);
    line-height: calc(20/13);
}
@media screen and (max-width: 768px) {
    .flow__box .box__imageText {
        font-size: max(10px, calc(11rem * var(--sp-root)));
        line-height: calc(16/11);
        margin-bottom: calc(16rem * var(--sp-root));
    }
}
.flow__box .box__text {
    font-size: max(12px, 14rem);
    line-height: calc(28/14);
    margin-bottom: 25rem;
}
@media screen and (max-width: 768px) {
    .flow__box .box__text {
        font-size: max(12px, calc(13rem * var(--sp-root)));
        line-height: calc(22/13);
        margin-bottom: calc(16rem * var(--sp-root));
    }
}
.flow__box .box__example {
    padding: 6rem 8rem;
    color: var(--wh);
    background: var(--main);
    font-size: max(12px, 14rem);
    font-weight: 700;
    line-height: calc(28/14);
}
@media screen and (max-width: 768px) {
    .flow__box .box__example {
        padding: calc(6rem * var(--sp-root)) calc(8rem * var(--sp-root));
        font-size: max(10px, calc(12rem * var(--sp-root)));
    }
}
.flow__box .example__images {
    display: flex;
    justify-content: space-between;
    margin-top: 16rem;
}
@media screen and (max-width: 768px) {
    .flow__box .example__images {
        flex-direction: column;
        margin-top: calc(12rem * var(--sp-root));
    }
}
.flow__box .example__link {
    position: relative;
    width: calc((100% - 16rem * 2) /  3);
}
@media screen and (max-width: 768px) {
    .flow__box .example__link {
        width: 100%;
    }
    .flow__box .example__link:not(:last-of-type) {
        margin-bottom: calc(12rem * var(--sp-root));
    }
}
.example__link .example__imageWrap {
    position: relative;
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    height: 88rem;
    min-height: 80px;
    overflow: hidden;
}
@media screen and (max-width: 768px) {
    .example__link .example__imageWrap {
        height: calc(123rem * var(--sp-root));
        min-height: auto;
    }
}
.example__link .example__imageWrap::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;
}
.example__link:hover .example__imageWrap::before {
    opacity: 1;
}
.example__link .example__imageWrap::after {
    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_zoom.png) no-repeat center / contain;
    pointer-events: none;
    z-index: 10;
}
@media screen and (max-width: 768px) {
    .example__link .example__imageWrap::after {
        width: calc(26rem * var(--sp-root));
        height: calc(26rem * var(--sp-root));
    }
}
.example__link .example__image {
    transition: 0.3s;
}
.example__link:hover .example__image {
    transform: scale(1.1);
}
.flow__box .image__title {
    font-size: max(10px, 12rem);
    line-height: calc(16/12);
    text-align: center;
    margin-top: 4rem;
}
@media screen and (max-width: 768px) {
    .flow__box .image__title {
        font-size: max(10px, calc(12rem * var(--sp-root)));
        margin-top: calc(8rem * var(--sp-root));
    }
}
.flow__box .related {
    margin-top: 24rem;
}
@media screen and (max-width: 768px) {
    .flow__box .related {
        flex-direction: column;
        margin-top: calc(12rem * var(--sp-root));
    }
}


/* ===============================================
# One Click LCA 導入のメリット
=============================================== */
.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(--copy-text2);
}
@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 {
    margin-bottom: 18rem;
    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);
        margin-bottom: calc(14rem * var(--sp-root));
    }
}


/* ===============================================
# カーボンデザイナー3D
=============================================== */
.carbon3d {
    padding-top: 172rem;
    background: var(--bg);
}
@media screen and (max-width: 768px) {
    .carbon3d {
        padding-top: calc(117rem * var(--sp-root));
    }
}
.carbon3d__inner {
    position: relative;
    width: 100%;
    max-width: 1024rem;
    min-width: 700px;
    margin-inline: auto;
}
@media screen and (max-width: 768px) {
    .carbon3d__inner {
        min-width: auto;
        padding-inline: calc(30rem * var(--sp-root));
    }
}
.carbon3d__tag {
    position: absolute;
    top: -52rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    padding: 10rem 16rem;
    font-size: max(12px, 15rem);
    font-weight: 700;
    line-height: 1;
    color: var(--green);
    border: 1px solid var(--green);
    border-radius: 99rem;
    z-index: 2;
}
@media screen and (max-width: 768px) {
    .carbon3d__tag {
        top: calc(-30rem * var(--sp-root));
        padding: calc(5rem * var(--sp-root)) calc(12rem * var(--sp-root));
        font-size: max(10px, calc(11rem * var(--sp-root)));
    }
}
.carbon3d__title::before {
    top: -110rem;
}
@media screen and (max-width: 768px) {
    .carbon3d__title::before {
        top: calc(-65rem * var(--sp-root));
    }
}
.carbon3d__text {
    margin-top: 48rem;
    margin-bottom: 32rem;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .carbon3d__text {
        margin-top: calc(24rem * var(--sp-root));
        margin-bottom: calc(32rem * var(--sp-root));
        text-align: left;
    }
}
.carbon3d__box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56rem;
    background: var(--wh);
    box-shadow: var(--shadow);
    border-radius: 18rem;
}
@media screen and (max-width: 768px) {
    .carbon3d__box {
        flex-direction: column;
        padding: calc(24rem * var(--sp-root)) calc(16rem * var(--sp-root));
        border-radius: calc(18rem * var(--sp-root));
    }
}
.carbon3d__example {
    padding: 32rem;
    border: 1px solid #E0E0E0;
    border-radius: 8rem;
}
@media screen and (max-width: 768px) {
    .carbon3d__example {
        order: 2;
        padding: calc(20rem * var(--sp-root));
        border-radius: calc(8rem * var(--sp-root));
    }
}
.example__title {
    color: var(--main);
    font-size: max(12px, 18rem);
    font-weight: 700;
    line-height: calc(32/18);
    margin-bottom: 24rem;
}
@media screen and (max-width: 768px) {
    .example__title {
        font-size: max(12px, calc(15rem * var(--sp-root)));
    }
}
.carbon3d__example .example__dl {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.carbon3d__example .example__dt,
.carbon3d__example .example__dd {
    font-size: max(10px, 15rem);
    font-weight: 400;
    line-height: calc(32/15);
}
@media screen and (max-width: 768px) {
    .carbon3d__example .example__dt,
    .carbon3d__example .example__dd {
        font-size: max(10px, calc(13rem * var(--sp-root)));
    }
}
.carbon3d__example .example__dt {
    position: relative;
    width: 80rem;
    min-width: 80px;
    margin-right: 30rem;
}
@media screen and (max-width: 768px) {
    .carbon3d__example .example__dt {
        width: calc(80rem * var(--sp-root));
        min-width: auto;
        margin-right: calc(30rem * var(--sp-root));
    }
}
.carbon3d__example .example__dt::before {
    content: "：";
    position: absolute;
    top: 50%;
    right: -23rem;
    transform: translateY(-50%);
    color: #D0D0D0;
}
@media screen and (max-width: 768px) {
    .carbon3d__example .example__dt::before {
        right: calc(-23rem * var(--sp-root));
    }
}
.carbon3d__example .example__dd {
    min-width: calc(100% - 130px);
}
@media screen and (max-width: 768px) {
    .carbon3d__example .example__dd {
        width: calc(100% - 29.33vw);
    }
}
.carbon3d__image {
    width: 517rem;
    margin-left: 50rem;
}
@media screen and (max-width: 768px) {
    .carbon3d__image {
        width: 100%;
        margin-left: 0;
        margin-bottom: calc(12rem * var(--sp-root));
    }
}


/* ===============================================
# 国際規格?グリーンビルディング認証との連携
=============================================== */
.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__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64rem;
    margin-top: 64rem;
}
@media screen and (max-width: 768px) {
    .certification__list {
        align-items: flex-start;
        gap: calc(26rem * var(--sp-root));
        margin-top: calc(32rem * var(--sp-root));
    }
}
.certification__list .list__image {
    width: 280rem;
    padding: 32rem;
    box-shadow: var(--shadow);
    border-radius: 18rem;
}
@media screen and (max-width: 768px) {
    .certification__list .list__image {
        width: calc(109rem * var(--sp-root));
        padding: calc(12rem * var(--sp-root));
        border-radius: calc(18rem * var(--sp-root));
    }
}
.certification__list .list__image.etc {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120rem;
    height: 120rem;
    padding: 0;
    border-radius: 50%;
}
@media screen and (max-width: 768px) {
    .certification__list .list__image.etc {
        width: calc(47rem * var(--sp-root));
        height: calc(47rem * var(--sp-root));
        transform: translateY(8vw);
    }
}
.certification__list .list__image.etc img {
    width: 68.5rem;
}
@media screen and (max-width: 768px) {
    .certification__list .list__image.etc img {
        width: calc(27rem * var(--sp-root));
    }
}
.certification__list .list__title {
    margin-top: 24rem;
    font-size: max(10px, 15rem);
    font-weight: 700;
    line-height: calc(20/15);
    text-align: center;
}
@media screen and (max-width: 768px) {
    .certification__list .list__title {
        margin-top: calc(10rem * var(--sp-root));
        font-size: max(10px, calc(10rem * var(--sp-root)));
        line-height: calc(14/10);
    }
}


/* ===============================================
# ユーザーサポート
=============================================== */
.support {
    background: var(--bg);
}
.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__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-text);
    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));
    }
}


/* ===============================================
# 料金プラン
=============================================== */
.plan__inner {
    position: relative;
    width: 100%;
    max-width: 1024rem;
    min-width: 700px;
    margin-inline: auto;
}
@media screen and (max-width: 768px) {
    .plan__inner {
        min-width: auto;
        padding-inline: calc(30rem * var(--sp-root));
    }
}
.plan__table {
    width: 100%;
    margin-top: 64rem;
    box-shadow: var(--shadow);
    border-radius: 18rem;
}
@media screen and (max-width: 768px) {
    .plan__table {
        margin-top: calc(32rem * var(--sp-root));
        border-radius: calc(18rem * var(--sp-root));
    }
    .plan__table .table__row {
        padding-block: calc(16rem * var(--sp-root));
        margin-inline: calc(16rem * var(--sp-root));
    }
    .plan__table .table__row.price {
        margin-inline: 0;
        padding: calc(16rem * var(--sp-root));
    }
    .plan__table .table__title {
        margin-inline: 0;
        padding: calc(16rem * var(--sp-root));
        color: var(--wh);
        border-radius: calc(18rem * var(--sp-root)) calc(18rem * var(--sp-root)) 0 0;
    }
    .plan__table.start .table__title {
        background: #77C17A;
    }
    .plan__table.team .table__title {
        background: var(--main);
    }
    .plan__table .table__row {
        border-bottom: 1px solid var(--green-light);
    }
    .plan__table .table__price {
        font-size: max(12px, calc(18rem * var(--sp-root)));
        font-weight: 700;
        line-height: calc(24/18);
        text-align: center;
    }
    .plan__table > div:last-child {
        border-bottom: none;
        padding-bottom: calc(24rem * var(--sp-root)) !important;
    }
}
.plan__table th,
.plan__table td {
    vertical-align: middle;
    text-align: center;
}
.plan__table th {
    height: 82rem;
    padding: 16rem;
    color: var(--wh);
    border: 1px solid #E5EFE5;
    border-right: none;
    border-top: none;
}
.plan__table th:first-child {
    background: #CFE8D0;
    border-left: none;
}
.plan__table th:nth-child(2) {
    background: #77C17A;
}
.plan__table th:last-child {
    background: var(--main);
}
.plan__table td {
    padding: 32rem;
    font-size: max(12px, 18rem);
    font-weight: 700;
    line-height: calc(24/18);
    border-left: 1px solid #E5EFE5;
    border-bottom: 1px solid #E5EFE5;;
}
.plan__table td:first-child {
    border-left: none;
}
.plan__table tr:last-child td {
    border-bottom: none;
}
.plan__table .plan__title {
    display: block;
    font-size: max(12px, 18rem);
    font-weight: 700;
    line-height: calc(26/18);
}
@media screen and (max-width: 768px) {
    .plan__table .plan__title {
        font-size: max(12px, calc(14rem * var(--sp-root)));
        text-align: center;
    }
}
.plan__table .plan__subTitle {
    display: block;
    font-size: max(12px, 14rem);
    line-height: calc(26/14);
}
@media screen and (max-width: 768px) {
    .plan__table .plan__subTitle {
        font-size: max(10px, calc(12rem * var(--sp-root)));
        line-height: calc(16/12);
        text-align: center;
    }
}
.plan__table .plan__detail {
    text-align: left;
}
.plan__copy {
    color: var(--main);
    font-size: max(12px, 18rem);
    font-weight: 700;
    line-height: calc(26/18);
    margin-bottom: 12rem;
}
@media screen and (max-width: 768px) {
    .plan__copy {
        font-size: max(12px, calc(14rem * var(--sp-root)));
        margin-bottom: calc(8rem * var(--sp-root));
    }
}
.plan__table .detail__item {
    position: relative;
    padding-left: 21rem;
    font-size: max(12px, 13rem);
    font-weight: 400;
    line-height: calc(26/13);
}
@media screen and (max-width: 768px) {
    .plan__table .detail__item {
        padding-left: calc(21rem * var(--sp-root));
        font-size: max(10px, calc(12rem * var(--sp-root)));
    }
}
.plan__table .detail__item:not(:first-child) {
    margin-top: 4rem;
}
.plan__table .detail__item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 13rem;
    height: 13rem;
    border-radius: 50%;
    background: #CFE8D0;
}
@media screen and (max-width: 768px) {
    .plan__table .detail__item::before {
        width: calc(12rem * var(--sp-root));
        height: calc(12rem * var(--sp-root));
    }
}
.plan__table .left__top {
    border-radius: 18rem 0 0 0; 
}
.plan__table .right__top {
    border-radius: 0 18rem 0 0;
}
.plan__table .right__bottom {
    border-radius: 0 0 18rem 0;
}
.plan__table .left__bottom {
    border-radius: 0 0 0 18rem;
}
.plan__note {
    margin-top: 25rem;
    font-size: max(10px, 13rem);
    line-height: calc(22/13);
    text-align: right;
}
@media screen and (max-width: 768px) {
    .plan__note {
        margin-top: calc(32rem * var(--sp-root));
        font-size: max(10px, calc(11rem * var(--sp-root)));
    }
}


/* ===============================================
# １件ごとのLCA算定サービスもご提供しています
=============================================== */
.lca {
    background: url(/treecycle/value/oneclicklca/feature/img/img_lca.jpg) no-repeat center / cover;
}
@media screen and (max-width: 768px) {
    .lca {
        padding-top: calc(48rem * var(--sp-root));
        background: url(/treecycle/value/oneclicklca/sp/feature/img/img_lca.jpg) no-repeat center / cover;
    }
}
.lca__inner {
    position: relative;
    width: 100%;
    max-width: 1024rem;
    min-width: 700px;
    margin-inline: auto;   
}
@media screen and (max-width: 768px) {
    .lca__inner {
        min-width: auto;
        padding-inline: calc(30rem * var(--sp-root));
    }
}
.lca__title {
    color: var(--wh);
}
.lca__list {
    display: flex;
    justify-content: space-between;
    margin-top: 64rem;
    margin-bottom: 48rem;
}
@media screen and (max-width: 768px) {
    .lca__list {
        flex-direction: column;
        gap: calc(60rem * var(--sp-root));
        margin-top: calc(60rem * var(--sp-root));
        margin-bottom: calc(32rem * var(--sp-root));
    }
}
.lca__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc((100% - 64rem) / 2);
    padding: 47rem 32rem 32rem;
    border-radius: 18rem;
    background: var(--wh);
    font-size: max(12px, 14rem);
    font-weight: 700;
    line-height: calc(24/14);
    text-align: center;
}
@media screen and (max-width: 768px) {
    .lca__item {
        width: 100%;
        padding: calc(40rem * var(--sp-root)) calc(20rem * var(--sp-root)) calc(20rem * var(--sp-root));
        border-radius: calc(18rem * var(--sp-root));
        font-size: max(12px, calc(13rem * var(--sp-root)));
        line-height: calc(20/13);
    }
}
.lca__icon {
    position: absolute;
    top: -36rem;
    left: 50%;
    transform: translateX(-50%);
    width: 72rem;
}
@media screen and (max-width: 768px) {
    .lca__icon {
        top: calc(-28rem * var(--sp-root));
        width: calc(56rem * var(--sp-root));
    }
}
.lca__copy {
    color: var(--wh);
    font-size: max(12px, 24rem);
    font-weight: 900;
    line-height: calc(48/24);
    text-align: center;
}
@media screen and (max-width: 768px) {
    .lca__copy {
        font-size: max(12px, calc(20rem * var(--sp-root)));
        line-height: calc(28/20);
    }
}
.lca__buttonWrap {
    margin-top: 32rem;
}
@media screen and (max-width: 768px) {
    .lca__buttonWrap {
        margin-top: calc(32rem * var(--sp-root));
    }
}
.lca__buttonWrap .common__button {
    margin-inline: auto;
    max-width: 497rem;
    height: 74rem;
}
@media screen and (max-width: 768px) {
    .lca__buttonWrap .common__button {
        max-width: calc(315rem * var(--sp-root));
        height: calc(56rem * var(--sp-root));
    }
}


/* ===============================================
# デモ動画
=============================================== */
.movie {
    background: var(--bg);
}
.movie__inner {
    position: relative;
    width: 100%;
    max-width: 1200rem;
    min-width: 700px;
    margin-inline: auto;   
}
@media screen and (max-width: 768px) {
    .movie__inner {
        min-width: auto;
        padding-inline: calc(30rem * var(--sp-root));
    }
}
.movie__list { 
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 96rem 84rem;
    width: 100%;
    max-width: 1024rem;
    margin-inline: auto;
    margin-top: 64rem;
}
@media screen and (max-width: 768px) {
    .movie__list {
        flex-direction: column;
        gap: calc(32rem * var(--sp-root));
        margin-top: calc(32rem * var(--sp-root));
    }
}
.movie__item {
    position: relative;
    width: calc((100% - 96rem) / 2);
    padding: 32rem 36rem;
    border-radius: 18rem;
    background: var(--wh);
    box-shadow: var(--shadow);
}
@media screen and (max-width: 768px) {
    .movie__item {
        width: 100%;
        padding: calc(24rem * var(--sp-root)) calc(20rem * var(--sp-root));
        border-radius: calc(18rem * var(--sp-root));
    }
}
.movie__title {
    font-size: max(12px, 20rem);
    font-weight: 900;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 16rem;
}
@media screen and (max-width: 768px) {
    .movie__title {
        font-size: max(12px, calc(18rem * var(--sp-root)));
        margin-bottom: calc(16rem * var(--sp-root));
    }
}
.movie__title .gr {
    display: block;
    color: var(--green);
    font-size: max(10px, 13rem);
    font-weight: 700;
}
@media screen and (max-width: 768px) {
    .movie__title .gr {
        font-size: max(10px, calc(11rem * var(--sp-root)));
    }
}
.movie__box .movie__imageWrap {
    position: relative;
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-bottom: 8rem;
    border: 1px solid var(--green-light);
    overflow: hidden;
}
@media screen and (max-width: 768px) {
    .movie__box .movie__imageWrap {
        margin-bottom: calc(5rem * var(--sp-root));
    }
}
.movie__box .movie__imageWrap::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;
}
.movie__box:hover .movie__imageWrap::before {
    opacity: 1;
}
.movie__box .movie__thumbnail {
    transition: 0.3s;
}
.movie__box:hover .movie__thumbnail {
    transform: scale(1.1);
}


@media screen and (min-width: 769px) and (max-width: 900px) {
    .modal-img {
        min-height: 380px;
    }
}