/* 共通設定 */
* {
	box-sizing: border-box;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	padding: 0;
	margin: 0;
//	font-size: 15px;
}
/* divはデフォルトで選択不可 */
div {
	user-select: none;
}
/* 共通変数 */
:root {
	--content-max-width: 960px;
	--content-min-width: 375px;
	--header-area-height: 70px;
	--footer-area-color: #cceeff;
}
/* bodyの共通設定 */
.content_area {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	min-width: var( --content-min-width );
}
.fadein {
	opacity: 0;
	transition: all 2.0s;
}
.fadein.active {
	opacity: 1;
}
body {
	background-color: var( --footer-area-color );
	overflow: hidden;
	color: #555555;
}
a:link {
	color: #555555;
}
a:visited {
	color: #555555;
}
/*
a {
	text-decoration: none;
}
*/
a:hover {
	color: #3388ff;
//	text-decoration: underline;
}
/*==================================================================*/
/* ヘッダエリア */
.header_row {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var( --header-area-height );
	border-bottom: 1px solid #bbbbbb;
	z-index: +10;
	background: linear-gradient(to right, #ffeeee, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff);
	text-align: center;
}
.header_area {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: var( --content-max-width );
	height: 100%;
	z-index: +2;
}
/* ロゴエリア */
.logo_area {
	position: absolute;
	top: calc( calc( var( --header-area-height ) - 35px ) / 2 );
	left: 5px;
	height: 35px;
	width: 80px;
}
.logo_area img {
	width: 100%;
//	height: 35px;
}
.smart_company_name {
	display: none;
}
/* PC用メニューエリア */
.pc_menu_area {
	display: flex;
	position: absolute;
	top: 50%;
	left: 100px;
	transform: translateY( -50% );
}
/* PC用メニュー */
.pc_menu_area > div {
	position: relative;
	color: #333333;
	font-size: 18px;
	font-weight: bold;
	padding: 0 12px;
	cursor: pointer;
}
.pc_menu_area > div:has(div):hover .child {
	border-color: #88ccff;
}
/* PC用サブメニュー有りマーク */
.pc_menu_area > div > div {
	position: absolute;
	top: 22px;
	left: 45%;
	content: "";
	width: 10px;
	height: 10px;
	border-style: solid;
	border-width: 0 0 3px 3px;
	border-color: #888888;
	transform: translate( 2px, 4px ) rotate(-45deg);
}
/* PC用サブメニューの下地 */
#pc_menu_sub_area {
	position: absolute;
	top: 100%;
	width: 100%;
	height: 50px;
	background: linear-gradient(to right, #ffeeee, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff);
	box-shadow: 0 8px 8px 0 #888888;
}
#pc_menu_sub_area > div {
	position: relative;
	display: inline-block;
	height: 50px;
	width: 100%;
	max-width: var( --content-max-width );
	z-index: +2;
	padding: 20px 10px 10px 10px;
	text-align: left;
}
#pc_menu_sub_area > div > div:not(:last-child) {
	margin-left: 100px;
}
#pc_menu_sub_area > div > div:not(:last-child) {
	display: flex;
	position: absolute;
	top: 0;
	left: 50%;
	height: 100%;
	transform: translateX( -50% );
	width: var( --content-max-width );
}
#close_pc_menu_sub_area {
	position: absolute;
	width: 40px;
	height: 40px;
	margin: 5px;
	top: 0;
	left: auto;
	right: 30px;
	cursor: pointer;
}
#close_pc_menu_sub_area > div:nth-child(1) {
	position: absolute;
	top: 18px;
	left: -2px;
	width: calc( 100% - 8px );
	height: 4px;
	padding: 0;
	background-color: #888888;
	border-radius: 2px;
	transform: rotate(45deg);
}
#close_pc_menu_sub_area > div:nth-child(2) {
	position: absolute;
	top: 18px;
	left: -2px;
	width: calc( 100% - 8px );
	height: 4px;
	padding: 0;
	background-color: #888888;
	border-radius: 2px;
	transform: rotate(-45deg);
}
/* PC用サブメニュー */
#pc_menu_sub_area > div > div > div {
	font-size: 18px;
//	font-weight: bold;
	padding: 12px 15px;
}
.mynavi_pc_link_area {
	position: absolute;
	top: 14px;
	right: 180px;
	width: var( --header-area-height );
	height: var( --header-area-height );
}
.privacy_mark_area {
	position: absolute;
	top: 0;
	right: 20px;
	width: var( --header-area-height );
	height: var( --header-area-height );
}
#privacy_mark_image {
	position: absolute;
	top: 5px;
	width: 100%;
	height: calc( var( --header-area-height ) - 10px );
	background-position: center;
	background-image: url( "/img/20002226_75_JP.gif" );
	background-size: contain;
	background-repeat: no-repeat;
}

