@charset "UTF-8";

/*========================================================================

  common

========================================================================*/

/*  inner
========================================================================*/

[class^="p_products-"] .inner {
	position: relative;
	width: 100%;
	max-width: 1240px;
	margin: auto;
}
.pbPage:not(.edit) [class^="p_products-"].u_animation .inner {
	opacity: 0;
}
.pbPage:not(.edit) [class^="p_products-"].u_animation.animation .inner {
	animation: fade-in .8s ease-in-out 0s forwards;
}
@keyframes fade-in {
	0% {opacity: 0; transform: translateY(100px);}
	100% {opacity: 1; transform: translateY(0);}
}
@media screen and (max-width: 767px) {
	[class^="p_products-"] .inner {
		width: calc(100% - 40px);
	}
}

/*  arrow
========================================================================*/

.p_products-arrow {
	position: relative;
	width: 50px;
	height: 50px;
	background: #02007c;
	border-radius: 50%;
}
.p_products-arrow:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	z-index: 1;
	right: 21px;
	width: 4px;
	height: 4px;
	background: #fff;
	border: 2px solid #02007c;
	border-radius: 50%;
	transition: .3s all;
	pointer-events: none;
}
.p_products-arrow span:before,
.p_products-arrow span:after {
	opacity: 0;
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 18px;
	pointer-events: none;
	z-index: 2;
}
.p_products-arrow span:before {
	width: 13px;
	height: 2px;
	background: #02007c;
}
.p_products-arrow span:after {
	width: 6px;
	height: 6px;
	border-top: 2px solid #02007c;
	border-right: 2px solid #02007c;
	transform: rotate(45deg);
}
@media (min-width: 768px) {
	a:hover .p_products-arrow:after {
		right: -10px;
		width: 66px;
		height: 66px;
		border-color: #02007c;
	}
	a:hover .p_products-arrow span:before,
	a:hover .p_products-arrow span:after {
		opacity: 1;
	}
}

@media screen and (max-width: 767px) {
	.p_products-arrow {
		width: 34px;
		height: 34px;
		background: #fff;
		border: 2px solid #02007c;
	}
	.p_products-arrow:after {
		display: none;
	}
	.p_products-arrow span:before,
	.p_products-arrow span:after {
		opacity: 1;
		right: 9px;
	}
}

/*========================================================================

  mainVisual

========================================================================*/

.p_products-mainVisual {
	position: relative;
	display: flex;
	height: 480px;
}
.p_products-mainVisual .back {
	position: absolute;
	width: 100%;
	height: 100%;
}
.p_products-mainVisual .back img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.p_products-mainVisual .textbox {
	position: relative;
	width: calc(100% - 100px);
	max-width: 1240px;
	margin: auto;
	color: #fff;
	line-height: 1.1;
	font-weight: 700;
}
.pbPage:not(.edit) .p_products-mainVisual.u_animation .textbox {
	opacity: 0;
}
.pbPage:not(.edit) .p_products-mainVisual.u_animation.animation .textbox {
	animation: fade-in .8s ease-in-out 0s forwards;
}
.p_products-mainVisual .title {
	width: 100%;
	font-size: 80px;
	font-family: 'Overpass', sans-serif;
	font-weight: 600;
	vertical-align: middle;
}
.p_products-mainVisual .title span {
	position: relative;
	padding-right: 60px;
}
.p_products-mainVisual .title span:after {
	content: '/';
	position: absolute;
	top: 0;
	right: 15px;
	font-size: 60px;
	font-weight: normal;
	font-family: 'Noto Sans JP', sans-serif;
}
.p_products-mainVisual .subtitle {
	font-size: 26px;
	font-weight: 500;
}

@media screen and (max-width: 767px) {
	.p_products-mainVisual {
		height: 200px;
	}
	.p_products-mainVisual .textbox {
		width: calc(100% - 40px);
	}
	.p_products-mainVisual .title {
		font-size: 34px;
	}
	.p_products-mainVisual .title span {
		padding-right: 30px;
	}
	.p_products-mainVisual .title span:after {
		right: 10px;
		font-size: 28px;
	}
	.p_products-mainVisual .subtitle {
		font-size: 20px;
	}
}

