<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*================================================
 *  CSSリセット
 ================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}

/*================================================
 *  一般・共通設定
 ================================================*/
body {
	font-size:14px;
	font-family:"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	color:#352f25;
	line-height:1.6;

	background-image:linear-gradient(
	-45deg,
	#ffe224 25%,
	#231916 25%,
	#231916 50%,
	#ffe224 50%,
	#ffe224 75%,
	#231916 75%,
	#231916
);
	background-size: 30px 30px;
	background-attachment: fixed;

    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;

	background-attachment: fixed
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

/* Twitter */
.btn-twitter {
  width: 120px;
  display: inline-block;
  padding: .6em 1em .6em 2.5em;
  margin: 0 0 .4em;
  background-color: #55acee;
  color: #fff;
  font-size: 16px; /* 16 */
  cursor: pointer;
  position: relative;
  text-decoration: none;
}
.btn-twitter::after {
  position: absolute;
  content: '\f099';
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400;
  top: 50%;
  left: .5em;
  transform: translateY(-50%);
  font-size: 1.2em;
}

/* Facebook */
.btn-facebook {
  width: 120px;
  display: inline-block;
  padding: .6em 1em .6em 2.5em; /* .6em .8em .6em 2.5em */
  margin: 0 0 .4em;
  background-color: #315096;
  color: #fff;
  font-size: 16px; /* 16 */
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.btn-facebook::after {
  position: absolute;
  content: '\f09a';
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400;
  top: 50%;
  left: .5em;
  transform: translateY(-50%);
  font-size: 1.2em;
}

/* はてなブックマーク */
.btn-hatena {
  width: 120px;
  display: inline-block;
  padding: .6em 1em .6em 2.5em;
  margin: 0 0 .4em;
  background-color: #008fde;
  color: #fff;
  font-size: 16px; /* 16 */
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.btn-hatena::after {
  position: absolute;
  content: "B!";
  top: 50%;
  left: .5em;
  transform: translateY(-50%);
  font-size: 1.2em;
  font-weight: bold;
}

/* LINE */
.btn-line {
  width: 120px;
  display: inline-block;
  padding: .6em 1em .6em 2.5em;
  margin: 0 0 .4em;
  background-color: #1dcd00;
  color: #fff;
  font-size: 16px; /* 16 */
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.btn-line::after {
  position: absolute;
  content: "\f3c0";
  font-family: 'Font Awesome 5 Brands';
  top: 50%;
  left: .5em;
  transform: translateY(-50%);
  font-size: 1.2em;
  font-weight: 400;
}

/* Pocket */
.btn-pocket {
  width: 120px;
  display: inline-block;
  padding: .6em 1em .6em 2.5em;
  margin: 0 0 .4em;
  background-color: #EE4056;
  color: #fff;
  font-size: 16px; /* 16 */
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.btn-pocket::after {
  position: absolute;
  content: '\f265';
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400;
  top: 50%;
  left: .5em;
  transform: translateY(-50%);
  font-size: 1.2em;
}

#contents {
	width: 98%; /* 980px */
	margin:0 auto;
}

a {
	color:#f39100;
}
a:hover {
	color:#d98200;
}

h1 {
	font-size:28px;
}

h2 {
	clear:both;
	margin-top:50px;
	margin-bottom:2em;
	font-size:28px;
	color:#655844;
	text-align:center;
}

h2 span {
	display:block;
	font-size:13px;
	text-decoration:none !important;
	font-weight:bold;
}

h3 {
	margin-bottom:0.25em;
	font-size:18px;
	color:#e65305;
	font-weight:bold;
}

h4 {
	margin-bottom:0.25em;
	font-size:16px;
	font-weight:bold;
}

h5 {
	margin-bottom:0.25em;
	padding-left:25px;
	font-size:16px;
	background:url('../images/bg_arrow_black.png') 0 50% no-repeat;
}

h6 {
	margin-bottom:0.25em;
	padding-left:5px;
	font-size:16px;
}

p {
	margin:0 0 3em 0; /*0 0 3em 0*/
}

img {
	vertical-align:bottom;
}

em {
	font-weight:bold;
}

strong {
	font-weight:bold;
}

pre {
	margin:1em 0;
	padding:1em;
}

blockquote {
	margin-bottom:1em;
	padding:1em;
	border:1px dotted #9b8462;
	border-left:5px solid #9b8462;
}

ul,ol,dl {
	margin:0 0 1em 0;
}
ul li {
	list-style:disc;
}
ol li {
	list-style:decimal;
}
li {
	margin-left:2em;
}

dt {
	margin-bottom:0.5em;
	border-bottom:1px dotted #ddd;
}
dd {
	margin-bottom:1em;
	padding: 10px;
	background-color: #ffe224;
}

table {
	width:100%;
	margin-bottom:1em;
	border-collapse:collapse;
	border:1px solid #9b8462;
}
th {
	padding:10px;
	text-align:center;
	vertical-align:middle;
	border:1px solid #9b8462;
	background:#ede2d5;
}
td {
	padding:10px;
	text-align:left;
	border:1px solid #9b8462;
}


/*================================================
 *  汎用クラス
 ================================================*/
.conL {
	clear:both;
	box-sizing:border-box;
	float:left;
	width:50%;
	padding-right:10px;
}

.conR {
	box-sizing:border-box;
	float:right;
	width:50%;
	padding-left:10px;
}

.name {
	margin-left:2em;
	font-size:13px;
}

.menu {
	overflow:hidden;
	margin-bottom:80px;
	padding:20px;
	border-radius: 10px;
	background:#ede2d5;
}

.menu  div {
	position:relative;
}

.menu .innerL {
	box-sizing:border-box;
	width:50%;
	float:left;
	padding-right:20px;
}

@media screen and (max-width:767px) {
	.menu .innerL {
		padding-right:0;
		padding-bottom:2em;
	}
}


.menu .innerL div {
	position:relative;
	margin-bottom:2em;
}
.menu .innerL div:last-child {
	margin-bottom:0;
}

.menu .innerR {
	box-sizing:border-box;
	width:50%;
	float:right;
	padding-left:20px;
}

@media screen and (max-width:767px) {
	.menu .innerR {
		padding-left:0;
	}
}


.menu .innerR div {
	position:relative;
	margin-bottom:2em;
}
.menu .innerR div:last-child {
	margin-bottom:0;
}

.menu p {
	margin-bottom:0;
}

.menu .price {
	position:absolute;
	top:0;
	right:0;
}

.textC {
	text-align:center;
}

.menu h4:before {
	content:'・';
}

.map {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	margin-bottom:40px;
}
 
.map iframe,
.map object,
.map embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* 写真中央寄せ */
.imgC {
	clear:both;
	overflow:hidden;
	margin-bottom:50px;
	text-align:center;
}
.imgC img {
	border-radius:5px;
	margin-bottom:0.5em;
}

/* 写真左寄せ */
.imgL {
	clear:both;
	overflow:hidden;
	margin-bottom:50px;
}
.imgL img {
	float:left;
	margin:0 2em 2em 0;
	border-radius:5px;
}

/* 写真右寄せ */
.imgR {
	clear:both;
	overflow:hidden;
	margin: 2%;
	padding: 2%;
	background-color: #ffe224;
	border: solid 3px #231916;
}

.imgR img {
	float:right;
	margin:0 0 2em 2em;
	border-radius:5px;
}

.imgkadomaru {
	border-radius:5px;
}

/* 2カラム（スマートフォンでは1カラム) */
.Col2 {
	overflow:hidden;
	margin-bottom: 10px; /* 50px */
}
.Col2Inner {
	overflow:hidden;
	margin-right:-2%;
}
.Col2Inner div {
	width:48%;
	float:left;
	margin-right:2%;
}
.Col2Inner div:nth-child(2n+1) {
	clear:both;
}
.Col2Inner img {
	width:100%;
	margin-bottom:0.5em;
	border-radius:5px;
}

/* 3カラム（スマートフォンでは1カラム) */
.Col3 {
	overflow:hidden;
	margin-bottom: 10px; /* 50px */
}
.Col3Inner {
	overflow:hidden;
	margin-right:-3%;
}
.Col3Inner div {
	width:31%;
	float:left;
	margin-right:2%;
}
.Col3Inner div:nth-child(3n+1) {
	clear:both;
}
.Col3Inner img {
	width:100%;
	margin-bottom:0.5em;
	border-radius:5px;
}

/* 4カラム（スマートフォンでは1カラム) */
.Col4 {
	overflow:hidden;
	margin-bottom: 10px; /* 50px */
}
.Col4Inner {
	overflow:hidden;
	margin-right:-6%;
}
.Col4Inner div {
	width:22%;
	float:left;
	margin-right:2%;
}
.Col4Inner div:nth-child(4n+1) {
	clear:both;
}
.Col4Inner img {
	width:100%;
	margin-bottom:0.5em;
	border-radius:5px;
}

/* ボタン（タイプ1） */
.btn01 a {
	display:inline-block;
	padding:10px 10px 10px 40px;
	margin-bottom: 5px;
	color:#fff;
	text-decoration:none;
	border-radius:5px;
	background:#867254 url('../images/bg_arrow_white.png') 10px 50% no-repeat;
	transition:all 0.2s ease 0s;
}
.btn01 a:hover {
	background:#6d5d45 url('../images/bg_arrow_white.png') 10px 50% no-repeat;
	transition:all 0.2s ease 0s;
}

/* ボタン（タイプ2） */
.btn02 a {
	display:inline-block;
	padding:10px;
	color:#6d5d45;
	text-decoration:none;
	border-radius:5px;
	border:1px solid #6d5d45;
	background:#fff;
	transition:all 0.2s ease 0s;
}
.btn02 a:hover {
	color:#fff;
	background:#6d5d45;
	transition:all 0.2s ease 0s;
}

/*================================================
 *  ヘッダー
 ================================================*/
header {
	position:fixed;
	top:0;
	z-index:100;
	width:100%;
	background: #231916; /* #9b8462 #111111 */
}

header h1 {
	padding:5px 0;
}

header h1 a {
	color:#fff;
	text-decoration:none;
}

header h1 a:hover {
	color:#fff465;
}

header .inner {
	position:relative;
	width: 98%;
	margin:0 auto;
}

/* グローバルナビゲーション */
header nav {
	overflow:hidden;
	position:absolute;
	top:0;
	right:0;
	padding-top: 36px;
}
header nav ul {
	margin:0 0 0 -10px;
}
header nav li {
	position:relative;
	float:left;
	list-style:none;
	margin:0;
	padding:0 20px;
}

header nav li a {
	font-weight:bold;
	color:#ffecd1;
	text-decoration:none;
}

header nav li a:hover {
	color:#ffa06d;
	text-decoration:underline;;
}

/*================================================
 *  メイン
 ================================================*/
main {
	width:100%;
}

section {
	margin-bottom:10%;
}

/*================================================
 *  フッター
 ================================================*/
footer {
	clear:both;
	padding:2% 0;
	font-size:11px;
	text-align:center;
}

/*================================================
 *  ページトップへの戻り
 ================================================*/
.totop {
	position:fixed;
	bottom:15px;
	right:15px;
}
.totop a {
	display:block;
	text-decoration:none;
}
.totop img {
	background:#867254;
}
.totop img:hover {
	background:#6d5d45;
}

/*================================================
 *  スライドショー
 ================================================*/
.slide {
	overflow:hidden;
	position:relative;
}
.slideInner {
	list-style:none;
	margin:0;
	padding:0;
	text-align:center;
}
.slideInner li {
	position:absolute;
	width:100%;
	margin:0;
	padding:0;
	background:#fff;
	list-style:none;
}
.slideInner li img {
	max-width:100%;
}

/*================================================
 *  タブレット向けデザイン
 ================================================*/
/* スクロールバーを考慮して20px大きいサイズで切り替え */
@media screen and (max-width:979px) {
	header h1 {
		margin-left:10px;
	}

	header .inner {
		width:100%;
	}

	#contents {
		box-sizing:border-box;
		width:100%;
		padding:0 10px;
	}
}

/*================================================
 *  スマートフォン向けデザイン
 ================================================*/
@media screen and (max-width:767px) {
	header nav {
		position:relative;
		padding:0 0 10px 0;
	}

	h2 {
		margin-top:30px;
	}

	.conL {
		float:none;
		width:100%;
		padding-right:0;
	}

	.conR {
		float:none;
		width:100%;
		padding-left:0;
	}

	.menu {
		margin-bottom:40px;
	}

	.menu .innerL,
	.menu .innerR {
		float:none;
		width:100%;
}

	.imgC {
		margin-bottom:30px;
	}
	.imgC img {
		max-width:100%;
	}

	.imgL {
		margin-bottom:30px;
	}
	.imgL img {
		display:block;
		float:none;
		max-width:100%;
		margin:0 auto 1em auto;
	}

	.imgR {
		margin-bottom:30px;
	}
	.imgR img {
		display:block;
		float:none;
		max-width:100%;
		margin:0 auto 1em auto;
	}

	.Col2 {
		margin-right:0;
		margin-bottom:30px;
	}
	.Col2Inner {
		margin-right:0;
	}
	.Col2Inner div {
		float:none;
		width:100%;
	}

	.Col3 {
		margin-bottom:30px;
	}

	.Col3Inner {
		margin-right:0;
	}
	.Col3Inner div {
		float:none;
		width:100%;
	}

	.Col4 {
		margin-bottom:30px;
	}

	.Col4Inner {
		margin-right:0;
	}
	.Col4Inner div {
		float:none;
		width:100%;
	}

}

/* レスポンシブテーブル */
.col-head-type1 {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 50px;
}
 
.col-head-type1 th,
.col-head-type1 td {
  border: 1px solid #dbe1e8;  
  padding: 8px;
}
 
.col-head-type1 th {
  background: #f9fafc;
  text-align: left;
  width: 200px;
}
 
@media only screen and (max-width: 767px) {
  .col-head-type1 tr,
  .col-head-type1 th,
  .col-head-type1 td {
    display: block;
    width: auto;
  }
  
  .col-head-type1 tr:first-child {
    border-top: 1px solid #dbe1e8;  
  }
  
  .col-head-type1 th,
  .col-head-type1 td {
    border-top: none;
  }
}
/* // レスポンシブテーブル */

/* レスポンシブテーブル2 */
@media screen and (max-width:979px) {
#price table {
    border-top: 1px solid #9b8462;
    border-right: 1px solid #9b8462;
    width: 640px;
    border-spacing: 0;
    margin: 0 auto;
}
#price th, td {
    border-bottom: 1px solid #9b8462;
    border-left: 1px solid #9b8462;
    text-align: left;
    padding: 5px;
}
#price th { background-color: #ede2d5; color: #fff;}
}

@media screen and (max-width:767px) {
#price table { width: 100%; border:none; padding: 10px;}
#price thead { display: none;}
#price tr {
    border-top: 1px solid #9b8462;
    display: block;
    margin-bottom: 20px;
}
#price td {
    border-right: 1px solid #9b8462;
    border-bottom: none;
    display: block;
    padding: 0;
}
/* tdのデザイン */
#price td:nth-of-type(1) { background-color: #ede2d5;}
#price td:last-child { border-bottom: 1px solid #9b8462;}
     
