@charset "utf-8";

/* ////////////////////////////////////////////////////////////
	File Name	common.css
*/
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700&display=swap&subset=japanese');
@import url('icons.css');
@import url('slick.css');

/*============================================================
	HTML
*/
* {
	margin:0;
	padding:0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html, body {
	width: 100%;
	background-color: #fff;
	color: #333;
}
html {
	overflow-y: scroll;
}
body {
	font-family: "Noto Sans JP", "Yu Gothic", YuGothic, sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.7;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
}
li {
	list-style: none;
}
table {
	border-collapse: collapse;
}
a {
	text-decoration: none;
	color: #333;
	outline: none;
	cursor: pointer;
}
a,
button {
	-webkit-transition: color 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
	        transition: color 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
i {
	font-style: normal;
}
h1, h2, h3, h4 {
	font-weight: 700;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 12px;
	}
}

/*============================================================
	フォーム
*/
input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="password"],
select,
button {
	background-color: transparent;
	border: 0;
	border-radius: 0;
	font-family: 'Noto Sans Japanese', sans-serif;
	outline: 0;
	-webkit-appearance: none;
	appearance: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
}
button,
label {
	cursor: pointer;
}
input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="password"],
textarea {
	display: block;
	padding: 15px 15px;
	width: 100%; height: 56px;
	border: 2px solid #999;
	border-radius: 5px;
	background-color: #fff;
	font-weight: 400;
	font-size: 14px;
	line-height: auto;
	color: #000000;
	outline: 0;
	letter-spacing: 1px;
	resize: none;
}
textarea {
	padding: 15px 15px;
	height: 316px;
}
select {
	padding: 0 40px 0 15px;
	width: 100%; height: 56px;
	border: 2px solid #999;
	border-radius: 5px;
	background: #fff url(../img/form-parts-select.png) 100% 50% no-repeat;
	background-size: 53px 20px;
	cursor: pointer;
	font-size: 14px;
	line-height: auto;
	color: #333;
}
::-webkit-input-placeholder {
    color: #999; opacity: 1;
}
::-moz-placeholder {
    color: #999; opacity: 1;
}
::-moz-placeholder {
    color: #999; opacity: 1;
}
::-ms-input-placeholder {
    color: #999; opacity: 1;
}
::placeholder-shown {
    color: #999;
}
.has-error {
	border-color: #f00 !important;
}
@media screen and (max-width: 768px) {
	input[type="text"],
	input[type="number"],
	input[type="tel"],
	input[type="email"],
	input[type="password"],
	textarea {
		padding: 12px 10px;
		height: 38px;
		border-width: 1px;
		font-size: 13px;
	}
	textarea {
		padding: 12px 10px;
		height: 200px;
	}
	select {
		padding: 0 40px 0 15px;
		height: 38px;
		border-width: 1px;
		background-size: 26px 10px;
		font-size: 13px;
	}
}

/*============================================================
	CLEARFIX
*/
.cf:after {
	content: '';
	display: block;
	clear: both;
}

/*============================================================
	VISIBLE
*/
.visible-pc {
	display: block;
}
.visible-sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.visible-pc {
		display: none;
	}
	.visible-sp {
		display: block;
	}
}