/*========================================================================

  keyVisual

========================================================================*/

.p_products-keyVisual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 500px;
	margin-top: 100px;
}
.p_products-keyVisual .back {
	position: absolute;
	width: 100%;
	height: 100%;
}
.p_products-keyVisual .back img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.p_products-keyVisual .textbox {
	position: relative;
	width: calc(100% - 100px);
	max-width: 1240px;
	padding: 50px 0;
	font-weight: 500;
	text-align: center;
}
.pbPage:not(.edit) .p_products-keyVisual.u_animation .textbox {
	opacity: 0;
}
.pbPage:not(.edit) .p_products-keyVisual.u_animation.animation .textbox {
	animation: fade-in .8s ease-in-out 0s forwards;
}
.p_products-keyVisual .title {
	font-size: 32px;
}
.p_products-keyVisual .text {
	margin-top: 55px;
	font-size: 18px;
}

@media screen and (max-width: 767px) {
	.p_products-keyVisual {
		min-height: 664px;
		margin-top: 60px;
	}
	.p_products-keyVisual .textbox {
		width: calc(100% - 40px);
	}
	.p_products-keyVisual .title {
		font-size: 22px;
		line-height: 1.6;
	}
	.p_products-keyVisual .text {
		margin-top: 20px;
		font-size: 16px;
	}
}

/*========================================================================

  service

========================================================================*/

.p_products-service {
	margin-top: 95px;
}
.p_products-service .inner {
	width: 100%;
	max-width: 1400px;
}
.p_products-service .heading {
	font-size: 32px;
	font-weight: 500;
	text-align: center;
}
.p_products-service .column {
	margin-top: 35px;
}
.p_products-service .column {
	display: flex;
	flex-wrap: wrap;
}
.p_products-service .column .box {
	width: 50%;
}
.p_products-service .column a {
	position: relative;
	display: block;
	height: 100%;
	text-decoration: none;
}
.p_products-service .column .image {
	overflow: hidden;
}
.p_products-service .column .image img {
	width: 100%;
}
@media (min-width: 768px) {
	.p_products-service a:hover .image img {
		transform: scale(1.1);
	}
}
.p_products-service .column .textbox {
    position: relative;
    padding: 15px 100px 75px 15px;
}
.p_products-service .column .title {
	font-size: 50px;
	font-family: 'Overpass','Noto Sans JP', sans-serif;
	font-weight: 600;
	line-height: 1.1;
}
.p_products-service .column .title span {
	display: block;
	font-size: 18px;
	font-weight: 500;
}
.p_products-service .column .text {
	margin-top: 15px;
}
.p_products-service .p_products-arrow {
	position: absolute;
	top: 30px;
	right: 40px;
}

@media screen and (max-width: 767px) {
	.p_products-service {
		margin-top: 60px;
	}
	.p_products-service .heading {
		font-size: 22px;
	}
	.p_products-service .column {
		margin-top: 25px;
	}
	.p_products-service .column .box {
		width: 100%;
	}
	.p_products-service .column .textbox {
	    padding: 20px 20px 35px 20px;
	}
	.p_products-service .column .title {
		font-size: 32px;
	}
	.p_products-service .column .title span {
		margin-top: 3px;
		font-size: 14px;
	}
	.p_products-service .column .text {
		margin-top: 10px;
	}
	.p_products-service .p_products-arrow {
		top: 20px;
		right: 20px;
	}
}

/*========================================================================

  development

========================================================================*/

.p_products-development {
	margin-top: 100px;
}
.p_products-development .column a {
	display: block;
	text-decoration: none;
}
.p_products-development .column .imagebox {
	position: absolute;
	width: 700px;
	right: 542px;
	bottom: 60px;
}
.p_products-development .column .textbox {
	width: 700px;
	margin-left: auto;
	padding: 63px 60px 60px 215px;
	background: #E4EAEF;
}
.p_products-development .column .title {
	font-size: 50px;
	font-family: Overpass, sans-serif;
	font-weight: 600;
	vertical-align: middle;
	line-height: 1.1;
}
.p_products-development .column .subtitle {
	font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
}
.p_products-development .column .text {
	 margin-top: 20px;
}
.p_products-development .column .p_products-arrow {
	margin-top: 25px;
}

