  @charset "utf-8";

/* ===============================================
# 共通基本タグ
=============================================== */
:root {
    --sp-root: 2.048;
    
    --wh: #fff;
    --text: #3B413F;
    --copy-text: #D7F8D8;
    --copy-text2: #E9F5E9;
    --copy-text3: #D8EFE9;
    --copy-text4: #EDEDBF;
    --main: #019B63;
    --bg: #EAFFEA;
    --blue-light: #E1F8F2;
    --blue-light2: #F0FAF8;
    --yellow-light: #F2F2DB;
    --yellow-light2: #FDFDE3;
    --green: #009B63;
    --green2: #008D54;
    --green3: #054B37;
    --green-light: #DEEADE;
    --border: #EDEDED;

    --sans: 'Noto Sans JP', sans-serif;
    --mont: 'Montserrat', sans-serif;

    --shadow: 0 8px 18px rgba(1,155,99,0.16);
}
html {
    font-size: calc(1 / 1440 * 100vw);
}
@media screen and (max-width: 768px) {
    html {
        font-size: calc(1 / 768 * 100vw);
    }
}
html.scrollPrevent {
    overflow: hidden;
    height: 100%;
}
body {
    font-family: var(--sans);
    font-weight: 400;
    font-size: max(12px, 15rem);
    line-height: calc(32/15);
    letter-spacing: 0;
    color: var(--text);
}
@media screen and (max-width: 768px) {
    body {
        font-size: max(12px, calc(13rem * var(--sp-root)));
        line-height: calc(24/13);
    }
}
body.no-scroll {
    position: fixed;
    width: 100%;
    height: 100%;
}
* {
    box-sizing: border-box;
}
section {
    padding-block: 120rem;
}
@media screen and (max-width: 768px) {
    section {
        padding-top: calc(82rem * var(--sp-root));
        padding-bottom: calc(48rem * var(--sp-root));
    }
}
a {
    display: inline-block;
    transition: 0.3s;
}
a:hover {
    color: var(--main);
}
a[target="_blank"] {
    position: relative;
    line-height: 1.5;
}
a[target="_blank"] .icn__link {
    width: 12rem;
    min-width: 9px;
    height: 11rem;
    min-height: 8px;
    margin-left: 8rem;
}
@media screen and (max-width: 768px) {
    a[target="_blank"] .icn__link {
        width: calc(13rem * var(--sp-root));
        height: calc(11rem * var(--sp-root));
        margin-left: calc(7rem * var(--sp-root));
    }
}
img {
    display: inline-block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}
sub {
    font-size: 60%;
    bottom: 0;
}
sub.bottom {
    bottom: -3rem;
}
sup {
    font-size: 60%;
}
.sp {
    display: none !important;
}
.tab {
    display: none !important;
}
@media screen and (max-width: 1024px) {
    .tab {
        display: block !important;
    }
    .tab-pc {
        display: none !important;
    } 
}
@media screen and (max-width: 768px) {
    .sp {
        display: block !important;
    }
    .pc {
        display: none !important;
    } 
}
main {
    margin-top: 70rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    main {
        margin-top: 56px;
    }
}
@media screen and (max-width: 768px) {
    main {
        margin-top: calc(56rem * var(--sp-root));
    }
}


