@charset "utf-8";
/*===================
  TOPページ
====================*/
/*== MV ==*/
.mv {
	padding-top: 30px;
	padding-bottom: 50px;
    background-color: #e7e0d4;
}
/*gallery*/
/*
IE11対策
----------------------------*/
_:-ms-lang(x)::-ms-backdrop,
.mv_loop {
  display: -ms-grid;
  overflow: hidden;
}
/*----------------------------*/

.mv_loop {
	display: flex;
	overflow: hidden;
}
.mv_list {
	display: flex;
	list-style: none;
}

.mv_list--right {
	animation :infinity-scroll-right 195s infinite linear 0.5s both;
}
.mv_item {
	width: calc(100vw / 3);
	font-size: 0;
	margin-top: 20px;
	margin-bottom: 50px;
	margin-left: 80px;
	background-color: #fff;
	border-radius: 1000px;
	box-shadow: 7px 7px 7px rgba(0, 0, 0, .3);
}

.mv_item:hover {
  animation: bounce 0.4s;
}

@keyframes bounce {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-8px); }
  60%  { transform: translateY(4px); }
  100% { transform: translateY(0); }
}

.mv_item.bounce  {
  animation: bounce 0.4s ease;
}

.mv_item img {
	width: 100%;
	height: 100%;
	border-radius: 1000px;
	overflow: hidden;
	transition: transform 0.3s ease;
}
/*.mv_item img:hover {
	transform: scale(1.3);
	transition: .2s;
}*/
.mv_item.is-center img {
  transform: scale(1.3);
  z-index: 2;
}

/*左から右へ*/
@keyframes infinity-scroll-right {
	from {
		transform: translateX(-100%);
	}
	to {
		transform: translateX(0);
	}
}

.mv .loop-wrap {
	overflow: hidden; 
	white-space: nowrap;
	width: 800%;
	margin-top: -350px;
}
.mv .txt_loop {
  animation: loopScroll 150s linear infinite;
  display: inline-block;
  padding-right: 20px; /* 間隔調整 */
}

@keyframes loopScroll {
  0% {
	transform: translateX(0);
  }
  100% {
	transform: translateX(-100%);
  }
}


.mv h2 {
	font-size: 36px;
	font-weight: bold;
	text-align: right;
	padding: 50px 280px 0 0;
}


@media screen and (max-width:1600px) {
	.mv .loop-wrap {
		width: 500%;
		margin-top: -235px;
	}
	.mv h2 {
		font-size: 28px;
		padding: 50px 100px 0 0;
	}
}

@media screen and (max-width:1440px) {
	.mv .loop-wrap {
		width: 500%;
		margin-top: -235px;
	}
}

@media screen and (max-width:1300px) {
	.mv {
		padding-bottom: 50px;
	}
	.mv .loop-wrap {
		margin-top: -200px;
	}
	.mv h2 {
		padding: 40px 70px 0 0;
	}
}



/*== INTRO ==*/
.intro {
	background-color: #f7f7f7;
}
.intro h1 {
	font-size: 28px;
	font-weight: 800;
	text-align: center;
	background-color: #d8d2c7;
	padding-top: 20px;
	padding-bottom: 20px;
	letter-spacing: -1px;
}
.intro .inner {
	max-width: 1440px;
	margin: 0 auto;
	margin-top: 100px;
}
.intro .inner > .flex_box {
	flex-wrap: wrap;
	margin-top: 80px;
	position: relative;
	z-index: 0;
	padding-left: 5%;
	padding-right: 5%;
}
.intro .img_photo {
	max-width: 600px;
	width: 41.6667%;
}
.intro .img_photo img {
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	background-color: #f7f7f7;
	box-shadow: 5px 5px 5px rgba(0,0,0,.3);
}
.intro .txt_box {
	max-width: 840px;
	width: 58.3334%;
	padding-left: 100px;
	padding-left: 6.9445%;
	box-sizing: border-box;
	margin-top: 200px;
}
.intro .txt_box p {
	font-size: 28px;
	line-height: 2.8572;
}
.intro .symbol {
	position: absolute;
	top: 0;
	left: 44%;
	/*transform: translateX(-50%);*/
	z-index: -1;
}
.intro .txt_box .more_btn {
	margin-top: 80px;
}


@media screen and (max-width:1600px) { 
	.intro h1 {
		font-size: 24px;
	}
	.intro .inner {
		max-width: 1200px;
		margin-top: 80px;
	}
	.intro .inner > .flex_box {
		margin-top: 50px;
	}
	.intro .txt_box {
		padding-left: 4.9445%;
		margin-top: 150px;
	}
	.intro .txt_box p {
		font-size: 24px;
	}
	.intro .txt_box .more_btn {
		margin-top: 50px;
	}
}

@media screen and (max-width:1440px) {
}

@media screen and (max-width:1300px) { 
	.intro h1 {
		font-size: 21px;
	}
	.intro .inner {
		max-width: 1100px;
	}
	.intro .txt_box p {
		font-size: 21px;
		line-height: 2.5;
	}
}


/*== MADE IN 日本 ==*/
.madeinjapan {
	padding-top: 130px;
	background-color: #f7f7f7;
	position: relative;
	z-index: 2;
}
.madeinjapan .inner {
	max-width: 1440px;
	margin: 0 auto;
}
.madeinjapan .scroll_box {
	position: relative;
	transform: translateY(100px) rotateZ(-5deg);
	margin-top: -30px;
	margin-left: -30px;
	margin-right: -30px;
}
.madeinjapan .scroll_gallery {
	display: flex;
	flex-direction: column;
	gap: 50px;
	overflow: hidden;
	border-top: 10px solid #d8d2c7;
	border-bottom: 10px solid #d8d2c7;
	background-color: #ffffff;
	padding-top: 45px;
	padding-bottom: 45px;
}
.madeinjapan .scroll_row {
	display: flex;
	width: max-content; 
}
.madeinjapan .scroll_track {
	display: flex;
	align-items: center;
	will-change: transform;
}
.madeinjapan .scroll_item {
	display: inline-flex;
	align-items: center;
	margin-right: 50px;
}
.madeinjapan .scroll_item p {
	display: inline-block;
	font-size: 55px;
	font-weight: 800;
}
.madeinjapan .scroll_item img {
	width: 200px;
	border-radius: 8px;
	display: inline-block;
}

/* 上段：右から左 */
.madeinjapan .scroll_track--left {
	animation: scroll-left 30s linear infinite;
}

/* 下段：左から右 */
.madeinjapan .scroll_track--right {
	animation: scroll-right 60s linear infinite;
}

@keyframes scroll-left {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}

@keyframes scroll-right {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(0%);
	}
}

@media screen and (max-width:1600px) { 
	.madeinjapan {
		padding-top: 100px;
	}
	.madeinjapan .inner {
		max-width: 1200px;
	}
	.madeinjapan .scroll_gallery {
		gap: 35px;
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.madeinjapan .scroll_item {
		margin-right: 40px;
	}
	.madeinjapan .scroll_item p {
		font-size: 48px;
	}
	.madeinjapan .scroll_item img {
		width: 180px;
	}
	.madeinjapan .machine {
		top: -28px;
		right: -90px;
		width: 240px;
	}
}
@media screen and (max-width:1440px) { 
}
@media screen and (max-width:1300px) { 
	.madeinjapan .inner {
		max-width: 1100px;
	}
}


/*== 製品情報 ==*/
.seihin-top {
	padding-top: 250px;
	padding-bottom: 200px;
	position: relative;
	z-index: 1;
}
.seihin-top:before {
	content: "";
	position: absolute;
	top: 100px;
	left: 0;
	width: 200%;
	height: 800px;
	background-color: #e7e0d4;
	clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 60%);
	z-index: -2;
}
.seihin-top .inner {
	max-width: 1440px;
	margin: 0 auto;
}
.seihin-top .seihin_list {
	margin-top: 60px;
	flex-wrap: wrap;
}
.seihin-top .seihin_list .cat_01,
.seihin-top .seihin_list .cat_02 {
	max-width: 700px;
	width: 48%;
}
.seihin-top .seihin_list .cat_02 {
	margin-left: 4%;
}