@media screen and (max-width: 767px) {
	.p_products-development {
		margin-top: 45px;
	}
	.p_products-development .inner {
		width: 100%;
	}
	.p_products-development .column .imagebox {
		position: relative;
		width: calc(100% - 40px);
		left: 20px;
		bottom: auto;
		z-index: 1;
	}
	.p_products-development .column .textbox {
		position: relative;
		width: 100%;
		margin-top: -60px;
		margin-top: -40px;
		padding: 55px 20px 40px;
	}
	.p_products-development .column .title {
		font-size: 32px;
	}
	.p_products-development .column .subtitle {
		font-size: 14px;
	}
	.p_products-development .column .text {
		 margin-top: 15px;
	}
	.p_products-development .column .p_products-arrow {
		margin-top: 0;
		position: absolute;
		right: 20px;
		top: 50px;
	}
}

/*========================================================================

  customer

========================================================================*/

.p_products-customer {
	margin-top: 140px;
}
.p_products-customer .column {
	position: relative;
	display: flex;
	height: 280px;
}
.p_products-customer .column a {
	display: block;
	width: 100%;
}
.p_products-customer .column .image {
	overflow: hidden;
	position: absolute;
	width: 100%;
	height: 100%;
}
.p_products-customer .column .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (min-width: 768px) {
	.p_products-customer a:hover .image img {
		transform: scale(1.1);
	}
}
.p_products-customer .textbox {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	margin: auto;
	padding: 0 75px;
	color: #fff;
	line-height: 1.1;
	text-align: center;
}
.p_products-customer .title {
	width: 100%;
	font-size: 50px;
	font-family: 'Overpass', sans-serif;
	font-weight: 600;
}
.p_products-customer .subtitle {
	margin-top: 5px;
	font-size: 18px;
	font-weight: 500;
}
.p_products-customer .p_products-arrow {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 0;
}

@media screen and (max-width: 767px) {
	.p_products-customer {
		margin-top: 75px;
	}
	.p_products-customer .inner {
		width: 100%;
	}
	.p_products-customer .column {
		height: 202px;
	}
	.p_products-customer .textbox {
		width: 100%;
	}
	.p_products-customer .title {
		font-size: 32px;
	}
	.p_products-customer .subtitle {
		font-size: 14px;
	}
	.p_products-customer .p_products-arrow {
		right: 20px;
	}
}

/*========================================================================

  catalog

========================================================================*/

.p_top-catalog.products {
	margin-top: 140px;
	border-top: 1px solid #DEDEDE;
}
.p_top-catalog.products .title {
	font-size: 32px;
}

@media screen and (max-width: 767px) {
	.p_top-catalog.products {
		margin-top: 80px;
		border-top: none;
	}
	.p_top-catalog.products .column .box {
		flex-flow: row wrap;
		border-top: 1px solid #DEDEDE;
	}
	.p_top-catalog.products .c_link-arrow {
		width: 100%;
	}
	.p_top-catalog.products .c_link-arrow:after,
	.p_top-catalog.products .c_link-arrow a:before,
	.p_top-catalog.products .c_link-arrow a:after {
		display: none;
	}
	.p_top-catalog.products .c_link-arrow img {
		width: 50%;
	}
	.p_top-catalog.products .textbox {
		position: absolute;
		left: 50%;
		width: 50%;
		padding: 20px;
	}
	.p_top-catalog.products .title {
		font-size: 28px;
	}
	.p_top-catalog.products .subtitle {
		font-size: 14px;
	}
	.p_top-catalog.products .p_products-arrow {
		margin-top: 15px;
	}
}

/*========================================================================

  tel

========================================================================*/

.p_products-tel {
	padding: 25px 0 20px;
	font-family: 'Overpass','Noto Sans JP', sans-serif;
	border-top: 1px solid #DEDEDE;
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.1;
}
.p_products-tel span {
	margin-left: 20px;
	font-size: 32px;
	color: #02007C;
	vertical-align: middle;
	font-weight: 600;
}
.p_products-tel span a {
	vertical-align: middle;
	text-decoration: none;
}

