@charset "UTF-8";
/* カラー 赤*/
/*
緑：#6EB92C
赤：#C00000
青：#002060
黄：#BF8F00
橙：#ED7D31

/* カラー選択 */
:root {
  --main-color: #dc143c;
}

/* PC用CSS */
@media print, screen and (min-width: 641px) {
/* 英語：Nirmala UI（ノーマル） */
@font-face {
	font-family: 'Nirmala UI';
	src: url(../font/Nirmala.ttf);
}
/* 英語：Nirmala UI（太字） */
@font-face {
	font-family: 'Nirmala UI B';
	src: url(../font/NirmalaB.ttf);
}
/* 日本語：UD デジタル 教科書体 NP-R */
@font-face {
	font-family: 'UD Digi Kyokasho NP-R';
	src: url(../font/UD Digi Kyokasho NP-R.ttc);
}

body {
	margin:0px;
	padding:0px;
	font-family:"Nirmala UI B", "UD Digi Kyokasho NP-R", "Meiryo", "メイリオ";
	/*font-family:"Nirmala UI", "UD Digi Kyokasho NP-R", "Meiryo", "メイリオ";*/
	min-width: 1200px;/*背景が横スクロールのときに消えないように*/
}

html>body {
	margin:0px;
	padding:0px;
	font-family:"Nirmala UI B", "UD Digi Kyokasho NP-R", "Meiryo", "メイリオ";
	/*font-family:"Nirmala UI", "UD Digi Kyokasho NP-R", "Meiryo", "メイリオ";*/
	min-width: 1200px;/*背景が横スクロールのときに消えないように*/
}


UL {
	LIST-STYLE-TYPE: square; 
	margin:0px;
	padding:0px;
	letter-spacing:1pt;
}

OL UL {
	LIST-STYLE-TYPE: square; 
	margin:0px;
	padding:0px;
	letter-spacing:1pt;
}

OL {
	margin:0px;
	padding:0px;
	letter-spacing:1pt;
}

li {
	margin: 0px;
	font-size:13px;
	color:#333333;
	padding: 0px 0px 0px 0px;
	line-height:160%;
	letter-spacing:1pt;
}

li A         { color: #000000; TEXT-DECORATION: none;}
li A:link    { color: #000000; TEXT-DECORATION: none;}
li A:visited { color: #000000; TEXT-DECORATION: none;}
li A:hover   { color: #ff9900; TEXT-DECORATION: none;}

/*-------------------------------
 ドキュメント要素指定 
-------------------------------*/
#all {
	margin-left: auto;
	margin-right: auto;
	padding: 30px 0px 0px 0px;
}
/*-------------------------------
back白
-------------------------------*/
.fff{
	background-color: #fff;
	margin: 0px;
	padding: 10px 0px 40px 0px;
}
/*-------------------------------
backグレー
-------------------------------*/
.eee{
	background-color: #eee;
	margin: 0px;
	padding: 10px 0px 40px 0px;
}
/*-------------------------------
画面配置幅
-------------------------------*/
.frame1200 {
	width: 1200px;	  /*全体の幅を指定する*/ 
	margin: 0 auto;    /*マージンの指定をする、ブラウザ対策*/
	text-align: center;   /*全体を真ん中揃えにする。*/
}
/*-------------------------------
画面配置幅
-------------------------------*/
.frame1000 {
	width: 1000px;	  /*全体の幅を指定する*/ 
	margin: 0 auto;    /*マージンの指定をする、ブラウザ対策*/
	text-align: center;   /*全体を真ん中揃えにする。*/
}

/*-------------------------------
ヘッダー
-------------------------------*/
#headdder {
	margin: 0px;
	height:70px;
	text-align: left;
}
/*-------------------------------
メニュー
-------------------------------*/
ul#navi {
	height:35px;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	list-style-type: none;
	text-align: center;
}

ul#navi li {
	float:left;
	height:35px;
	font-size:13px;
	display: block;
	margin:  0px 0px 0px 40px;
	padding: 0px 0px 0px 0px;
	line-height: 40px;
	text-align: center;
}

ul#navi li a {
	display: block;
	height:35px;
	margin:  0px 0px 0px 40px;
	padding: 0px 0px 0px 0px;
	line-height: 40px;
	text-decoration: none;
}
/*-------------------------------
メニュー固定
-------------------------------*/
.fixed {
	position: fixed;
	top: 0;
	width: 1200px;
	z-index: 10000;
	background-color: #ED7D31;
	color: #fff;
}
.fixed A         { color: #fff; text-decoration: underline}
.fixed A:link    { color: #fff; text-decoration: underline}
.fixed A:visited { color: #fff; text-decoration: underline}
.fixed A:hover   { color: #ff3300; text-decoration: none}
/*-------------------------------
コンテンツ
-------------------------------*/
#content {
	margin: 0 auto;    /*マージンの指定をする、ブラウザ対策*/
	text-align: center;   /*全体を真ん中揃えにする。*/
}

#content h1 {
	margin: 0px 0px 15px 0px;
	padding: .5em .75em;
	color: #717171;
	border-top: 2px dashed #ED7D31;
	border-bottom: 2px dashed #ED7D31;
	box-shadow: 0 7px 10px -5px rgba(0, 0, 0, .1) inset;
	font-size:30px;
	text-align: left;
}	
#content h1::after {
	position: absolute;
	top: 0;
	right: 0;
	content: '';
	width: 0;
	border-width: 0 16px 16px 0;
	border-style: solid;
	border-color: #fff #fff #ddd #ddd;
	box-shadow: -1px 1px 2px rgba(0, 0, 0, .1);
}

#content h2 {
	margin: 50px 0px 0px 0px;
	padding:0px;
	font-size:28px;
	line-height: 170%;
	color: #ED7D31;
	text-align: center;
	border-bottom: 1px solid #ED7D31;
}

