@charset "utf-8";

/*====================================================================================

		basic layout

====================================================================================*/

body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 15px;
	font-feature-settings: "palt";
	line-height: 1.8;
	letter-spacing: var(--letter);
}

body * {
	box-sizing: border-box;
}

.en {
	font-family: 'Roboto', sans-serif;
}

.serif {
	font-family: 'Noto Serif JP', serif;
}



/*
body {
	color: #000;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.85;
}

.serif {
	font-family: 'Noto Serif JP', serif;
}
*/

img {
	max-width: 100%;
	vertical-align: top;
	image-rendering: -webkit-optimize-contrast;		/* for chrome */
}

a {
	border: none;
	text-decoration: none;
	transition: all .3s;
}

a:hover {
	/*filter: brightness(110%);*/
}

a.pc_not_tel {
	pointer-events: none;
	cursor: default;
}

em {
	font-style: normal;
	font-weight: bold;
}

p#page_top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 100;
}

.pc_none {
	display: none;
}

.sp_none {
	display: inline;
}

img.sp {
	display: none;
}


@media screen and (max-width: 768px){
	.sp_none {
		display: none;
	}
	
	.pc_none {
		display: inline;
	}
	
	img {
		max-width: 100%;
		width: auto;
	}
	
	img.pc {
		display: none;
	}
	
	img.sp {
		display: inline;
	}
	
	a.pc_not_tel {
		pointer-events: auto;
		cursor: pointer;
	}
	
	p#page_top {
		width: 50px;
		right: 10px;
		bottom: 10px;
	}
}



/*------------------ clearfix layout ---------------------*/
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}
/*
*:after {
	content: "";
	display:block;
	clear:both;
}
*/


/*------------------ fadein layout ---------------------*/
.fadein {
	opacity : 0;
	transform: translateY(10px);
	transition: all 1s;
}


/*------------------ arrow down layout ---------------------*/
.dummy_object::after {
	content: "";
	border-style: solid;
	border-width: 20px 20px 0 20px;
	border-color: #fff transparent transparent transparent;
	position: absolute;
	left: calc(50% - 10px);
	bottom: -40px;
}


/*------------------ flex layout ---------------------*/
.flex_space-between {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
}

.flex_center {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
}


/*------------------ set variable ---------------------*/
:root {
	--color_orange: #294395;
	--color_gray: #e6e6e6;
	--letter: 0.1em;
}





/*====================================================================================

		header layout

====================================================================================*/

header {
	position: relative;
	z-index: 2;
}

header .header_top {
	width: 90%;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	position: fixed;
	left: 5%;
	top: 0;
	z-index: 1000;
	transition: all 0.3s;
}

