@charset "utf-8";
/*
	[Common]
		0. margin and padding
		1. HTML, Body, Anchor, img
		2. Font
		3. Color
		4. Background
		5. Shadow
		6. txt-align
		7. Display
		8. Float
		9. Radius
		10.word-break
		99.Clear fix

	[Parts]
		0. label badge check


		*/
/* //////////////////////////////////////////////////
[Common]
////////////////////////////////////////////////// */
/* --------------------------------------------------
	0. margin and padding
-------------------------------------------------- */
.mrg-0 {
	margin: 0;
}
.mrg-10 {
	margin: 10px;
}
.mrg-box {
	margin: 0 10px 10px;
}
.mrg-20 {
	margin: 20px;
}
.mrg-top-5 {
	margin-top: 5px;
}
.mrg-top-10 {
	margin-top: 10px;
}
.mrg-top-15 {
	margin-top: 15px;
}
.mrg-top-20 {
	margin-top: 20px;
}
.mrg-top-30 {
	margin-top: 30px;
}
.mrg-btm-5 {
	margin-bottom: 5px;
}
.mrg-btm-10 {
	margin-bottom: 10px;
}
.mrg-btm-20 {
	margin-bottom: 20px;
}
.pdg-0 {
	padding: 0;
}
.pdg-10 {
	padding: 10px;
}
.pdg-side-5 {
	padding: 0 5px 0;
}
.pdg-side-10 {
	padding: 0 10px 0;
}
/* --------------------------------------------------
	1. HTML, Body, Anchor
-------------------------------------------------- */
body {
	font-family: Arial, san-serif;
	-webkit-text-size-adjust: none;
	min-height: 100%;
}
img {
	vertical-align: bottom;
}
a:link {
	color: #333;
}
a:visited {
	color: #333;
}
a:hover {
	color: #666;
}
a:active {
	color: #666;
}
/* --------------------------------------------------
	2. Font
-------------------------------------------------- */

/* font-size�idefault�j */
.fs-d {
	font-size: 1em;
}
/* font-size�iplus�j */

.fs-p1 {
	font-size: 1.08em;
}
.fs-p2 {
	font-size: 1.16em;
}
.fs-p3 {
	font-size: 1.24em;
}
.fs-p4 {
	font-size: 1.32em;
}
.fs-p5 {
	font-size: 1.4em;
}
.fs-p_ex {
	font-size: 1.80em;
}
/* font-size�iminus�j */
.fs-m1 {
	font-size: 0.92em;
}
.fs-m2 {
	font-size: 0.84em;
}
.fs-m3 {
	font-size: 0.76em;
}
.fs-m4 {
	font-size: 0.68em;
}
.fs-m5 {
	font-size: 0.6em;
}
/* --------------------------------------------------
	3. Color
-------------------------------------------------- */
.txt-black {
	color: #000000;
}
.txt-glay {
	color: #999999;
}
.txt-pink {
	color: #ff1493;
}
.txt-pinkb {
	color: #9900cc;
}
.txt-blue {
	color: #002aff;
}
.txt-white {
	color: #ffffff;
}
.txt-red {
	color: #ff0000;
}
.txt-orange {
	color: #ff9d00;
}
.txt-yellow {
	color: #ffff00;
}
.txt-lightblue {
	color: #87cefa;
}
.txt-lightblue_2 {
	color: #00ffff;
}
.txt-green {
	color: #690;
}
.txt-purple {
	color: #F33;
}
/* --------------------------------------------------
	4. Background
-------------------------------------------------- */
.bg-white {
	background-color: #ffffff;
}
.bg-red {
	background-color: #D11E21;
}
.bg-red02 {
	background-color: #ffd1ca;
}
.bg-blue {
	background-color: #28aae1;
}
.bg-lbule {
	background-color: #CCFFFF;
}
.bg-gray {
	background-color: #cccccc;
}
.bg-gray02 {
	background-color: #F2F2F2;
}
.bg-orange {
	background-color: #fffab6;
}
.bg-lyellow {
	background-color: #FFFF99;
}
/* --------------------------------------------------
	5. Shadow
-------------------------------------------------- */
.txt-shadow {
	text-shadow: 1px 1px 0 rgba(25,25,25,0.3);
}
.box-shadow {
	-webkit-box-shadow: 1px 1px 1px #999999;
	box-shadow: 1px 1px 1px #999999;
}
/* --------------------------------------------------
	6. txt-align
-------------------------------------------------- */
.txt-left {
	text-align: left;
}
.txt-center {
	text-align: center;
}
.txt-right {
	text-align: right;
}
/* --------------------------------------------------
	7. Display
-------------------------------------------------- */
.dinline {
	display: inline;
}
.dblock {
	display: block;
}
.dinblock {
	display: inline-block;
}
/* --------------------------------------------------
	8. Float
-------------------------------------------------- */
.flt-l {
	float: left;
}
.flt-r {
	float: right;
}
/* --------------------------------------------------
	9. Radius
-------------------------------------------------- */
.radius-8 {
	border-radius: 8px;
	-webkit-border-radius: 8px;
}
.radius-8-top {
	-webkit-border-top-left-radius: 8px;
	-webkit-border-top-right-radius: 8px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

/* --------------------------------------------------
	10. word-break
-------------------------------------------------- */

.word-break-all {
	word-break: break-all;
}
/* --------------------------------------------------
	99.Clear fix
-------------------------------------------------- */
.cf {
 *zoom:1;
}
.cf:before, .cf:after {
	display: table;
	line-height: 0;
	content: "";
}
.cf:after {
	clear: both;
}


/***************************************/
/*  fix submit
=======================================*/

/* ▼addition▼ */
.btn {
  width: 60%;
  margin: 5px auto;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.pulse {
  animation-name: pulse;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
/* ▲addition▲ */

/***************************************/
/*  guide
=======================================*/

.guide_bg {
	background: url(../../img/sp/guide_bg.png) 0 0 repeat-y;
	background-size: 100%;
	color: #000000;
}

.guide_bg2 {
	background:  url(../../img/sp/guide_bg2.webp) no-repeat top center, url(../../img/sp/guide_f1.png) no-repeat top right, url(../../img/sp/guide_f2.png) no-repeat bottom right;
	background-size: 100%;
	background-color: #ffffff;
	color: #000000;
	padding: 20px 35px;
}

.guide_bg3 {
	background: url(../../img/sp/guide_f1.png) no-repeat top right, url(../../img/sp/guide_f2.png) no-repeat bottom right;
	background-size: 100%;
	background-color: #ffffff;
	color: #000000;
	padding: 20px 40px;
}

.guide_txt1 {
	text-align: center;
	font-size: 1.80em;
	font-weight: bold;
	color: #000000;
}

.guide_ul {
	text-decoration:underline;
	text-decoration-color:#FF0000;
}

.guide_bold {
	font-weight: bold;
}

.guide_marker {
	background-color: rgba(255, 255, 130, 0.5);
}

.guide_btn {
  width: 80%;
  margin: 20px auto;
}

.fs-pl {
	font-size: 1.60em;
}

/* 点滅 */
@keyframes blinking {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

.guide_blink {
	animation: blinking 0.7s ease-in-out infinite alternate;
}