#content h3 {
	margin: 0px 5px 20px 5px;
	padding: 20px 5px 0px 5px;
	font-size:20px;
	color: #ED7D31;
	line-height: 120%;
	text-align: left;
	border-bottom: 1px solid #ED7D31;
}
#content h3:first-letter {
	font-size: 1.5em;
}

#content h4 {
	margin: 0px 30px 10px 30px;
	padding: 5px;
	font-size:18px;
	color: #ED7D31;
	line-height: 120%;
	text-align: center;
	border: 1px solid #ED7D31;
	border-radius: 4px;
	background: #fff;
}
#content h4 A         { color: #ED7D31; TEXT-DECORATION: none;}
#content h4 A:link    { color: #ED7D31; TEXT-DECORATION: none;}
#content h4 A:visited { color: #ED7D31; TEXT-DECORATION: none;}
#content h4 A:hover   { color: #ff3300; TEXT-DECORATION: none;}

#content h5 {
	margin: 0px 0px 10px 0px;
	padding:0px;
	font-size:17px;
	line-height: 170%;
	color: #717171;
	text-align: left;
}

#content h6 {
	width: 500px;
	font-size:16px;
	padding: 10px;
	text-align:center;
	border: 3px solid #ED7D31;
	border-radius: 3em .7em 2em .7em/.7em 2em .7em 3em;
	font-style: oblique;
	background-color: #fff;
}
#content p {
	margin: 0px 10px 20px 20px;
	padding:0px;
	font-size:14px;
	line-height: 180%;
	color: #333333;
	text-align: left;
}

#content table {
	text-align: left;
	font-size:15px;
	width: 90%
}

#content table.type01 {
	margin: 30px 0px 0px 0px;
	padding:0px;
	border-collapse: separate;
	border-spacing: 15;
	text-align: left;
	line-height: 1.5;
	/*border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;*/
	font-size:13px;
}

#content table.type01 th {
	width:20%;
	padding: 10px;
	/*vertical-align: top;
	border-right: 1px solid #ccc;*/
	border-bottom: 1px solid #ccc;
	/*border-top: 1px solid #fff;
	border-left: 1px solid #fff;*/
	background: #eee;
	font-weight: normal;
}
#content table.type01 td {
	padding: 10px;
	/*vertical-align: top;
	border-right: 1px solid #ccc;*/
	border-bottom: 1px solid #ccc;
}

/*上にスペースを空ける*/
.space {
	margin: 30px 0px 0px 0px;
}

/*画像にマウスを載せると色が薄くなる*/
a:hover img {
 opacity: 0.5;
 filter: alpha(opacity=50);
 -moz-opacity: 0.5;
}

/*--------------------------------
フッター
--------------------------------*/
#foot {
	margin: 0px 0px 0px 0px;
	padding:  5px 0px 0px 0px;
	height: 25px;
	clear: both;
	background-color: #717171;
}

#foot p {
	font-size: 13px;
	color: #FFFFFF;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
}

#foot p A:link    { color:#FFFFFF; text-decoration:none;}
#foot p A:visited { color:#FFFFFF;text-decoration:none;}
#foot p A:hover   { color:#ff3300; text-decoration:underline; }