.seihin-top .seihin_list .cat_03 {
	max-width: 380px;
	margin-top: 50px;
}
.seihin-top .seihin_list div a {
	display: inline-block;
	padding: 10px;
	box-sizing: border-box;
	box-shadow: 5px 5px 5px rgba(0,0,0,.3);
	background-color: #f7f7f7;
	transition: .2s;
}
.seihin-top .seihin_list div a:hover {
	opacity: .8;
	transition: .2s;
}
.seihin-top .seihin_list div a .img_photo {
	overflow: hidden;
}
.seihin-top .seihin_list div a .img_photo img {
	transition: .2s;
}
.seihin-top .seihin_list div a:hover .img_photo img {
	transform: scale(1.1);
	transition: .2s;
}
.seihin-top .seihin_list div a h3 {
	font-size: 32px;
	font-weight: 800;
	line-height: 1;
	padding: 10px 0 5px 5px;
}
.seihin-top .seihin_list .cat_03 a h3 {
	font-size: 28px;
}
.seihin-top .seihin_list div a:hover h3 {
	transition: .2s;
}


@media screen and (max-width:1600px) { 
	.seihin-top {
		padding-bottom: 150px;
	}
	.seihin-top .inner {
		max-width: 1200px;
	}
	.seihin-top .seihin_list {
		margin-top: 50px;
	}
	.seihin-top .seihin_list div a h3 {
		font-size: 28px;
	}
	.seihin-top .seihin_list .cat_03 a h3 {
		font-size: 24px;
	}
}
@media screen and (max-width:1440px) { 
}
@media screen and (max-width:1300px) { 
	.seihin-top {
		padding-top: 230px;
	}
	.seihin-top .inner {
		max-width: 1100px;
	}
	.seihin-top .seihin_list div a h3 {
		font-size: 24px;
	}
	.seihin-top .seihin_list .cat_03 a h3 {
		font-size: 21px;
	}
}

/*== PICKUP ==*/
.pickup {
	background-color: #e7e0d4;
	padding-top: 50px;
	padding-bottom: 100px;
	position: relative;
	z-index: 0;
}
.pickup:before {
	content: "";
	position: absolute;
	top: -350px;
	left: 0;
	width: 200%;
	height: 800px;
	background-color: #e7e0d4;
	clip-path: polygon(0 40%, 100% 0, 100% 60%, 0% 100%);
	z-index: -2;
}
.pickup .inner {
	max-width: 1440px;
	margin: 0 auto;
}

.pickup_box {
	margin-top: 80px;
	position: relative;
}
.pickup_box .card_list {
	width: 500px;
}
.pickup_box .slick-list {
	overflow: inherit;
}
.pickup_box .slick-track {
	display: flex;
}
.pickup_box .slick-dots {
	text-align: left;
	bottom: -60px;
}
.pickup_box .card {
	width: 500px;
	height: auto;
	position: relative;
	background-color: #f7f7f7;
	margin-right: 50px;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, .3);
}
.pickup_box .card a {
	display: inline-block;
	width: 100%;
    height: auto;
	padding: 40px 40px 30px;
	box-sizing: border-box;
	transition: .2s;
	position: relative;
}
/*最新のsafari用*/
_::-webkit-full-page-media, _:future, :root .pickup_box .card a {
	overflow: hidden;
}
/*古いsafari用*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, .pickup_box .card a {
		overflow: hidden;
	}
}
.pickup_box .card a:hover {
	opacity: .5;
	transition: .2s;
}
.pickup_box .card a .cat {
	display: inline-block;
	font-weight: bold;
	color: #fff;
	background-color: #F7941D;
	border-radius: 50px;
    padding: 5px 18px;
    font-size: 16px;
    margin-top: 15px;
}
.pickup_box .card a .img_photo {
	border: 1px solid #d8d2c7;
	min-height: 400px;
	background-color: #fff;
	display: flex;
	align-items: center;
}
.pickup_box .card a .img_photo img {
    width: 100%;
    margin: 0 auto;
}
.pickup_box .card a h3 {
	font-size: 28px;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: -2px;
	margin-top: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-height: 80px;
}
.pickup_box .slick-next,
.pickup_box .slick-prev {
	display: block;
	z-index: 999;
	position: absolute;
	top: auto;
	width: 50px;
	height: 50px;
	background-color: #169a5a;
	border-radius: 50px;
	z-index: 99;
	bottom: -130px;
	transition: .2s;
}
.pickup_box .slick-next {
	left: 100px;
}
.pickup_box .slick-prev {
	left: 0;
}
.pickup_box .slick-next:before,
.pickup_box .slick-prev:before {
	content: "";
	top: 16px;
	left: 20px;
	position: absolute;
	height: 10px;
	width: 10px;
	opacity: 1;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transition: .2s;
}
.pickup_box .slick-next:before {
	transform: translateY(20%) rotate(45deg);
	left: 16px;
}
.pickup_box .slick-prev:before {
	transform: translateY(20%) rotate(-135deg);
}
.pickup_box .slick-next:hover,
.pickup_box .slick-prev:hover {
	/*background-color: #73c29c;*/
	background-color: #000;
	transition: .2s;
}
.pickup_box .slick-next:focus,
.pickup_box .slick-prev:focus,
.pickup_box .slick-prev:hover {
	/*background-color: #73c29c;*/
	background-color: #000;
	transition: .2s;
}

.pickup .btn_area {
	margin-top: 50px;
	text-align: right;
}

@media screen and (max-width:1600px) { 
	.pickup {
		padding-bottom: 80px;
	}
	.pickup .inner {
		max-width: 1200px;
	}
	.pickup_box {
		margin-top: 50px;
	}
	.pickup_box .card {}
	.pickup_box .card a {
		padding: 30px;
	}
	.pickup_box .card a .cat {
		top: 45px;
		left: 45px;
		padding: 4px 18px 5px;
		font-size: 16px;
	}
	.pickup_box .card a .img_photo {
		min-height: 340px;
	}
}
@media screen and (max-width:1440px) { 
}
@media screen and (max-width:1300px) { 
	.pickup .inner {
		max-width: 1100px;
	}
	.pickup_box .card_list {
	    width: 450px;
	}
	.pickup_box .card {
		max-width: initial;
		width: 450px;
	}
    .pickup_box .card a .img_photo {
        min-height: 320px;
    }
    .pickup_box .card a .img_photo img {
	    width: 80%;
	}
	.pickup_box .card a h3 {
        font-size: 18px;
	}

}


/*== 新着情報 ==*/
.news_top {
	padding-top: 100px;
	padding-bottom: 100px;
}
.news_top .inner {
	max-width: 1440px;
	margin: 0 auto;
}
.news_top .inner > .flex_box {
	flex-wrap: wrap;
}
.news_top .more_btn {
	margin-top: 60px;
}
.news_top .ttl_tips {
	max-width: 340px;
	width: 100%;
}
.news_top .news_list {
	max-width: 1100px;
	width: 100%;
}
.news_top .news_list li {
	border-top: 1px solid #c4c4c4;
}
.news_top .news_list li:last-child {
	border-bottom: 1px solid #c4c4c4;
}
.news_top .news_list li a {
	display: flex;
	align-items: center;
	padding: 45px 20px;
	transition: .2s;
}
.news_top .news_list li a:hover {
	background-color: #f7f7f7;
	transition: .2s;
}
.news_top .news_list li a .time {
	display: inline-block;
	margin-right: 15px;
}
.news_top .news_list li a .cat {
	display: inline-block;
	color: #fff;
	background-color: #f7941d;
	border-radius: 50px;
	padding: 4px 20px 5px;
	letter-spacing: -1px;
	margin-right: 15px;
}
.news_top .news_list li a: h3 {
	font-size: 21px;
}
.news_top .news_list li a:hover h3 {
	text-decoration: underline;
}


