@charset "UTF-8";

/*初期化
-----------------------------------------------------------------------------------*/
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
	text-align: center;
	line-height: 1;
	list-style: none;
	text-decoration: none;
	font-style: normal;
	font-weight: normal;
}

html {
	scroll-behavior: smooth;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

img {
	border: none;
	background: transparent;
	max-width: 100%;
	width: auto;
	height: auto;
	vertical-align: middle;
}

q:before,
q:after {
	content: "";
}
abbr,
acronym {
	border: 0;
	font-variant: normal;
}
sup {
	vertical-align: text-top;
}
sub {
	vertical-align: text-bottom;
}

/* インデント */
.idt_1 {
	text-indent: -1em;
	padding-left: 1em;
}
.idt_2 {
	text-indent: -2em;
	padding-left: 2em;
}
.idt_3 {
	text-indent: -3em;
	padding-left: 3em;
}

/* 幅指定 */
.w10p {
	width: 10%;
}
.w20p {
	width: 20%;
}
.w25p {
	width: 25%;
}
.w33p {
	width: 33%;
}
.w40p {
	width: 40%;
}
.w50p {
	width: 50%;
}
.w66p {
	width: 66%;
}
.w75p {
	width: 75%;
}
.w80p {
	width: 80%;
}
.w90p {
	width: 90%;
}
.w100p {
	width: 100%;
}

/* 回り込み解除 */
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearfix {
	display: inline-table;
	min-height: 1%; /* for IE 7*/
}
/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/* End hide from IE-mac */

/*フォーム*/
select {
	border: 1px solid;
	padding: 10px;
	max-width: 100%;
	line-height: 1;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="password"] {
	padding: 10px;
	max-width: 100%;
	line-height: 1;
}
textarea {
	border: 1px solid;
	padding: 10px;
	max-width: 100%;
	line-height: 1.5;
}
button {
	max-width: 100%;
	line-height: 1;
	padding: 0;
	border: 0;
	background-color: inherit;
}
button img {
	vertical-align: middle;
}
button[type="submit"] {
	font-size: 120%;
}

/* コンテンツブロック */
main {
	display: block;
}

/* 警告表示 */
.alert {
	color: #ff3030;
	display: none;
	font-size: 100%;
}

/* リンク初期化 */
a {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}
/* マウスオーバー遅動 */
a,
a:hover,
a:hover img {
	/* color: #FF3030 !important; */
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
/* 画像リンク：マウスオーバー */
a:hover img {
	opacity: 0.8;
	filter: alpha(opacity=80);
	-ms-filter: "alpha( opacity=80 )";
}

/* PC・スマホ共通 */
body {
	color: #000000;
	line-height: 1;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,
		"A-OTF 新ゴ Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
