@charset "utf-8" ;



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



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

       画面幅が1000px以下の時の設定

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




/*--
固有のマージンを持つ要素をリセット
------------------------------------*/

h2,h3,p {
	margin: 0;
	padding: 0;
}


/*--
コンテンツ全体の要素の大きさ・位置を指定
------------------------------------*/

.seihin {
	width: 100%;
	height: auto;
	min-height: 100%;
	position: relative;
	margin-top: 60px;
	display: inline-block;
	box-sizing: border-box;
	z-index: 0;
	overflow: hidden;
}



/*--
リスト部分の設定
------------------------------------*/

.content {
	width: 100%;
	height: auto;
	list-style: none;
	display: block;
	position: relative;
	top: 0;
}

.content li {
	width: 100%;
	height: 100px;
	display: block;
	position: relative;
	border-top: solid 1px #000;
	border-bottom: solid 1px #000;
	background: linear-gradient(to right,rgba(255,255,255,1) 30%,rgba(255,255,255,0.3) 100%);
}

.content li:nth-child(2) {
	margin-top: 550px;
}

.content li:last-child {
	margin-top: 800px;
	margin-bottom: 900px;
}

.content li h3 {
	width: auto;
	font-family: 'M PLUS 1p';
	font-size: 24px;
	font-weight: 300;
	letter-spacing: 0.3em;
	color: #000;
	white-space: nowrap;/*見出しの改行を強制的にオフに*/
	display: inline-block;
	position: absolute;
	bottom: 45px;
	left: 5%;
	z-index: 2;
	border-bottom: solid 1px #000;
}

.content li p {
	width: auto;
	font-family: 'M PLUS 1p';
	font-weight: 300;
	font-size: 14px;
	line-height: 1.75em;
	white-space: nowrap;
	color: #000;
	display: inline-block;
	position: absolute;
	top: 55px;
	left: 5%;
	z-index: 2;
}


/*--
背景画像の設定
------------------------------------*/

.content li:first-child:after {
	content: '';
	width: 100%;
	height: 100%;
	display: block;
	background-image: url('katei2.jpg');
	background-size: cover;
	background-position: center;
	position: relative;
	margin: 0 0 0 auto;
	z-index: -3;
}

.content li:nth-child(2):after {
	content: '';
	width: 100%;
	height: 100%;
	display: block;
	background-image: url('syukka2.jpg');
	background-size: cover;
	background-position: center;
	position: relative;
	margin: 0 0 0 auto;
	z-index: -3;
}

.content li:last-child:after {
	content: '';
	width: 100%;
	height: 100%;
	display: block;
	background-image: url('list4.jpg');
	background-size: cover;
	background-position: center;
	position: relative;
	margin: 0 0 0 auto;
	z-index: -3;
}


/*--
画面全体の設定
------------------------------------*/

.box1 {
	width: 100%;
	height: auto;
	display: inline-block;
	position: absolute;
	top: 120px;
	left: 0;
}

.box2 {
	width: 100%;
	height: auto;
	display: inline-block;
	position: absolute;
	top: 770px;
	left: 0;
}

.box3 {
	width: 100%;
	height: 800px;
	display: inline-block;
	position: absolute;
	top: 1670px;
	left: 0;
	overflow-x: scroll;
	overflow-y: hidden;
}

/*--
一つ目の文章の設定
------------------------------------*/

.firsttext {
	width: 100%;
	height: auto;
	position: relative;
	top: 0;
	left: 0;
	margin-top: 50px;
}

.firsttext:after {
	content: '';
	width: 80%;
	height: 100%;
	display: block;
	position: absolute;
	top: 10%;
	left: 15%;
	border-right: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	z-index: -1;
}

.firsttext h3 {
	width: 80%;
	font-family: 'M PLUS 1p';
	font-weight: 300;
	font-size: 20px;
	letter-spacing: 2px;
	text-align: left;
	margin-left: 10%;
}

.firsttext h3 > p{
	display: inline;
}

.firsttext > p {
	width: 80%;
	font-size: 12px;
	letter-spacing: 2px;
	line-height: 1.75em;
	margin: 30px 10% 30px 10%;
}


