@import "default.css";
@import "standard.css";

body {
	width: 100%;
	margin: 0;
	padding: 0;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo, Osaka", "MS P ゴシック", "MS P Gothic", "sans-Serif";
	font-size: 16px;
	color: #333333;
	background: #F6F6F6;
	-webkit-text-size-adjust: none;
	box-sizing: border-box;
}
/* 背景を固定するための設定 */
body:not(#p_top):before {
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: -1;
	background: url(/image/common/bg_image.webp) center top no-repeat;
	background-size: cover;
	background-color: #F6F6F6;
}
a {
	text-decoration: none;
}
a:hover {
	opacity: .7;
}
img {
	width: 100%;
	height: auto;
}
* {
	box-sizing: border-box;
}
/* スタイル
------------------------------------------------ */
header {
	position: relative;
	z-index: 10;
}
header .inwrap {
	width: 96%;
	max-width: 1780px;
	margin: 0 auto;
	padding: 40px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 15px 30px;
	position: relative;
}
h1 a {
	width: 380px;
	display: flex;
	align-items: center;
	white-space: nowrap;
}
/* フッター */
footer ul.banner{
	margin-top: 200px;
	margin-bottom: 150px;
	padding: 0 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 60px;
}
footer ul.banner li {
	width: 48%;
	max-width: 480px;
	aspect-ratio: 12 / 5;
}
footer ul.banner li a {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
}
footer ul.banner li a span {
	width: 240px;
	height: 80px;
	font-size: 26px;
	font-weight: bold;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	left: -15px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
footer ul.banner li.recruit a {
	background: url(/image/footer/banner_recruit.jpg) center no-repeat;
	background-size: cover;
}
footer ul.banner li.recruit a span {
	background: #37A9DE;
}
footer ul.banner li.contact a {
	background: url(/image/footer/banner_contact.jpg) center no-repeat;
	background-size: cover;
}
footer ul.banner li.contact a span {
	background: #3287AE;
}
footer .bg_wrap {
	padding: 100px 0;
	padding-bottom: 30px;
	background: #fff;
	position: relative;
}
footer .bg_wrap:before,
footer .bg_wrap:after {
	content: "";
	width: calc((100% - 850px ) / 2);
	height: 18px;
	background: url(/image/footer/footer_line.svg) repeat-x;
	background-size: 200px;
	display: block;
	position: absolute;
	top: -10px;
}
footer .bg_wrap:before {
	left: 0;
}
footer .bg_wrap:after {
	right: 0;
}
footer .bg_wrap ul.textimage {
	width: 800px;
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
footer .flex {
	max-width: 1000px;
	margin: 0 auto;
	margin-bottom: 60px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px
}
footer .name h3 {
	width: 320px;
	margin-bottom: 30px;
}
footer .name li {
	margin-bottom: 5px;
}
footer .name li a {
	color: #000;
}
footer ul.footer_nav {
	width: 320px;
	padding-top: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 15px 80px;
}
footer ul.footer_nav li {
	width: 120px;
}
footer ul.footer_nav a {
	font-size: 14px;
	color: #000;
	display: flex;
	align-items: center;
	gap: 10px;
}
footer ul.footer_nav a:before {
	content: "";
	width: 20px;
	height: 1px;
	background: #006B9D;
	display: block;
}
footer .copyright {
	font-size: 14px;
	color: #0087C5;
	text-align: center;
	letter-spacing: 0.15rem;
}
#fixedTop {
	right: 30px;
	bottom: 30px;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	line-height: 42px;
	color: #fff;
	font-size: 20px;
	text-align: center;
	display: none;
	background: #000;
	position: fixed;
	z-index: 9999;
}
/* ナビ部分
------------------------------------------------ */
nav {
	width: 700px;
}
nav ul {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 40px;
	position: relative;
}
nav ul a {
	color: #000;
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 6px 0;
	font-weight: bold;
	opacity: 1;
	transition: color .2s ease;
}
nav ul li:not(.contact) > a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #0087C5;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .22s ease;
}
nav ul li > a:hover {
	color: #0087C5;
	opacity: 1;
}
nav ul li > a:hover::after {
	transform: scaleX(1);
}
#p_top .nav li.top > a,
#p_company .nav li.company > a,
#p_equipment .nav li.equipment > a,
#p_product .nav li.product > a,
#p_recruit .nav li.recruit > a,
#p_contact .nav li.contact > a {
	color: #0087C5;
}
#p_top .nav li.top > a::after,
#p_company .nav li.company > a::after,
#p_equipment .nav li.equipment > a::after,
#p_product .nav li.product > a::after,
#p_recruit .nav li.recruit > a::after,
#p_contact .nav li.contact > a::after {
	transform: scaleX(1);
}
ul.contact_button {
	position: absolute;
	top: 10px;
	right: -1.5%;
	z-index: 20;
}
ul.contact_button .contact a {
	width: 146px;
	height: 146px;
	background: #0087C5;
	font-weight: bold;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 0;
	cursor: pointer;
	transition: background-color .2s ease;
}
ul.contact_button .contact a:hover {
	opacity: 1;
	background: #37A9DE;
}
ul.contact_button .contact a img {
	width: 48px;
	height: auto;
}
nav li .sp_menu {
	display: none;
}
/* モーダルメニュー */
#nav_wrap_sp {
	display: none;
}
.clone-nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	background: rgba(255, 255, 255, 0.9);
	transition: .3s;
	transform: translateY(-100%);
}
.is-show {
	transform: translateY(0);
}
/* パンくずリスト
------------------------------------------------ */
#rootlist {
	max-width: 1640px;
	width: 86%;
	margin: 10px auto 60px;
	padding: 0 20px;
	font-size: 12px;
}
#rootlist span {
	margin: 0 5px;
	color: #000;
}
#rootlist p {
	color: #000;
}
#rootlist a {
	color: #006B9D;
	text-decoration: underline;
}
/* Hタグ
------------------------------------------------ */
h2.title {
	width: 96%;
	max-width: 1780px;
	height: 310px;
	margin: 0 auto;
	padding: 100px 20px;
	background: url(/image/common/bg_h2.webp) center no-repeat;
	background-size: cover;
	position: relative;
}
h2.title span {
	width: 540px;
	height: 120px;
	margin: 0 auto;
	padding: 0 60px;
	background: rgba(0, 107, 157, 0.75);
	font-family: 'Shippori Mincho', serif;
	font-style: normal;
	font-size: 50px;
	font-weight: bold;
	color: #fff;
	letter-spacing: .15rem;
	display: flex;
	align-items: center;
	position: absolute;
	top: 70px;
	left: -30px;
}
h3.title {
	margin-bottom: 80px;
	text-align: center;
}
h3.title span {
	font-size: 32px;
	font-weight: bold;
	color: #095477;
	position: relative;
}
h3.title span:before {
	content: "";
	width: 25px;
	height: 5px;
	background: #006B9D;
	display: block;
	position: absolute;
	bottom: -20px;
	left: calc( 50% - 12px );
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
h3.title span:after {
	content: "";
	width: 25px;
	height: 5px;
	background: #4EAEDB;
	display: block;
	position: absolute;
	bottom: -20px;
	left: calc( 50% + 12px );
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
h3.title2 {
	margin-bottom: 40px;
	font-size: 28px;
	font-weight: bold;
	color: #0A6E03;
	text-align: center;
}
h3.post {
	width: calc(100% + 20px);
	margin-left: -10px;
	margin-right: -10px;
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 3px #0A6E03 solid;
	font-size: 32px;
	font-weight: bold;
	color: #0A6E03;
}
h4.title {
	margin-bottom: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
}
h4.title span {
	font-size: 24px;
	font-weight: bold;
	color: #0087C5;
	display: inline-block;
}
h4.title:before,
h4.title:after {
	content: "";
	width: 10px;
	height: 3px;
	background: #0087C5;
	display: block;
}
h4.title2 {
	margin-bottom: 30px;
	padding: 10px;
	background-color: #0087C5;
	font-size: 24px;
	font-weight: bold;
	color: #FFF;
}
/* 共通
------------------------------------------------ */
#contents p {
	margin-bottom: 20px;
	line-height: 1.6em;
}
#contents p:last-child {
	margin-bottom: 0;
}
.cbox {
	max-width: 1100px;
	width: 96%;
	margin: 0 auto 80px;
	box-sizing: border-box;
}
.cbox_m0 {
	max-width: 1000px;
	width: 96%;
	margin: 0 auto;
	box-sizing: border-box;
}
.cbox_m {
	max-width: 960px;
	width: 95%;
	margin: 0 auto 80px;
	box-sizing: border-box;
}
.cbox_m_m0 {
	max-width: 960px;
	width: 95%;
	margin: 0 auto;
	box-sizing: border-box;
}
.cbox_s {
	max-width: 930px;
	width: 94%;
	margin: 0 auto 70px;
	box-sizing: border-box;
}
.cbox_s_m0 {
	max-width: 930px;
	width: 94%;
	margin: 0 auto;
	box-sizing: border-box;
}
.inbox {
	margin: 0 auto 80px;
	padding: 0 10px;
	box-sizing: border-box;
}
.shadow_wrap {
	width: 96%;
	max-width: 1200px;
	margin: 0 auto 60px;
	padding: 60px 0;
	background: #fff;
	box-shadow: 0 0 6px rgba(0, 0, 0, .16);
}
.shadow_wrap_m0 {
	width: 96%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 0;
	background: #fff;
	box-shadow: 0 0 6px rgba(0, 0, 0, .16);
}
.wp-pagenavi {
	max-width: 980px;
	min-width: 880px;
	margin: 0 auto;
}
br.sp {
	display: none;
}
.pc_none {
	display: none;
}
/* トップページ
------------------------------------------------ */
#p_top {
	background: url(/image/top/bg_top.svg) center top 30px no-repeat,#F6F6F6;
	background-size: 1820px;
}
#p_top #main {
	width: 96%;
	max-width: 1780px;
	margin: 0 auto;
	margin-bottom: 80px;
	position: relative;
}
#p_top .vega {
	width: 100%;
	aspect-ratio: 12 / 5;
	background: #f6f6f6;
}
#p_top #main .wrap {
	position: absolute;
	top: 50%;
	left: -30px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	background: rgba(0, 107, 157, 0.75);
	padding: 28px 34px;
}
#p_top #main h2 {
	margin-bottom: 20px;
	font-size: 64px;
	font-family: 'Sawarabi Mincho', serif;
	font-weight: 400;
	font-style: normal;
	color: #fff;
	text-align: left;
	white-space: nowrap;
}
#p_top #main p {
	text-align: left;
}
#p_top #main p span {
	padding: 0;
	background: transparent;
	font-size: 26px;
	color: #fff;
	display: inline-block;
	white-space: nowrap;
}
#p_top #about .inbox {
	width: 96%;
	max-width: 1780px;
	margin: 0 auto;
	margin-bottom: 120px;
	padding: 0 40px;
	background: transparent;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
