@charset "utf-8";

/*--------------------------------------------
	 BASE
--------------------------------------------*/

@media print {
	#hbgNavi {
		display: none;
	}
}

@media screen and (min-width : 768px) {
	.over:hover {
		opacity: 0.7;
	}
}

.ios .over:hover,
.ios .over:active,
.ios .over:link,
.ios .over:visited,
.ios .over::focus {
	opacity: 1;
}

.cf:after {
	content: "";
	clear: both;
	display: block;
	height: 0;
}

:root .cf::after {
	/* IE9 */
	content: "" \9;
	clear: both\9;
	display: block\9;
	height: 0\9;
}

.noEvent {
	pointer-events: none;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	font-size: 62.5%;
}

body {
	width: 100%;
	color: #333333;
	font-size: 1.6rem;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.875;
	letter-spacing: 0.05em;
}

a {
	text-decoration: none;
	color: #333333;
	transition: 0.4s ease-in-out;
}

table {
	width: 100%;
}

/*--------------------------------------------
	共通パーツ
--------------------------------------------*/
/*レイアウト*/
.inner_main {
	max-width: 1200px;
	margin: 0 auto;
}

.container {
	padding: 10rem 6rem;
	position: relative;
	overflow: hidden;
}

.container.full {
	margin-right: -3rem;
	margin-left: -3rem;
}

.sec_second {
	padding: 70px 0;
}

.sec_second:last-child {
	padding-bottom: 0;
}

/*flex*/
.flex {
	display: flex;
}

.flex_wrap {
	display: flex;
	flex-wrap: wrap;
}

.flex.between {
	justify-content: space-between;
}

.flex.around {
	justify-content: space-around;
}

.flex.flex_start {
	justify-content: flex-start;
}

.flex.flex_end {
	justify-content: flex-end;
}

.flex.center {
	justify-content: center;
}

.flex.align_center {
	align-items: center;
}

.flex_container {
	display: flex;
	flex-direction: row;
}

.txt_vertical {
	writing-mode: vertical-rl;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
}

.txt_horizontal {
	writing-mode: horizontal-tb;
	-webkit-writing-mode: horizontal-tb;
	-ms-writing-mode: horizontal-tb;
}

.ofi {
	height: 100%;
	object-fit: cover;
	font-family: 'object-fit: cover;'
}

/*セクションの配色*/
.bg_gray {
	background: #efefef;
}

/*カラー*/
.color_blue {
	color: #71afd0;
}

.color_white {
	color: #fff;
}

/*ボタン*/
.btn {
	margin-top: 5rem;
}

.btn a {
	display: block;
	position: relative;
	line-height: 1;
}

.btn_primary {
	max-width: 240px;
	color: #fff;
	border: solid 1px #71afd0;
	padding: 1.6rem 0.5rem;
	background: #71afd0;
	transition: 0.4s ease-in-out;
	display: block;
	line-height: 1;
	text-align: center;
	position: relative;
	z-index: 0;
	text-shadow: none;
}

.btn_primary.center {
	margin: 0 auto;
}

.btn_primary.btn_lg {
	max-width: 280px;
	font-size: 1.8rem;
	padding: 1.9rem 0;
}

.btn_contact span {
	position: relative;
	padding-left: 2.3rem;
}

.btn_contact span:before {
	content: '';
	background: url(../Image/common/icon_mail.png) no-repeat center /contain;
	width: 17px;
	height: 12px;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -6px;
	transition: 0.4s ease-in-out;
}

.txt_link {
	text-decoration: underline;
}

/*hover*/

@media print,
screen and (min-width : 992px) {
	.btn_primary:hover {
		color: #71afd0;
		background: #fff;
	}

	.btn_contact:hover span:before {
		background-image: url(../Image/common/icon_mail_blue.png);
	}
}

/*タイトル*/
.ttl_01 {
	font-size: 3.2rem;
	font-weight: 500;
	line-height: 1;
}

.ttl_02 {}

.ttl_02:before {}

.ttl_03 {}

.ttl_en {
	font-family: 'Arimo', sans-serif;
	letter-spacing: 0.025em;
	font-weight: 700;
	font-size: 1.8rem;
	color: #71afd0;
	line-height: 1;
}

