/* =====================================================================
コンテンツ共通
======================================================================== */
body {
	/* position: relative;
	width: 100%;
	height: 100vh; */
	color: var(--c-grayDark);
	font-family: "Zen Kaku Gothic New", sans-serif;
}

.inner {
	width: 100%;
	max-width: calc(1100px + var(--side) + var(--side));
	margin-inline: auto;
	padding-inline: var(--side);
	/* border: 1px solid blue; */
}

#sub_contents .inner {
	max-width: calc(940px + var(--side) + var(--side));
}


time {
	color: var(--c-gray99);
}

main {
	width: 100%;
	overflow: hidden;
}

.ac {
	text-align: center;
}

.al {
	text-align: left;
}

.ar {
	text-align: right;
}

.fc {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1em 3em;
}

.fc li{text-align: center;}

.mt_s1 {
	margin-top: var(--s1) !important;
}

.mt_s2 {
	margin-top: var(--s2) !important;
}

.mt_s3 {
	margin-top: var(--s3) !important;
}

.mt_s4 {
	margin-top: var(--s4) !important;
}

.mt_s5 {
	margin-top: var(--s5) !important;
}

@media (max-width: 768px) {
	.pc_only {
		display: none;
	}
}

.bt_st1 {
	text-align: center;
	margin-top: var(--s3);
}

.bt_st1 a,
.s_shadowbox .bt_st1 a,
#mailformpro button {
	display: inline-block;
	background-color: var(--c-blue);
	color: #fff;
	padding: 1em;
	border-radius: 10px;
	width: 250px;
	max-width: 100%;
	text-align: center;
	font-weight: bold;
	position: relative;
	border: 2px solid var(--c-blue);
	cursor: pointer;
	font-size: var(--f18);
}

@media (max-width: 768px) {
	.s_fv .bt_st1 {
		justify-content: center;
	}

	.s_fv .bt_st1 a {
		width: 40vw;
	}
}

/* #mailformpro button{
	background-color: var(--c-blueDark);
	color: #fff;
	border: none;
	border-radius: 5px;
	padding: 1em;
	width: 200px;
	max-width: 40%;
} */


.bt_st1 a:hover,
#mailformpro button:hover {
	background-color: var(--c-bluePale) !important;
	color: #fff;
}

.bt_st1 a span::after {
	font-family: soft;
	content: "\E84E";
	margin-left: .5em;
	font-size: 1em;
}

.bt_st1 li.-nega a {
	color: var(--c-blue);
	background-color: #fff;
}

.s_fv .bt_st1 li:first-child a span::after {
	content: "\E803";
}


/* ===================================================================================
header
====================================================================================== */


/* header
----------------------------------------------- */
#gl_header {
	background-color: rgba(255, 255, 255, .2);
	backdrop-filter: blur(20px);
	/* ブラー効果 */
	-webkit-backdrop-filter: blur(20px);
	/* Safari対応 */
	text-align: center;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 5000;
	line-height: 1.3;
	height: var(--header-h);
	z-index: 9999;
}

#b_ld #gl_header {
	border-color: var(--c-orange);
}

#b_hw #gl_header {
	border-color: var(--c-green);
}

#gl_header .headerInner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	padding: 0 var(--side);
	margin-inline: auto;
}

#gl_header .headerInner>* {
	flex-grow: 2;
	height: 100%;
}

#gl_header a,
.headerMenu a {
	display: block;
}

#gl_header .logoAria {
	font-weight: bold;
	width: 25%;
	max-width: 280px;
	display: flex;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 0;
}

/* #gl_header .logoAria a img{
	max-width: 100%;
} */

#gl_header .logoAria a img:hover {
	opacity: .7;
}

#gl_header .logoAria a {}

#gl_header .logoAria {
	margin-bottom: 0;
}

.headerMenu nav {
	height: 100%;
}

@media (max-width: 960px) {
	#gl_header .headerMenu {
		display: none;
	}
}


.headerMenu ul {
	display: flex;
	gap: var(--s1);
	height: 100%;
}


#gl_header .headerMenu ul {
	justify-content: flex-end;
}

#gl_header .headerMenu li {
	height: 90%;
}