#p_top #about .inbox h3 {
	margin: 0 50px 50px 150px;
	font-size: 36px;
	font-family: 'Shippori Mincho', serif;
	font-weight: 600;
	font-style: normal;
	color: #00557D;
	writing-mode: vertical-rl;
	text-align: center;
	white-space: nowrap;
	letter-spacing: 0.12em;
}
#p_top #about .inbox ul.photo {
	width: 350px;
	padding-bottom: 100px;
	position: relative;
	flex: 0 0 auto;
}
#p_top #about .inbox ul.photo li {
	width: 100%;
}

#p_top #about .inbox ul.photo li:nth-child(2) {
	width: 74%;
	position: absolute;
	right: -80px;
	bottom: -30px;
}
#p_top #about .inbox ul.photo li img {
	box-shadow: 0 0 6px rgba(0, 0, 0, .16);
}
#p_top #about .inbox .p_block {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#p_top #about .inbox .c_block {
	max-width: 600px;
	min-width: 500px;
}
#p_top #about .inbox p {
	margin-bottom: 20px;
	font-size: 18px;
	text-align: left;
	line-height: 1.8;
}
#p_top #about .button a {
	width: 200px;
	height: 40px;
	margin: 0 auto;
	margin-top: 60px;
	background: #00557D;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
