/*
Theme Name: wako
Theme URI: 
Author: 
Author URI: 
Description: 
Version: 
License: 
License URI: 
Tags: 
Text Domain: 
*/


@charset "UTF-8";

/*--------------------------------------------------------------------
common
cssの初期化
--------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  outline: none;
  font-style: normal;
  font-weight: normal;
  zoom: 1;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { display: block; }
h1, h2, h3, h4, h5, h6 {
  line-height: 1.55;
  font-size: 100%;
  font-weight: normal;
}
table { border-collapse: collapse; }
table th, table td {
  text-align: left;
  vertical-align: top;
}
ul,ol { list-style: none; }
img {
  width /***/:auto;
  max-width: 100%;
  height: auto;
	object-fit: cover;
  vertical-align: bottom;
}
* { box-sizing: border-box; }
a { transition: opacity .3s; }
a:hover {
	filter: alpha(opacity=85);
	-moz-opacity: 0.85;
	opacity: 0.85;
}


/*--------------------------------------------------------------------
common
ページ共通部分
--------------------------------------------------------------------*/
:root {
	--mincho: "游明朝" , "Yu Mincho" , "游明朝体" , "ヒラギノ明朝 Pro W3" , "HiraMinPro-W3" , Garamond , "Times New Roman" , "Sawarabi Mincho" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
	--gothic: "メイリオ", Meiryo, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, Roboto, Verdana, "Droid Sans", sans-serif;
	--co-black:    #2a2b2b;	   /*黒*/
	--co-white:    #ffffff;	   /*白*/
	--co-navy:     #1a33a3;	   /*紺*/
	--co-sky:      #0094ff;	   /*水色*/
	--co-purple:   #4a3378;	   /*紫*/
	--co-gray30:   #bfbfbf;	   /*灰30%*/
	--co-gray20:   #d4d5d5;	   /*灰20%*/
	--co-orange:   #ff7800;	   /*橙*/
	--co-yellow:   #ffba00;	   /*黄*/
	--transformXY: translate(-50% , -50%);
	--transformX:  translateX(-50%);
	--transformY:  translateY(-50%);
	--parag-bet: 0.6em;	   /*段落の間*/
}

/*------------body---------------------------------------------------------------*/
html { height: 100%; }
body {
	height: 100%;
	background-color: var(--co-white);
	overflow-y: scroll;
	line-height: 1.6;
	font-family: var(--gothic);
	font-feature-settings: "palt" 1;
	font-size: 16px;
	font-weight: normal;
	color: var(--co-black);
}
.SpOnly { display: none; }
div#PageTop a {
	position: fixed;
	display: block;
	width: 40px;
	height: 40px;
	background: url("/common/img/pagetop.png") no-repeat left top / cover;
	right: 2%;
	bottom: 5%;
	overflow: hidden;
	line-height: 0;
	font-size: 0;
	z-index: 9999;
}

@media (max-width: 960px) {
	div#PageTop a {
		width: 20px;
		height: 20px;
	}
}

@media (max-width: 480px) {
	body { font-size: 14px; }
	.PcOnly { display: none; }
	.SpOnly { display: block; }
}


/*------------header---------------------------------------------------------------*/
#globalNav {
  position: fixed;
	width: 100%;
	z-index: 999;
	top: 0;
  left: 0;
  transition: 0.5s;
	background-color: rgba(255,255,255,0.80);
}

#globalNav.hide { transform:translateY(-100%); }
header h1 {
	width: 96%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0.15em 0;
	font-size: 0.87em;
}
header #Header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 96%;
	max-width: 1100px;
	height: 60px;
	margin: 0 auto;
}
header #Header h2 { width: 300px; }
header #Header h2 a {
	display: block;
	width: 100%;
	padding-top: 18.66666666666667%;
	background: url("/common/img/header_logo.png") no-repeat left top / cover;
	overflow: hidden;
	line-height: 0;
	text-indent: -99999px;
	font-size: 0;
}
header #Header ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	color: var(--co-black);
}
header #Header ul li {
	display: flex;
	align-items: center;
	font: bold 1em / 1.2 var(--mincho);
}
header #Header ul li:not(:first-of-type)::before {
	margin: 0 0.5em;
	content: "|";
}
header #Header ul li a {
	font-weight: bold;
	color: var(--co-black);
}
header #Header ul li a:hover {
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	color: var(--co-navy);
}

