@charset "UTF-8";

/*-----------------------------------------------
(Component)
__Default Clear
__Layout
-----------------------------------------------*/

/*-----------------------------------------------
__Default Clear
-----------------------------------------------*/
html{
	overflow-y: scroll;
}
body,header,main,footer,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,select,label,p,blockquote,th,td,dl,dt,dd,section,article,a,figure{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	background:white;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 500;
	font-size: 110%;
	letter-spacing: 0.1em;
	line-height:1.6;
	color:#333;
	overflow-x: hidden;
}
address,caption,cite,code,dfn,em,strong,th,var{
	font-style: normal;
}
table{
	border-collapse: collapse;
	border-spacing: 0;
}
caption,th{
	text-align: left;
}
q:before,q:after{
	content: '';
}
object,embed{
	vertical-align: top;
}
legend{
	display: none;
}
hr{
	border:none;
	border-top:1px solid #ddd;
	margin:60px auto;
}
h1,h2,h3,h4,h5,h6{
	font-size: 100%;
}
img,abbr,acronym,fieldset{
	border: 0;
}
img{
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
	width /***/:auto;
}

li{
	list-style-type: none;
}
p{
	margin-bottom: 1.5em;
}
a{
	text-decoration:none;
	transition: all ease .3s;
}

input,textarea,button{
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	-webkit-appearance: none;
	outline: none;
	border: 1px solid #ccc;
	border-radius: 3px ;
	padding: 10px;
}
button{
	background: #333;
	color: #fff;
}
::selection {
    background: rgba(244,106,83,0.2);
    color: #333;
}
::-moz-selection {
    background: rgba(244,106,83,0.2);
    color: #333;
}

.img-ofi {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	font-family: 'object-fit: cover; object-position: center;'
}
.img-btm {
	object-fit: cover;
	object-position: center bottom;
	font-family: 'object-fit: cover; object-position: center bottom;'
}

em{
	font-weight: bold;
}
.red{
	color: #df1a1a;
}

/*-----------------------------------------------
__Layout
-----------------------------------------------*/
#container,
header,
main,
footer{
	width: 100%;
	margin: 0 auto;
}
.wrap{
	width: 90%;
	max-width: 1280px;
	clear:both;
	margin:0 auto;
}

main a{
	color:#F46A53;
	text-decoration:underline;
}
main a:hover{
	text-decoration:none;
}
main a[href$=".pdf"]::after{
	content: "PDF";
	margin-left: 0.5em;
	vertical-align: middle;
	display: inline-block;
	font-size: 0.5em;
	padding: 1px 5px;
	border-radius: 3px;
	border: 1px solid #333;
	color: #333;
}
main a[href$=".pdf"].none::after{
	display: none;
}

#topcontrol{
	z-index:100
}
#pagetop{
	position: relative;
	display: block;
	width:50px;
	height:50px;
	border-radius: 20px;
	background:#31317A;
}
#pagetop::after{
	content: "";
	position: absolute;
	z-index: 1;

	top:15px;
	left: 45%;
	width: 15px;
	height: 15px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(-45deg) translateX(-50%);
	transform: rotate(-45deg) translateX(-50%);
}