/*============================================================
	SLICK
*/
.slick-prev,
.slick-next {
	position: absolute;
	z-index: 100;
	top: 50%;
	margin-top: -25px;
	width: 50px;
	text-align: center;
	font-size: 40px;
	line-height: 50px;
	color: #fff;
}
.slick-prev:hover,
.slick-next:hover {
	color: #f00;
}
.slick-prev {
	left: 50px;
}
.slick-next {
	right: 50px;
}
ul.slick-dots {
	width: 100%;
	text-align: center;
}
ul.slick-dots li {
	display: inline-block;
	font-size: 0;
	line-height: 0;
}
ul.slick-dots li button {
	overflow: hidden;
	position: relative;
	display: inline-block;
	width: 24px;
	height: 24px;
	text-indent: -999em;
}
ul.slick-dots li button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	display: inline-block;
	margin: -5px 0 0 -5px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #ccc;
	-webkit-transition: opacity 0.3s ease;
	        transition: opacity 0.3s ease;
}
ul.slick-dots li button:hover::before {
	opacity: 0.5;
}
ul.slick-dots li.slick-active button::before,
ul.slick-dots li.slick-active button:hover::before {
	background-color: #c00 !important;
	opacity: 1;
}
@media screen and (max-width: 768px) {
	.slick-prev,
	.slick-next {
		margin-top: -20px;
		width: 40px;
		font-size: 22px;
		line-height: 40px;
	}
	.slick-prev {
		left: 0;
	}
	.slick-next {
		right: 0;
	}
	ul.slick-dots li button {
		width: 20px;
		height: 20px;
	}
	ul.slick-dots li button::before {
		margin: -4px 0 0 -4px;
		width: 8px;
		height: 8px;
	}
}

/*============================================================
	コンテナ
*/
#container {
	position: relative;
	margin: 0 auto;
	padding-top: 100px;
	width: 100%;
	min-width: 1020px;
}
.body {
	position: relative;
	width: 100%;
}
.body img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	vertical-align: top;
}
.container {
	position: relative;
	margin: 0 auto;
	padding: 0 40px;
	max-width: 1380px;
}
@media screen and (max-width: 768px) {
	#container {
		padding-top: 60px;
		min-width: 1px;
	}
	.container {
		padding: 0;
	}
}

/*============================================================
	見出し
*/
.heading {
	text-align: center;
	font-size: 36px;
	line-height: 1.3;
}
@media screen and (max-width: 768px) {
	.heading {
		font-size: 20px;
	}
}

/*============================================================
	ヘッダー
*/
#header {
	position: fixed;
	z-index: 5001;
	top: 0;
	left: 0;
	width: 100%;
}
#header header {
	position: relative;
	height: 100px;
	background-color: rgba(255,255,255,0.9);
}
#header header .logo {
	position: absolute;
	top: 10px;
	left: 40px;
}
#header header .logo a {
	display: table;
}
#header header .logo a img {
	width: auto;
	height: 80px;
}
#header header nav {
	display: flex;
	align-items: center;
	float: right;
	height: 100px;
}
#header header nav ul {
}
#header header nav ul li {
	float: left;
	margin-left: 50px;
	font-weight: 700;
	font-size: 16px;
	line-height: 30px;
}
#header header nav ul li a:hover {
	color: #c00;
}
@media screen and (max-width: 768px) {
	#header header {
		height: 60px;
	}
	#header header .logo {
		left: 10px;
	}
	#header header .logo a img {
		height: 40px;
	}
	#header header nav {
		display: none;
	}
	#header header .nav-ovener {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		width: 50px;
		height: 60px;
	}
	#header header .nav-ovener i {
		display: block;
		position: absolute;
		left: 50%;
		top: 50%;
		margin: 0 0 0 -11px;
		width: 22px;
		height: 1px;
		background-color: #000;
		-webkit-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
	}
	#header header .nav-ovener i:nth-child(1) {
		margin-top: -4px;
	}
	#header header .nav-ovener i:nth-child(3) {
		margin-top: 4px;
	}
	.nav-opened #header header .nav-ovener i {
		width: 24px;
	}
	.nav-opened #header header .nav-ovener i:nth-child(1) {
		margin: 0 0 0 -12px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.nav-opened #header header .nav-ovener i:nth-child(2) {
		display: none;
	}
	.nav-opened #header header .nav-ovener i:nth-child(3) {
		margin: 0 0 0 -12px;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
}

