/* resets css */
*, *::before, *::after {box-sizing:border-box;}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5;margin:0;}
h1, h2, h3, h4, p, figure, blockquote, dl, dd {margin:0;}
ol, ul, a {list-style:none;text-decoration:none;margin:0;padding:0;}
html:focus-within {scroll-behavior:smooth;}
img, picture {max-width:100%;display:block;}
input, button, textarea, select {font:inherit;}
@media (prefers-reduced-motion: reduce) {html:focus-within{scroll-behavior:auto;}*, *::before, *::after {animation-duration:0.01ms !important;animation-iteration-count:1 !important;transition-duration:0.01ms !important;scroll-behavior:auto !important;}}

/* Common */
:root {
    --basecolor: #FFF9F4;
    --mainyellow: #FFF2D8;
    --mainpink: #F5C1C9;
    --accentyellow: #FFF100;
    --accentpink: #FA709A;
	--line: #06C755;
}
body {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 300;
    font-style: normal;
    text-align: center;
    background-color: var(--basecolor);
    color: #3C3C3C;
}
a {
    color: #3C3C3C;
}
img, iframe {
    max-width: 100%;
    display: block;
    border-radius: 14px;
    object-fit: cover;
}
h1, h2, h3, h4 {
    color: #5A4A42;
    line-height: 1.2;
}
h1 {
    font-size: 24px;
}
h2 {
    font-size: 16px;
}
h3 {
    font-size: 20px;
}
h4 {
    font-size: 16px;
}
small {
    width: 100%;
    display: block;
    font-size: 10px;
    padding: 4px 0;
}
.l-text {
    font-size: 1.5em;
    color: #5A4A42;
}
.b-text {
    font-weight: bold;
}
.marker01 {
    background: linear-gradient(transparent 70%, rgba(255, 241, 0, 0.8) 70%);
}
.marker02 {
    background: linear-gradient(transparent 70%, rgba(250, 112, 154, 0.6) 70%);
}
.marker03 {
    background: linear-gradient(transparent 70%, rgba(6, 199, 85, 0.5) 70%);
}
.message {
    width: 100%;
    margin-bottom: 30px;
    padding: 50px 0 40px;
    background-color: var(--mainpink);
	color: #5A4A42;
    position: relative;
}
.message::after {
    content: "";
    width: 100%;
    height: 30px;
    background-color: var(--mainpink);
    clip-path: polygon(50% 30px, 0% 0%, 100% 0%);
    position: absolute;
    bottom: -29px;
    left: 0;
    right: 0;
}
.message02 {
    width: 100%;
    margin-bottom: 30px;
    padding: 80px 0 40px;
    background-color: var(--mainpink);
	color: #5A4A42;
    position: relative;
}
.message02::after {
    content: "";
    width: 100%;
    height: 30px;
    background-color: var(--mainpink);
    clip-path: polygon(50% 30px, 0% 0%, 100% 0%);
    position: absolute;
    bottom: -29px;
    left: 0;
    right: 0;
}
.message02::before {
    content: "";
    width: 100%;
    height: 30px;
    background-color: var(--basecolor);
    clip-path: polygon(50% 30px, 0% 0%, 100% 0%);
    position: absolute;
   	top: -1px;
    left: 0;
    right: 0;
}