@media screen and (max-width:1600px) {
	.news_top .inner {
		max-width: 1200px;
	} 
	.news_top .ttl_tips {
		width: 30%;
	}
	.news_top .news_list {
		width: 70%;
	}
	.news_top .news_list li a {
		padding: 35px 20px;
	}
	.news_top .news_list li a .cat {
		padding: 4px 18px 5px;
		font-size: 16px;
	}
}
@media screen and (max-width:1440px) { 
}
@media screen and (max-width:1300px) {
	.news_top {
		padding-top: 80px;
		padding-bottom: 80px;
	} 
	.news_top .inner {
		max-width: 1100px;
	}
}


/*===================
  サービス案内ページ
====================*/
.kv_service .kv_ttl {
	border: none;
}

/*== オーダーメイドで機械を設計・製作 ==*/
.service_intro {
	padding-top: 350px;
	padding-bottom: 200px;
	background-color: #e7e0d4;
	position: relative;
	z-index: 0;
	margin-top: -250px;
}
/*.service_intro:before {
	content: "";
	position: absolute;
	top: -180px;
	left: 0;
	background-color: #e7e0d4;
	width: 100%;
	height: 300px;
	z-index: -1;
}*/
.service_intro .inner {
	max-width: 1440px;
	margin: 0 auto;
}
.service_intro ul {
	margin-top: 50px;
}
.service_intro ul li {
	border-top: 1px solid #d8d2c7;
	padding: 80px 40px;
	display: flex;
	flex-wrap: wrap;
}
.service_intro ul li:last-child {
	border-bottom: 1px solid #d8d2c7;
}
.service_intro ul li .txt_box {
	max-width: 710px;
	width: 52.2059%;
	margin-top: 20px;
	padding-right: 80px;
	box-sizing: border-box;
}
.service_intro ul li .txt_box h4 {
	font-size: 36px;
	font-weight: 800;
}
.service_intro ul li .txt_box h4 span {
	font-size: 48px;
	color: #f09700;
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
}
.service_intro ul li .txt_box p {
	margin-top: 40px;
	padding-left: 5px;
}
.service_intro ul li .img_photo {
	max-width: 650px;
	width: 47.7942%;
	font-size: 0;
}
.service_intro ul li .img_photo img {
	box-shadow: 5px 5px 5px rgba(0,0,0,.3);
}

@media screen and (max-width:1600px) { 
	.service_intro {
		padding-top: 300px;
		padding-bottom: 170px;
		margin-top: -200px;
	}
	.service_intro .inner {
		max-width: 1200px;
	}
	.service_intro ul li {
		padding: 50px 30px;
	}
	.service_intro ul li .txt_box {
		padding-right: 5%;
		margin-top: 0;
	}
	.service_intro ul li .txt_box h4 {
		font-size: 28px;
	}
	.service_intro ul li .txt_box p {
		margin-top: 20px;
	}
	

}
@media screen and (max-width:1440px) { 
}
@media screen and (max-width:1300px) { 
	.service_intro {
		padding-top: 280px;
	}
	.service_intro .inner {
		max-width: 1100px;
	}
	.service_intro ul {
		margin-top: 30px;
	}
	.service_intro ul li {
		padding: 50px 20px;
	}
	.service_intro ul li .txt_box h4 span {
		font-size: 36px;
	}
	.service_intro ul li .txt_box p {
		margin-top: 10px;
	}
}


/*== よくあるご相談・ご依頼 ==*/
.service_faq {
	padding-top: 100px;
	padding-bottom: 200px;
	position: relative;
	z-index: 0;
}
.service_faq:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #fff;
	transform: skewY(-12deg) translateY(0);
	z-index: -1;
	height: 1200px;
}
.service_faq:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #fff;
	transform: skewY(12deg) translateY(0);
	z-index: -99;
	height: 1200px;
}
.service_faq .inner {
	max-width: 1440px;
	margin: 0 auto;
}
.service_faq .fag_box {
	max-width: 1200px;
	margin: 0 auto;
	margin-top: 80px;
}
.service_faq .fag_ttl {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
}
.service_faq .fag_ttl h4 {
	width: 50%;
	font-size: 36px;
	font-weight: bold;
	padding-left: 50px;
	box-sizing: border-box;
	position: relative;
}
.service_faq .fag_ttl h4:before {
	content: "";
	position: absolute;
	top: 15px;
	left: 0;
	background-repeat: no-repeat;
	background-size: 36px;
	width: 36px;
	height: 36px;
}
.service_faq .fag_ttl h4.problems:before {
	background-image: url(../images/common/pc/icon_problems.svg);
}
.service_faq .fag_ttl h4.response:before {
	background-image: url(../images/common/pc/icon_response.svg);
	height: 37px;
}
.service_faq dl {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #000;
}
.service_faq dl:last-child {
	border-bottom: 1px solid #000;
}
.service_faq dl dt {
	width: 50%;
	padding: 40px 25px;
	box-sizing: border-box;
	font-size: 21px;
	background-color: #f7f7f7;
}
.service_faq dl dd {
	width: 50%;
	padding: 40px 25px;
	box-sizing: border-box;
	font-size: 21px;
}
.service_faq .announce {
	margin-top: 80px;
}
.service_faq .announce p {
	text-align: center;
	font-size: 48px;
	font-weight: 800;
}

@media screen and (max-width:1600px) { 
	.service_faq {
		padding-bottom: 150px;
	}
	.service_faq .inner {
		max-width: 1200px;
	}
	.service_faq .fag_box {
		margin-top: 50px;
	}
	.service_faq .fag_ttl {
		margin-bottom: 0;
	}
	.service_faq .fag_ttl h4 {
		font-size: 28px;
		padding-left: 35px;
	}
	.service_faq .fag_ttl h4:before {
		top: 14px;
		left: 0;
		background-size: 25px;
		width: 25px;
		height: 25px;
	}
	.service_faq dl dt {
		padding: 30px 25px;
		font-size: 18px;
	}
	.service_faq dl dd {
		padding: 30px 25px;
		font-size: 18px;
	}
	.service_faq .announce {
		margin-top: 50px;
	}
	.service_faq .announce p {
		font-size: 36px;
	}
}
@media screen and (max-width:1440px) { 
}
@media screen and (max-width:1300px) { 
	.service_faq {
		padding-top: 80px;
	}
	.service_faq .inner {
		max-width: 1100px;
	}
}


/*== 製作までの流れ ==*/
.service_flow {
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: #e7e0d4;
	position: relative;
	z-index: 0;
}
.service_flow:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #e7e0d4;
	transform: skewY(-12deg) translateY(0);
	z-index: -1;
	height: 1200px;
}
.service_flow:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #e7e0d4;
	transform: skewY(12deg) translateY(0);
	z-index: -99;
	height: 1200px;
}
.service_flow .inner {
	max-width: 1440px;
	margin: 0 auto;
}

.service_flow .flow_list {
	margin-top: 80px;
	display: flex;
	flex-wrap: wrap;
}
.service_flow .flow_list li {
	max-width: 300px;
	width: 100%;
	background-color: #fff;
	border: 1px solid #000;
	border-radius: 2px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding-top: 30px;
	padding-bottom: 30px;
}
.service_flow .flow_list li + li {
	margin-left: 77px;
	position: relative;
}
.service_flow .flow_list li + li:before {
	content: "";
	position: absolute;
	top: 43px;
	left: -54px;
	background-image: url(../images/common/pc/arrow_flow.svg);
	background-repeat: no-repeat;
	background-size: 35px;
	width: 35px;
	height: 40px;
}
.service_flow .flow_list li h4 {
	font-size: 24px;
	font-weight: 800;
	line-height: 1;
}
.service_flow .flow_list li span {
	margin-top: 10px;
	font-size: 16px;
	font-weight: 800;
}

