@charset "utf-8";

/* 文書全体 */
* {
	margin:0;
	padding:0;
}



/* 全てのスクリーンサイズで適用する設定 */
/* body */

body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	text-align: center;
	color: #333;
	line-height: 1.6;
	font-size: 14pt;
	max-width: 600px;
    margin: 0 10px;
}

img {
	border-style: none;
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

a {
	color: #0000ee;
	-webkit-transition: color 0.3s ease-in-out 0s;
	-moz-transition: color 0.3s ease-in-out 0s;
	-ms-transition: color 0.3s ease-in-out 0s;
	-o-transition: color 0.3s ease-in-out 0s;
	transition: color 0.3s ease-in-out 0s;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.red {
	color: #ff0000;
	font-weight: bold;
}

.blue {
	color: #0b24fb;
	font-weight: bold;
}

.pink {
	color: #ff4193;
	font-weight: bold;
}

.big {
	font-size: 1.3em;
	font-weight: bold;
}

.small {
	font-size: 1rem;
	color: #808080;
	text-align: right;
}

.line_yellow {
	background: linear-gradient(transparent 65%, #fff000 65%);
	font-weight: bold;
}

.line_red {
	background: linear-gradient(transparent 65%, #fba09d 65%);
	font-weight: bold;
}

.line_pink {
	background: linear-gradient(transparent 65%, #ffc5d8 65%);
	font-weight: bold;
}

.line {
	text-decoration: line-through;
	font-weight: bold;
	display: inline;
	color: #ff0000;
}

.uline{
	text-decoration: underline;
}

video {
	width: 100%;
}

/* 点滅 */
.blinking {
	color: #ff0000;
	-webkit-animation: blink 1.5s ease-in-out infinite alternate;
	-moz-animation: blink 1.5s ease-in-out infinite alternate;
	animation: blink 1.5s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
0% {
	opacity: 0;
}

100% {
	opacity: 1;
}
}

@-moz-keyframes blink {
0% {
	opacity: 0;
}

100% {
	opacity: 1;
}
}

@keyframes blink {
0% {
	opacity: 0;
}

100% {
	opacity: 1;
}
}

.suptext {
	font-size: 0.4em;
	vertical-align: top;
	position: relative;
	top: -0.4em;
	color: #666;
}

.header {
	width: 100%;
	background-color: #fff;
	margin: auto;
	max-width: 640px;
	box-sizing: border-box;
	padding: 10px;
	text-align: center;
	font-weight: bold;
	font-size: clamp(1.4rem, 5.2vw, 3rem);
	line-height: 1.8;
}

/* コンテンツ */
.content_wrap {
	max-width: 640px;
	padding: 0 15px;
	margin: auto;
}

.content_wrap p {
	margin: 0 auto 1.4em;
	max-width: 100%;
}

.slide_warp{
	margin:0.8em 0 1.4em;
	padding: .6em 0 .1em;
	background:url(../img/04_ba.png) 50% bottom ;
}

.slide_warp .small{
	text-align: right;
	margin:0.4em 2.6em 1.5em 0;
}

.slide_box{
	position: relative;
	width: 84%;
	margin: 2em auto 0;
}

.slide_box p{
	position: absolute;
	z-index: 2;
	top:-16%;
	left:-7%
}

.slide_box p img{
	width:45% ;
}

.img-wrap {
	overflow: hidden;
	position: relative;
}

.img-wrap:before {
	animation: img-wrap 4.5s cubic-bezier(.4, 0, .2, 1) infinite forwards;
	content: '';
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	position: absolute;
	z-index: 1;
	border-right: 1px solid #000;
}

.slide_1::before{
	background:url(../img/04-3.png);
	pointer-events: none;
	background-size:cover
}

.slide_2::before {
	background: url(../img/05-3.png);
	pointer-events: none;
	background-size: cover
}

.slide_3::before {
	background: url(../img/06-3.png);
	pointer-events: none;
	background-size: cover
}

@keyframes img-wrap {
	0% {
		width: 0%;
	}

	50% {
		width: 99%;
	}

	100% {
		width: 0%;
	}
}

.slick02 {
	margin-bottom:1.4em
}

.slick02 img {
	padding-bottom: 0.4em;
}

.btn-gradient-btn {
	position:relative;
	overflow: hidden;
	display: block;
	width:100%;
	color: #fff;
	border-radius: 10px;
	font-weight:bold ;
	text-align: center;
	animation:elm 1.8s infinite;
	margin-bottom: 1.5em;
}

.btn-gradient-btn::after {
	content: "";
	display: block;
	width: 30px;
	height: 100%;
	position: absolute;
	top: -180px;
	left: 0;
	background-color: #FFF;
	opacity: 0;
	transform: rotate(45deg);
	animation: reflect 2s ease-in-out infinite;
	-webkit-transform: rotate(45deg);
	-webkit-animation: reflect 2s ease-in-out infinite;
}

@keyframes reflect {
	0% { transform: scale(0) rotate(45deg); opacity: 0; }
	80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
	81% { transform: scale(4) rotate(45deg); opacity: 1; }
	100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes reflect {
	0% { transform: scale(0) rotate(45deg); opacity: 0; }
	80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
	81% { transform: scale(4) rotate(45deg); opacity: 1; }
	100% { transform: scale(50) rotate(45deg); opacity: 0; }
}

@keyframes elm {
0% {
	transform: scale(0.92);
}
40% {
	transform: scale(0.97);
}
60% {
	transform: scale(0.86);
}
80% {
	transform: scale(1);
}
100% {
	transform: scale(0.92);
}
}

.slick01{
	margin-bottom:1.5em;
}

.slick01 img{
	padding-bottom: 0.4em;
}
h2 {
	padding: 0.4em 0.5em;/*文字の上下 左右の余白*/
	color: #494949;/*文字色*/
	border-left: solid 5px #7db4e6;/*左線*/
	border-bottom: solid 3px #d7d7d7;/*下線*/
	text-align: left;
	font-size: 1.3em;
	margin-bottom: 1em;
	max-width: 750px;
	margin:0 auto 1em;
}

.yazirushi{
	display: flex;
	width: 90%;
	text-align: center;
	margin: 2em auto 0;
	animation: poyooon 1s infinite linear 0s ;
}


@keyframes poyooon {
0% {
	transform: scale(1.0, 1.0) translate(0%, 0%);
}
10% {
	transform: scale(1.1, 0.9) translate(0%, 5%);
}
40% {
	transform: scale(1.2, 0.8) translate(0%, 15%);
}
50% {
	transform: scale(1.0, 1.0) translate(0%, 0%);
}
60% {
	transform: scale(0.9, 1.2) translate(0%, -24%);
}
75% {
	transform: scale(0.9, 1.2) translate(0%, -10%);
}
85% {
	transform: scale(1.2, 0.8) translate(0%, 15%);
}
100% {
	transform: scale(1.0, 1.0) translate(0%, 0%);
}
}

.yazirushi img{
	width:70%;
}



.animated {
	animation: move-y .5s infinite alternate ease-in-out;
	display: inline-block;
	color: red;
	font-weight: bold;
}


@keyframes move-y {
	from { transform: translateY(0);}
	to { transform: translateY(10px);}
}


/* アンケート */
.search {
	padding: 0;
	margin-bottom: 4em;
}

.search h4 {
	background: #E20113;
	color: #fff;
	padding: 10px;
	margin: 1em 0 0.8em;
}

.sbox {
	display: block;
	margin: auto;
	text-align: center;
	width: 100%;
	display: flex;
	flex-flow: wrap row;
	justify-content: space-between;
}

.label {
	display: inline-block;
	position: relative;
	cursor: pointer;
	width: 48%;
	margin: 6px 0;
	padding: 4px 0;
	background: #f5f5f5;
	color: #2d0028;
	line-height: 1.6;
	font-weight: bold;
	border: 2px solid #bfbfbf;
	border-radius: 14px;
	box-sizing: border-box;
	text-align: center;
}

.label2 {
	display: inline-block;
	position: relative;
	cursor: pointer;
	width: 100%;
	margin: 6px auto;
	padding: 4px 0;
	background: #f5f5f5;
	color: #2d0028;
	line-height: 1.6;
	font-weight: bold;
	border: 2px solid #bfbfbf;
	border-radius: 14px;
	box-sizing: border-box;
	text-align: center;
}

.sbox input[type="radio"]:checked+label {
	background: #FF3C34;
	/* マウス選択時の背景色を指定する */
	color: #ffffff;
	/* マウス選択時のフォント色を指定する */
}


.sbox [type=radio]:checked+.label::before {
	border-color: #666;
}

.sbox [type=radio]:checked+.label::after {
	opacity: 1;
}

input[type=radio] {
	display: none;
	/* checkboxを非表示にする */
}

.btn-gradient-simple {
	width: 90%;
	margin: 1em auto;
	padding: 14px 0;
	font-size: 16px;
	border-style: none;
	background: #19B7C8;
	box-shadow: 0 3px 0 #00717e;
	border-radius: 10px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

:disabled {
	background: rgb(165, 165, 165);
	color: #333;
	box-shadow: none;
}

.fade {
	animation: fadeIn 2s ease 1 normal;
}

@keyframes fadeIn {

	/*animation-nameで設定した値を書く*/
	0% {
		opacity: 0
	}

	/*アニメーション開始時は不透明度0%*/
	100% {
		opacity: 1
	}

	/*アニメーション終了時は不透明度100%*/

}

.loading {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 0.25rem solid rgba(255, 255, 255, 0.2);
	border-top-color: rgb(255, 255, 255);
	animation: spin 1s infinite linear;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* footer */
footer {
	color:#000;
	font-size:1.2rem;
	padding:2em 0;
	margin: auto;
	text-align: center;
}

footer a:link {
	color: #000;
	text-decoration: none;
	-webkit-transition: color 0.3s ease-in-out 0s;
	-moz-transition: color 0.3s ease-in-out 0s;
	-ms-transition: color 0.3s ease-in-out 0s;
	-o-transition: color 0.3s ease-in-out 0s;
	transition: color 0.3s ease-in-out 0s;
}

footer a:visited {
	color: #000;
	text-decoration: none;
}

footer a:hover {
	color: #B9B9B9; /* hover のカラー（フッターのリンク）（3/4 箇所） */
	text-decoration: none;
}
/* 離脱防止 */
.close-btn {
	display: block;
	position: absolute;
	top: -3%;
	right: 0px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	/* 丸みの度合い */
	background: #333;
	/* ボタンの背景色 */
}

.close-btn::before,
.close-btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 3px;
	height: 10px;
	background: #fff;
	/* バツ印の色 */
}

.close-btn::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.close-btn::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}


.modal_wrap input {
	display: none;
}

.modal_overlay {
	display: flex;
	justify-content: center;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background-color: rgba(50, 50, 50, 0.6);
	opacity: 0;
	transition: opacity 0.2s, transform 0s 0.2s;
	transform: scale(0);
}

.modal_trigger {
	position: absolute;
	width: 100%;
	height: 100%;
}

.modal_content {
	position: absolute;
	top: 50%;
	left: 50%;
	align-self: flex-start;
	width: 90%;
	max-width: 500px;
	box-sizing: border-box;
	line-height: 1.4em;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	line-height: 1.4;
	font-weight: 100;
}

.modal_wrap input:checked~.modal_overlay {
	opacity: 1;
	transform: scale(1);
	transition: opacity 0.2s;
}

.modal_content img {
	max-width: 100%;
}

input[type=checkbox]:checked~#example {
	animation: 0.4s linear rotation1;
	padding: 0;
}

@keyframes rotation1 {
	0% {
		transform: rotate(0) scale(0.4);
	}

	100% {
		transform: rotate(360deg) scale(1.0);
	}
}