.headerMenu a {
	display: block;
	align-content: center;
	padding: .8em var(--s1);
	border-radius: 0 0 1em 1em;
	height: 100%;
	position: relative;
	font-weight: 500;
	font-size: var(--f18);
	z-index: 2;
	position: relative;
}

.headerMenu li.active a {
	color: var(--c-blue);
}

.headerMenu li.active a::before {
	content: url(/common/images/menu_bk.svg);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	opacity: .5;
}

#gl_float {
	position: fixed;
	bottom: var(--s2);
	right: 2vw;
	z-index: 1000;
}

.totop {
	width: 60px;
	height: 60px;
	display: grid;
	place-content: center;
	opacity: 0;
	background-color: var(--c-blue);
	color: #fff;
	font-size: 30px;
	border-radius: 100px;
	line-height: 1;
	transition: .5s all ease 0s;
	letter-spacing: 0;
	font-weight: 500;
	cursor: pointer;
}

.totop:hover {
	background-color: #fff;
	color: var(--c-blue);
}

.totop::before {
	font-family: soft;
	content: "\E844";
	transform: rotate(-90deg);
	transform-origin: center center;
	margin-top: 5px;
	transition: 0.3s margin ease 0s;
}

.totop:hover::before {
	margin-top: -5px;
}

.totop.is-show {
	opacity: 1;
}


.jsAnimeText {
	display: inline-block;
	color: #3d4148;
}

.jsAnimeText.isInview {
	--opacity: 1;
	--scale: 1;
}


.jsAnimeText span {
	display: inline-block;
	transform: scaleY(var(--scale, 0));
	opacity: var(--opacity, 0);
	transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1), transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
	transition-delay: calc(0.25s * var(--char-index));
}

/* .visuallyHidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
} */


/* =====================================================================
gl_footer
======================================================================== */


#gl_footer {
	background-color: var(--c-indigo);
	/* color: var(--c-grayPale);	 */
	color: #fff;
	padding: var(--s8) var(--side);
}

#gl_footer a {
	color: #fff;
}

/* #gl_footer div,
#gl_footer nav{
	border: 1px solid red;
} */

#gl_footer ._box1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 3em 10%;
}

#gl_footer ._logos {
	flex-grow: 2;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1em;
}

#gl_footer ._logotype img {
	margin-top: var(--s1);
	max-width: 250px;
}

#gl_footer ._address {
	font-size: var(--f14);
	margin-top: var(--s3);
	text-align: left;
	color: var(--c-grayPale);
}

#gl_footer ._address th {
	padding-right: 1em;
	vertical-align: top;
}

#gl_footer ._copy {
	font-family: "Roboto Condensed", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
}

#gl_footer ._nav {
	flex-grow: 2;
	max-width: 450px;
}

#gl_footer ._nav>ul {
	display: flex;
	flex-wrap: wrap;
	gap: 1em 20%;
	line-height: 2;
}

#gl_footer ._nav>ul>li {
	flex-grow: 2;
}

#gl_footer ._nav>ul>li>a {
	font-size: var(--f18);
}

#gl_footer ._nav>ul>li>ul {
	margin-left: 1em;
}

#gl_footer ._nav>ul>li>ul a {
	color: var(--c-grayPale);
}

#gl_footer li.active a,
#gl_footer ._nav li.active a {
	color: var(--c-blue);
	font-weight: 500;
}

#gl_footer ._box2 {
	margin-top: var(--s6);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 2em;
}

#gl_footer ._nav2 ul {
	display: flex;
	flex-wrap: wrap;
	gap: 2em;
}

@media (max-width: 768px) {
	/* #gl_footer ._copy {
		text-align: center;	
	} */

	#gl_footer ._box2 {
		display: block;
		text-align: center;
	}

	#gl_footer ._nav2 ul {
		display: block;
	}
}


/* @media (max-width: 768px) {
	#gl_footer{
		display: grid;
		grid-template-columns: 1fr;
		gap: 1em;
	}
	#gl_footer ul{
		justify-content: center;
	}
} */

.sp_menu {
	display: none;
	width: 100%;
	height: 100vh;
	background-color: #fff;
	padding: var(--s4);
	padding-top: calc(var(--header-h) + 20px);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9998;
}