.service_flow .flow_box {
	margin-top: 80px;
	align-items: center;
}
.service_flow .flow_box .img_photo {
	max-width: 650px;
	background-color: #fff;
	box-shadow: 5px 5px 5px rgba(0,0,0,.3);
	padding: 10px;
	box-sizing: border-box;
}
.service_flow .flow_box .txt_box {
	max-width: 790px;
	padding-left: 100px;
}
.service_flow .flow_box .txt_box h4 {
	font-size: 36px;
	font-weight: bold;
	line-height: 2.8;
}
.service_flow .flow_box .txt_box p {
	font-size: 36px;
	font-weight: bold;
	line-height: 2.8;
}
.service_flow .flow_txt {
	max-width: 900px;
	margin: 0 auto;
	margin-top: 80px;
	background-color: #fff;
	border: 1px solid #000;
	border-radius: 10px;
	padding-top: 60px;
	padding-bottom: 60px;
}
.service_flow .flow_txt p {
	text-align: center;
	line-height: 3;
}
.service_flow .otoiawase {
	margin-top: 80px;
	text-align: center;
}
.service_flow .otoiawase a {
	display: inline-block;
	max-width: 460px;
	width: 100%;
	height: 100px;
	line-height: 96px;
	border-radius: 100px;
	font-size: 28px;
	padding-left: 45px;
	box-sizing: border-box;
	border: 1px solid #000;
	transition: .2s;
	transition: .2s;
}
.service_flow .otoiawase a:hover {
	background-color: #000;
	transition: .2s;
}
.service_flow .otoiawase a span {
	font-weight: bold;
	position: relative;
	transition: .2s;
}
.service_flow .otoiawase a:hover span {
	color: #fff;
	transition: .2s;
}
.service_flow .otoiawase a span:before {
	content: "";
	position: absolute;
	top: 10px;
	left: -44px;
	background-image: url(../images/common/pc/mail_orange.svg);
	background-repeat: no-repeat;
	background-size: 34px;
	width: 34px;
	height: 25px;
	transition: .2s;
	transition: .2s;
}
.service_flow .otoiawase a:hover span:before {
	background-image: url(../images/common/pc/mail.svg);
	transition: .2s;
}
/*最新のsafari用*/
_::-webkit-full-page-media, _:future, :root .service_flow .otoiawase a span:before {
	top: 6px;
}
/*古いsafari用*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, .service_flow .otoiawase a span:before {
		top: 6px;
	}
}

@media screen and (max-width:1600px) {
	.service_flow .inner {
		max-width: 1200px;
	}
	.service_flow .flow_list {
		margin-top: 60px;
	}
	.service_flow .flow_list li {
		max-width: 268px;
	}
	.service_flow .flow_list li + li {
		margin-left: 40px;
	}
	.service_flow .flow_list li + li:before {
		top: 50px;
		left: -33px;
		background-size: 25px;
		width: 25px;
		height: 28px;
	}
	.service_flow .flow_box {
		margin-top: 50px;
	}
	.service_flow .flow_box .img_photo {
		max-width: 500px;
	}
	.service_flow .flow_box .txt_box {
		padding-left: 50px;
	}
	.service_flow .flow_box .txt_box h4 {
		font-size: 28px;
	}
	.service_flow .flow_box .txt_box p {
		font-size: 28px;
	}
	.service_flow .flow_txt {
		margin-top: 50px;
	}
	.service_flow .otoiawase {
		margin-top: 50px;
	}
	.service_flow .otoiawase a {
		max-width: 400px;
		width: 100%;
		height: 80px;
		line-height: 78px;
		border-radius: 100px;
		font-size: 24px;
		padding-left: 46px;
	}
	.service_flow .otoiawase a span:before {
		top: 9px;
		left: -38px;
		background-size: 30px;
		width: 30px;
		height: 22px;
	}
}

@media screen and (max-width:1440px) { 
}

@media screen and (max-width:1300px) { 
	.service_flow {
		padding-top: 80px;
	}
	.service_flow .inner {
		max-width: 1100px;
	}
	.service_flow .flow_list {
		margin-top: 50px;
	}
	.service_flow .flow_list li h4 {
		font-size: 23px;
	}
	.service_flow .flow_list li span {
		font-size: 14px;
	}
	.service_flow .flow_txt {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}


/*== 故障した装置の修理にも対応可能です ==*/
.service_repair {
	padding-top: 100px;
	padding-bottom: 50px;
	background-color: #f7f7f7;
}
.service_repair .inner {
	max-width: 1440px;
	margin: 0 auto;
}

/*料金表*/
.basic_fee {
	margin-top: 80px;
	background-color: #fff;
	box-shadow: 5px 5px 5px rgba(0,0,0,.3);
}
.basic_fee h4 {
	font-size: 28px;
	font-weight: 800;
	color: #fff;
	background-color: #169a5a;
	padding: 10px 30px;
	text-align: center;
}
.basic_box {
	padding: 40px 50px;
}
.basic_box p {
	text-align: center;
    font-size: 21px;
}
/*.basic_box .left_box {
	max-width: 716px;
	padding-right: 50px;
	box-sizing: border-box;
}
.basic_box .left_box .price_txt {
	margin-top: 30px;
}
.basic_box .left_box .price_txt span {
	font-size: 24px;
	font-weight: 800;
	border-bottom: 4px solid #ed1c24;
	padding-bottom: 5px;
	padding-right: 5px;
}
.basic_box .left_box .rule {
	margin-top: 30px;
}
.basic_box .left_box .rule li {}
.basic_box .left_box .rule li + li {
	margin-top: 5px;
}
.basic_box .left_box .rule li:nth-child(1) dl {
	display: flex;
}
.basic_box .left_box .rule li:nth-child(1) dl dt {
	margin-right: 50px;
}
.basic_box .left_box .rule li:nth-child(2) dl dd {
	margin-left: 140px;
}

.basic_box .right_box {
	max-width: 624px;
	background-color: #e5e5e5;
	padding: 20px;
	box-sizing: border-box;
}
.basic_box .right_box .example {}
.basic_box .right_box .example h5 {
	font-size: 24px;
	font-weight: 800;
}
.basic_box .right_box .example .example_box {
	background-color: #fff;
	padding: 20px;
	box-sizing: border-box;
	height: 100%;
}
.basic_box .right_box .example .example_box p {
}
.basic_box .right_box .example .example_box p + p {
	margin-top: 30px;
}
.basic_box .right_box .example .example_box p span.price {
	font-size: 24px;
	font-weight: 800;
	color: #ed1c24;
}*/

/*ギャラリー*/
.repair_list {
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
}
.repair_list li {
	width: 31%;
	background-color: #fff;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, .3);
	margin-bottom: 50px;
}
.repair_list li + li {
	margin-left: 3.5%;
}
.repair_list li:nth-child(3n+1) {
	margin-left: 0;
}
.repair_list li h4 {
	font-size: 24px;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
}

@media screen and (max-width:1600px) {
	.service_repair .inner {
		max-width: 1200px;
	}
	.basic_fee {
		margin-top: 50px;
	}
	.basic_fee h4 {
		font-size: 28px;
		padding: 10px 30px;
	}
	.basic_box {
		padding: 30px;
	}
}
@media screen and (max-width:1440px) { 
}
@media screen and (max-width:1300px) { 
	.service_repair .inner {
		max-width: 1100px;
	}
	.repair_list li h4 {
		font-size: 21px;
	}
}


/*===================
  製品情報(一覧)ページ
====================*/
.kv_seihin .kv_ttl {
	border: none;
}