/*--------------------------------------------
	HEADER
--------------------------------------------*/
header {
	padding: 0 6rem;
}

header .header_inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .h_logo {}

header .h_logo a {}

header .h_right {
	display: flex;
	align-items: center;
}

header .h_navi {}

header .h_navi ul {
	display: flex;
	margin-right: 4.2rem;
}

header .h_navi ul li {
	margin-right: 4.2rem;
}

header .h_navi ul li:last-child {
	margin-right: 0;
}

header .h_navi ul li .nav_item {
	display: block;
	position: relative;
	padding: 4rem 0;
}

header .h_navi ul li .nav_item:after {
	content: '';
	height: 0;
	background: #71afd0;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: 0.3s ease-in-out;
}

header .h_contact {
	display: flex;
	justify-content: flex-end;
}

header .h_contact .tel {
	line-height: 1;
	margin-right: 2.4rem;
}

header .h_contact .tel .tel_link {
	display: block;
	pointer-events: none;
}

header .h_contact .tel .tel_txt {
	margin-top: 1rem;
	font-size: 1.3rem;
}

header .h_contact .btn_primary {
	width: 180px;
}

@media screen and (min-width: 992px) {
	header .h_navi ul li .nav_item:hover {
		color: #71afd0;
	}

	header .h_navi ul li .nav_item:hover:after {
		height: 6px;
	}
}

/*--------------------------------------------
	Contact
--------------------------------------------*/
.sec_contact {
	position: relative;
	padding-bottom: 28.9rem;
}

.sec_contact:before {
	content: '';
	position: absolute;
	width: 58.5%;
	height: 580px;
	background: #f7f7f7;
	left: 0;
	top: 0;
	z-index: -1;
}

.sec_contact .img_bg {
	position: absolute;
	right: 0;
	bottom: 8rem;
	width: 51.5%;
	height: 580px;
}

.sec_contact .img_bg:before,
.sec_contact .img_bg:after {
	background: #f7f7f7 !important;
}

.sec_contact .ttl {
	font-size: 6rem;
	margin-bottom: 1.3rem;
}

.sec_contact .contact_box {
	margin-top: 5.3rem;
	width: 40%;
}

.sec_contact .contact_box .txt {
	font-size: 1.8rem;
	line-height: 1;
	margin-bottom: 2rem;
}

.sec_contact .contact_box .tel {
	padding-bottom: 3rem;
	border-bottom: solid 1px #cdcdcd;
}

.sec_contact .contact_box .tel .tel_num a {
	display: inline-block;
	pointer-events: none;
}

.sec_contact .contact_box .tel .tel_num span {
	font-size: 1.3rem;
	vertical-align: bottom;
}

.sec_contact .contact_box .contact {
	margin-top: 3rem;
}

.sec_contact .contact_box .contact .btn {
	margin-top: 2rem;
}

/*--------------------------------------------
	FOOTER
--------------------------------------------*/
footer {
	background: #52534e;
	padding: 0 6rem;
	color: #fff;
}