.menuBtn {
	display: none;
	position: fixed;
	top: 9px;
	right: 2%;
	border-radius: 5px;
	width: 50px;
	height: 50px;
	border: 1px solid #fff;
	background-color: var(--c-blue);
	cursor: pointer;
	outline: none;
	z-index: 10000;
}

@media (max-width: 960px) {
	.is-menuOpen .sp_menu {
		display: block;

	}

	.sp_menu a {
		position: relative;
	}

	.sp_menu>ul {
		overflow-y: scroll;
		height: calc(100vh - var(--header-h) - 40px);
	}

	.sp_menu>ul>li>span {
		font-size: var(--f18);
	}

	.sp_menu>ul>li+li {
		margin-top: 2em;
	}

	.sp_menu>ul>li li {
		/* border-radius: 10px; */
		border-bottom: 1px solid var(--c-blue);
		overflow: hidden;
	}

	.sp_menu>ul>li li+li {
		margin-top: 10px
	}

	.sp_menu>ul>li li a {
		font-size: var(--f24);
		font-weight: 500;
		display: block;
		padding: .6em var(--s6);
	}

	.sp_menu>ul>li li.active a {
		color: var(--c-blue);
		/* background-color: var(--c-bluePale);	 */
	}

	.menuBtn {
		display: block;
	}
}


.menuBtn::after {
	font-size: 10px;
	content: 'MENU';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	color: #000;
}

.menuBtn i {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translateX(-50%);
	width: 24px;
	height: 3px;
	background-color: #fff;
	border-radius: 100px;
	transition: 0.4s;
	transition-property: top, left, transform, opacity;
}

.menuBtn i:nth-of-type(2) {
	top: calc(40% + 20%);
}

.is-menuOpen {
	overflow: hidden;
}

.is-menuOpen .menuBtn i:nth-of-type(1) {
	top: calc(50%);
	transform: translate(-50%, -50%) rotate(45deg);
}

.is-menuOpen .menuBtn i:nth-of-type(2) {
	top: calc(50%);
	transform: translate(-50%, -50%) rotate(-45deg);
}

.menuBtn span {
	position: absolute;
	bottom: 10%;
	left: 0;
	color: var(--c-red);
	font-size: 10px;
	text-align: center;
	display: block;
	width: 100%;
}

.icon-round-tri {
	color: var(--c-red);
	transform-origin: center center;
	transform: rotate(-90deg);
	text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0-1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}

/* ===================================================================================
ANIMATION
====================================================================================== */

/* 上に向かってフェードイン */
.jsFadeUp {
	opacity: 0;
	transform: translateY(200px);
	transition: 0.5s all ease 0.5s;
}

.jsFadeUp.delay1 {
	transition-delay: 0.3s;
}

.jsFadeUp.delay2 {
	transition-delay: 0.6s;
}

.jsFadeUp.delay3 {
	transition-delay: 0.9s;
}

.jsFadeUp.delay4 {
	transition-delay: 1.2s;
}

.jsFadeUp.delay5 {
	transition-delay: 1.5s;
}

.jsFadeUp.isInview {
	opacity: 1;
	transform: translateY(0);
}

.jsFadeDown {
	opacity: 0;
	transform: translateY(-20px);
	transition: 0.5s all ease 0.5s;
}

.jsFadeDown.isInview {
	opacity: 1;
	transform: translateY(0);
}

/* 右からフェードイン */
.jsFadeFR {
	opacity: 0;
	transform: translateX(100px);
	transition: 0.5s all ease 0.5s;
}

.jsFadeFR.isInview {
	opacity: 1;
	transform: translateX(0);
}

/* 左からフェードイン */
.jsFadeFL {
	opacity: 0;
	transform: translateX(-100px);
	transition: 0.5s all ease 0.5s;
}

.jsFadeFL.isInview {
	opacity: 1;
	transform: translateX(0);
}

/* シンプルなフェードイン */
.jsFadeIn {
	opacity: 0;
	transition: 1s all ease 0.5s;
}

.jsFadeIn.isInview {
	opacity: 1;
}

/*ズームイン*/
.jsZoom {
	transform: scale(7);
	opacity: 0;
}