@media (max-width: 960px) {
	header #Header {
		display: block;
		max-width: 96%;
		padding: 0px 0;
	}
	header h1,
	header #Header ul { display: none; }
}


/*------------title---------------------------------------------------------------*/
#title {
	position: relative;
	margin-bottom: 20px;
}
#title::after {
	position: absolute;
	content: "";
	display: block;
	width: 30%;
	height: 40px;
	background-color: var(--co-navy);
	clip-path: polygon(100% 0, 0 0, 100% 100%);
	bottom: 0;
	right: 0;
	z-index: -1;
}
#titleBg {
	position: relative;
	min-height: 400px;
	background: url("/common/img/mv_p01.jpg") no-repeat center center / cover;
	clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}
#title h2 {
	position: absolute;
	width: 100%;
	top: 55%;
	left: 50%;
	transform: var(--transformXY);
	text-align: center;
	font: bold 2.2em / 1.2 var(--mincho);
	color: var(--co-navy);
	text-shadow: 
		 3px  3px 3px var(--co-white),
		-3px  3px 3px var(--co-white),
		 3px -3px 3px var(--co-white),
		-3px -3px 3px var(--co-white),
		 3px  0px 3px var(--co-white),
		 0px  3px 3px var(--co-white),
		-3px  0px 3px var(--co-white),
		 0px -3px 3px var(--co-white);
	z-index: 2;
}
#title h2::before {
	position: absolute;
	content: "";
	display: block;
	width: 65%;
	height: 15px;
	background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 20%,rgba(255,255,255,0.8) 50%,rgba(255,255,255,0.8) 80%,rgba(255,255,255,0) 100%);
	top: 50%;
	left: 50%;
	transform: var(--transformXY);
	z-index: -1;
}

@media (max-width: 960px) {
	#titleBg { min-height: 30vh; }
}

/*------------noside---------------------------------------------------------------*/
#noside aside { display: none; }
#noside #contents {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}
body:not(#noside) #contents {
	display: flex;
  justify-content: space-between;
	width: 100%;
	max-width: 1400px;
	gap: 50px;
	margin: 0 auto;
}


/*------------aside---------------------------------------------------------------*/
aside #sideNav {
	position: sticky;
	width: 250px;
	padding: 15px 25px 55px;
	background-color: var(--co-sky);
	top: calc(60px + 1.6em);
	transition: 0.5s;
}
aside #sideNav.martop {
	top: 0;
}
aside #sideNav::before {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 50px;
	bottom: -1px;
	left: 0;
	background-color: var(--co-white);
	clip-path: polygon(0 0, 0 100%, 100% 100%);
}
aside #sideNav h2 {
	margin-bottom: 0.25em;
	padding-bottom: 0.25em;
	border-bottom: 1px solid var(--co-white);
	text-align: center;
	font: bold 1.5em / 1.2 var(--mincho);
	color: var(--co-white);
}
aside #sideNav ul li { margin-top: 0.8em; }
aside #sideNav ul li a {
	position: relative;
	padding-left: 1.3em;
	color: var(--co-white);
}
aside #sideNav ul li a::before {
	position: absolute;
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	background: url("/common/img/arrow_w.png") no-repeat left top / cover;
	top: 50%;
	left: 0;
	transform: var(--transformY);
}
aside #sideNav ul li a:hover {
	color: var(--co-orange);
}

@media (max-width: 960px) {
	aside { display: none; }
}

/*------------main---------------------------------------------------------------*/
main {
	width: 100%;
	max-width: 1100px;
	margin: auto;
}

@media (max-width: 1400px) {
	main { padding-left: 1em; }
}

@media (max-width: 960px) {
	main {
		width: 96%;
		padding-left: 0;
	}
}