header .header_top .wrapper {
	width: calc(100% - 115px);
	height: 75px;
	padding: 0 60px;
	background-color: rgba(255,255,255,0.7);
	border-radius: 0 0 4px 4px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media screen and (max-width: 1065px){
	header .header_top .wrapper {
		padding: 0 20px;
	}
}
header .header_top .wrapper .logo {
	flex-shrink: 0;
	text-align: center;
	line-height: 1.0;
	letter-spacing: 0;
}

header .header_top .wrapper .logo a {
	display: block;
}

header .header_top .wrapper .logo a:hover {
	transform: scale(1.05);
}

header .header_top .wrapper .logo a img {
	width: 206px;
}

header .header_top .wrapper .logo a span {
	margin: 5px 0 0;
	display: block;
	color: #666;
	font-size: 10px;
	font-weight: 700;
}


header .header_top p.btn_contact {
	width: 75px;
	flex-shrink: 0;
	text-align: center;
	line-height: 1.0;
	letter-spacing: 0;
}

header .header_top p.btn_contact a {
	height: 75px;
	background-color: #000;
	border-radius: 0 0 4px 4px;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
}

header .header_top p.btn_contact a:hover {
	background-color: var(--color_orange);
}

header .header_top p.btn_contact a img {
	width: 36px;
	margin: 0 0 -15px;
}


@media screen and (max-width: 965px){
	header .header_top .wrapper {
		padding: 0 20px;
	}
}


@media screen and (max-width: 768px){
	header .header_top {
		width: 100%;
		left: 0;
	}
	
	header .header_top .wrapper {
		width: calc(100% - 80px);
		height: 60px;
		padding: 0 4vw;
		position: relative;
	}
	
	header .header_top .wrapper .logo a:hover {
		transform: scale(1);
	}
	
	header .header_top .wrapper .logo a img {
		width: 103px;
	}
	
	header .header_top .wrapper .logo a span {
		font-size: 10px;
	}
	
	
	header .header_top p.btn_contact {
		width: 60px;
		position: relative;
		z-index: 1002;
		letter-spacing: -0.5px;
	}
	
	header .header_top p.btn_contact a {
		height: 60px;
	}
	
	header .header_top p.btn_contact a:hover {
		background-color: #000;
	}
	
	header .header_top p.btn_contact a img {
		width: 40%;
		margin: 0 0 -2vh;
	}
	
	header .header_top p.btn_contact a span {
		transform: scale(0.9);
	}
}



/*===============================================================

		header nav layout

===============================================================*/

header .drawer_button {
	display: none;
}

header .drawer_nav_wrapper {
	width: 100%;
}

header ul.drawer_nav {
	margin: 0 0 0 auto;
	display: flex;
	justify-content: flex-end;
/*	gap: 0 60px;*/
	line-height: 1.0;
}

header ul.drawer_nav li {
	text-align: center;
	position: relative;
}

header ul.drawer_nav li a {
	display: block;
	position: relative;
	color: #000;
	font-weight: 700;
	padding: 30px 30px;
}

header ul.drawer_nav li a:hover {
	color: var(--color_orange);
}

header ul.drawer_nav li a::before {
	content: "";
	width: 100%;
	height: 2px;
	background: var(--color_orange);
	position: absolute;
	left: 0;
	/*bottom: -5px;*/
	bottom: 0;
	margin: auto;
	transform-origin: center top;
	transform: scale(0, 1);
	transition: transform .3s;
}

header ul.drawer_nav li a:hover::before {
	transform-origin: center top;
	transform: scale(1, 1);
}
header ul.drawer_nav li .sub-menu{
	display: none;
	width: 190px;
	position: absolute;
	top: 100%;
	background: var(--color_orange);
}
header ul.drawer_nav li:hover .sub-menu{
	display: block;
}
header ul.drawer_nav li .sub-menu li{
	border-bottom: 1px solid #fff;
}
header ul.drawer_nav li .sub-menu li:last-child{
	border-bottom: none;
}
header ul.drawer_nav li .sub-menu li a{
	padding: 15px 10px;
	color: #fff;
	text-align: left;
	font-size: 13px;
	line-height: 1.25;
	transition: 0.3s;
}
@media (min-width:769px){
	header ul.drawer_nav li .sub-menu li a:hover{
		background: #fff;
		color: var(--color_orange);
	}
	header ul.drawer_nav li .sub-menu li a:hover::before{
		content: none;
	}
}

@media screen and (max-width: 965px){
	header ul.drawer_nav {
		/*gap: 0 20px;*/
	}
	header ul.drawer_nav li a {
		padding: 30px 10px;
	}
}


@media screen and (max-width: 768px){
	/* .drawer_button */
	header .drawer_button {
		width: 60px;
		height: 60px;
		padding: 0;
		display: block;
		background: transparent;
		border: none;
		border-radius: 0 0 4px 4px;
		letter-spacing: var(--letter);
		cursor: pointer;
		position: absolute;
		right: 0;
		top: 0;
		z-index: 1001;
		text-align: center;
		outline: none;
		/*
		border-radius: 5px;
		right: 5px;
		top: 5px;
		*/
	}
	
	header .drawer_button.active {
		background: #fff;
	}
	
	header .drawer_button.active .drawer_close {
		display: block;
	}
	
	
	/* .drawer_bar */
	header .drawer_bar {
		display: block;
		width: 30px;
		height: 3px;
		margin: 6px auto;
		background: var(--color_orange);
		transition: all 0.2s;
		transform-origin: 50% 50%;
		position: relative;
	}
	
	header .drawer_button.active .drawer_bar {
		width: 30px;
		background: var(--color_orange);
	}
	
	header .drawer_button.active .drawer_bar1 {
		top: 9px;
		transform: rotate(45deg);
	}
	
	header .drawer_button.active .drawer_bar2 {
		opacity: 0;
	}
	
	header .drawer_button.active .drawer_bar3 {
		top: -9px;
		transform: rotate(-45deg);
	}
	
	
	/* .drawer_text */
	header .drawer_text {
		/*display: none;*/
		text-align: center;
		font-size: 10px;
		color: var(--color_orange);
		letter-spacing: 0.05em;
	}
	
	header .drawer_button.active .drawer_text {
		display: none;
	}
	
	header .drawer_button .drawer_close {
		display: none;
	}
	
	header .drawer_button.active .drawer_close {
		display: block;
	}
	
	
	/* .drawer_nav_wrapper */
	header .drawer_nav_wrapper {
		width: 100%;
		height: 100%;
		/*
		width: 100%;
		height: 100%;
		height: auto;
		*/
		margin: 0;
		padding: 0;
		
		box-sizing: border-box;
		display: block;
		
		transform: translateY(-110%);
		position: fixed;
		top: 0;
		right: 0;
		z-index: 1000;
		/*overflow-y: scroll;*/
		-webkit-overflow-scrolling: touch;
		overscroll-behavior-y: contain;
	}
	
	header .drawer_nav_wrapper.open {
		transform: translate(0);
	}
	
	
	/* ul.drawer_nav */
	header ul.drawer_nav {
		width: 100%;
		height: 100%;
		margin: 0 0 0 auto;
		padding: 0 5vw;
		background: var(--color_orange);
		position: relative;
		z-index: 2;
		display: flex;
		flex-flow: column wrap;
		justify-content: center;
		gap: 0vh 0;
		transition: all 0.4s;
		transform: translate(110%);
	}
	
	header ul.drawer_nav li {
		width: 100%;
		margin: 0;
		line-height: 1.3;
		transform: translateX(100px);
		opacity: 0;
		/*clip-path: inset(0 0 0 100%);*/
	}
	
	header ul.drawer_nav li a {
		width: auto;
		margin: 0;
		display: block;
		position: relative;
		color: #fff;
		font-size: 6vw;
		font-weight: 700;
		letter-spacing: 0.2em;
	}
	
	header ul.drawer_nav li a:hover {
		color: #fff;
	}
	
	header ul.drawer_nav li .sub-menu{
		display: block;
		position: static;
		margin: -20px auto 20px;
		width: 80%;
	}
	header ul.drawer_nav li .sub-menu li{
		border-bottom: none;
	}
	header ul.drawer_nav li .sub-menu li a{
		text-align: center;
	}
}



/*===============================================================

		.main_img layout

===============================================================*/

header .main_img {
	height: 360px;
	position: relative;
	z-index: 2;
}

header .main_img h2 {
	width: min(765px, 90%);
	height: 125px;
	padding: 0 0 0 min(90px, 6%);
	background-color: #fff;
	display: flex;
	flex-flow: column wrap;
	justify-content: center;
	position: absolute;
	left: 0;
	bottom: -50px;
	color: var(--color_orange);
	font-size: 45px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: var(--letter);
}

header .main_img h2 span {
	display: block;
	font-size: 25px;
	font-weight: 500;
	letter-spacing: var(--letter);
	word-wrap: break-word;
}


@media screen and (max-width: 768px){
	header .main_img {
		height: 25vh;
	}
	
	header .main_img h2 {
		width: 70%;
		height: auto;
		padding: 2vh 2vw 2vh 4vw;
		bottom: auto;
		top: 75%;
		font-size: 7vw;
	}
	
	header .main_img h2 span {
		font-size: 4vw;
	}
}



/*====================================================================================

		#contents layout

====================================================================================*/

#contents {
	padding: 90px 0 0;
	position: relative;
	z-index: 1;
}

