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

/* 全体を730pxに */
body {
	width: 730px;
	margin: 0 auto;
	font-size: 13px;
	letter-spacing: 1.5px;
	color: #666666;
	font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* ページタイトル */
.Top-title {
	width: 100%;
	margin: 0 auto;
	margin-top: 40px;
	padding: 5px;
	font-size: 26px;
	text-align: center;
	/* color: #e6c58b; */
	font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/* ページの概要 */
.Top-text {
	margin: 15px 0 40px 0;
	line-height: 2;
	text-align: center;
	letter-spacing: 1px;
}

/* 各見出し */
.Conts-title {
	width: 728px;
	margin: 0 auto;
	margin-top: 40px;
	margin-bottom: 10px;
	padding: 8px 0;
	border: solid 1px #929191;
	border-radius: 3px;
	font-size: 21px;
	text-align: center;
	color: #797979;
}

/* 見出し画像 */
.Conts-img {
	float: left;
}

/* 見出しの内容 */
.Conts-text {
	font-size: 13px;
	text-align: center;
	line-height: 2.5;
	letter-spacing: 1px;
}

.Conts-text p {
	margin: 40px 0 5px;
	font-size: 20px;
	font-weight: bold;
}

/* img-boxの親 */
.img-parent {
	width: 100%;
	list-style: none;
	padding: 0;
	display: -webkit-box; /* Androidブラウザ用 */
	display: -webkit-flex; /* Safari用 */
	display: -ms-flexbox; /* IE用 flexbox指定 */
	display: flex;
	-webkit-box-pack: justify; /* Androidブラウザ用 アイテムを均等に分散 */
	-webkit-justify-content: space-between; /* Safari用 アイテムを均等に分散 */
	-ms-flex-pack: justify; /* IE用 アイテムを均等に分散 */
	justify-content: space-between; /* flexアイテムの横方向の整列を指定 */
	/* 以下、折り返し設定 */
	-ms-flex-wrap: wrap; /* IE10用 折り返し */
	-webkit-flex-wrap: wrap; /* safari（PC）用 折り返し */
	flex-wrap: wrap; /* 折り返し */
	flex-shrink: 0; /* safari、iOS10以下崩れ対応 */
	flex-basis: auto; /* safari、iOS10以下崩れ対応 */
}

/* 商品画像からコメントまでを囲うli */
.img-box {
	width: 340px;
	margin-bottom: 20px;
}

.img-box img {
	width: 340px;
}

/* 縦並びの商品box */
.img-box-vertical {
	width: 730px;
	margin: 0 auto;
}

.img-box-vertical a {
	color: #666666;
	text-decoration: none;
}

.img-vertical {
	width: 320px;
	float: left;
}

.img-text-vertical {
	width: 400px;
	height: 320px;
	margin-left: 330px;
	padding: 10px;
	font-size: 13px;
	text-align: center;
	letter-spacing: 1px;
	line-height: 2.5;
}

.img-text-vertical p {
	padding-top: 40px;
	font-size: 17px;
	font-weight: bold;
}

/* 商品名 */
.img-title {
	color: #666666;
	font-size: 13px;
	font-weight: bold;
	line-height: 17px;
	display: block;
	margin-top: 10px;
	text-align: center;
}

/* 商品コメント */
.img-comment {
	margin-top: 5px;
	font-size: 12px;
	color: #858383;
}

/* ul内はリンク線出さない */
ul a {
	text-decoration: none;
}

/* 商品画像hoverで動く */
ul a img:hover {
	position: relative;
	top: 1px;
	left: 1px;
}

/* 帆布について、詳細タイトル */
.about-title {
	width: 710px;
	margin: 0 auto;
	padding: 10px 10px;
	background-color: #dbd8d8;
	font-size: 20px;
	font-weight: bold;
}

/* 帆布について、内容 */
.about-text {
	width: 710px;
	margin: 0 auto;
	margin-bottom: 10px;
	padding: 10px 10px;
	background-color: #f1f1f1;
}

/* 下線 */
.under-line {
	width: 200px;
	margin: 0;
	margin-bottom: 5px;
	font-weight: bold;
	border-bottom: 1px solid #666666;
}

/* margin-topを10px */
.martop10 {
	margin-top: 10px;
}

/* 手順箇条書き */
.text-list {
	padding: 0 0 0 1.5em;
	line-height: 20px;
}

/* 手順箇条書き */
.text-list li {
	margin-bottom: 5px;
}

/* 注意書き */
.red-notice {
	font-size:12px;
	margin-left:1em;
	text-indent:-1em;
	color: #f7392b;
	display: block;
}

/* ブログへのリンクボタンaタグ */
a.blog-btn {
	color: #ffffff;
	text-decoration: none;
}

/* ブログへのリンクボタン */
a.blog-btn div {
	width: 300px;
	margin: 0 auto;
	margin-bottom: 50px;
	padding: 10px;
	border-radius: 10px;
	font-size: 15px;
	text-align: center;
	font-weight: bold;
	color: #ffffff;
	background-color: #609F93;
}

/* SP版サイトトップへを非表示 */
.Back-top-sp {
	display: none;
}

/* トップへ戻る */
.Back-top-pc {
	display: block;
	text-align: center;
}

.Back-top-pc a {
	text-decoration: none;
	color: #666666;
}

/* フッター */
.footer {
	margin: 5px 0 15px 0;
	font-size: 10px;
	text-align: center;
}

/* Safariだけに適用されるCSSハック */
@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, .img-box {
		width: 340px; /* safari旧ブラウザに対応用wrapの代わり 横幅を指定 */
		display: inline-block; /* safari旧ブラウザに対応用wrapの代わり inline-blockに */
		vertical-align: top; /* safari旧ブラウザに対応用wrapの代わり 上揃えに */
	}
}

/* 横幅700ｐｘ以下での表示 */
@media screen and (max-width: 700px)
{

	body {
		width: 100%;
		font-size: 14px;
		font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
		letter-spacing: 1px;
	}

	body img {
		width: 100%;
	}

	br {
		display: none;
	}

	/* ページタイトル */
	.Top-title {
		margin-top: 10px;
		padding: 0;
		font-size: 21px;
		font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	}

	/* ページの概要 */
	.Top-text {
		width: 95%;
		margin: 0 auto;
		margin-top: 10px;
		margin-bottom: 20px;
		text-align: left;
		font-size: 13px;
	}

	/* 各見出し */
	.Conts-title {
		width: 97%;
		margin-top: 10px;
		font-size: 18px;
	}

	/* 見出し画像 */
	.Conts-img {
		width: 96%;
		margin: 0 auto;
		float: none;
	}

	/* 見出しの内容 */
	.Conts-text {
		width: 95%;
		margin: 0 auto;
		margin-bottom: 10px;
		font-size: 13px;
		text-align: left;
		line-height: 2.2;
		letter-spacing: 1px;
	}

	.Conts-text p {
		margin-top: 20px;
		font-size: 18px;
		text-align: center;
	}

	.img-parent {
		width: 95%;
		margin: 0 auto;
	}

	/* 商品画像からコメントまでを囲うli */
	.img-box {
		margin-bottom: 10px;
		width: 49%;
	}

	.img-box img {
		width: 100%;
	}

	/* 縦並びの商品box */
	.img-box-vertical {
		width: 100%;
	}

	.img-vertical {
		width: 50%;
		margin: 0 auto;
		float: none;
	}

	.img-text-vertical {
		width: 90%;
		height: auto;
		margin: 0 auto;
		margin-bottom: 10px;
		padding: 0;
		font-size: 12px;
		line-height: 2em;
		letter-spacing: 1px;
		text-align: left;
	}

	.img-text-vertical p {
		padding: 0;
		font-size: 13px;
		text-align: center;
	}

	/* 商品名 */
	.img-title {
		font-size: 12px;
		line-height: 17px;
		margin-top: 10px;
		text-align: left;
	}

	/* 商品コメント */
	.img-comment {
		margin-top: 5px;
		font-size: 12px;
		line-height: 2em;
		letter-spacing: 1px;
	}

	/* 商品画像hoverで動く */
	ul a img:hover{
		position: relative;
		top: 1px;
		left: 1px;
	}

	/* 帆布について、詳細タイトル */
	.about-title {
		width: 90%;
		margin: 0 auto;
		font-size: 17px;
	}

	/* 帆布について、内容 */
	.about-text {
		width: 90%;
		margin: 0 auto;
		margin-bottom: 10px;
		padding: 10px 10px;
		text-align: left;
		line-height: 2;
	}

	/* 下線 */
	.under-line {
		width: 100%;
	}

	/* 注意書き */
	.red-notice {
		font-size:12px;
		margin-left:1em;
		text-indent:-1em;
		color: #f7392b;
		display: block;
	}

	/* ブログへのリンクボタンaタグ */
	a.blog-btn {
		color: #ffffff;
		text-decoration: none;
	}

	/* ブログへのリンクボタン */
	a.blog-btn div {
		width: 70%;
		margin: 0 auto;
		margin-bottom: 10px;
		padding: 10px;
		font-size: 15px;
	}

	/* PC版サイトトップへを非表示 */
	.Back-top-pc {
		display: none;
	}

	/* フッター */
	.Back-top-sp {
		display: block;
		margin-top: 40px;
		text-align: center;
		font-size: 12px;
	}

	.Back-top-sp a {
		text-decoration: none;
		color: #666666;
	}

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