@charset "UTF-8";

body {
	margin: 0px;
	padding: 0px;
	font-size: 10pt;
	color: #000000;
}

p {
	margin: 5px 0;
	}

#wrapper {
	margin-top: 0px;
	padding-top: 0px;
	margin-right: auto;
	margin-left: auto;
	width: 800px;
}

#header {
	height: 25px;
	width: 800px;
	background-image: url(../image/head.gif);
	text-align: center;
}

h1 {
	font-size: 8pt;
	color: #FFFFFF;
	padding: 0px;
	margin: 0px;
	}

#logo_area {
	width: 790px;
	height: 65px;
	background-image: url(../image/logo_bg.gif);
	padding-top: 10px;
	padding-left: 10px;
	}

#main_area {
	position: relative;
	width: 800px;
	height: 270px;
	padding-bottom: 10px;
	background: url(../image/main_visual.jpg) no-repeat 0% 100%;
	}

#contents_area {
	width: 750px;
	padding-top: 10px;
	padding-right: 25px;
	padding-bottom: 15px;
	padding-left: 25px;
	}

#main_bt {
	width: 750px;
	margin-bottom:20px;
	}

#left_area {
	width: 400px;
	float: left;
	padding-right: 25px;
	}

#news_title {
	width: 400px;
	height: 30px;
	padding-bottom: 10px;
	}

#news {
	width: 400px;
	height: 160px;
	}

#news ul {
	margin: 0px;
	list-style-type: none;
	padding: 0px;
}

#news li {
	margin: 0px;
	padding: 0px;
}

#right_area {
	width: 325px;
	float: right;
	}

#products_title {
	width: 325px;
	height: 30px;
	padding-bottom: 10px;
	}

#products_bt {
	width: 285px;
	height: 100px;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 10px;
	}

#products_bt_left {
	width: 130px;
	height: 100px;
	float: left;
	padding-bottom: 10px;
	}

#products_bt_right {
	width: 130px;
	height: 100px;
	float: right;
	padding-bottom: 10px;
	padding-left:25px;
	}

#footer {
	font-size: 8pt;
	text-align: center;
	height: auto;
	width: 800px;
	margin-right: 0px;
	margin-left: 0px;
	padding-top:5px;
	clear: both;
	border-top: solid;
	border-width: 1px;
	border-color: #003399;
}

#footer ul {
	margin: 0px;
	list-style-type: none;
}

#footer li {
	margin: 0px;
	padding: 0px;
}

#footer a:link {
	font-size: 8pt;
	color: #000000;
}

#footer a:visited {
	font-size: 8pt;
	color: #000000;
}

#footer a:hover {
	font-size: 8pt;
	color: #003399;
	text-decoration: underline;
}

#footer a:active {
	font-size: 8pt;
	color: #000000;
}

a:link {
	font-size: 10pt;
	color: #000000;
}

a:visited {
	font-size: 10pt;
	color: #000000;
}

a:hover {
	font-size: 10pt;
	color: #003399;
	text-decoration: underline;
}

a:active {
	font-size: 10pt;
	color: #000000;
}

.text16_red {
	font-size: 16px;
	color: #FF0000;
	}

.space {
	padding: 5px 0;
	}








/* ナビゲーションメニュー */
.nav-menu {
	background: linear-gradient(0deg, #003399, #0055aa 50%, #0077ee); /* メニューの背景色 */
	color: #fff; /* メニューテキストの色 */
}

.nav-menu ul { /* ユーザーエージェントスタイルシートリセット */
	padding-inline-start: 0;
    margin-block-start: 0;
    margin-block-end: 0;
}

.menu-list {
	display: flex;
	justify-content: center; /* メニューアイテムを中央揃えに */
	list-style: none;
}

.menu-item {
	background: linear-gradient(0deg, #003399, #0055aa 50%, #0077ee); /* メニューの背景色 */
	border-left: 1px solid #fff; /* メニューアイテムの左ボーダー */
	position: relative;
	transition: background-color .3s; /* 背景色の変化をアニメーション化 */
}

.menu-item:last-child {
	border-right: 1px solid #fff; /* 最後のメニューアイテムの右ボーダー */
}

/* メニューアイテムのホバースタイル */
.menu-item:hover .drop-menu-list {
	transform: scaleY(1); /* ドロップダウンメニューの表示 */
}

.menu-item:hover {
	background: linear-gradient(0deg, #0077ee, #0055aa 50%, #003399); /* メニューアイテムのホバー時の背景色 */
	transition: background-color .3s; /* 背景色の変化をアニメーション化 */
}

.drop-menu-item:hover {
	opacity: .8; /* ドロップダウンメニューアイテムのホバー時の不透明度 */
	transition: opacity .3s; /* 不透明度の変化をアニメーション化 */
}

.menu-item a {
	align-items: center;
	color: #fff; /* メニューアイテム内のリンクテキストの色 */
	display: flex;
	height: 30px;
	justify-content: center;
	text-decoration: none; /* リンクの下線を非表示 */
	width: 156px;
}

/* ドロップダウンメニュー */
.drop-menu {
	position: relative;
}

.drop-menu-list {
	left: 0;
	position: absolute;
	top: 100%;
	transform: scaleY(0); /* ドロップダウンメニューの非表示 */
	transform-origin: center top; /* 変形を適応する基準を設定 */
	transition: transform .3s; /* 表示の変化をアニメーション化 */
	width: max-content;
	z-index: 1;
	list-style: none;
}

.drop-menu-item {
	background-color: #cccccc; /* ドロップダウンメニューの背景色 */
	transition: opacity .3s; /* 不透明度の変化をアニメーション化 */
}

.drop-menu-item a {
	color: #000;
	font-size: 11px;
}

/*--- キャッチコピー ---*/
.catch_copy {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	left: 40px;
	color: #fff;
	font-family: serif;
	font-size: 28px;
	text-align: center;
}
