<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 Document */

html {
}

/*全体のサイズ*/
.base{
	width: 1200px;
	margin: 0 auto;
	border: 10px;

}

/*赤字*/
.red {
	color:#c93d3d;
}

/*赤背景*/
.redback {
	background: #cc3333;
	margin: 1em;
	padding: 1em 0;
}

/*グレー背景*/
.glayback {
	background: #efefef;
	margin: 1em auto;
	padding: 1.5em;
	width: 70%;
	text-align: center;
}

/*赤枠*/
.box_red {
    position: relative;
    margin: 1em ;
    padding: 2em;
    border: solid 0.3rem #cc3333;
}

/*赤枠*/
.box_glay {
    position: relative;
    margin: 1em ;
    padding: 2em;
    border: solid 0.3rem #333;
}

/*文字にボーダー*/
.under {
  background: linear-gradient(transparent 50%, #fffbb5 50%);
}

/*白文字タイトル*/
.titlewhite {
	color:#fff;
	font-size: 2.2rem;
	line-height: 1.618 ;
	font-family:"Osaka-mono", "MS Gothic", "monospace";
	font-weight: bold;
	letter-spacing: 0.22em;
	margin: 0 auto ;
	text-align: center;
}

/*白背景*/
.bgwhite {
	background-color: #fff;
	padding: 1em;
	margin: 2em;
	border: 1em;
}


.attention {
	color:#cc3333;
	font-size: 1.8rem;
	line-height: 1.618 ;
	font-family:"Osaka-mono", "MS Gothic", "monospace";
	font-weight: bold;
	letter-spacing: 0.1em;
	text-align: center;
}

.red {
	color:#cc3333;
}
 
/* 文字のアンチエイリアス*/
.antialias {
    -webkit-transform: rotate(0.028deg);
    -moz-transform: rotate(0.028deg);
    -ms-transform: rotate(0.028deg);
    -o-transform: rotate(0.028deg);
    transform: rotate(0.028deg);
}
.antialias2 {
    -webkit-transform: scale(1,1.001);
    -moz-transform: scale(1,1.001);
    -ms-transform: scale(1,1.001);
    -o-transform: scale(1,1.001);
    transform: scale(1,1.001);
}

/* 画像リンク透過*/
a:hover img {
filter:alpha(opacity=75);-moz-opacity:0.75;opacity:0.75;}
.style5 {font-size: 13px;
color:#66666;
margin:0;
padding:0;
float:center;
}

/* 通常文字　*/
.text {
	line-height: 1.618 ;
	width: 100%;
}

/* 通常文字中央　*/
.text_center {
	line-height: 1.618 ;
	text-align: center;
}

/* 通常文字小　*/
.text_s {
	font-size: 1.5rem;
	line-height: 1.618 ;
}

/* 通常文字大　*/
.text_l {
	font-size: 1.2rem;
	line-height: 1.618 ;
}

/* 画像をPCだと表示しない*/
.pcoff {
	display:none;
	}

/* 画像をPCだと表示する*/
.pcon {
	visibility: visible;
	}

hr {
	border-width: 3px 0 0 0; /* 太さ */
	border-style: solid; /* 線種 */
	border-color: #999; /* 線色 */
	height: 1px; /* IE6用対策 */
	width: 50%;
	clear: both; /* IE6用対策 */
	margin: 0 auto ;
}

/* 見出し　*/
h1 {
  /*線の種類（実線） 太さ 色*/
  border-bottom: solid 3px black;
}

h1:after {
  position: absolute;
  top: 100%;
  left: 50px;
  border: 10px solid transparent;
  border-top: 10px solid #daedec;
  width: 0;
  font-size: 2em;
  height: 0;
}

h2 {
  padding: 1rem 2rem;
  border-bottom: 3px dashed #CFCDB2;
  background: #FBF8EA;
}

h2:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  content: '';
  border-radius: 3px;
  background: #000;
}

h3 {
  position: relative;
  padding: 0 65px;
  margin-top: 2.5em;
  text-align: center;
}

h3:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background: #000;
}

h3 span {
  position: relative;
  padding: 0 1em;
  background: #fff;
}


/* タイトル　*/
.title1 {
	font-size:28px;
	line-height: 1.618 ;
	color:red;
	text-align: center;
	font-weight: bold;
	padding-top: 10px;
	background-color: yellow;
}


.center-image {
        display: block;
        margin: 0 auto;
}

/* リンク　*/
a {
text-decoration: none;/* 下線消す　*/
}

/* 画像下の値段テキスト　*/
.p_link {
	font-size:24px;
	color:red;
	text-align: center;
	font-weight: bold;
	width: auto;
}