/* スマホ用メニューアイコン */
#smart_menu_icon {
	display: none;
}
/* スマホ用メニューエリア */
#smart_menu_area {
	display: none;
}
/* スマホ用社名エリア */
.smart_company_name_area {
	display: none;
}
.content_area {
	position: absolute;
	top: var( --header-area-height );
	left: 0;
	width: 100%;
	height: calc( 100% - var( --header-area-height ) );
	overflow: auto;
}
/* 各フィールドの下地 */
.content_row {
	position: relative;
	width: 100%;
	background-color: #ffffff;
}
.content_box {
	position: absolute;
	width: var( --content-min-width );
	max-width: var( --content-min-width );
	min-width: var( --content-min-width );
	padding: 10px;
	
}
.content_shadow {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1010;
	background-color: rgba( 255, 255, 255, 0.8 );
}
/*==================================================================*/
.bread_list {
	position: relative;
	padding: 5px;
	border-bottom: 1px solid #cccccc;
}
.bread_list > div {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: var( --content-max-width );
	text-align: left;
}
.bread_list > div > div {
	display: flex;
}
.bread_list > div > div > div:first-child {
	margin-left: 20px;
}
.bread_list > div > div > div:first-child::after {
	position: absolute;
	right: -17px;
	content: "";
	height: 21px;
	width: 2px;
	background-color: #888888;
}
.bread_list > div > div > div {
	position: relative;
	padding: 10px 0;
	font-size: 16px;
}
.bread_list > div > div > div:not(:first-child) {
	margin-left: 30px;
}
.bread_list > div > div > div:not(:first-child):not(:last-child)::after {
	position: absolute;
	content: "";
	top: 38%;
	right: -20px;
	width: 6px;
	height: 6px;
	border-style: solid;
	border-color: #000000;
	border-width: 0 2px 2px 0;
	transform: rotate(-45deg);
}
/*==================================================================*/
.contact_area {
	position: relative;
	display: inline-block;
	min-height: 100px;
	width: 100%;
	max-width: var( --content-max-width );
	z-index: +2;
	padding: 30px 20px;
	text-align: center;
	color: #ffffff;
}
.contact_title {
	font-size: 35px;
	font-weight: bold;
}
.contact_layout > div:nth-child(1) {
	border: 2px solid #ffffff;
	border-radius: 8px;
	height: 62px;
	font-size: 16px;
	color: #000000;
	background-color: #ffffcc;
	cursor: pointer;
	padding: 18px;
	margin-top: 10px;
}
.contact_layout > div:nth-child(2) {
	margin-top: 10px;
}
.contact_layout > div:nth-child(2) > div:nth-child(1) {
	font-size: 16px;
}
.contact_layout > div:nth-child(2) > div:nth-child(2) {
	font-size: 12px;
}
/*
.contact_layout {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat( 2, calc( calc( 100% - 10px ) / 2 ) );	
	margin-top: 20px;
}
.contact_layout > div {
	border: 2px solid #ffffff;
	border-radius: 8px;
	padding: 10px;
	height: 62px;
	font-size: 16px;
}
.contact_layout > div:first-child:hover {
	color: #000000;
	background-color: #ffffcc;
	cursor: pointer;
}
.contact_layout > div:first-child {
	padding: 18px;
}
.contact_layout > div > div:nth-child(n+2) {
	margin-top: 3px;
	font-size: 12px;
}
*/
/*==================================================================*/
.sitemap_area {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: var( --content-max-width );
	z-index: +2;
	padding: 10px;
	text-align: center;
background-color: #ffffff;
}
.sitemap_title {
	font-weight: bold;
	font-size: 50px;
}
.sitemap_layout {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat( auto-fit, minmax( 210px, 1fr ) );
	margin-top: 20px;
	margin-left: 40px;
	font-size: 16px;
	text-align: left;
}
.sitemap_layout > div > div {
	margin-top: 15px;
	font-weight: bold;
}
.sitemap_layout > div > div > div {
	margin-bottom: 5px;
}
.sitemap_layout a:hover {
	color: #ff5555;
}
.sitemap_layout ul {
	list-style: none;
	margin-left: 10px;
}
.sitemap_layout li {
	white-space: nowrap;
	font-weight: normal;
	margin-bottom: 10px;
}
/*==================================================================*/
.footer_area {
	position: relative;
	display: inline-block;
	height: var( --header-area-height );
	width: 100%;
	max-width: var( --content-max-width );
	z-index: +2;
	padding: 20px 10px 10px 10px;
	text-align: center;
}
/*
.footer_area > div:first-child {
	width: calc( 100% - 20px );
	height: 1px;
	background-color: #555555;
	margin-left: 10px;
	margin-bottom: 10px;
}
*/
.copy_right {
	margin-left: 15px;
	font-size: 14px;
}
/*
.footer_logo_area {
	position: absolute;
	top: 30px;
	right: 25px;
	display: flex;
	img {
		margin-left: 10px;
		width: 18px;
	}
}
*/
/*==================================================================*/
/* タブレット用設定													*/
/*==================================================================*/
@media screen and (max-width: 961px ) {
	.privacy_mark_area {
		margin-right: 40px;
	}
	.mynavi_pc_link_area {
		display: none;
	}
	#privacy_mark_image {
		width: 40px;
		height: 40px;
		top: 13px;
		right: 0;
	}
	.pc_menu_area {
		display: none;
	}
	#pc_menu_sub_area {
		display: none;
	}
	#smart_menu_icon {
		display: block;
		position: absolute;
		top: 12px;
		right: 10px;
		width: calc( var( --header-area-height ) - 20px );
		height: calc( var( --header-area-height ) - 20px );
		cursor: pointer;
	}
	#smart_menu_icon > div {
		position: absolute;
		left: 6px;
		border-radius: 2px;
		width: calc( 100% - 12px );
		height: 4px;
		border: 2px solid #888888;
		background-color: #888888;
	}
	#smart_menu_icon > div:nth-child(1) {
		top: calc( ( var( --header-area-height ) - 24px - 8px ) / 4 );
	}
	#smart_menu_icon > div:nth-child(2) {
		top: calc( ( ( var( --header-area-height ) - 24px - 7px ) / 4 ) * 2 );
	}
	#smart_menu_icon > div:nth-child(3) {
		top: calc( ( ( var( --header-area-height ) - 24px - 6px ) / 4 ) * 3 );
	}
	/* スマホ用メニューエリア */
	#smart_menu_area {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		width: 0;
