@charset "UTF-8";

body {
    font-family: "M PLUS Rounded 1c", serif;
    margin: 0;
    color: #fff;
}

img {
    max-width: 100%;
    vertical-align: top;
}

ul {
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
p {
    margin: 0;
}

/* mv_section */
.mv_section {
    background: url(../img/spring2026//main_bg.jpg) repeat-x left top;
}

.mv_section_sakura {
    background: url(../img/spring2026//header.png) repeat-x center top;
}

.mv_section_inner {
    max-width: 1000px;
    padding: 100px 0 50px;
    margin: 0 auto;
}

.mv_section_img {
    margin-bottom: 20px;
}

.mv_section_text {
    max-width: 1000px;
    color: #000;
    font-size: 20px;
    line-height: 1.6em;
    text-align: center;
    margin: 0 auto 30px;
}

.slider_wrap {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.slick-dots li button:before {
    font-size: 10px;
}

@media(max-width:767px) {
    .mv_section_sakura {
        background-size: 100%;
    }

    .mv_section_inner {
        max-width: 1000px;
        padding: 50px 20px 30px;
        margin: 0 auto;
    }

    .mv_section_img {
        margin-bottom: 20px;
    }

    .mv_section_text {
        font-size: 14px;
        line-height: 1.4em;
        padding: 0 20px;
        margin-bottom: 20px;
    }

    .slider_wrap {
        padding: 0 20px;
    }
}

/* cp_section */
.cp_section {
    background: url(../img/spring2026//cp_bg.jpg) repeat center top;
    background-size: 50%;
}

.cp_section_inner {
    max-width: 1000px;
    padding: 50px 0;
    margin: 0 auto;
}

.cp_section_title {
    text-align: center;
    margin-bottom: 50px;
}

.cp_section_title_zoom {
    display: inline-block;
}

.cp_section_title h2 {
    color: #eb6b97;
    font-size: 40px;
    line-height: 1em;
    font-weight: bold;
}

.cp_section_title h2:first-child {
    margin-bottom: 10px;
}

.cp_section_title .small_title {
    font-size: 24px;
    line-height: 1em;
}

.cp_section_date {
    text-align: center;
    background: #eb6b97;
    color: #fff;
    font-size: 20px;
    line-height: 1em;
    font-weight: bold;
    padding: 10px;
    margin: 0 auto;
    max-width: 600px;
    margin-bottom: 30px;
    border-radius: 5px;
}


@media(max-width:767px) {
    .cp_section_inner {
        padding: 30px 20px;
    }

    .cp_section_title {
        margin-bottom: 15px;
    }

    .cp_section_title h2 {
        font-size: 18px;
    }

    .cp_section_title h2:first-child {
        margin-bottom: 5px;
    }

    .cp_section_title .small_title {
        font-size: 14px;
    }

    .cp_section_date {
        font-size: 12px;
        margin-bottom: 20px;
    }
}

/* cp_category */
.cp_category_block {
    margin-bottom: 20px;
}

.cp_category_title {
    color: #eb6b97;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.categories {
    display: flex;
}

.category_btn {
    border: none;
    background-color: inherit;
    color: #eb6b97;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    line-height: 1em;
    border-radius: 5px;
}

.category_btn.selected {
    background-color: #eb6b97;
    color: #fff;
}

@media(max-width: 767px) {
    .cp_category_block {
        margin-bottom: 10px;
    }

    .cp_category_title {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .category_btn {
        padding: 6px;
        font-size: 14px;
        border-radius: 3px;
    }
}

/* cp_block */
.cp_block {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
}

.cp_list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.cp_link {
    text-decoration: none;
}

.category_content {
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    opacity: 1;
    transform: scale(1);
    position: relative;
}

.category_content:not(.active) {
    opacity: 0;
    transform: scale(0);
    visibility: hidden;
    position: absolute;
    /* グリッドの影響を受けなくする */
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
}

.category_content.comming .cp_image {
    position: relative;
}

.category_content.comming .cp_image img,
.category_content.comming .cp_accouut {
    opacity: 0.5;
}

/* COMING SOONのバッジ */
.category_content.comming .cp_image::after {
    content: "COMING SOON";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    opacity: 1;
    /* バッジは透過しない */
}

@media(max-width: 767px) {
    .cp_block {
        padding: 20px;
    }

    .cp_title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .cp_list {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

/* cp_listの中身 */
.cp_image {
    margin-bottom: 10px;
}

.cp_accouut {
    display: flex;
    align-items: center;
}

.accouut_image {
    width: 20%;
    border-radius: 100%;
    margin-right: 5%;
}

.account_name {
    color: #000;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2em;
    margin-bottom: 5px;
}

.screen_name {
    color: #536471;
    font-size: 12px;
    line-height: 1em;
}

/* footer */
footer {
    background: #000;
    padding: 20px;
}

footer p {
    color: #fff;
    text-align: center;
    font-size: 12px;
    line-height: 1em;
}

@media(max-width: 767px) {
    footer {
        background: #000;
        padding: 20px;
    }

    footer p {
        color: #fff;
        text-align: center;
        font-size: 12px;
        line-height: 1em;
    }
}

/* アニメーション */
.mv_section_img {
    animation: fadeInTop 0.7s ease 0s 1 normal;
}

@keyframes fadeInTop {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
    }
}

.cp_section_title_zoom {
    display: inline-block;
    animation: zoomFade 3.5s ease-in-out infinite;
}

@keyframes zoomFade {
    0% {
        transform: scale3d(1, 1, 1)
    }

    50% {
        transform: scale3d(1.5, 1.5, 1.5)
    }

    to {
        transform: scale3d(1, 1, 1)
    }
}

.cp_up_main_title {
    animation: poyoyon2 1s ease-in-out forwards;
}


/* さくら */
.sakura {
    position: absolute;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sakura li {
    position: absolute;
    list-style: none;
    top: -120px;
    background: #ffdbed;
    border-radius: 0% 70%;
    animation: fall 4s linear infinite, sway 2s ease-in-out infinite alternate;
}


@keyframes fall {
    to {
        top: 120%;
    }
}

@keyframes sway1 {
    from {
        transform: translateX(0px) rotate(0deg);
    }

    to {
        transform: translateX(200px) rotate(-45deg);
    }
}

@keyframes sway2 {
    from {
        transform: translateX(200px) rotate(-45deg);
    }

    to {
        transform: translateX(0px) rotate(0deg);
    }
}

.sakura li:nth-child(1) {
    left: 0%;
    width: 24px;
    height: 15px;
    animation: fall 15s linear infinite,
        sway1 3s ease-in-out infinite alternate;
    animation-delay: 2s;
}

.sakura li:nth-child(2) {
    left: 5%;
    width: 13px;
    height: 9px;
    animation: fall 15s linear infinite,
        sway1 2.5s ease-in-out infinite alternate;
    animation-delay: 8s;
}

.sakura li:nth-child(3) {
    left: 15%;
    width: 16px;
    height: 10px;
    animation: fall 15s linear infinite,
        sway1 3.5s ease-in-out infinite alternate;
    animation-delay: 13s;
}

.sakura li:nth-child(4) {
    left: 30%;
    width: 16px;
    height: 10px;
    animation: fall 15s linear infinite,
        sway2 4s ease-in-out infinite alternate;
    animation-delay: 7s;
}

.sakura li:nth-child(5) {
    left: 40%;
    width: 24px;
    height: 16px;
    animation: fall 15s linear infinite,
        sway1 4s ease-in-out infinite alternate;
    animation-delay: 0s;
}

.sakura li:nth-child(6) {
    left: 55%;
    width: 24px;
    height: 15px;
    animation: fall 15s linear infinite,
        sway2 3s ease-in-out infinite alternate;
    animation-delay: 3s;
}

.sakura li:nth-child(7) {
    left: 65%;
    width: 16px;
    height: 10px;
    animation: fall 15s linear infinite,
        sway1 3.5s ease-in-out infinite alternate;
    animation-delay: 7s;
}

.sakura li:nth-child(8) {
    left: 50%;
    width: 13px;
    height: 9px;
    animation: fall 15s linear infinite,
        sway1 3s ease-in-out infinite alternate;
    animation-delay: 1s;
}

.sakura li:nth-child(9) {
    left: 80%;
    width: 16px;
    height: 10px;
    animation: fall 13s linear infinite,
        sway2 4s ease-in-out infinite alternate;
    animation-delay: 4s;
}

.sakura li:nth-child(10) {
    left: 85%;
    width: 24px;
    height: 16px;
    animation: fall 15s linear infinite,
        sway1 3s ease-in-out infinite alternate;
    animation-delay: 8s;
}

.sakura li:nth-child(11) {
    left: 10%;
    width: 13px;
    height: 9px;
    animation: fall 17s linear infinite,
        sway2 4.5s ease-in-out infinite alternate;
    animation-delay: 1s;
}

.sakura li:nth-child(12) {
    left: 20%;
    width: 16px;
    height: 12px;
    animation: fall 17s linear infinite,
        sway1 3s ease-in-out infinite alternate;
    animation-delay: 9s;
}

@media(max-width:767px) {
    .sakura li {
        top: -80px;
    }

    @keyframes fall {
        to {
            top: 60%;
        }
    }

    .sakura li:nth-child(1) {
        left: 0%;
        width: 12px;
        height: 8px;
    }

    .sakura li:nth-child(2) {
        left: 5%;
        width: 10px;
        height: 7px;
    }

    .sakura li:nth-child(3) {
        left: 15%;
        width: 12px;
        height: 6px;
    }

    .sakura li:nth-child(4) {
        left: 30%;
        width: 10px;
        height: 6px;
    }

    .sakura li:nth-child(5) {
        left: 40%;
        width: 8px;
        height: 5px;
    }

    .sakura li:nth-child(6) {
        left: 55%;
        width: 8px;
        height: 5px;
    }

    .sakura li:nth-child(7) {
        left: 65%;
        width: 8px;
        height: 5px;
    }

    .sakura li:nth-child(8) {
        left: 50%;
        width: 13px;
        height: 9px;
    }

    .sakura li:nth-child(9) {
        left: 80%;
        width: 8px;
        height: 6px;
    }

    .sakura li:nth-child(10) {
        left: 85%;
        width: 13px;
        height: 9px;
    }

    .sakura li:nth-child(11) {
        left: 10%;
        width: 13px;
        height: 9px;
    }

    .sakura li:nth-child(12) {
        left: 20%;
        width: 13px;
        height: 9px;
    }
}

/* swiper */
/* デフォルトのドットスタイル */
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}

/* アクティブなドットのスタイル */
.swiper-pagination-bullet-active {
    width: 30px;
    /* 横に伸ばす */
    border-radius: 10px;
    /* 丸みを維持 */
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

/* アクティブドットの進行アニメーション */
.swiper-pagination-bullet-active::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #999;
    transform-origin: left;
    transform: scaleX(0);
    animation: progressAnimation 5s linear forwards;
}

/* プログレスバーのアニメーション */
@keyframes progressAnimation {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.swiper-link:hover {
    opacity: 1;
}