/*------------Btn------------------------*/
.Btn {
	background-color: var(--co-navy);
	transition: opacity .3s cubic-bezier(0.45, 0, 0.55, 1);
}
.Btn.slide {
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.Btn.slide::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 180%;
	background: var(--co-white);
	top: 0;
	left: 0;
	transform: skewY(-10deg) scale(1, 0);
	transform-origin: left top;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	z-index: -1;
}
.Btn.slide:hover::after { transform: skewY(-10deg) scale(1, 1); }


/*------------flashBtn------------------------------------*/
.flashBtn a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.flashBtn a::after {
	position: absolute;
	content: "";
	top: 0;
	left: -85%;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	transform: skewX(-25deg);
}
.flashBtn a:hover::after {
	animation: shine 0.9s;
	animation-iteration-count: infinite;
}
@keyframes shine { 100% { left: 125%; } }

/*------------article------------------------------------*/
article {
	position: relative;
	width: 100%;
	padding-bottom: 100px;
}
main article:not(:last-of-type) { margin-bottom: 100px; }
article::after {
	position: absolute;
	content: "";
	display: block;
	width: 80%;
	max-width: 880px;
	border-bottom: 1px dashed var(--co-gray30);
	bottom: 0;
	left: 50%;
	transform: var(--transformX);
}
article p + p { margin-top: var(--parag-bet); }
article section {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}
article section:not(:first-of-type) { margin-top: 30px; }
article h3 {
	position: relative;
	margin-bottom: 40px;
	padding: 0 1em 0.45em;
	text-align: center;
	font: bold 2.2em / 1.2 var(--mincho);
}
article h3::before,
article h3::after {
	position: absolute;
	display: block;
	content: "";
	left: 50%;
	bottom: 0;
	transform: var(--transformX);
}
article h3::before {
	width: 40%;
	max-width: 400px;
	border-bottom: 3px solid var(--co-sky);
}
article h3::after {
	width: 30%;
	max-width: 300px;
	border-bottom: 3px solid var(--co-gray30);
}
article h3 span {
	display: inline-block;
	font-weight: bold;
}
article h4 {
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 0.25em;
	border-bottom: 1px solid var(--co-gray30);
	font-size: 1.9em;
	color: var(--co-sky);
}
article h4::before {
	position: absolute;
	content: "";
	display: block;
	width: 20%;
	max-width: 220px;
	border-bottom: 1px solid var(--co-sky);
	right: 0;
	bottom: -1px;
}
article h5 {
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 0.25em;
	border-bottom: 1px solid var(--co-navy);
	font-size: 1.5em;
	color: var(--co-navy);
}
article table {
	width: 100%;
	border-collapse: collapse;
}
article table tr th,
article table tr td {
	width: auto;
	padding: 10px 20px;
	border-top: 1px solid var(--co-gray30);
	border-bottom: 1px solid var(--co-gray30);
	text-align: left;
	vertical-align: top;
}
article table tr th {
	width: 14%;
	border-top: 1px solid var(--co-sky);
	border-bottom: 1px solid var(--co-sky);
	white-space: nowrap;
	font-weight: bold;
	color: var(--co-sky);
}

/*------------横並び写真右--------------*/
.flePR {
	display: flex;
	flex-flow: row-reverse;
	gap: 1em 40px;
}
.flePR .flePho {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}
.flePR .fleTxt {
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
}
sup { font-size: 0.625em; }
.outside { margin-top: var(--parag-bet); }
.outside a {
	padding-left: 1em;
	background: url("/common/img/link_a.png") no-repeat left center;
	color: var(--co-black);
}
.outside a:hover {
	text-decoration: underline;
	color: var(--co-sky);
}

@media (max-width: 480px) {
	article table tr th,
	article table tr td {
		display: block;
		width: 100%;
	}
	article table tr td { border-top: 0 none; }
	article table tr th {
		padding: 5px;
		margin-top: 1em;
	}
	article table tr td { padding: 10px; }
	article .ScrollBar {
		width: 100%;
		white-space: nowrap;
		overflow: auto;
	}
	article .ScrollBar .SpOnly {
		font-weight: bold;
		color: var(--co-orange);
	}
	article .ScrollBar table tr th,
	article .ScrollBar table tr td {
		display: table-cell;
		width: auto;
		margin: 0;
		border-top: 1px solid var(--co-gray30);
		border-bottom: 1px solid var(--co-gray30);
	}
	.flePR { flex-direction: column; }
}