@media screen and (max-width: 767px) {
	.p_products-tel {
		padding: 35px 0 80px;
		font-size: 16px;
	}
	.p_products-tel span {
		display: block;
		margin: 10px 0 0;
	}
	.p_products-tel a {
		text-decoration: none!important;
	}
}

/*========================================================================

  detail

========================================================================*/

/*  mainVisual
========================================================================*/

.p_products-mainVisual.detail {
	height: 340px;
}
.p_products-mainVisual.detail .textbox {
	text-align: center;
}
.p_products-mainVisual.detail .title {
	font-size: 61px;
}
.p_products-mainVisual.detail .subtitle {
	margin-top: 5px;
	font-size: 18px;
}

@media screen and (max-width: 767px) {
	.p_products-mainVisual.detail {
		display: block;
		height: auto;
	}
	.p_products-mainVisual.detail .back {
		position: relative;
	}
	.p_products-mainVisual.detail .textbox {
		width: 100%;
		text-align: left;
		background: #E4EAEF;
		animation: none!important;
		opacity: 1!important;
	}
	.p_products-mainVisual.detail .textbox .title {
		position: relative;
		display: table-cell;
		top: -25px;
		left: -10px;
		padding: 10px 15px 3px 30px;
		font-size: 42px;
		background: #02007C;
		transform: skew(-20deg);
	}
	.p_products-mainVisual.detail .textbox .title * {
		transform: skew(20deg);
	}
	.p_products-mainVisual.detail .textbox .subtitle {
		margin-top: -5px;
		padding: 0 20px 20px;
		font-size: 16px;
		color: #121212;
	}
}

/*  main
========================================================================*/

.p_products-engine {
	position: relative;
	margin-top: 50px;
}
.p_products-engine img {
	width: 100%;
}
.p_products-engine .more {
	position: absolute;
	width: 8%;
	padding-top: 8%;
	cursor: pointer;
}
.p_products-engine .more:before,
.p_products-engine .more:after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.p_products-engine .more:before {
	content: '';
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 50%;
	transition: all .3s;
}
@media (min-width: 768px) {
	.p_products-engine .more:hover:before {
		transform: scale(1.2);
	}
}
.p_products-engine .more:after {
	content: 'More';
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 5px;
	color: #02007C;
	font-size: 18px;
	font-weight: 600;
	font-family: 'Overpass', sans-serif;
}
.p_products-engine .more.more01 {
	top: 26%;
	left: 56.4%;
}
.p_products-engine .more.more02 {
	top: 66%;
	left: 79%;
}
.p_products-engine .more.more-land01 {
	top: 36.5%;
	left: 73%;
}
.p_products-engine .more.more-land02 {
	top: 48%;
	left: 14.1%;
}
.p_products-more {
	position: relative;
	width: calc(100% - 20px);
	max-width: 1000px;
	margin: 60px auto;
}
.mfp-bg {
	opacity: .8!important;
	z-index: 10001!important;
}
.mfp-wrap {
	z-index: 10001!important;
}
.p_products-more .mfp-close {
	opacity: 1;
	top: -60px;
	width: 60px;
	height: 60px;
	color: rgba(0,0,0,0)!important;
}
.p_products-more .mfp-close:before,
.p_products-more .mfp-close:after {
	content: '';
	position: absolute;
	top: 30px;
	right: -5px;
	width: 60px;
	height: 2px;
	background: #fff;
}
.p_products-more .mfp-close:before {
	transform: rotate(40deg);
}
.p_products-more .mfp-close:after {
	transform: rotate(-40deg);
}
.p_products-more .box {
	display: flex;
	gap: 15px 40px;
	padding: 80px;
	background: #fff;
	font-family: 'Noto Sans JP','Noto Sans SC', sans-serif;
}
.p_products-more .image {
	width: 380px;
}
.p_products-more .textbox {
	flex: 1;
}
.p_products-more .title {
	font-size: 28px;
}
.p_products-more .text {
	margin-top: 20px;
	line-height: 1.8;
}
.p_products-more .link {
	margin-top: 30px;
}
.p_products-more .link a {
	position: relative;
	display: inline-block;
	width: 200px;
	max-width: 100%;
	padding: 15px 30px;
	background: #005EB8;
	color: #fff;
	text-align: center;
	text-decoration: none;
	border-radius: 25px;
	font-size: 14px;
}
.p_products-more .link a:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto;
	width: 5px;
	height: 5px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
	transition: all .3s;
}
@media (min-width: 768px) {
	.p_products-more .link a:hover {
		opacity: .6;		
	}
}

