
/* ////////////////////////////////////////////
 *                 BASE
 * //////////////////////////////////////////// */

@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap');

/* clearfix
------------------------------------------*/
.clear{ clear: both; }
.clearfix{ zoom: 1; }
.clearfix:after{ content: ""; display: table; clear: both; }

/* base
------------------------------------------*/
*, *:before, *:after{
	outline: none;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
html{
	font-size: 62.5%;
}
body, th, td, h1, h2, h3, h4, h5, h6, table, td, th, input, textarea, select, label, button{
	color: #333;
	font-size: 1.6rem;
	font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Helvetica', 'Arial', 'YuGothic', 'Yu Gothic', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
	font-weight: normal;
	line-height: 1.6;
	letter-spacing: 0;
	word-break: break-all;
	word-wrap: break-word;
}
h1, h2, h3, h4, h5, h6{
	color: #333;
	font-weight: bold;
	line-height: 1.3;
}

a{ color: #333; text-decoration: none; }
.preload *{ transition: none; }
a, input, textarea, button{ transition: all 0.2s linear; }
a:hover, button:hover{ opacity: 0.7; }
a.ro-fade img{ transition: all 0.2s linear; }
a.ro-fade img:hover{ opacity: 0.7; }

.sp{
	display: none;
}

img{
	width: 100%;
	height: auto;
	vertical-align: middle;
}
ul{
	list-style: none;
}

button{
	cursor: pointer;
	cursor: pointer;
	position: relative;
	display: block;
	padding: 15px 80px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	background: #ce323a;
	border: none;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
textarea{
	display: block;
	margin: 0 0 1px 0;
	padding: 10px 15px;
	width: 100%;
	background: #fff;
	border: #ddd 1px solid;
	appearance: none;
}
input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus{
	background: #fff;
	border: #aaa 1px solid;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
textarea{
	padding: 10px 15px;
	height: 200px;
}
.select-wrap select{
	padding: 10px 25px 10px 15px;
	color: #333;
	background: linear-gradient(45deg, transparent 50%, #333 50%) no-repeat center right 14px/4px 4px,
	linear-gradient(-45deg, transparent 50%, #333 50%) no-repeat center right 10px/4px 4px;
	background-color: #fff;
	border: #ddd 1px solid;
	border-radius: 3px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.radio-wrap{
	overflow: hidden;
	margin: 0 0 -5px 0;
}
.radio{
	float: left;
	margin: 0 5px 5px 0;
}
.radio input{
	display: none;
}
.radio label{
	cursor: pointer;
	display: block;
	padding: 2px 10px;
	color: #6cbfc6;
	font-size: 1.3rem;
	border: #6cbfc6 1px solid;
	border-radius: 3px;
}
.radio input:checked + label{
	color: #fff;
	background: #6cbfc6;
}
.checkbox{
	position: relative;
	padding: 0 0 0 25px;
}
.checkbox input{
	display: none;
}
.checkbox label{
	cursor: pointer;
}
.checkbox label:before{
	content: "";
	position: absolute;
	top: 5px;
	left: 0;
	height: 18px;
	width: 18px;
	border: #ccc 1px solid;
	border-radius: 3px;
}
.checkbox input:checked + label:before{
	height: 18px;
width: 10px;
top: 2px;
left: 5px;
border-top: transparent 2px solid;
border-left: transparent 2px solid;
border-bottom: #6cbfc6 2px solid;
border-right: #6cbfc6 2px solid;
border-radius: 0;
transform: rotate(45deg);
}

::placeholder{
	opacity: 1;
color: #999;
}