.jsZoom.isActive {
	animation-name: zoomInAnime;
	animation-delay: .5s;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}

@keyframes zoomInAnime {
	to {
		transform: scale(1);
		opacity: 1;
	}
}



.jsMoveLine {
	background-image: linear-gradient(to top, var(--c-blue) 1.3em, transparent 1.3em);
	background-position: left bottom;
	background-repeat: no-repeat;
	background-size: 0% 100%;
}

.jsMoveLine.isInview {
	animation-name: kf_moveLine;
	animation-duration: 1s;
	animation-delay: 0s;
	animation-fill-mode: forwards;
}

@keyframes kf_moveLine {
	0% {
		background-size: 0% 100%;
	}

	100% {
		background-size: 100% 100%;
	}
}

.jsMoveLine2 {
	background-image: linear-gradient(to top, var(--c-green) 2px, transparent 2px);
	background-position: left bottom;
	background-repeat: no-repeat;
	background-size: 0% 100%;
}

.jsMoveLine2.isInview {
	animation-name: kf_moveLine;
	animation-duration: 1s;
	animation-delay: 0s;
	animation-fill-mode: forwards;
}


.jsShutter {
	position: relative;
	/* width: 1000px;
	height: 500px; */
	overflow: hidden;
}

.jsShutter::before,
.jsShutter::after {
	content: "";
	position: absolute;
	width: 150%;
	height: 400%;
	top: 50%;

	transform: translateY(-50%) rotate(0);
	background-color: var(--c-green);
}

.jsShutter::before {
	transform-origin: left;
	left: -50%;
}

.jsShutter::after {
	transform-origin: right;
	right: -50%;
}

.jsShutter.isInview::before,
.jsShutter.isInview::after {
	animation: moveAndFade 1s forwards .5s;
}

/* アニメーションの定義 */
@keyframes moveAndFade {

	/* 0% {
	  width: 150%;
	} */
	100% {
		width: 0;
		transform: translateY(-50%) rotate(45deg);
	}
}


/* =====================================================================
  s_fv
  ======================================================================== */
.s_fv {
	position: relative;
	/* color: #333; */
}

.js_mainv {
	position: relative;
	height: 45vw;
	max-height: 700px;
}

.js_mainv img {
	width: 100%;
	
}

@media (max-width: 768px) {
	.js_mainv {
		width: 100%;
		/* aspect-ratio: 1 / 1.3; */
		height: 70dvh;
		/* height: calc(100dvh - var(--header-h)); */
		overflow: hidden;
		/* border: 1px solid red; */
	}

	.js_mainv img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
		display: block;
	}
}

.s_fv .js_mainv_inner {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: left;
	justify-content: center;
	transition: color 0.6s ease, filter 0.6s ease;
	z-index: 10;
	padding-inline: var(--side2);
	
}

/* .s_fv .swiper-slide{
	max-height: 700px;
} */

.js_mainv_inner ._strong {
	color: #fff;
}

.js_mainv_inner.sky ._strong {
	color: var(--c-blue);
}

.s_fv h2 {
	font-weight: 700;
	font-size: var(--f48);
	line-height: 1.5;
}

.s_fv ._lead {
	font-weight: 500;
	font-size: var(--f24);
	text-shadow: 2px 2px 3px #fff,
	-2px -2px 3px #fff;
}

.s_fv ._nav ul {
	display: flex;
	gap: 1em;
}

@media (max-width: 768px) {
	.s_fv h2 {
		margin-top: 3em;
		font-size: var(--f32);
	}
	
	.s_fv ._lead {
		font-size: var(--f20);
	}
}

/* .s_fv ._nav a{
	display: block;
	margin-top: var(--s6);
	padding: 1em 1.5em;
	min-width: 220px;
	border: 2px  solid var(--c-blue);
	background-color: var(--c-blue);
	color: #fff;
	border-radius: 10px;
	text-align: center;
}*/



/* =====================================================================
   s_norm
   ======================================================================== */
.s_norm {
	padding-block: var(--s8);
}

.s_norm ._lead {
	text-align: center;
	margin-block: var(--s4);
}

/* =====================================================================
	s_products
	======================================================================== */
.s_products ._box {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--s3);
}