@media screen and (max-width: 767px) {
	.p_products-engine {
		margin-top: 20px;
	}
	.p_products-engine .more {
		width: 18%;
		padding-top: 18%;
	}
	.p_products-engine .more:before,
	.p_products-engine .more:after {
		display: none;
	}
	.p_products-engine .more.more01 {
		top: 12%;
		left: 46%;
	}
	.p_products-engine .more.more02 {
		top: 64.5%;
		left: 73.5%;
	}
  	.p_products-engine .more.more-land01 {
		top: 29%;
		left: 73%;
	}
	.p_products-engine .more.more-land02 {
		top: 25%;
		left: 9%;
	}
	.p_products-more {
		margin: 40px auto;
	}
	.p_products-more .mfp-close {
		top: -40px;
		width: 40px;
		height: 40px;
	}
	.p_products-more .mfp-close:before,
	.p_products-more .mfp-close:after {
		top: 20px;
		width: 40px;
	}
	.p_products-more .box {
		overflow: auto;
		flex-direction: column;
		max-height: calc(100vh - 80px);
		padding: 20px 20px 30px;
	}
	.p_products-more .image {
		width: 100%;
	}
	.p_products-more .image img {
		width: 100%;
	}
	.p_products-more .textbox {
		flex: 1;
	}
	.p_products-more .title {
		font-size: 22px;
	}
	.p_products-more .text {
		margin-top: 15px;
		font-size: 14px;
	}
	.p_products-more .link {
		margin-top: 20px;
		text-align: center;
	}
	.p_products-more .link a {
		padding: 10px 30px;
	}
}

/*  side
========================================================================*/

.p_products-banner {
	margin-top: 40px;
}
.p_products-banner a,
.p_products-side .image a {
	overflow: hidden;
	display: block;
}
.p_products-banner img,
.p_products-side .image img {
	width: 100%;
}
@media (min-width: 768px) {
	.p_products-banner a:hover img,
	.p_products-side .image a:hover img {
		transform: scale(1.1);
	}
}
.p_products-side {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #DEDEDE;
}
.p_products-side .title {
	text-align: center;
	font-size: 20px;
}
.p_products-side .subtitle {
	font-size: 8pt;
    text-align: center;
}
.p_products-side .time {
	margin-top: 15px;
	font-size: 9pt;
    text-align: center;
}
.p_products-side .list {
	margin-top: 10px;
	font-size: 14px;
}
.p_products-side .list li {
	position: relative;
	padding-left: 20px;
}
.p_products-side .list li:not(:first-child) {
	margin-top: 3px;
}
.p_products-side .list li:before {
	content: '';
	position: absolute;
	top: .7em;
	left: 0;
	width: 7px;
	height: 7px;
	border-top: 1px solid #005EB8;
	border-right: 1px solid #005EB8;
	transform: rotate(45deg);
}
.p_products-side .list a {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	text-decoration: none;
}
@media (min-width: 768px) {
	.p_products-side .list a:hover {
		text-decoration: underline;
	}
}

@media screen and (max-width: 767px) {
	.p_products-banner {
		margin-top: 0px;
	}
	.p_products-side.border > div {
		padding: 15px 30px 20px;
		border: 1px solid #C7C7C7;
	}
}

/*  footer
========================================================================*/

.c_detail + div .p_top-catalog.products {
	margin-top: 0;
}
.p_products-network {
	display: none;
}

@media screen and (max-width: 767px) {
	.c_detail + div .p_top-catalog.products,
	.c_detail + div .p_products-tel {
		display: none;
	}
	.c_detail + div .p_products-network {
		display: block;
	}
	.p_products-network {
		margin: -20px 20px 90px;
		padding-top: 30px;
		border-top: 1px solid #DEDEDE;
	}
	.p_products-network img {
		width: 100%;
	}
}