<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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){

/* PC &gt; ヘッダー
-------------------------------------------------- */
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;
}

/* ドロワーメニュー &gt; ボタン
------------------------------ */
.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;
}

/* ドロワーメニュー &gt; 背景
------------------------------ */
.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: 999;
	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;
}

/* ドロワーメニュー &gt; 内部
------------------------------ */
.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 h2{
	display: block;
	box-sizing: border-box;
	padding: 15px 0;
	font-weight: 600;
	font-size: 18px;
	position: relative;
	z-index: 1;
	text-align: left;
	color: #333333;
	cursor: pointer;
}

.navInner li a{
	display: block;
	box-sizing: border-box;
	position: relative;
	font-size: 16px;
	font-weight: 400;
	color: #333333;
	text-decoration: none;
	margin-top: 20px;
}

.navInner li a:hover{
	text-decoration: underline;
}

.navInner li a i{
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -8px;
}

#head_nav{
	box-sizing: border-box;
	background: #ffffff;
}

#head_nav h2.line{
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #cccccc;
}

.linkFlex{
	display: flex;
	justify-content: center;
	border-top: 1px solid #cccccc;
	margin-top: 30px;
	padding-top: 30px;
}

.linkFlex a.item,
.linkFlex a.shop{
	display: block;
	width: 35%;
	text-align: center;
	color: #ffffff;
	font-size: 16px;
	font-weight: 500;
	border-radius: 5px;
	text-decoration: none;
	padding: 15px 0;
	position: relative;
	z-index: 1;
	box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
	margin: 10px 20px;
}

.linkFlex a.item{background: #cc0000;}
.linkFlex a.shop{background: #065fd4;}

.linkFlex a.item:hover,
.linkFlex a.shop:hover{
	margin: 13px 20px 7px;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.2);
}

.linkFlex a i{
	position: absolute;
	top: 50%;
	right: 20px;
}

.linkFlex a.item i{
	font-size: 20px;
	margin-top: -10px;
}

.linkFlex a.shop i{
	font-size: 16px;
	margin-top: -8px;
}

/* PC &gt; コンテンツ
-------------------------------------------------- */
 #wrap{
	width: 100%;
	max-width: 1200px;
	margin: 60px auto 0;
	padding: 60px 0;
}

#wrap h1{
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}

#wrap h1 br{
	display: none;
}

section{
	margin-top: 60px;
}

section h2{
	font-size: 18px;
	border-bottom: 2px solid #cacaca;
	font-weight: bold;
	padding: 0 0 10px 30px;
	position: relative;
	text-align: left;
	margin-bottom: 20px;
}

section h2::before{
	content: "";
	width: 18px;
	height: 20px;
	background: url(https://gigaplus.makeshop.jp/dartshive/img/hexagon01.svg) no-repeat;
	background-size: 18px 20px;
	position: absolute;
	top: 50%;
	margin-top: -5px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
}

section p{
	font-size: 16px;
	line-height: 2em;
	font-weight: 500;
}

dt{
	font-size: 16px;
	font-weight: 600;
}

dt::before{
	content: "・";
}

dd{
	font-size: 14px;
	line-height: 2em;
	padding-left: 1em;
	margin-bottom: 20px;
}

.use_sample{
	margin-top: 40px;
}

.sampleList li,
.otherList li{
	font-size: 16px;
	line-height: 2em;
	padding-left: 1em;
	text-indent: -1em;
}

.sampleList li::before,
.otherList li::before{
	content: "・";
}

.enactment {
	font-size: 16px;
	margin: 40px auto 0;
	text-align: right;
}

/* PC &gt; フッター
-------------------------------------------------- */
footer{
	display: none;
}

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

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

/* SP &gt; ヘッダー
-------------------------------------------------- */
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;
}

/* ドロワーメニュー &gt; ボタン
------------------------------ */
.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;
}

/* ドロワーメニュー &gt; 背景
------------------------------ */
.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: 999;
	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;
}

/* ドロワーメニュー &gt; 内部
------------------------------ */
#head_nav{
	box-sizing: border-box;
	padding: 10px 20px;
	background: #ffffff;
	box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
}

.navInner{
	padding: 0 20px;
}

.navInner h2{
	display: block;
	box-sizing: border-box;
	padding: 15px 0;
	font-weight: 600;
	font-size: 16px;
	position: relative;
	z-index: 1;
}

.navInner ul{
	display: block;
	margin-bottom: 15px;
}

.navInner li a{
	display: block;
	box-sizing: border-box;
	position: relative;
	padding: 15px 15px 15px 0 !important;
	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;
}

.linkFlex{
	margin-top: 30px;
}

.linkFlex a.item,
.linkFlex a.shop{
	display: block;
	box-sizing: border-box;
	width: 100%;
	text-align: center;
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	border-radius: 5px;
	text-decoration: none;
	padding: 15px 0;
	position: relative;
	z-index: 1;
	box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
	margin-bottom: 20px;
}

.linkFlex a.item{background: #cc0000;}
.linkFlex a.shop{background: #065fd4;}

.linkFlex a i{
	position: absolute;
	top: 50%;
	right: 20px;
}

.linkFlex a.item i{
	font-size: 18px;
	margin-top: -9px;
}

.linkFlex a.shop i{
	font-size: 14px;
	margin-top: -7px;
}

/* SP &gt; コンテンツ
-------------------------------------------------- */
 #wrap{
 	box-sizing: border-box;
	width: 100%;
	margin: 60px auto 0;
	padding: 40px 20px;
}

#wrap h1{
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}

section{
	margin-top: 40px;
}

section h2{
	font-size: 18px;
	border-bottom: 2px solid #cacaca;
	font-weight: bold;
	padding: 0 0 10px 30px;
	position: relative;
	text-align: left;
	margin-bottom: 20px;
}

section h2::before{
	content: "";
	width: 18px;
	height: 20px;
	background: url(https://gigaplus.makeshop.jp/dartshive/img/hexagon01.svg) no-repeat;
	background-size: 18px 20px;
	position: absolute;
	top: 50%;
	margin-top: -5px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
}

section p{
	font-size: 14px;
	line-height: 2em;
	font-weight: 500;
}

dt{
	font-size: 16px;
	font-weight: 600;
	padding-left: 1em;
	text-indent: -1em;
}

dt::before{
	content: "・";
}

dd{
	font-size: 14px;
	line-height: 2em;
	margin-top: 10px;
	margin-bottom: 20px;
	padding-left: 1em;
}

.use_sample{
	margin-top: 40px;
}

.sampleList li,
.otherList li{
	font-size: 14px;
	line-height: 2em;
	padding: 5px 0 5px 1em;
	text-indent: -1em;
	border-bottom: 1px dotted #cccccc;
}

.sampleList li::before,
.otherList li::before{
	content: "・";
}

.enactment {
	font-size: 14px;
	margin: 40px auto 0;
	text-align: right;
}

/* SP &gt; フッター
-------------------------------------------------- */
footer{
	padding: 40px 20px;
	background: #000000;
}

footer &gt; 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;
}

footer &gt; 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;
}
}</pre></body></html>