/*== カテゴリ検索 ==*/
.search_cat {
	padding-top: 30px;
	padding-bottom: 50px;
}
.search_cat .inner {
	max-width: 1440px;
	margin: 0 auto;
}
.search_cat h3 {
	position: relative;
	padding-left: 15px;
	display: inline-block;
}
.search_cat h3:before {
	content: "";
	position: absolute;
	top: 8px;
	left: 0;
	background-image: url(../images/common/pc/arrow_cat.svg);
	background-repeat: no-repeat;
	background-size: 11px;
	width: 11px;
	height: 17px;
}
.search_cat .all {
	display: inline-block;
}
.search_cat .all a {
	display: inline-block;
	background-color: #000;
	border-radius: 30px;
	color: #fff;
	font-size: 16px;
	padding: 2px 15px 3px;
	margin-left: 15px;
}
.search_cat .search_box {
	margin-top: 15px;
}
.search_cat .search_box li {
	max-width: 450px;
	width: 31%;
	text-align: center;
}
.search_cat .search_box li + li {
	margin-left: 3.5%;
}
.search_cat .search_box li a {
	display: inline-block;
	width: 100%;
	height: 70px;
	line-height: 68px;
	background-color: #F7941D;
	border-radius: 70px;
	color: #fff;
	font-size: 24px;
	transition: .2s;
}
.search_cat .search_box li a:hover {
	background-color: #000;
	transition: .2s;
}

/*== タグ検索 ==*/
.search_tag {
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: #e7e0d4;
}
.search_tag .inner {
	max-width: 1440px;
	margin: 0 auto;
}
.search_tag h3 {
	position: relative;
	padding-left: 15px;
}
.search_tag h3:before {
	content: "";
	position: absolute;
	top: 8px;
	left: 0;
	background-image: url(../images/common/pc/arrow_tag.svg);
	background-repeat: no-repeat;
	background-size: 11px;
	width: 11px;
	height: 17px;
}
.search_tag .search_box {
	background-color: #fff;
	border: 3px solid #d8d2c7;
	padding: 30px;
	box-sizing: border-box;
}

.search_tag .search_box div + div {
	margin-top: 40px;
}
.search_tag .search_box div h4 {
	font-size: 28px;
	font-weight: bold;
	border-left: 5px solid #0071BC;
	line-height: 1;
	padding-left: 8px;
}
.search_tag .search_box div ul.tag_list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
}
.search_tag .search_box div ul.tag_list li {
	margin-right: 20px;
	margin-bottom: 5px;
}
.search_tag .search_box div ul.tag_list a {
	position: relative;
	display: inline-block;
	padding-left: 30px;
	letter-spacing: -1px;
}
.search_tag .search_box div ul.tag_list a:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	background-image: url(../images/common/pc/item_tag.svg);
	background-repeat: no-repeat;
	background-size: 20px;
	width: 20px;
	height: 20px;
}
.search_tag .search_box div ul.tag_list a:hover {
	color: #0071BC;
	text-decoration: underline;
}

/*アコーディオン*/
.toggle_btn {
	display: none;
}



/*== 製品情報一覧リスト ==*/
.seihin_joho {
	padding-top: 100px;
	padding-bottom: 100px;
}
.seihin_joho .inner {
	max-width: 1440px;
	margin: 0 auto;
}
.seihin_joho ul.seihin_list {
	display: flex;
	flex-wrap: wrap;
}
.seihin_joho ul.seihin_list > li {
	width: 48%;
	margin-bottom: 50px;
}
.seihin_joho ul.seihin_list > li + li {
	margin-left: 4%;
}
.seihin_joho ul.seihin_list > li:nth-child(2n+1) {
	margin-left: 0;
}
.seihin_joho ul.seihin_list > li a {
}
.seihin_joho ul.seihin_list > li a .img_photo {
	background-color: #f7f7f7;
	box-shadow: 5px 5px 5px rgba(0,0,0,.3);
	padding: 30px;
	box-sizing: border-box;
	position: relative;
}
.seihin_joho ul.seihin_list > li a .img_photo figure {
	border: 3px solid #d8d2c7;
	text-align: center;
	padding: 50px 0 20px;
}
.seihin_joho ul.seihin_list > li a .img_photo figure img {
	width: auto;
	height: 320px;
}
.seihin_joho ul.seihin_list > li a .cat {
	display: inline-block;
	font-weight: bold;
	color: #fff;
	background-color: #F7941D;
	border-radius: 50px;
	padding: 5px 18px;
    font-size: 14px;
    margin-top: 15px;
}
.seihin_joho ul.seihin_list > li a .cat + .cat {
    margin-left: 10px;
}
.seihin_joho ul.seihin_list > li a .tag_list {
	position: relative;
	display: flex;
	margin-top: 10px;
	padding-left: 35px;
	flex-wrap: wrap;
	font-size: 16px;
	min-height: 25px;
}
.seihin_joho ul.seihin_list > li a .tag_list:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	background-image: url(../images/common/pc/item_tag.svg);
	background-repeat: no-repeat;
	background-size: 20px;
	width: 20px;
	height: 35px;
}
.seihin_joho ul.seihin_list > li a .tag_list li {
	position: relative;
	letter-spacing: -1px;
}
.seihin_joho ul.seihin_list > li a .tag_list li:after {
	content: ",";
	padding-left: 5px;
	padding-right: 5px;
}
.seihin_joho ul.seihin_list > li a .tag_list li:last-child:after {
	content: none;
}

.seihin_joho ul.seihin_list > li a .seihin_ttl {
	font-size: 28px;
	font-weight: bold;
	line-height: 1.3;
	margin-top: 5px;
	letter-spacing: -1px;
}
.seihin_joho ul.seihin_list > li a:hover .seihin_ttl {
	text-decoration: underline;
}
.seihin_joho ul.seihin_list > li a .spec {
	margin-top: 10px;
}
.seihin_joho ul.seihin_list > li a .spec dl {
	display: flex;
	flex-wrap: wrap;
}
.seihin_joho ul.seihin_list > li a .spec dl + dl {
	margin-top: 3px;
}
.seihin_joho ul.seihin_list > li a .spec dl dt {
	background-color: #169a5a;
	color: #fff;
	font-size: 17px;
	width: 25%;
	padding: 10px 15px;
	box-sizing: border-box;
	letter-spacing: -1px;
}
.seihin_joho ul.seihin_list > li a .spec dl dd {
	background-color: #eeeeee;
	width: 75%;
	padding: 10px 15px;
	box-sizing: border-box;
	letter-spacing: -1px;
}

