@charset "utf-8";

/* 共通（リセット）
-------------------------------------------------- */
*{
	margin: 0;
	padding: 0;
	line-height: 1.6em;
}

body{
	font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	-webkit-text-size-adjust: 100%;
	color: #333333;
}

body.fixed{
	height: 100vh;
	overflow: hidden;
}

img{
	vertical-align: bottom;
}

li{
	list-style-type: none;
}

/* PC
-------------------------------------------------- */
@media screen and (min-width:1000px){

/* ヘッダー
-------------------------------------------------- */
header{
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
	background: #ffffff;
}

.h_inner{
	box-sizing: border-box;
	padding: 10px 0;
	height: 60px;
	width: 100%;
	max-width: 1200px;
	margin: auto;
	display: flex;
	justify-content: space-between;
}

.h_inner .logo a{
	display: block;
}

.h_inner .logo img{
	height: 100%;
	max-height: 40px;
	width: auto;
}

/* ナビ
-------------------------------------------------- */
.open-btn1{
	position: relative;
	cursor: pointer;
	width: 30px;
	height: 40px;
	z-index: 10;
}

.open-btn1 span{
	display: inline-block;
	transition: all 0.4s;
	position: absolute;
	left: 0;
	height: 5px;
	transform: scaleY(0.5) translateY(1px);
	background: #333333;
	width: 100%;
}

.open-btn1 span:nth-of-type(1){top: 8px;}
.open-btn1 span:nth-of-type(2){top: 18px;}
.open-btn1 span:nth-of-type(3){top: 28px; width: 70%;}

.open-btn1.active span:nth-of-type(1){
	top: 13px;
	right: 0;
	transform: translateY(6px) rotate(-45deg);
	width: 120%;
	height: 3px;
}

.open-btn1.active span:nth-of-type(2){
	opacity: 0;
}

.open-btn1.active span:nth-of-type(3){
	top: 25px;
	right: 0px;
	transform: translateY(-6px) rotate(45deg);
	width: 120%;
	height: 3px;
}

.nav-bg{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	transition: all 0.3s;
}

.nav-bg.bg-active{
	display: block;
	transition: all 0.3s;
}

#sp-g-nav{display: none;}

.navWrap{
	display: block;
	box-sizing: border-box;
	position: fixed;
	z-index: 10;
	background-color: #f1f1f1;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.3;
	width: 100%;
	top: 0;
	right: -100%;
	transition: all 0.3s;
	padding: 80px 0 0;
}

.navWrap.panel-active{
	width: 100%;
	height: 100vh;
	top: 0;
	right: 0;
	transition: all 0.3s;
	padding: 80px 0 0;
}

.navInner{
	display: block;
	box-sizing: border-box;
	padding: 40px;
	background: #ffffff;
	box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.navInner li{
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #cccccc;
}

.navInner li a{
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 16px;
	font-weight: 600;
	color: #333333;
	text-decoration: none;
}

/* メイン
-------------------------------------------------- */
main{
	margin-top: 90px;
}

h1{
	text-align: center;
	font-size: 25px;
}

.secInner{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 0;
}

h2{
	font-size: 18px;
	line-height: 20px;
	background: url("https://gigaplus.makeshop.jp/dartshive/img/hexagon01.svg") left center no-repeat;
	background-size: auto;
	padding-left: 30px;
	position: relative;
	z-index: 1;
	margin-bottom: 60px;
}

h2::after{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: #cccccc;
	position: absolute;
	z-index: 10;
	bottom: -30px;
	left: 0;
}

.makerAsk_pc{
	width: 100%;
	margin: 0 auto;
	border-collapse: collapse;
}

.makerAsk_sp{
	display: none;
}

.makerAsk_pc th,
.makerAsk_pc td{
	width: 50%;
	box-sizing: border-box;
	border: 1px solid #cccccc;
	padding: 20px;
	font-size: 14px;
	text-align: left;
	vertical-align: top;
	line-height: 2em;
}

.makerAsk_pc th{
	background: #fbfbfb;
}

.askDL{
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	width: 100%;
	background: #000000;
	color: #ffffff;
	font-size: 14px;
	line-height: 14px;
	font-weight: 500;
	padding: 20px;
	text-decoration: none;
	transition: 0.2s;
}

.askDL i{
	font-size: 16px;
	text-decoration: underline;
}

.askDL:hover{
	background: #cc0000;
}

.itemList{
	display: flex;
	flex-wrap: wrap;
}

.itemList li{
	width: 370px;
	background: #ffffff;
	box-shadow: 0 3px 6px rgba(0,0,0,0.25);
	margin-bottom: 45px;
	transition: 0.2s;
}

.itemList li:nth-child(3n+2){
	margin-right: 45px;
	margin-left: 45px;
}

.itemList li a{
	display: block;
	box-sizing: border-box;
	padding: 30px;
	color: #333333;
	text-decoration: none;
}

.itemList li:hover{
	transform: translateY(6px);
	box-shadow: 0 0px 6px rgba(0,0,0,0.25);
}

.itemList li:hover a{
	color: #2906a9;
}

.itemList li img{
	width: 100%;
}

.name{
	display: flex;
	justify-content: space-between;
	margin: 30px 0;
}

.name p{
	font-size: 14px;
	line-height: 1.8em;
	padding-right: 20px;
}

.name i{
	line-height: 1.8em;
	text-decoration: underline;
}

/* フッター
-------------------------------------------------- */
.f_inner{
	display: none;
}

.copyright{
	background: #333333;
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	padding: 10px 0;
}
}

/* SP
-------------------------------------------------- */
@media screen and (max-width:999px){

/* SP > ヘッダー
-------------------------------------------------- */
header{
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
	background: #ffffff;
}

.h_inner{
	box-sizing: border-box;
	padding: 10px 20px;
	height: 60px;
	width: 100%;
	max-width: 1300px;
	margin: auto;
	display: flex;
	justify-content: space-between;
}

.h_inner .logo a{
	display: block;
}

.h_inner .logo img{
	height: 100%;
	max-height: 40px;
	width: auto;
}

/* ドロワーメニュー > ボタン
------------------------------ */
.open-btn1{
	position: relative;
	cursor: pointer;
	width: 30px;
	height: 40px;
	z-index: 10;
}

.open-btn1 span{
	display: inline-block;
	transition: all 0.4s;
	position: absolute;
	left: 0;
	height: 5px;
	transform: scaleY(0.5) translateY(1px);
	background: #333333;
	width: 100%;
}

.open-btn1 span:nth-of-type(1){top: 8px;}
.open-btn1 span:nth-of-type(2){top: 18px;}
.open-btn1 span:nth-of-type(3){top: 28px; width: 70%;}

.open-btn1.active span:nth-of-type(1){
	top: 13px;
	right: 0;
	transform: translateY(6px) rotate(-45deg);
	width: 120%;
	height: 3px;
}

.open-btn1.active span:nth-of-type(2){
	opacity: 0;
}

.open-btn1.active span:nth-of-type(3){
	top: 25px;
	right: 0px;
	transform: translateY(-6px) rotate(45deg);
	width: 120%;
	height: 3px;
}

/* ドロワーメニュー > 背景
------------------------------ */
.nav-bg{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	transition: all 0.3s;
}

.nav-bg.bg-active{
	display: block;
	transition: all 0.3s;
}

.navWrap{
	display: block;
	box-sizing: border-box;
	position: fixed;
	z-index: 10;
	background-color: #f1f1f1;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.3;
	width: 100%;
	top: 0;
	right: -100%;
	transition: all 0.3s;
	padding: 80px 0 0;
}

.navWrap.panel-active{
	width: 100%;
	height: 100vh;
	top: 0;
	right: 0;
	transition: all 0.3s;
	padding: 80px 0 0;
	overflow-y: scroll;
}

/* ドロワーメニュー > 内部
------------------------------ */
.navInner{
	padding: 0 20px;
}

.navInner li a{
	display: block;
	box-sizing: border-box;
	position: relative;
	padding: 15px 0;
	font-size: 14px;
	font-weight: 400;
	border-bottom: 1px solid #cccccc;
	color: #333333;
	text-decoration: none;
}

.navInner li i{
	position: absolute;
	right: 0;
	top: 50%;
	font-size: 14px;
	margin-top: -7px;
}

.navInner li span{
	font-size: 13px;
	margin-left: 5px;
}

/* メイン
-------------------------------------------------- */
main{
	margin-top: 90px;
	padding: 0 20px;
}

h1{
	font-size: 20px;
}

.secInner{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 0 0;
}

h2{
	font-size: 16px;
	line-height: 20px;
	background: url("https://gigaplus.makeshop.jp/dartshive/img/hexagon01.svg") left center no-repeat;
	background-size: auto;
	padding-left: 30px;
	position: relative;
	z-index: 1;
	margin-bottom: 40px;
}

h2::after{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: #cccccc;
	position: absolute;
	z-index: 10;
	bottom: -10px;
	left: 0;
}

.makerAsk_pc{
	display: none;
}

.makerAsk_sp{
	display: block;
}

.makerAsk_sp .target{
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: 10px 20px;
	border: 1px solid #cccccc;
	border-bottom: none;
	background: #fbfbfb;
	font-size: 14px;
}

.makerAsk_sp ul{
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: 20px;
	border: 1px solid #cccccc;
	margin-bottom: 20px;
}

.makerAsk_sp li{
	font-size: 14px;
	line-height: 1.8em;
	padding-left: 1em;
	text-indent: -1em;
}

.askDL{
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	width: 100%;
	background: #000000;
	color: #ffffff;
	font-size: 14px;
	line-height: 1.6em;
	font-weight: 500;
	padding: 20px;
	text-decoration: none;
	transition: 0.2s;
	margin-bottom: 30px;
}

.askDL:hover{
	background: #cc0000;
}

.askDL i{
	font-size: 16px;
	margin-left: 20px;
	border-bottom: 1px solid #fff;
}

.itemList{
	padding: 0 10px;
}

.itemList li{
	width: 100%;
	background: #ffffff;
	box-shadow: 0 3px 6px rgba(0,0,0,0.25);
	margin-bottom: 20px;
	transition: 0.2s;
}

.itemList li a{
	display: block;
	box-sizing: border-box;
	padding: 30px;
	color: #333333;
	text-decoration: none;
}

.itemList li:hover{
	transform: translateY(6px);
	box-shadow: 0 0px 6px rgba(0,0,0,0.25);
}

.itemList li:hover a{
	color: #2906a9;
}

.itemList li img{
	width: 100%;
}

.name{
	display: flex;
	justify-content: space-between;
	margin: 30px 0 0;
}

.name p{
	font-size: 14px;
	line-height: 1.6em;
	padding-right: 20px;
}

.name i{
	line-height: 1.6em;
	font-size: 16px;
	text-decoration: underline;
}

/* SP > フッター
-------------------------------------------------- */
.f_inner{
	padding: 40px 20px;
	background: #000000;
	margin-top: 80px;
}

.f_inner > a{
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	width: 100%;
	background: #ffffff;
	border-radius: 5px;
	margin-bottom: 20px;
	padding: 15px 20px;
	text-decoration: none;
	font-size: clamp(16px, 1.5vw, 18px);
	color: #333333;
	font-weight: 600;
}

.f_inner > a i{
	font-size: 24px;
}

.sns{
	display: flex;
	box-sizing: border-box;
	justify-content: space-between;
	padding: 0 20px;
	margin-top: 40px;
}

.sns li{
	width: 18%;
}

.sns li a{
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	border-radius: 100%;
	background: #333333;
	aspect-ratio: 1;
}

.sns li a img{height: 60%;}
.sns li:nth-child(1) a img{height: 50%;}

.official_app{
	font-size: clamp(16px, 1.5vw, 18px);
	color: #ffffff;
	font-weight: 600;
	margin-top: 40px;
	text-align: center;
}

.download{
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.download a{
	display: block;
	margin: 0 10px;
}

.download img{
	width: 100%;
	height: 80px;
	object-fit: contain;
}

.copyright{
	background: #333333;
	color: #ffffff;
	font-size: clamp(14px, 1.3vw, 16px);
	text-align: center;
	padding: 10px 0;
}
}