/* ===============================================
# ヘッダー
=============================================== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70rem;
    background: var(--wh);
    z-index: 100;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .header {
        height: 56px;
    }
}
@media screen and (max-width: 768px) {
    .header {
        height: calc(56rem * var(--sp-root));
    }
}
.hedare__inner {
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
.header__logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .header__logo {
        margin-left: 16px
    }
}
@media screen and (max-width: 768px) {
    .header__logo {
        margin-left: calc(16rem * var(--sp-root));
    }
}
.header__logo::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 136rem;
    transform: translateY(-50%);
    width: 1px;
    height: 28rem;
    background: var(--border);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .header__logo::before {
        left: 112px;
        height: 32px;
    }
}
@media screen and (max-width: 768px) {
    .header__logo::before {
        left: calc(112rem * var(--sp-root));
        height: calc(32rem * var(--sp-root));
    }
}
.header__logoLinkL {
    width: 115rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .header__logoLinkL {
        width: 100px;
    }
}
@media screen and (max-width: 768px) {
    .header__logoLinkL {
        width: calc(100rem * var(--sp-root));
    }
}
.header__logoLinkR {
    width: 80rem;
    margin-left: 42rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .header__logoLinkR {
        width: 64px;
        margin-left: 25px;
    }
}
@media screen and (max-width: 768px) {
    .header__logoLinkR {
        width: calc(64rem * var(--sp-root));
        margin-left: calc(25rem * var(--sp-root));
    }
}
.header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.header__nav li {
    position: relative;
    height: 100%;
}
.header__nav li::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4rem;
    background: var(--main);
    transition: 0.3s;
    opacity: 0;
    transform: scaleX(0);
}
.header__nav li:hover::before {
    opacity: 1;
    transform: scaleX(1);
}
.header__nav li:not(:last-child) {
    margin-right: 40rem;
}
.header__nav li:nth-last-child(2) {
    margin-right: 32rem;
}
.header__link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: max(12px, 14rem);
    font-weight: 700;
    line-height: calc(20/14);
    text-align: center;
    transition: 0.3s ease;
    cursor: pointer;
}
.header__link.contact {
    padding: 25rem 24rem;
    color: var(--wh);
    background: linear-gradient(45deg,#009B63, #40B41C);
}
.header__link.contact:hover {
    color: var(--main);
    background: linear-gradient(45deg,rgba(0,155,99,0.15), rgba(64,180,28,0.15));
}
.header__subNavWrap {
    position: relative;
    display: none;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.47);
    z-index: 100;
}
.header__subNav {
    display: flex;
    flex-wrap: wrap;
    background: var(--wh);
}
.header__subNav li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% / 3);
    border: 1px solid var(--border);
}
.header__subNav li:not(:last-child) {
    border-right: none;
}
.header__subNav li.close {
    width: 100%;
    border-top: none;
}
.header__subNav li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 25rem;
    text-align: center;
}
.header__subNav li.close a {
    padding: 20rem;
}
.header__subNav li img {
    width: 71rem;
    margin-bottom: 8rem;
}
.header__subNav li.close img {
    width: 32rem;
    margin-bottom: 0;
}
.subNav__copy {
    font-size: max(12px, 14rem);
    line-height: calc(32/14);
}
.subNav__title {
    font-size: max(12px, 22rem);
    font-weight: 900;
    line-height: 1;
}

/* ===============================================
# ハンバーガーメニュー
=============================================== */
.header__hamburger {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(70rem * var(--sp-root));
    height: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .header__hamburger {
        width: 70px;
    }
}
.hamburger__deco {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: block;
    width: calc(36rem * var(--sp-root));
    height: 2px;
    background: var(--main);
    transition: 0.2s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hamburger__deco {
        width: 36px;
    }
}
.hamburger__deco::before,
.hamburger__deco::after {
    content: "";
    position: absolute;
    display: block;
    width: calc(36rem * var(--sp-root));
    height: 2px;
    background: var(--main);
    transition: 0.2s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hamburger__deco::before,
    .hamburger__deco::after {
        width: 36px;
    }
}
.hamburger__deco::before {
    top: calc(-9rem * var(--sp-root));
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hamburger__deco::before {
        top: -9px;
    }
}
.hamburger__deco::after {
    bottom: calc(-9rem * var(--sp-root));
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hamburger__deco::after {
        bottom: -9px;
    }
}
.header__hamburger.active .hamburger__deco {
    background: transparent;
}
.header__hamburger.active .hamburger__deco::before {
    top: 0;
    transform: rotate(45deg);
}
.header__hamburger.active .hamburger__deco::after {
    bottom: 0;
    transform: rotate(-45deg);
}
.hamburger__menu {
    position: absolute;
    top: calc(56rem * var(--sp-root));
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    padding: calc(48rem * var(--sp-root)) calc(30rem * var(--sp-root)) calc(200rem * var(--sp-root));
    transform: translateY(-120%); 
    background-color: var(--wh);
    z-index: 999;
    overflow-y: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hamburger__menu {
        top: 56px;
        padding: 48px 30px 200px;
    }
}
.hamburger__menu.active {
    transform: translateY(0); 
}
.hamburger__item {
    position: relative;
}
.hamburger__item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border);
}
.hamburger__item:last-child:before {
    display: none;
}
.hamburger__link {
    position: relative;
    display: block;
    padding: calc(24rem * var(--sp-root)) 0;
    font-size: max(12px, calc(20rem * var(--sp-root)));
    font-weight: 700;
    line-height: calc(29/20);
    color: var(--text);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hamburger__link {
        padding: 24px 0;
        font-size: 20px;
    }
}
@media screen and (max-width: 768px) {
    .hamburger__link:hover {
        color: initial;
    }
}
.hamburger__link.active {
    color: var(--main);
}
.hamburger__link.has__subNav::before,
.hamburger__link.has__subNav::after {
    content: "";
    position: absolute;
    width: calc(20rem * var(--sp-root));
    height: calc(2rem * var(--sp-root));
    background: var(--main);
    transition: 0.2s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hamburger__link.has__subNav::before,
    .hamburger__link.has__subNav::after {
        width: 20px;
        height: 2px;
    }
}
.hamburger__link.has__subNav::before {
    top: 50%;
    right: calc(20rem * var(--sp-root));
    transform: translateY(-50%);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hamburger__link.has__subNav::before {
        right: 20px;
    }
}
.hamburger__link.has__subNav::after {
    top: 50%;
    right: calc(20rem * var(--sp-root));
    transform: translateY(-50%) rotate(90deg);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hamburger__link.has__subNav::after {
        right: 20px;
    }
}
.hamburger__link.has__subNav.active::after {
    transform: translateY(-50%) rotate(0);
}
.hamburger__link.contact {
    margin-top: calc(24rem * var(--sp-root));
    padding: calc(22rem * var(--sp-root));
    color: var(--wh);
    background: linear-gradient(45deg,#009B63, #40B41C);
    font-size: max(12px, calc(18rem * var(--sp-root)));
    text-align: center;
    border-radius: calc(99rem * var(--sp-root));
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hamburger__link.contact {
        max-width: 645px;
        margin-top: 24px;
        margin-inline: auto;
        padding: 22px;
        font-size: 18px;
        border-radius: 99px;
    }
}
.hamburger__subNav {
    display: none;
    padding-bottom: calc(32rem * var(--sp-root));
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hamburger__subNav {
        padding-bottom: 32px;
    }
}
.hamburger__subNav .subNav__item {
    margin-bottom: calc(16rem * var(--sp-root));
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hamburger__subNav .subNav__item {
        margin-bottom: 16px;
    }
}
.hamburger__subNav .subNav__link {
    display: flex;
    align-items: center;
}
.hamburger__subNav .subNav__image {
    width: calc(56rem * var(--sp-root));
    margin-right: calc(16rem * var(--sp-root));
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hamburger__subNav .subNav__image {
        width: 56px;
        margin-right: 16px;
    }
}
.hamburger__subNav .subNav__copy {
    font-size: max(10px, calc(10rem * var(--sp-root)));
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hamburger__subNav .subNav__copy {
        font-size: 10px;
    }
}
.hamburger__subNav .subNav__title {
    font-size: max(12px, calc(18rem * var(--sp-root)));
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hamburger__subNav .subNav__title {
        font-size: 18px;
    }
}


/* ===============================================
# フッター
=============================================== */
.footer__nav {
    display: flex;
    flex-wrap: wrap;
    background: var(--green3);
}
.footer__item:nth-of-type(-n+3) {
    width: calc(100% / 3);
}
@media screen and (max-width: 1024px) {
    .footer__item:nth-of-type(-n+3) {
        width: 100%;
    }
}
.footer__item:nth-last-of-type(-n+2) {
    width: calc(100% / 2);
}
@media screen and (max-width: 1024px) {
    .footer__item:nth-last-of-type(-n+2) {
        width: 100%;
    }
}
@media screen and (max-width: 1024px) {
    .footer__item {
        order: 3;
    }
    .footer__item.ocl {
        order: 1;
    }
    .footer__item.epd {
        order: 2;
    }
}
.footer__link {
    display: flex;
    align-items: center;
    padding: 20rem 24rem;
    color: var(--wh);
    background: var(--green3);
    border: 1px solid #306053;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .footer__link {
        padding: 16px 24px;
    }
}
@media screen and (max-width: 768px) {
    .footer__link {
        padding: calc(16rem * var(--sp-root)) calc(24rem * var(--sp-root));
    }
}
.footer__link:hover {
    color: var(--wh);
    background: #023B2B;
}
.footer__item .nav__image {
    width: 71rem;
    margin-right: 20rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .footer__item .nav__image {
        width: 56px;
        margin-right: 16px;
    }
}
@media screen and (max-width: 768px) {
    .footer__item .nav__image {
        width: calc(56rem * var(--sp-root));
        margin-right: calc(16rem * var(--sp-root));
    }
}
.footer__item .nav__copy {
    font-size: max(10px, 14rem);
    line-height: 1.5;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .footer__item .nav__copy {
        font-size: max(10px, 1.37vw);
    }
}
@media screen and (max-width: 768px) {
    .footer__item .nav__copy {
        font-size: max(10px, calc(10rem * var(--sp-root)));
    }
}
.footer__item .nav__title {
    font-size: max(12px, 22rem);
    font-weight: 900;
    line-height: 1;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .footer__item .nav__title {
        font-size: 18px;
    }
}
@media screen and (max-width: 768px) {
    .footer__item .nav__title {
        font-size: max(12px, calc(18rem * var(--sp-root)));
    }
}
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40rem 60rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .footer__bottom {
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        padding: 40px 24px 32px;
    }
}
@media screen and (max-width: 768px) {
    .footer__bottom {
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        padding: calc(40rem * var(--sp-root)) calc(24rem * var(--sp-root)) calc(32rem * var(--sp-root));
    }
}
.footer__subNav {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .footer__subNav {
        width: 100%;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        padding-bottom: 40px;
        margin-bottom: 24px;
        border-bottom: 1px solid #E7EAE2;
    }
}
@media screen and (max-width: 768px) {
    .footer__subNav {
        width: 100%;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        padding-bottom: calc(40rem * var(--sp-root));
        margin-bottom: calc(24rem * var(--sp-root));
        border-bottom: 1px solid #E7EAE2;
    }
}
.footer__subNav .subNav__item:not(:first-child) {
    margin-left: 50rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .footer__subNav .subNav__item:not(:first-child) {
        margin-left: 0;
        margin-top: 12px;
    }
}
@media screen and (max-width: 768px) {
    .footer__subNav .subNav__item:not(:first-child) {
        margin-left: 0;
        margin-top: calc(12rem * var(--sp-root));
    }
}
.footer__subNav .subNav__link {
    font-size: max(10px, 15rem);
    line-height: calc(32/13);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .footer__subNav .subNav__link {
        font-size: max(10px, 1.46vw);
        line-height: calc(32/15);
    }
}
@media screen and (max-width: 768px) {
    .footer__subNav .subNav__link {
        font-size: max(12px, calc(15rem * var(--sp-root)));
        line-height: calc(32/15);
    }
}
.footer__company {
    text-align: right;
}
@media screen and (max-width: 1024px) {
    .footer__company {
        text-align: left;
    }
}
.footer__logo {
    width: 137rem;
    margin-bottom: 20rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .footer__logo {
        width: 137px;
        margin-bottom: 16px;
    }
}
@media screen and (max-width: 768px) {
    .footer__logo {
        width: calc(137rem * var(--sp-root));
        margin-bottom: calc(16rem * var(--sp-root));
    }
}
.footer__copy {
    display: block;
    font-size: max(10px, 12rem);
    line-height: calc(32/12);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .footer__copy {
        font-size: max(10px, 1.17vw);
    }
}
@media screen and (max-width: 768px) {
    .footer__copy {
        font-size: max(10px, calc(12rem * var(--sp-root)));
    }
}