#top #contents {
	padding: 0;
	position: static;
/*	overflow-x: hidden;*/
}

#contents section .inner,
#contents div .inner {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 40px;
	position: relative;
}


@media screen and (max-width: 768px){
	#contents {
		padding: 9vh 0 0;
	}
	
	#contents section .inner,
	#contents div .inner {
		width: auto;
		padding: 0 5vw;
	}
}



/*===============================================================

		#contents .btn_01 layout

===============================================================*/

#contents .btn_01 {
	width: 350px;
	position: relative;
	text-align: center;
}

#contents .btn_01 a {
	width: 100%;
	margin: 0 auto;
	padding: 20px 20px 20px 0;
	background: linear-gradient(to right, var(--color_orange) 0%,var(--color_orange) 50%, #000 50%,#000 100%);
	background-size: 202% auto;
	background-position: right center;
	border: none;
	box-sizing: border-box;
	display: block;
	position: relative;
	cursor: pointer;
	color: #fff;
	font-size: 17px;
	font-weight: bold;
	letter-spacing: 0.2em;
	transition: all .3s;
	appearance: none;
}

#contents .btn_01 a:hover {
	background-position: left center;
}

#contents .btn_01 a::after {
	content: "";
	width: 12px;
	height: 12px;
	border-style: solid;
	border-width: 3px 3px 0 0;
	border-color: #fff #fff transparent transparent;
	box-sizing: border-box;
	position: absolute;
	right: 40px;
	top: 50%;
	z-index: 2;
	transform: translateY(-50%) rotate(45deg);
	transition: all 0.3s;
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
}

#contents .btn_01 a:hover::after {
	right: 35px;
}


@media screen and (max-width: 768px){
	#contents .btn_01 {
		width: 100%;
	}
	
	#contents .btn_01 a {
		padding: 2vh 2vw;
		background: #000;
		font-size: 3.7vw;
	}
	
	#contents .btn_01 a:hover {
		background-position: right center;
	}
	
	#contents .btn_01 a::after {
		right: 5%;
	}
	
	#contents .btn_01 a:hover::after {
		right: 5%;
	}
}



/*===============================================================

		.products #contents .p_link layout

===============================================================*/

.products #contents .p_link {
	margin: -90px 0 0;
	padding: 90px 40px 80px;
	background-color: var(--color_orange);
	letter-spacing: 0.2em;
}

.products #contents .p_link .inner {
	display: flex;
	justify-content: center;
	align-items: center;
}

.products #contents .p_link .inner a {
	position: relative;
	color: #fff;
	font-size: 26px;
	font-weight: 700;
}

