@charset "utf-8";
/*
Theme Name: エルゴシーティング株式会社
Author: Kotaro Saito
Description:  エルゴシーティング株式会社のテーマ
version: 1.0.0
*/
/*common
-----------------------------------------------------------------------------------------*/
html,body{
	width: 100%;
	margin: 0 auto;
	padding: 0;
	text-align: center;
	font-family: "Noto Sans JP", serif;
	font-size: 16px;
	color: rgba(76, 44, 15, 1);
	background-color: rgba(250, 243, 221, 1);
}
.font-aboreto {
	font-family: "Aboreto", serif;
	font-weight: 400;
	font-style: normal;
 }
 .font-fahkwang {
	font-family: "Fahkwang", serif;
	font-weight: 400;
	font-style: normal;
 } 
@media screen and (min-width:768px) {
.sp{
	display: none;
}
}
@media screen and (max-width:767px) {
.pc{
	display: none;
}
html,body{
	font-size: 14px;
}
}
/*header
-----------------------------------------------------------------------------------------*/
.header-top{
	padding: 20px 30px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}
.header-flex{
	justify-content: space-between;
	align-items: center;
	gap: 25px;
}
.header-logo{
	width: 400px;
}
.header-link-flex{
	justify-content: flex-end;
	align-items: center;
	gap: 25px;
}
.header-link{
	color: rgba(76, 44, 15, 1);
	font-size: 1.2rem;
	font-weight: 500;
	position: relative;
}
.header-link::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: rgba(76, 44, 15, 1);
	bottom: 0px;
	transform: scale(0, 1);
	transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
	transition: transform 0.3s;   /*変形の時間*/
}
	
.header-link:hover::after {
	transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}
.header-contact{
	background-color: rgba(0, 110, 62, 1);
	color: rgba(255, 255, 255, 1);
	font-size: 1.2rem;
	padding: 20px;
	width: 240px;
	border-radius: 10px;
	font-weight: 500;
	display: block;
}
.sp-navigation{
	display: none;
}
@media screen and (max-width:1600px) {
	.header-contact {
		width: 160px;
	}
	.header-logo {
		width: 320px;
  }
}
@media screen and (max-width:1430px) {
	.header-contact {
		padding: 10px;
		width: 150px;
	}
	.header-link-flex {
		gap: 20px;
	}
	.header-link {
		font-size: 1rem;
	}
	.header-top {
		padding: 20px;
	}
	.header-logo {
		width: 290px;
	}
}
@media screen and (max-width:1200px) {
	.sp-navigation{
		display: block;
		z-index: 999;
		position: relative;
	}
	.header-link-flex{
		display: none;
	}
	.drawer-nav{
		padding: 100px 20px;
	}
	.header-contact{
		margin: 20px auto 0;
		display: block;
	}
	.drawer--right.drawer-open button.drawer-hamburger {
		right: 0.25rem;
	}
	.header-link:hover::after {
		display: none;
	}
}
@media screen and (max-width:767px) {
	.header-logo {
		width: 180px;
	}
	.header-top {
		padding: 15px;
  }
}
/*footer
-----------------------------------------------------------------------------------------*/
.footer-contact-top{
	background-color: rgba(255, 255, 255, 1);
	width: 80%;
	border-radius: 0 50px 50px 0;
	padding: 100px 0 70px;
	z-index: 1;
}
.pos-rel{
	position: relative;
}
.footer-contact-line{
	position: absolute;
	left: 0;
	bottom: -100px;
	width: 35%;
	opacity: 0.5;
}
.title-eng{
	font-size: 1.7rem;
	margin-bottom: 5px;
}
.title-ja{
	font-size: 2.1rem;
	font-weight: 500;
	margin-bottom: 50px;
}
.footer-contact{
	background-color: rgba(0, 110, 62, 1);
	color: rgba(255, 255, 255, 1);
	font-size: 1.2rem;
	padding: 20px;
	width: 350px;
	border-radius: 30px;
	font-weight: 500;
	display: block;
	margin: 60px auto 0;
}
.arrow-right{
	line-height: 1;
	position: relative;
	background: rgba(255, 255, 255, 1);
	width: 30px;
	height: 2px;
	display: inline-block;
	top: -5px;
	right: -30px;
	transition:1s;
}
.arrow-right::before {
	content: "";
	width: 10px;
	height: 10px;
	border: 2px solid rgba(255, 255, 255, 1);
	position: absolute;
	box-sizing: border-box;
	border-left: 0;
	border-bottom: 0;
	transform: rotate(45deg);
	transform-origin: top right;
	top: 50%;
	right: -1px;
}
.footer-contact:hover .arrow-right{
	right: -50px;
}
.footer-circle-big{
	position: absolute;
	width: 170px;
	right: -80px;
	bottom: 100px;
}
.footer-circle-small{
	position: absolute;
	width: 60px;
	right: -150px;
	bottom: 50px;
}
div.copy-right{
	margin-top: -200px;
	padding: 350px 150px 30px;
	background-color: rgba(76, 44, 15, 1);
}
.footer-link-flex{
	/* gap: 70px; */
	width: 80%;
	margin: auto;
}
.footer-link-box{
	margin-right: 70px;
}
.footer-link-flex a{
	display: block;
	line-height: 2.5;
	text-align: left;
}
/* .footer-link-box{
	margin-top: 30px;
} */
.footer-link{
	color: rgba(255, 255, 255, 1);
	position: relative;
}
.footer-link::after {
	position: absolute;
	top: 35px;
	left: 0;
	content: '';
	width: 80%;
	height: 1px;
	background: rgba(255, 255, 255, 1);
	bottom: -5px;
	transform: scale(0, 1);
	transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
	transition: transform 0.3s;   /*変形の時間*/
	}
	.footer-link-blog::after{
		width: 20%;
	}
	
