@charset "utf-8";

/* Font
*****************************************************************/

body {
	font-family:"游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-weight: 500;
	line-height: 1.8em;
	letter-spacing: 0.05em;
}

html { font-size: 62.5%; }
body { font-size: 16px; font-size: 1.6rem; color: #000;}

/* common */

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

a {
	color: #000;
	text-decoration:none;
}

a:hover {
	color: #666;
}

a img {
	transition: .4s ;
}

a img:hover {
	opacity: .5 ;
}

/* element */

p.cation {
	font-size: 12px;
	line-height: 1.6em;
}

p.btn {
	margin-top: 20px;
}

p.btn a {
	color: #ff593d;
	background: #fff;
	border: 2px solid #ff593d;
	padding: 10px 20px;
	transition: .4s;
	border-radius: 3px;
}

p.btn a:hover {
	color: #fff;
	background: #ff593d;
}

.arr {
	position: relative;
	display: block;
	padding: 0;
	color: #000;
	vertical-align: middle;
	text-decoration: none;
}

.arr::before,
.arr::after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.arr-right::before{
	right: 20px;
	width: 4px;
	height: 4px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


.pc {
	display: block;
}

.sp {
	display: none;
}

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

	.pc {
		display: none;
	}

	.sp {
		display: block;
	}

}

/* header */

header {
	max-width: 1000px;
	width: 100%;
	margin: 10px auto 0;
}

header h1 img {
	width: 40px;
	height: auto;
}

header h1 {
	float: left;
}

header nav {
	float: right;
}

header nav ul.menu li {
	display: inline-block;
	padding-top: 10px;
	margin: 0 0 0 20px;
}

header nav ul.menu li a i {
	font-size: 14px;
	margin-left: 3px;
	opacity: .6;
}

/* pc非表示 */
.h-btn, header nav ul.menu li a.arr:before {
	display: none;
}

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

	/* sp表示 */
	header nav ul.menu li a.arr:before {
		display: block;
	}

	header {
		position: fixed;
		top: 0;
		z-index: 20;
		max-width: 1000px;
		width: 100%;
		height: 46px;
		margin: 0;
		background-color: #fff;
	}

	header h1 {
		float: none;
		margin: 10px 0 0 3%;
	}

	header h1 img {
		width: 24px;
		height: auto;
	}

	header nav {
		float: none;
	}

	/* nav */

	button {
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		vertical-align: middle;
		border: 0;
		background: transparent;
		outline: 0;
		border-radius: 0;
		text-align: inherit;
	}

	button:hover {
		cursor: pointer;
	}

	.h-btn {
		position: fixed;
		top: 0;
		right: 2%;
		width: 40px;
		height: 48px;
		display: flex;
		justify-content: center;
		align-items: center;
		z-index: 10;
	}

	.h-btn-line {
		width: 100%;
		height: 1px;
		background-color: #000;
		position: relative;
		transition: .2s;
	}

	.h-btn-line::before,
	.h-btn-line::after {
		content: "";
		position: absolute;
		width: 100%;
		height: 100%;
		background-color: #000;
		transition: .2s;
	}

	.h-btn-line::before {
		transform: translateY(-8px);
	}

	.h-btn-line::after {
		width: 100%;
		transform: translateY(8px);
	}

	/* open */

	.h-btn-line.open {
		background-color: transparent;
	}

	.h-btn-line.open::before,
	.h-btn-line.open::after {
		content: "";
		transition: .2s;
	}

	.h-btn-line.open::before, .h-btn-line.open::after {
		transform: translateY(0);
	}

	/* menu */

	.menu {
		position: fixed;
		z-index: 5;
		top: 44px;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(255, 255, 255, 1);
		transition: .3s ease-in;
		opacity: 0;
		pointer-events: none; /*重なり考慮*/
	}

	.menu.open {
		opacity: 1;
		transition: .3s ease-in;
		pointer-events: auto!important; /*重なり考慮*/
	}

	header nav ul.menu li {
		width: 100vw;
		margin: 0;
		padding: 14px 0 14px 10px;
		border-bottom: 1px solid #e8e8e8;
	}

	header nav ul.menu li.sp_head {
		color: #000;
		background: #e8e8e8!important;
	}

}

/* topimage */

