/*
Theme Name: Twenty Twenty-Five Child (Classic)
Template: twentytwentyfive
Version: 1.0
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");

:root {
    --font-poppins: "Poppins", sans-serif;
    --font-raleway: "Raleway", sans-serif;
    --font-noto: "Noto Serif JP", serif;
}

.sp {
    display: block !important;
}

.pc {
    display: none !important;
}

body {
    font-family: "Noto Sans JP", sans-serif;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
}

@media screen and (min-width: 768px) {
    .sp {
        display: none !important;
    }

    .pc {
        display: block !important;
    }
}

.w-full {
    width: 100%;
}

.grid {
    display: grid;
    gap: var(--gap-pc);
}

.grid-cols-pc-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-pc-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-pc-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-pc-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media screen and (max-width: 767px) {
    .grid {
        gap: var(--gap-sp);
    }

    .grid-cols-sp-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .grid-cols-sp-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-cols-sp-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .grid-cols-sp-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.container {
    padding-inline: 20px;
    max-width: 1100px;
    margin-inline: auto;
    box-sizing: content-box;
}

.landing-page__section-title {
    font-size: 132px;
    line-height: 155px;
    font-weight: 600;
    font-family: var(--font-raleway);
    margin: 0;
    left: var(--pc-left, auto);
    right: var(--pc-right, auto);
    width: max-content;
    max-width: calc(100% - var(--pc-left, 0px) - var(--pc-right, 0px));
}

@media screen and (max-width: 767px) {
    .landing-page__section-title {
        font-size: 39px;
        font-weight: 700;
        line-height: 100%;
        margin: 10px 0 !important;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (min-width: 768px) and (max-width: 997px) {
    .landing-page__section-title {
        width: 100%;
        display: flex;
        justify-content: center;
        font-size: 70px;
        line-height: 120px !important;
    }
}

.lp-header {
    width: 100%;
    height: 60px;
}

.lp-header__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.custom-logo-link img {
    display: block;
    width: 180px;
    height: auto;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .lp-header {
        height: 50px;
    }

    .custom-logo-link img {
        width: 150px !important;
    }
}

@media screen and (max-width: 767px) {
    .lp-header {
        height: 40px;
    }

    .custom-logo-link img {
        width: 90px !important;
    }
}

.container {
    padding-inline: 20px;
    max-width: 1100px;
    margin-inline: auto;
    box-sizing: content-box;
}

/* Footer */
.footer-wrapper {
    background-color: #000;
    color: white;
    font-size: 12px;
    line-height: 18px;
    font-family: var(--font-poppins);
    padding: 23px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

@media screen and (max-width: 767px) {
    .footer-wrapper {
        gap: 6px;
        font-size: 9px;
        line-height: 14px;
        padding: 20px 0;
    }
}

.footer-wrapper p {
    margin: 0;
}

.footer-logo {
    width: 150px;
    object-fit: contain;
}

@media screen and (max-width: 767px) {
    .footer-logo {
        width: 90px;
    }
}

/* Social links */
.social-links {
    position: relative;
    max-width: 750px;
    height: 150px;
    background-color: #f0f0f0;
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 26px;
    margin-bottom: 200px;
}

@media screen and (max-width: 767px) {
    .social-links {
        max-width: 330px;
        margin-top: 16px;
        margin-bottom: 74px;
        height: 110px;
    }
}

@media (min-width: 768px) and (max-width: 997px) {
    .social-links {
        max-width: 80%;
    }
}

.social-links__title {
    font-family: var(--font-raleway);
    font-weight: 600;
    font-size: 45px;
    margin: 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .social-links__title {
        font-size: 27px;
        font-weight: 700;
    }
}

.social-links__icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
}

.social-links--icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

@media screen and (max-width: 767px) {
    .social-links__icons {
        gap: 30px;
    }

    .social-links--icon img {
        width: 24px;
        height: 24px;
    }
}