/*------------footer---------------------------------------------------------------*/
footer { margin-top: 65px; }
/*------------fLogoTel------------------------*/
#fLogoTel {
	width: 80%;
	max-width: 268px;
	margin: 0 auto;
}
#fLogoTel h2 a {
	display: block;
	padding-top: 57.83582089552239%;
	background: url("/common/img/footer_logo.png") no-repeat left top / cover;
	overflow: hidden;
	line-height: 0;
	text-indent: -99999px;
	font-size: 0;
}
#fLogoTel dl {
	width: 100%;
	max-width: 214px;
	margin: 20px auto 0;
}
#fLogoTel dl dt { display: none; }
#fLogoTel dl dd span,
#fLogoTel dl dd a {
	display: block;
	padding-top: 11.21495327102804%;
	background: url("/common/img/tel.png") no-repeat left top / contain;
	overflow: hidden;
	line-height: 0;
	text-indent: -99999px;
	font-size: 0;
}
/*------------nav------------------------*/
footer #FNav h2 { display: none; }
footer #fNavAdd {
	width: 100%;
	margin-top: 80px;
}
footer nav ul {
	display: flex;
	justify-content: center;
	font-weight: bold;
	color: var(--co-black);
}
footer nav ul ul { display: none; }
footer nav ul li:not(:last-of-type)::after {
	margin: 0 0.25em;
	content: "|";
}
footer nav ul li a {
	font-weight: bold;
	color: var(--co-black);
}
footer nav ul li a:hover {
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	color: var(--co-sky);
}

@media (max-width: 960px) {
	footer #FNav h2 {
		display: block;
		width: 70%;
		max-width: 268px;
		margin: 50px auto 0;
	}
	footer #FNav h2 span {
		display: block;
		width: 100%;
	}
	footer #FNav h2 a {
		display: block;
		padding-top: 57.83582089552239%;
		background: url("/common/img/footer_logo.png") no-repeat left top / cover;
		overflow: hidden;
		line-height: 0;
		text-indent: -99999px;
		font-size: 0;
	}
	footer nav {
		margin-top: 1em;
		padding: 1em;
		background-color: transparent;
		color: var(--co-black);
	}
	footer nav ul {
		display: block;
		width: 80%;
		margin: 0 auto;
	}
	footer nav ul ul { display: block; }
	footer nav ul li:not(:nth-last-of-type(1))::after { display: none; }
	footer nav ul li + li { margin-top: 0.5em; }
	footer nav ul li a { color: var(--co-black); }
	footer nav ul li a::before {
		display: inline-block;
		padding-right: 0.2em;
		content: "■";
	}
	/* hamburger(ハンバーガーアイコン) =================================== */
	.hamburger {
		position: fixed;
		top: 1.25em;
		right: 1em;
		width: 20px;
		height: 20px;
		background: var(--co-navy);
		cursor: pointer;
		z-index: 299999;
	}
	.BurgerLine {
		position: absolute;
		width: 16px;
		height: 2px;
		left: 2px;
		background-color: var(--co-white);
		transition: all 0.5s;
	}
	.BurgerLine1 { top: 4px; }
	.BurgerLine2 { top: 9px; }
	.BurgerLine3 { top: 14px; }

	/*ハンバーガーがクリックされたら*/
	.open .BurgerLine1 {
		transform: rotate(-45deg);
		top: 9px;
	}
	.open .BurgerLine2 { opacity: 0; }
	.open .BurgerLine3 {
		transform: rotate(45deg);
		top: 9px;
	}

	/* sp-nav(ナビ) =================================== */
	.sp-nav {
		position: fixed;
		right: -100%;
		top: 0;
		width: 80%;
		height: 100vh;
		background-color: var(--co-white);
		transition: all 0.5s;
		z-index: 199999;
		overflow-y: auto;
	}
	/*ハンバーガーがクリックされたら右からスライド*/
	.open .sp-nav { right: 0; }

	/* black-bg(ハンバーガーメニュー解除用bg) =================================== */
	.black-bg {
		position: fixed;
		left: 0;
		top: 0;
		width: 100vw;
		height: 100vh;
		z-index: 5;
		background-color: var(--co-black);
		opacity: 0;
		visibility: hidden;
		transition: all 0.5s;
		cursor: pointer;
	}
	/*ハンバーガーメニューが開いたら表示*/
	.open .black-bg {
		opacity: 0.3;
		visibility: visible;
	}
}
/*------------address------------------------*/
address { margin-top: 1em; }
address #fAdd {
	display: flex;
	justify-content: center;
	margin-top: 30px;
	padding: 0.5em 1em;
	background-color: var(--co-black);
	color: var(--co-white);
}
address #fAdd dl { display: flex; }
address #fAdd dl dt::after { content: "："; }
address #fAdd h3,
address #fAdd p,
address #fAdd p span:not(:first-of-type),
address #fAdd dl { margin-left: 1em; }
address #fAdd p span { display: inline-block; }
address #fAdd a { color: var(--co-white); }
footer p small {
	display: block;
	padding: 0.5em 1em 100px;
	background-color: var(--co-sky);
	text-align: center;
	font-size: 1rem;
	color: var(--co-white);
}