/*============================================================
	メガメニュー
*/
#megamenu {
	display: none;
}
@media screen and (max-width: 768px) {
	#megamenu {
		display: block;
		overflow: hidden;
		position: fixed;
		z-index: 5000;
		top: 0;
		left: 0;
		width: 100%;
		height: 0;
		background-color: rgba(0,0,0,0.9);
		text-align: center;
		-webkit-transition: height 0.6s ease;
		        transition: height 0.6s ease;
	}
	.nav-opened #megamenu {
		height: 100%;
	}
	#megamenu nav {
		display: flex;
		align-items: center;
		width: 100%;
		height: 100vh;
	}
	#megamenu nav ul {
		width: 100%;
	}
	#megamenu nav ul li {
		padding: 15px 0;
		text-align: center;
		font-weight: 500;
		font-size: 18px;
		line-height: 1.5;
	}
	#megamenu nav ul li a {
		color: #fff;
	}
}

/*============================================================
	フッター
*/
#footer {
}
#footer footer {
	position: relative;
	height: 100px;
	background-color: #000;
	text-align: center;
}
#footer small {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-size: 100%;
	line-height: 1.5;
	color: #fff;
}
@media screen and (max-width: 768px) {
	#footer footer {
		height: 50px;
	}
}

/*============================================================
	モーダル
*/
.modal-ovarlay {
	display: none;
	position: fixed;
	z-index: 9000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.9);
}
.modal {
	display: none;
	position: absolute;
	z-index: 9001;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.modal .wrap-outer {
	display: table;
	width: 100%;
	height: 100%;
}
.modal .wrap-inner {
	display: table-cell;
	vertical-align: middle;
}
.modal .inner {
	position: relative;
	margin: 0 auto;
	padding: 80px 40px;
	max-width: 1280px;
}
.modal img {
	max-width: 100%;
}
.modal .close {
	position: absolute;
	top: 20px;
	right: 40px;
	display: block;
	width: 40px;
	height: 40px;
	background: transparent url(../img/close.png) 0 0 no-repeat;
	background-size: cover;
}
@media screen and (max-width: 768px) {
	.modal .inner {
		padding: 50px 0;
	}
	.modal .close {
		top: 10px;
		right: 10px;
		width: 30px;
		height: 30px;
	}
}

/*============================================================
	メイン
*/
#main {
}
#main .slider {
	position: relative;
}
#main .slider ul.slick-dots {
	position: absolute;
	bottom: 30px;
	left: 0;
}
#main .slider ul.slick-dots li button::before {
	background-color: #fff;
}
#main .slider .block {
	background-color: transparent;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
#main .slider .block::after {
	content: '';
	display: block;
	height: 800px;
}
@media screen and (max-width: 768px) {
	#main .slider ul.slick-dots {
		bottom: 10px;
	}
	#main .slider .block::after {
		padding-top: 66.666%;
		height: 0;
	}
}

/*============================================================
	商品情報
*/
#product {
	padding-top: 80px;
}
#product .select {
	position: relative;
	margin: 40px 0 60px 0;
	height: 74px;
}
#product .select .wrap {
	position: absolute;
	z-index: 1000;
	top: 0; left: 0;
	width: 100%;
}
#product .select .inner {
	margin: 0 auto;
	display: table;
	background-color: #fff;
	border: 2px solid #999;
	border-radius: 5px;
	text-align: center;
}
#product .select .selected {
	position: relative;
	display: block;
	padding: 15px 70px;
	min-width: 420px;
	font-weight: 700;
	font-size: 24px;
}
#product .select .selected i {
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -14px;
	font-size: 24px;
	line-height: 30px;
}
#product .select .selected i.icon-arrow-up {
	display: none;
}
#product .select.opened .selected i.icon-arrow-up {
	display: block;
}
#product .select.opened .selected i.icon-arrow-down {
	display: none;
}
#product .select .selected {
	cursor: default;
}
.single-model #product .select .selected i {
	display: none !important;
}
#product .select .list {
	overflow: hidden;
	height: auto;
	height: 0;
}
#product .select .list ul {
	font-size: 20px;
}
#product .select .list ul li {
	border-top: 1px solid #ccc;
}
#product .select .list ul li a {
	display: block;
	padding: 10px;
}
#product .select .list ul li a:hover {
	color: #c00;
}
#product .slider {
	position: relative;
}
#product .slider .block {
	margin: 0 auto;
	width: 800px;
	background-color: transparent;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