/*SP*/
@media (max-width: 600px) {
	.s_products ._box {
		grid-template-columns: 1fr;
	}
}

.s_products ._card {
	border-radius: var(--s2);
	overflow: hidden;
	border: 1px solid var(--c-grayPale);
}

.s_products ._card img {
	object-fit: cover;
	aspect-ratio: 16 / 9;
}

.s_products ._card>div {
	padding: var(--s3);
}

.s_products ._card ._link {
	text-align: right;
}

.s_products ._card ._link span {
	display: inline-block;
	font-weight: bold;
	padding-top: .5em;
	color: var(--c-blue);
}

.s_products ._card ._link span::after {
	font-family: soft;
	content: "\E844";
	margin-left: .5em;
	font-size: 1em;
}

/* =====================================================================
	s_news
	======================================================================== */
.s_news {
	background-color: #f2f2f2;
	background-image: url(/common/images/news_bk.jpg);
	background-size: cover;
	background-position: center center;
}

.s_news .inner {
	max-width: 800px;
}

.s_news dl {
	border-bottom: 1px solid var(--c-gray);
	display: grid;
	grid-template-columns: minmax(8em, 25%) auto;

}

.s_news dt {
	padding: .5em;
	text-align: center;
}

.s_news dt span {
	background-color: var(--c-blue);
	color: #fff;
	border-radius: 50px;
	display: inline-block;
	padding: .5em 1.5em;
	line-height: 1;
	letter-spacing: .2em;
	font-size: var(--f14);
}

.s_news dd {
	padding: .5em;
}

.s_news a {
	text-decoration: underline;
	text-decoration-color: var(--c-blue);
	text-underline-offset: 4px;
	text-decoration-thickness: 1px;
}

.s_news a:hover {
	color: var(--c-blue);
}

/* =====================================================================
s_header
======================================================================== */
.s_header {
	padding-block: var(--s10)
}

/* =====================================================================
product
======================================================================== */
.b_subhead {
	position: relative;
}

.b_subhead_bk {
	position: absolute;
	z-index: -2;
	/* top: var(--header-h); */
	top: 0;
	right: 0;
	/* width: 50%; */
	max-width: 50vw;
	display: inline-block;
}

.b_subhead_bk::after {
	content: "";
	position: absolute;
	inset: 0;
	/* top, right, bottom, left 全て0 */
	background: linear-gradient(to top,
			rgba(255, 255, 255, 1) 0%,
			/* 一番上：白100% */
			rgba(255, 255, 255, 0) 50%,
			/* 下から50%：白0% */
			rgba(255, 255, 255, 0) 100%
			/* 最下部：完全透明（任意）*/
		);
	pointer-events: none;
	/* クリックなどの操作を邪魔しない */
}

.b_subhead_cover {
	position: absolute;
	z-index: -1;
	top: -20vw;
	left: 0;
	width: 85%;
	max-width: 100000%;
}

.bottom_bk {
	position: absolute;
	z-index: -4;
	bottom: 0;
	left: 0;
	width: 100%;
}

.bottom_bk2 {
	position: absolute;
	z-index: -3;
	bottom: 0;
	right: var(--side);
	width: 25%;
	min-width: 200px;
}

/* =====================================================================
s_shadowbox
======================================================================== */
.s_main {
	padding-bottom: 15vw;
}

.s_shadowbox {
	box-shadow: 0px 0px 15px 4px rgba(0, 0, 0, 0.15);
	background-color: rgba(255, 255, 255, 0.7);
	padding: var(--s6);
	border-radius: var(--s3);
}

@media (max-width: 768px) {
	.s_shadowbox {
		padding: var(--s6) var(--s3);
	}
}

.s_shadowbox+.s_shadowbox {
	margin-top: var(--s8);
}

.s_shadowbox a {
	color: var(--c-blueDark);
	font-weight: 500;
}

#m_policy .s_shadowbox>* {
	max-width: 800px;
	margin-inline: auto;
}

#m_inquiry .s_shadowbox{
	padding-inline: var(--s2);
}

/* =====================================================================
s_prodlist
======================================================================== */
.s_prodlist .inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--s6);
	margin-bottom: 10vw;
}