/*--
二つ目の文章の設定
------------------------------------*/

.secondtext {
	width: 100%;
	height: auto;
	position: relative;
	top: 0;
	left: 0;
	margin-top: 80px;
}

.secondtext:after {
	content: '';
	width: 80%;
	height: 100%;
	display: block;
	position: absolute;
	top: 10%;
	left: 15%;
	border-right: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	z-index: -1;
}

.secondtext h3 {
	width: 80%;
	font-family: 'M PLUS 1p';
	font-weight: 300;
	font-size: 20px;
	letter-spacing: 2px;
	text-align: left;
	margin-left: 10%;
}

.secondtext > p {
	width: 80%;
	font-size: 12px;
	letter-spacing: 2px;
	line-height: 1.75em;
	margin: 30px 10% 30px 10%;
}



/*--
表の全体設定
------------------------------------*/

.listbox ul {
	list-style: none;
	height: calc(100% / 20);
	width: 100%;
	display: flex;
}

.listbox ul li{
	display: flex;
	flex-direction: row;
}

.listbox {
	width: 1000px;
	height: calc(100% - 50px);
	position: absolute;
	top: 0;
	left: 0;
	margin-top: 50px;
}

.listbox * {
	list-style: none;
}

.listbox:before {
	content: '→右にスクロールしてください';
	width: auto;
	height: 20px;
	color: #000;
	font-size: 12px;
	display: block;
	position: absolute;
	bottom: 100%;
	left: 15px;
}


/*--
表の個別設定
------------------------------------*/

.listbox ul:nth-child(2n) {
	background-color: #eee;
}

.listbox > ul > li {
	height: 100%;
	width: calc(100% / 11);
	display: flex;
	flex-direction: row;
	position: relative;
	border-top: solid 1px #aaa;
	border-left: solid 1px #aaa;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.listbox .c1 {
	width: calc(100% / 22);
}

.listbox .trench {
	width: calc(100% / 22);
}

.listbox .needle {
	width: calc(100% / 22);
}

.listbox .iro {
	width: calc((100% / 22) * 4);
}

.listbox .konpou {
	width: calc((100% / 22) * 4);
}

.listbox li span {
	font-size: 11px;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	white-space: nowrap;
}

.film li:first-child {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border-right: solid 1px #aaa;
}

.film li:nth-child(2) {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}

.mm li:first-child {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border-right: solid 1px #aaa;
}

.mm li:nth-child(2) {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}

.color li:first-child {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border-right: solid 1px #aaa;
}

.color li:nth-child(2) {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}

.case li:first-child {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border-right: solid 1px #aaa;
}

.case li:nth-child(2) {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}

.needle {
	border-right: solid 1px #aaa;
}

.listbox > ul:last-child {
	border-bottom: solid 1px #aaa;
}




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

      　　lineH（見出し）の個別設定

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

.listbox .lineH {
	height: calc((100% / 21) * 2);
	width: 100%;
	display: flex;
}

.lineH li {
	height: 100%;
	width: calc(100% / 11);
	display: flex;
	flex-direction: row;
	position: relative;
	border-top: solid 1px #aaa;
	border-left: solid 1px #aaa;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.zaisitu .f {
	width: 100%;
	height: 50%;
	position: absolute;
	top: 0;
	left: 0;
	border-top: none;
	border-left: none;
}

.zaisitu .s {
	width: 50%;
	height: 50%;
	position: absolute;
	left: 0;
	bottom: 0;
	border-left: none;
}

.zaisitu .t {
	width: 50%;
	height: 50%;
	position: absolute;
	right: 0;
	bottom: 0;
}

.housou .f {
	width: 100%;
	height: 50%;
	position: absolute;
	top: 0;
	border-top: none;
	border-left: none;
}

.housou .s {
	width: 50%;
	height: 50%;
	position: absolute;
	left: 0;
	bottom: 0;
	border-left: none;
}

.housou .t {
	width: 50%;
	height: 50%;
	position: absolute;
	right: 0;
	bottom: 0;
}

.iro .f {
	width: 100%;
	height: 50%;
	position: absolute;
	top: 0;
	border-top: none;
	border-left: none;
}