@media (max-width: 960px) {
	address #fAdd {
		display: block;
		text-align: center;
	}
	address #fAdd dl { justify-content: center; }
	address #fAdd h3,
	address #fAdd p,
	address #fAdd p span:not(:first-of-type),
	address #fAdd dl { margin-left: 0; }
	address #fAdd p span:not(:last-of-type) { margin-right: 1em; }
	footer p small { font-size: 0.89rem; }
}


/*------------ギャラリー---------------------------------------------------------------*/
.gallery { /** ギャラリーを囲むボックス **/
	width: 100%;
	margin-top: 20px;
	margin-bottom: 20px !important;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
}
.gallery br { display: none; } /** 自動で挿入される clearfix の余白解除 **/
.gallery-icon { /** 画像を囲む dt のスタイル **/
	text-align: center;
}
.gallery-icon img {
	width: 100%;
/*	min-height: 350px;
	max-height: 350px;*/
	object-fit: cover;
	object-position: 50% 50%;
	margin-bottom: 10px !important;
	vertical-align: bottom;
}
.gallery-caption { /** キャプション **/
	margin: 0 0 20px;
	text-align: center;
}
.gallery-columns-1 .gallery-item { /** 1カラム **/ width: 100%; }
.gallery-columns-2 .gallery-item { /** 2カラム **/ width: calc((100% - 20px) / 2); }
.gallery-columns-3 .gallery-item { /** 3カラム **/ width: calc((100% - 20px * 2) / 3); }
.gallery-columns-4 .gallery-item { /** 4カラム **/ width: calc((100% - 20px * 3) / 4); }
.gallery-columns-5 .gallery-item { /** 5カラム **/ width: calc((100% - 20px * 4) / 5); }
.gallery-columns-6 .gallery-item { /** 6カラム **/ width: calc((100% - 20px * 5) / 6); }
.gallery-columns-7 .gallery-item { /** 7カラム **/ width: calc((100% - 20px * 6) / 7); }
.gallery-columns-8 .gallery-item { /** 8カラム **/ width: calc((100% - 20px * 7) / 8); }
.gallery-columns-9 .gallery-item { /** 9カラム **/ width: calc((100% - 20px * 8) / 9); }
@media screen and (max-width: 480px) {
	/* 640px以下用の記述 */
	.gallery-columns-2 .gallery-item,
	.gallery-columns-3 .gallery-item,
	.gallery-columns-4 .gallery-item,
	.gallery-columns-5 .gallery-item,
	.gallery-columns-6 .gallery-item,
	.gallery-columns-7 .gallery-item,
	.gallery-columns-8 .gallery-item,
	.gallery-columns-9 .gallery-item {
		width: calc((100% - 20px) / 2);
	}
}


