@charset "UTF-8";

/* カラー設定 */
:root {
	--text-main-color: #333333;
	--text-caption-color: #505050;
	--text-em-color: #FF3333;
}

img {
	height: auto;
}

/* アニメーション設定 */
@keyframes fade {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

@keyframes shiny {
	0% { left: -20%; }
	10% { left: 120%; }
	100% { left: 120%; }
}

@keyframes updown1{
	0% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
	100% { transform: translateY(0); }
}

/* 基本のブロック設定 */
body {
	color: --text-main-color;
	position: relative;
}

.bg {
	background: rgb(255,244,204);
	background: linear-gradient(193deg, rgba(255,239,199,0) 0%, rgba(255,239,199,0) 33%, rgba(255,239,199,1) 33%, rgb(255,240,238) 100%),
				linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,244,204,1) 100%);
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}

.fixedCta {
	text-align: center;
	position: fixed;
	right: 60px;
	bottom: 50px;
	z-index: 3;
}

.fixedCta .btn {
	border-radius: 50vh;
	overflow: hidden;
	position: relative;
	transition: .2s;
}

.fixedCta .btn::after {
	content: '';
	position: absolute;
	top: -10%;
	left: -20%;
	width: 80px;
	height: 100%;
	transform: scale(2) rotate(20deg);
	background: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, .4) 90%, rgba(255, 255, 255, 0) 0%);
	animation: shiny 3s ease-in-out infinite;
}

.fixedCta .btn:hover {
	transform: translateY(-3px);
}

main {
	width: 100%;
	max-width: 500px;
	font-size:min(3.7vw,14px);
	background: #FFF;
	margin: 0 auto;
	padding: 0 0 50px;
	position: relative;
	z-index: 1;
	animation: fade .2s ease;
}

section {
	box-sizing: border-box;
	margin: 0 auto 30px;
}

section:not(.mainv) {
	width: calc(100% - 40px);
	max-width: 450px;
}

h1 {
}

h2 {
	font-size:min(6vw,30px);
	font-weight: bold;
	line-height: 1.35;
	margin: 0 0 15px;
}

h3 {
	font-size:min(5.3vw,20px);
	font-weight: bold;
	border-top: solid 1px #333;
	border-bottom: solid 1px #333;
	margin: 0 0 15px;
	padding: 15px;
}

h4 {
	font-size: min(4.26vw,16px);
	font-weight: bold;
	background: #EFEFEF url("../images/s_check_bl.svg") no-repeat 15px center / 16px auto;
	margin: 0 0 10px;
	padding: 10px 10px 10px 40px;
}

h4 em {
	color: var(--text-em-color);
}

section p {
	line-height: 1.8;
	margin: 0 0 15px;
}

section p .bold {
	font-weight: bold;
}

section p em {
	color: var(--text-em-color);
}

section p .marker {
	background: rgb(255,255,0);
	background: linear-gradient(0deg, rgba(255,255,0,1) 0%, rgba(255,255,0,1) 8px, rgba(255,255,0,0)  8px, rgba(255,255,0,0) 100%);}

section figure {
	margin: 0 0 35px;
}

section figcaption {
	color: var(--text-caption-color);
	font-size: 10px;
}


/* ここからセクションごと */
.sec2 .borderBox {
	border: dashed 1px#333333;
	margin: 0 0 15px;
	padding: 40px 0;
	display: flex;
	justify-content: center;
}

.sec2 .borderBox dl {
}

.sec2 .borderBox dl dt {
	font-weight: bold;
	display: flex;
}

.sec2 .borderBox dl dt span {
	width: 90px;
	display: block;
}

.sec2 .borderBox dl dd {
	width: calc(100% - 90px);
	padding: 0 0 0 90px;
}

.sec2 .borderBox dl dd::before {
	content: url("../images/s_check_red.svg");
	width: 14px;
	height: auto;
	display: inline-block;
	margin: 0 5px 0 0;
}

.sec2 .borderBox dl dd + dt {
	margin-top: 15px;
}

.sec2 picture {
	margin: 30px 0 0;
}

.sec3 .banner {
	margin: 0 auto 30px;
}

.sec3 .bnrShoulder {
	font-size: min(4.2vw,17px);
	font-weight: 700;
	line-height: 1.53;
	text-align: center;
	margin: 40px 0 15px;
}

.sec3 .bnrShoulder span {
	font-size: min(5.3vw,24px);
	margin: 10px auto 0;
	display: block;
	position: relative;
}

.sec3 .bnrShoulder span::before {
	content: "";
	width: 100%;
	height: 1.5em;
	background-image: url("../images/s_arrow_red.svg"), url("../images/s_arrow_red.svg");
	background-size: 1.5em;
	background-repeat: no-repeat;
	background-position: top right calc(50% - 4.3em), top left calc(50% - 4.5em);
	position: absolute;
	top: 10%;
	left: 0;
	transform: translateY(-50%);
	animation-name: updown1;
	animation-delay: 0s;
	animation-duration: 1.5s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
}

.requireBtn p {
	font-size: min(4.2vw,18px);
	font-weight: 700;
	text-align: center;
	margin: 0 0 5px;
}

.requireBtn a {
	width: 100%;
	height: min(14.6vw,55px);
	background : linear-gradient(180deg, rgba(127, 196, 110, 1) 0%, rgba(103, 185, 83, 1) 43%, rgba(84, 176, 62, 1) 84%);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .2s;
}

.requireBtn a:hover {
	opacity: .8;
	transform: translateY(-3px);
}

.requireBtn a span {
	color: #fff;
	font-size: min(5.3vw,22px);
	font-weight: 700;
	position: relative;
}

.requireBtn a span::after {
	content: "";
	vertical-align: text-top;
	width: 0;
	height: 0;
	border-left: min(3.8vw,15px) solid #fff;
	border-top: min(2.8vw,10px) solid transparent;
	border-bottom: min(2.8vw,10px) solid transparent;
	display: inline-block;
	margin: 2px 0 0 10px;
}

@media (hover: hover) {
	.banner a:hover {
		opacity: .7;
		transition: .3s;
	}
}

/* フッター */
footer {
	font-size: 11px;
	text-align: center;
	width: 100%;
	max-width: 500px;
	background: #FFF;
	margin: 0 auto;
	padding: 10px 0;
	position: relative;
	z-index: 1;
	animation: fade .2s ease;
}

footer a {
	color: var(--text-main-color);
	text-decoration: none;
}

/* スマホ版 */
@media screen and (max-width: 499px) {
	.sec2 .borderBox {
		padding: 25px 0;
	}

	.sec2 .borderBox dl dt span {
		width: 3.5em;
	}
	
	.sec2 .borderBox dl dd {
		width: calc(100% - 3.5em);
		padding: 0 0 0 3.5em;
	}
	
	footer {
		padding-bottom: 20px;
	}
}

/* ヘッダーの切り替えポイント */
@media screen and (max-width: 979px) {
	.fixedCta {
		display: none;
	}
}

/* ヘッダーの切り替えポイント */
@media screen and (max-width: 1199px) {
	h1 {
		text-align: center;
		background: #FFF;
		padding: 15px 0;
	}

	h1 img {
		width: 47.1vw;
		max-width: 350px;
		height: auto;
	}
}

/* PC版だけ */
@media screen and (min-width: 1200px) {
	h1 {
		position: fixed;
		top: 30px;
		left: 50px;
		z-index: 2;
	}
	h1 img {
		width: 300px;
		height: auto;
	}
	.sec3 .banner {
		width: 410px;
	}
	
	.sec3 .requireBtn a {
		width: 310px;
		margin: 0 auto
	}
}