/*
Theme Name: wako
Theme URI: 
Author: 
Author URI: 
Description: 
Version: 
License: 
License URI: 
Tags: 
Text Domain: 
*/

/*--------------------------------------------------------------------
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;
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-moz-touch-callout:none;
	-moz-user-select:none;
	user-select:none;
	pointer-events: none;
}
* {
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
}
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:   #2b2b2b;	   /*黒*/
	--co-gray65:  #757575;	   /*灰65%*/
	--co-gray60:  #7f8080;	   /*灰60%*/
	--co-gray57:  #868686;	   /*灰57%*/
	--co-gray30:  #bfbfbf;	   /*灰30%*/
	--co-gray20:  #d4d5d5;	   /*灰20%*/
	--co-white:   #ffffff;	   /*白*/
	--co-sky:     #009fe8;	   /*水*/
	--co-blue:    #007aff;	   /*青*/
	--co-orange:  #ff7800;	   /*橙*/
	--co-yellow:  #ffff00;	   /*黄*/
	--co-red:     #ff1d25;	   /*赤*/
	
	--transformXY: translate(-50% , -50%);
	--transformX:  translateX(-50%);
	--transformY:  translateY(-50%);
}

/*------------body---------------------------------------------------------------*/
html {
	height: 100%;
	scroll-behavior: smooth;
}
body {
	height: 100%;
	background-color: var(--co-white);
	overflow-y: scroll;
	line-height: 1.6;
	font-feature-settings: "palt" 1;
	font-family: var(--gothic);
	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: 979px) {
	body { font-size: 14px; }
	.PcOnly { display: none; }
	.SpOnly { display: block; }
	div#PageTop a {
		width: 20px;
		height: 20px;
	}
}


/*------------header---------------------------------------------------------------*/
header {
	position: fixed;
	width: 100%;
	z-index: 999;
	background-color: rgba(255,255,255,0.90);
}
header #Header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 96%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 10px 0;
}
header #Header h1 { width: 342px; }
header #Header h1 a {
	display: block;
	width: 100%;
	padding-top: 15.49707602339181%;
	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;
	font: bold 1em / 1 var(--mincho);
	color: var(--co-black);
}
header #Header ul li {
	display: flex;
	align-items: center;
}
header #Header ul li:not(:first-of-type)::before {
	margin: 0 0.5em;
	content: "|";
}
header #Header ul li:last-of-type::before,
header #Header ul li:nth-last-of-type(2)::before { content: ""; }
header #Header ul li a {
	font: bold 1em / 1 var(--mincho);
	color: var(--co-black);
}
header #Header ul li:nth-last-of-type(2) a {
	display: inline-block;
	padding: 0.25em 0.5em;
	background-color: #009fe8;
	border-radius: 5px;
	color: var(--co-white);
}
header #Header ul li:nth-last-of-type(2) a::before {
	position: relative;
	display: inline-block;
	content: "";
	width: 20px;
	height: 15px;
	margin-right: 0.25em;
	background: url("/common/img/mail.png") no-repeat left top / contain;
	top: 1px;
	left: 0;
}
header #Header ul li:last-of-type a {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url("/common/img/instagram_i.svg") no-repeat center center / cover;
	overflow: hidden;
	line-height: 0;
	text-indent: -99999px;
	font-size: 0;
}
header #Header ul li a:hover {
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	color: var(--co-blue);
}
header #Header ul li:last-of-type a:hover,
header #Header ul li:nth-last-of-type(2) a:hover {
	filter: alpha(opacity=75);
	-moz-opacity: 0.75;
	opacity: 0.75;
	color: var(--co-white);
}

@media (max-width: 979px) {
	header #Header {
		display: block;
		max-width: 96%;
		padding: 10px 0;
	}
	header #Header h1 {
		width: 70%;
		max-width: 342px;
		margin: 0;
	}
	header #Header h1 span {
		display: block;
		width: 100%;
	}
	header #Header ul { display: none; }
}


/*------------title---------------------------------------------------------------*/
#title {
	position: relative;
	min-height: 350px;
	background: url("/common/img/mv_p01.jpg") no-repeat center center / cover;
}
#title::before {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.30);
	bottom: 0;
	left: 0;
	z-index: 0;
}
#title::after {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 70px;
	background-color: var(--co-sky);
	clip-path: polygon(0 0, 0% 100%, 100% 100%);
	bottom: -1px;
	left: 0;
	z-index: 0;
}
#title h2 {
	position: absolute;
	width: 100%;
	top: 55%;
	left: 50%;
	transform: var(--transformXY);
	text-align: center;
	font: bold 3em / 1.2 var(--mincho);
	font-feature-settings: "palt" 1;
	color: var(--co-white);
	text-shadow: 
		 3px  3px 3px var(--co-black),
		-3px  3px 3px var(--co-black),
		 3px -3px 3px var(--co-black),
		-3px -3px 3px var(--co-black),
		 3px  0px 3px var(--co-black),
		 0px  3px 3px var(--co-black),
		-3px  0px 3px var(--co-black),
		 0px -3px 3px var(--co-black);
	z-index: 2;
}
#title h2 span {
	display: block;
	font-size: 0.375em;
}