/*td:beforeのデザイン*/
#price td:before {
    background-color: #ede2d5;
    color: #4f4d47;
    display: block;
}
/* contentでタイトルを追加 */
#price td:nth-of-type(2):before { content: &amp;quot;データ容量&amp;quot;;}
#price td:nth-of-type(3):before { content: &amp;quot;バージョン管理&amp;quot;;}
#price td:nth-of-type(4):before { content: &amp;quot;料金&amp;quot;;}
}
/* // レスポンシブテーブル2 */

/* ラベル部分 左上に表示 */
.triangle::before {
    content: "";
    top: 0;
    left: 0;
    border-bottom: 6em solid transparent;
    border-left: 6em solid #DA0012; /* ラベルの色はここで変更 */
    position: absolute;
    z-index: 100;
}
.triangle::after {
    content: "再入荷";
    display: block;
	font-size: 14px;
    top: 20px;
    left: 5px;
    transform: rotate(-45deg);
    color: #fff; /* 文字色はここで変更 */
    position: absolute;
    z-index: 101;
}

/* YouTube動画のレスポンシブ対応*/
.movie-wrap {
	 text-align: center;
     position: relative;
     padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅 56.25%*/
     height: 0;
     overflow: hidden;
}
 
.movie-wrap iframe {
     position: absolute;
     top: 0;
     left: 0;
     width:  100%;
     height: 100%;
}</pre></body></html>