@charset "UTF-8";

*{
	box-sizing: border-box;
	line-height: 1.6;
}
html{
	font-size: 62.5%;
	font-family: 'Noto Sans JP', sans-serif;
}
body{
	font-size: 1.4rem;
	line-height: 1.6;
	color: #333;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%
}
a,
label{
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	transition: opacity 0.3s;
	color: #333;
	text-decoration: none;
}
a:hover,
label:hover,
input[type="submit"]:hover{
	opacity: 0.5;
}
input[type="text"],
input[type="submit"],
select,
textarea{
	font-size: 1.6rem;
	appearance: none;
	-webkit-appearance: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	outline: none;
	border: 1px solid #ccc;
	border-radius: 0;
	display: block;
	width: 100%;
	height: 40px;
	padding: 0.25rem 1rem;
	transition: opacity 0.3s;
}
textarea{
	font-size: 1.2rem;
	height: auto;
	padding: 0.25rem 1rem;
	min-height: 12rem;
}


.selectWrap{
	position: relative;
}
.selectWrap::before{
	display: block;
	content: '';
	position: absolute;
	width: 12px;
	height: 12px;
	border-top: 1px solid #aaa;
	border-right: 1px solid #aaa;
	z-index: 5;
	top: calc(50% - 10px);
	right: 1rem;
	transform: rotate(135deg);
}
.c-button--01,
input[type="submit"].c-button--01{
	font-size: 2rem;
	text-decoration: none;
	background-color: #FF6000;
	color: #fff;
	border: 1px solid #ff6600;
	border-radius: 50px;
	height: 55px;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s, border 0.3s;
	margin: 0 auto;
	font-weight: bold;
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif;
}

.c-button--02,
input[type="submit"].c-button--02{
	font-size: 1.4rem;
	text-decoration: none;
	background-color: #fff;
	color: #ff9900;
	border: 1px solid #ff9900;
	border-radius: 50px;
	height: 42px;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s, border 0.3s;
}
.c-button--01.is-inactive{
	pointer-events: none;
	background-color: #ccc!important;
	border: 1px solid #ccc!important;
}

input[type="radio"]{
	position: relative;
	appearance: none;
	-webkit-appearance: none;
	height: 20px;
	width: 20px;
	border-radius: 20px;
	display: block;
	border: 1px solid #ccc;
}
input[type="radio"]:checked{
	border-color: #ff9900;
}
input[type="radio"]:checked::before{
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	height: 12px;
	width: 12px;
	border-radius: 10px;
	display: block;
	background-color: #ff9900;
	animation: expand 0.3s 0s ease 1 normal;
}
@keyframes expand{
	0% { transform: scale(0); }
	70% { transform: scale(1.3); }
	100% { transform: scale(1); }
}

.c-title--M01{
	padding: 0.5rem 1rem;
	background-color: #ffeccc;
	border-top: 1px solid #F99D8C;
	border-bottom: 1px solid #F99D8C;
}

.c-header{
	height: 28px;
	border-bottom: 1px solid #ff9900;
	padding: 0 1rem;
	box-sizing: border-box;
}
.c-header__logoWrap{
}
.c-header__logo{
	margin-top: 0.5rem;
	height: 12px;
}
.c-header__copyWrap{
	padding-left: 2rem;
	box-sizing: border-box;
}

.c-modalWrap{
	position: fixed;
	opacity: 0;
	z-index: -1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
	padding: 0 1rem;
	box-sizing: border-box;
	transition: opacity 0.3s, z-index 0.3s;
}
.c-modalWrap.is-active{
	opacity: 1;
	z-index: 1000;
}
.c-modalBox{
	background-color: #fff;
	z-index: 101;
	width: 100%;
	border-radius: 5px;
	max-height: 100%;
	overflow: visible;
	position: relative;
	top: -6rem;
	transition: top 0.5s;
}
.c-modalWrap.is-active .c-modalBox{
	top: 0rem;
}
.c-modalHeader{
	text-align: center;
	line-height: 28px;
	height: 28px;
	border-bottom: 1px solid #ff9900;
}
.c-modalMain{
	overflow: scroll;
}
.c-modalFooter{
	border-top: 1px solid #ff9900;
}
.c-modalClose{
	display: block;
	height: 36px;
	width: 36px;
	position: absolute;
	top: -36px;
	right: 0;
	z-index: 1001;
}
.c-modalClose::before{
	content: "";
	display: block;
	border-top: 2px solid #fff;
	transform: rotate(45deg);
	width: 36px;
	height: 1px;
	z-index: 1002;
	position: absolute;
	top: 16px;
	left: -1px;
}
.c-modalClose::after{
	content: "";
	display: block;
	border-top: 2px solid #fff;
	transform: rotate(135deg);
	width: 36px;
	height: 1px;
	z-index: 1002;
	position: absolute;
	top: 15px;
	left: -1px;
}