#product .slider .block::after {
	content: '';
	display: block;
	height: 500px;
}
#product .slider .slick-prev,
#product .slider .slick-next {
	margin-top: -43px;
}
#product .slider ul.slick-dots {
	margin-top: 10px;
}
#product .table {
	margin-top: 50px;
}
#product .table table {
	width: 100%;
	text-align: left;
	color: #61666a;
}
#product .table table th,
#product .table table td {
	padding: 15px 20px;
}
#product .table table th {
	border-bottom: 1px solid #61666a;
}
#product .table table tr:nth-child(odd) td {
	background-color: #f7f7f7;
}
#product .table table th.id {
	width: 140px;
}
#product .table table th.price {
	width: 150px;
}
#product .table table th.name {
	width: 22%;
}
#product .table table th.image {
	width: 100px;
	text-align: center;
}
#product .table table th.code {
	width: 100px;
	text-align: center;
}
#product .table table td.center {
	text-align: center;
}
#product .table table td a:hover {
	color: #c00;
}
@media screen and (max-width: 768px) {
	#product {
		padding-top: 30px;
	}
	#product .select {
		margin: 20px 0 30px 0;
		height: 40px;
	}
	#product .select .inner {
		border-width: 1px;
		border-radius: 5px;
	}
	#product .select .selected {
		padding: 8px 40px;
		min-width: 1px;
		font-size: 13px;
	}
	#product .select .selected i {
		right: 15px;
		margin-top: -15px;
		font-size: 14px;
		line-height: 30px;
	}
	#product .select .list ul {
		font-size: 12px;
	}
	#product .slider .block {
		width: 100%;
	}
	#product .slider .block::after {
		padding-top: 62.666%;
		height: 0;
	}
	#product .slider .slick-prev,
	#product .slider .slick-next {
		margin-top: -33px;
	}
	#product .slider ul.slick-dots {
		margin-top: 5px;
	}
	#product .table {
		margin-top: 10px;
		padding: 0 10px;
		overflow-x: auto;
	}
	#product .table table {
		width: auto;
	}
	#product .table table th,
	#product .table table td {
		padding: 15px 15px;
		white-space: nowrap;
		width: auto !important;
	}
}

/*============================================================
	会社概要
*/
#company {
	padding-top: 80px;
}
#company .table {
	margin-top: 20px;
}
#company .table table {
	width: 100%;
	text-align: left;
	color: #61666a;
}
#company .table table th,
#company .table table td {
	padding: 20px 20px;
}
#company .table table td {
	text-align: right;
}
#company .table table tr:nth-child(even) th,
#company .table table tr:nth-child(even) td {
	background-color: #f7f7f7;
}
@media screen and (max-width: 768px) {
	#company {
		padding-top: 30px;
	}
	#company .container {
		padding: 0 10px;
	}
	#company .table {
		margin-top: 10px;
	}
	#company .table table,
	#company .table table tbody,
	#company .table table tr,
	#company .table table th,
	#company .table table td {
		display: block;
		width: 100%;
		text-align: left;
	}
	#company .table table th {
		padding: 10px 10px 0 10px;
	}
	#company .table table td {
		padding: 5px 10px 10px 10px;
		font-size: 13px;
	}
}