//		right: -100%;
//		width: 300px;
		height: 100%;
		background-color: #ffffff;
		z-index: 10000;
		border-left: 2px solid #cccccc;
//		box-shadow: -4px 0 8px #888888;
		overflow: auto;
	}
	#smart_menu_area > div {
		width: 100%;
		border-bottom: 1px solid #cccccc;
		font-size: 16px;
		padding-top: 10px;
		padding-bottom: 10px;
		white-space: nowrap;
	}
	#smart_menu_area > div:first-child {
		height: 80px;
	}
	.link_div {
		transition: background-color 1s, color 1s;
		text-decoration: underline;
		text-underline-offset: 8px;
		text-decoration-color: #8888ff;
		text-decoration-thickness: 2px;
		cursor: pointer;
	}
	.link_div:hover {
		color: #ffffff;
		background-color: #0000ff;
	}
	.link_div:hover a {
		color: #ffffff;
		text-decoration: none;
	}
	.link_div:active a {
		color: #ffffff;
		text-decoration: none;
	}
	#close_smart_menu_button {
		position: absolute;
		top: 10px;
		right: 10px;
		width: 60px;
		height: 60px;
		border: 1px solid #888888;
		border-radius: 4px;
		cursor: pointer;
	}
	#close_smart_menu_button > div {
		position: absolute;
		width: 100%;
		height: 4px;
		background-color: #888888;
		border: 1px solid #888888;
		border-radius: 2px;
	}
	#close_smart_menu_button > div:nth-child(1) {
		transform: rotate(45deg);
		top: calc( 50% - 2px );
	}
	#close_smart_menu_button > div:nth-child(2) {
		transform: rotate(-45deg);
		top: calc( 50% - 2px );
	}
	.smart_menu {
		padding-left: 20px;
	}
	.smart_sub_menu {
		padding-left: 40px;
	}
	.smart_company_name_area {
		display: inline-block;
		position: absolute;
		top: 15px;
		left: 90px;
		width: 200px;
	}
	.smart_company_name_area > img {
		width: 100%;
	}
	.smart_company_name {
		display: block;
		position: absolute;
		bottom: 13px;
		left: 85px;
		width: 220px;
		font-weight: bold;
		font-size: 16px;
		text-shadow: 2px 2px 2px #aaaaff;
	}
	.contact_layout {
		grid-template-columns: 1fr;
	}
}
@media screen and (min-width: 960px ) {
	.content_shadow {
		display: none;
	}
}
@media screen and (max-width: 540px ) {
	.sitemap_layout {
		grid-template-columns: repeat( auto-fit, minmax( 150px, 1fr ) );
	}
}