/* Scroll button */
.scroll-btn {
    transition: all 0.65s;
    background-color: transparent;
    border: none;
    padding: 0;
    position: fixed;
    bottom: 110px;
    right: 30px;
    z-index: 100;
    mix-blend-mode: exclusion;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

@media screen and (max-width: 767px) {
    .scroll-btn {
        right: 12px;
        bottom: 85px;
    }
}

.scroll-btn__text {
    color: #fff;
    font-family: var(--font-poppins);
    font-size: 12px;
    line-height: 18px;
}

.scroll-btn__arrow {
    display: block;
    width: 1px;
    height: 37px;
    background-color: #fff;
    position: relative;
    transform: scale(1, 0);
    transform-origin: bottom center;
    animation: baseArrowAnimation 2.5s ease-in-out infinite forwards;
}

.scroll-btn__arrow::after {
    content: "";
    display: block;
    width: 1px;
    height: 5px;
    border-right: 1px solid #fff;
    position: absolute;
    right: 0px;
    animation: endArrowAnimation 2.5s ease-in-out infinite forwards;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Scroll down */
.scroll-btn--down {
    --arrow-rotate-deg: 45deg;
}

.scroll-btn--down .scroll-btn__arrow {
    transform-origin: top center;
}

.scroll-btn--down .scroll-btn__arrow::after {
    transform-origin: right bottom;
    bottom: 0;
}

.scroll-btn--down:has(~ .scroll-btn--up.active) {
    opacity: 0;
}

/* Scroll to top button */
.scroll-btn--up {
    --arrow-rotate-deg: -45deg;
}

.scroll-btn--up:not(.active) {
    opacity: 0;
}

.scroll-btn--up.active {
    cursor: pointer;
}

.scroll-btn--up .scroll-btn__arrow {
    transform-origin: bottom center;
}

.scroll-btn--up .scroll-btn__arrow::after {
    transform-origin: right top;
    top: 0;
}

@keyframes baseArrowAnimation {
    0% {
        transform: scale(0, 0);
    }

    30% {
        transform: scale(1, 1);
    }

    100% {
        transform: scale(1, 1);
    }
}

@keyframes endArrowAnimation {
    0% {
        transform: rotate(var(--arrow-rotate-deg)) scale(0, 0);
    }

    55% {
        transform: rotate(var(--arrow-rotate-deg)) scale(1, 1);
    }

    100% {
        transform: rotate(var(--arrow-rotate-deg)) scale(1, 1);
    }
}




/* Lineup Section */
.section-lineup {
    background-color: #f0f0f0;
    position: relative;
    padding-top: 260px;
    padding-bottom: 230px;
}

.section-lineup__title {
    --pc-left: 20px;

    position: absolute;
    top: 0;
    color: white;
}

.section-lineup__item {
    background-color: white;
    margin-top: 25px;
}

.section-lineup__item--image {
    position: relative;
    padding-top: 67%;
}

.section-lineup__item--image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-lineup__item--details {
    padding: 45px 75px 73px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.grid-cols-pc-3 .section-lineup__item--details,
.grid-cols-pc-4 .section-lineup__item--details {
    padding: 30px 30px 60px;
}

.grid-cols-pc-3 .section-lineup__item--link a,
.grid-cols-pc-4 .section-lineup__item--link a {
    width: 67.5%;
}

.grid-cols-pc-4 .section-lineup__item--link a img {
    right: 20px;
}

.section-lineup__item--title {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font-poppins);
    margin: 0;
}

.section-lineup__item--desc {
    font-size: 13px;
    line-height: 27px;
    margin: 0;
}

/*.section-lineup__item--link {*/
/*    position: relative;*/
/*}*/

.section-lineup__item--link a {
    display: block;
    background-color: black;
    color: white;
    width: 300px;
    max-width: 100%;
    padding: 18px;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    margin-inline: auto;
    font-family: var(--font-poppins);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    text-decoration: none;
    box-sizing: border-box;
}

.section-lineup__item--link img {
    position: absolute;
    right: 61px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
}

.grid-cols-pc-3 .section-lineup__item--link img {
    right: 40px;
}

@media screen and (max-width: 767px) {
    .section-lineup {
        padding-top: 146px;
        padding-bottom: 131px;
    }

    .section-lineup__item--details {
        padding: 30px 25px 62px;
        gap: 20px;
    }

    .grid-cols-sp-2 .section-lineup__item--details {
        padding: 30px 15px 62px;
    }

    .section-lineup__item--link a {
        width: 67.5%;
        max-width: 270px;
    }

    /*.grid-cols-sp-2 .section-lineup__item--link a {*/
    /*    width: 80%;*/
    /*    max-width: 270px;*/
    /*}*/

    .grid-cols-sp-1 .section-lineup__item--link img {
        right: 35px !important;
    }

    .grid-cols-pc-3 .section-lineup__item--link a img,
    .grid-cols-pc-4 .section-lineup__item--link a img,
    .grid-cols-sp-2 .section-lineup__item--link img {
        right: 5px;
    }
}

@media (min-width: 767px) and (max-width: 997px) {
    .section-lineup {
        padding-top: 190px;
        padding-bottom: 170px;
    }

    /*.grid-cols-pc-1 .section-lineup__grid,*/
    /*.grid-cols-pc-2.section-lineup__grid {*/
    /*    gap: 50px !important;*/
    /*}*/

    .section-lineup__item--details {
        padding: 30px 35px 60px;
    }

    .grid-cols-pc-3 .section-lineup__item--details,
    .grid-cols-pc-4 .section-lineup__item--details {
        padding: 25px 15px 50px;
    }

    .grid-cols-pc-3 .section-lineup__item--link a img {
        right: 15px;
    }

    .grid-cols-pc-4 .section-lineup__item--link a img {
        right: 5px;
    }

    .section-lineup__item--link a {
        width: 67.5%;
        max-width: 270px;
    }

    .section-lineup__item--link a img {
        right: 40px;
    }
}

@media (min-width: 998px) and (max-width: 1199px) {
    .section-lineup {
        padding-top: 220px;
        padding-bottom: 200px;
    }

    /*.grid-cols-pc-1 .section-lineup__grid,*/
    /*.grid-cols-pc-2.section-lineup__grid {*/
    /*    gap: 80px !important;*/
    /*}*/

    .section-lineup__item--details {
        padding: 45px 65px 70px;
    }

    .grid-cols-pc-3 .section-lineup__item--link a img {
        right: 30px;
    }

    .grid-cols-pc-4 .section-lineup__item--link a img {
        right: 15px;
    }

    .section-lineup__item--link a {
        width: 67.5%;
        max-width: 270px;
    }
}

/* Where to buy section */
.section-where-to-buy {
    position: relative;
    padding-block: 360px 200px;
    background-color: white;
}

@media screen and (max-width: 767px) {
    .section-where-to-buy {
        padding-block: 146px 150px;
    }
}

.section-where-to-buy__title {
    --pc-left: 20px;

    position: absolute;
    top: 0;
    color: #f0f0f0;
}

@media screen and (min-width: 768px) {
  .section-where-to-buy__title {
    line-height: 160px;
  }
}

.section-where-to-buy__grid {
    display: grid;
    gap: var(--gap-pc);
}

@media screen and (max-width: 767px) {
    .section-where-to-buy__grid {
        gap: var(--gap-sp);
    }
}

.section-where-to-buy__item {
    background-color: #f0f0f0;
    aspect-ratio: 1 / 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-block: 35px;
    box-sizing: border-box;
}

@media screen and (max-width: 1199px) {
    .section-where-to-buy__item {
        aspect-ratio: unset;
        min-height: 150px;
        flex-direction: row;
        padding: 20px;
        text-align: left;
        gap: 60px;
    }

    .grid-cols-sp-2 .section-where-to-buy__item {
        gap: 10px;
        padding: 10px;
    }
}

.section-where-to-buy__item--link {
    text-decoration: none;
    background-color: #f0f0f0;
}

.section-where-to-buy__item--text {
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-poppins);
    padding-inline: 35px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .section-where-to-buy__item--text {
        flex: 1;
        justify-content: flex-start;
        height: unset;
        font-size: 14px;
        line-height: 0;
        padding-inline: 0;
    }

    .section-where-to-buy__item--text p {
        text-decoration: underline;
        line-height: 21px;
    }
}

.section-where-to-buy__item--text[data-aos="fade-up"] {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
}

.section-where-to-buy__item--text p {
    margin: 0;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.section-where-to-buy__item--image {
    width: 100%;
    max-width: 180px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .section-where-to-buy__item--image {
        max-width: 30%;
    }
}

.section-where-to-buy__item--image img {
    width: 100%;
    object-fit: contain;
    transform: scale(1) translate3d(0, 0, 0);
}

@media screen and (min-width: 768px) {
    .section-where-to-buy__item--text p::before {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .section-where-to-buy__item--text p::after {
        -webkit-transform: translate3d(-101%, 0, 0);
        transform: translate3d(-101%, 0, 0);
    }

    .section-where-to-buy__item--link:hover .section-where-to-buy__item--image img {
        transition: -webkit-transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
        transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
        transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
            -webkit-transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: scale(1.05) translate3d(0, 0, 0);
        transform: scale(1.05) translate3d(0, 0, 0);
    }

    .section-where-to-buy__item--text p::before,
    .section-where-to-buy__item--text p::after {
        --easing-default: cubic-bezier(0.473, 0.427, 0, 0.993);

        content: "";
        width: 100%;
        height: 1px;
        position: absolute;
        bottom: 0;
        left: 0;
        background-color: black;
        transition: -webkit-transform 0.4s cubic-bezier(0.473, 0.427, 0, 0.993);
        transition: transform 0.4s cubic-bezier(0.473, 0.427, 0, 0.993);
        transition: transform 0.4s cubic-bezier(0.473, 0.427, 0, 0.993),
            -webkit-transform 0.4s cubic-bezier(0.473, 0.427, 0, 0.993);
        transition: -webkit-transform 0.4s var(--easing-default);
        transition: transform 0.4s var(--easing-default);
        transition: transform 0.4s var(--easing-default),
            -webkit-transform 0.4s var(--easing-default);
    }

    .section-where-to-buy__item--link:hover .section-where-to-buy__item--text p::before {
        transform: translate3d(101%, 0, 0);
    }

    .section-where-to-buy__item--link:hover .section-where-to-buy__item--text p::after {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        transition-delay: 0.5s;
    }
}

@media (min-width: 767px) and (max-width: 997px) {
    .section-where-to-buy {
        padding-block: 200px 200px;
    }
}

@media (min-width: 998px) and (max-width: 1199px) {
    .landing-page__section-title {
        width: 100%;
        display: flex;
        justify-content: center;
        font-size: 100px;
        line-height: 140px;
    }

    .section-where-to-buy {
        padding-block: 250px 200px;
    }

    .section-where-to-buy__item {
        display: flex;
        justify-content: space-between;
    }

    .section-where-to-buy__item--image img {
        width: 80% !important;
    }

    .section-where-to-buy__item--text {
        display: flex;
        justify-content: flex-start;
        width: 50%;
        font-size: 16px;
    }
}

@media (min-width: 767px) and (max-width: 1199px) {
    .section-where-to-buy__grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .section-where-to-buy__item {
        display: flex;
        justify-content: space-between;
    }

    .section-where-to-buy__item--image {
        width: 50%;
        margin-left: 10%;
    }

    .section-where-to-buy__item--text {
        display: flex;
        justify-content: flex-start;
        width: 50%;
        font-size: 16px;
    }
}
