body {
    font-family: 'M PLUS 1p','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3',Meiryo,メイリオ,sans-serif;
}
/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #ec6ca5;
    text-align: center;
    color: #fff;
    opacity: 0.8;
}

/* Loading画像中央配置　*/
#splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
    width: 260px;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    margin: 0;
    padding: 0;
}

.section04 {
    background-color: #f4b4cf;
    padding: 60px 0;
    margin-top: -10px;
}

.box01 {
    background-color: #fff;
    border-radius: 10px;
    max-width: 880px;
    margin: 0 auto 30px;
    padding: 20px 0 40px;
}

.box01 h2 {
    padding-bottom: 10px;
    color: #f4b4cf;
    border-bottom: 1px solid #f4b4cf;
    text-align: center;
    margin: 0 40px 20px;
    font-size: 1.8em;
 }

.box01 p {
    text-align: left;
    line-height: 2.0;
    font-size: 1.3em;
    margin: 0 40px;
    overflow-wrap: break-word;
    color: #354341;
}

.packimage {
    width: 600px;
    border-radius: 15px;
    margin:15px auto 0;
    display: block;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

.packimage.fadeup.is-animated {
        animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    }

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

        80% {
            opacity: 1;
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

.box01 .notice {
    font-size: 0.8em;
    color: #666;
    line-height: 1.2;
    display: block;
    text-align: left;
}

.box01 .notice2 {
    max-width: 700px;
    margin: 10px auto 0;
}
/*
.section04 .contact-button {
    background-color: #ec6ca5;
    border-radius: 15px;
    margin: 20px auto 0;
    max-width: 700px;
    font-size: 1.5em;
}

.section04 .contact-button a {
    color: #fff;
    text-decoration: none;
    padding: 15px 0;
    display: block;
}

.section04 .contact-button:hover {
    opacity: 0.8;
}
*/

.contact-button {
    background: #ec6ca5;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 15px;
    margin: 20px auto 0;
    max-width: 700px;
    font-size: 1.5em;
}

.contact-button a {
    color: #fff;
    text-decoration: none;
    padding: 15px 0;
    display: block;
}

.contact-button::after {
    background: #666;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
}

.contact-button:hover {
    color: #333;
}

.contact-button:hover::after {
    transform: scale(1, 1);
}


.product {
    width: 600px;
    margin: 0 auto;
}
.product h3 {
    font-size: 1.5em;
    text-align: left;
    margin: 80px 0 10px 7px;
    color: #ec6ca5;
}
.product p {
    line-height: 1.8;
    margin:0;
}


h2.p2-h2 span {
    color: #f186b4;
    font-size: 1.2em;
}
h2.p2-h2 span.nots {
    background-color: #fff100;
    padding: 0;
}

span.ystrong {
    color:#ec6ca5;
}

h3.packplan {
    text-align: center;
    color: #f186b4;
    font-size: 1.5em;
    margin: 0;
}

h3.notice-h3 {
    background-color: #b6b7b8;
    color: #fff;
    max-width: 700px !important;
    margin: 15px auto;
    padding: 15px 0;
    font-size: 1.5em;
}

p.pnotice {
    margin: 0 84px 20px;
}
p.pnotice span {
    color: #f186b4;
}