@charset "utf-8";
* {
	margin: 0px;
	padding: 0px;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
a {
	text-decoration: none;
}
img {
	width:100%;
	vertical-align:bottom;
	border:none;
}
table {
	border-collapse: collapse;
}
.clearfix:after {
	content: ".";  /* 新しい要素を作る */
	display: block;  /* ブロックレベル要素に */
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {
	min-height: 1px;
}
* html .clearfix {
	height: 1px;/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"] {
	-webkit-appearance: none;
}
body {
	font-family: Verdana, "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
}
main {
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
	right: 0;
	overflow: hidden;
}
.rela {
	position: relative;
}
.abso {
	position: absolute;
}
footer {
	background:#134f80;
	color:#fff;
	text-align:center;
	font-size: 26px;
	padding:3% 0 6%;
	width:100%;
	max-width:760px;
	margin: 0 auto;
}	


/*index*/
.center{
left: 0;
    right: 0;
    margin: auto;
}

img#icon01 {
	width: 100%;
    top: 27%;
	left:0%;
}

img#icon02 {
	width: 95%;
    top: 11.6%;
    
}
img#icon03 {
	width: 56%;
    top: 40%;
   
}
img#icon04 {
	width: 93%;
    bottom: 17%;
}
img#icon05 {
	width: 20%;
    bottom: 3%;
}
img#icon06 {
	width: 100%;
    top: 4.8%;
}

/*きらんと光る */
.reflection{
display:inline-block;
position:relative;
overflow:hidden;
}
.reflection:after {
content:"";
height:100%;
width:30px;
position:absolute;
top:-180px;
left:0;
background-color: #fff;
opacity:0;
-webkit-transform: rotate(45deg);
-webkit-animation: reflection 1.5s ease-in-out 0.8s 2;
}

@keyframes reflection {
0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.3; }
81% { -webkit-transform: scale(4) rotate(45deg); opacity: 0.8; }
100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

/*ポップアップ */
img.text_01{
animation-name: popup;
animation-duration: 2.0s;
animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1.0);
  }
  80%, 100% {
    opacity: 1;
  }
}
/*ぼやけて表示 */
img.text_02 {
  animation-name: blur;
  animation-duration: 1s; 
}
img.text_03 { 
  animation-name: blur;
  animation-duration: 1.2s; 
  animation-delay: 0.6s;
}
img.text_04 {
  animation-name: blur;
  animation-duration: 1.4s; 
  animation-delay: 1.0s;
}
img.text_05 {
	animation-name:fadeIn;
	animation-duration:1.3s;
	animation-delay: 1.3s;
}

.start_0 {
	opacity: 0;
}
.fill {
	animation-fill-mode:forwards;
}

/*ぼやけて表示 */
@keyframes blur {
  0% {
    filter: blur(10px);
	opacity: 0;
  }
  100% {
    filter: blur(0);
	opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.choose_title{
animation: smoothFade 3s infinite linear;	
}
@keyframes smoothFade {
  0% { opacity: 0.7; }
  50% { opacity: 1.0; }
  100% { opacity: 0.7; }
}
.select_btn_box {
	top: 13.5%;
	margin: 0 auto;
}
.select_btn {
	display: flex;
	max-width: 99%;
    margin: 2px auto;
}
.select_btn img {
	padding:10px 7px;
}
img.animation01{
	animation: 3s fuwafuwa1 ease-in-out infinite;
}
img.animation02{
	animation: 4s fuwafuwa2 ease-in-out infinite;
}
img.animation03{
	animation: 4.5s fuwafuwa3 ease-in-out infinite;
}

.support {
	bottom:22%;
	left: 0;
	right: 0;
}
/* ボタンアニメーション */
@keyframes fuwafuwa1 {
 0%, 100% {
 transform: translateY(3px) ;
}
 50% {
 transform: translateY(-3px) ;
}
}
@keyframes fuwafuwa2 {
 0%, 100% {
 transform: translateY(-3.5px);
}
 50% {
 transform: translateY(3.5px);
}
}
@keyframes fuwafuwa3 {
 0%, 100% {
 transform: translateY(4px);
}
 50% {
 transform: translateY(-4px);
}
}
/*フォーム*/
.form_area {
	background: url(../img/up/telling_img/form_body_bg.png);
	background-size: 100%;
	color: #ffffff;
	text-align: center;
}
.form_area p {
	font-weight:bold;
}
.form_gender, .form_birthday, .form_name {
	padding: 18px 0px;
}
.form_gender input {
	display: none;
}
.form_gender input[type="radio"]:checked#man + label {
  background: #006DD9;/* マウス選択時の背景色を指定する */
  color: #663333; /* マウス選択時のフォント色を指定する */
}
.form_gender input[type="radio"]:checked#woman + label {
  background: #ff90c1;/* マウス選択時の背景色を指定する */
  color: #663333; /* マウス選択時のフォント色を指定する */
}
.form_gender label {
	border: 2px solid #ffffff;
	padding: 1% 5%;
	margin:2%;
	font-size:min(5.5vw, 41.8px);
	border-radius: 8px;
}
.form_birthday {
	font-size:min(3vw, 22.8px);
	padding:0 5%;
}
.form_birthday select {
	font-size:min(4vw, 30.4px);
	padding: 2px 8px;
}
.form_name input {
	padding: 6px;
	font-size: min(4vw, 30.4px);
	width:80%;
}
p {
	margin: 0px;
	font-size:min(4.5vw, 34.2px);
	padding-bottom:14px
}
.form_contents input {
	width:80%;
	margin:0 auto;
	padding:8px 0;
}
.form_contents input[type="image"] {
	width:80.5%;
	max-width:612px;
	margin:0 auto;	
}
.form_question {
	padding:20px;
}
.form_answer {
	font-size: 16px;
	padding: 0px;
}
.btn_text_area{
	margin-top:20px;
	}