#p_top #about .button a:after {
	content: "";
	width: 5px;
	height: 8px;
	background-color: #fff;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
#p_top #news .bg_wrap {
	margin-bottom: 120px;
	padding: 100px 0;
	background:
		url(/image/common/block/block_white70.png),
		url(/image/top/bg_news.webp) center no-repeat;
	background-size: auto, cover;
}
#p_top #news .flex {
	width: 96%;
	max-width: 1360px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.9);
	padding: 70px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px 80px;
}
#p_top #news .t_wrap {
	width: 130px;
}
#p_top #news h3.title {
	margin-bottom: 16px;
	font-size: 32px;
	font-weight: bold;
	color: #0A6E03;
	text-align: left;
}
#p_top #news .t_wrap .button {
	text-align: left;
}
#p_top #news .t_wrap .button a {
	margin: 0;
	padding: 0;
	background: none;
	border-radius: 0;
	font-size: 14px;
	font-weight: normal;
	color: #858383;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
#p_top #news .t_wrap .button a i {
	color: #FF0707;
}
#p_top #news .log {
	width: 740px;
}
#p_news .shadow_wrap {
	padding-bottom: 60px;
}
.log dl {
	padding: 18px 0;
	border-bottom: 1px #D1D1D1 solid;
	display: flex;
	gap: 40px;
}
.log dl:last-of-type {
	border-bottom: none;
}
.log dt {
	width: 120px;
	height: 26px;
	background: #0A6E03;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.log dd {
	flex: 1;
	color: #333;
}
.log dd span {
	font-weight: bold;
	display: block;
}
.log dd a {
	color: inherit;
	text-decoration: underline;
}
.log dd i {
	margin-left: 5px;
	font-size: 14px;
	font-weight: normal;
	color: #FF0707;
	font-style: normal;
}
#p_top #topics .bg_wrap {
	width: 96%;
	max-width: 1300px;
	margin: 0 auto;
	margin-bottom: 160px;
	padding-bottom: 50px;
	border-bottom: 1px #095477 solid;
}
#p_top #topics h3 {
	margin-bottom: 30px;
	position: relative;
	text-align: center;
}
#p_top #topics h3 span {
	padding: 0 40px;
	background: #F6F6F6;
	font-size: 40px;
	font-weight: bold;
	color: #034E71;
	display: inline-block;
	position: relative;
	z-index: 1;
}
#p_top #topics h3::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	height: 1px;
	background: #095477;
	z-index: 0;
}
#p_top #topics p.sub_title {
	margin-bottom: 40px;
	font-size: 20px;
	text-align: center;
}
#topics .flex {
	width: 96%;
	max-width: 1120px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