/* ===============================================
# ボタン
=============================================== */
.common__button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300rem;
    height: 64rem;
    min-height: 44px;
    font-size: max(12px, 16rem);
    font-weight: 700;
    border-radius: 99rem;
    transition: 0.3s;
    z-index: 0;
}
@media screen and (max-width: 768px) {
    .common__button {
        max-width: calc(230rem * var(--sp-root));
        height: calc(44rem * var(--sp-root));
        padding: calc(10rem * var(--sp-root)) calc(20rem * var(--sp-root));
        font-size: max(12px, calc(13rem * var(--sp-root)));
    }
}
.common__button.wh {
    color: var(--main);
    background: var(--wh);
}

.common__button.main {
    color: var(--wh);
    background: var(--main);
}
.common__button.main:hover {
    color: var(--main);
    background: var(--wh);
}

.common__button::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,rgba(0,155,99,0.15), rgba(64,180,28,0.15));
    border-radius: 99rem;
    transition: 0.3s;
    opacity: 0;
    z-index: -1;
}
.common__button:hover::before {
    opacity: 1;
}
.common__button.gr {
    border: 1px solid var(--wh);
    color: var(--wh);
    background: rgba(25,90,11,0.43);
}
.common__button.gr:hover {
    color: var(--main);
    background: var(--wh);
}
.common__button.shadow {
    box-shadow: var(--shadow);
}
.common__button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24rem;
    transform: translateY(-50%);
    width: 17rem;
    height: 16rem;
    background: url(/treecycle/value/oneclicklca/common/img/icn_arrow_wh.png) no-repeat center / contain;
    z-index: 1;
    transition: 0.3s;
}
@media screen and (max-width: 768px) {
    .common__button::after {
        right: calc(16rem * var(--sp-root));
        width: calc(13rem * var(--sp-root));
        height: calc(12rem * var(--sp-root));
    }
}
.common__button:hover::after {
    right: 14rem;
}
.common__button.gr:hover::after {
    background: url(/treecycle/value/oneclicklca/common/img/icn_arrow_gr.png) no-repeat center / contain;
}
.common__button.wh::after {
    background: url(/treecycle/value/oneclicklca/common/img/icn_arrow_gr.png) no-repeat center / contain;
}
.common__button.main:hover::after {
    background: url(/treecycle/value/oneclicklca/common/img/icn_arrow_gr.png) no-repeat center / contain;
}