@media screen and (max-width:1600px) {
	/*== カテゴリ検索 ==*/
	.search_cat .inner {
		max-width: 1200px;
	}

	/*== タグ検索 ==*/
	.search_tag .inner {
		max-width: 1200px;
	}
	.search_tag .search_box {
		padding: 25px;
	}

	/*== 製品情報一覧リスト ==*/
	.seihin_joho {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.seihin_joho .inner {
		max-width: 1200px;
	}
	.seihin_joho ul.seihin_list > li a .seihin_ttl {
		font-size: 24px;
	}
	.seihin_joho ul.seihin_list > li a .spec dl dt {
		font-size: 16px;
		padding: 10px;
	}
	.seihin_joho ul.seihin_list > li a .spec dl dd {
		font-size: 16px;
		padding: 10px;
	}
}


@media screen and (max-width:1300px) { 
	/*== カテゴリ検索 ==*/
	.search_cat {
		padding-bottom: 30px;
	}
	.search_cat .inner {
		max-width: 1100px;
	}
	.search_cat .search_box div a {
		height: 65px;
		line-height: 60px;
		font-size: 21px;
	}

	/*== タグ検索 ==*/
	.search_tag {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.search_tag .inner {
		max-width: 1100px;
	}
	.search_tag .search_box div + div {
		margin-top: 30px;
	}
	.search_tag .search_box div h4 {
		font-size: 21px;
	}
	.search_tag .search_box div ul.tag_list {
		margin-top: 10px;
	}
	.search_tag .search_box div ul.tag_list a {
		font-size: 16px;
	}

	/*== 製品情報一覧リスト ==*/
	.seihin_joho {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.seihin_joho .inner {
		max-width: 1100px;
	}
	.seihin_joho ul.seihin_list > li a .img_photo {
		padding: 20px;
	}
	.seihin_joho ul.seihin_list > li a .img_photo .cat {
		top: 35px;
		left: 35px;
		padding: 5px 15px;
		font-size: 14px;
	}
}


/*===================
  製品情報(詳細)ページ
====================*/
.kv_seihin_single {
	background-color: #e7e0d4;
}
.seihin_single {
	padding-bottom: 100px;
}

/*== 基本情報 ==*/
.seihin_single .basic {
	background-color: #e7e0d4;
	padding-top: 80px;
	padding-bottom: 200px;
}
.seihin_single .basic .basic_box {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0;
}
.seihin_single .basic .basic_box .img_photo {
	max-width: 500px;
    width: 100%;
	background-color: #f7f7f7;
	box-shadow: 5px 5px 5px rgba(0,0,0,.3);
	padding: 30px;
	box-sizing: border-box;
	position: relative;
}
.seihin_single .basic .basic_box .img_photo img {
	border: 3px solid #d8d2c7;
	box-sizing: border-box;
}
.seihin_single .basic .basic_box .txt_box {
	max-width: 940px;
	width: 100%;
	padding-left: 50px;
	box-sizing: border-box;
}
.seihin_single .basic .basic_box .txt_box .cat {
	display: inline-block;
	font-weight: bold;
	color: #fff;
	background-color: #F7941D;
	border-radius: 50px;
	padding: 7px 20px; 
}
.seihin_single .basic .basic_box .txt_box .cat + .cat {
	margin-left: 10px;
}
.seihin_single .basic .basic_box .txt_box .tag_list {
	position: relative;
	display: flex;
	margin-top: 20px;
	padding-left: 35px;
	flex-wrap: wrap;
	font-size: 16px;
	min-height: 30px;
}
.seihin_single .basic .basic_box .txt_box .tag_list:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	background-image: url(../images/common/pc/item_tag.svg);
	background-repeat: no-repeat;
	background-size: 20px;
	width: 20px;
	height: 35px;
}
.seihin_single .basic .basic_box .txt_box .tag_list li {
	position: relative;
	letter-spacing: -1px;
}
.seihin_single .basic .basic_box .txt_box .tag_list li:after {
	content: ",";
	padding-left: 5px;
	padding-right: 5px;
}
.seihin_single .basic .basic_box .txt_box .tag_list li:last-child:after {
	content: none;
}

.seihin_single .basic .basic_box .txt_box .seihin_ttl {
	font-size: 36px;
	font-weight: bold;
	line-height: 1.3;
	margin-top: 20px;
	letter-spacing: -1px;
}
.seihin_single .single_contents {
	position: relative;
	z-index: 0;
}
.seihin_single .single_contents:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #fff;
	transform: skewY(-12deg) translateY(0);
	z-index: -1;
	/*height: 1200px;*/
}
.seihin_single .single_contents:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #fff;
	transform: skewY(12deg) translateY(0);
	z-index: -99;
	/*height: 1200px;*/
}
.seihin_single .single_contents h4 {
	font-size: 36px;
	font-weight: bold;
	padding-left: 10px;
	border-left: 12px solid #169a5a;
	line-height: 1.5;
}
.seihin_single .inner {
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 50px;
	padding-bottom: 80px;
	border-bottom: 1px solid #000;
}

/*== スペック ==*/
.seihin_single .spec {}
.seihin_single .spec dl {
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
}
.seihin_single .spec dl + dl {
	margin-top: 3px;
}
.seihin_single .spec dl dt {
	background-color: #169a5a;
	color: #fff;
	width: 25%;
	padding: 15px 20px;
	box-sizing: border-box;
	letter-spacing: -1px;
    display: flex;
    align-items: center;
}
.seihin_single .spec dl dd {
	background-color: #eeeeee;
	width: 75%;
	padding: 15px 20px;
	box-sizing: border-box;
	letter-spacing: -1px;
}

/*== 製品動画 ==*/
.seihin_single .movie {
	margin-top: 80px;
}
.seihin_single .movie iframe {
	margin-top: 20px;
	width: 100%;
	height: 670px;
}

/*== 製品詳細 ==*/
.seihin_single .detail {
	margin-top: 80px;
}
.seihin_single .detail .gallery {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
	border-bottom: 1px solid #c4c4c4;
}
.seihin_single .detail .gallery li {
	max-width: 380px;
	width: 31%;
	margin-bottom: 30px;
}
.seihin_single .detail .gallery li + li {
	margin-left: 3.5%;
}
.seihin_single .detail .gallery li:nth-child(3n+1) {
	margin-left: 0;
}
.seihin_single .detail .gallery li .img_photo {
	border: 3px solid #d8d2c7;
}
.seihin_single .detail .gallery li p {
	text-align: left;
	margin-top: 5px;
	letter-spacing: -1px;
}

.seihin_single .detail .the_content {
	margin-top: 30px;
}
.seihin_single .detail .the_content h1 {
    font-size: 20px;
    font-weight: bold;
}


/*== 各種カタログ ==*/
.seihin_single .download {
	margin-top: 80px;
}
.seihin_single .download .download_box {
	max-width: 1000px;
	margin: 0 auto;
	margin-top: 80px;
}
.seihin_single .download .download_box .download_btm + .download_btm {
	margin-top: 50px;
}
.seihin_single .download .download_box .download_btm a {
	width: 100%;
	height: 80px;
	display: inline-block;
	text-align: center;
	line-height: 78px;
	border-radius: 50px;
	background-color: #f09700;
	transition: .2s;
}
.seihin_single .download .download_box .download_btm a:hover {
	background-color: #000;
	transition: .2s;
}
.seihin_single .download .download_box .download_btm a span {
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	position: relative;
}
.seihin_single .download .download_box .download_btm a span:before {
	content: "";
	position: absolute;
	top: 8px;
	left: -42px;
	background-image: url(../images/common/pc/item_download.svg);
	background-repeat: no-repeat;
	background-size: 30px;
	width: 30px;
	height: 25px;
}
/*最新のsafari用*/
_::-webkit-full-page-media, _:future, :root .seihin_single .download .download_box .download_btm a span:before {
	top: 5px;
}
/*古いsafari用*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, .seihin_single .download .download_box .download_btm a span:before {
		top: 5px;
	}
}

.seihin_single .back_btn {
	text-align: center;
	margin-top: 80px;
}

@media screen and (max-width:1600px) {
	/*== 基本情報 ==*/
	.seihin_single .basic {
		padding-top: 50px;
		padding-bottom: 200px;
	}
	.seihin_single .basic .basic_box {
		max-width: 1200px;
	}
	.seihin_single .basic .basic_box .txt_box {
		padding-left: 40px;
	}
	.seihin_single .basic .basic_box .txt_box .seihin_ttl {
		font-size: 32px;
	}

	/*== スペック ==*/
	.seihin_single .single_contents h4 {
		line-height: 1.3;
		border-left: 10px solid #169a5a;
	}
}