footer .footer_inner {
	padding: 6rem 0;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

footer .f_left .address {
	line-height: 1;
	font-size: 1.3rem;
	margin-top: 2rem;
}

footer .f_right .f_nav ul {
	display: flex;
	justify-content: flex-end;
}

footer .f_right .f_nav li:not(:first-child) {
	margin-left: 2rem;
	padding-left: 2rem;
	position: relative;
}

footer .f_right .f_nav li:not(:first-child):before {
	content: '';
	width: 1px;
	height: 11px;
	background: #fff;
	position: absolute;
	left: 0;
	top: 1.5px;
}

footer .f_right .f_nav .f_nav_item {
	font-size: 1.3rem;
	position: relative;
	line-height: 1;
	color: #fff;
	display: block;
}

footer .f_right .f_nav .f_nav_item:after {
	content: '';
	height: 1px;
	width: 100%;
	background: #288f28;
	position: absolute;
	left: 0;
	bottom: 0;
	transform: scale(0);
	transition: 0.3s ease-in-out;
}

footer .copy {
	font-size: 1.3rem;
	line-height: 1;
	margin-top: 2rem;
}

@media screen and (min-width : 920px) {
	footer .f_top .f_nav .f_nav_item:hover {
		color: #288f28;
	}

	footer .f_top .f_nav .f_nav_item:hover:after {
		transform: scale(1);
	}
}

.totop {
	width: 4rem;
	height: 4rem;
	position: fixed;
	right: 3rem;
	bottom: 3rem;
	opacity: 0;
	transition: 0.4s ease-out;
}

.totop.visible {
	opacity: 1;
}

.totop a {
	display: block;
	width: 100%;
	height: 100%;
	background: url(../Image/common/icon_top.png) no-repeat center / 8px;
	background-color: #71afd0;
	border: solid 1px #71afd0;
}

@media screen and (min-width : 920px) {
	.totop a:hover {
		background-color: #fff;
		background-image: url(../Image/common/icon_top_blue.png);
	}
}

/*       ANIMATION
----------------------------*/
@media screen and (min-width : 768px) {
	.animation {
		position: relative;
	}

	.animation,
	.animation:before,
	.animation:after {
		transition: all 5s cubic-bezier(0.19, 1, 0.22, 1);
	}

	.animation.up {
		transform: translateY(50px);
		opacity: 0;
	}

	.animation.left {
		transform: translateX(-20px);
		opacity: 0;
	}

	.animation.right {
		transform: translateX(20px);
		opacity: 0;
	}

	/*box*/
	.animation.boxLeft:before,
	.animation.boxLeft:after,
	.animation.boxRight:before,
	.animation.boxRight:after {
		opacity: 0;
		transform: scaleX(0);
	}

	.animation.boxLeft:before,
	.animation.boxLeft:after {
		transform-origin: top left;
	}

	.animation.boxRight:before,
	.animation.boxRight:after {
		transform-origin: top right;
	}

	.animation.boxLeft.is-active:before,
	.animation.boxLeft.is-active:after,
	.animation.boxRight.is-active:before,
	.animation.boxRight.is-active:after {
		opacity: 1;
		transform: scaleX(1);
	}

	.animation.boxTop:before,
	.animation.boxTop:after,
	.animation.boxBottom:before,
	.animation.boxBottom:after {
		opacity: 0;
		transform: scaleY(0);
	}

	.animation.boxTop:before,
	.animation.boxTop:after {
		transform-origin: top left;
	}

	.animation.boxBottom:before,
	.animation.boxBottom:after {
		transform-origin: bottom right;
	}

	.animation.boxTop.is-active:before,
	.animation.boxTop.is-active:after,
	.animation.boxBottom.is-active:before,
	.animation.boxBottom.is-active:after {
		opacity: 1;
		transform: scaleY(1);
	}

	/*slide*/
	.animation.slideLeft:before,
	.animation.slideLeft:after {
		content: '';
		opacity: 1;
		width: 100%;
		height: 100%;
		background: #fff;
		position: absolute;
		top: 0;
		right: 0;
		transform: scaleX(1);
		transform-origin: top right;
	}

	.animation.slideright:before,
	.animation.slideright:after {
		content: '';
		opacity: 1;
		width: 100%;
		height: 100%;
		background: #fff;
		position: absolute;
		top: 0;
		left: 0;
		transform: scaleX(1);
		transform-origin: top left;
	}

	.animation.slideLeft.is-active:before,
	.animation.slideLeft.is-active:after,
	.animation.slideright.is-active:before,
	.animation.slideright.is-active:after {
		transform: scaleX(0);
	}

	.animation.slideLeft:before,
	.animation.slideLeft:after {
		content: '';
		opacity: 1;
		width: 100%;
		height: 100%;
		background: #fff;
		position: absolute;
		top: 0;
		right: 0;
		transform: scaleX(1);
		transform-origin: top right;
	}

	.animation.slideright:before,
	.animation.slideright:after {
		content: '';
		opacity: 1;
		width: 100%;
		height: 100%;
		background: #fff;
		position: absolute;
		top: 0;
		left: 0;
		transform: scaleX(1);
		transform-origin: top left;
	}

	.animation.slideLeft.is-active:before,
	.animation.slideLeft.is-active:after,
	.animation.slideright.is-active:before,
	.animation.slideright.is-active:after {
		transform: scaleX(0);
	}

	.animation.is-active.scale {
		transform: scale(1);
	}

	.animation.is-active {
		opacity: 1;
	}

	.animation.is-active.up {
		transform: translateY(0);
	}

	.animation.is-active.left {
		transform: translateX(0);
	}

	.animation.is-active.right {
		transform: translateX(0);
	}

	.animation.is-active.slideLeft {
		transform: translateX(0);
	}

	*[data-delay="0"],
	*[data-delay="0"]:before,
	*[data-delay="0"]:after {
		transition-delay: 0s;
	}

	*[data-delay="100"],
	*[data-delay="100"]:before,
	*[data-delay="100"]:after {
		transition-delay: .1s;
	}

	*[data-delay="200"],
	*[data-delay="200"]:before,
	*[data-delay="200"]:after {
		transition-delay: .2s;
	}

	*[data-delay="300"],
	*[data-delay="300"]:before,
	*[data-delay="300"]:after {
		transition-delay: .3s;
	}

	*[data-delay="400"],
	*[data-delay="400"]:before,
	*[data-delay="400"]:after {
		transition-delay: .4s;
	}

	*[data-delay="500"],
	*[data-delay="500"]:before,
	*[data-delay="500"]:after {
		transition-delay: .5s;
	}

	*[data-delay="600"],
	*[data-delay="600"]:before,
	*[data-delay="600"]:after {
		transition-delay: .6s;
	}

	*[data-delay="700"],
	*[data-delay="700"]:before,
	*[data-delay="700"]:after {
		transition-delay: .7s;
	}

	*[data-delay="800"],
	*[data-delay="800"]:before,
	*[data-delay="800"]:after {
		transition-delay: .8s;
	}

	*[data-delay="900"],
	*[data-delay="900"]:before,
	*[data-delay="900"]:after {
		transition-delay: .9s;
	}

	*[data-delay="1000"],
	*[data-delay="1000"]:before,
	*[data-delay="1000"]:after {
		transition-delay: 1s;
	}
}

/*----------------------------------------------------

 (max-width : 1339px) 1339px以下～

*----------------------------------------------------*/
@media screen and (max-width : 1339px) {
	header .h_logo {}

	header .h_navi ul {
		margin-right: 2.5rem;
	}

	header .h_navi ul li {
		margin-right: 2.5rem;
	}

	header .h_navi ul li .nav_item {
		font-size: 1.5rem;
	}

	.sec_contact .contact_box {
		width: 45%;
	}
}

/*----------------------------------------------------

 (max-width : 1259px)

*----------------------------------------------------*/
@media screen and (max-width : 1259px) {
	header .h_navi ul li .nav_item {
		font-size: 1.4rem;
	}

	header .h_contact .tel img {
		max-width: 150px;
	}

	header .h_contact .btn_primary {
		font-size: 1.4rem;
		max-width: 140px;
	}

	header .h_logo img {
		max-width: 180px;
	}
}

/*----------------------------------------------------

 (max-width : 1199px)

*----------------------------------------------------*/
@media screen and (max-width : 1199px) {}

@media (min-width : 992px) and (max-width : 1119px) {
	header .h_logo img {
		max-width: 130px;
	}

	header .h_contact .tel {
		margin-right: 1.5rem;
	}

	header .h_contact .btn_primary {
		max-width: 130px;
	}

	header .h_navi ul {
		margin-right: 1.8rem;
	}

	header .h_navi ul li {
		margin-right: 1.8rem;
	}
}

/*----------------------------------------------------

(min-width : 992px) and (max-width : 1199px)

*----------------------------------------------------*/
@media (min-width : 992px) and (max-width : 1199px) {}


/*----------------------------------------------------

とりいそぎ、製品PDFを開かないように
古くて内容が違うらしい

*----------------------------------------------------*/

/* #contents .product_list a {
	pointer-events: none;
} */