/* ===============================================
# 関連ページ
=============================================== */
.related {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    color: var(--green);
}
.related__tag {
    flex-shrink: 0;
    display: inline-block;
    padding: 7rem 12rem;
    margin-right: 12rem;
    font-size: max(10px, 14rem);
    font-weight: 900;
    line-height: 1.5;
    background: #CDF2CE;
    border-radius: 8rem;
}
@media screen and (max-width: 768px) {
    .related__tag {
        padding: calc(5rem * var(--sp-root)) calc(10rem * var(--sp-root));
        margin-right: calc(12rem * var(--sp-root));
        font-size: max(10px, calc(12rem * var(--sp-root)));
        border-radius: calc(8rem * var(--sp-root));
        margin-bottom: calc(8rem * var(--sp-root));
    }
}
.related__word {
    font-size: max(10px, 15rem);
    display: block;
    text-decoration: underline;
}
@media screen and (max-width: 768px) {
    .related__word {
        font-size: max(10px, calc(13rem * var(--sp-root)));
    }
}
.related__word:hover {
    text-decoration: none;
}
.related__note {
    display: block;
    font-size: max(10px, 12rem);
    margin-top: -3rem;
}
@media screen and (max-width: 768px) {
    .related__note {
        font-size: max(10px, calc(10rem * var(--sp-root)));
        margin-top: 0;
    }
}