.btn_text_area span{
	font-size:min(3.2vw, 24.3px);
	font-weight:bold;
}
.mail_btn_area {
	color:#ffffff; /*メール説明の文字色*/
	border:2px #ffffff solid; /*枠線の色*/
	width:65%;
	margin:0 auto;
	text-align:left;
	font-size: 14px;
	padding:1%;
}
 @media (min-width:760px) {
.form_area {
	padding-top:30px;
}
.form_gender, .form_birthday, .form_name {
	padding: 18px 0px;
}
.form_gender label {
	border: 2px solid  #ffffff;
	padding: 4px 36px;
	margin: 8px;
	font-size: 36px;
	border-radius: 10px;
}
.form_birthday {
	font-size: 36px;
}
.form_birthday select {
	font-size: 36px;
	padding: 2px 14px;
}
.form_name input {
	padding: 6px;
	font-size: min(4vw, 30.4px);
	width:70%;
}
.form_gender input[type="radio"]:checked#man + label {
  background: #006DD9;/* マウス選択時の背景色を指定する */
  color: #663333; /* マウス選択時のフォント色を指定する */
}
.form_gender input[type="radio"]:checked#woman + label {
  background: #ff90c1;/* マウス選択時の背景色を指定する */
  color: #663333; /* マウス選択時のフォント色を指定する */
}
/*
p {
	margin: 0px;
	font-size:32px;
	padding-bottom:14px
}
*/
.form_contents input {
	width:80%;
	margin:0 auto;
	padding:8px 0;
}
.form_question {
	padding:20px;
}
.form_answer {
	font-size: 30px;
	padding: 0px;
}
.btn_text_area{
	margin-top:30px;
	}
.btn_text_area span{
	font-size:min(3.2vw, 24.3px);
	font-weight:bold;
}
.mail_btn_area {
	color:#ffffff; /*メール説明の文字色*/
	border:2px #ffffff solid; /*枠線の色*/
	width:64%;
	margin:0 auto;
	text-align:left;
	font-size: 20px;
	padding:1%;
}
}

/*サポート*/
.support_menu {
	background:url(../img/up/telling_img/support_bk.jpg);
	text-align:center;
}
.support_menu_total {
	width: 80%;
	margin: 0 auto;
	padding: 30px;
}
.support_menu_total a {
	text-decoration: none;
	font-size:18px;
}
.support_menu_btn {
	background:#cdeaff;
	background-size:80%;
	margin: 26px;
	padding: 16px 0px;
	color: #252251;
}

h2, p {
	color:#ffffff;
}
h2 {
	font-size:22px;
	margin: 46px 0px;
}
.support_menu_total p {
	width:80%;
	margin:0px auto;
	font-size:16px;
	text-align:left;
}
.support_menu_return {
	margin: 36px auto;
	font-size: 18px;
}
.support_menu_return a {
	text-decoration: none;
	color: #84c0e7;
}
 @media (min-width: 760px) {
.support_menu_total {
	width: 90%;
	margin: 0 auto;
	padding: 30px;
}
.support_menu_total a {
	text-decoration: none;
	font-size:30px;
}
.support_menu_btn {
	background:#cdeaff;
	background-size:80%;
	margin: 32px;
	padding: 23px 0px;
	color: #252251;
}

h2, p {
	color: #ffffff;
}
h2 {
	font-size:34px;
	margin: 46px 0px;
}
.support_menu_total p {
	width:80%;
	margin:0px auto;
	font-size:22px;
	text-align:left;
}
.support_menu_return {
	margin: 36px auto;
	font-size: 26px;
}
.support_menu_return a {
	text-decoration: none;
}
}

.sub_title{
	color: #FFF;
}