@charset "utf-8";


/* all
-------------------------------------------------------------------*/
:root{
	--main_color:#631d99;
	--main_color02:#9c4ed8;
	--sub_color:#a70000;
	--sub_color02:#936a27;
	--accent01:#09380d;
	--accent02:#49884f;
	--accent03:#0068b7;
	--accent04:#8c6609;
	--accent05:#da1725;
}
html {
	background:#FFFFFF;
	color:#333333;
	font-family: 'Shippori Mincho',  "Noto Serif JP", "游明朝体" ,"Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Times New Roman", "HG明朝B", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size:16px;
	line-height:1.4;
}
html .sans,
html .sans form *{
	font-family: "Noto Sans JP", serif;
}
html .serif,
html .serif form *{
	font-family: "Noto Serif JP", serif;
}
body {
	width: 100%;
	font-size: 100%;
	text-align: center;
	min-width:1100px;
}
main{
	overflow:hidden;
	width:100%;
}
.sitewrap {
	width: 1200px;
	min-width:1200px;
	overflow:hidden;
	margin: 0 auto;
	text-align: left;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
@media screen and (max-width:1200px) {
	body,
	.sitewrap {
		width: 100%;
		min-width:0;
	}	
	.sitewrap > *{
		padding-left:2%;
		padding-right:2%;
	}
}
@media screen and (max-width:767px) {
	html {
		font-size:14px;
	}
	.sitewrap > *{
		padding-left:15px;
		padding-right:15px;
	}
}


/* header
-------------------------------------------------------------------*/
header#fix_menu{
	background: var(--sub_color02);
	position: fixed;
	top: 0;
	left:0;
	right:0;
	z-index:999;
	transition:top .4s .2s;
}
header#fix_menu.fixedMenu{
	position:fixed;
	top: 0;
}
.menu_top {
   	position:relative;
   	max-width: 1200px;
   	margin: 0 auto;
}
.menu_top #site_ttl {
	padding: 12.5px 10px;
	white-space:nowrap;
	text-align: left;
}
.menu_top #site_ttl a{
	display:inline-block;
	vertical-align:middle;
	transition:.4s opacity;
}
.menu_top #site_ttl a:hover{
	opacity:0.8;
}
.menu_top .right_menu{
	padding: 20px 10px;
	text-align:right;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	color: #fff;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 4.5em;
}
.menu_top .right_menu li a{
	font-size:2.625rem;
	font-weight:600;
	display: block;
}
.menu_top .right_menu li a span{
	position:relative;
	z-index:5;
}
.menu_top .right_menu li a:hover{
	text-decoration:none;
}
.menu_top .right_menu li a span:after{
	content:"";
	width:100%;
	height: 1px;
	background:#fff;
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	transition:.5s transform;
	transform:scale(1,1);
	transform-origin:left top;
}
.menu_top .right_menu li a:hover span:after{
	transform:scale(0,1);
	transform-origin:right top;
}
@media screen and (max-width:767px) {
	header .menu_top{
		padding:0;
	}
}
@media screen and (max-width:767px) {
	body {
		padding-top: 50px;
	}
	header#fix_menu,
	header#fix_menu.fixedMenu{
		top:0;
		transition: none;
		position: fixed;
	}
	header .menu_top {
		position: relative;
		top:0;
		left:0;
		width:100%;
		z-index: 700;
		background: none;
		padding: 0;
		box-sizing: border-box;
	}
	header .menu_top #site_ttl{
		padding: 5px 5px;
	}
	header .menu_top #site_ttl img{
		max-height:40px;
		width:auto;
	}
	header .menu_top #site_ttl p{
		display:none;
	}
	.menu_top .right_menu {
		padding: 5px 10px;
		gap: 1em;
	}
	.menu_top .right_menu li a{
		font-size: 1.25rem;
	}
	.menu_top #site_ttl a:hover{
		opacity:1;
	}
	.menu_top .right_menu li a span:after{
		height:1px;
	}
	.menu_top .right_menu li a:hover span:after{
		transform:scale(1,1);
	}
}

/* contents
-------------------------------------------------------------------*/

main{
	margin-top: 100px;
	display: block;
}
@media screen and (max-width:767px) {
	main{
	margin-top: 0;
	}
}


/* footer
-------------------------------------------------------------------*/
#pageTop {
	position: fixed;
	bottom: 15px;
	right: 5%;
	width: 70px;
	z-index: 500;
	transition:bottom .4s;
}
footer{
	background:var(--sub_color02);
	padding:40px 0;
}
footer small{
	font-size:23px;
	color: #fff;
	font-weight: 600;
}
main a.page_link {
	margin-top: -100px;
	padding-top:100px;
	display: block;
	position:relative;
	z-index:-10;
}
@media screen and (max-width:767px) {
	main a.page_link {
		margin-top: -60px;
		padding-top:60px;
	}
	#pageTop {
	    width: 49px;
		right:10px;
		bottom:10px;
	}
	footer{ padding:30px 0;}
	footer small{
		font-size:10px;
	}
}