@media screen and (max-width:1300px) { 
	/*== 基本情報 ==*/
	.seihin_single .basic .basic_box {
		max-width: 1100px;
	}
	.seihin_single .basic .basic_box .txt_box .cat {
		padding: 5px 15px;
		font-size: 14px;
	}

	.seihin_single .inner {
		max-width: 1100px;
	}

	/*== スペック ==*/
	.seihin_single .spec dl dt {
		max-width: 350px;
	}
	.seihin_single .spec dl dd {
		max-width: 750px;
	}

	/*== 製品動画 ==*/
	.seihin_single .movie {
		margin-top: 50px;
	}
	
	/*== 製品詳細 ==*/
	.seihin_single .detail {
		margin-top: 50px;
	}
	.seihin_single .detail .gallery li {
		width: 32%;
	}
	.seihin_single .detail .gallery li p {
		text-align: left;
	}
	
	/*== 各種カタログ ==*/
	.seihin_single .download {
		margin-top: 50px;
	}
	.seihin_single .download .download_box {
		max-width: 800px;
		margin-top: 50px;
	}
}



/*===================
  会社案内ページ
====================*/
.kv_kaisya .kv_ttl {
	border: none;
}
/*== 経営理念 ==*/
.philosophy {
	z-index: 0;
}
.philosophy .creation {
	margin-top: -250px;
	padding-top: 350px;
	padding-bottom: 120px;
	position: relative;
	clip-path: inset(0);
}
.philosophy .creation > img {
	object-fit: cover;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -99;
}
.philosophy .creation .inner {}

.philosophy .creation h3 {
	text-align: center;
}
.philosophy .creation h3 span {
	display: inline-block;
	font-weight: 800;
	font-family: Noto Serif JP;
}
.philosophy .creation h3 .px60 {
	font-size: 60px;
}
.philosophy .creation h3 .px80 {
	font-size: 80px;
}
.philosophy .creation h3 .green {
	color: #169a5a;
}
.philosophy .creation h3 .orange {
	color: #f09700;
}
.philosophy .creation h3 .row {
	display: block;
	line-height: 1;
}
.philosophy .creation p {
	text-align: center;
	font-size: 60px;
	font-weight: 800;
	font-family: Noto Serif JP;
	margin-top: 50px;
}

.philosophy .txt_box {
	padding-top: 80px;
	padding-bottom: 80px;
	background-color: #fff;
}
.philosophy .txt_box p {
	text-align: center;
	font-size: 28px;
	line-height: 2.6429
}