/*------------求人募集---------------------------------------------------------------*/
/*------------先輩社員の声------------*/
#voice .yearAff { text-align: right; }
#voice .yearAff span { font-weight: bold; }
#voice .photoFlex {
	display: flex;
	flex-flow: row-reverse;
	justify-content: space-between;
	gap: 40px;
}
#voice section:nth-of-type(2n) .photoFlex { flex-flow: row; }
#voice .flePho {
	width: 100%;
	max-width: 500px;
}
#voice .fleTxt {
	width: 100%;
	max-width: 560px;
}
#voice .year { text-align: right; }
#voice .year * { font-weight: bold; }
#voice dl { margin-top: 1em; }
#voice dl dt {
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 0.25em;
	border-bottom: 1px solid var(--co-navy);
	font-size: 1.5em;
	color: var(--co-navy);
}
@media (max-width: 480px) {
	#voice .photoFlex { display: block; }
	#voice .flePho { margin: 0 auto; }
	#voice .fleTxt { margin: 1em auto 0; }
}

/*------------募集要項------------*/
#method #TopTxt { text-align: center; }
#method #TopTxt strong,
#method #TopTxt em {
	font-size: 1.5em;
	font-weight: bold;
	color: var(--co-sky);
}
#method #TopTxt strong {
	display: inline-block;
	margin-left: 1em;
}
#method #TopTxt em {
	display: block;
	margin-top: 1em;
}
#method #endTxt p {
	width: 70%;
	max-width: 770px;
	margin: 0 auto;
	padding: 20px;
	background-color: var(--co-navy);
	text-align: center;
	font-size: 1.5em;
	font-weight: bold;
	color: var(--co-white);
}


/*------------製品情報---------------------------------------------------------------*/
#product #topTxt p a {
	position: relative;
	padding-left: 1.3em;
	color: var(--co-sky);
}
#product #topTxt p a::before {
	position: absolute;
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	background-image: url("/common/img/arrow_s.png");
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
	top: 50%;
	left: 0;
	transform: var(--transformY);
}
#product ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 25px;
	margin: 1em 0;
}
#product ul li {
	width: calc((100% - 25px * 2) / 3);
	max-width: 350px;
}
#product ul li h4 {
	line-height: 1.2;
	font-size: 1.25em;
}
#product ul li div {
	width: 60%;
	max-width: 200px;
	margin: 1em auto 0;
}
#product ul li div a {
	position: relative;
	display: block;
	padding: 0.25em 1.5em;
	background-color: var(--co-navy);
	border-radius: 10px;
	text-align: center;
	color: var(--co-white);
}
#product ul li div a::before {
	position: absolute;
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	background: url("/common/img/arrow_w.png") no-repeat left top / cover;
	top: 50%;
	left: 0.5em;
	transform: var(--transformY);
}

@media (max-width: 960px) {
	#product ul li {
		width: calc((100% - 25px) / 2);
		max-width: inherit;
	}
}

@media (max-width: 480px) {
	#product ul { flex-direction: column; }
	#product ul li {
		width: 100%;
		margin: 0 auto;
	}
}


/*------------加工例一覧---------------------------------------------------------------*/
#processing ul {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 40px;
	margin: 1em 0;
}
#processing ul li {
	width: calc((100% - 40px) / 2);
	max-width: 530px;
	background-color: var(--co-navy);
	border-radius: 10px;
}
#processing ul li a {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 20px;
	line-height: 1.2;
	/*font-size: 1.9em;*/
	font-size: 1.25em;
	color: var(--co-white);
}
#processing ul li a strong { margin-bottom: var(--parag-bet); }
#processing ul li a span {
	position: relative;
	display: block;
	max-width: 200px;
	margin: auto auto 0;
	padding: 0.25em 1.5em;
	background-color: var(--co-white);
	border-radius: 10px;
	text-align: center;
	font-size: 1rem;
	color: var(--co-navy);
}
#processing ul li a span::before {
	position: absolute;
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	background: url("/common/img/arrow_b.png") no-repeat left top / cover;
	top: 50%;
	left: 0.5em;
	transform: var(--transformY);
}

@media (max-width: 480px) {
	#processing ul li { width: 100%; }
}


/*------------新着情報---------------------------------------------------------------*/