/* 番号リスト　*/
ol.list{
  counter-reset:list;
  list-style-type:none;
  font: 1em/1.6 'arial narrow', sans-serif;
  padding: 1.5em;
}
ol.list li{
  position:relative;
  padding: 7px 5px 7px 40px;
  margin: 7px 0 10px 30px;
  font-weight: bold;
  font-size:1em;
  border-bottom:dashed 1px #666;
}
ol.list li:before{
  counter-increment: list;
  content: counter(list);
  position: absolute;
  left: 0px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  color: #fff;
  background: #666;
  border-radius: 50%;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}


/* 大きい画像部分　*/
.mainitem { 
     width: 100%;
	 margin: 0 auto;
     top: 0px;
	 background-color:#C7EFE9;
	 padding-top: 5px;
	 padding-bottom:5px;
}

/*TELボタン*/
.btn {
	background: -moz-linear-gradient(top,#FFF 0%,#EEE);
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#EEE));
	border: 1px solid #DDD;
	color:#d9003b;
	padding: 1px;
	font-weight: bold;
	font-size: 150%;
}

.glay2{
 width: 80%;
 -webkit-font-smoothing: antialiased; 
 text-align: center;
 background: #efefef;
 padding: 20px;
}


/*画像を半透明に*/ 
.alpha a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}



/* 上に戻るボタン */
.pagetop {
	color: #fff;
	background-color: rgba(0,0,0,0.3);
	text-decoration: none;
	display: none;
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	font-size: 1.5rem;
	width: 3.3rem;
	height: 3.3rem;
	line-height: 3.3rem;
	border-radius: 3.3rem;
	text-align: center;
	cursor: pointer;
	z-index: 1000;
}

.pagetop:hover {
	color: #fff !important;
	background-color: #daedec;
	text-decoration: none;
}


/*　ボタン　*/
.btn-sticky {
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  background: #f7f7f7;
  border-left: solid 6px #f7f7f7;/*左線*/
  color: #333333;/*文字色*/
  font-weight: bold;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
}
.btn-sticky:active {
  box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
  transform: translateY(2px);
}

/*　背景色付きボタン　*/
.btn-square-pop {
  position: relative;
  display: inline-block;
  padding: 0.5em 1.0em;
  text-decoration: none;
  color: #efefef;
  background: #489572;/*背景色*/
  border-bottom: solid 2px #317a57;/*少し濃い目の色に*/
  border-radius: 6px;/*角の丸み*/
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
  font-weight: bold;
  font-size: 1.2em;
  margin: 10px auto;
}

.btn-square-pop:active {
  border-bottom: solid 2px #daedec;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
}

.boxWrap{
  width: 100%;
  max-width: 1024px;
}

.boxWrap{
　 -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  display: -moz-flex;
  display: -o-flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-direction: row;
  -moz-flex-direction: row;
  -o-flex-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: flex-start;
  -webkit-justify-content: center;
  margin: 5px;
  width: 100%;
  text-align: center;
　
}

.container {
  display: flex;
  flex-wrap: wrap; /* 子要素を折り返す */
  gap: 10px; /* ボックス間の余白 */
}

.box21 {
  flex: 1 1 45%; /* デフォルトでは45%の幅 */
  padding: 10px;
  background-color: ;
  border: 0px solid #ddd;
}

.box42 {
  flex: 1 1 22%; /* デフォルトでは45%の幅 */
  padding: 10px;
  background-color: ;
  border: 0px solid #ddd;
}

.box42 .s {
		font-size: 0.8em;
}

.box42 .price {
        color: red;
        font-weight: bold;
		font-size: 1.4em;
    }


/*　商品ボックス2列　*/
.item2 {
  width: 47%;
  height: 100%;
  position:relative;
  margin : 8px;
  padding: 0px;	
}

/*　商品ボックス3列　*/
.item3 {
  width: 28%;
  position:relative;
  margin : 5px;
  padding: 0px;	
}

.item3 .s {
		font-size: 0.8em;
}

.item3 .price {
        color: red;
        font-weight: bold;
		font-size: 1.4em;
    }
	

/*　商品ボックス4列　*/

.item42 {
  width: 22%;
  height: 100%;
  margin : 5px;
  padding: 0px;	
}


.item42 .s {
		font-size: 0.8em;
}

.item42 .price {
        color: red;
        font-weight: bold;
		font-size: 1.4em;
}

/*　新品カテゴリ　*/
.boxcat{
　-webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  display: -moz-flex;
  display: -o-flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-direction: row;
  -moz-flex-direction: row;
  -o-flex-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
	text-align: center;
	font-size: 12px;
	padding: 10px;
	margin: 0 10px;
}