@media (max-width: 979px) {
	#title::before { height: 35px; }
	#title h2 {
		padding: 0 0.5em;
		line-height: 1;
		font-size: 2.85em;
	}
}

/*------------main---------------------------------------------------------------*/
main {
	width: 100%;
	overflow: hidden;
}

/*------------TopNav------------------------------------*/
#TopNav {
	position: relative;
	width: 100%;
	padding-bottom: 70px;
	background-color: var(--co-sky);
}
#TopNav::after {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 70px;
	background-color: var(--co-white);
	clip-path: polygon(0 0, 0 100%, 100% 100%);
	bottom: -1px;
	left: 0;
	z-index: 0;
}
#TopNav ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 1em;
}
#TopNav ul li:not(:last-of-type)::after {
	display: inline-block;
	content: "｜";
	padding: 0 1em;
	font-weight: bold;
	color: var(--co-white);
}
#TopNav ul li a {
	display: inline-block;
	font: bold 1.125em / 1.2 var(--gothic);
	color: var(--co-white);
}
#TopNav ul li a:hover { color: var(--co-yellow); }

@media (max-width: 979px) {
	#TopNav { padding-bottom: 35px; }
	#TopNav::after { height: 35px; }
	#TopNav ul { padding: 0 0.5em; }
	#TopNav ul li:not(:last-of-type)::after { padding: 0 0.25em; }
}


/*------------flashBtn------------------------------------*/
.flashBtn a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.flashBtn a:hover { color: #ff0; }
.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%;
	margin-top: 0;
	overflow: hidden;
}
main article:not(:first-of-type) { margin-top: 100px; }
article p + p { margin-top: 1em; }
article section {
	width: 96%;
	max-width: 1100px;
	margin: 0 auto;
}
article section:not(:first-of-type) { margin-top: 40px; }
article h3 {
	position: relative;
	margin-bottom: 40px;
	padding: 0 1em 0.45em;
	text-align: center;
	font: bold 2.25em / 1 var(--mincho);
}
article h3::before,
article h3::after {
	position: absolute;
	display: block;
	content: "";
	left: 50%;
	transform: var(--transformX);
}
article h3::before {
	width: 50%;
	max-width: 500px;
	border-bottom: 2px solid var(--co-gray30);
	bottom: 0;
}
article h3::after {
	width: 20%;
	max-width: 180px;
	border-bottom: 6px solid var(--co-sky);
	bottom: -2px;
}
article h3 span {
	display: inline-block;
	font-weight: bold;
}
article h4 {
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 0.25em;
	border-bottom: 3px solid var(--co-gray30);
	font: bold 1.5em / 1.2 var(--gothic);
	color: var(--co-blue);
}
article table {
	width: 100%;
	border-collapse: collapse;
	border-top: 1px solid var(--co-gray30);
}
article table tr th,
article table tr td {
	width: auto;
	padding: 10px 20px;
	border-bottom: 1px solid var(--co-gray30);
	text-align: left;
	vertical-align: top;
}
article table tr th {
	width: 14%;
	padding: 10px;
	background-color: var(--co-blue);
	white-space: nowrap;
	font-weight: bold;
	color: var(--co-white);
}

@media (max-width: 979px) {
	article table tr th,
	article table tr td {
		display: block;
		width: 100%;
	}
	article table tr th { padding: 5px; }
	article table tr td { padding: 10px; }
}

/*------------footer---------------------------------------------------------------*/
footer { margin-top: 90px; }
/*------------fLogoTel------------------------*/
#fLogoTel {
	width: 80%;
	max-width: 323px;
	margin: 0 auto;
}
#fLogoTel h2 {
	width: 80%;
	max-width: 211px;
	margin: 0 auto;
}
#fLogoTel h2 a {
	display: block;
	padding-top: 41.23222748815166%;
	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%;
	margin: 15px auto 0;
}
#fLogoTel dl dt { display: none; }
#fLogoTel dl dd span,
#fLogoTel dl dd a {
	display: block;
	padding-top: 10.21671826625387%;
	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 nav { margin-top: 60px; }