/*------------新着情報・ブログ-一覧------------*/
.infoList span strong,
.infoList strong span,
.infoList strong { font-weight: bold; }
.infoList em span,
.infoList span em,
.infoList em { font-weight: bold; font-style: italic; }
.infoList del { text-decoration: line-through; }
.infoList sup { font-size: 0.625em; }
.infoList sub { font-size: 0.625em; }

.infoList dl { display: flex; }
.infoList dl dt {
	width: 15em;
	padding: 10px 20px;
	border-bottom: 1px solid var(--co-sky);
}
.infoList dl dt * {
	font-weight: bold;
	color: var(--co-sky);
}
.infoList dl dt strong {
	display: inline-block;
	margin-left: 0.5em;
}
.infoList dl dd {
	display: flex;
	justify-content: space-between;
	flex: 1;
	padding: 10px 20px;
	border-bottom: 1px solid var(--co-gray30);
}
.infoList dl dd p {
	flex: 1;
	padding-right: 1em;
}
.infoList dl dd div a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 170px;
	margin: auto auto 0;
	padding: 0.25em 1.5em;
	background-color: var(--co-sky);
	border-radius: 10px;
	text-align: center;
	font-size: 1rem;
	color: var(--co-white);
}
.infoList dl dd div a::before {
	position: absolute;
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	background: url("/common/img/arrow_w.png") no-repeat left top / cover;
	top: 50%;
	left: 0.5em;
	transform: var(--transformY);
}

@media (max-width: 760px) {
	.infoList dl dd {
		flex-direction: column;
		padding-bottom: 15px;
	}
	.infoList dl dd p { line-height: 1.4; }
	.infoList dl dd div a { margin: 0.4em 0 0 auto; }
}

@media (max-width: 480px) {
	.infoList dl { flex-direction: column; }
	.infoList dl:not(:first-of-type) { margin-top: var(--parag-bet); }
	.infoList dl dt {
		width: 100%;
		padding: 5px 10px;
	}
}

/*------------新着情報・ブログ-詳細------------*/
#infoDetail .DayTxt {
	margin-bottom: 1em;
	text-align: right;
	font-weight: bold;
	color: var(--co-orange);
}
#infoDetail .newsBox {
	display: flex;
	flex-flow: row-reverse;
	justify-content: space-between;
	gap: 40px;
}
#infoDetail .Pho {
	width: 100%;
	max-width: 500px;
}
#infoDetail .Txt {
	width: 100%;
	max-width: 560px;
}
#infoDetail p + p,
#infoDetail p + .gallery { margin-top: 1em; }

ul.BtnList {
	display: flex;
	gap: 0 10px;
	margin-top: 1em;
}
ul.BtnList li {
	position: relative;
	transition: opacity .3s;
}
ul.BtnList li a {
	position: relative;
	display: block;
	max-width: 200px;
	margin: auto auto 0;
	padding: 0.55em 1.5em 0.5em;
	background-color: var(--co-sky);
	border-radius: 10px;
	line-height: 1;
	text-align: center;
	font-size: 1rem;
	color: var(--co-white);
}
ul.BtnList li a::before {
	position: absolute;
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	background: url("/common/img/arrow_w.png") no-repeat left top / cover;
	top: 50%;
	left: 0.5em;
	transform: var(--transformY);
}

@media (max-width: 480px) {
	#infoDetail .newsBox { display: block; }
	#infoDetail .Pho { margin: 0 auto; }
	#infoDetail .Txt { margin: 1em auto 0; }
}


/*------------PDF埋め込み等---------------------------------------------------------------*/
#detail {
	display: block;
	width: 100% !important;
	max-width: 1100px;
	margin: 1em auto;
}
#detail dt {
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 0.25em;
	border-bottom: 1px solid var(--co-navy);
	font-size: 1.5em;
	color: var(--co-navy);
}

.TxtBox + .TxtBox,
#pdfBox { margin-top: 2em; }
#pdfBox dd {
	display: block;
	width: 100% !important;
	margin: 0 auto;
}
.TxtBox p + p,
.pdfemb-viewer + .pdfemb-viewer,
p + .pdfemb-viewer,
.pdfemb-viewer + p { margin-top: 1em; }
.TxtBox ul,
.TxtBox ol { padding-left: 1.5em; }
.TxtBox ul { list-style: disc; }
.TxtBox ol { list-style: decimal; }