@media screen and (max-width:1600px) { 
	.philosophy .creation {
		padding-top: 250px;
		margin-top: -200px;
	}
	.philosophy .txt_box {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.philosophy .txt_box p {
		font-size: 24px;
	}
}

@media screen and (max-width:1440px) { 
}

@media screen and (max-width:1300px) { 
	.philosophy .creation h3 .px80 {
		font-size: 60px;
	}
	.philosophy .creation h3 .px60 {
		font-size: 48px;
	}
	.philosophy .creation p {
		font-size: 48px;
		margin-top: 25px;
	}
	.philosophy .creation {
		padding-bottom: 80px;
	}
	.philosophy .txt_box p {
		font-size: 21px;
		line-height: 2.4;
	}
}


/*== ご挨拶 ==*/
.greeting {
	padding-top: 130px;
	padding-bottom: 130px;
	background-color: #f7f7f7;
}
.greeting .inner {
	max-width: 1200px;
	margin: 0 auto;
}
.greeting_box {
	margin-top: 50px;
}
.greeting_box .img_box {
	position: relative;
}
.greeting_box .img_box .sticky {
	position: sticky;
	top: 150px;
}
.greeting_box .img_box .img_photo {
	max-width: 500px;
	padding: 10px;
	background-color: #fff;
	box-shadow: 5px 5px 5px rgba(0,0,0,.3);
	font-size: 0;
}
.greeting_box .img_box .img_photo + .img_photo {
	margin-top: 30px;
}
.greeting_box .img_box .img_photo img {
}
.greeting_box .txt_box {
	max-width: 700px;
	padding-left: 80px;
	box-sizing: border-box;
	margin-top: 50px;
}

@media screen and (max-width:1600px) { 
	.greeting {
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.greeting_box {
		margin-top: 50px;
	}
	.greeting_box .txt_box {
		padding-left: 80px;
	}
}

@media screen and (max-width:1440px) { 
}

@media screen and (max-width:1300px) { 
	.greeting {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.greeting .inner {
		max-width: 1100px;
	}
	.greeting_box .txt_box {
		padding-left: 50px;
	}
}


/*== 会社概要 ==*/
.company {
	padding-top: 130px;
	padding-bottom: 130px;
}
.company .inner {
	max-width: 1200px;
	margin: 0 auto;
}
.company .overview {
	margin-top: 50px;
}
.company .overview dl {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #c4c4c4;
}
.company .overview dl:last-child {
	border-bottom: 1px solid #c4c4c4;
}
.company .overview dl dt {
	max-width: 300px;
	width: 100%;
	background-color: #eeeeee;
	padding-top: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
	box-sizing: border-box;
	font-size: 18px;
	font-weight: bold;
}
.company .overview dl dd {
	max-width: 900px;
	width: 100%;
	background-color: #fff;
	padding-top: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
	box-sizing: border-box;
	font-size: 18px;
}
.company .overview dl dd a {
	text-decoration: underline;
}
.company .overview dl dd a:hover {
	color: #f09700;
}

@media screen and (max-width:1600px) { 
	.company {
		padding-top: 100px;
		padding-bottom: 100px;
	}
}

@media screen and (max-width:1440px) { 
}

@media screen and (max-width:1300px) { 
	.company {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.company .inner {
		max-width: 1100px;
	}
	.company .overview dl dt {
		max-width: 250px;
		padding-bottom: 25px;
		padding-left: 25px;
	}
	.company .overview dl dd {
		max-width: 850px;
		padding-bottom: 25px;
		padding-left: 25px;
	}
}


/*===================
  新着情報ページ
====================*/
.kv_news .inner {
	max-width: 1200px;
}

/*== 新着情報一覧 ==*/
.whats-new {
	padding-top: 80px;
	padding-bottom: 100px;
}
.whats-new .inner {
	max-width: 1000px;
	margin: 0 auto;
}
.whats-new .news_list {
}
.whats-new .news_list li {
	border-top: 1px solid #c4c4c4;
}
.whats-new .news_list li:last-child {
	border-bottom: 1px solid #c4c4c4;
}
.whats-new .news_list li a {
	display: flex;
	align-items: center;
	padding: 45px 20px;
	transition: .2s;
}
.whats-new .news_list li a:hover {
	background-color: #f7f7f7;
	transition: .2s;
}
.whats-new .news_list li a .time {
	display: inline-block;
	margin-right: 15px;
}
.whats-new .news_list li a .cat {
	display: inline-block;
	color: #fff;
	background-color: #f7941d;
	border-radius: 50px;
	padding: 4px 20px 5px;
	letter-spacing: -1px;
	margin-right: 15px;
}
.whats-new .news_list li a: h3 {
	font-size: 21px;
}
.whats-new .news_list li a:hover h3 {
	text-decoration: underline;
}

.whats-new .pagination {
	margin-top: 50px;
}
.whats-new .pagination .page-numbers.current {
	background-color: #f7941d;
}
.whats-new .pagination .page-numbers:hover {
	background-color: #f7941d;
}

/*== 新着情報詳細 ==*/
.whats-new .single_box .ttl_box {
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 30px;
}
.whats-new .single_box .ttl_box .time {
	margin-right: 15px;
}
.whats-new .single_box .ttl_box .cat {
	display: inline-block;
	color: #fff;
	background-color: #f7941d;
	border-radius: 50px;
	padding: 4px 20px 5px;
	letter-spacing: -1px;
	margin-right: 15px;
}
.whats-new .single_box .ttl_box h3 {
	font-size: 36px;
	margin-top: 10px;
}
.whats-new .single_box .contents {
	padding: 50px 10px;
	border-top: 1px solid #c4c4c4;
	border-bottom: 1px solid #c4c4c4;
}
.whats-new .single_box .contents h1 {
	font-size: 28px;
}
.whats-new .single_box .contents h2 {
	font-size: 26px;
}
.whats-new .single_box .contents h3 {
	font-size: 24px;
}
.whats-new .single_box .contents h4 {
	font-size: 22px;
}
.whats-new .single_box .contents h5 {
	font-size: 20px;
}
.whats-new .single_box .contents h6 {
	font-size: 18px;
}
.whats-new .single_box .contents p strong {
	font-weight: 800;
}
.whats-new .single_box .contents p img {
	width: auto;
}
.whats-new .back_btn {
	text-align: center;
	margin-top: 50px;
}


@media screen and (max-width:1600px) { 

	/*== 新着情報一覧 ==*/
	.whats-new .news_list li a {
		padding: 35px 20px;
	}
	.whats-new .news_list li a .cat {
		padding: 4px 18px 5px;
		font-size: 16px;
	}

	/*== 新着情報詳細 ==*/
	.whats-new .single_box .ttl_box .cat {
		padding: 4px 18px 5px;
		font-size: 16px;
	}
	.whats-new .single_box .ttl_box h3 {
		font-size: 28px;
	}
}

@media screen and (max-width:1440px) { 
}

@media screen and (max-width:1300px) { 
	.whats-new {
		padding-top: 50px;
	}
	/*== 新着情報一覧 ==*/
	.kv_news .inner {
		max-width: 1100px;
	}

	/*== 新着情報詳細 ==*/
}


/*===================
  個人情報保護方針ページ
====================*/
.kv_kojinjoho .inner {
	max-width: 1200px;
}
.kv_kojinjoho p {
	margin-top: 30px;
	line-height: 2;
}

.kojinjoho {
	max-width: 1000px;
	margin: 0 auto;
	padding-top: 50px;
	padding-bottom: 100px;
}
.kojinjoho_box {}

.kojinjoho_box dl {
	border-top: 1px solid #c4c4c4;
	padding: 50px 20px;
}
.kojinjoho_box dl + dl {
	border-bottom: 1px solid #c4c4c4;
}
.kojinjoho_box dl dt h3 {
	font-size: 36px;
	padding-left: 10px;
	border-left: 12px solid #169a5a;
	line-height: 1.3;
}
.kojinjoho_box dl dd {
	padding-left: 20px;
	padding-right: 20px;
}
.kojinjoho_box dl dd p {
	margin-top: 20px;
	line-height: 2;
}
.kojinjoho_box dl dd ul {
	margin-top: 20px;
	line-height: 2;
}
.kojinjoho .txt_box {
	margin-top: 10px;
}
.kojinjoho .txt_box .company_name {
	margin-top: -10px;
}
.kojinjoho .txt_box .company_name span {
	font-size: 28px;
	padding-left: 15px;
}

@media screen and (max-width:1600px) { 
	.kojinjoho_box dl dt h3 {
		font-size: 28px;
	}
}
@media screen and (max-width:1440px) { 
}
@media screen and (max-width:1300px) { 
	.kv_kojinjoho .inner {
		max-width: 1100px;
	}
}


/*===================
  お問い合せページ
====================*/
.kv_otoiawase .inner {
	max-width: 1200px;
}
.kv_otoiawase p {
	margin-top: 50px;
	text-align: center;
	line-height: 2;
}
.kv_otoiawase p a {
	text-decoration: underline;
}
.kv_otoiawase p a:hover {
	color: #ed1c24;
}

/*お問い合わせフォーム*/
.contact {
	padding-top: 50px;
	padding-bottom: 130px;
}
.contact .inner {
	max-width: 1000px;
	margin: 0 auto;
}

#formWrap {}
.formTable {
	display: block;
	width: 100%;
	margin: 0 auto;
	padding-left: 50px;
	padding-right: 50px;
	box-sizing: border-box;
	padding-top: 12px;
	padding-bottom: 50px;
	background: #fff;
	box-shadow: 5px 5px 5px rgba(0,0,0,.3);
}

.formTable .textarea dt {
	padding: 30px 20px 0 0;
	vertical-align: top;
}

.formTable dd {
	width: 100%;
	padding-top: 0;
}
.formTable dt {
	font-weight:normal;
	text-align: left;
	border: none;
	padding: 38px 20px 0 0;
	box-sizing: border-box;
}
.formTable dt .required {
	margin-left: 10px;
	background-color: #ed1c24;
	padding: 2px 10px 3px;
	font-size: 16px;
	color: #fff;
}
.formTable dd .record_area {
	padding: 10px 13px;
	border: 1px solid #999;
	color: #555;
	width: 100%;
	box-sizing: border-box;
	margin-top: 10px;
	height: 48px;
	font-size: 16px;
	padding-left: 15px;
	background-color: #fff;
}
.formTable .textarea dd .record_area {
	height: 350px;
}
.formTable dd .record_area:focus {
	outline: none;
}

.formBtnBox {
	margin-top: 80px;
	text-align: center;
	display: flex;
	justify-content: center;
	gap: 30px;
}
.formBtnBox .wpcf7c-elm-step1 {
	max-width: 270px;
	width: 100%;
}
.formBtnBox .wpcf7c-elm-step1 input[type="submit"] {
	display: inline-block;
	text-align: center;
	max-width: 270px;
	width: 100%;
	height: 70px;
	line-height: 68px;
	border: 1px solid #f09700;
	border-radius: 50px;
	cursor: pointer;
	background-color: #f09700;
	font-size: 18px;
	color: #fff;
}
.formBtnBox .wpcf7c-elm-step1 input[type="submit"]:hover {
	transition: .3s;
	opacity: .8;
	border: 1px solid #000;
	background-color: #000;
}

.formBtnBox .wpcf7c-elm-step2.back input[type="submit"] {
	display: inline-block;
	text-align: center;
	max-width: 230px;
	width: 100%;
	height: 55px;
	line-height: 53px;
	border: 1px solid #000;
	background-color: #fff;
	border-radius: 50px;
	cursor: pointer;
	color: #000;
	font-size: 18px;
}
.formBtnBox .wpcf7c-elm-step2 input[type="submit"]:hover {
	background-color: #000;
	color: #fff;
}


@media screen and (max-width:1600px) { 
	.contact {
		padding-bottom: 100px;
	}
	.formBtnBox {
		margin-top: 50px;
	}
}

@media screen and (max-width:1440px) {

}

@media screen and (max-width:1300px) { 
	.kv_otoiawase .inner {
		max-width: 1100px;
	}

}


/*== 確認画面 ==*/
/*確認画面の【メールアドレス（確認）】を非表示*/
.mw_wp_form_confirm .email-confirm-wrap {
  display: none;
}
.mw_wp_form_confirm dl {
	border-bottom: 1px solid #c4c4c4;
	padding-bottom: 20px;
}
.mw_wp_form_confirm dl dt {
	padding-top: 20px;
}
.mw_wp_form_confirm .formBtnBox .wpcf7c-elm-step2.back {
	max-width: 230px;
	width: 100%;
}

@media screen and (max-width:1600px) { 
}
@media screen and (max-width:1440px) { 
}
@media screen and (max-width:1300px) { 
}



/*== 完了画面 ==*/
.thanks {
	padding-top: 100px;
	padding-bottom: 130px;
}
.thanks .inner {
	max-width: 1000px;
	margin: 0 auto;
}
.thanks_box {}
.thanks h3 {
	text-align: center;
	font-size: 48px;
	font-weight: 800;
}
.thanks p {
	text-align: center;
	font-size: 21px;
	font-weight: 600;
	margin-top: 50px;
	line-height: 2;
}
.thanks .back_btn {
	text-align: center;
	margin-top: 50px;
}

@media screen and (max-width:1600px) {
	.thanks {
		padding-bottom: 100px;
	} 
}
@media screen and (max-width:1440px) { 
}
@media screen and (max-width:1300px) { 
}