/* CTA */
.cta-btn-box {
    width: 100%;
    margin: 0 auto 5px;
    z-index: 10;
    animation: poyoyon3 2.5s infinite;
    opacity: 1;
}
@keyframes poyoyon3 {
    0%, 40% {
        transform: skew(0deg, 0deg);
    }
    5% {
        transform: skew(4deg, 4deg);
    }
    10% {
        transform: skew(-3deg, -3deg);
    }
    15% {
        transform: skew(2deg, 2deg);
    }
    20% {
        transform: skew(-1deg, -1deg);
    }
    25% {
        transform: skew(0deg, 0deg);
    }
    30% {
        transform: skew(-0.6deg, -0.6deg);
    }
    35% {
        transform: skew(0.3deg, 0.3deg);
    }
}
.cta-btn, .cta-btn-thin{
    background: radial-gradient(ellipse at 100% 0%, var(--accentyellow), var(--accentpink) 80%);
    -webkit-box-shadow: 0 5px 0 #E8678E;
    box-shadow: 0 5px 0 #E8678E;
    color: #fff;
    display: inline-block;
    padding: 16px 56px 11px 40px;
    border-radius: 20px;
    position: relative;
}
.cta-btn-thin{
    padding: 4px 36px 3px 20px;
	border-radius: 8px;
}
.cta-btn::after, .cta-btn-thin::after {
    content: "";
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 40px;
}
.cta-btn-thin::after {
    right: 20px;
}
.cta-btn:hover, .cta-btn-thin:hover {
    transform: translateY(5px);
    box-shadow: none;
}
.cta-btn .l-text {
    color: #fff;
}
.cta-btn.line-btn, .cta-btn-thin.line-btn {
   background: radial-gradient(ellipse at 100% 0%, #FEE140, #00A349 80%);
    -webkit-box-shadow: 0 5px 0 #009040;
    box-shadow: 0 5px 0 #009040;
}


/* PC */
.pc-box {
    display: none;
}
.container {
    background-color: var(--basecolor);
}

@media screen and (min-width: 500px) {
    .wrap {
        width: 100vw;
        padding-bottom: 160px;
        background: linear-gradient(var(--mainpink) 0%, var(--mainyellow) 25%, var(--mainpink) 50%, var(--mainyellow) 75%, var(--mainpink) 100%);
    }
    .wrap .container {
        width: 480px;
        margin: 0 auto;
        overflow: hidden;
        box-sizing: border-box;
        border-radius: 32px;
        border: solid 6px #fff;
        position: relative;
        top: 80px;
        z-index: 1;
    }
}
@media screen and (min-width: 970px) {
    .container {
        transform: translateX(50%);
    }
    .pc-box {
        text-align: right;
        display: block;
        width: 50vw;
        max-width: 600px;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-100%);
    }
    .pc-catchphrase {
        width: 100%;
		max-width: 400px;
        height: auto;
        text-align: left;
        padding: 40px 16px;
        box-sizing: border-box;
    }
    .pc-catchphrase h4 {
        display: inline-block;
        padding: 8px 16px;
        margin-bottom: 16px;
        border-radius: 14px;
        background-color: #FFF9F4;
    }
	.pc-cta {
		width: 280px;
		height: 280px;
		position: absolute;
		top: 50%;
		right: 5%;
		transform: translateY(-50%);
	}
	.pc-cta a {
		width: 280px;
		height: 280px;
		text-align: center;
		display: inline-block;
		background: radial-gradient(ellipse at 100% 0%, var(--accentyellow), var(--accentpink) 80%);
        -webkit-box-shadow: 0 5px 0 #E8678E;
        box-shadow: 0 5px 0 #E8678E;
        border-radius: 50%;
		position: relative;
        z-index: 10;
	}
	    .pc-cta a:hover {
        transform: translateY(5px);
        box-shadow: none;
    }
	.pc-cta-box {
		width: 280px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.pc-cta a h2, .pc-cta a h3, .pc-cta .l-text{
		color: #fff;
	}

    .pc-nav {
        width: 300px;
        height: 380px;
        text-align: left;
        position: fixed;
        bottom: 0;
        left: 16px;
        z-index: 5;
    }
    .pc-nav h3 {
        font-family: "Oswald", sans-serif;
        font-size: 3rem;
        color: var(--basecolor);
        margin-bottom: 16px;
    }
    .pc-nav ol {
        padding-left: 24px;
        position: relative;
    }
    .pc-nav ol::after {
        content: "";
        width: 3px;
        height: 100%;
        background-color: var(--basecolor);
        position: absolute;
        top: 0;
        left: 0;
    }
    .pc-nav ol li {
        margin-top: 8px;
        color: #5A4A42;
    }
    .sns {
        margin-top: 32px;
        display: flex;
        column-gap: 20px;
        align-items: center;
        justify-content: flex-start;
    }
    .sns p {
        padding: 4px 12px;
        background-color: var(--basecolor);
        color: #5A4A42;
        border-radius: 14px;
    }
    .sns img {
        border-radius: 0;
        width: 32px;
        height: 32px;
    }
}







