@charset "UTF-8";

/* header パンくずリスト*/
.Breadcrumb {
    padding: 1em;
}

.Breadcrumb-ListGroup {
    display: flex;
}

.Breadcrumb-ListGroup-Item-Link[href]:hover {
    opacity: 0.5;
}

.Breadcrumb-ListGroup>*+* {
    margin-left: 0.5em;
}

.Breadcrumb-ListGroup>*+*::before {
    content: ">";
    margin-left: 0.5em;
    margin-right: 0.5em;
}

/* ボタンリンク */
.btn {
    display: block;
    margin: 0 auto;
    text-decoration: none;
    text-align: center;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: 600;
}

.btn1 {
    padding: 15px 30px;
    color: #c90606;
    background-color: #fcfcfc;
    font-size: 14px;
    width: 40%;
}

.btn1 a:hover {
    color: #c90606
}

.btn1 a:visited {
    color: #c90606;
}

.btn1 a:link {
    color: #c90606;
}

.btn1:hover {
    opacity: 0.8;
    transition-duration: 0.3s;
}


/* fade-in Anime */
.fade-in {
    opacity: 0;
    transition-duration: 2s;
    transition-property: opacity, transform;

}

.fade-in-up {
    transform: translate(0, 50px);
}

.fade-in-down {
    transform: translate(0, -50px);
}

.fade-in-left {
    transform: translate(-50px, 0);
}

.fade-in-right {
    transform: translate(50px, 0);
}

.scroll-in {
    opacity: 1;
    transform: translate(0, 0);
}

.delayed-image {
    animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}


/* base_design */
.font_EN {
    font-family: "helvetica-lt-pro", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.main {
    max-width: 700px;
    margin: 0 auto;
    font-family: "yu-gothic-pr6n", sans-serif !important;
    font-style: normal;
    font-weight: 700;
    color: #fcfcfc;
    font-size: 13px;
    text-align: center;
    overflow: hidden;
    letter-spacing: 0.05em;
    overflow: hidden;
    background-color: #c6001a;
    /* padding: 60px 0; */
}

.main img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.top,
.bottom {
    position: relative;
    background: #c6001a;
    height: 60px;
    /* ヘッダー全体の高さ */
    overflow: hidden;
}

/* スカラップ（太めの丸） */
.scallop {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 110%;
    height: 60px;
    transform: translateX(-50%);
    background: radial-gradient(circle at 30px -15px, #ffdfe3 50px, transparent 51px);
    background-size: 60px 60px;
    background-position: center;
}

.scallop_bottom {
    position: absolute;
    top: 0;
    /* 上に固定（下の要素に使うときは top に） */
    left: 50%;
    width: 110%;
    height: 60px;
    transform: translateX(-50%) rotate(180deg);
    /* ← ここがポイント！ */
    background: radial-gradient(circle at 30px -15px, #ffdfe3 50px, transparent 51px);
    background-size: 60px 60px;
    background-position: center;
}

.main_title,
.sub_title {
    font-family: "pacifico", sans-serif !important;
    font-weight: 400;
    font-style: normal;
    color: #fcfcfc;
    font-size: 55px;
    margin-bottom: 10px;
}

.main_title {
    margin: 20px auto;
}

.main_title::before {
    content: "♥";
    color: #fcfcfc;
    margin-right: 5px;
    font-size: 25px;
}

.main_title::after {
    content: "♥";
    color: #fcfcfc;
    margin-left: 5px;
    font-size: 25px;
}

.sub_title {
    font-size: 28px;
}

.main_txt {
    width: calc(100% - 20%);
    margin: 0 auto;
    border-radius: 30px;
    padding: 40px 20px 50px;
    color: #fcfcfc;
    font-size: 14px;
    line-height: 1.5;
}

.item_contents {
    width: calc(100% - 20%);
    margin: 0 auto;
}

.item_box {
    margin-bottom: 60px;
}

.item_img {
    width: 80%;
    margin: 0 auto;
}

.item_img img {
    border-radius: 50%;
}

.point {
    font-family: "pacifico", sans-serif !important;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.03em;
    font-size: 48px;
    margin: 15px auto;
}

.item_txt {
    letter-spacing: 0.05em;
    line-height: 1.8;
    font-size: 13px;
}

.end_number {
    font-size: 12px;
    margin-bottom: 80px;
}

.pc_none {
    display: none;
}




@media screen and (max-width: 768px) {

    .main {
        max-width: 100%;
    }

}



@media screen and (max-width: 599px) {

    .main_title {
        font-size: 52px;
    }

    .item_img {
        width: 85%;
    }

    .point {
        font-size: 45px;
    }

    .btn1 {
        width: 48%;
    }


}

@media screen and (max-width: 430px) {

    .main_title {
        font-size: 48px;
    }

    .sub_title{
        font-size: 26px;
    }

    /* .main_txt{
        font-size: 13px;
    } */

    .item_img {
        width: 90%;
    }

    /* .item_txt{
        font-size: 12px;
    } */

    .btn1 {
        width: 52%;
        font-size: 13px;
    }

    .end_number {
        font-size: 10px;
    }

    .pc_none {
        display: block;
    }

}