.products #contents .p_link .inner a::before {
	content: "";
	width: 100%;
	height: 2px;
	background: #fff;
	position: absolute;
	left: 0;
	bottom: -5px;
	margin: auto;
	transform-origin: left top;
	transform: scale(0, 1);
	transition: transform .3s;
}

.products #contents .p_link .inner a:hover::before {
	transform-origin: left top;
	transform: scale(1, 1);
}


@media screen and (max-width: 768px){
	.products #contents .p_link {
		margin: -9vh 0 0;
		padding: 9vh 0 6vh;
		letter-spacing: var(--letter);
	}
	
	.products #contents .p_link .inner a {
		font-size: 4.5vw;
	}
	
	.products #contents .p_link .inner a::before {
		display: none;
	}
}



/*===============================================================

		.products #contents .group_link layout

===============================================================*/

.products #contents .group_link {
	display: flex;
}

.products #contents .group_link h4 {
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: min(50px, 4.4vw);
	font-weight: 900;
	line-height: 1.0;
	letter-spacing: 0.2em;
}

.environment #contents .group_link h4 {
	background: url("../../img/products/environment/group_link_img.jpg") center center / cover no-repeat;
}

.concrete #contents .group_link h4 {
	background: url("../../img/products/concrete/group_link_img.jpg") center center / cover no-repeat;
}

.concrete2 #contents .group_link h4 {
	background: url("../../img/products/concrete2/group_link_img.jpg") center center / cover no-repeat;
}

.products #contents .group_link h4 span {
	display: inline-block;
	position: relative;
	filter: drop-shadow(7px 5px 5px #000000);
}

.products #contents .group_link h4 span::after {
	content: "";
	width: 120%;
	height: 71px;
	background: url("../../img/products/environment/arrow.svg") left top / 100% auto no-repeat;
	position: absolute;
	left: -2%;
	top: 90%;
}

.products #contents .group_link ul {
	width: 50%;
	padding: 60px min(20px, 2vw) 60px min(80px, 10vw);
	background-color: var(--color_gray);
	line-height: 1.0;
}

.concrete #contents .group_link ul ,
.concrete2 #contents .group_link ul ,
.environment #contents .group_link ul {
	display: flex;
	flex-flow: row wrap;
	gap: 30px 60px;
}

.products #contents .group_link ul li:not(:last-child) {
	margin: 0 0 30px;
}

.concrete #contents .group_link ul li:not(:last-child) {
	margin: 0;
}

.concrete #contents .group_link ul li:nth-child(3) {
	width: 100%;
	line-height: 1.3;
}

.products #contents .group_link ul li a {
	position: relative;
	color: var(--color_orange);
	font-size: 20px;
	font-weight: 700;
}

.products #contents .group_link ul li a::before {
	content: "";
	width: 100%;
	height: 2px;
	background: var(--color_orange);
	position: absolute;
	left: 0;
	bottom: -5px;
	margin: auto;
	transform-origin: left top;
	transform: scale(0, 1);
	transition: transform .3s;
}

.concrete #contents .group_link ul li:nth-child(3) a::before {
	bottom: -30px;
}

.products #contents .group_link ul li a:hover::before {
	transform-origin: left top;
	transform: scale(1, 1);
}

.products #contents .group_link ul li a::after {
	content: "";
	width: 12px;
	height: 12px;
	border-style: solid;
	border-width: 3px 3px 0 0;
	border-color: var(--color_orange) var(--color_orange) transparent transparent;
	box-sizing: border-box;
	position: relative;
	right: -10px;
	top: -1px;
	z-index: 2;
	transform: rotate(45deg);
	transition: all 0.3s;
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
}

.products #contents .group_link ul li a:hover::after {
	right: -15px;
}



@media screen and (min-width: 1412px){
	.concrete #contents .group_link ul li:nth-child(3) a::before {
		bottom: -5px;
	}
}


@media screen and (max-width: 1050px){
	.products #contents .group_link h4 span::after {
		width: 115%;
	}
}


@media screen and (max-width: 825px){
	.concrete #contents .group_link ul li:nth-child(3) a::before {
		bottom: -60px;
	}
}


@media screen and (max-width: 768px){
	.products #contents .group_link {
		display: block;
	}
	
	.products #contents .group_link h4 {
		width: auto;
		height: 20vh;
		font-size: 8vw;
	}
	
	.products #contents .group_link h4 span::after {
		width: 110%;
	}
	
	.products #contents .group_link ul {
		width: auto;
		padding: 6vh 6vw;
	}
	
	.concrete #contents .group_link ul {
		padding: 6vh 6vw;
		display: block;
	}
	
	.products #contents .group_link ul li:not(:last-child) {
		margin: 0 0 4vh;
	}
	
	.concrete #contents .group_link ul li:not(:last-child) {
		margin: 0 0 4vh;
	}
	
	.products #contents .group_link ul li a {
		font-size: 4.5vw;
	}
	
	.products #contents .group_link ul li a::before {
		display: none;
	}
	
	.products #contents .group_link ul li a::after {
		right: -3vw;
	}
	
	.products #contents .group_link ul li a:hover::after {
		right: -3vw;
	}
}