footer nav ul {
	display: flex;
	justify-content: center;
	font-weight: bold;
	color: var(--co-black);
}
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: 979px) {
	footer #FNav h2 {
		display: block;
		width: 70%;
		max-width: 211px;
		margin: 50px auto 0;
	}
	footer #FNav h2 span {
		display: block;
		width: 100%;
	}
	footer #FNav h2 a {
	display: block;
	padding-top: 41.23222748815166%;
	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;
	}
	footer nav ul {
		display: block;
		width: 80%;
		margin: 0 auto;
	}
	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::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-sky);
		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: 35px; }
address #fAdd {
	display: flex;
	justify-content: center;
	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: 1em 1em 115px;
	text-align: center;
	font-size: 1rem;
}

@media (max-width: 979px) {
	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: 979px) {
	/* 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 .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 {
	font-size: 1.25em;
	font-weight: bold;
	color: var(--co-orange);
}
@media (max-width: 979px) {
	#voice .photoFlex { display: block; }
	#voice .flePho { margin: 0 auto; }
	#voice .fleTxt { margin: 1em auto 0; }
}


/*------------取扱商品---------------------------------------------------------------*/
:root {
	--co-cate01: #c00000;
	--co-cate02: #ffc000;
	--co-cate03: #ff0000;
	--co-cate04: #92d050;
	--co-cate05: #00b050;
	--co-cate06: #0070c0;
	--co-cate07: #7030a0;
}
article#case01 h3::after { border-bottom-color: var(--co-cate01); }
article#case02 h3::after { border-bottom-color: var(--co-cate02); }
article#case03 h3::after { border-bottom-color: var(--co-cate03); }
article#case04 h3::after { border-bottom-color: var(--co-cate04); }
article#case05 h3::after { border-bottom-color: var(--co-cate05); }
article#case06 h3::after { border-bottom-color: var(--co-cate06); }
article#case07 h3::after { border-bottom-color: var(--co-cate07); }
.product .proFlex {
	display: flex;
	gap: 0 40px;
}
.product .proPho {
	width: 100%;
	max-width: 350px;
}
.product .proPho img { width: 100%; }
.product .proTxt {
	width: 100%;
	max-width: 710px;
}
.product .proTxt dl dt {
	margin-bottom: 0.25em;
	line-height: 1.2;
	font-size: 1.25em;
	font-weight: bold;
	color: var(--co-orange);
}
.product .prmaList table { border: 0 none; }
.product .prmaList table tr th,
.product .prmaList table tr td {
	padding: 10px 0;
	border: 0 none;
	background-color: transparent;
	border-bottom: 1px dashed var(--co-gray30);
	vertical-align: middle;
	color: var(--co-black);
}
.product .prmaList table tr th:not(:first-of-type),
.product .prmaList table tr td:not(:first-of-type) { padding-left: 1em; }
.product .prmaList table tr th {
	padding: 0;
	border: 0 none;
	line-height: 1.2;
	font-size: 1.25em;
	font-weight: bold;
	color: var(--co-orange);
}
.product .prmaList table tr td:nth-last-of-type(1) { width: 55%; }
.product .prmaList table tr td span {
	display: inline-block;
	background-color: var(--co-black);
	white-space: nowrap;
}
.product .prmaList table tr td span a {
	display: inline-block;
	min-width: 13em;
	padding: 0.25em 1em;
	text-align: center;
	font-size: 0.875em;
	font-weight: bold;
	color: var(--co-black);
}
.product .prmaList table tr td span.cate01 { background-color: var(--co-cate01); }
.product .prmaList table tr td span.cate02 { background-color: var(--co-cate02); }
.product .prmaList table tr td span.cate03 { background-color: var(--co-cate03); }
.product .prmaList table tr td span.cate04 { background-color: var(--co-cate04); }
.product .prmaList table tr td span.cate05 { background-color: var(--co-cate05); }
.product .prmaList table tr td span.cate06 { background-color: var(--co-cate06); }
.product .prmaList table tr td span.cate07 { background-color: var(--co-cate07); }
.product .prmaList table tr td em a {
	position: relative;
	display: inline-block;
	padding: 0.5em 0 0.5em 28px;
	line-height: 1;
	color: var(--co-black);
}
.product .prmaList table tr td em a::before {
	position: absolute;
	display: inline-block;
	content: "";
	width: 20px;
	height: 23px;
	background: url("/common/img/pdf.png") no-repeat left top / cover;
	top: 50%;
	left: 0;
	transform: var(--transformY);
}
.product .proTxt ul,
.product .prmaList ul,
.product .maList ul {
	display: flex;
	flex-wrap: wrap;
}
.product .maList ul { gap: 0.25em 1em; }
.product .maList h4 { margin-top: 1em; }
/*.product .maList ul li { width: calc((100% - 1em) / 2); }*/
.product .proTxt ul li:not(:last-of-type)::after,
.product .prmaList ul li:not(:last-of-type)::after { content: "、"; }
.product .prmaList ul li:not(:has(a)),
.product .maList ul li:not(:has(a)) {}
.product .prmaList ul li a,
.product .maList ul li a {
	position: relative;
	padding-left: 1.5em;
	color: var(--co-black);
}
.product .prmaList ul li a::before,
.product .maList ul li a::before {
	position: absolute;
	display: inline-block;
	content: "";
	width: 17px;
	height: 15px;
	background: url("/common/img/link.png") no-repeat left center / cover;
	top: 50%;
	left: 0;
	transform: var(--transformY);
}
.product .prmaList table tr td em a:hover,
.product .prmaList ul li a:hover,
.product .maList ul li a:hover { color: var(--co-sky); }

@media (max-width: 979px) {
	.product .prmaList {
		white-space: nowrap;
		overflow: auto;
	}
	.product .prmaList ul { width: 500px; }
	.product .prmaList::before {
		display: block;
		content: "画面を横にスワイプすると、全体をご覧いただけます。";
		padding-bottom: 1em;
		font-weight: bold;
		color: #f00;
	}
	.product .prmaList table tr th,
	.product .prmaList table tr td {
		display: table-cell;
		width: auto;
	}
	.product .maList ul li { width: calc((100% - 1em) / 2); }
}

@media (max-width: 600px) {
	.product .proFlex { display: block; }
	.product .proPho { margin: 0 auto; }
	.product .proTxt { margin: 1em auto 0; }
	.product .maList ul li { width: 100%; }
}
/*------------取扱商品---------------------------------------------------------------*/
#tool { margin-top: 70px; }

/*------------決算公告 , 工具一覧---------------------------------------------------------------*/
#settlement { margin-top: 70px; }
#settlement ul {
	display: flex;
	gap: 20px 40px;
	flex-wrap: wrap;
}
#settlement ul li {
	position: relative;
	width: calc((100% - 40px * 3) / 4);
	background-color: var(--co-blue);
	transition: opacity .3s;
}
#settlement ul li::after {
	position: absolute;
	display: block;
	content: "";
	width: 30px;
	height: 102%;
	background-color: var(--co-white);
	clip-path: polygon(100% 0, 0 0, 100% 100%);
	top: -1px;
	right: -1px;
}
#settlement ul li a {
	display: block;
	padding: 1em 2em 1.05em 1.5em;
	line-height: 1.2;
	color: var(--co-white);
}
#settlement ul li a:hover { color: var(--co-yellow); }

