/* CSS Document */
@charset "utf-8";

html{
	overflow: auto;
}

body{
	width: 100%;
	min-width: 100%;
	height: 100%;
	margin: 0 auto;
	padding: 0;
	background: #FFF;
	position: relative;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
	/*font-weight: 400; normalと一緒 */
	font-weight: 500;
	/*font-weight: 700; /* boldと一緒 */
	line-height: 1.5;
	color: #000;
	overflow: hidden;
	word-break: break-all;
}
@media all and (-ms-high-contrast:none)
{
	body
	{
		font-family: "メイリオ", "Meiryo", sans-serif;
	}
}

a{color: #000; text-decoration: none;}
a:hover,a:active{text-decoration: underline;}

img,
svg{
	max-width: 100%;
	height: auto;
	width /***/: auto;
	border: none;
	vertical-align: bottom;
}

.clearfix{zoom: 1; overflow: hidden;}
.clearfix:after{
	content: "";
	display: block;
	clear: both;
}

iframe{max-width: 100%; border: 0;}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.red{color: #e60012;}
.blue{color: #00add8;}
.yellow{color: #f39c11;}


/* form */

input[type="text"],
input[type="date"],
input[type="tel"],
input[type="email"],
textarea,
select{
	width: 100%;
	padding: 10px;
	background: #FFF;
	border: 1px solid #F39C11;
	border-radius: 4px;
	outline: none;
	-webkit-appearance: none;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
	color: #000;
}
textarea{
	min-height: 90px;
}
input[type="text"],
input[type="tel"],
input[type="email"],
textarea{
	padding: 10px;
}
select{
	width: 100%;
	padding: 10px;
	background: #FFF;
	border: 1px solid #F39C11;
	border-radius: 4px;
	outline: none;
	font-size: 16px;
	color: #000;
}
label{
	font-size: 16px;
}
input[type="radio"],
input[type="checkbox"],
label,
button{
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	cursor: pointer;
}
input[type="radio"],
input[type="checkbox"]{
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
}


@media screen and (max-width:768px){
	body{-webkit-text-size-adjust: 100%; font-size: 3.7vw;}

	.pc{display: none !important;}

	textarea{min-height: 200px;}
}

@media screen and (min-width:769px){
	/*body{min-width: 1200px;}*/
	body{min-width: 1560px;}

	.sp{display: none !important;}

	.over{transition: all 0.2s ease-in 0s;}
	.over:hover{filter: brightness(120%);}
}