/*
.products #contents ul.group_link {
	padding: 0 0 4px;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.products #contents ul.group_link li:nth-last-child(3) {
	width: 100%;
	margin: 10px 0;
}

.products #contents ul.group_link li:nth-last-child(2) {
	width: calc(50% - 2px);
}

.products #contents ul.group_link li:nth-last-child(1) {
	width: calc(50% - 2px);
}

.products #contents ul.group_link li a {
	display: block;
	position: relative;
	overflow: hidden;
}

.products #contents ul.group_link li img {
	transition: all 0.3s;
}

.products #contents ul.group_link li a:hover img {
	transform: scale(1.1);
}

.products #contents ul.group_link li a span {
	display: block;
	position: absolute;
	z-index: 2;
	line-height: 1.0;
}

.products #contents ul.group_link li:nth-last-child(3) a span:nth-of-type(1) {
	padding: 5px;
	background-color: #000;
	left: 0;
	top: 0;
	color: #fff;
	font-size: 14px;
}

.products #contents ul.group_link li:nth-last-child(3) a span:nth-of-type(2) {
	left: 2%;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(255,255,255,0.8);
	font-size: clamp(9vw, 120px, 11vw);
	font-weight: 700;
}

.products #contents ul.group_link li:nth-last-child(2) a span,
.products #contents ul.group_link li:nth-last-child(1) a span {
	width: 100%;
	left: 0;
	top: 50%;
	text-align: center;
	color: #fff;
	font-size: min(39px, 3vw);
	font-weight: 700;
	letter-spacing: 0.2em;
}


.products #contents ul.group_link li:nth-last-child(2) a span::after,
.products #contents ul.group_link li:nth-last-child(1) a span::after {
	content: "";
	width: 20px;
	height: 20px;
	border-style: solid;
	border-width: 5px 5px 0 0;
	border-color: #fff #fff transparent transparent;
	box-sizing: border-box;
	z-index: 2;
	transform: translate(20px, -4px) rotate(45deg);
	transition: all 0.3s;
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
}

.products #contents ul.group_link li:nth-last-child(2) a:hover span::after,
.products #contents ul.group_link li:nth-last-child(1) a:hover span::after {
	transform: translate(30px, -4px) rotate(45deg);
}


@media screen and (max-width: 768px){
	.products #contents ul.group_link {
		padding: 0;
	}
	
	.products #contents ul.group_link li:nth-last-child(3) {
		margin: 0;
	}
	
	.products #contents ul.group_link li:nth-last-child(2),
	.products #contents ul.group_link li:nth-last-child(1) {
		width: calc(50% - 1px);
	}
	
	.products #contents ul.group_link li a:hover img {
		transform: scale(1);
	}
	
	.products #contents ul.group_link li:nth-last-child(3) a span:nth-of-type(1) {
		font-size: 3.2vw;
	}
	
	.products #contents ul.group_link li:nth-last-child(3) a span:nth-of-type(2) {
		font-size: 10vw;
	}
	
	.products #contents ul.group_link li:nth-last-child(2) a span,
	.products #contents ul.group_link li:nth-last-child(1) a span {
		width: 100%;
		left: 0;
		top: 50%;
		transform: translate(0, -50%);
		text-align: center;
		font-size: 4vw;
	}
	
	.products #contents ul.group_link li:nth-last-child(2) a span::after,
	.products #contents ul.group_link li:nth-last-child(1) a span::after {
		display: none;
	}
}
*/


/*===============================================================

		.products #contents .product_detail layout

===============================================================*/

.products #contents .product_detail {
	padding: 0 0 90px;
}

.products #contents .product_detail h3 {
	height: 245px;
	margin: 0 0 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 50px;
	font-weight: 700;
	letter-spacing: var(--letter);
	/*letter-spacing: 0.2em;*/
}


/*========== dl.feature ==========*/

.products #contents .product_detail .inner dl.feature {
	margin: 0 0 80px;
}

.products #contents .product_detail .inner dl.feature dt {
	margin: 0 0 40px;
	position: relative;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.2em;
}

.products #contents .product_detail .inner dl.feature dt::after {
	content: "";
	width: 30px;
	height: 3px;
	background-color: var(--color_orange);
	position: absolute;
	left: 0;
	bottom: -20px;
}

.products #contents .product_detail .inner dl.feature dd {
	line-height: 2.0;
}

.products #contents .product_detail .inner dl.feature dd ol li {
	padding-left: 1em;
	text-indent: -1em;
}

.products #contents .product_detail .inner dl.feature dd ul li {
	padding-left: 0.5rem;
	text-indent: -0.5rem;
}