.iro .s {
	width: 50%;
	height: 50%;
	position: absolute;
	left: 0;
	bottom: 0;
	border-left: none;
}

.iro .t {
	width: 50%;
	height: 50%;
	position: absolute;
	right: 0;
	bottom: 0;
}

.konpou .f {
	width: 100%;
	height: 50%;
	position: absolute;
	top: 0;
	border-top: none;
	border-left: none;
}

.konpou .s {
	width: 50%;
	height: 50%;
	position: absolute;
	left: 0;
	bottom: 0;
	border-left: none;
}

.konpou .t {
	width: 50%;
	height: 50%;
	position: absolute;
	right: 0;
	bottom: 0;
}

.neo,.role {
	width: 0;
	height: 0;
	display: none;
}

}



















@media screen and (min-width:1001px) {



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

       画面幅が1001px以上の時の設定

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




/*--
固有のマージンを持つ要素をリセット
------------------------------------*/

h2,h3,p {
	margin: 0;
	padding: 0;
}


/*--
コンテンツ全体の要素の大きさ・位置を指定
------------------------------------*/

.seihin {
	width: 100%;
	height: calc(100% - 150px);/*ウィンドウの高さからヘッダー・フッターの高さを除く*/
	min-height: 500px;
	position: absolute;
	top: 60px;
	bottom: 90px;
	border-top: solid 1px #000;
	box-sizing: border-box;
	overflow: hidden;
	z-index: 0;
}



/*--
リスト部分の設定
------------------------------------*/

.content {
	width: 100%;
	height: 60px;
	list-style: none;
	display: block;
	margin: 0;
	padding: 0;
	text-align: center;
	position: relative;
	background-color: #fff;
	border-bottom: solid 1px #000;
}

.contentnav {
	width: 100%;
	height: 100%;
	max-width: 1440px;
	display: flex;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	overflow: hidden;
}

.contentnav li {
	width: calc(100% / 3);
	max-width: 480px;
	display: inline-block;
	height: 100%;
	position: relative;
	border-left: solid 1px #000;
	background-color: #fff;
	cursor: pointer;
	overflow: visible;
}

.contentnav li:last-child {
	border-right: solid 1px #000;
}

.contentnav li:first-child {
	background-color: #eee;
}

.contentnav li:after {
	content: '';
	width: 100%;
	height: 100%;
	display: block;
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	border: solid 1px #888;
	opacity: 0;
	transition: all 0.3s ease;
}

.contentnav li:hover:after {
	height: 85%;
	width: 75%;
	opacity: 1;
}

/*--
小見出し部分の位置を中央にセット
------------------------------------*/

.content li a {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
}

.content li h3 {
	position: absolute;
	top: 35%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	overflow: hidden;
	font-family: 'M PLUS 1p';
	font-size: 18px;
	font-weight: 300;
	letter-spacing: 3px;
	color: #000;
	white-space: nowrap;/*見出しの改行を強制的にオフに*/
	z-index: 2;
}

.content li p {
	font-family: 'M PLUS 1p';
	font-weight: normal;
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translateX(-50%);
	font-size: 11px;
	letter-spacing: 1px;
	color: #000;
	white-space: nowrap;
	z-index: 2;
}


/*--
要素の幅・位置を設定
------------------------------------*/

.content > div {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	display: flex;
	margin: auto;
	position: relative;
	z-index: -2;
}


/*--
背景画像の設定
------------------------------------*/





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

           共通設定

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



/*--
画面全体の設定
------------------------------------*/

.box1,.box2,.box3 {
	width: 100%;
	height: calc(100% - 80px);
	position: absolute;
	top: 80px;
}

.box1 {
	display: block;
}

.box2,.box3 {
	display: block;
}

.textbox {
	width: 50%;
	max-width: 720px;
	height: auto;
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translateY(-50%);
	overflow: hidden;
}



/*---
製品紹介ページの設定
------------------------------------*/


/*--
一つ目の文章の設定
------------------------------------*/

.box1 .firsttext {
	width: 80%;
	height: auto;
	position: relative;
	margin: 0px auto 60px auto;
	color: #000;
}

.box1 .firsttext h3 {
	font-family: 'M PLUS 1p';
	font-weight: 300;
	font-size: 24px;
	letter-spacing: 2px;
	text-align: left;
}

.box1 .firsttext > p {
	width: 100%;
	font-size: 12px;
	letter-spacing: 2px;
	line-height: 1.75em;
	margin: 30px auto;
}


/*--
二つ目の文章の設定
------------------------------------*/

.box1 .secondtext {
	width: 80%;
	height: auto;
	position: relative;
	margin: 0px auto auto auto;
	color: #000;
}

.box1 .secondtext h3 {
	font-family: 'M PLUS 1p';
	font-weight: 300;
	font-size: 24px;
	letter-spacing: 2px;
	text-align: left;
}

.box1 .secondtext > p {
	width: 100%;
	font-size: 12px;
	letter-spacing: 2px;
	line-height: 1.75em;
	margin: 30px auto;
}



/*--
画像の表示設定
------------------------------------*/

.strawimg {
	width: 50%;
	max-width: 720px;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 0;
	z-index: -99;
	background-image: url("straw3.jpg");
	background-size: cover;
	background-position: center;
	box-sizing: border-box;
	border: solid 1px #000;
} 


/*---
製品紹介ページの設定
------------------------------------*/


/*--
一つ目の文章の設定
------------------------------------*/

.box2 .firsttext {
	width: 80%;
	height: auto;
	height: auto;
	position: relative;
	margin: 0px auto 60px auto;
	color: #000;
}

.box2 .firsttext h3 {
	font-family: 'M PLUS 1p';
	font-weight: 300;
	font-size: 24px;
	letter-spacing: 2px;
	text-align: left;
}

.box2 .firsttext > p {
	width: 100%;
	font-size: 12px;
	letter-spacing: 2px;
	line-height: 1.75em;
	margin: 30px auto;
}


/*--
二つ目の文章の設定
------------------------------------*/

.box2 .secondtext {
	width: 80%;
	height: auto;
	position: relative;
	margin: 0px auto auto auto;
	color: #000;
}

.box2 .secondtext h3 {
	font-family: 'M PLUS 1p';
	font-weight: 300;
	font-size: 24px;
	letter-spacing: 2px;
	text-align: left;
}

.box2 .secondtext > p {
	width: 100%;
	font-size: 12px;
	letter-spacing: 2px;
	line-height: 1.75em;
	margin: 30px auto;
}


/*--
画像の表示設定
------------------------------------*/

.nouhinimg {
	width: 50%;
	max-width: 720px;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 0;
	z-index: -99;
	background-image: url("syukka4.jpg");
	background-size: cover;
	background-position: center;
	box-sizing: border-box;
	border: solid 1px #000;
} 



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

				規格表

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


/*--
表の全体設定
------------------------------------*/

.listbox ul {
	list-style: none;
	height: calc(100% / 20);
	width: 100%;
	display: flex;
}

.listbox ul li{
	display: flex;
	flex-direction: row;
}

.listbox {
	width: 90%;
	max-width: 1296px;
	height: 95%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	overflow: hidden;
}

.listbox * {
	list-style: none;
}


/*--
表の個別設定
------------------------------------*/

.listbox ul:nth-child(2n) {
	background-color: #eee;
}

.listbox > ul > li {
	height: 100%;
	width: calc(100% / 11);
	display: flex;
	flex-direction: row;
	position: relative;
	border-top: solid 1px #aaa;
	border-left: solid 1px #aaa;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.listbox .c1 {
	width: calc(100% / 22);
}

.listbox .trench {
	width: calc(100% / 22);
}

.listbox .needle {
	width: calc(100% / 22);
}

.listbox .iro {
	width: calc((100% / 22) * 4);
}

.listbox .konpou {
	width: calc((100% / 22) * 4);
}

.listbox li span {
	font-size: 11px;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	white-space: nowrap;
}

.film li:first-child {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border-right: solid 1px #aaa;
}

.film li:nth-child(2) {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}

.mm li:first-child {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border-right: solid 1px #aaa;
}

.mm li:nth-child(2) {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}

.color li:first-child {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border-right: solid 1px #aaa;
}

.color li:nth-child(2) {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}

.case li:first-child {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border-right: solid 1px #aaa;
}

.case li:nth-child(2) {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}

.needle {
	border-right: solid 1px #aaa;
}

.listbox > ul:last-child {
	border-bottom: solid 1px #aaa;
}




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

      　　lineH（見出し）の個別設定

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

.listbox .lineH {
	height: calc((100% / 21) * 2);
	width: 100%;
	display: flex;
}

.lineH li {
	height: 100%;
	width: calc(100% / 11);
	display: flex;
	flex-direction: row;
	position: relative;
	border-top: solid 1px #aaa;
	border-left: solid 1px #aaa;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.zaisitu .f {
	width: 100%;
	height: 50%;
	position: absolute;
	top: 0;
	left: 0;
	border-top: none;
	border-left: none;
}

.zaisitu .s {
	width: 50%;
	height: 50%;
	position: absolute;
	left: 0;
	bottom: 0;
	border-left: none;
}

.zaisitu .t {
	width: 50%;
	height: 50%;
	position: absolute;
	right: 0;
	bottom: 0;
}

.housou .f {
	width: 100%;
	height: 50%;
	position: absolute;
	top: 0;
	border-top: none;
	border-left: none;
}

.housou .s {
	width: 50%;
	height: 50%;
	position: absolute;
	left: 0;
	bottom: 0;
	border-left: none;
}

.housou .t {
	width: 50%;
	height: 50%;
	position: absolute;
	right: 0;
	bottom: 0;
}

.iro .f {
	width: 100%;
	height: 50%;
	position: absolute;
	top: 0;
	border-top: none;
	border-left: none;
}

.iro .s {
	width: 50%;
	height: 50%;
	position: absolute;
	left: 0;
	bottom: 0;
	border-left: none;
}

.iro .t {
	width: 50%;
	height: 50%;
	position: absolute;
	right: 0;
	bottom: 0;
}

.konpou .f {
	width: 100%;
	height: 50%;
	position: absolute;
	top: 0;
	border-top: none;
	border-left: none;
}

.konpou .s {
	width: 50%;
	height: 50%;
	position: absolute;
	left: 0;
	bottom: 0;
	border-left: none;
	cursor: pointer;
}

.konpou .t {
	width: 50%;
	height: 50%;
	position: absolute;
	right: 0;
	bottom: 0;
	cursor: pointer;
}

.konpou .s span, .konpou .t span {
	border-bottom: solid 1px #aaa;
}

.konpou .s span:after, .konpou .t span:after {
	font-family: fontawesome;
	content: '\f059';
	width: auto;
	height: auto;
	display: block;
	position: absolute;
	top: 50%;
	left: calc(100% + 3px);
	transform: translateY(-50%);
	font-size: 12px;
	color: #333;
}

.neo {
	width: 300px;
	height: 150px;
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	background-color: #fff;
	border: solid 1px #666;
	transition: all 0.3s ease;
	z-index: 3;
	cursor: auto;
}

.neo p {
	width: 45%;
	height: auto;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 2.5%;
	transform: translateY(-50%);
	color: #000;
	font-size: 11px;
	letter-spacing: 1px;
}

.neoimg {
	width: 45%;
	height: 95%;
	position: absolute;
	top: 2.5%;
	right: 2.5%;
}

.neoimg img {
	width: 100%;
	height: auto;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	object-fit: cover;
}

.konpou .s:hover > .neo {
	display: block;
}


.role {
	width: 300px;
	height: 150px;
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	background-color: #fff;
	border: solid 1px #666;
	transition: all 0.3s ease;
	z-index: 3;
	cursor: auto;
}

.role p {
	width: 45%;
	height: auto;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 2.5%;
	transform: translateY(-50%);
	color: #000;
	font-size: 11px;
	letter-spacing: 1px;
}

.roleimg {
	width: 45%;
	height: 95%;
	position: absolute;
	top: 2.5%;
	right: 2.5%;
}

.roleimg img {
	width: 100%;
	height: auto;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	object-fit: cover;
}

.konpou .t:hover > .role {
	display: block;
}

.neoMobile,.roleMobile {
	display: none;
}

}