.footer-link:hover::after {
	transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
	}
.footer-link-line::after {
	position: absolute;
	top: 35px;
	left: 33px;
	content: '';
	width: 70%;
	height: 1px;
	background: rgba(255, 255, 255, 1);
	bottom: -5px;
	transform: scale(0, 1);
	transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
	transition: transform 0.3s;   /*変形の時間*/
}
	
.footer-link-line:hover::after {
	transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}
.footer-privacy::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: rgba(255, 255, 255, 1);
	bottom: -5px;
	transform: scale(0, 1);
	transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
	transition: transform 0.3s;   /*変形の時間*/
}
	
.footer-privacy:hover::after {
	transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}
.footer-link-gray{
	color: rgba(139, 131, 124, 1);
}
.footer-link-line{
	color: rgba(255, 255, 255, 1);
	padding-left: 20px;
	position: relative;
}
.footer-category-flex{
	gap: 0 30px;
}
.footer-link-category{
	width: 43%;
}
.footer-category-box{
	width: 43%;
}
.footer-logo{
	width: 30%;
	display: block;
	margin: 150px 0 50px;
}
.footer-copyright{
	color: rgba(255, 255, 255, 1);
}
.footer-privacy{
	color: rgba(255, 255, 255, 1);
	margin-left: 50px;
	position: relative;
}
.footer-bg{
	position: absolute;
	width: 35%;
	right: 0;
	bottom: 0;
}
.footer-copy-contact{
	padding: 150px 200px 30px;
	background-color: rgba(76, 44, 15, 1);
}
@media screen and (max-width:1600px) {
	.footer-contact-line {
		left: -40px;
		bottom: -70px;
		width: 45%;
		z-index: -1;
	}
	.footer-link-flex {
		width: 90%;
	}
}
@media screen and (max-width:1430px) {
	.footer-link-flex {
		width: 100%;
	}
	div.copy-right {
		padding: 350px 80px 30px;
	}
	.footer-copy-contact {
		padding: 150px 120px 30px;
  }
}
@media screen and (max-width:1200px) {
	.footer-contact-top {
		width: 85%;
	}
	.footer-circle-big {
		width: 130px;
		bottom: 160px;
	}
	.footer-circle-small {
		right: -100px;
		bottom: 70px;
	}
	.footer-contact-line {
		left: -50px;
		bottom: -80px;
		width: 55%;
	}
	div.copy-right {
		padding: 350px 0px 30px;
	}
	.footer-copy-contact {
		padding: 150px 50px 30px;
  }
  .footer-category-box {
		width: 48%;
	}
}
@media screen and (max-width:1023px) {
	.footer-contact-line {
		left: -90px;
		bottom: -50px;
		width: 70%;
	}
	.footer-link-flex{
		display: none;
	}
	.footer-logo {
		width: 60%;
		margin: 0px 0 50px;
	}
	div.copy-right {
		padding: 270px 0px 30px;
	}
	.footer-privacy {
		margin-left: 20px;
	}
}
@media screen and (max-width:767px) {
	.footer-contact-top {
		width: 90%;
		border-radius: 20px;
		padding: 30px 0;
		margin: auto;
	}
	.footer-contact {
		width: 90%;
		margin: 20px auto 0;
	}
	.title-ja {
		margin-bottom: 15px;
	}
	.footer-contact-line{
		display: none;
	}
	.footer-circle-small,
	.footer-circle-big{
		display: none;
	}
	.footer-logo {
		width: 90%;
		margin: 0px 0 20px;
	}
	div.copy-right {
		padding: 220px 0px 30px;
	}
	.footer-privacy{
		display: none;
	}
}
/*ブログ
-----------------------------------------------------------------------------------------*/
.home-all-left{
	width: 20%;
}
.home-right{
	width: 80%;
	z-index: 10;
	position: relative;
}
.home-archive{
	width: 20%;
}
.side-contents{
	padding: 10px;
	width: 100%;
	margin-bottom: 50px;
	gap: 20px;
	border-radius: 10px;
	background-color: rgba(255, 255, 255, 1);
	justify-content: space-between;
}
.side-report{
	font-size: 1.2rem;
}
.select-archive{
	border: none;
	font-size: 1rem;
	color: rgba(152, 152, 152, 1);
}
.home-link{
	text-align: left;
}
.home-link a{
	display: inline-block;
	margin-bottom: 20px;
	color: rgba(76, 44, 15, 1);
	position: relative;
	padding-left: 50px;
	background-color: transparent;
	width: 200px;
}
.home-link a::before{
	background-color: rgba(76, 44, 15, 1);
	height: 15px;
	width: 15px;
	position: absolute;
	left: 20px;
	top: 7px;
	content: '';
	border-radius: 50%;
}
.home-list{
	text-align: left;
}
.home-list a{
	color: rgba(76, 44, 15, 1);
	display: block;
}
.home-link a:hover{
	background-color: rgba(0, 110, 62, 1);
	color: rgba(255, 255, 255, 1);
	padding: 10px 0 10px 50px;
	width: 200px;
	/* text-align: center; */
	border-radius: 30px;
}
.home-link a:hover::before{
	opacity: 0;
}
.home-ymd{
	font-size: 0.9rem;
	color: rgba(76, 44, 15, 1);
	margin-right: 20px;
}
.home-category{
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 1);
}
.home-category span{
	padding: 3px 10px;
	text-align: center;
	width: 170px;
	display: block;
	border-radius: 30px;
	background-color: rgba(152, 152, 152, 1);
}
.home-category span.news{
	background-color: rgba(152, 152, 152, 1);
}
.home-category span.ergonomics{
	background-color: rgba(210, 118, 32, 1);
}
.home-category span.international{
	background-color: rgba(0, 110, 62, 1);
}
.home-category span.study{
	background-color: rgba(214, 205, 85, 1);
}
.home-category span.search-chair {
	background-color: rgba(76, 44, 15, 1);
}
.home-category span.older{
	background-color: rgba(255, 255, 255, 1);
	color: rgba(76, 44, 15, 1);
}
.home-flex{
	margin-bottom: 10px;
}
.home-title{
	display: block;
	padding-bottom: 15px;
	margin-bottom: 30px;
	border-bottom: 1px dotted rgba(76, 44, 15, 1);
}
.wp-pagenavi a, .wp-pagenavi span{
	border: none;
	color: rgba(76, 44, 15, 1);
	margin: 10px;
	padding: 0 10px;
}
.wp-pagenavi span.current{
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(76, 44, 15, 1);
}
a.nextpostslink,a.previouspostslink{
	background-color: rgba(76, 44, 15, 1);
	border-radius: 50%;
	color: rgba(255, 255, 255, 1);
	padding: 3px 10px;
	font-weight: 500;
	font-size: 1.2rem;
}
@media screen and (max-width:1430px) {
	.home-archive {
		width: 25%;
  }
}
@media screen and (max-width:1200px) {
	.home-archive {
		width: 30%;
	}
	.home-all-left {
		width: 23%;
	}
	.home-right {
		width: 77%;
	}
}
@media screen and (max-width:1023px) {
	.home-archive {
		width: 40%;
	}
	.home-all-left {
		width: 25%;
	}
	.home-right {
		width: 75%;
	}
	.home-link a {
		font-size: 0.8rem;
		padding-left: 20px;
	}
	.home-link a::before {
		height: 10px;
		width: 10px;
		left: 0px;
	}
	.home-link a:hover{
		padding: 10px 0 10px 20px;
		width: 150px;
	}
	
}
@media screen and (max-width:767px) {
	.home-archive {
		width: 80%;
  }
	.home-all-left {
		width: 100%;
	}
	.side-contents {
		padding: 10px;
		width: 100%;
		margin-bottom: 25px;
	}
	.home-link a {
		font-size: 1rem;
		margin-left: 40px;
	}
	.home-right {
		width: 100%;
		margin-top: 20px;
  }
}
/*single ブログ
-----------------------------------------------------------------------------------------*/
.single-ymd{
	color: rgba(156, 156, 156, 1);
}
.single-title{
	font-size: 1.7rem;
	font-weight: 500;
	margin: 25px 0 0;
}
.single-img{
	width: 80%;
	margin: 120px auto 0px;
}
.single-content{
	margin: 120px auto 0;
}
.single-content p:not(:last-child){
	margin-bottom: 15px;
}
.single-content img {
	width: auto;
	max-width: 100%;
	margin: 20px auto;
}
.single-img img{
	object-fit: cover;
	height: auto;
}
.single-box{
	text-align: left;
	width: 80%;
	margin: auto;
}
.single-link{
	border: 1px solid rgba(76, 44, 15, 1);
	padding: 20px 50px;
	width: 250px;
	display: block;
	color: rgba(76, 44, 15, 1);
	margin: 100px auto 0;
	border-radius: 50px;
	text-align: right;
	font-size: 1.1rem;
	font-weight: 500;
}
/* 左向き */
.arrow-left{
	line-height: 1;
	position: relative;
	background: rgba(76, 44, 15, 1);
	width: 20px;
	height: 2px;
	display: block;
	left: 0px;
	top: 15px;
	transition:0.5s;
}
.arrow-left::before {
	content: "";
	width: 10px;
	height: 10px;
	border: 2px solid rgba(76, 44, 15, 1);
	position: absolute;
	box-sizing: border-box;
	border-right: 0;
	border-bottom: 0;
	transform: rotate(-45deg);
	transform-origin: top left;
	top: 50%;
	left: -1px;
}
.single-link:hover .arrow-left{
	left: -20px;
}
@media screen and (max-width:1024px) {
	.single-img {
		width: 100%;
	}
}
@media screen and (max-width:767px) {
	.single-box {
		width: 100%;
	}
	.single-img {
		margin: 25px auto 0px;
	}
	.single-title {
		margin: 10px 0 0;
	}
	.single-content {
		margin: 20px auto 0;
	}
	.single-link {
		width: 100%;
		margin: 25px auto 0;
	}
}
@media screen and (max-width:767px) {
}
/*products製品情報
-----------------------------------------------------------------------------------------*/
.products-archive{
	margin-left: auto;
	z-index: 1;
	position: relative;
}
.products-right{
	margin: auto;
}
.products-list{
	padding-bottom: 75px;
	margin-bottom: 75px;
	border-bottom: 1px solid rgb(76,44,15);
}
.products-flex{
	gap: 100px;
	align-items: center;
}
.products-img{
	width: 30%;
}
.products-img{
	display: flex;
	align-items: center;
	height: 250px;
	background-color: rgba(255, 255, 255, 1);
	padding: 15px
}
.products-img img{
	object-fit: cover;
	height: 100%;
}
.products-img img.no-thumnails{
	width: 100%;
	height: auto;
}
.products-text{
	width: 50%;
}
.products-ymd{
	color: rgba(152, 152, 152, 1);
	margin-bottom: 15px;
}
.products-gt{
	background-color: rgba(76, 44, 15, 1);
	color: rgba(255, 255, 255, 1);
	border-radius: 50%;
	padding: 3px 10px;
	font-weight: 700;
	font-size: 1.2rem;
	position: absolute;
	top: 50%;
	right: 0;
}
@media screen and (max-width:1200px) {
	.products-right{
		width: 100%;
	}
}
@media screen and (max-width:1023px) {
	.products-flex {
		gap: 30px;
	}
}
@media screen and (max-width:767px) {
	.products-img {
		width: 100%;
	}
	.products-flex {
		gap: 15px;
	}
	.products-list {
		padding-bottom: 35px;
		margin-bottom: 35px;
	}
	.products-text {
		width: 100%;
	}
	.products-gt{
		display: none;
	}
}
/*single
-----------------------------------------------------------------------------------------*/
.single-youtube iframe{
	margin: 100px auto 0;
	height: 500px;
}
.single-movie video{
	width: 100%;
	margin: 100px auto 0;
}
.single-text{
	margin: 100px auto 0;
}
@media screen and (max-width:1023px) {
	.single-youtube iframe {
		height: 400px;
  }
}
@media screen and (max-width:767px) {
	.single-movie video {
		margin: 25px auto 0;
	}
	.single-text {
		margin: 25px auto 0;
	}
	.single-youtube iframe {
		margin: 25px auto 0;
		height: 250px;
  }
}
/*single
-----------------------------------------------------------------------------------------*/
@media screen and (max-width:767px) {
}
/*404
-----------------------------------------------------------------------------------------*/
div.error-message{
	font-size: 150%;
}
@media screen and (max-width:767px) {
div.error-message{
	font-size: 120%;
}
}
