@charset "utf-8";
/* CSS Document 全共通css*/
.pc {
	display: block;
}
.sp {
	display: none !important;
}
.none {
	display: none;
}
/* リセット */
* {
	box-sizing: border-box;
	word-break: break-all;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}
html {
	width: 100%;
	font-size: 62.5%;
	overflow-y: scroll;
	overflow-x: auto;
	scroll-behavior: smooth; /* スムーススクロール */
	scroll-padding-top: 0; /* ヘッダー固定アンカー調整 */
}
body {
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%; /* フォントサイズ自動調整を固定に */
	width: 100%;
	margin: 0;
	padding: 0;
	background-color: #fff;
	text-decoration: none;
	line-height: 2;
	font-size: 2.0rem;
	letter-spacing: 0.04em;
	color: #333;
	font-style: normal;
	font-feature-settings: "palt";
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	font-size: 100%;
	font-size: 1rem;
	font-weight: normal;
	font-style: normal;
	font-feature-settings: "palt";
}
dl, dt, dd, ol, ul, li, p, figure {
	margin: 0;
	padding: 0;
}
i, figure, .photo_area {
	line-height: 1;
}
strong {
	font-weight: 600;
	font-style: normal;
}
em {
	font-style: italic;
}
address {
	font-style: normal;
}
.bold {
	font-weight: 600;
}
.font_l {
	font-size: 2.4em !important;
}
.font_s {
	font-size: 1.5em !important;
}
.red {
	color: #BF0808;
}
.blue {
	color: #28326e;
}
.center {
	text-align: center;
}
.right {
	text-align: right;
}
.left {
	text-align: left;
}
.photo_right {
	float: right;
	margin-left: 30px;
}
.photo_left {
	float: left;
	margin-right: 30px;
}
.photo_center {
	text-align: center;
}
.lefter {
	float: left;
}
.righter {
	float: right;
}
a {
	color: inherit;
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}
a img {
	border: none;
}
.clear {
	clear: both;
	font-size: 0;
	line-height: 0;
}
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
/* 画像リンク */ /*色つきはサイズ注意*/
a:hover img {
	opacity: 0.65;
}
/* 画像リンク */ /*オーバー用透過なし*/
a:hover img.noopa {
	opacity: 1.0;
	filter: alpha(opacity=100);
}
* img {
	max-width: 100%;
	height: auto;
}
label {
	cursor: pointer;
}
select, input, textarea {
	font-size: 2.0rem;
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-style: normal;
}
/* 基本レイアウト */
body {
	border-top: solid 6px #92277c;
	overflow: hidden;
}
body > header {
	position: absolute;
	left: calc(50% - 640px);
	top: 0;
	width: 1280px;
	margin: -6px auto 0 auto;
	z-index: 1;
}
@media screen and (max-width: 1279px) {
	body > header {
		left: 0;
		top: 0;
		width: 100%;
	}
}
#contents {
	margin: 0 auto;
}
body > footer {
	clear: both;
	width: 100%;
	height: 100px;
	margin: 0 auto;
	background-color: #E5E5E1;
	border-bottom: solid 6px #92277C;
}
/* 以上基本レイアウト */
/*ヘッダー*/
body > header h1 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 140px;
	margin-left: 50px;
	border-radius: 0px 0px 10px 10px;
	background: #fff;
	box-shadow: 0px 0px 3px rgba(153, 153, 153, 0.5);
	border-bottom: solid 6px #92277c;
}
/*/ヘッダー*/
/* pagetop */
#gototop {
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 1001;
}
#gototop a {
	display: flex;
	justify-content: center;
	align-content: center;
	width: 60px;
	height: 60px;
	background-color: #92277C;
	color: #fff;
	font-size: 3.0rem;
	text-decoration: none;
}
#gototop a:hover {
	opacity: 0.8;
	text-decoration: none;
}
/*フッター*/
body > footer .inside {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1280px;
	height: 100px;
	margin: 0 auto;
}
body > footer .inside .menu_area {
	margin: 0;
}
body > footer .inside .menu_area a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 140px;
	height: 30px;
	border-right: 0.75px solid #333;
	border-left: 0.75px solid #333;
	text-decoration: none;
}
body > footer .inside a:hover {
	opacity: 0.6;
}
body > footer .copyright {
	align-self: flex-end;
	width: 100%;
	padding-bottom: 15px;
	font-size: 1.5rem;
	text-align: right;
}
/*/フッター*/