.topimage {
	position: relative;
	margin: auto;
	width: 100%;
	height: 55vh;
	background-image: url("../../images/bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}

.topimage::before{
	content:"";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-color: transparent transparent #fff transparent;
	border-width: 0 0 60px 100vw;
}

.topimage .topItem {
	position: absolute;
	bottom: -90px;
	right: 12%;
}

.topimage ul.sub {
	position: absolute;
	left: 12%;
	top: 32%;
}

.topimage ul.sub li {
	display: inline-block;
	color: #fff;
	background-color: #ff593d;
	font-size: 14px;
	line-height: 1.2em;
	padding: 6px;
	font-weight: bold;
	letter-spacing: 0;
	border-radius: 3px;
}

.topimage h2 {
	font-size: 46px;
	line-height: 1.2em;
	letter-spacing: 0;
	color: #fff;
	position: absolute;
	left: 12%;
	top: 38%;
}

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

	.topimage {
		width: 100%;
		height: 70vh;
		background-image: url("../../images/bg_sp.jpg");
		background-repeat: no-repeat;
		background-size: cover;
	}

	.topimage::before{
		content:"";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 0;
		height: 0;
		border-style: solid;
		border-color: transparent transparent #fff transparent;
		border-width: 0 0 40px 100vw;
	}

	.topimage .topItem {
		position: absolute;
		bottom: -20px;
		right: 2%;
		width: 48%;
		height: auto;
	}

	.topimage ul.sub {
		position: absolute;
		left: 6%;
		top: 20%;
	}

	.topimage ul.sub li {
		display: block;
		font-size: 12px;
		line-height: 1.2em;
		padding: 6px;
		margin-bottom: 3px;
	}

	.topimage h2 {
		font-size: 24px;
		position: absolute;
		left: 6%;
		top: 42%;
	}

}

/* contents */

article.main {
	max-width: 800px;
	width: 100%;
	margin: auto;
}

section {
	display: block;
	margin-top: 60px;
}

h2.midashi {
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	margin: 80px auto 30px;
}

h2.midashi::after {
	font-size: 12px;
	display: block;
	content: "";
	padding-top: 0;
	opacity: .2;
}

.service h2.midashi::after { content: "SERVICE"; }
.oem h2.midashi::after { content: "OEM"; }
.design h2.midashi::after { content: "DESIGN & FACTORY"; }
.faq h2.midashi::after { content: "FAQ"; }
.company h2.midashi::after { content: "COMPANY"; }


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

	body {
		font-size: 14px;
	}

	h2.midashi {
		font-size: 18px;
	}

	article.main {
		width: 94%;
		margin: 0 3%;
	}

}

#page01 p, #page03 p { text-align: justify; }

/* member Mag*/

.pkg_lst {
	width: 96%;
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
	line-height: 1.6em;
	margin: 30px auto 0;
}

.pkg_lst li {
	font-size: 14px;
	display: table;
	height: auto;
	text-align: center;
	background-color: #e8e8e8;
	width: 40%;
	margin: 0 5% 30px;
	padding-bottom: 20px;
	background-image: linear-gradient(-45deg, #e8e8e8 25%, #e1e1e1 25%, #e1e1e1 50%, #e8e8e8 50%, #e8e8e8 75%, #e1e1e1 75%);
	background-size: 20px 20px;
	border-radius: 4px;
}

.pkg_lst li img {
	width: 80%;
	height: auto;
	text-align: center;
	margin: auto;
}

@media screen and (max-width: 768px) {
	.pkg_lst li {
		padding: 10px auto 10px;
	}
}

/* about */

h3 {
	font-size: 22px;
	text-align: center;
	margin: 30px auto 10px;
}

ul.about {
	border: 2px solid #000;
	border-radius: 10px;
	padding: 30px;
	width: 60%;
	margin: auto;
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
}

ul.about li {
	font-size: 12px;
	text-align: center;
	line-height: 1.6em;
	font-weight: bold;
}

ul.about li img {
	text-align: center;
	display: table-cell;
	vertical-align: middle;
	width: 120px;
	height: 120px;
	color: #fff;
	border-radius: 60px;
	margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
	h3 { font-size: 18px; }

	ul.about {
		text-align: center;
	}

	ul.about li {
		text-align: center;
		margin: 0 auto 20px;
	}

}

/* itemLst */

ul.itemLst {
	margin: 30px auto 0;
}

ul.itemLst li {
	margin-bottom: 40px;
}

ul.itemLst li:last-child {
	margin-bottom: 0;
}

/* company */

.company p.trim {
	float: left;
	margin-right: 40px;
}

.company p.trim img {
	border-radius: 5px;
}

.company div {
	float: left;
}

.company div p {
	margin-bottom: 10px;
}

.company p.sns a {
	color: #ff593d;
	margin: 0 5px 0 auto;
}

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

	.company p.trim {
		float: none;
		margin-right: 0;
	}

	.company p.trim img {
		width: 100%;
		height: auto;
	}

	.company div {
		float: none;
	}

	.company div p {
		margin-bottom: 10px;
	}

}

/* footer */

footer {
	background-color: #ff6f57;
	text-align: center;
	margin-top: 60px;
	padding: 30px;
}

footer img.footLogo {
	width: 40px;
	height: auto;
}

footer p.copyright {
	font-size: 12px;
	text-align: center;
	margin: 10px auto;
}