/* ===============================================
# セクションタイトル
=============================================== */
.section__title {
    position: relative;
    font-size: max(12px, 36rem);
    font-weight: 900;
    line-height: calc(48/36);
    text-align: center;
    z-index: 0;
}
@media screen and (max-width: 768px) {
    .section__title {
        font-size: max(12px, calc(22rem * var(--sp-root)));
        line-height: calc(30/22);
    }
}
.section__title::before {
    content: attr(data-en-title);
    position: absolute;
    top: -55rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    font-family: var(--mont);
    font-size: max(12px, 64rem);
    font-weight: 800;
    line-height: calc(90/64);
    letter-spacing: -0.025em;
    color: var(--copy-text2);
    z-index: -1;
}
@media screen and (max-width: 768px) {
    .section__title::before {
        top: calc(-32rem * var(--sp-root));
        font-size: max(12px, calc(28rem * var(--sp-root)));
        line-height: 1;
    }
}
.section__title.gr::before {
    color: var(--copy-text);
}
.section__title.bl::before {
    color: var(--blue-light);
}
.section__title.ye::before {
    color: var(--yellow-light);
}


/* ===============================================
# cta
=============================================== */
.cta {
    color: var(--wh);
    background: url(/treecycle/value/oneclicklca/common/img/pic_cta.jpg) no-repeat center / cover;
}
@media screen and (max-width: 768px) {
    .cta {
        padding-block: calc(56rem * var(--sp-root));
        background: url(/treecycle/value/oneclicklca/sp/common/img/pic_cta.jpg) no-repeat center / cover;
    }
}
.cta__text {
    margin-top: 32rem;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .cta__text {
        margin-top: calc(24rem * var(--sp-root));
    }
}
.cta__buttonWrap {
    margin-top: 32rem;
}
@media screen and (max-width: 768px) {
    .cta__buttonWrap {
        margin-top: calc(24rem * var(--sp-root));
    }
}
.cta__buttonWrap .common__button {
    margin-inline: auto;
}
@media screen and (max-width: 768px) {
    .cta__buttonWrap .common__button {
        max-width: calc(315rem * var(--sp-root));
        height: calc(56rem * var(--sp-root));
    }
}