.products #contents .product_detail .inner dl.feature dd.tips {
	margin: 20px 0 0;
	padding: 10px 15px;
	background-color: var(--color_gray);
	line-height: 1.8;
}


/*========== .feature_with_img ==========*/

.products #contents .product_detail .inner .feature_with_img {
	margin: 0 0 60px;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.products #contents .product_detail .inner .feature_with_img dl.feature {
	width: 56%;
	margin: 0;
}

.products #contents .product_detail .inner .feature_with_img p.img {
	width: 42vw;
	margin: -10vh 0 0 calc(50% - 50vw);
	overflow-x: hidden;
	text-align: right;
}

.products #contents .product_detail .inner .feature_with_img p.img img {
	width: 100%;
	max-width: 600px;
}


/*========== .two_column ==========*/

.products #contents .product_detail .inner .two_column {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0 4%;
}

.products #contents .product_detail .inner .two_column .item {
	width: 48%;
}


/*========== .spec table ==========*/

.products #contents .product_detail .inner .spec {
	overflow: visible;
}

.products #contents .product_detail .inner .spec table {
	width: 100%;
	table-layout: fixed;
	text-align: center;
	font-weight: 500;
	line-height: 1.5;
	word-wrap: break-word;
	letter-spacing: var(--letter);
}

.products #contents .product_detail .inner .spec table th {
	padding: 10px 0;
	font-weight: 500;
}

.products #contents .product_detail .inner .spec table thead th {
	background-color: var(--color_gray);
	border: solid 1px #fff;
	vertical-align: middle;
}

.products #contents .product_detail .inner .spec table tbody th {
	border: solid 1px #b2b2b2;
	vertical-align: middle;
}

.products #contents .product_detail .inner .spec table tbody td {
	padding: 10px 0;
	border: solid 1px #b2b2b2;
	vertical-align: middle;
}


@media screen and (max-width: 999px){
	
	/*========== .feature_with_img ==========*/
	
	.products #contents .product_detail .inner .feature_with_img {
		margin: 0 0 4vh;
		display: block;
	}
	
	.products #contents .product_detail .inner .feature_with_img dl.feature {
		width: auto;
	}
	
	.products #contents .product_detail .inner .feature_with_img p.img {
		width: auto;
		margin: -10vh auto 0;
		text-align: center;
	}
}


@media screen and (max-width: 768px){
	.products #contents .product_detail {
		padding: 0 0 8vh;
	}
	
	.products #contents .product_detail h3 {
		height: 20vh;
		margin: 0 0 4vh;
		padding: 0 5vw;
		font-size: 6vw;
		letter-spacing: var(--letter);
	}
	
	
	/*========== dl.feature ==========*/
	
	.products #contents .product_detail .inner dl.feature {
		margin: 0 0 6vh;
	}
	
	.products #contents .product_detail .inner dl.feature dt {
		margin: 0 0 4vh;
		font-size: 4vw;
		letter-spacing: var(--letter);
	}
	
	.products #contents .product_detail .inner dl.feature dt::after {
		bottom: -2vh;
	}
	
	.products #contents .product_detail .inner dl.feature dd {
		line-height: 1.8;
	}
	
	.products #contents .product_detail .inner dl.feature dd.tips {
		margin: 2vh 0 0;
		padding: 1vh 2vh;
	}
	
	
	/*========== .feature_with_img ==========*/
	
	.products #contents .product_detail .inner .feature_with_img {
		margin: 0 0 4vh;
		display: block;
	}
	
	.products #contents .product_detail .inner .feature_with_img dl.feature {
		width: auto;
	}
	
	.products #contents .product_detail .inner .feature_with_img p.img {
		width: auto;
		margin: -10vh auto 0;
		text-align: center;
	}
	
	.products #contents .product_detail .inner .feature_with_img p.img img {
		width: 100%;
		max-width: inherit;
	}
	
	
	/*========== .two_column ==========*/
	
	.products #contents .product_detail .inner .two_column {
		display: block;
	}
	
	.products #contents .product_detail .inner .two_column .item {
		width: auto;
	}
	
	.products  #contents .product_detail .inner .two_column .item_01 {
		margin: 0 0 4vh;
	}
	
	
	/*========== .spec table ==========*/
	
	.products #contents .product_detail .inner .spec {
		padding-bottom: 2vh;
		overflow-x: scroll;
	}
	
	.products #contents .product_detail .inner .spec table {
		width: 180%;
		font-size: 3.4vw;
	}
	
	.products #contents .product_detail .inner .spec table th {
		padding: 1vh 1vw;
	}
	
	.products #contents .product_detail .inner .spec table td {
		padding: 1vh 1vw;
	}
}






/*====================================================================================

		footer layout

====================================================================================*/

footer {
	padding: 60px 0 25px;
	background-color: var(--color_orange);
	overflow-x: hidden;
	color: #fff;
}

footer .inner {
	width: min(1080px, 90%);
	margin: 0 auto;
	padding: 0 40px;
	box-sizing: content-box;
}