#topics .flex a {
	width: calc((100% - 40px) / 3);
	max-width: 360px;
	padding: 20px;
	padding-bottom: 40px;
	background: #fff;
	text-align: center;
	display: block;
}
#topics .flex a dd.eye_catch {
	margin-bottom: 20px;
}
#topics .flex a dd.eye_catch img {
	width: 100%;
	aspect-ratio: 8 / 5;
	object-fit: cover;
	object-position: center;
}
#topics .flex a dt {
	font-weight: bold;
	color: #000;
}
#topics .flex a dd.date {
	margin-bottom: 15px;
	color: #0087C5;
}
#p_top #topics .link {
	margin-top: 30px;
	text-align: center;
}
#p_top #topics .link a {
	font-size: 14px;
	color: #0087C5
}
/* 会社案内
------------------------------------------------ */
#p_company h2.title {
	background: url(/company/image/bg_h2.webp) center no-repeat;
	background-size: cover;
}
#p_company #philosophy h3 {
	margin-bottom: 100px;
	font-size: 46px;
	font-family: 'Shippori Mincho', serif;
	font-weight: 400;
	font-style: normal;
	text-align: center;
}
#p_company #philosophy h3 span {
	border-bottom: 1px #707070 solid;
	font-size: 20px;
	display: inline-block;
}
#p_company #philosophy .concept_diagram {
	width: 540px;
	height: 330px;
	margin: 0 auto;
	margin-bottom: 160px;
	background: #F8F4F0;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative
}
#p_company #philosophy .concept_diagram h4 {
	font-size: 22px;
	font-family: 'Shippori Mincho', serif;
	font-weight: 600;
	font-style: normal;
	text-align: center;
}
#p_company #philosophy ul.point {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
#p_company #philosophy .concept_diagram li {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	font-size: 24px;
	font-family: 'Shippori Mincho', serif;
	font-weight: 600;
	font-style: normal;
	color: #fff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
}
#p_company #philosophy li.green {
	background: #799B56;
	top: -65px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
#p_company #philosophy li.blue {
	background: #6D90B3;
	top: 50%;
	left: -80px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
#p_company #philosophy li.orange {
	background: #D79A61;
	top: 50%;
	right: -80px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
#p_company #philosophy li.purple {
	background: #9784B5;
	bottom: -65px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