/* ===============================================
# 主なユーザー様　スライド
=============================================== */
.user__slide .swiper-wrapper {
    transition-timing-function: linear;
}
.user__slide .swiper-slide img {
    height: auto;
}

/* ===============================================
# モーダル画面
=============================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(21,141,84,0.85);
    z-index: 200;
    overflow-y: auto;
}
.modal-contents {
    position: relative;
    padding-block: calc((100vh - 560rem) / 2);
    text-align: center;
}
@media screen and (max-width: 768px) {
    .modal-contents {
        padding-block: calc((100vh - 185rem * var(--sp-root)) / 2);
    }
}
.modal-box {
    position: relative;
    width: fit-content;
    margin-inline: auto;
}
.modal-img {
    height: 560rem;
    min-height: 460px;
    margin-bottom: 24rem;
    margin-inline: auto;
}
@media screen and (max-width: 768px) {
    .modal-img {
        width: calc(327rem * var(--sp-root));
        height: auto;
        min-height: auto;
        margin-bottom: calc(16rem * var(--sp-root));
    }
}
.modal-img img {
    width: auto;
    height: 100%;
}
@media screen and (max-width: 768px) {
    .modal-img img {
        width: 100%;
        height: auto;
    }
}
.modal-movie {
    width: 990rem;
    min-height: auto;
}
@media screen and (max-width: 768px) {
    .modal-movie {
        width: calc(327rem * var(--sp-root));
    }
}
.modal-title {
    font-size: max(12px, 24rem);
    line-height: 1.5;
    font-weight: 900;
    color: var(--wh);
    text-align: center;
}
@media screen and (max-width: 768px) {
    .modal-title {
        font-size: max(12px, calc(22rem * var(--sp-root)));
    }
}
.close-btn {
    position: absolute;
    top: -52rem;
    right: 0;
    width: 32rem;
    height: 32rem;
    margin-left: auto;
    margin-right: 0;
}
@media screen and (max-width: 768px) {
    .close-btn {
        top: calc(-52rem * var(--sp-root));
        width: calc(32rem * var(--sp-root));
        height: calc(32rem * var(--sp-root));
    }
}