footer .inner .footer_contact {
	padding: 0 0 45px;
	border-bottom: solid 1px rgba(255,255,255,0.4);
	text-align: center;
}

footer .inner .footer_contact p {
	margin: 0 0 20px;
	font-size: 20px;
}

footer .inner .footer_contact ul {
	display: flex;
	justify-content: center;
	gap: 0 30px;
}

footer .inner .footer_contact ul li {
	width: min(320px, 45%);
}

footer .inner .footer_contact ul li a {
	height: 100px;
	background: linear-gradient(to right, #fff 0%,#fff 50%, var(--color_orange) 50%,var(--color_orange) 100%);
	background-size: 202% auto;
	background-position: right center;
	border: solid 1px #fff;
	display: flex;
	flex-flow: column wrap;
	justify-content: center;
	position: relative;
	text-align: left;
	color: #fff;
	line-height: 1.0;
}

footer .inner .footer_contact ul li a:hover {
	background-position: left center;
	color: var(--color_orange);
}

footer .inner .footer_contact ul li.mail a {
	padding: 0 0 0 10px;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
}

footer .inner .footer_contact ul li.mail a::before {
	content: '\f0e0';
	font-family: "Font Awesome 5 Free";
	font-size: 24px;
	font-weight: 400;
	position: absolute;
	left: 40px;
	top: 50%;
	transform: translateY(-50%);
}

footer .inner .footer_contact ul li.mail a::after {
	content: "";
	width: 10px;
	height: 10px;
	border-style: solid;
	border-width: 3px 3px 0 0;
	border-color: #fff #fff transparent transparent;
	box-sizing: border-box;
	position: absolute;
	right: 50px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	transition: all 0.3s;
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
}

footer .inner .footer_contact ul li.mail a:hover::after {
	right: 45px;
	border-color: var(--color_orange) var(--color_orange) transparent transparent;
}

footer .inner .footer_contact ul li.tel a {
	padding: 0 0 0 80px;
	font-size: 12px;
	font-weight: 500;
}

footer .inner .footer_contact ul li.tel a::before {
	content: '\f879';
	font-family: "Font Awesome 5 Free";
	font-size: 20px;
	font-weight: 900;
	position: absolute;
	left: 40px;
	top: 50%;
	transform: translateY(-50%);
}

footer .inner .footer_contact ul li.tel a span {
	margin: 5px 0 0;
	display: block;
	font-size: 26px;
	font-weight: 400;
}


footer .inner .footer_contents {
	margin: 30px 0 0;
	display: flex;
	justify-content: space-between;
}

footer .inner .footer_contents .footer_address {
	width: min(300px, 26.786%);
	padding: 0 10px 0 0;
	border-right: solid 1px rgba(255,255,255,0.4);
	flex-shrink: 0;
}

footer .inner .footer_contents .footer_address p.copy {
	margin: 0 0 10px;
	color: rgba(255,255,255,0.6);
	font-size: 12px;
}

footer .inner .footer_contents .footer_address p.footer_logo {
	margin: 0 0 10px;
}

footer .inner .footer_contents .footer_address p.footer_logo a {
	color: #fff;
}

footer .inner .footer_contents .footer_address p.footer_logo a img {
	width: 200px;
}

footer .inner .footer_contents .footer_address p.footer_logo a span {
	margin: 5px 0 0;
	display: block;
	font-size: 10px;
	font-weight: 700;
}

footer .inner .footer_contents .footer_address p.address {
	margin: 0 0 20px;
	font-size: 12px;
}

footer .inner .footer_contents .footer_address p.privacy a {
	color: rgba(255,255,255,0.6);
	font-size: 12px;
}

footer .inner .footer_contents .footer_address p.privacy a:hover {
	color: #fff;
	text-decoration: underline;
}


footer .inner .footer_contents ul.footer_nav {
	width: 100%;
	border-right: solid 1px rgba(255,255,255,0.4);
	display: flex;
	justify-content: space-around;
	align-items: center;
}

footer .inner .footer_contents ul.footer_nav a {
	color: #fff;
	font-size: 14px;
}

footer .inner .footer_contents ul.footer_nav a:hover {
	text-decoration: underline;
}


footer .inner .footer_contents p.banner {
	width: min(240px, 21.429%);
	padding: 0 0 0 10px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-shrink: 0;
}

footer .inner .footer_contents p.banner a img {
	width: 171px;
	transition: all 0.3s;
}

footer .inner .footer_contents p.banner a:hover img {
	filter: brightness(110%);
}


@media screen and (max-width: 768px){
	footer {
		padding: 6vh 0;
	}
	
	footer .inner {
		width: auto;
		padding: 0 5vw;
		box-sizing: border-box;
	}
	
	footer .inner .footer_contact {
		padding: 0 0 5vh;
	}
	
	footer .inner .footer_contact p {
		margin: 0 0 3vh;
		font-size: 3.6vw;
	}
	
	footer .inner .footer_contact ul {
		flex-flow: row wrap;
		gap: 3vh 0;
	}
	
	footer .inner .footer_contact ul li {
		width: 100%;
	}
	
	footer .inner .footer_contact ul li a {
		height: 20vw;
		background: var(--colorworange);
	}
	
	footer .inner .footer_contact ul li a:hover {
		color: #fff;
	}
	
	footer .inner .footer_contact ul li.mail a {
		padding: 0 0 0 35%;
		text-align: left;
		font-size: 4.5vw;
	}
	
	footer .inner .footer_contact ul li.mail a::before {
		font-size: 6vw;
		left: 20%;
	}
	
	footer .inner .footer_contact ul li.mail a::after {
		right: 10%;
	}
	
	footer .inner .footer_contact ul li.mail a:hover::after {
		right: 10%;
		border-color: #fff #fff transparent transparent;
	}
	
	footer .inner .footer_contact ul li.tel a {
		padding: 0 0 0 35%;
		font-size: 3.2vw;
		font-weight: 500;
	}
	
	footer .inner .footer_contact ul li.tel a::before {
		font-size: 4.5vw;
		left: 20%;
	}
	
	footer .inner .footer_contact ul li.tel a span {
		font-size: 6vw;
		font-weight: 700;
	}
	
	
	footer .inner .footer_contents {
		margin: 3vh 0 0;
		flex-flow: row wrap;
	}
	
	footer .inner .footer_contents .footer_address {
		width: 100%;
		padding: 3vh 0;
		border-right: none;
		border-bottom: solid 1px rgba(255,255,255,0.4);
		flex-shrink: 0;
	}
	
	footer .inner .footer_contents .footer_address p.copy {
		margin: 0 0 1vh;
		color: rgba(255,255,255,0.6);
		font-size: 3.0vw;
	}
	
	footer .inner .footer_contents .footer_address p.footer_logo {
		margin: 0 0 1vh;
	}
	
	footer .inner .footer_contents .footer_address p.footer_logo a img {
		width: 30%;
	}
	
	footer .inner .footer_contents .footer_address p.footer_logo a span {
		font-size: 3.0vw;
	}
	
	footer .inner .footer_contents .footer_address p.address {
		margin: 0 0 2vh;
		font-size: 3.2vw;
	}
	
	footer .inner .footer_contents .footer_address p.privacy a {
		font-size: 3.2vw;
	}
	
	
	footer .inner .footer_contents ul.footer_nav {
		width: 100%;
		padding: 3vh 0;
		border-right: none;
		border-bottom: solid 1px rgba(255,255,255,0.4);
	}
	
	footer .inner .footer_contents ul.footer_nav a {
		font-size: 3.4vw;
	}
	
	
	footer .inner .footer_contents p.banner {
		width: 100%;
		padding: 6vh 0 0;
		justify-content: flex-start;
	}
	
	footer .inner .footer_contents p.banner a img {
		width: 40%;
	}
	
	footer .inner .footer_contents p.banner a:hover img {
		filter: brightness(100%);
	}
}


/*** ------------------------------------------------------------------------------ 

modal_window

-----------------------------------------------------------------------------  ***/
#lean_overlay{
	position: fixed;
	z-index:1000; 
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	background: #000;
	display: none;
}
.modal_cont{
	position: absolute;
	left: -100%;
	background: none repeat scroll 0 0 #FFFFFF;
	padding: 0;
	width: 880px;
	z-index: 1001;
	box-sizing: border-box;
	top: 10% !important;
/*	overflow: hidden;*/
}
.modal_cont .text strong{
	display: block;
	font-size: 2.0rem;
	margin: 15px 0 0;
}
.modal_close{ 
	position: absolute;
	top: -30px;
	right: -30px;
	display: block; 
	width: 60px;
	height: 60px; 
	z-index: 2;
	background: #fff;
	border-radius: 50%;
	cursor: pointer;
}

.modal_close::before,
.modal_close::after { /* 共通設定 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px; /* 棒の幅（太さ） */
  height: 30px; /* 棒の高さ */
  background: #555;
}
.modal_close::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
 
.modal_close::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}


@media (max-width:768px){
	.modal_cont{
		width: calc(100% - 50px);
		margin: 0 auto;
		padding: 0;
		top: 80px !important;
	}
	.modal_close{ 
		position: absolute;
		top: -20px;
		right: -20px;
		display: block; 
		width: 40px;
		height: 40px; 
		z-index: 2;
		background: #fff;
		border-radius: 50%;
	}
	.modal_close::before,
	.modal_close::after { /* 共通設定 */
	  content: "";
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  width: 3px; /* 棒の幅（太さ） */
	  height: 20px; /* 棒の高さ */
	  background: #555;
	}
	.modal_cont .text strong{
		font-size: 1.8rem;
		margin: 10px 0 0;
	}
}