#p_company #philosophy .kihan h4 {
	margin-bottom: 30px;
	font-size: 30px;
	font-family: 'Shippori Mincho', serif;
	font-weight: 600;
	font-style: normal;
	text-align: center;
}
#p_company #philosophy .kihan ul.list {
	width: 630px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px 30px;
}
#p_company #philosophy .kihan ul.list li {
	width: 300px;
	height: 60px;
	border: 1px #707070 solid;
	font-size: 20px;
	font-family: 'Shippori Mincho', serif;
	font-weight: 600;
	font-style: normal;
	color: #52412D;
	display: flex;
	justify-content: center;
	align-items: center;
}
#p_company #greeting .flex {
	display: flex;
	gap: 60px;
}
#p_company #greeting .flex .l_wrap {
	flex: 1;
}
#p_company #greeting .r_wrap {
	width: 320px;
}
#p_company #greeting .r_wrap .photo {
	margin-bottom: 30px;
}
#p_company #greeting .flex .name {
	margin-top: 40px;
	font-family: 'Sawarabi Mincho', serif;
	font-weight: 400;
	font-style: normal;
	font-size: 20px;
	text-align: center;
}
#p_company #greeting .flex .name dd span {
	margin-right: 30px;
}
.dl_flex_group dl {
	padding: 20px;
	border-top: 1px #C4C4C4 solid;
	display: flex;
}
.dl_flex_group dl:last-of-type {
	border-bottom: 1px #C4C4C4 solid;
}
.dl_flex_group dt {
	width: 20%;
	font-weight: bold;
	color: #006B9D;
}
.dl_flex_group dd {
	flex: 1;
}
.ggmap {
	width: 90%;
	max-width: 900px;
	aspect-ratio: 9 / 5;
	margin: 0 auto;
	margin-bottom: 80px;
	position: relative;
}
.ggmap iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#p_company #enkaku .dl_flex_group {
	width: 90%;
	max-width: 920px;
	min-width: 900px;
	margin: 0 auto;
}
#p_company #enkaku .dl_flex_group dt {
	width: 25%;
}
#p_company #enkaku .dl_flex_group dl:nth-of-type(even) dt {
	color: #0087C5;
}
#p_company .info_box .flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 50px;
}
#p_company .info_box .flex .l_wrap {
	flex: 1;
	min-width: 500px;
}
#p_company .info_box .flex ul {
	width: 340px;
	margin: 0 auto;
	text-align: center;
}
#p_company #fsc .flex ul img {
	width: 230px;
	border-radius: 50%;
}
/* 工場・設備
------------------------------------------------ */
#p_equipment h2.title {
	background: url(/equipment/image/bg_h2.webp) center no-repeat;
	background-size: cover;
}
#p_equipment #equipment .whole {
	margin-bottom: 70px;
}
#p_equipment #equipment .gallery {
	padding: 0 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 30px 20px;
}
#p_equipment #equipment .gallery li {
	width: calc(( 100% - 20px ) / 2);
}
#p_equipment #setsubi dl {
	padding: 15px 45px;
	font-size: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#p_equipment #setsubi dl:nth-of-type(odd) {
	background: #0087C5;
	color: #fff;
}
/* 製品情報
------------------------------------------------ */
#p_product h2.title {
	background: url(/product/image/bg_h2.webp) center no-repeat;
	background-size: cover;
}
#p_product #product p.intro_text {
	margin-bottom: 80px;
	padding: 30px 5px;
	border-top: 1px #707070 solid;
	border-bottom: 1px #707070 solid;
	font-size: 30px;
	text-align: center;
	font-family: 'Shippori Mincho', serif;
	font-weight: 600;
	font-style: normal;
}
#p_product #product ul.photo {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 50px 25px;
}
#p_product #product ul.photo li {
	width: calc(( 100% - 50px ) / 3);
}
#p_product #product .list {
	margin-bottom: 80px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px 25px;
}
#p_product #product .list dl {
	width: calc(( 100% - 50px ) / 3);
}
/* 採用情報
------------------------------------------------ */
#p_recruit h2.title {
	background: url(/recruit/image/bg_h2.webp) center no-repeat;
	background-size: cover;
}
#p_recruit #recruit p.intro_text {
	margin-bottom: 80px;
	font-size: 24px;
	font-family: 'Shippori Mincho', serif;
	font-weight: 600;
	font-style: normal;
	text-align: center;
}
#p_recruit #recruit ul.photo {
	margin-bottom: 80px;
}
#p_recruit #recruit ul.photo li {
	width: 70%;
	margin: 0 auto;
}
#p_recruit #recruit ul.contact_btn {
	margin-top: 60px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
#p_recruit #recruit ul.contact_btn li {
	width: 300px;
	height: 70px;
}
#p_recruit #recruit ul.contact_btn a {
	width: 100%;
	height: 100%;
	font-weight: bold;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
