@charset "UTF-8";

.fade-in {
    opacity: 0;
}

.inview {
    animation-name: fade-in;
    animation-duration: .5s;
    animation-timing-function: ease-in-out;
    animation-delay: .4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

@keyframes fade-in {
    0% {
        transform: translateY(40px);
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.wrapper {
    margin: 0 auto;
    overflow: hidden;
}

.inner {
    max-width: 880px;
    width: calc(100% - 30px);
    margin: 0 auto;
}

header {
    background: #fff;
    width: 100%;
}

.header-inner {
    max-width: 100%;
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 10px 0;
}

.header-logo {
    width: 250px;
}

.fv {
    position: relative;
}

.fv h1 {
    position: absolute;
    top: 50%;
    left: 5vw;
    transform: translate(-120%, -50%) scale(1.3);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.4s ease-out;
    width: 50vw;
}

.fv h1.show {
    transform: translate(0, -50%) scale(1);
    opacity: 1;
}

.fv-bottom {
    background: #FBC600;
    padding: 20px 0;
    transition: transform 0.3s ease-out;
}

.fv-bottom.fixed {
    width: 100%;
    left: 0;
    top: 10px;
    position: fixed;
    z-index: 10;
    transform: translateY(-10px);
}

.fv-placeholder {
    display: none;
}

.fv-bottom-nav {
    max-width: 900px;
    width: calc(100% - 30px);
    margin: 0px auto;
}

.fv-bottom-nav ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.fv-bottom-nav ul li a {
    padding: 0 23px;
    line-height: 1;
    border-right: 2px solid #000;
    font-size: 18px;
    color: #000;
    transition: all .6s;
}

.fv-bottom-nav ul li:last-child a {
    padding-right: 0;
    border-right: none;
}

.fv-bottom-nav ul li a:hover {
    color: #0E6E42;
}

.banner-cont {
    margin-top: 100px;
}

.first {
    background-image: url(../img/first_bg.webp);
    background-size: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 100px 0 0;
}

.first-flex {
    display: flex;
    justify-content: space-between;
}

.first-flex-left {
    width: 175px;
}

.first-flex-right {
    width: calc(100% - 300px);
}

.first-flex-right-top {
    width: calc(100% - 80px);
    margin: 0 auto 30px;
}

.first-flex-center {
    margin: 20px auto 55px;
}

.first-line {
    width: 0%;
    /* 初期状態は非表示 */
    height: 6px;
    background: #0E6E42;
    margin-bottom: 60px;
    position: relative;
    transition: width 0.5s ease-in-out;
    /* 水平線が伸びるアニメーション */
}

/* 丸 (before) */
.first-line::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background: #0E6E42;
    border-radius: 50%;
    left: -80px;
    bottom: -77.5px;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

/* 斜め線 (after) */
.first-line::after {
    content: "";
    position: absolute;
    width: 0px;
    /* 初期状態では長さ 0 */
    background: #0E6E42;
    height: 6px;
    transform: rotate(-45deg);
    left: -84px;
    bottom: -34px;
    transition: width 0.5s ease-in-out;
}

/* 丸が表示 */
.first-line.show-before::before {
    opacity: 1;
    transform: scale(1);
}

/* 斜め線が伸びる */
.first-line.show-after::after {
    width: 100px;
}

/* 水平線が伸びる */
.first-line.show-line {
    width: 100%;
}

.movie {
    padding-bottom: 240px;
}

.movie-list ul {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.movie-list ul li {
    width: 47%;
    cursor: pointer;
    transition: all .7s;
}

.movie-list ul li:hover {
    opacity: .8;
}

.movie-list-title {
    margin-bottom: 40px;
}

.movie-list-title h3 {
    color: #0E6E42;
    text-align: center;
    font-size: 24px;
    padding-bottom: 7px;
}

.movie-list-title img {
    height: 12px;
    width: auto;
    margin: 0 auto;
    display: block;
}

#youtube-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: pointer;
}

.popup-content {
    position: absolute;
    width: 80%;
    max-width: 800px;
    background: #fff;
    padding: 20px;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.popup-content iframe {
    width: 100%;
    height: 400px;
}

.close-btn {
    position: absolute;
    top: -7.5px;
    right: 1px;
    font-size: 32px;
    cursor: pointer;
    color: #000;
    line-height: 1;
}

.concept {
    background: #FBC600;
    position: relative;
    padding: 320px 0 120px;
}

.abs-img {
    position: absolute;
}

.concept .abs-img:nth-child(1) {
    width: 500px;
    right: -125px;
    top: -140px;
}

.concept .abs-img:nth-child(2) {
    width: 400px;
    top: 20px;
    left: 40px;
}

.concept-top {
    max-width: 320px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    top: -80px;
}

.concept-center {
    margin-bottom: 80px;
}

.concept-bottom {
    position: relative;
}

.concept-bottom-txt {
    position: absolute;
    top: 50px;
    left: 55px;
}

.concept-bottom-txt img {
    width: 280px;
    margin-bottom: 25px;
}

.concept-bottom-txt p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.8;
}

.about {
    background: #0E6E42;
    position: relative;
}

.about .inner {
    position: relative;
    padding: 80px 0;
}

.about-title {
    width: 790px;
    left: 0;
    top: -40px;
    position: absolute;
}

.about .abs-img {
    width: 345px;
    bottom: -120px;
    right: -55px;
    z-index: 1;
}

.about-txt p {
    font-size: 20px;
    line-height: 2;
    color: #fff;
    z-index: 2;
    position: relative;
}

.arrow-parts {
    position: absolute;
    z-index: 1;
}

.about .arrow-parts {
    width: 35px;
    right: 80px;
    bottom: -120px;
    z-index: 2;
}

.effect {
    background: #E8F2D1;
    position: relative;
    padding-bottom: 160px;
}

.bg-parts {
    position: absolute;
    width: 100%;
}

.bg-parts.right {
    right: 0;
    bottom: 0;
}

.bg-parts.left {
    left: 0;
    top: 0;
}

.under-title {
    margin: 0px auto;
    display: block;
    max-width: 750px;
    top: -30px;
    position: relative;
    z-index: 2;
}

.cmn-box {
    background: #fff;
    position: relative;
    z-index: 1;
    border: 5px solid #0E6E42;
    margin-top: -45px;
}

.effect-box-inner,
.secret-box-inner,
.howto-box-inner {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.effect-box-txt {
    max-width: 600px;
    margin: 0 auto 40px;
}

.effect-box-list ol {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.effect-box-list ol li {
    width: 45%;
    margin-bottom: 60px;
}

.effect-box-list ol li:nth-child(5),
.effect-box-list ol li:nth-child(6) {
    margin-bottom: 0;
}

.effect-box-list-title {
    margin-bottom: 15px;
}

.effect-box-list-title img {
    margin-bottom: 15px;
}

.effect-box-list-title p {
    font-size: 18px;
    line-height: 1.6;
    color: #0E6E42;
    text-align: center;
    font-weight: 600;
}

.effect-box-list ol li:nth-child(6) img.glaph-img {
    width: 113%;
    max-width: 113%;
    margin-top: 45.5px;
}

.secret {
    background: #FBC600;
    position: relative;
    padding-bottom: 160px;
}

.secret .under-title {
    top: -165px;
}

.secret .cmn-box {
    margin-top: -175px;
}

.secret .abs-img {
    width: 185px;
    top: 40px;
    right: -90px;
}

.secret-box-txt {
    max-width: 650px;
    margin: 0 auto 30px;
}

.secret .arrow-parts {
    width: 175px;
    left: -60px;
    top: 60px;
}

.secret-box-img {
    max-width: 820px;
    height: 820px;
    position: relative;
    margin: 0 auto 60px;
}

.secret .secret-box-img .arrow-parts {
    width: 37px;
    bottom: 0;
    right: 0;
    left: initial;
    top: initial;
}

.center-img {
    position: absolute;
    width: 170px;
    top: 51.5%;
    left: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    z-index: 1;
}

.secret-box-img-list li {
    width: 305px;
    position: absolute;
    z-index: 1;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.secret-box-img-list li.show {
    opacity: 1 !important;
    transform: scale(1);
}

.secret-box-img-list li:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.secret-box-img-list li:nth-child(2) {
    top: 23%;
    left: 1%;
}

.secret-box-img-list li:nth-child(3) {
    top: 23%;
    right: 1%;
}

.secret-box-img-list li:nth-child(4) {
    bottom: 3%;
    left: 13.5%;
}

.secret-box-img-list li:nth-child(5) {
    bottom: 3%;
    right: 13.5%;
}

.show {
    opacity: 1 !important;
    transform: scale(1);
}

.center-img.show {
    transform: scale(1)translate(-50%, -50%);
    -webkit-transform: scale(1)translate(-50%, -50%);
    -ms-transform: scale(1)translate(-50%, -50%);
}

.secret-box-img::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 10px solid #0E6E42;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.secret-box-img.show-before::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.secret-acc-wrap .acc-content li {
    margin-bottom: 60px;
}

.secret-acc-wrap .acc-content li:last-child {
    margin-bottom: 0;
}

.acc-item {
    display: none;
}

.acc {
    position: relative;
}

.acc-icon {
    position: absolute;
    width: 75px;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.acc-num {
    padding: 5px 20px 5px 80px;
    border-radius: 30px;
    position: relative;
    cursor: pointer;
    transition: all .7s;
}

.acc-num:hover {
    transform: scale(1.01);
}

.acc-num::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    right: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-image: url(../img/acc-icon.svg);
}

.open .acc-num::before {
    transform: translateY(-50%)rotate(180deg);
    -webkit-transform: translateY(-50%)rotate(180deg);
    -ms-transform: translateY(-50%)rotate(180deg);
}

.secret-acc-wrap .acc-content li:nth-child(1) .acc-num {
    background: #E81800;
}

.secret-acc-wrap .acc-content li:nth-child(2) .acc-num {
    background: #FF8800;
}

.secret-acc-wrap .acc-content li:nth-child(3) .acc-num {
    background: #2B6DBF;
}

.secret-acc-wrap .acc-content li:nth-child(4) .acc-num {
    background: #54B647;
}

.secret-acc-wrap .acc-content li:nth-child(5) .acc-num {
    background: #2FB1D3;
}

.acc-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.acc-title img {
    width: 42.5px;
}

.acc-title h3 {
    width: calc(100% - 50px);
    font-size: 36px;
    font-weight: 600;
    color: #fff;
}

.acc-title h3 span {
    font-size: 20px;
}

.secret-acc-wrap .acc-content li:nth-child(1) .acc-num span {
    color: #FBC600;
}

.acc-item-flex {
    display: flex;
    justify-content: space-between;
    padding: 40px 20px 0;
}

.acc-item-flex-right {
    width: 345px;
}

.acc-item-flex-left {
    width: calc(100% - 390px);
}

.acc-item-flex-left p {
    font-size: 20px;
    line-height: 1.7;
    letter-spacing: 0.125rem;
}

.acc-item-flex-left-full {
    width: 100%;
}

.howto {
    background: #E8F2D1;
    position: relative;
    padding-bottom: 160px;
}

.howto .under-title {
    top: -165px;
}

.howto .under-title--lineup {
    top: 0;
}

.howto .cmn-box {
    position: relative;
    margin-top: -175px;
}

.howto .cmn-box--lineup {
    margin-top: -7px;
}

.howto .arrow-parts {
    width: 170px;
    right: -120px;
    top: 80px;
}

.howto-box-inner h3 {
    max-width: 740px;
    margin: 0 auto 20px;
}

.howtobox-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.howtobox-flex--center {
    align-items: center;
    margin-top: -100px;
}

.howtobox-flex-left {
    width: 44%;
    margin-left: -7.5%;
}

.howtobox-flex-right {
    width: 67.5%;
    padding-top: 40px;
}

.howtobox-flex-right-top {
    margin: 0 auto 30px;
    width: calc(100% - 40px);
}

.howtobox-flex-right-center {
    margin-bottom: 20px;
}

.howtobox-flex-right-center h3 {
    background: #000;
    text-align: center;
    line-height: 1;
    padding: 5px 0;
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
}

.howtobox-flex-right-center li {
    display: flex;
}

.howtobox-flex-right-center li span {
    font-size: 24px;
    line-height: 1;
    color: #0E6E42;
}

.howtobox-flex-right-center li p {
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.howtobox-flex-right-bottom img {
    margin-bottom: 10px;
}

.howtobox-btn {
    text-align: center;
    margin-bottom: 40px;
}

.howtobox-btn a {
    font-size: 20px;
    text-align: center;
    display: block;
    background: #F45943;
    color: #fff;
    padding: 15px 0;
    border-radius: 30px;
    position: relative;
    max-width: 360px;
    margin: 0 auto 25px;
    position: relative;
    transition: all .7s;
    font-weight: 700;
}

.howtobox-btn a:hover {
    opacity: .7;
}

.howtobox-btn a::before {
    position: absolute;
    content: "▶︎";
    display: inline-block;
    right: 20px;
    font-size: 16px;
    color: #ffff;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.howtobox-btn p {
    font-size: 16px;
    font-weight: 600;
}

.banner-cont a {
    display: block;
    transition: all .7s;
}

.banner-cont a:hover {
    opacity: .7;
}

.refill_img {
    width: 50%;
    display: block;
    margin-inline: auto;
    margin-top: 15px;
}

.effect-box-list ol li .swiper-button-prev,
.effect-box-list ol li .swiper-button-next {
    width: 18px;
    height: 30px;
}

.effect-box-list ol li .swiper-button-prev {
    right: initial;
    left: -30px;
}

.effect-box-list ol li .swiper-button-next {
    right: -30px;
    left: initial;
}

.effect-box-list ol li .swiper-button-prev::after,
.effect-box-list ol li .swiper-button-next::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
}

.effect-box-list ol li .swiper-button-prev::after {
    border-width: 15px 18px 15px 0;
    border-color: transparent #88C23F transparent transparent;
}

.effect-box-list ol li .swiper-button-next::after {
    border-width: 15px 0 15px 18px;
    border-color: transparent transparent transparent #88C23F;
}

.swiper-wrap {
    position: relative;
}

/* トップに戻るボタンのスタイル */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #0E6E42;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(20px);
    z-index: 10;
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 12px solid #fff;
}

.lineup_blocks {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    padding: 50px 50px 0;
    gap: 50px;

    li {
        text-align: center;
        display: grid;
        gap: 0;
        grid-template-rows: subgrid;
        grid-row: span 3;
    }

    h3 {
        margin-bottom: 60px;
    }
}


@media screen and (max-width: 1600px) {
    .about .arrow-parts {
        left: 80px;
    }
}

@media screen and (max-width: 1300px) {
    .fv h1 {
        left: 5%;
        width: 50%;
    }
}

@media screen and (max-width: 1000px) {
    .inner {
        max-width: 100%;
        width: calc(100% - 40px);
    }
}

@media screen and (max-width: 834px) {
    .header-logo {
        width: 140px;
    }

    .fv h1 {
        left: 5vw;
        width: 85vw;
        top: 35vw;
    }

    .fv-bottom-nav ul {
        flex-wrap: wrap;
        max-width: 330px;
        justify-content: center;
        margin: 0 auto;
    }

    .fv-bottom-nav ul li a {
        padding: 0px 5px;
        font-size: 14px;
        display: block;
        margin-bottom: 10px;
    }

    .fv-bottom-nav ul li:nth-child(3) a {
        padding-right: 0;
        border-right: none;
    }

    .fv-bottom {
        padding: 15px 0 5px;
        margin-bottom: 0px;
    }

    .banner-cont {
        margin-top: 40px;
    }

    .first {
        background-image: url(../img/first_bg_sp.webp);
        padding: 60px 0 0;
    }

    .first-flex {
        display: block;
        max-width: 400px;
        margin: 0 auto;
    }

    .first-flex-right {
        width: 100%;
    }

    .first-flex-right-top {
        width: calc(100% - 60px);
        margin: 0 auto 20px;
        max-width: 300px;
    }

    .first-flex-center {
        margin: 20px 10px 45px auto;
        max-width: 260px;
    }

    .first-line {
        height: 3px;
        margin-bottom: 20px;
        width: 0%;
    }

    .first-line::after {
        width: 0px;
        height: 3px;
        left: -50px;
        bottom: -21px;
    }

    .first-line::before {
        bottom: -48.5px;
        width: 10px;
        height: 10px;
        left: -50px;
    }

    /* 斜め線が伸びる */
    .first-line.show-after::after {
        width: 60px;
    }

    /* 水平線が伸びる */
    .first-line.show-line {
        width: 110%;
    }

    .first-flex-center h3 {
        width: 90%;
        margin-left: auto;
    }

    .first-flex-bottom {
        display: flex;
        justify-content: space-between;
    }

    .first-flex-bottom img {
        width: 35%;
    }

    .first-flex-bottom picture:nth-child(2) {
        width: 50%;
    }

    .first-flex-bottom picture:nth-child(2) img {
        width: 100%;
    }

    .first-flex-bottom img.sp {
        top: -45px;
        position: relative;
    }

    .refill_img {
        width: 100%;
    }

    .movie {
        padding-bottom: 70px;
        background: #fff;
        margin-top: -8vw;
    }

    .movie-list ul {
        display: block;
        justify-content: space-between;
        max-width: 500px;
        margin: 0px auto;
        padding-top: 10px;
    }

    .movie-list ul li {
        width: 100%;
    }

    .movie-list ul li:nth-child(1) {
        margin-bottom: 60px;
    }

    .movie-list-title h3 {
        font-size: 16px;
        padding-bottom: 5px;
    }

    .movie-list-title img {
        height: 9px;
    }

    .popup-content {
        width: 95%;
    }

    .back-to-top {
        bottom: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
    }

    .concept-top {
        max-width: 180px;
        top: -40px;
    }

    .concept .abs-img:nth-child(1) {
        width: 200px;
        right: -50px;
        top: 15px;
    }

    .concept .abs-img:nth-child(2) {
        width: 160px;
        top: 5px;
        left: -10px;
    }

    .concept-center {
        max-width: 500px;
        margin: 0 auto 40px;
    }

    .concept {
        padding: 160px 0 80px;
    }

    .concept-bottom {
        position: relative;
        max-width: 500px;
        margin: 0 auto;
    }

    .concept-bottom-txt {
        top: 15px;
        left: 30px;
    }

    .concept-bottom-txt img {
        width: 60%;
        margin-bottom: 0px;
        margin-left: -5%;
        margin-top: 1%;
    }

    .concept-bottom-txt p {
        font-size: 20px;
        color: #fff;
    }

    .about-title {
        width: calc(100% - 80px);
        max-width: 400px;
        top: -30px;
        left: 50%;
    }

    .is-active.js-scroll-anim.about-title {
        transform: translateX(-50%)translateY(0);
        -webkit-transform: translateX(-50%)translateY(0);
        -ms-transform: translateX(-50%)translateY(0);
    }

    .about .inner {
        padding: 60px 0;
    }

    .about-txt p {
        font-size: 18px;
        padding: 0 20px;
        line-height: 1.8;
    }

    .about .abs-img {
        width: 180px;
        bottom: -40px;
        right: 5px;
        left: initial;
        transform: initial;
    }

    .about .arrow-parts {
        width: 17.5px;
        right: initial;
        bottom: -50px;
        left: 19vw;
    }

    .under-title {
        max-width: 240px;
        top: 0px;
    }

    .cmn-box {
        border: 3px solid #0E6E42;
        margin-top: -10px;
        max-width: 500px;
        margin: -10px auto 0;
    }

    .effect-box-inner,
    .secret-box-inner,
    .howto-box-inner {
        padding: 40px;
    }

    .effect-box-txt {
        max-width: 95%;
        margin: 0 auto 30px;
    }

    .effect-box-list ol {
        display: block;
    }

    .effect-box-list ol li,
    .effect-box-list ol li:nth-child(5) {
        width: 90%;
        margin: 0 auto 40px;
    }

    .effect-box-list-title p {
        font-size: 16px;
    }

    .effect-box-list ol li .swiper-button-prev,
    .effect-box-list ol li .swiper-button-next {
        width: 9px;
        height: 15px;
    }

    .effect-box-list ol li .swiper-button-next::after {
        border-width: 9px 0 9px 9px;
    }

    .effect-box-list ol li .swiper-button-next {
        right: -15px;
    }

    .effect-box-list ol li .swiper-button-prev::after {
        border-width: 9px 9px 9px 0;
    }

    .effect-box-list ol li .swiper-button-prev {
        left: -15px;
    }

    .effect {
        padding-bottom: 80px;
    }

    .effect-box-list ol li:nth-child(6) img.glaph-img {
        width: 110%;
        max-width: 110%;
        margin-right: -10%;
        margin-top: 20px;
    }

    .secret .under-title {
        top: -80px;
    }

    .secret .cmn-box {
        margin-top: -90px;
    }

    .secret .arrow-parts {
        width: 100px;
        left: -35px;
        top: 65px;
    }

    .secret-box-txt {
        max-width: 100%;
        width: 90%;
        margin: 0 auto 20px;
    }

    .secret .abs-img {
        width: 120px;
        top: 95px;
        right: -20px;
    }

    .secret-box-img {
        max-width: 300px;
        height: 300px;
        margin: 0 auto 30px;
    }

    .secret-box-img-list li {
        width: 110px;
    }

    .center-img {
        width: 68px;
        top: 51%;
    }

    .secret .secret-box-img .arrow-parts {
        width: 15px;
        bottom: -10px;
    }

    .secret-acc-wrap .acc-content li {
        margin-bottom: 30px;
    }

    .acc-num {
        padding: 5px 20px 3.5px 50px;
    }

    .acc-icon {
        position: absolute;
        width: 45px;
        left: -15px;
    }

    .acc-title img {
        width: 24.5px;
    }

    .acc-title h3 {
        width: calc(100% - 30px);
        font-size: 18px;
    }

    .acc-title h3 span {
        font-size: 12px;
    }

    .acc-num::before {
        width: 20px;
        height: 20px;
        right: 10px;
    }

    .secret-acc-wrap .acc-content li:nth-child(1) .acc-num span {
        display: block;
    }

    .secret {
        padding-bottom: 80px;
    }

    .bg-parts {
        max-width: 500px;
    }

    .howto .under-title {
        top: -80px;
    }

    .howto .cmn-box {
        margin-top: -90px;
    }

    .howto {
        padding-bottom: 70px;
    }

    .howto-box-inner h3 {
        max-width: 300px;
        margin: 0 auto 30px;
    }

    .howto .arrow-parts {
        width: 90px;
        right: 0px;
        top: -70px;
        transform: rotate(90deg);
    }

    .howtobox-flex {
        display: block;
        justify-content: space-between;
        margin-bottom: 40px;
    }

    .howtobox-flex-left {
        width: 100%;
        margin-left: 0;
    }

    .howtobox-flex-right {
        width: 100%;
        padding-top: 25px;
    }

    .howto-box-inner h3 {
        max-width: 100%;
        margin: 0px auto 40px;
        font-size: 16px;
    }

    .howtobox-flex-right-center {
        margin-bottom: 10px !important;
    }

    .howtobox-flex-right-center h3 {
        margin-bottom: 10px !important;
    }

    .howtobox-flex-right-center li p {
        font-size: 14px;
    }

    .howtobox-flex-right-center li span {
        font-size: 18px;
    }

    .howtobox-btn a {
        font-size: 16px;
        padding: 12.5px 0;
        max-width: 240px;
        margin: 0 auto 20px;
    }

    .howtobox-btn a::before {
        right: 20px;
        font-size: 14px;
        top: 52%;
        right: 12.5px;
    }

    .howtobox-btn p {
        font-size: 14px;
    }

    .howtobox-btn {
        margin-bottom: 0px;
    }

    .movie-list-title {
        margin-bottom: 25px;
    }

    .acc-item-flex {
        display: block;
        padding: 20px 0px 0;
    }

    .acc-item-flex-left {
        width: 100%;
        margin-bottom: 10px;
    }

    .acc-item-flex-left p {
        font-size: 14px;
    }

    .acc-item-flex-right {
        width: 70%;
        margin: 0 auto;
    }

    .secret-box-img::before {
        width: 180px;
        height: 180px;
        border: 5px solid #0E6E42;
    }

    .howtobox-flex--center {
        margin-top: 0;
        margin-bottom: 0;
    }

    .howto .under-title--lineup {
        top: 0;
    }

    .howto .cmn-box--lineup {
        margin-top: -3px;
        padding-bottom: 30px;
    }

    .lineup_blocks {
        padding: 30px 10px 0px;
        gap: 20px;

        h3 {
            margin-bottom: 20px;
        }
    }

    .howtobox-btn a {
        font-size: 12px;
        padding: 6px 0;
    }

    .howtobox-btn a::before {
        right: 6px;
        font-size: 12px;
    }
}

@media screen and (max-width: 499px) {
    .first-flex {
        max-width: 300px;
    }

    .first-flex-center {
        margin: 20px 10px 45px auto;
        max-width: 187.5px;
    }

    .first-flex-bottom img.sp {
        top: -27.5px;
    }

    .concept-top {
        max-width: 150px;
        top: -35px;
    }

    .concept .abs-img:nth-child(1) {
        width: 155px;
        right: -50px;
        top: 22.5px;
    }

    .concept .abs-img:nth-child(2) {
        width: 135px;
        top: 0px;
        left: -6px;
    }

    .concept {
        padding: 140px 0 80px;
    }

    .concept-bottom-txt img {
        margin-top: 0%;
    }

    .concept-bottom-txt p {
        font-size: 3.5vw;
    }

    .about-title {
        width: calc(100% - 20px);
        top: -25px;
        left: 54.5%;
    }

    .about-txt p {
        font-size: 14px;
    }

    .about .abs-img {
        width: 130px;
        bottom: -37px;
    }

    .about .inner {
        padding: 50px 0 40px;
    }

    .about .arrow-parts {
        width: 15px;
        left: 20vw;
    }

    .effect-box-list-title p {
        font-size: 14px;
    }

    .effect-box-inner,
    .secret-box-inner,
    .howto-box-inner {
        padding: 40px 30px;
    }

    .secret .arrow-parts {
        width: 85px;
        left: -25px;
    }

    .secret .abs-img {
        width: 110px;
        top: 75px;
        right: -22.5px;
    }

    .secret-box-img {
        max-width: 250px;
        height: 250px;
    }

    .secret-box-img-list li {
        width: 92.5px;
    }

    .center-img {
        width: 55px;
    }

    .acc-icon {
        width: 40px;
    }

    .acc-num {
        padding: 5px 25px 3.5px 35px;
    }

    .acc-title h3 {
        font-size: 16px;
    }

    .acc-title h3 span {
        font-size: 10px;
    }

    .howto .arrow-parts {
        width: 80px;
        right: -25px;
        top: -70px;
    }

    .howtobox-flex-right-center li p {
        font-size: 12px;
    }

    .howtobox-flex-right-center li span {
        font-size: 16px;
    }

    .howtobox-btn p {
        font-size: 11px;
    }

    .popup-content {
        width: 97.5%;
        padding: 10px;
    }

    .popup-content iframe {
        height: 220px;
    }

    .close-btn {
        color: #0E6E42;
    }

    .secret-box-img::before {
        width: 150px;
        height: 150px;
        border: 3px solid #0E6E42;
    }
}
