@charset "UTF-8";

/* ---------------- top ---------------- */
.top-sec-wrap {
    background: url(../img/bg-top.jpg) repeat-y top center/100%;
}

/* ----- mv ----- */
.top-mv img {
    width: 100%;
}

@media screen and (max-width: 960px) {}

/* ----- l-nav ----- */
.l-nav {
    padding: 90px 0 90px;
    position: relative;
    z-index: 10;
}

.l-nav .list {
    display: flex;
    justify-content: center;
    gap: 0 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.l-nav .list>li {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    margin: 0;
    padding: 15px 0;
    width: 33.3333333%;
    border: 2px solid #39643a;
    box-shadow: 0 0 25px #00000026;
    transition: 0.3s;
}

.l-nav .list .current:hover {
    background: #39643a;
    transition: 0.3s;
}

.l-nav .list .current:hover p,
.l-nav .list .current:hover a {
    color: #e7d857;
    transition: 0.3s;
}

.l-nav .list .current::after {
    background: #38643a;
}

.l-nav .list>li:hover::after {
    transform: scale(0.5, 1);
}

.l-nav .list a,
.l-nav .list p {
    color: #505050;
    font-size: 1.8rem;
    font-family: '游ゴシック', YuGothic, sans-serif;
    font-weight: bold;
    line-height: 1.3;
    transition: 0.3s;
}

.l-nav .list a:hover {
    text-decoration: none;
}

.l-nav .list .current>a,
.l-nav .list .current>p {
    color: #494949;
    padding: 5px 20px;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.l-nav .is-tab {
    display: none;
}

.l-nav .drop-menu {
    display: none;
    -webkit-animation-name: fade-up-anim;
    animation-name: fade-up-anim;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
}


@-webkit-keyframes fade-up-anim {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;

    }
}

@keyframes fade-up-anim {
    from {
        opacity: 0;

    }

    to {
        opacity: 1;

    }
}

.menu-vec {
    width: 15px;
    display: flex;
    align-items: center;
    transition: 0.3s;
    transform: rotate(180deg);
}

.l-nav .drop:hover .menu-vec {
    transition: 0.3s;
    transform: rotate(0deg);
}

.l-nav .drop:hover {
    transition: 0.3s;
    background: #38643a;
}

.l-nav .drop a {
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cls-1 {
    fill: none;
    stroke: #505050;
    stroke-linejoin: round;
    stroke-width: 2px;
    fill-rule: evenodd;

}

.l-nav .drop:hover .cls-1 {
    stroke: #e7d857;
}


.l-nav .drop a {
    transition: 0.3s;
    /* color: #fff; */
}

.l-nav .drop:hover .drop-menu {
    display: block;
    position: absolute;
    top: 63.5px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 1200px;
    background: #38643a;
}

.l-nav .drop-balloon {
    background: #38643a;
    padding: 1.5em 1.3em;
    position: relative;
}

.l-nav .drop-balloon li {
    text-align: center;
    position: relative;
    width: 100%;
    border-top: 1px solid #fff;
    padding: 20px 0;
}

.l-nav .drop-balloon li:last-child {
    border-bottom: 1px solid #fff;
}

.l-nav .drop-balloon a {
    color: #fff;
    display: block;
    font-size: 1.8rem;

}

.l-nav .drop-balloon a:hover {
    color: #e7d857;
}

@media screen and (max-width: 960px) {
    .l-nav .list {
        display: flex;
        justify-content: center;
        gap: 0 8px;
        max-width: 900px;
        margin: 0 auto;
        width: 345px;
    }

    .l-nav .list a,
    .l-nav .list p {
        color: #505050;
        font-size: 1.1rem;
    }

    .drop-balloon a {
        color: #fff !important;
    }

    .l-nav .list>li {
        padding: 6px 0;
        border: 1px solid #39643a;
    }


    .l-nav .list .current>a,
    .l-nav .list .current>p {
        padding: 5px 0;
    }

    .menu-vec {
        width: 8px;
    }

    .l-nav .drop:hover .drop-menu {
        top: 37px;
    }

    .l-nav .drop a {
        gap: 5px;
    }

    .l-nav .drop-balloon li {
        padding: 15px 0;
    }

    .l-nav .drop:hover .drop-menu {
        display: block;
        position: absolute;
        min-width: 345px;
    }

}

/* hover動作が使えないtablet用 */
@media (hover: none) {
    .l-nav .drop>a {
        pointer-events: none;
    }

    .l-nav .is-tab {
        display: block;
    }
}

/* sp */
@media screen and (max-width: 960px) {
    .l-nav {
        padding: 35px 0 45px;
    }

    /* SP accordion */
    .sp-accordion {
        cursor: pointer;
        outline: 0;
        position: relative;
        margin: 0 auto;
        width: 100%;
    }

    .accordion-ttl {
        border: 1px solid #505050;
        color: #505050;
        cursor: pointer;
        display: block;
        font-size: 1.5rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        position: relative;
        padding: 8px;
        text-align: center;
        margin: 0 !important;
    }

    .accordion-ttl:after {
        content: '';
        position: absolute;
        right: 25px;
        top: 38%;
        transition: all 0.2s ease-in-out;
        display: block;
        width: 8px;
        height: 8px;
        border-top: solid 2px #505050;
        border-right: solid 2px #505050;
        transform: rotate(135deg);
    }

    .accordion-ttl.open:after {
        transform: rotate(-45deg);
        top: 45%;
    }

    .accordion-item {
        background: rgb(149 149 149 / 10%);
        display: none;
        padding: 5px 15px 20px;
    }

    .accordion-item .sp-list li {
        border-bottom: 1px solid #505050;
        font-size: 1.3rem;
        text-align: center;
        padding: 8px;
    }

    .sub-menu .accordion-ttl {
        border: 0;
        font-size: 1.3rem;
        font-weight: normal;
        padding: 0;
    }

    .sub-menu .accordion-item {
        background: transparent;
        padding: 10px 0 0;
    }

    .sub-menu .accordion-item li {
        border-bottom: 1px solid #c2c2c2;
        font-size: 1.2rem;
    }

    .sub-menu .accordion-item li:first-child {
        border-top: 1px solid #c2c2c2;
    }

    .sub-menu .accordion-item li:last-child {
        border: 0;
    }
}

/* ----- l-pickup  ----- */
.l-pickup {
    position: relative;
    margin-bottom: -2.5%;
}

.l-pickup:first-of-type {
    margin-top: 20px;
}

.pickup-bg01 {
    margin-top: -8em;
}

.pickup-bg02 {
    margin-top: -10em;
}

.pickup-bg01>img,
.pickup-bg02>img {
    width: 100%;
}

.pickup-txt img {
    display: block;
    position: relative;
    max-width: 452px;
    z-index: 1;
}

.pickup-wrap {
    position: absolute;
    top: 0;
    left: auto;
    max-width: 1280px;
    width: 96%;
}

.pickup-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 4% 0 2%;
    position: relative;
    z-index: 1;
}

.l-pickup.item-ura .pickup-box .img-item {
    box-shadow: 0px 2px 30px 0px rgba(64, 64, 64, 0.4);
}

.pickup-box .img-item {
    width: 60%;
    max-width: 700px;
}

.pickup-box .txt-item {
    margin-left: 6%;
    width: 36%;
}

.pickup-box .txt-item .ttl img {
    width: auto;
}

.l-pickup.item-dragons .txt-item .ttl img,
.l-pickup.item-giants-upcycling .txt-item .ttl img {
    height: 200px;
}

.l-pickup.item-ura .txt-item .ttl img {
    height: 100px;
}

.l-pickup.item-giants .txt-item .ttl img {
    height: 160px;
}

.pickup-box .txt-item p {
    color: #fff;
    line-height: 1.95;
    padding: 6% 0 2%;
}

.l-pickup.reverse .pickup-box {
    flex-direction: row-reverse;
    padding-top: 10%;
}

.l-pickup.reverse .pickup-box .txt-item {
    margin: 0 6% 0 0;
}

.pickup-btn-wrap .btn-white-s {
    margin: 0 0 14px;
    max-width: 430px;
}

.pickup-btn-wrap .btn-white-s>span {
    font-size: 1.6rem;
}

.pickup-btn-wrap .btn-white-s .arrow::after {
    width: 48px;
    height: 8px;
}

@media screen and (max-width: 1480px) {

    .pickup-bg01>img,
    .pickup-bg02>img {
        width: 100%;
        height: 950px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media screen and (max-width: 960px) {
    .l-pickup.item-giants {
        margin-bottom: 0;
    }

    .pickup-bg01,
    .pickup-bg02 {
        margin-top: 7em;
    }

    .pickup-bg01>img,
    .pickup-bg02>img {
        height: auto;
    }

    .pickup-wrap {
        width: 92%;
    }

    .pickup-box,
    .l-pickup.reverse .pickup-box {
        flex-direction: column;
        padding: 3% 0;
    }

    .pickup-box .img-item {
        width: 88%;
    }

    .pickup-box .txt-item {
        width: 100%;
    }

    .pickup-txt img {
        width: 170px;
    }

    .l-pickup.item-dragons .txt-item .ttl img,
    .l-pickup.item-giants-upcycling .txt-item .ttl img {
        height: 140px;
    }

    .l-pickup.item-ura .txt-item .ttl img {
        height: 60px;
    }

    .l-pickup.item-giants .txt-item .ttl img {
        height: 100px;
    }

    .pickup-box .txt-item,
    .l-pickup.reverse .pickup-box .txt-item {
        font-size: 1.3rem;
        margin: 2.2em 0 0;
    }

    .pickup-btn-wrap .btn-white-s {
        margin: 0 auto 14px;
        max-width: 290px;
    }

    .pickup-btn-wrap .btn-white-s>span {
        font-size: 1.3rem;
    }

    .pickup-btn-wrap .btn-white-s .arrow::after {
        width: 26px;
        height: 4px;
    }

    .l-pickup.item-giants .pickup-box .img-item {
        margin-top: -1.5em;
    }
}

/* ----- l-support ----- */
.l-support {
    position: relative;
    margin: 0 auto;
    max-width: 2000px;
}

.support-img {
    max-width: 1252px;
    width: 100%;
}

.support-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: -4em;
}

.support-box .ttl {
    padding: 0 6%;
}

.support-box .ttl>img {
    max-width: 316px;
    width: 100%;
}

.support-box .txt-item {
    background: url(../img/bg-support.jpg) no-repeat center/cover;
    padding: 6%;
    width: 56%;
}

.support-box .txt-item p {
    color: #fff;
    line-height: 1.95;
    margin-bottom: 1.4em;
}

@media screen and (max-width: 1280px) {
    .l-support .wrap100 {
        width: 100%;
    }
}

@media screen and (max-width: 960px) {
    .l-support {
        padding-top: 20px;
    }

    .l-support .ttl>img {
        margin-bottom: 1.2em;
        width: 280px;
    }

    .support-box {
        margin-top: 0;
    }

    .support-box .txt-item {
        font-size: 3.3vw;
        padding: 9% 4%;
        width: 100%;
    }
}

/* ----- l-other ----- */
.l-other .ttl>img {
    display: block;
    margin: 1em auto 2.5em;
    max-width: 660px;
    width: 100%;
}

.l-other .bnr-list li {
    margin-bottom: 3em;
}

@media screen and (max-width: 960px) {
    .l-other .ttl>img {
        margin: 0 auto 1.5em;
        max-width: 300px;
    }

    .l-other .bnr-list li {
        margin-bottom: 1.2em;
    }
}

/* ---------------- jeraについて ---------------- */
.about-sec-wrap {
    background: url(../../jera/assets/img/bg-about001.jpg) repeat-y top center/100%;
}

.l-about {
    color: #505050;
}

.l-about.mv {
    background: url(../../jera/assets/img/mv-about-pc.png) no-repeat center center/cover;
    /*    margin-top: -50px;*/
    /*    margin-bottom: 30px;*/
}

.l-about.mv,
.l-about.mv .lead-box {
    position: relative;
    height: 640px;
}

.l-about.mv .lead-box .item {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.l-about.mv .lead-box .txt-m {
    /* font-family: 'Noto Serif JP', sans-serif; */
    font-size: 2.8rem;
    line-height: 1.9;
}

.l-about .ttl01 {
    margin-top: 3em;
}

.l-about .ttl01>img {
    display: block;
    max-width: 800px;
    width: 100%;
}

.about-col {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1em;
}

.about-col>div {
    width: 50%;
}

.about-col .txt-item {
    padding-right: 1em;
}

.about-col .txt-item>p {
    font-size: 1.8rem;
    line-height: 2.2;
}

.about-col .txt-item>p+p {
    margin-top: 2em;
}

.about-col .img-item>img {
    max-width: 640px;
    width: 100%;
}

@media screen and (max-width: 960px) {
    .l-about.mv {
        background: none;
        margin-top: 0;
    }

    .l-about.mv,
    .l-about.mv .lead-box {
        height: auto;
    }

    .l-about.mv .mv-img {
        width: 100%;
    }

    .l-about.mv .lead-box .item {
        position: static;
        transform: none;
    }

    .l-about.mv .lead-box .txt-m {
        font-size: 1.6rem;
    }

    .l-about .ttl01 {
        margin-top: 1.5em;
        margin-bottom: 0.2em;
    }

    .about-col {
        flex-direction: column-reverse;
        margin-bottom: 0;
    }

    .about-col>div {
        width: 100%;
    }

    .about-col {
        align-items: center;
    }

    .about-col .txt-item {
        padding-right: 0;
        margin-top: 1em;
    }

    .about-col .txt-item>p {
        font-size: 1.4rem;
        line-height: 2;
    }

    .about-col .txt-item>p+p {
        margin-top: 1.5em;
    }
}

/* ----- コンテンツ一覧 ----- */
.l-sub-logo {
    padding: 90px 0 0;
}

.l-sub-logo img {
    display: block;
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
}

.l-content-main {
    position: relative;
    padding: 50px 0 100px;
}

.l-content-main .content-wrap .note {
    display: block;
    font-size: 65%;
    margin-top: 1em;
}

.content-bg {
    position: relative;
    top: 6em;
}

.l-content-main .content-ura {
    top: 17em;
}

/*.l-content-main .content-bg > .bg-gray {
  top: 11em;
}*/
.content-bg.is-l {
    top: 11em;
}

.content-bg .bg-green {
    position: absolute;
    top: 0;
    left: 0;
    width: 94%;
}

.content-bg .bg-gray {
    position: absolute;
    top: 20px;
    right: 0;
    width: 94%;
}

.content-wrap {
    text-align: center;
}

.ttl-01 .sub {
    height: 48px;
    margin-bottom: 35px;
}

.ttl-01 .hide-s {
    height: 100px;
}

.content-wrap .ttl-01>img {
    display: block;
    margin: 0 auto 20px;
}

.content-wrap .ttl-03>img,
.content-wrap .ttl-04>img {
    margin: 0 auto;
    max-height: 42px;
}

.content-wrap .ttl-02>img {
    margin: 0 auto;
    max-height: 104px;
}

.content-wrap .ttl-05>img {
    margin: 0 auto;
    height: 85px;
}

.content-wrap .txt-l {
    font-size: 2.2rem;
    margin: 1.5em auto 2.5em;
}

.content-wrap .txt-l>span {
    font-size: 80%;
}

.content-item {
    box-shadow: 0px 2px 40px 0px rgba(64, 64, 64, 0.4);
    margin: 0 auto;
    max-width: 1000px;
    width: 100%;
}

.content-item.is-mascot {
    box-shadow: none;
    margin: 60px auto -20px;
    max-width: 1072px;
}

.content-item img {
    width: 100%;
}

.l-btn-bottom {
    padding: 40px 0 100px;
}

@media screen and (max-width: 960px) {
    .l-sub-logo {
        padding: 45px 0 5px;
    }

    .l-sub-logo img {
        max-width: 240px;
    }

    .l-content-main {
        padding: 0 0 50px;
    }

    .l-content-main:last-of-type {
        padding-bottom: 0;
    }

    .l-content-main .content-wrap .note {
        font-size: 80%;
    }

    .content-bg .bg-sp {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    .content-wrap .ttl-01>img,
    .content-wrap .ttl-04>img {
        max-height: 56px;
    }

    .content-wrap .ttl-02>img {
        max-height: 120px;
    }

    .content-wrap .ttl-03>img {
        max-height: 22px;
    }

    .content-wrap .ttl-05>img {
        margin-bottom: -5px;
        height: 90px;
    }

    .content-wrap .txt-l {
        font-size: 1.5rem;
        margin: 1.8em auto 2.8em;
    }

    .content-item {
        box-shadow: 0px 2px 20px 0px rgb(64 64 64 / 30%);
    }

    .content-item.is-mascot {
        margin: 50px auto 0;
    }

    .content-bg {
        top: 10em;
    }

    .content-bg.is-l {
        top: 15.5em;
    }

    .l-btn-bottom {
        padding: 20px 0 100px;
    }
}

/* ----- マスコット写真集 ----- */
.l-photo {
    padding: 180px 0 100px;
}

.l-photo .content-bg {
    top: -17vw;
}

.content-wrap .ttl-photo>img {
    margin: 0 auto;
    max-height: 42px;
}

.l-photo .content-wrap .txt-l {
    color: #fff;
}

.l-photo .mascot-col {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -4em;
}

.l-photo .mascot-item {
    padding-bottom: 3px;
    margin-bottom: 4em;
    width: 47.3%;
}

.l-photo .mascot-item .ttl-s {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    padding: 15px;
}

.l-photo .mascot-item .ttl-s>span {
    display: block;
    font-size: 70%;
    font-weight: 700;
}

.l-photo .photo-list {
    display: flex;
    justify-content: center;
    align-items: center;
}

.l-photo .photo-list>li {
    margin-right: 3px;
}

.l-photo .photo-list>li:last-child {
    margin-right: 0;
}

.l-photo .mascot-item.is-gabi {
    background: rgb(249, 119, 9);
    background: linear-gradient(0deg, rgba(249, 119, 9, 1) 0%, rgba(215, 101, 4, 1) 100%);
}

.l-photo .mascot-item.is-tsuba {
    background: rgb(0, 61, 152);
    background: linear-gradient(0deg, rgba(0, 61, 152, 1) 0%, rgba(1, 49, 119, 1) 100%);
}

.l-photo .mascot-item.is-star {
    background: rgb(0, 63, 142);
    background: linear-gradient(0deg, rgba(0, 63, 142, 1) 0%, rgba(0, 50, 111, 1) 100%);
}

.l-photo .mascot-item.is-doara {
    background: rgb(0, 37, 105);
    background: linear-gradient(0deg, rgba(0, 37, 105, 1) 0%, rgba(0, 27, 75, 1) 100%);
}

.l-photo .mascot-item.is-tora {
    background: rgb(255, 226, 1);
    background: linear-gradient(0deg, rgba(255, 226, 1, 1) 0%, rgba(214, 190, 1, 1) 100%);
}

.l-photo .mascot-item.is-sly {
    background: rgb(255, 0, 0);
    background: linear-gradient(0deg, rgba(255, 0, 0, 1) 0%, rgba(203, 2, 2, 1) 100%);
}

.l-photo .photo-list img {
    width: 100%;
}

@media screen and (max-width: 960px) {
    .l-photo {
        padding: 80px 0 40px;
    }

    .l-photo .content-bg {
        top: -27vw;
    }

    .content-wrap .ttl-photo>img {
        max-height: 56px;
    }

    .l-photo .mascot-col {
        margin-bottom: -1.8em;
        flex-direction: column;
        align-items: center;
    }

    .l-photo .mascot-item {
        margin-bottom: 2.5em;
        width: 100%;
    }
}

/* ----- マスコット発電所訪問記 ----- */
.visit-bg {
    position: relative;
    top: -8vw;
}

.visit-bg>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.l-visit {
    padding: 40px 0 80px;
}

.l-visit .ttl-visit>img {
    margin: 0 auto;
    max-height: 42px;
}

.l-visit .txt-l {
    font-size: 2.4rem;
    margin: 1.2em auto 3em;
}

.l-visit .content-wrap .note {
    display: block;
    font-size: 60%;
    margin-top: 1em;
}

.l-visit .visit-wrap {
    margin-bottom: 10%;
}

.l-visit .visit-wrap:last-of-type {
    margin-bottom: 0 !important;
}

.l-visit .visit-item {
    max-width: 1000px;
    margin: 0 auto;
}

.l-visit .visit-item img {
    width: 100%;
}

@media screen and (max-width: 960px) {
    .visit-bg {
        top: -10vw;
        width: calc(100% + 150px);
        margin: 0 -75px;
    }

    .l-visit {
        padding: 0 0 20px;
    }

    .l-visit .txt-l {
        font-size: 1.7rem;
        margin: 1.5em auto 3.2em;
    }

    .l-visit .content-wrap .note {
        font-size: 75%;
    }

    .l-visit .ttl-visit>img {
        max-height: 56px;
    }

    .l-visit .visit-wrap {
        margin-bottom: 5em;
    }
}

/* ----- JERA セ・リーグ CHALLENGE ----- */
.l-challenge {
    color: #494949;
    text-align: center;
}

.l-challenge .ttl-logo>img {
    display: block;
    margin: 20px auto 0;
    max-width: 820px;
    width: 100%;
}

.l-challenge .lead-item {
    margin: 4em 0 3.5em;
}

.l-challenge .lead-item>p {
    /* font-family: 'Noto Serif JP', sans-serif; */
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.2;
    margin-bottom: 1em;
}

.l-challenge .txt-catch>img {
    display: block;
    margin: 0 auto;
    max-width: 770px;
    width: 100%;
}

.l-challenge .txt-sub {
    font-size: 2.8rem;
    font-weight: 700;
    margin-top: 1em;
}

.challeng-bnr-wrap {
    padding: 80px 0 30px;
}

.challeng-bnr-wrap .bnr-item {
    margin-bottom: 2.5em;
}

.team-list {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 0 auto 4em;
}

.team-list li {
    width: 16%;
}

.team-list a {
    display: block;
    margin: 0 auto;
    width: 120px;
}

.team-list .txt-cs {
    background: #e2e2e2;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 0;
    text-align: center;
    padding-bottom: 2px;
    margin: 8px auto 0;
    width: 80px;
}

.modal {
    display: none;
}

.clean_tit {
    font-size: 20px;
    line-height: 1.2;
    font-weight: bold;
    padding-bottom: 14px;
    border-bottom: 3px solid #333;
    margin-bottom: 20px;
}

.clean_list li {
    font-size: 16px;
    line-height: 2;
}

.clean_list li::before {
    content: '> ';
    margin-right: 5px;
}

@media screen and (max-width: 960px) {
    .l-challenge .ttl-logo>img {
        margin: 0 auto;
        max-width: 230px;
    }

    .l-challenge .lead-item {
        margin: 2.5em 0;
    }

    .l-challenge .lead-item>p {
        font-size: 1.3rem;
        line-height: 2;
    }

    .l-challenge .txt-catch>img {
        max-width: 330px;
    }

    .l-challenge .txt-sub {
        font-size: 1.6rem;
    }

    .challeng-bnr-wrap {
        padding: 40px 0 20px;
    }

    .challeng-bnr-wrap .bnr-item {
        margin-bottom: 1.4em;
    }

    .team-list {
        flex-wrap: wrap;
        margin-bottom: 3em;
    }

    .team-list li {
        margin-bottom: 10px;
        width: 33%;
    }

    .team-list a {
        width: 90px;
    }

    .clean_tit {
        font-size: 1.8rem;
        padding-bottom: 14px;
    }

    .clean_list li {
        font-size: 1.4rem;
    }
}

/* ----- シティクリーンプロジェクト ----- */
.l-clean {
    padding: 20px 0 40px;
}

.l-clean .mv-ttl {
    margin: -2em 0 2.5em;
}

.l-clean .mv-ttl>img {
    width: 100%;
}

.l-clean .catch-ttl {
    font-size: 2.8rem;
    font-weight: 600;
    margin-top: 2.5em;
}

.l-clean .note {
    font-size: 80%;
}

.l-clean .clean-item {
    color: #505050;
    line-height: 1.7;
}

.l-clean .clean-item .txt {
    font-size: 1.8rem;
    letter-spacing: 0.02em;
    margin: 2.5em 0;
}

.l-clean .clean-item .txt+.txt {
    margin-top: -1em;
}

.l-clean .clean-item .txt-l {
    font-size: 2.2rem;
    margin: 3.2em 0;
}

.l-clean .clean-item .txt-link {
    text-decoration: underline !important;
}

.l-clean .clean-item .total {
    margin: 6em 0;
}

.l-clean .clean-item .total.total-m {
    margin: 3em 0;
}

.l-clean .clean-item .total-txt {
    font-size: 1.8rem;
    margin: 0;
}

.l-clean .clean-item .total-txt span {
    font-size: 3.6rem;
    font-weight: 600;
}

.l-clean .youtube {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.l-clean .youtube iframe {
    width: 100%;
    height: 100%;
}

.l-clean .next {
    background-color: #ebeef0;
    border: 1px solid #707070;
    padding: 1.2em;
}

.l-clean .next .nxt-txt {
    font-size: 1.6rem;
    letter-spacing: 0.02em;
}

/*スライダー*/
.slider {
    width: 100%;
    height: 100%;
}

.slider img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.slick-arrow {
    z-index: 2 !important;
}

.slick-slider .slick-prev,
.slick-slider .slick-next {
    position: absolute;
    width: 25px;
    height: 25px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #8196a2;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}

.slick-slider .slick-prev {
    left: 10px;
}

.slick-slider .slick-next {
    right: 10px;
}

.slick-slider .slick-prev::before,
.slick-slider .slick-next::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
}

.slick-slider .slick-prev::before {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 10px solid #fff;
}

.slick-slider .slick-next::before {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 10px solid #fff;
}

/*
.slick-dots li button:before {
    font-size: 20px;
}
*/
/*スライダー*/
@media screen and (max-width: 960px) {
    .l-clean .mv-ttl {
        margin: -2em -100px 2em;
        width: calc(100% + 200px);
    }

    .l-clean.dragons .mv-ttl {
        margin: -2em -80px 2em -100px;
        width: calc(100% + 180px);
    }

    .l-clean .catch-ttl {
        font-size: 2rem;
        margin-top: 2em;
    }

    .l-clean .clean-item .txt {
        font-size: 1.5rem;
    }

    .l-clean .clean-item .txt-l {
        font-size: 1.8rem;
        margin: 2em 0;
    }

    .l-clean .clean-item .total {
        margin: 3em 0;
    }

    .l-clean .clean-item .total.total-m {
        margin: 1.5em 0;
    }

    .l-clean .clean-item .total-txt {
        font-size: 1.5rem;
    }

    .l-clean .clean-item .total-txt span {
        font-size: 2.8rem;
    }
}

/* ----- 裏セ・リーグ会議 ----- */
.l-ura .content-bg {
    top: 6em;
}

.content-wrap .content-season4 .bg-green {
    top: -2.2vw;
    height: 720px;
}

/*.l-ura .content-bg .bg-green {
  top: -2.2vw;
  height: 720px;
}*/
.ttl-ura-l {
    margin-bottom: 2.2em;
}

.ttl-ura-l>img {
    display: block;
    margin: 0 auto 20px;
}

.l-ura .txt-l {
    margin-bottom: 1.5em;
}

.l-ura .ttl-note {
    font-size: 80%;
    margin-bottom: 1.5em;
}

.ttl-ura-l .sub {
    height: 48px;
    margin-bottom: 35px;
}

.ttl-ura-l .ttl-l {
    height: 100px;
}

.ura-box {
    /*display: flex;*/
    /*justify-content: flex-start;*/
    max-width: 840px;
    margin: 0 auto;
    padding: 4% 0 8%;
    position: relative;
    z-index: 1;
}

/*.ura-box .img-item {
  text-align: center;
}*/
/*.ura-box .txt-item {
  margin-left: 3.5%;
  width: 45%;
}*/
/*
.ura-box .txt-item .ttl img {
    display: block;
    width: auto;
    height: 80px;
}
*/
.ura-box .txt-item .ttl {
    color: #fff;
    font-family: 'Toppan Bunkyu Midashi Gothic', '游ゴシック', YuGothic, sans-serif;
    font-size: 2.8rem;
    font-weight: bold;
    text-align: left;
}

.ura-box .txt-item p {
    color: #fff;
    font-size: 1.7rem;
    line-height: 1.95;
    padding: 4% 0 0;
    text-align: left;
}

.l-ura .btn-white-s {
    margin: 6% 0 0;
    max-width: 320px;
}

.l-ura .btn-white-s>span {
    font-size: 1.8rem;
}

.l-ura .yt-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /*justify-content: center;*/
    margin-top: 2.3em;
}

.special:last-child {
    flex: 0 0 100%;
    margin: auto;
    margin-top: 2em;
}

.l-ura .yt-list .ttl-s {
    font-size: 1.8rem;
    margin-bottom: 0.8em;
}

.l-ura .yt-list>li {
    width: 32%;
    max-width: 380px;
}

@media screen and (max-width: 1480px) {

    .l-ura .content-bg .bg-green,
    .l-ura .content-bg .bg-gray {
        width: 100%;
        height: 680px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media screen and (max-width: 960px) {

    .l-ura .content-bg .bg-green,
    .l-ura .content-bg .bg-gray {
        height: 68vw;
    }

    .ttl-ura-l .sub {
        height: 25px;
        margin-bottom: 20px;
    }

    .ttl-ura-l .ttl-l {
        height: 85px;
    }

    .ura-box {
        align-items: center;
        padding: 6% 0 16%;
        /*min-height: 100vw;*/
        max-width: 640px;
        margin: 0 auto;
    }

    /*.ura-box .img-item {
    width: 88%;
  }*/
    .ura-box .txt-item {
        margin: 1.5em 0 0;
        width: 100%;
    }

    .ura-box .txt-item .ttl {
        color: #fff;
        font-size: 1.8rem;
    }

    /*
    .ura-box .txt-item .ttl img {
        height: 50px;
    }
    */
    .ura-box .txt-item p {
        font-size: 1.3rem;
        padding: 4% 0 0;
    }

    .l-ura .btn-white-s {
        margin: 5% auto 0;
        max-width: 210px;
    }

    .l-ura .btn-white-s>span {
        font-size: 1.3rem;
    }

    .l-ura .yt-list {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }

    .special:last-child {
        flex: 0 0 100%;
        margin: auto;
        margin-top: 0;
        margin-bottom: 0;
    }

    .l-ura .yt-list>li {
        margin-bottom: 1.5em;
        width: 100%;
    }

    .l-ura .yt-list .ttl-s {
        font-size: 1.4rem;
    }
}

/* TOP pickup 230802 */
.pickup-bg01 {
    margin-top: -6em;
}

.pickup-wrap-02 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1280px;
    width: 100%;
}

.pickup-cont {
    display: flex;
    justify-content: center;
    gap: 3%;
    margin-top: 5em;
}

.pickup-cont-item {
    color: #fff;
    flex: 1;
}

.pickup-cont-img {
    line-height: 0;
    overflow: hidden;
}

.pickup-cont-ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-family: 'Toppan Bunkyu Midashi Gothic', 'Noto Sans JP', '游ゴシック', YuGothic, sans-serif;
    font-weight: bold;
    line-height: 1.4;
    margin: 0.8em auto 0.6em;
    text-align: center;
    min-height: 4.2em;
}

.pickup-cont-ttl>span {
    font-size: 85%;
    font-weight: bold;
}

.pickup-cont-ttl>strong {
    display: block;
    margin-bottom: 0.2em;
    font-size: 120%;
}

.pickup-cont-challenge {
    background: #262626;
    -webkit-clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
    position: absolute;
    top: 0;
    left: -1px;
    text-align: center;
}

.pickup-cont-challenge .txt {
    color: #fff;
    display: inline-block;
    font-size: 1rem;
    letter-spacing: 0.02em;
    padding: 10px 14px 10px 8px;
}

.pickup-cont-txt {
    font-size: 83.3%;
    letter-spacing: 0.02em;
    line-height: 1.8;
    padding-bottom: 1em;
    min-height: 8.2em;
}

.pickup-cont .btn-white-s {
    padding: 10px 12px;
    margin: 0.8em auto;
    max-width: 100%;
}

.pickup-cont .btn-white-s>span {
    font-size: 1.6rem;
}

.pickup-cont .btn-white-s .arrow::after {
    background: url(../img/btn-arrow-black.svg) no-repeat center/cover;
    width: 42px;
    height: 7px;
}

@media screen and (max-width: 1280px) {
    .pickup-cont .btn-white-s>span {
        font-size: 1.3rem;
        letter-spacing: 0;
    }
}

@media screen and (max-width: 960px) {
    .pickup-bg01 {
        margin-top: 5em;
    }

    .top-pickup .inner {
        width: 100%;
    }

    .pickup-txt {
        padding: 0 4%;
    }

    .pickup-wrap {
        width: 100%;
    }

    .pickup-cont {
        margin-top: 2.5em;
    }

    .pickup-cont-item {
        margin: 0 1.2em;
    }

    .pickup-cont-ttl {
        font-size: 1.6rem;
    }

    .pickup-cont-txt {
        font-size: 1.2rem;
        min-height: 10em;
    }

    .pickup-cont .btn-white-s>span {
        font-size: 1.2rem;
    }

    .pickup-cont .btn-white-s {
        margin: 0.6em auto;
    }

    .pickup-cont .btn-white-s .arrow::after {
        background: url(../img/btn-arrow-black.svg) no-repeat center/cover;
        width: 24px;
        height: 4px;
    }

    /* slick arrow */
    .top-pickup .slick-slider .slick-prev,
    .top-pickup .slick-slider .slick-next {
        background-color: transparent;
    }

    .top-pickup .slick-slider .slick-prev::before,
    .top-pickup .slick-slider .slick-next::before {
        content: none;
    }

    .top-pickup .slick-arrow {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        padding: 0;
        width: 20px;
        height: 38px;
        color: transparent;
        z-index: 1;
        transition: opacity 0.5s;
        z-index: 1;
    }

    .top-pickup .slick-arrow:hover {
        opacity: 0.7;
    }

    .top-pickup .slick-next::before,
    .top-pickup .slick-next::after,
    .top-pickup .slick-prev::before,
    .top-pickup .slick-prev::after {
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        content: '';
        vertical-align: middle;
    }

    .top-pickup .slick-next::after,
    .top-pickup .slick-prev::after {
        width: 20px;
        height: 20px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
    }

    .top-pickup .slick-next {
        right: 20px;
    }

    .top-pickup .slick-next::after {
        right: 8px;
        transform: rotate(45deg);
    }

    .top-pickup .slick-prev {
        left: 20px;
    }

    .top-pickup .slick-prev::after {
        left: 8px;
        transform: rotate(-135deg);
    }
}

/* visit-record 230905 */
.visit-bg {
    pointer-events: none;
    top: -13vw;
}

.visit-bg-yt {
    top: -1vw;
}

.ttl-visit {
    color: #3f3f3f;
    font-size: 4.2rem;
    font-family: 'Toppan Bunkyu Midashi Gothic', 'Noto Sans JP', '游ゴシック', YuGothic, sans-serif;
    font-weight: bold;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-align: center;
}

.visit-item-ttl {
    font-size: 3.2rem;
    font-family: 'Toppan Bunkyu Midashi Gothic', 'Noto Sans JP', '游ゴシック', YuGothic, sans-serif;
    font-weight: bold;
    letter-spacing: 0.08em;
    text-align: center;
    margin-bottom: 0.4em;
}

.visit-txt {
    text-align: center;
    margin-top: 1em;
}

.visit-note {
    font-size: 80%;
    margin-top: 2em;
    text-align: center;
}

@media screen and (max-width: 960px) {
    .ttl-visit {
        font-size: 2.8rem;
    }

    .visit-item-ttl {
        font-size: 2.2rem;
    }

    .visit-txt {
        font-size: 1.4rem;
    }
}

/* ----- 20240620 ----- */
.btn-wh.is-l {
    max-width: 840px;
}

.btn-gray-s.is-plus {
    max-width: 400px;
}

.btn-gray-s .plus {
    display: block;
    font-weight: 700;
    position: relative;
}

.btn-gray-s .plus::after {
    content: '+';
    color: #fff;
    font-size: 170%;
    font-family: serif;
    font-weight: normal;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.btn-green-m {
    background: url(../img/btn-bg-green-s.jpg) no-repeat center/cover;
    box-shadow: 0px 2px 40px 0px rgba(64, 64, 64, 0.4);
    display: block;
    text-align: center;
    padding: 16px 30px;
    margin: 2.4em 0;
    max-width: 380px;
}

.btn-green-m>span {
    color: #fff;
    font-family: '游ゴシック', YuGothic, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
}

@media screen and (max-width: 960px) {
    .btn-wh .arrow::after {
        height: 5px;
    }

    .btn-green-m {
        margin: 2em auto;
        max-width: 280px;
    }

    .btn-green-m>span {
        font-size: 1.5rem;
    }
}

.l-result-01 {
    background: url(../../content/challenge_result_2023/assets/img/bg-result-02.jpg) repeat-y top center / 100%;
    color: #494949;
    text-align: center;
}

.l-result-01 .ttl-logo>img {
    display: block;
    margin: 20px auto 0;
    max-width: 1013px;
    width: 100%;
}

.l-result-01 .lead-item {
    margin: 4em 0 3.5em;
}

.l-result-01 .lead-item>p {
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.2;
    margin-bottom: 1em;
}

.l-result-01 .lead-item .txt-l {
    color: #b43912;
    font-size: 230%;
    line-height: 1.6;
    margin-top: 1em;
}

@media screen and (max-width: 960px) {
    .l-result-01 .lead-item .txt-l {
        font-size: 2rem;
    }

    .l-result-01 .lead-item {
        margin: 2.5em 0;
    }

    .l-result-01 .lead-item>p {
        font-size: 1.5rem;
        line-height: 2;
    }
}

.l-result-02 {
    background: url(../../content/challenge_result_2023/assets/img/bg-result-01.png) no-repeat bottom center / 100%;
    padding: 7em 0 20em;
    text-align: center;
}

.result-02-ttl,
.result-02-ttl * {
    font-weight: 700;
}

.result-02-ttl {
    color: #494949;
    font-size: 5rem;
    line-height: 1.9;
    margin-bottom: 1em;
}

.result-02-ttl-sub {
    display: block;
    font-size: 58%;
    line-height: 2;
    margin-bottom: 1em;
}

.result-02-ttl-sub .num {
    font-size: 140%;
    font-family: 'Helvetica', 'Arial', 'Liberation Sans', 'Nimbus Sans', sans-serif;
}

.result-02-ttl .txt-people {
    max-width: 227px;
    vertical-align: -22%;
}

.result-02-ttl .txt-pet {
    max-width: 373px;
    vertical-align: -18%;
}

.result-02-lead {
    color: #328252;
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 2.5em !important;
}

.result-02-list {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 7.5%;
    margin-bottom: 5em;
}

.result-02-list li {
    max-width: 288px;
}

.result-02-list p {
    font-weight: 700;
    margin-top: 1em;
}

.result-02-txt-l {
    margin-bottom: 4em;
}

.result-02-txt-l>p {
    color: #3f3f3f;
    font-size: 2.4rem;
}

@media screen and (max-width: 960px) {
    .l-result-02 {
        background-size: 200%;
        padding: 4em 0 12em;
    }

    .result-02-ttl {
        font-size: 2rem;
    }

    .result-02-ttl .txt-people {
        max-width: 120px;
    }

    .result-02-ttl .txt-pet {
        max-width: 160px;
        vertical-align: -22%;
    }

    .result-02-ttl-sub {
        font-size: 78%;
    }

    .result-02-lead {
        font-size: 1.5rem;
    }

    .result-02-list {
        flex-direction: column;
        align-items: center;
        margin-bottom: 1em;
    }

    .result-02-list li {
        margin-bottom: 2em;
        max-width: 62%;
    }

    .result-02-list p {
        font-size: 1.2rem;
    }

    .result-02-txt-l>p {
        font-size: 1.4rem;
    }
}

.l-result-03 {
    background: url(../../content/challenge_result_2023/assets/img/bg-result-02.jpg) repeat-y top center / 100%;
    padding-bottom: 5em;
}

.result-03-ttl {
    background: #444545;
    color: #fff;
    font-size: 4.4rem;
    font-weight: 700;
    text-align: center;
    padding: 0.3em;
}

.result-03-list {
    margin-top: 6em;
}

.result-03-list li {
    text-align: center;
    padding-bottom: 3em;
    margin: 0 auto;
    max-width: 1043px;
}

.result-03-list p {
    color: #3f3f3f;
    font-size: 110%;
    font-weight: 700;
    margin-top: 4px;
}

.l-result-03 .result-bnr-01 {
    margin: 8em auto;
}

.l-result-03 .result-bnr-02 {
    margin-top: 5em;
}

@media screen and (max-width: 960px) {
    .result-03-ttl {
        font-size: 2rem;
        padding: 0.6em 0.2em;
    }

    .result-03-list {
        margin-top: 4em;
    }

    .result-03-list li {
        text-align: center;
        padding-bottom: 2em;
    }

    .result-03-list p {
        font-size: 1.2rem;
        padding: 0 0.4em;
    }

    .l-result-03 .result-bnr-01 {
        margin: 4em auto;
    }

    .l-result-03 .result-bnr-02 {
        margin-top: 4.5em;
    }
}

.result-modal-container {
    max-width: 1280px;
}

.result-modal {
    color: #3f3f3f;
    line-height: 1.8;
    padding: 2em;
}

.result-modal p {
    font-size: 1.5rem;
    line-height: 2;
}

.result-modal-ttl-l {
    background: #414242;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    padding: 0.2em;
    text-align: center;
    margin-bottom: 1.4em;
}

.result-modal-ttl-m {
    background: #c7d3c7;
    font-size: 2.2rem;
    font-weight: 700;
    padding: 0.1em 0.8em 0.02em;
    margin: 2.5em 0 1em;
}

.result-modal .result-modal-lead {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 1.6em;
}

.result-modal-box {
    border: 1px solid #729173;
    padding: 2em 4em;
    margin-bottom: 5em;
}

.result-modal-box-ttl-l {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2em;
}

.result-modal-box-ttl-s {
    background: #414242;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 2em auto 1em;
    max-width: 260px;
}

.result-modal .result-modal-txt-l {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0.4em 0;
}

.result-modal-txt-l .icon {
    font-size: 210%;
    line-height: 1;
    vertical-align: -10%;
    padding-right: 2px;
}

.result-modal-calc {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    margin: 2em auto;
}

.result-modal-tbl {
    max-width: 1000px;
    margin: 3.5em auto 0;
}

.result-modal-tbl thead th {
    background: #729173;
    color: #fff;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    padding: 1em 1.4em;
    vertical-align: middle;
}

.result-modal-tbl tbody tr {
    background: #fff;
}

.result-modal-tbl tbody tr:nth-child(even) {
    background: #f1f4f1;
}

.result-modal-tbl tbody th,
.result-modal-tbl tbody td {
    font-weight: 700;
    text-align: center;
    padding: 0.6em;
}

.result-modal-tbl tbody td {
    font-size: 2rem;
}

.result-modal .result-modal-tbl-lead {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4em;
}

.result-modal .result-modal-tbl-note {
    text-align: right;
    font-weight: 700;
    line-height: 1.5;
    max-width: 1000px;
    margin: 1em auto 0;
}

.result-modal-graph {
    display: block;
    margin: 2em auto 3em;
    max-width: 735px;
    width: 100%;
}

@media screen and (max-width: 960px) {
    .result-modal {
        padding: 0;
    }

    .result-modal-ttl-l {
        font-size: 1.6rem;
        line-height: 1.6;
    }

    .result-modal .result-modal-lead {
        font-size: 1.4rem;
    }

    .result-modal-box-ttl-l {
        font-size: 1.4rem;
    }

    .result-modal-box {
        padding: 1.4em 1em;
        margin-bottom: 3em;
    }

    .result-modal-box-ttl-s {
        font-size: 1.4rem;
        margin: 1.6em auto 1em;
    }

    .result-modal p {
        font-size: 1.2rem;
        line-height: 1.7;
    }

    .result-modal-ttl-m {
        font-size: 1.4rem;
        margin: 1.8em 0 0.6em;
    }

    .result-modal .result-modal-txt-l {
        font-size: 1.3rem;
    }

    .result-modal-tbl {
        font-size: 1rem;
    }

    .result-modal-tbl thead th {
        padding: 1em 0.8em;
    }

    .result-modal-tbl tbody td {
        font-size: 1.2rem;
    }

    .result-modal .result-modal-tbl-note,
    .result-modal .result-modal-tbl-lead {
        font-size: 1rem;
    }

    .result-modal-calc {
        font-size: 1.2rem;
    }
}

.challenge-menu {
    background: url(../../content/challenge/assets/img/bg-menu.jpg) no-repeat center/cover;
    padding: 2em 1em;
}

.challenge-menu-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6%;
}

.challenge-menu-list>li {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.challenge-menu-list>li::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    content: '';
    width: 100%;
    height: 3px;
    background: #fff;
    transform: scale(0.4, 1);
    transform-origin: center top;
    transition: transform 0.3s;
}

.challenge-menu-list>li:hover::after {
    transform: scale(0.6, 1);
}

.challenge-menu-list a {
    color: #fff;
    display: block;
    font-size: 2.2rem;
    font-family: '游ゴシック', YuGothic, sans-serif;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    padding-bottom: 10px;
}

.challenge-menu-list a:hover {
    opacity: 1;
}

@media screen and (max-width: 960px) {
    .challenge-menu {
        padding: 1.8em 0.6em;
    }

    .challenge-menu-list {
        justify-content: space-around;
        gap: 2%;
    }

    .challenge-menu-list>li::after {
        height: 2px;
    }

    .challenge-menu-list a {
        font-size: 1.1rem;
        letter-spacing: 0.02em;
    }
}

.l-challenge {
    position: relative;
}

.l-challenge .character-01 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 77%;
    max-width: 327px;
    width: 100%;
}

.l-challenge .character-02 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 77%;
    max-width: 303px;
    width: 100%;
}

@media screen and (max-width: 960px) {
    .l-challenge .character-01 {
        top: 52.5%;
        right: 73%;
        max-width: 104px;
    }

    .l-challenge .character-02 {
        top: 52%;
        left: 75%;
        max-width: 92px;
    }
}

.l-btn-bottom .challenge-lead {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.4em;
}

.l-btn-bottom .challenge-lead>span {
    display: block;
    font-size: 75%;
    font-weight: 700;
    margin-top: 0.4em;
}

@media screen and (max-width: 960px) {
    .l-btn-bottom .challenge-lead {
        font-size: 1.4rem;
    }

    .l-btn-bottom .challenge-lead>span {
        font-size: 80%;
    }
}

.l-btn-bottom .bnr-jera {
    margin-bottom: 7em;
}

@media screen and (max-width: 960px) {
    .l-btn-bottom .bnr-jera {
        margin-bottom: 4em;
    }
}

.l-support-02 {
    position: relative;
    padding-bottom: 10vw;
    margin-bottom: 4em;
}

.l-support-02::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: url(../img/bg-support-02.png) no-repeat center bottom/cover;
    padding-top: 38.928%;
    width: 100%;
    height: 0;
    z-index: -1;
}

.l-support-02 .support-ttl {
    margin-bottom: 4.5em;
    max-width: 905px;
}

.l-support-02 .support-col {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6%;
}

.l-support-02 .support-col-video {
    max-width: 580px;
    width: 42%;
}

.l-support-02 .support-video-ttl {
    color: #505050;
    font-size: 2.4rem;
    font-family: 'Toppan Bunkyu Midashi Gothic', 'Noto Sans JP', '游ゴシック', YuGothic, sans-serif;
    font-weight: bold;
    text-align: center;
    margin-top: 0.8em;
}

.l-support-02 .support-col-item {
    width: 48%;
}

.l-support-02 .support-col-txt {
    font-size: 2.2rem;
    line-height: 2;
}

@media screen and (max-width: 960px) {
    .l-support-02 {
        padding-bottom: 12vw;
        margin-bottom: 2em;
    }

    .l-support-02::after {
        padding-top: 70%;
        background-position-x: left;
        background-size: 200%;
    }

    .l-support-02 .support-ttl {
        margin-bottom: 2.5em;
        max-width: 270px;
    }

    .l-support-02 .support-col {
        flex-direction: column;
        justify-content: center;
    }

    .l-support-02 .support-col-video,
    .l-support-02 .support-col-item {
        width: 100%;
    }

    .l-support-02 .support-video-ttl {
        font-size: 1.6rem;
    }

    .l-support-02 .support-col-txt {
        font-size: 1.3rem;
        line-height: 1.8;
        margin-top: 1.6em;
    }
}



/* ======================================================
                  ここから追加　240814　クイズ
====================================================== */

:root {
    --color-green: #32613b;
}

.js-button-apply.is-noevent{
     pointer-events: none;
     opacity:0.5;
}

.u-color-bg-yellow{
     background-color: #faf7e6;
}



@media screen and (min-width: 961px) {


    /* -------- utility -------- */

    .u-mt-10px-pc {
        margin-top: 10px;
    }

    .u-mt-20px-pc {
        margin-top: 20px;
    }


    .u-mt-30px-pc {
        margin-top: 30px;
    }


    .u-mt-40px-pc {
        margin-top: 40px;
    }


    .u-mt-50px-pc {
        margin-top: 50px;
    }


    .u-mt-60px-pc {
        margin-top: 60px;
    }


    .u-mt-70px-pc {
        margin-top: 70px;
    }


    .u-mt-80px-pc {
        margin-top: 80px;
    }


    .u-mt-90px-pc {
        margin-top: 90px;
    }


    .u-mt-100px-pc {
        margin-top: 100px;
    }


    .u-mt-110px-pc {
        margin-top: 110px;
    }


    .u-mt-120px-pc {
        margin-top: 120px;
    }




    /* -------- section -------- */

    .l-section-wallpaper-upper {

        border-top: 5px solid var(--color-green);
        border-bottom: 5px solid var(--color-green);
        background: rgba(95, 130, 99, 0.10);
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .l-section-wallpaper-upper__inner {

        max-width: 1280px;
        padding-left: 40px;
        padding-right: 40px;
        margin-left: auto;
        margin-right: auto;
    }


    .l-section-maintitle {

        max-width: 1280px;
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 60px;
        margin-left: auto;
        margin-right: auto;


    }


    .l-section-youtube {

        max-width: 1360px;
        padding-left: 40px;
        padding-right: 40px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 120px;


    }

     .l-section-mv {

       width: 100%;
/*        margin-top: 120px;*/
        text-align: center;


    }



    .l-section-wallpaper-lower {

        background: rgba(95, 130, 99, 0.10);
        padding-top: 30px;
        margin-top: 140px;
    }

    .l-section-wallpaper-lower__inner {

        max-width: 1360px;
        padding-left: 40px;
        padding-right: 40px;
        margin-left: auto;
        margin-right: auto;
    }

    .l-section-question-outer {

        padding-top: 200px;
    }


    .l-section-question {

        max-width: 1360px;
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 70px;
        padding-bottom: 70px;
        margin-left: auto;
        margin-right: auto;
        background-color: #ececec;
        margin-top: 80px;
    }


    .l-section-question__inner {

        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

    .l-section-download {

        max-width: 1360px;
        padding-left: 40px;
        padding-right: 40px;
        margin-left: auto;
        margin-right: auto;
        border: 2px solid var(--color-green);
        margin-top: 40px;
        border-radius: 10px;
    }

    .l-section-download__inner {


        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
        padding-top: 40px;
        padding-bottom: 80px;
    }

    .l-section-jera-outer{

        padding-bottom: 100px;
    }



    /* -------- flex -------- */

    .p-flex-wallpaper-upper {

        display: flex;
        /*        gap: 0 4%;*/
        flex-flow: row nowrap;
        justify-content: space-between;
        align-items: center;
    }

    .p-flex-wallpaper-upper__title {
        width: 74%;
    }

    .p-flex-wallpaper-upper__image {
        width: 21%;
    }

    .p-flex-wallpaper-lower {

        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        align-items: center;
    }

    .p-flex-wallpaper-lower__title {
        width: 66%;
    }

    .p-flex-wallpaper-lower__image {
        width: 30%;
    }

    .p-flex-youtube {

        display: flex;
        gap: 0 5%;
        flex-flow: row nowrap;
        justify-content: space-between;

    }

    .p-flex-youtube__content {

        width: 45%;
    }

    .p-flex-youtube__movie {

        width: 50%;
    }


    .p-flex-question {

        display: flex;
        gap: 0 1em;
        lex-flow: row nowrap;
        align-items: center;
    }


    .p-flex-download {


        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        justify-content: space-between;
    }

    .p-flex-download__image {

        width: 45%;
    }

    .p-flex-download__button {

        width: 48%;
    }


    .p-flex-download-button {

        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        justify-content: space-between;
    }

    .p-flex-download-button__item {

        position: relative;
        width: 48%;
    }

    .p-flex-question-title {

        display: flex;
        gap: 0 1.2em;
    }



    /* -------- title -------- */

    .p-title-youtube {
        display: inline-block;
        background-color: #494949;
        font-size: 3.0rem;
        line-height: 1.2em;
        letter-spacing: 0.08em;
        font-weight: 700;
        clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 95% 100%);
        color: #fff;
        padding-left: 30px;
        padding-right: 50px;
        padding-top: 9px;
        padding-bottom: 12px;

    }


    .p-title-question .is-q {

        font-size: 2.3rem;
        font-weight: 700;
        color: #fff;
        display: inline-block;
        background-color: var(--color-green);
        text-align: center;
        width: 60px;
        height: 40px;
    }

    .p-title-question .is-title {

        font-size: 2.6rem;
        font-weight: 700;
        line-height: 1.4em;
        width: calc(100% - 60px);
    }

    .p-title-question .is-alert {

        font-size: 2rem;
        font-weight: 700;
        line-height: 1.4em;
        margin-top: 0.6em;
        margin-bottom: 0;
        color: #ff0000;
    }

    .p-title-question .is-caption {

        font-size: 1.6rem;
        font-weight: 400;
        line-height: 1.4em;
        margin-top: 0.8em;
        margin-bottom: 0;
    }


    .p-title-download {

        max-width: 775px;
        margin-left: auto;
        margin-right: auto;
        margin-top: -52px;
    }


    .p-title-question-main {


        max-width: 780px;
        margin-left: auto;
        margin-right: auto;
    }

    /* -------- text -------- */

    .p-text-youtube {

        color: #505050;
        margin-top: 2em;
        line-height: 2.1;
    }


    .p-text-hint {

        background-color: var(--color-green);
        color: #fff;
        font-size: 2.8rem;
        text-align: center;
        font-weight: 700;
        line-height: 1.2;
        padding-top: 9px;
        padding-bottom: 13px;
        margin-top: 50px;
    }

    .p-text-caption-download {

        font-size: 1.4rem;
        font-weight: 600;
        text-align: center;
        margin-top: 30px;
    }


    /* -------- list -------- */

    .p-list-question {
        margin-top: 40px;
    }

    .p-list-question__item {
        background-color: #fff;
        padding-left: 70px;
        padding-right: 70px;
        cursor: pointer;
        line-height: 1.4;
        padding-top: 7px;
        padding-bottom: 7px;
        position: relative;
    }

    .p-list-question__item:hover {

        /*background: #d9eae8;*/
        background: #ddedeb;

    }

    .p-list-question__item:hover:after {

        content: '';
        display: inline-block;
        position: absolute;
        left: 20px;
        width: 37px;
        height: 22px;
        background: url(/action/cleague/jera/assets/img/icon-check.png) center center / contain no-repeat;
    }

    .p-list-question__item:nth-of-type(n+2) {
        margin-top: 20px;
    }

    .p-list-question__item .is-alphabet {
        font-size: 2.8rem;
        font-weight: 700;
        margin: 0;
    }

    .p-list-question__item .is-text {
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0;
    }


    .p-list-question__item.is-choice {

        background-color: #ddedeb;
    }


    .p-list-question__item.is-choice:before {

        content: '';
        display: inline-block;
        position: absolute;
        left: 20px;
        width: 37px;
        height: 22px;
        background: url(/action/cleague/jera/assets/img/icon-check.png) center center / contain no-repeat;
    }

    .p-list-question__item.is-correct {

        border: 2px solid #006dc9;
        background-color: #e4f2fe;
    }

    .p-list-question__item.is-correct:after {

        content: '';
        display: inline-block;
        position: absolute;
        right: 20px;
        width: 35px;
        height: 35px;
        background: url(/action/cleague/jera/assets/img/icon-circle.png) center center / contain no-repeat;
    }

    .p-list-question__item.is-failure {

        background-color: #fde9e9;
    }

    .p-list-question__item.is-failure:after {

        content: '';
        display: inline-block;
        position: absolute;
        right: 20px;
        width: 35px;
        height: 35px;
        background: url(/action/cleague/jera/assets/img/icon-cross.png) center center / contain no-repeat;
    }

    .p-list-question__item.is-noevent {

        pointer-events: none
    }


    /* -------- button -------- */

    .p-button-download {

        display: block;
        position: relative;
        background-color: var(--color-green);
        border: 2px solid #fff;
        border-radius: 10px;
        filter: drop-shadow(5px 5px 6px #ccc);
        color: #fff;
        font-size: 1.6rem;
        line-height: 1.6em;
        text-align: center;
        font-weight: bold;
        padding-top: 22px;
        padding-bottom: 22px;
        transition: 0.5s;
    }

    .p-button-download.is-noevent {

        pointer-events: none;
        background-color: #cdcdcd;
        color: #808080;
        filter: none;
    }


    .p-button-banner-lower {
        padding-top: 140px;
        padding-bottom: 140px;
    }

    .p-button-top {

        margin-top: 100px;
        margin-bottom: 0px;
    }


    .p-button-orange {

        display: flex;
        align-items: center;
        flex-flow: row nowrap;
        justify-content: center;
        width: 450px;
        height: 90px;
        margin-left: auto;
        margin-right: auto;
        background: url(/action/cleague/jera/assets/img/button-orange.png) center center / cover no-repeat;
        color: #fff;
        font-weight: 600;
    }


    /* -------- icon -------- */


    .p-icon-cursol-right {
        display: inline-block;
        width: 11px;
        height: 16px;
        position: absolute;
        right: 12px;
        top: 0;
        bottom: 0;
        margin: auto;

    }



    .p-icon-cursol-right::before {
        content: '';
        width: 100%;
        height: 2px;
        display: inline-block;
        background-color: #fff;
        transform-origin: left bottom;
        transform: rotate(40deg);
        position: absolute;
        left: 0px;
        top: 0px;
        transition: 0.5s;

    }

    .p-icon-cursol-right::after {
        content: '';
        width: 100%;
        height: 2px;
        display: inline-block;
        background-color: #fff;
        transform-origin: left top;
        transform: rotate(-40deg);
        position: absolute;
        left: 0px;
        bottom: 0px;
        transition: 0.5s;
    }

    .is-noevent .p-icon-cursol-right::before,
    .is-noevent .p-icon-cursol-right::after {
        background-color: #808080;
    }



    /* -------- youtube -------- */

    .p-youtube {

        width: 100%;
        aspect-ratio: 16 / 9;
    }

    /* -------- img -------- */

    .p-img-wallpaper {

        filter: drop-shadow(5px 5px 6px #ccc);
    }

}


@media screen and (max-width: 960px) {

    /* -------- utility -------- */

    .u-mt-10px-sp {
        margin-top: 10px;
    }

    .u-mt-20px-sp {
        margin-top: 20px;
    }


    .u-mt-30px-sp {
        margin-top: 30px;
    }


    .u-mt-40px-sp {
        margin-top: 40px;
    }


    .u-mt-50px-sp {
        margin-top: 50px;
    }


    .u-mt-60px-sp {
        margin-top: 60px;
    }


    .u-mt-70px-sp {
        margin-top: 70px;
    }


    .u-mt-80px-sp {
        margin-top: 80px;
    }


    .u-mt-90px-sp {
        margin-top: 90px;
    }


    .u-mt-100px-sp {
        margin-top: 100px;
    }


    .u-mt-110px-sp {
        margin-top: 110px;
    }


    .u-mt-120px-sp {
        margin-top: 120px;
    }


    /* -------- section -------- */

    .l-section-wallpaper-upper {

        border-top: 5px solid var(--color-green);
        border-bottom: 5px solid var(--color-green);
        background: rgba(95, 130, 99, 0.10);
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .l-section-wallpaper-upper__inner {

        width: 100%;
        padding-left: 5%;
        padding-right: 5%;

    }

    .l-section-about {
        margin-top: 40px !important;
    }

    .l-section-about-without-quiz {
        margin-top: 0px !important;
    }

    .l-section-youtube {

        width: 100%;
        padding-left: 5%;
        padding-right: 5%;
        margin-top: 60px;

    }


    .l-section-wallpaper-lower {

        background: rgba(95, 130, 99, 0.10);
        padding-top: 20px;
        margin-top: 60px;
    }

    .l-section-wallpaper-lower__inner {

        width: 100%;
        padding-left: 5%;
        padding-right: 5%;

    }


    .l-section-question {

        width: 100%;
        padding-left: 5%;
        padding-right: 5%;
        padding-top: 30px;
        padding-bottom: 30px;
        background-color: #ececec;
        margin-top: 15px;
    }

    .l-section-question.is-first {
        margin-top: 30px;
    }

    .l-section-question__inner {

        width: 100%;
    }

    .l-section-download {

        width: 100%;
        padding-left: 5%;
        padding-right: 5%;
        margin-top: 60px;
    }

    .l-section-download__inner {

        padding-top: 50px;
        padding-bottom: 30px;
        padding-left: 4%;
        padding-right: 4%;
        border: 1px solid var(--color-green);
        border-radius: 10px;


    }

    .l-section-question-outer {

        padding-top: 75px;
    }


    .l-section-maintitle {

        padding-top: 30px;
    }


     .l-section-jera-outer{

        padding-bottom: 50px;
    }



    /* -------- flex -------- */

    .p-flex-wallpaper-upper {

        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        align-items: center;
    }

    .p-flex-wallpaper-upper__title {
        width: 75%;
    }

    .p-flex-wallpaper-upper__image {
        width: 21%;
    }

    .p-flex-wallpaper-lower {
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        align-items: center;
    }

    .p-flex-wallpaper-lower__title {
        width: 72%;
    }

    .p-flex-wallpaper-lower__image {
        width: 24%;
    }

    .p-flex-question-title {

        display: flex;
        gap: 0 1.2em;
    }

    .p-flex-question {

        display: flex;
        gap: 0 1em;
        lex-flow: row nowrap;
        align-items: center;
    }

    .p-flex-download__image {

        width: 35%;
        margin-left: auto;
        margin-right: auto;
    }


    .p-flex-download-button {

        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        justify-content: space-between;
        margin-top: 30px;
    }

    .p-flex-download-button__item {

        position: relative;
        width: 48%;
    }





    /* -------- title -------- */

    .p-title-youtube {
        display: inline-block;
        background-color: #494949;
        font-size: 1.8rem;
        line-height: 1.2em;
        letter-spacing: 0.08em;
        font-weight: 700;
        clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 95% 100%);
        color: #fff;
        padding-left: 15px;
        padding-right: 25px;
        padding-top: 6px;
        padding-bottom: 9px;

    }



    .p-title-question .is-q {

        font-size: 1.5rem;
        font-weight: 700;
        color: #fff;
        display: inline-block;
        background-color: var(--color-green);
        width: 40px;
        height: 28px;
        text-align: center;

    }

    .p-title-question .is-title {

        font-size: 1.6rem;
        font-weight: 700;
        line-height: 1.5em;
        width: calc(100% - 40px);
    }

    .p-title-question .is-alert {

        font-size: 1.4rem;
        font-weight: 700;
        line-height: 1.4em;
        margin-top: 0.6em;
        margin-bottom: 0;
        color: #ff0000;
    }

    .p-title-question .is-caption {

        font-size: 1.2rem;
        font-weight: 400;
        line-height: 1.4em;
        margin-top: 0.8em;
        margin-bottom: 0;
    }

    .p-title-download {

        width: 95%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: -10%;
    }

    .p-title-question-main {

        padding-right: 5%;
    }




    /* -------- text -------- */

    .p-text-youtube {

        color: #505050;
        font-size: 1.4rem;
        line-height: 1.8;
        margin-top: 20px;
    }

    .p-text-hint {

        background-color: var(--color-green);
        color: #fff;
        font-size: 1.6rem;
        text-align: center;
        font-weight: 700;
        line-height: 1.2;
        padding-top: 6px;
        padding-bottom: 10px;
        margin-top: 20px;
    }

    .p-text-caption-download {

        font-size: 1.0rem;
        font-weight: 600;
        text-align: center;
        margin-top: 20px;
    }



    /* -------- list -------- */

    .p-list-question {
        margin-top: 40px;
    }

    .p-list-question__item {
        background-color: #fff;
        padding-left: 2.5em;
        padding-right: 2.5em;
        line-height: 1.4;
        padding-top: 7px;
        padding-bottom: 7px;
        position: relative;
    }

    .p-list-question__item:nth-of-type(n+2) {
        margin-top: 20px;
    }

    .p-list-question__item .is-alphabet {
        font-size: 2rem;
        font-weight: 700;
        margin: 0;
    }

    .p-list-question__item .is-text {
        font-size: 1.4rem;
        font-weight: 700;
        margin: 0;
    }

    .p-list-question__item.is-choice {

        background-color: #ddedeb;
    }

    .p-list-question__item.is-choice:before {

        content: '';
        display: inline-block;
        position: absolute;
        left: 12px;
        width: 20px;
        height: 13px;
        background: url(/action/cleague/jera/assets/img/icon-check.png) center center / contain no-repeat;
    }

    .p-list-question__item.is-correct {

        border: 2px solid #006dc9;
        background-color: #e4f2fe;
    }

    .p-list-question__item.is-correct:after {

        content: '';
        display: inline-block;
        position: absolute;
        right: 12px;
        width: 20px;
        height: 20px;
        background: url(/action/cleague/jera/assets/img/icon-circle.png) center center / contain no-repeat;
    }

    .p-list-question__item.is-failure {

        background-color: #fde9e9;
    }

    .p-list-question__item.is-failure:after {

        content: '';
        display: inline-block;
        position: absolute;
        right: 12px;
        width: 20px;
        height: 20px;
        background: url(/action/cleague/jera/assets/img/icon-cross.png) center center / contain no-repeat;
    }

    .p-list-question__item.is-noevent {

        pointer-events: none
    }



    /* -------- youtube -------- */

    .p-youtube {

        width: 100%;
        aspect-ratio: 16 / 9;
        margin-top: 25px;
    }


    /* -------- img -------- */

    .p-img-wallpaper {

        filter: drop-shadow(4px 4px 6px #ccc);
    }


    /* -------- button -------- */

    .p-button-download {

        display: block;
        position: relative;
        background-color: var(--color-green);
        border: 2px solid #fff;
        border-radius: 10px;
        filter: drop-shadow(5px 5px 6px #ccc);
        color: #fff;
        font-size: 1.1rem;
        line-height: 1.6em;
        padding-right: 0.2em;
        text-align: center;
        font-weight: bold;
        padding-top: 15px;
        padding-bottom: 15px;
        transition: 0.5s;
    }

    .p-button-download.is-noevent {

        pointer-events: none;
        background-color: #cdcdcd;
        color: #808080;
        filter: none;
    }

    .p-button-banner-lower {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .p-button-top {

        margin-top: 40px;
        margin-bottom: 0px;
    }


    .p-button-orange {

        display: flex;
        align-items: center;
        flex-flow: row nowrap;
        justify-content: center;
        width: 300px;
        height: 60px;
        margin-left: auto;
        margin-right: auto;
        background: url(/action/cleague/jera/assets/img/button-orange-sp.png) center center / cover no-repeat;
        color: #fff;
        font-weight: 600;
    }


    /* -------- icon -------- */


    .p-icon-cursol-right {
        display: inline-block;
        width: 8px;
        height: 12px;
        position: absolute;
        right: 7px;
        top: 0;
        bottom: 0;
        margin: auto;

    }

    .p-icon-cursol-right::before {
        content: '';
        width: 100%;
        height: 2px;
        display: inline-block;
        background-color: #fff;
        transform-origin: left bottom;
        transform: rotate(40deg);
        position: absolute;
        left: 0px;
        top: 0px;
        transition: 0.5s;

    }

    .p-icon-cursol-right::after {
        content: '';
        width: 100%;
        height: 2px;
        display: inline-block;
        background-color: #fff;
        transform-origin: left top;
        transform: rotate(-40deg);
        position: absolute;
        left: 0px;
        bottom: 0px;
        transition: 0.5s;
    }

    .is-noevent .p-icon-cursol-right::before,
    .is-noevent .p-icon-cursol-right::after {
        background-color: #808080;
    }






}