/*--------------------------------
topへボタン
--------------------------------*/
#topbutton {
	/* ▼表示位置を画面の右下に固定 */
	position: fixed; /* ←表示場所を固定 */
	bottom: 50px;   /* ←下端からの距離 */
	right: 15px;    /* ←右端からの距離 */
	width: 50px;     /* ←横幅 */
	height:50px;
	
	/* ▼最初は非表示にしておく */
	display: none;
	
	/* ▼配色・配置・文字の装飾など */
	background-color: #717171; /* ←背景色 */
	opacity: 0.75;             /* ←透明度 */
	border-radius: 0px;       /* ←角丸の半径 */
	text-align: center;    /* ←文字の位置 */
	font-size: 80%;       /* ←文字サイズ */
	font-weight: bold;     /* ←文字の太さ */
	margin: 0px;    /* ←外側の余白 */
	padding: 15px;  /* ←内側の余白 */
}
#topbutton a {
	/* ▼リンクの装飾 */
	color: white;          /* ←文字色 */
	text-decoration: none; /* ←下線なし */
}
#topbutton a:hover {
	/* ▼マウスが載ったときの装飾 */
	color: #333333;              /* ←文字色 */
	text-decoration: underline; /* ←下線あり */
}

/*--------------------------
右固定ボタン
--------------------------*/
.bn {
	top: 155px;
	right:0px;
	position: fixed;
	z-index: 999;
	width: 80px;
	padding: 10px 0px 5px 10px;
	background:#ED7D31;
	border-radius: 5px 0px 0px 5px;
}
.bn02 {
	top: 290px;
	right:0px;
	position: fixed;
	z-index: 999;
	width: 80px;
	padding: 10px 0px 5px 10px;
	background:#717171;
	border-radius: 5px 0px 0px 5px;
}
/*--------------------------
コンテンツ(product)
--------------------------*/
.product {
	margin: 10px 0px 0px 10px;
	padding: 0px;
	width:48%;
	height: auto;
	/*height: 450px;*/
	float: left;
	line-height: 100%;
	/*border: 1px #999 dashed;*/
}

.product A:link    { color:#FF6600; text-decoration:none;}
.product A:visited { color:#FF6600; text-decoration:none;}
.product A:hover   { color:#ff3300; text-decoration:none;}

.product img {
	object-fit: contain;
	width: 98%;
	margin: 0px;
	padding: 2px;
}

.product h6{
	margin: 0px;
	padding: 0px 10px 10px 0px;
	width:80%;
	font-size:17px;
	color: #333;
	line-height: 120%;
}
.product p{
	margin: 0px;
	padding: 0px 5px 10px 5px;
	width:80%;
	/*height: 100px;*/
	font-size:15px;
	color: #333;
	line-height: 90%;
}
.product p A         { color:#FF6600; TEXT-DECORATION: none;}
.product p A:link    { color:#FF6600; TEXT-DECORATION: none;}
.product p A:visited { color:#FF6600; TEXT-DECORATION: none;}
.product p A:hover   { color:#ff3300; TEXT-DECORATION: none;}
	

/*--------------------------
商品画像調整
--------------------------*/
.object-fit-img {
  object-fit: contain;
  font-family: 'object-fit: contain;'
}
/*--------------------------
文字と写真を並べる
--------------------------*/
.box {
  margin: 10px 0;
  float: left;
  width: 100%;
}
.box img {
  max-width: 40%;
  float: left;
}
/*--------------------------
詳しく見る装飾
--------------------------*/
.more{
	width: 300px;
	margin: 0px auto 80px auto;
	padding: .5em .75em;
	text-align: center;   /*全体を真ん中揃えにする。*/
	font-size:20px;
	line-height: 120%;
	border: 1px solid #ED7D31;
	border-radius: 4px;
	background:#ED7D31;
	color: #FFF;
}
.more A         { color:#FFF; TEXT-DECORATION: none;}
.more A:link    { color:#FFF; TEXT-DECORATION: none;}
.more A:visited { color:#FFF; TEXT-DECORATION: none;}
.more A:hover   { color:#ff3300; TEXT-DECORATION: none;}

/*--------------------------
Google map
--------------------------*/
.ggmap {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
	position: absolute;
	top: 20px;
	left: 10px;
	right: 10px;
	width: 100%;
	height: 100%;
}
/*--------------------------
検索タグ
--------------------------*/
ul#tagu {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	list-style-type: none;
}

ul#tag li {
	float:left;
	background: #717171;
	color: #FFFFFF;
	font-size:13px;
	display: block;
	margin:  5px;
	padding: 5px;
	text-align: center;
	border-radius: 5px;       /* ←角丸の半径 */
	/*border: 1px solid #99A07E;*/
}
/*--------------------------
画像横スライド
--------------------------*/
.multiple-items {
	width: 600px;
	margin: 0 auto;
	padding: 20px 0px 0px 0px;
	font-size: 15px;
	line-height: 120%;
	color: #000;
}
.multiple-items img {
	width: 100%;
	height: auto;
}
/*--------------------------------
非表示
--------------------------------*/
#headder {
	display:none;
}

#footer_menu {
	display:none;
}
#mob {
	display:none;
}
}