@charset "UTF-8";

@import url(font.css);


/* Common */
header {
    margin-bottom: 0 !important;
}

#main .mainInner {
    max-width: none !important;
    background-color: #fcf4db;
}

#smk {
    font-family: "BIZUDPGothic, NotoSansJP", sans-serif;
}

footer {
    margin-top: 0 !important;
}

#main article h1 {
    padding: 0;
    margin: 0;
    border-bottom: none;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

/* smk */

#smk section.mv_area {
    background-image: url("../images/mv_pat_bg.png");
    background-repeat: repeat;
    text-align: center;
}

.mv {
    padding: 50px 0 0;
}

/* movie */

.title {
    padding: 30px 0;
}

.movie_content {
    max-width: 1000px;
    margin: 0 auto 0;
    padding: 50px 1%;
}


.box_movie {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.box_movie iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

.point_list {
    margin: 20px auto;
}

.point_ul {
    display: flex;
    justify-content: center;
    align-items: center;
}


.lineup_title {
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

.point_area {
    text-align: center;
}

.lineup_title .lineup_title_inner {
    max-width: 200px;
    margin: 0 auto;
}

.lineup_title_sub {
    max-width: 250px;
    margin: 20px auto;
}

.lineup_ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

    gap: 16px;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
    width: 95%;
}

.lineup_list.lineup_set .lineup_ul {
    grid-template-columns: repeat(2, 1fr);
    max-width: 870px;
}

.lineup_ul a {
    display: block;
}

.lineup_ul img {
    width: 100%;
    height: auto;
    display: block;
}

.lineup_ul li {
    background-color: rgb(241 167 196 / 40%);
    border-radius: 10px;
    width: 100%;
    height: auto;
}

.lineup_set .lineup_ul li {

    background-color: rgb(194 231 237 / 90%);
}

.line {
    text-align: center;
}

.txt_detail {
    text-align: right;
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
}




.txt_single {
    color: #e05491;
    margin: 1rem auto 0;
    width: 100%;
    max-width: 1200px;
    width: 95%;
}

.txt_detail.txt_set {
    color: #18a0c9;
    max-width: 870px;
    margin-top: 1rem;
    margin-bottom: 70px;
}

h3 {
    max-width: 580px;
    margin: 0 auto;
    padding: 30px;
}

/* hover */

.lineup_ul li:hover {
    background-color: rgba(241, 167, 196, 0.8);
}

.lineup_set .lineup_ul li:hover {
    background-color: rgba(163, 228, 238, 0.8);
}

.lineup_ul a img:hover {
    opacity: 1;
}

/* ループスライダー */

.slider {
    overflow: hidden;
    width: 100%;
    /* background: #fff; */
    padding: 10px 0;
}

.slider-track {
    display: flex;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.slide {
    display: block;
    margin-right: 24px;
    transition: transform 0.2s ease;
}

.slide:hover {
    transform: scale(1.05);
}

.slide img {
    width: 230px;
    /* 459の約50% */
    height: 320px;
    /* 640の約50% */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    cursor: pointer;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.slider::before,
.slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
}

.slider::before {
    left: 0;
    background: linear-gradient(to right, #fcf4db, transparent);
}

.slider::after {
    right: 0;
    background: linear-gradient(to left, #fcf4db, transparent);
}

.slider {
    position: relative;
}

.line_subchara_area {
    text-align: center;
    margin: 80px 0;
}

.line_subchara_area img {
    margin: 0 auto;
}


.line_area01 {
    text-align: center;
    margin: 100px auto;
    max-width: 1080px;
}


.qa_area {
    display: grid;
    grid-template-columns: repeat(2, 575px);
    gap: 24px;
    justify-content: center;
    margin: 0 auto 100px;
}

/* 3つ目の画像だけ中央配置 */
.qa_area .qa_bnr:nth-child(3) {
    grid-column: 1 / -1;
    /* 2列分を使う */
    justify-self: center;
    /* その中で中央寄せ */
}

.qa_bnr img {
    width: 575px;
    max-width: 100%;
    height: auto;
    justify-self: center;
    /* 各画像も中央寄せ */
}

/* ポップアップ */

.modal-2__wrap input {
    display: none;
}

.modal-2__open-label,
.modal-2__close-label {
    cursor: pointer;
}



.modal-2__open-label {
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 250px;
    margin:0 auto;
    padding: .8em 2em;
    border: none;
    border-radius: 5px;
    background-color: #2589d0;
    color: #ffffff;
    font-weight: 600;
    font-size: 1em; */
}

.modal-2 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.modal-2__open-input:checked+label+input+.modal-2 {
    display: block;
    animation: modal-2-animation .6s;
}



.modal-2__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /* width: 80%;
    max-width: 650px; */

    width: auto;
    /* max-width: 760px; */

    background-color: #fefefe;
    z-index: 2;
    border-radius: 5px;
}



.modal-2__close-label {
    background-color: #896d46;
    color: #fff;
    border: 2px solid #fff;
    text-align: center;
    position: fixed;
    top: -15px;
    right: -2%;
    z-index: 99999;
    width: 45px;
    height: 45px;
    border-radius: 24px;
    font-size: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-2__content {
    overflow-y: auto;
    /* padding: 39px 45px 40px; */
    padding: 39px 20px 40px;
}

.modal-2__content.content-2,
.modal-2__content.content-3 {
    max-height: 90vh;
    width: 95vw;
    padding: 0;
    max-width: 1200px;
}


.qa_bnr img.modal-2__img {
    width: 100%;
}

.modal-2__img {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    /* 画面の80%以内に制限 */
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.qa_bnr img.modal-2__img-2,
.qa_bnr img.modal-2__img-3 {
    display: block;
    max-width: 100%;

    max-height: none;
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}


.modal-2__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

/* modal_boxレイヤーここから */

.modal-2__open-label-2_animation {
    display: flex;
    justify-content: center;
    align-items: center;

}


.outer {
    width: 100%;
    max-width: 585px;
    aspect-ratio: 585 / 400;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

/* 背景を入れるのはここ */
.inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* ← 縦も中央 */
    gap: 12px;

    background-image: url("../images/img_tap_bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    /* or cover */
}

/* 中のボックス */
.box {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.box1 {
    width: 63.2%;
    aspect-ratio: 370 / 97;
    /* background-image: url("images/img1.png"); */
}

.box2 {
    width: 26.2%;
    aspect-ratio: 153 / 46;
    /* background-image: url("images/img2.png"); */
}

.box3 {
    width: 30.3%;
    aspect-ratio: 177 / 115;
    /* background-image: url("images/img3.png"); */
}

/* modal_boxレイヤーここまで */

@keyframes modal-2-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media only screen and (max-width: 520px) {

    /*  .modal-2__open-label {
       max-width: 90%;
        padding: .94em 2.1em .94em 2.6em; 
    }
*/
    .modal-2__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-2__content-wrap {
        width: 90vw;
    }

    .modal-2__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}

/* ポップアップEND */

.btn_area {
    margin-bottom: 20px;
}

.btn_area a {
    display: block;
    width: fit-content;
    margin: 0 auto;
    max-width: 900px;
}

.lp_copyright_sp {
    display: none;
}


.lp-footer {
    position: relative;
    width: 100%;
    min-height: 300px;
    /* 画像の高さ分を確保 */
}

/* 左画像 */
.lp-footer-left {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 240px;
    /* 表示サイズ */
    width: auto;
    /* 比率維持 */
}

/* 右画像 */
.lp-footer-right {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    height: 240px;
}

.lp_copyright {
    position: absolute;
    bottom: 10px;
    max-width: 320px;
    width: auto;
    right: 0;
    left: 0;
    margin: 0 auto;
}

#pagetop {
    position: fixed;
    right: 5px;
    bottom: 50px;
    width: 110px;
    z-index: 5;
}