@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* 共通_全体 */
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
a:hover {
	color: #000;
	text-decoration: underline;
}
img {
	width: 100%;
	height: auto;
}
a:hover img {
	opacity: 0.5;
}
.bold {
	font-weight: bold;
}
.nomal {
	font-weight: normal;
}

body {
	font-family:"Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	margin: 0;
	padding: 0;
}
main {
	width: max(100%, 1200px);
	margin: 0 auto;
	padding: 65px 0 0 0;
}

/* ヘッダー */
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: max(100%, 1200px);
	height: 65px;
	background-color: rgba(255,255,255,0.95);
	padding: 0 max(2.5%, 30px) 0 max(5%, 60px);
	position: fixed;
	top: 0;
	z-index: 99;
}
a.logo_hd {
	display: block;
	width: 150px;
}
a.logo_hd img {
	transition: opacity 0.2s ease-out;
}

/* ヘッダーメニュー */
header nav {
	width: calc(100% - 190px);
}
.menu-list {
	display: flex;
	justify-content: flex-end;
	font-size: 16px;
	line-height: 1.2;
}
.menu-item {
	text-align: center;
	position: relative;
}
.menu-item::before {
	content: "";
	width: 100%;
	height: 25px;
	border-left: 1px solid #C8C9CA;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: -10;
}
.menu-item:last-of-type::before {
	border-right: 1px solid #C8C9CA;
}
.menu-item > a {
	display: flex;
	align-items: center;
	height: 65px;
	color: #657083;
	text-decoration: none;
	padding: 0 max(1vw, 20px);
	transition: color 0.2s ease-out;
}
a.drop-menu:hover {
	cursor: default;
}
.drop-menu-list {
	width: max-content;
	min-width: 100%;
	background-color: rgba(255,255,255,0.95);
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}
a.drop-menu:hover ~ .drop-menu-list, .drop-menu-list:hover {
	opacity: 1;
	visibility: visible;
}
.drop-menu-list li {
	padding: 12px 25px;
}
.drop-menu-list a {
	color: #005BAB;
	text-decoration: none;
	transition: color 0.2s ease-out;
}
.menu-item a:not(.drop-menu):hover {
	color: #000000;
	text-decoration: underline;
}

/* bread */
#breadcrumbs  {
	width: 680px;
	color: #000;
	margin: 0 auto;
	padding: 15px 20px 0;
}
#breadcrumbs a {
	color: #657083;
	text-decoration: none;
}
#breadcrumbs a:hover {
	color: #000;
	text-decoration: underline;
}
#breadcrumbs a:hover img {
	opacity: 0.5;
}

/* 共通_タイトル */
.title_top {
	display: flex;
	justify-content: center;
	align-items: baseline;
	width: 1200px;
	color: #1D221D;
	margin: 30px auto 10px;
	padding: 0 20px;
}
.title_blue { /* 青丸ベタ＋白文字 */
	max-width: calc(100% - (50% - 600px));
	color: #fff;
	background: linear-gradient(-45deg, #00459D 20%, #005BAB 20%);
	border-radius: 0 300px 300px 0;
	padding: 20px 0 20px calc(50% - 580px);
}
.title_sub1 {
	font-family: "Noto Sans JP", sans-serif;
	color: #333333;
	font-size: 55px;
	font-weight: 900;
	letter-spacing: -0.05em;
}
.title_sub2 {
	font-family: "Roboto", sans-serif;
	color: #939393;
	font-size: 45px;
	font-weight: 900;
	margin-left: 1em;
}

/* 共通_本文 */
.explanation {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  text-align: center;
	width: 1200px;
	margin: 25px auto 40px;
	padding: 0 20px;
}

/* メールフォーム */
.form {
  width: 680px;
  margin: 0 auto;
}

/*　footer　*/
footer {
	display: flex;
	flex-wrap: wrap;
	width: max(100%, 1200px);
	color: #FFFFFF;
	font-size: 14px;
	background: no-repeat top center/cover url("../images/08-2.jpg");
	margin: 0 auto;
	padding: 30px max(3vw, 40px) 10px;
}
footer a {
	color: #FFFFFF;
	text-decoration: none;
}
footer a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}
.left_column {
	width: fit-content;
}
.address img {
	width: 288px;
	height: 48px;
	margin-bottom: 1em;
}
ul.factory {
	display: flex;
	flex-wrap: wrap;
	font-size: 12px;
	margin-top: 1em;
}
.factory li::after {
	content: "｜";
	display: inline-block;
	margin: 0 0.5em;
}
.factory li:last-of-type::after {
	content: "";
	margin: 0;
}
.right_column {
	display: flex;
	justify-content: flex-end;
	flex: 1;
}
.footer_navi {
	display: flex;
	flex-wrap: wrap;
}
.footer_navi dl {
	margin: 0 0 1.5em 75px;
}
.footer_navi dt {
	font-weight: bold;
}
.footer_navi dd {
	margin-top: 0.25em;
}
.footer_navi dd::before {
	content: "―";
	display: inline-block;
	margin-right: 0.5em;
}
.footer_navi dl:first-of-type dt:first-of-type {
	margin-bottom: 3em;
}
.footer_navi dl:last-of-type dt {
	margin-bottom: 1em;
}
.footer_navi dl:last-of-type dt:last-of-type {
	margin-bottom: 0;
}
.copy {
	width: 100%;
	text-align: center;
	font-size: 12px;
	letter-spacing: 0.075em;
}