@media (max-width: 979px) {
	#settlement ul li { width: calc((100% - 40px) / 2); }
}

@media (max-width: 600px) {
	#settlement ul li { width: 100%; }
}


/*------------新着情報---------------------------------------------------------------*/
.news { margin-top: 70px; }
.news span strong,
.news strong span,
.news strong { font-weight: bold; }
.news em span,
.news span em,
.news em { font-weight: bold; font-style: italic; }
.news del { text-decoration: line-through; }
.news sup { font-size: 0.625em; }
.news sub { font-size: 0.625em; }
.news .DayTxt {
	margin-bottom: 1em;
	font-weight: bold;
	color: var(--co-orange);
}
.news .newsBox {
	display: flex;
	flex-flow: row-reverse;
	justify-content: space-between;
	gap: 40px;
}
.news .Pho {
	width: 100%;
	max-width: 500px;
}
.news .Txt {
	width: 100%;
	max-width: 560px;
}
.news p + p,
.news p + .gallery { margin-top: 1em; }

ul.BtnList {
	display: flex;
	gap: 0 10px;
	margin-top: 1em;
}
ul.BtnList li {
	position: relative;
	background-color: var(--co-blue);
	transition: opacity .3s;
}
ul.BtnList li::after {
	position: absolute;
	display: block;
	content: "";
	width: 30px;
	height: 102%;
	background-color: var(--co-white);
	clip-path: polygon(100% 0, 0 0, 100% 100%);
	top: -1px;
	right: -1px;
}
ul.BtnList li a {
	display: block;
	padding: 0.5em 2em 0.55em 0.5em;
	line-height: 1.2;
	color: var(--co-white);
}
ul.BtnList li a:hover { color: var(--co-yellow); }

@media (max-width: 979px) {
	.news .newsBox { display: block; }
	.news .Pho { margin: 0 auto; }
	.news .Txt { margin: 1em auto 0; }
}


/*------------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-red);
}


/*------------ページリンク共通(一覧)---------------------------------------------------------------*/
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-sky);
	line-height: 1.2;
	color: var(--co-sky);
}
div.pagination .page-numbers:hover {
	display: inline-block;
	margin: 0 0.5em;
	padding: 0.3em 0.5em;
	border: 1px solid var(--co-sky);
	background-color: var(--co-sky);
	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-blue);
	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%;
}