.s_prodlist .s_shadowbox {
	display: grid;
	grid-template-columns: 1fr .5fr;
	gap: var(--s6);
	/* padding: var(--s6);
	border-radius: var(--s3);
	box-shadow: 0px 0px 15px 4px rgba(0, 0, 0, 0.15);
	background-color: rgba(255, 255, 255, 0.7); */
	line-height: 1.5;
}

.s_prodlist .s_shadowbox figure {
	text-align: center;
}



.s_prodlist .s_shadowbox figcaption {
	color:var(--c-grayDark);
	display: block;
}

.s_prodlist .s_shadowbox figure img {
	/* max-width: 300px; */
	margin: auto;
}

.s_prodlist h2 {
	font-size: var(--f30);
}


@media (max-width: 768px) {
	.s_prodlist .s_shadowbox {
		grid-template-columns: 1fr;
	}

	.s_prodlist .s_shadowbox figure img {
		max-width: 280px;
	}

}

.s_prodlist ._subt {
	color: var(--c-blueDark);
	font-weight: 700;
	font-size: var(--f18);
}

.s_prodlist h2 {
	font-weight: 700;
	font-size: clamp(1.25rem, 1.098rem + 0.647vw, 1.875rem); /*20px-30px*/
	position: relative;
	z-index: 2;
	display: inline-block;
	margin-bottom: 1.5em;
}

.s_prodlist h2 ._no {
	font-family: "Noto Sans", sans-serif;
	font-size: var(--f18);
	font-weight: normal;
}

.s_prodlist h2::before {
	content: url(/common/images/orn_wave.svg);
	position: absolute;
	bottom: -1em;
	left: -.2em;
	z-index: -1;
	opacity: .3;
}


.s_prodlist ._lead {
	font-size: var(--f18);
	font-weight: 700;
	position: relative;
	padding-left: 1.2em;
}

.s_prodlist ._lead+._lead {
	margin-top: var(--s1);
}

.s_prodlist ._lead:before {
	content: "●";
	position: absolute;
	top: 0;
	left: 0;
	color: var(--c-blue);
}

.s_prodlist ._exp {
	margin-top: var(--s2);
}

.s_prodlist h4 {
	margin-top: var(--s2);
	margin-bottom: 0;
}

.s_prodlist table {
	margin-top: var(--s3);
	width: 100%;
	border-top: 2px solid var(--c-blue);
	border-bottom: 2px solid var(--c-blue);
}

.s_prodlist table+table {
	margin-top: 0;
	border-top: 0;
}

.s_prodlist table tr {
	position: relative;
}

.s_prodlist table tr::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--c-blue);
}

.s_prodlist table td {
	padding-block: .5em;
	box-sizing: border-box;
}

.s_prodlist table td._name {
	font-weight: 500;
	font-size: var(--prod);
}

.s_prodlist table td._for {
	font-weight: 500;
	/* font-size: var(--prod); */
	width: 38%;
	/* color: red; */
}

.s_prodlist table td._add {
	width: 28%;
	/* color: green; */
}

.s_prodlist table td._no {
	font-family: "Noto Sans", sans-serif;
	font-size: var(--prod);
	width: 22%;
	/* color: blue; */
}

@media screen and (min-width: 769px) {
	.s_prodlist table tr::after {
		left: 1em;
		width: calc(100% - 2em);
	}

	.s_prodlist table td:first-child {
		padding-left: 15px;
	}
}

.s_prodlist img {
	display: block;
}

/* =====================================================================
FORM
======================================================================== */
#mailformpro {
	min-height: 1000px;
}


/* =====================================================================
modal
======================================================================== */

.modal {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	height: 100dvh;
	width: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(10px);
	cursor: pointer;
}