/*PDF埋め込み用*/
.pdfemb-viewer {
  position: relative;
	display: block;
	width: 100% !important;
  background-color: #d3d3d3;
  overflow: hidden;
  margin: 1em 0;
  padding: 0px;
  line-height: 1;
  text-align: left;
  direction: ltr;
}
.pdfemb-pagescontainer {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #d3d3d3;
}
.pdfemb-inner-div {
  position: relative;
  display: block;
  overflow: hidden;
  margin: auto;
  padding: 0px;
  border: none;
  background-color: #d3d3d3;
  line-height: 1;
}
.pdfemb-viewer canvas {
  position: relative;
  display: inline-block;
  top: 0px;
  bottom: 0px;
  margin: 0px;
  padding: 0px;
  background-color: #fff;
}
.embed-pdf-viewer{
	width: 100% !important;
}
canvas {
	width: 100% !important;
}


/*------------NoCase---------------------------------------------------------------*/
.NoCase {
	margin: 1.5em 0;
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-align: center;
	font: bold 2em / 1.2 var(--mincho);
	color: var(--co-orange);
}


/*------------ページリンク共通(一覧)---------------------------------------------------------------*/
div.pagination {
	width: 100%;
	margin-top: 70px;
	text-align: center;
}
div.pagination ul {
	width: 100%;
	list-style: none;
	text-align: center;
}
div.pagination ul li { display: inline; }
div.pagination .page-numbers {
	display: inline-block;
	margin: 0 0.5em;
	padding: 0.3em 0.5em;
	background-color: var(--co-white);
	border: 1px solid var(--co-navy);
	line-height: 1.2;
	color: var(--co-navy);
}
div.pagination .page-numbers:hover {
	display: inline-block;
	margin: 0 0.5em;
	padding: 0.3em 0.5em;
	border: 1px solid var(--co-navy);
	background-color: var(--co-navy);
	text-decoration: none;
	line-height: 1.2;
	color: var(--co-white);
}
div.pagination span.page-numbers {
	display: inline-block;
	padding: 0.3em 0.5em;
	border: 0 none;
	background-color: transparent;
	line-height: 1.2;
	font-weight: bold;
	color: var(--co-black);
}
div.pagination span.page-numbers:hover {
	display: inline-block;
	padding: 0.3em 0.5em;
	border: 0 none;
	background: inherit !important;
	line-height: 1.2;
	font-weight: bold;
	color: var(--co-black);
}


/*------------ページリンク共通(詳細)---------------------------------------------------------------*/
div.PageSend01 {
	width: 90%;
	max-width: 380px;
	margin: 50px auto 0;
}
div.PageSend01 ul {
	display: flex;
	gap: 20px;
	width: 100%;
	list-style: none;
	overflow: hidden;
}
div.PageSend01 ul li { width: calc(100% - 20px / 2); }
div.PageSend01 ul li a {
	display: block;
	padding: 0.5em 3em;
	background-color: var(--co-navy);
	text-align: center;
	font: bold 1em / 1 var(--gothic);
	color: var(--co-white);
}
div.PageSend01 ul li.PSBtn01 a {
	clip-path: polygon(5% 0, 100% 0, 100% 100%, 5% 100%, 0 50%);
}
div.PageSend01 ul li.PSBtn02 a {
	clip-path: polygon(95% 0, 100% 50%, 95% 100%, 0 100%, 0 0);
}


/*------------404---------------------------------------------------------------*/
div#NoPage {
	padding: 40px 0;
	text-align: center;
	font-size: 2em;
}


/*------------記事内画像位置処理---------------------------------------------------------------*/
.alignleft {
	margin-right: 15px;
	margin-bottom: 10px;
	float: left;
}
.alignright {
	margin-left: 15px;
	margin-bottom: 10px;
	float: right;
}
.aligncenter {
	display: block;
	text-align: center;
	margin: 0 auto 10px;
}
.alignnone { clear: both; }


/*------------iframeにdivを追加する---------------------------------------------------------------*/
.movie {
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
}
.movieItem {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.movieItem iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}