#p_recruit #recruit ul.contact_btn li.tel a {
	background: #095477;
	font-size: 24px;
	letter-spacing: .075rem;
}
#p_recruit #recruit ul.contact_btn i {
	width: 22px;
	height: 16px;
	margin-right: 5px;
	display: block;
}
#p_recruit #recruit ul.contact_btn li.mail a {
	background: #0087C5;
}
/* 投稿
------------------------------------------------ */
#post p.date {
	text-align: right;
}
#post .block h3,h4,h5,h6 {
	font-weight: bold;
}
#post .block h3 {
	width: calc(100% + 20px);
	margin: 50px 0;
	margin-left: -10px;
	margin-right: -10px;
	background: #0A6E03;
	padding: 18px 10px;
	font-size: 20px;
	color: #fff;
}
#post .block h3:first-child {
	margin-top: 0;
}
#post h4 {
	width: auto;
	margin-bottom: 20px;
	padding: 10px 5px;
	border-bottom: 1px #ACACAC solid;
	font-size: 18px;
	font-weight: bold;
	color: #6E3503;
}
#post h4:before {
	content: "●";
	color: #BFBFBF;
	margin-right: 5px;
}
#post h5 {
	width: auto;
	margin-bottom: 20px;
	padding: 3px 5px;
	background: #FDFBEF;
	font-size: 16px;
}
#post h6 {
	width: auto;
	margin-bottom: 20px;
	font-size: 16px;
	color: #F27150;
}
#post h6:before {
	content: "✔";
	color: #F27150;
}
#post img {
	width: auto;
}
#post #content_block ul {
	margin-bottom: 25px;
	padding-left: 25px;
}
#post #content_block ul li {
	list-style: disc;
}
#topics #post ul.eyechach {
	margin-bottom: 40px;
	padding: 40px 0;
	border: 1px #ACACAC solid;
	text-align: center;
}
#topics #post ul.eyechach img {
	max-height: 800px;
	margin: 0 auto;
}
/* お問い合わせ
------------------------------------------------ */
#p_contact h2.title {
	background: url(/contact/image/bg_h2.webp) center no-repeat;
	background-size: cover;
}
form dl {
	max-width: 960px;
	margin: 0 auto;
	padding: 15px;
	border-bottom: 1px #ACACAC solid;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
form dl:last-of-type {
	margin-bottom: 60px;
}
form dt {
	width: 25%;
	height: 50px;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
form dt span:before {
	content: "";
	width: 10px;
	height: 10px;
	margin-right: 15px;
	background: #0087C5;
	display: inline-block;
}
form dt em {
	padding: 0 5px;
	border: 1px #A74141 solid;
	font-size: 14px;
	color: #A74141;
}
form dd {
	width: 70%;
}
form dl:not(.file) dd input {
	height: 50px;
	padding: 8px;
	background: #F5F5F5;
	border: none;
}
form dd textarea {
	height: 300px;
	padding: 8px;
	background: #F5F5F5;
	border: none;
}
form dl.file li.text {
	margin-bottom: 10px;
}
form input[type="submit"] {
    width: 260px;
	height: 60px;
	margin: 0 auto;
	background: #0A6E03;
	background-size: 12px;
	border: none;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
form input[type="submit"]:hover {
	opacity: .7;
	cursor: pointer;
}
#p_contact #tel .border {
	margin-top: 140px;

	padding: 50px 20px;
	background: #fff;
	border: 5px #006B9D solid;
	text-align: center;
}
#p_contact #tel h3 {
	margin-bottom: 20px;
	font-size: 28px;
	font-weight: bold;
}
#p_contact #tel .sub_text {
	margin-bottom: 30px;
	font-size: 20px;
}
#p_contact #tel .tel {
	margin-bottom: 30px;
}
#p_contact #tel .tel dt a {
	margin-bottom: 15px;
	padding: 10px 40px;
	background: #F5F5F5;
	font-size: 40px;
	color: #0087C5;
	letter-spacing: 0.05rem;
	display: inline-block;
}
#p_contact #tel .tel dt a i {
	width: 26px;
	height: 26px;
	margin-right: 10px;
	display: inline-block;
	position: relative;
	top: 20px;
}
#p_contact #tel .fax {
	color: #006B9D;
	font-size: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
/* フォーム幅
------------------------------------------------ */
form .wl {
	width: 100% !important;
}
form .wm {
	width: 50% !important;
}
form .ws {
	width: 25% !important;
}
form .wss {
	width: 10% !important;
}