@charset "UTF-8";

.top-section,
.shipro,
.container_b,
.container_c {
    margin: 0;
    padding: 0;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 400;
    font-style: normal;
}


/* ーーーートップセクションーーーー */

.top-section {
    display: grid;
    max-width: 100%;
    margin-bottom: 1.6rem;
}

.top-section p {
    text-align: left;
    /* 文章は左寄せ */
    max-width: 100%;
    padding-left: 6%;
    padding-right: 6%;
    margin: 1.8rem 0 2.8rem 0;
    /* font-size: calc(1rem + 0.5vw); */
    font-size: clamp(0.9rem, 1rem + 1vw, 1.1rem);
    text-wrap: wrap;
}

.top-section img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* PC用レイアウト */
@media screen and (min-width: 768px) {
    .top-section {
        margin-bottom: 3rem;
    }
}

/* ーーーーイベント02 しなこのセクションーーーー */
/* しなこちゃんプロデュース */

.shipro {
    display: block;
    align-items: center;
    max-width: 100%;
    margin-bottom: 1.6rem;
}

.shinako_h {
    text-align: center;
    font-size: calc(1.2rem + 1vw);
    font-weight: bold;
}

.container_a {
    display: grid;
    justify-items: stretch;
    align-items: stretch;
    grid-template-columns: 1fr;
    /* SPは1列表示 */
    gap: auto;
    /* padding: auto; */
    margin-bottom: 1.6rem;
}

.item_a {
    max-width: 100%;
    text-align: center;
    margin-bottom: 2rem;

}

.item_a img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.item_a p {
    margin: 0.6rem 0 0;
    padding: 0.4rem 0;
    font-weight: bold;
    /* font-size: calc(0.9rem + 1vw); */
    font-size: clamp(0.6rem, 0.9rem + 1vw, 1.1rem);
}

/* PC用レイアウト */
@media screen and (min-width: 768px) {
    .shipro {
        margin-bottom: 3rem;
    }

    .container_a {
        display: grid;
        max-width: 100%;
        padding: 0 10%;
        align-items: center;
        grid-template-columns: repeat(2, 1fr);
        /* PCでは2列 */
        gap: 20px;
        /* アイテム間の余白 */
    }
}

/* ーーーーなみだボンボンのセクションーーーー */

.container_b {
    max-width: 100%;
    align-items: center;
    text-align: center;
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-bottom: 1.6rem;
}

.container_b h4 {
    text-align: center;
    font-size: calc(1.1rem + 1vw);
    font-weight: bold;
    margin-bottom: 1rem;
}

.item_b {
    margin-bottom: 2rem;
    max-width: 100%;
    align-items: center;
    text-align: center;
}

.item_b a img {
    max-width: 100%;
    align-items: center;
    text-align: center;

}

.item_b p {
    font-weight: bold;
    /* font-size: calc(0.9rem + 1vw); */
    font-size: clamp(0.6rem, 0.9rem + 1vw, 1.1rem);
    margin: 0.6rem 0 0;
    padding: 0.4rem 0;
}

@media screen and (min-width:768px) {
    .container_b {
        padding: 0 10%;
        margin-bottom: 4rem;
    }

    .item_b a img {
        text-align: center;
        align-items: center;

    }
}

/* ーーーーイベント03 バレンタイントップへのセクションーーーー */

.container_c {
    max-width: 100%;
    align-items: center;
    text-align: center;
}

.to_top a {
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.Btn {
    margin-bottom: 1.6rem;
    max-width: 100%;
    /* margin-left: 4%; */
    /* margin-right: 4%; */
    padding-left: 4%;
    padding-right: 4%;
    color: #ffffff;
    /* 文字色は白 */
    background: #be64d9;
    border: 1px solid transparent;

    border-radius: 60px;
    padding: 0.6rem 2rem;

    font-size: calc(1rem + 1vw);
    font-size: clamp(0.6rem, 1rem + 1vw, 1.4rem);

    font-weight: bold;
    transition: all 0.3s ease;
    /* スムーズに変化 */
}

.Btn p {
    display: inline-flex;
    align-items: center;
    /* 縦方向中央揃え */
}

/* ホバー時 */
.Btn:hover {
    color: #be64d9;
    /* 文字色を変更 */
    background: #ffffff;
    /* 背景色を白に */
    border: 1px solid #be64d9;
    /* 枠線を紫に */
    transition: .4s;
}

/* pタグ内の矢印部分も文字色に合わせる */
.Btn p::after {
    content: '';
    margin-left: 8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 12px;
    border-color: transparent transparent transparent #ffffff;
    /* 通常は白矢印 */
    vertical-align: middle;
    transition: border-color 0.3s ease;
}

/* ホバー時の矢印 */
.Btn:hover p::after {
    border-color: transparent transparent transparent #be64d9;
    /* 紫矢印 */
}

/*スマホは改行する*/
.pc_hid {
    display: block;
}

@media screen and (min-width:768px) {
    .to_top {

    }

    /*PCで改行を無効にする*/
    .pc_hid {
        display: none;
    }
}