@charset "utf-8";
/* CSS Document 全共通css*/
.pc {
	display: block;
}
.sp {
	display: none !important;
}
.none {
	display: none !important;
}
/*変数設定*/ :root {
	--thema-color: #f75f60;
	--thema-color-pale: #FCEAE9;
	--text-color: #303030;
	--text-color-sub: #C1C1C1;
	--btn-color: #f7c524;
	--btn-color02: #FF8844;
	--btn-color-hover: #f7de8b;
	--btn-color03: #C1C1C1;
	--btn-color03-hover: #C1C1C1;
}
/* リセット */
* {
	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: 105px; /* ヘッダー固定アンカー調整 */
}
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;
	font-size: 1.6rem;
	line-height: 2.2;
	letter-spacing: 0.04em;
	color: var(--text-color);
	font-family: "Noto Sans JP", serif;
	font-weight: 400;
	font-style: normal;
	font-feature-settings: "palt";
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	font-size: 100%;
	font-size: 1.6rem;
	font-weight: 400;
	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: 700;
	font-style: normal;
}
em {
	font-style: italic;
}
address {
	font-style: normal;
}
.bold {
	font-weight: 600;
}
.font_l {
	font-size: 1.8em !important;
}
.font_ll {
	font-size: 2.1em !important;
}
.font_s {
	font-size: 1.2em !important;
}
.font_ss {
	font-size: 1.0em !important;
}
.blue {
	color: #4CABE1;
}
.red {
	color: #F30000;
}
.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;
}
.photo {
	line-height: 0;
}
a {
	color: inherit;
	text-decoration: none;
	transition: 0.3s;
}
a:hover {
	color: inherit;
	text-decoration: underline;
}
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.8;
	filter: alpha(opacity=80);
}
/* 画像リンク */ /*オーバー用透過なし*/
a:hover img.noopa {
	opacity: 1.0;
	filter: alpha(opacity=100);
}
* img {
	max-width: 100%;
	height: auto;
}
label {
	cursor: pointer;
}
select, input, textarea, button {
	font-size: 1.6rem;
	color: var(--text-color);
	font-family: "Noto Sans JP", serif;
	font-weight: 400;
	font-style: normal;
}
/* 基本レイアウト */
body {
	overflow: hidden;
}
body > header {
	position: fixed;
	left: auto;
	top: 0;
	width: 100%;
	height: 105px;
	border-bottom: solid 3px var(--thema-color);
	background-color: #fff;
	z-index: 1000;
}
#contents {
	margin: 105px auto 0 auto;
	padding: 0 0 0 0;
}
.logout #contents {
	margin: 105px auto 0 auto;
	padding-bottom: 0;
	background-image: url("../images/common/bg.png");
	background-position: center top;
	background-repeat: repeat-x;
	background-repeat: no-repeat;
	/*background-color: #620405;*/
	color: #fff;
}
.logout #contents table {
	color: var(--text-color);
}
#contents .contents_bg {
	background-image: url("../images/common/bg_login.png");
	background-position: center bottom;
	background-repeat:repeat-x;
	background-repeat: no-repeat;
}
.logout #contents .contents_bg {
	max-width: 1184px;
	margin: 0 auto;
	background-image: url("../images/common/bg_logout.png");
	background-color: #620405;
}
body > footer {
	clear: both;
	width: 100%;
	padding: 5px 0;
	font-size: 1.3rem;
	text-align: center;
	border-top: solid 1px #f75f60;
	border-bottom: solid 5px #f75f60;
}
body.logout > footer {
	background-color: #FFF;
}
body > footer p {
	width: 100%;
	margin: 0;
}
/* 以上基本レイアウト */
/*ヘッダー*/
body > header .inside {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1000px;
	height: 100px;
	margin: 0 auto;
}
body > header a {
	text-decoration: none;
}
body > header a:hover {
	text-decoration: none;
}
body > header .logo {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
	line-height: 1;
}
body > header .logo img {
	width: auto;
	height: 73px;
}
body > header .logo_iM {
	line-height: 1;
}
body > header .logo_iM img {
	width: auto;
	height: 60px;
}
/*/ヘッダー*/
/* pagetop */
#gototop {
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 1001;
}
#gototop a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border: solid 2px var(--thema-color);
	background-color: #fff;
	color: var(--thema-color);
	font-size: 2.4rem;
	text-decoration: none;
}
#gototop a:hover {
	background-color: var(--thema-color);
	color: #fff;
	transition: 0.4s;
}
/*フッター*/
.footer_bg {
	height: 144px;
	background-image: url("../images/common/bg_login.png");
	background-position: center top;
	background-repeat: no-repeat;
}
.footer_menu {
	padding: 160px 0 25px 0;
	text-align: center;
}
.logout .footer_menu {
	padding: 25px 0;
	text-align: center;
}
.footer_menu a {
	text-decoration: none;
	color: var(--text-color);
}
.footer_menu a:hover {
	text-decoration: underline;
}
.logout .footer_menu {
	color: #fff;
}
.logout .footer_menu a {
	color: #fff;
}
/*/フッター*/