/*　カテゴリ６列　*/
.boxcat .cat {
  width: 8%;
  margin : 8px;
  padding: 0px;
}

/*お問合せ*/
.telmail-fp {
	font-size: 18px;
	color: #479391;
	}

a.telmail-fp {/*リンクされた文字*/
    color:#479391;
    font-style:normal;
    text-decoration:underline;
}
a:link.telmail-fp {/*未訪問のリンク*/
    color:#479391;
    font-style:normal;
    text-decoration:underline;
}
a:visited.telmail-fp {/*訪問後のリンク*/
    color:#479391;
    text-decoration:underline;
}
a:hover.telmail-fp {/*マウスをのせたとき*/
    color:#479391;
    font-style:normal;
    text-decoration:underline;
}
a:active.telmail-fp {/*クリック中*/
    text-decoration:none;
}

/*　画像に枠　*/
img.border { border: 2px #efefef solid; }


/*****************************************************************/
/* スマホだけに適用するCSS */
@media screen and (max-width: 1024px) {

/*全体のサイズ*/
.base{
	width: 100%;
	margin: 0 auto;

}

	
/* 画像をsfだと表示する*/
.pcoff {
	display:block; 
	}
	
/* 画像をsfだと表示しない*/
.pcon {
	display:none;
	}

	
/*　カテゴリ10列を5列*/
.boxcat .cat {
  width: 17%;
  margin : 4px;
  padding: 0px;
}

/* 料金表テーブル */
	.cp_table thead {
		display: none;
	}
	.cp_table tbody th {
		display: block;
	}
	.cp_table tbody td {
		display: block;
		padding: 10px 5px;
	}
	.cp_table tbody td::before {
		font-weight: bold;
		float: left;/*上のth要素が長い場合こちらを解除すると1段落下り見やすくなります*/
		padding: 0.5em 0;
		content: attr(label);
	}
	.cp_table tbody td p {
		padding: 0.5em 0 0 1em;
    margin: 0;
	}
	.cp_table .price {
        color: red;
        font-weight: bold;
		font-size: 1.4em;
    }
	.cp_table .s {
		font-size: 0.8em;
    }
	}
	
/* ランクテーブル */
	.cp_table thead {
		display: none;
	}
	.cp_table tbody th {
		display: block;
	}
	.cp_table tbody td {
		display: block;
		padding: 10px 5px;
	}
	.cp_table tbody td::before {
		font-weight: bold;
		float: left;/*上のth要素が長い場合こちらを解除すると1段落下り見やすくなります*/
		padding: 0.5em 0;
		content: attr(label);
	}
	.cp_table tbody td p {
		padding: 0.5em 0 0 1em;
    margin: 0;
	}
	
/* 測り方テーブル */
	.cp_table2 thead {
		display: none;
	}
	.cp_table2 tbody th {
		display: block;
	}
	.cp_table2 tbody td {
		display: block;
		padding: 10px 5px;
	}
	.cp_table2 tbody td::before {
		font-weight: bold;
		float: left;/*上のth要素が長い場合こちらを解除すると1段落下り見やすくなります*/
		padding: 0.5em 0;
		content: attr(label);
	}
	.cp_table2 tbody td p {
		padding: 0.5em 0 0 1em;
    margin: 0;
	}

/*　商品ボックス3列を2列　*/
.item3 {
  width: 42%;
  height: 100%;
  position:relative;
  margin : 8px;
  padding: 0px;	
}


	
/* おすすめ寸法表 */
	.cp_table_size {
		display: block;
		width: 100%;
	}
	.cp_table_size thead {
		display: block;
		float: left;
		overflow-x: scroll;
	}
	.cp_table_size tbody {
		display: block;
		width: auto;
		overflow-x: auto;
		white-space: nowrap;
	}
	.cp_table_size th {
		display: block;
		width: auto;
		border-width: 1px 0px 0px 1px;
		border-color: #dddddd;
		border-style: solid;
	}
	.cp_table_size th:last-child {
		border-bottom: 1px solid #dddddd;
	}
	.cp_table_size tbody tr {
		display: inline-block;
		margin: 0;
	}
	.cp_table_size td {
		display: block;
		border-width: 1px 1px 0px 1px;
		border-color: #dddddd;
		border-style: solid;
	}
	.cp_table_size td:last-child {
		border-bottom: 1px solid #dddddd;
	}
}

/* スマホなど画面幅が600px以下のとき */
@media screen and (max-width: 640px) {
  .box21 {
    flex: 1 1 100%; /* 幅100%で1列に */
  }
	
.box42 {
  flex: 1 1 45%; /* デフォルトでは45%の幅 */
}

</pre></body></html>