.modal .modal-box {
	background-color: #fff;
	max-width: 1280px;
	width: 90%;
	max-height: 97dvh;
	border-radius: 10px;
	animation-name: modalopen;
	animation-duration: 1s;
	padding: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.modal .modal-box div {
	max-height: calc(97dvh - 80px);
	overflow-y: auto;
}

/* .modalOpen {
	cursor: pointer;
	position: relative;
	display: block;
} */

.modalOpen div {
	cursor: pointer;
	position: relative;
	display: inline-block;
	overflow: hidden;
}

.modalOpen div::before {
	font-family: soft;
	font-size: 20px;
	color: #fff;
	content: "\E847";
	position: absolute;
	bottom: 10px;
	right: 10px;
	z-index: 10;
	transition: .6s all;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* .modalOpen:hover div::before{
	color: var(--c-blue);
} */


#about_branches .modal .modal-box {
	height: 90dvh;
}

.modal .modal-box iframe {
	width: 100%;
	height: 100%;
}

.modalClose {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 40px;
	height: 40px;
	background-color: transparent;
	border: none;
	cursor: pointer;
	/* background-color: #fff; */
}

.modalClose::before,
.modalClose::after {
	content: '';
	position: absolute;
	width: 80%;
	height: 2px;
	border-radius: 2px;
	background-color: var(--c-blue);
	top: 50%;
	right: 0;
	transform: rotate(45deg);
	transform-origin: center;
}

.modalClose::after {
	transform: rotate(-45deg);
}

/*SP*/
@media screen and (max-width: 768px) {
	.modal .modal-box {
		padding: var(--s2);
		padding-top: 40px;
		width: 96%;
		max-height: 96dvh;
	}

	.modal.-modal_book .modal-box {
		overflow: auto;
		overscroll-behavior-y: contain;
	}
}


/* =====================================================================
about
======================================================================== */
#m_about .s_shadowbox>* {
	max-width: 1000px;
	margin-inline: auto;
}


#m_about h2 {
	text-align: center;
	position: relative;
	z-index: 2;
	margin-top: .8em;
}

#m_about h2:before {
	content: url(/common/images/orn_wave.svg);
	position: absolute;
	top: -1.5em;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}

#m_about *+h2 {
	margin-top: 3em;
}

#m_about ._intro p+p {
	margin-top: 1em;
}

#m_about ._grid {
	display: grid;
	grid-template-columns: 7fr 3fr;
	gap: var(--s4);
}

@media (max-width: 768px) {
	#m_about ._grid {
		grid-template-columns: 1fr;
	}
}

#m_about ._grid table * {
	vertical-align: top;
}

#m_about ._grid table th {
	text-align: left;
	width: 10em;
}

#m_about .map{
	display: block;
	margin-top: var(--s4);
	width: 100%;
	height: 50vw;
	min-height: 250px;
	max-height: 500px;
}

/* =====================================================================
mailformpro
======================================================================== */
input,
textarea {
	padding: .7em;
	font-size: var(--f18);
	border-radius: 5px;
	border: none;
	width: 100%;
}

input#zip {
	width: 150px;
	max-width: 80%;
	margin-left: .5em;
	margin-bottom: .7em;
}

#mailformpro .red {
	color: var(--c-red);
}

#mailformpro table {
	font-size: var(--f18);
	width: 100%;
	max-width: 800px;
	margin: auto;
}

#mailformpro th {
	font-size: var(--f16);
	background-color: var(--c-bluePale);
	border-bottom: 6px solid #fff;
}

#mailformpro td {
	background-color: #e1e5ea;
	border-bottom: 6px solid #fff;
}

/* #mailformpro tr:last-child th{
	border-bottom: none;	
} */

#mailformpro tr>* {
	padding: 1em;
}

/* =====================================================================
m_qa
======================================================================== */
#m_qa h2 {
	margin-top: 1em;
	position: relative;
}

#m_qa h2::before {
	content: url(/common/images/orn_dots.svg);
	position: absolute;
	top: -1.6em;
	left: 0%;
}

#m_qa dl+dl {
	margin-top: var(--s6);
}

#m_qa dt {
	font-size: var(--f26);
	font-weight: 500;
	color: var(--c-blueDark);
	padding-left: var(--s10);
	position: relative;
}



#m_qa dt::before {
	content: url(/common/images/icon_q.svg);
	position: absolute;
	top: 0%;
	left: 0%;
}


#m_qa dd {
	margin-top: 1em;
	padding-left: var(--s10);
	position: relative;
}

#m_qa dd::before {
	content: url(/common/images/icon_a.svg);
	position: absolute;
	top: 0%;
	left: 0%;
}