/*============================================================
	お問合せ
*/
#contact {
	padding-top: 80px;
	padding-bottom: 100px;
}
#contact .heading {
	margin-bottom: 60px;
}
#contact .form {

}
#contact .form .lead {
	margin: 0 auto;
	width: 560px;
	text-align: center;
	font-size: 18px;
}
#contact .form .btn {
	display: block;
	width: 100%;
	border-radius: 5px;
	background-color: #000;
	font-weight: 700;
	font-size: 18px;
	line-height: 70px;
	color: #fff;
}
#contact .form .btn span {
	position: relative;
}
#contact .form .btn span i {
	position: absolute;
	top: 50%;
	margin-top: -11px;
	font-size: 19px;
	line-height: 22px;
}
#contact .form .btn-submit {
	margin: 0 auto;
	margin-top: 60px;
	width: 420px;
}
#contact .form .btn-submit span {
	padding-right: 12px;
}
#contact .form .btn-submit span i {
	right: -12px;
}
#contact .form .btn-wrap {
	margin: 0 auto;
	margin-top: 60px;
	width: 560px;
}
#contact .form .btn-wrap .btn-submit {
	float: right;
	margin: 0;
	width: 270px;
}
#contact .form .btn-wrap .btn-back {
	float: left;
	width: 270px;
}
#contact .form .btn-back .btn {
	background-color: #999;
}
#contact .form .btn-back .btn span {
	padding-left: 12px;
}
#contact .form .btn-back .btn span i {
	left: -12px;
}
#contact .form .btn-submit .btn:hover {
	background-color: #c00;
}
#contact .form .btn-back .btn:hover {
	background-color: #bbb;
}
#contact .form .attention {
	margin-top: 5px;
	color: #f00;
}
#contact .form .input {
	margin: 0 auto;
	margin-top: 20px;
	width: 560px;
}
#contact .form .input .block {
	margin-bottom: 20px;
}
#contact .form .confirm {
	margin: 0 auto;
	margin-top: 20px;
	width: 560px;
	border-top: 1px solid #ccc;
}
#contact .form .confirm .block {
	padding: 20px 15px;
	border-bottom: 1px solid #ccc;
}
#contact .form .complete {
	text-align: center;
}
#contact .form .complete .h {
	font-weight: 500;
	font-size: 32px;
}
#contact .form .complete p {
	margin-top: 30px;
	font-size: 18px;
}
#contact .form .error {
	text-align: center;
}
#contact .form .error .h {
	font-weight: 500;
	font-size: 32px;
}
@media screen and (max-width: 768px) {
	#contact {
		padding-top: 30px;
		padding-bottom: 60px;
	}
	#contact .heading {
		margin-bottom: 30px;
	}
	#contact .form {
		padding: 0 10px;
	}
	#contact .form .lead {
		width: 100%;
		font-size: 14px;
	}
	#contact .form .btn {
		font-size: 13px;
		line-height: 44px;
	}
	#contact .form .btn span i {
		margin-top: -11px;
		font-size: 11px;
		line-height: 22px;
	}
	#contact .form .btn-submit {
		margin-top: 20px;
		width: 100%;
	}
	#contact .form .btn-submit span {
		padding-right: 8px;
	}
	#contact .form .btn-submit span i {
		right: -8px;
	}
	#contact .form .btn-wrap {
		margin-top: 0;
		width: 100%;
	}
	#contact .form .btn-wrap .btn-submit {
		float: none;
		margin: 20px 0 0 0;
		width: 100%;
	}
	#contact .form .btn-wrap .btn-back {
		float: none;
		margin: 20px 0 0 0;
		width: 100%;
	}
	#contact .form .btn-back .btn span {
		padding-left: 8px;
	}
	#contact .form .btn-back .btn span i {
		left: -8px;
	}
	#contact .form .input {
		margin-top: 10px;
		width: 100%;
	}
	#contact .form .input .block {
		margin-bottom: 10px;
	}
	#contact .form .confirm {
		margin-top: 10px;
		width: 100%;
	}
	#contact .form .confirm .block {
		padding: 10px 10px;
	}
	#contact .form .complete .h {
		font-size: 18px;
	}
	#contact .form .complete p {
		margin-top: 30px;
		font-size: 13px;
	}
	#contact .form .error .h {
		font-size: 18px;
	}
}
