@charset "utf-8";
/* CSS Document */

body {
	color: #333333;
	font-family: 游ゴシック, 游ゴシック体, 'Yu Gothic', YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-size: 22px;
	margin: 0;
	overflow-x: hidden;
	width: 750px;
}

div {
	box-sizing: border-box;
}

h1 {
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ ProN W3', "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	margin: 0;
}
h2, h3 {
	margin: 0;
}

p {
	margin: 0;
}

p.write {
	margin: 0;
	text-align: right;
}

.uranai {
	font-size: 200%;
	line-height: 1.9;
	margin: 0 0 10px 10px;
}

a {
	color: #333333;
	text-decoration: none;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

ul {
	margin: 0;
	padding: 0;
}
ul li {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

/* スマホメニュー開けた時のオーバーレイ */
#overlay {
	background-color: rgba(0,0,0,0.60);
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 20;
}
#overlay.active {
	display: block;
}

/* カラム */
.column {
	display: -webkit-flex;
	display: flex;
}

.clearfix::after {
	clear: both;
	content: '';
	display: block;
}
.clearfix .left {
	float: left;
}
.clearfix .right {
	float: right;
}

/* お問い合わせボタン */
#contactBtn {
	position: fixed;
	bottom: 0;
	width: 750px;
	z-index: 10;
}

#contactBtn .inner {
	background-color: #ffffff;
	box-shadow: 0 -8px 15px 0 #dadada;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

#contactBtn .box {
	padding: 18px 0;
	width: calc( 50% - 1px );
}
#contactBtn .tel {
	background-color: #5fb7e0;
}
#contactBtn .mail {
	background-color: #3071b9;
}

#contactBtn .box p {
	background-position: 0 50%;
	background-repeat: no-repeat;
	color: #ffffff;
	display: table;
	font-size: 120%;
	font-weight: bold;
	line-height: 1.3;
	margin: 0 auto;
	padding-left: 90px;
	text-align: center;
}
#contactBtn .tel p {
	background-image: url("../img/icon-phone.png");
}
#contactBtn .mail p {
	background-image: url("../img/icon-mail.png");
}

/** ---------------------
	header
--------------------- **/
header {

}

header .floating {
	background-color: #ffffff;
	position: fixed;
	top: 0;
	width: 750px;
	height: 80px;
	z-index: 10;
}

/* menu */
header .menu {
	background-color: #fafafa;
	box-sizing: border-box;
	padding: 20px;
	position: fixed;
	top: 0;
	right: 0;
	transform: translateX(500px);
	transition: ease .5s;
	z-index: 30;
	height: 100%;
	width: 500px;
}
header .menu.open {
	transform: translateX(0);
	transition: ease .5s;
}

header .menu::before {
	border-left: solid 5px #3071b9;
	content: 'メニュー';
	display: block;
	font-size: 140%;
	font-weight: 600;
	line-height: 1.0;
	margin: 0 0 10px;
	padding-left: 20px;
}

header .menu ul {
	padding: 0 0 10px;
}
header .menu ul li {
	border-bottom: solid 1px #d4d4d4;
}
header .menu ul li a {
	background: url("../img/icon-arrow-right.png") no-repeat 95% 50%;
	background-size: 12px;
	display: block;
	font-weight: bold;
	padding: 20px 10px;
}

/* signbord */
header .signbord {
	padding: 15px 15px 10px;
}

header .signbord .inner {
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

/* logo */
header .logo {
	margin: 0;
}

header .logo h1 {
	font-size: 180%;
	line-height: 1.0;
	margin: 10px 0 15px;
}
header .logo h1 span {
	font-size: 85%;
	letter-spacing: -2px;
}

/* button */
header .btn {
}

header .btn a {
	display: block;
	padding-bottom: 15px;
	position: relative;
	height: 60px;
	width: 70px;
}
header .btn img {
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
}
header .btn p {
	color: #ffffff;
	font-size: 65%;
	font-weight: bold;
	letter-spacing: -1px;
	line-height: 1.0;
	position: absolute;
	bottom: 8px;
	left: 50%;
	transform: translateX(-50%);
	word-break: keep-all;
}

header .btn .cart a {
	background-color: #77be38;
}
header .btn .cart img {
	left: 54%;
}

header .btn .login {
	margin-left: 10px;
}

header .btn .login a {
	background-color: #5fb7e0;
}

/* menuBtn */
header .menuBtn {
	cursor: pointer;
	margin-left: 20px;
	position: relative;
	height: 75px;
	width: 54px;
}
header .menuBtn.open {
	display: none;
}

header .menuBtn p {
	color: #3071b9;
	font-weight: bold;
	padding-top: 60px;
	position: static;
	transform: translateX(0);
	text-align: center;
}

header .menuBtn span {
	background-color: #3071b9;
	display: block;
	position: absolute;
	left: 0;
	height: 8px;
	width: 100%;
}
header .menuBtn span:nth-child(1) {
	top: 7px;
}
header .menuBtn span:nth-child(2) {
	top: 25px;
}
header .menuBtn span:nth-child(3) {
	top: 43px;
}

/* closeBtn */
header .closeBtn {
	cursor: pointer;
	display: none;
	margin-left: 20px;
	position: fixed;
	top: 15px;
	right: 520px;
	z-index: 30;
	height: 75px;
	width: 54px;
}
header .closeBtn.open {
	display: block;
}

header .closeBtn p {
	color: #ffffff;
	font-weight: bold;
	padding-top: 60px;
	position: static;
	transform: translateX(0);
	text-align: center;
}
header .closeBtn span {
	background-color: #ffffff;
	display: block;
	position: absolute;
	left: 0;
	height: 8px;
	width: 100%;
}
header .closeBtn span:nth-child(1) {
	top: 25px;
	transform: rotate(-45deg);
}
header .closeBtn span:nth-child(2) {
	top: 25px;
	transform: rotate(-135deg);
}

/* search */
header .search {
	background-color: #efefef;
	padding: 10px 20px;
}

/*header .search .inner {
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin: 0 auto;
}*/

/* form */
header .search form {
	position: relative;
	width: 100%;
}

header .searchTxt {
	border: solid 1px #d9d9d9;
	box-sizing: border-box;
	font-size: 100%;
	padding: 18px 20px 15px;
	width: calc( 100% - 60px );
}
header .searchBtn {
	background: url("../img/icon-glass.png") no-repeat 50% 50%;
	background-color: #5fb7e0;
	border: none;
	display: block;
	width: 70px;
}
header .uploadBtn {
	background: url("../img/icon-camera.png") no-repeat 50% 50%;
	position: absolute;
	top: 50%;
	right: 88px;
	transform: translateY(-50%);
	height: 40px;
	width: 50px;
}

/* から探す */
header .toSearch {
	font-size: 130%;
}

header .toSearch a {
	background: url("../img/icon-arrow-down.png") no-repeat 100% 50%;
	line-height: 2.2;
	padding-right: 25px;
}

/* 注文履歴 */
header .history a {
	background-color: #ffffff;
	border: solid 1px #3071b9;
	box-sizing: border-box;
	display: block;
	position: relative;
	height: 40px;
	width: 150px;
}
header .history a p {
	background: url("../img/icon-list.png") no-repeat 0 50%;
	color: #3071b9;
	font-size: 125%;
	font-weight: bold;
	padding-left: 28px;
	position: absolute;
	top: 6px;
	left: 23px;
	word-break: keep-all;
}

/** ---------------------
	contents
--------------------- **/
#contents {

}

/* sitemap */
#contents .sitemap {

}

#contents .sitemap .inner {
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
#contents .sitemap .inner div {
	width: -webkit-calc( 100% / 4 - 10px );
	width: calc( 100% / 4 - 10px );
}

#contents .sitemap a {
	background: url("../img/icon-arrow2.png") no-repeat 0 50%;
	display: block;
	font-size: 105%;
	padding-left: 15px;
}

/** ---------------------
	side
--------------------- **/
#side {

}

/* ～から探す */
#side a.parent {
	background-color: #e2eef4;
	background-image: url("../img/icon-arrow-down.png");
	background-position:right 30px top 50%;
	background-repeat: no-repeat;
	border-top: solid 1px #3071b9;
	display: block;
	font-size: 130%;
	font-weight: bold;
	line-height: 1.6;
	padding: 20px 25px;
}
#side a.parent.open {
	background-image: url("../img/icon-arrow-up.png");
}

#side .category ul, #side .maker ul {
	border: solid 1px #cccccc;
	box-sizing: border-box;
	display: none;
}
#side .category ul li, #side .maker ul li {
	border-bottom: dotted 1px #cccccc;
	padding: 10px;
}
#side .category ul li:last-child, #side .maker ul li:last-child {
	border: none;
}

/* category */
#side .category {
}

#side .category ul li {
	padding: 10px 0 10px 10px;
}

#side .category ul li a {
	display: block;
	min-height: 45px;
	padding-left: 52px;
	position: relative;
}

#side .category a .thumb {
	position: absolute;
	top: 0;
	left: 0;
	height: 45px;
	width: 50px;
}
#side .category a .thumb img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#side .category p {
	position: relative;
	height: 45px;
}
#side .category p span {
	display: block;
	line-height: 1.4;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

/* maker */
#side .maker {
}

#side .maker ul li a {
	display: block;
	text-align: center;
}

#side .maker .more a {
	background: url("../img/icon-arrow.png") no-repeat 100% 50%;
	font-weight: bold;
	padding-right: 15px;
	text-align: right;
}

/* menu */
#side .menu ul li {
	border-top: solid 1px #3071b9;
	font-size: 130%;
	padding: 15px 25px 12px;
}

/** ---------------------
	main
--------------------- **/
#main {

}

#main h2 {
	line-height: 1.0;
	margin: 0 0 40px;
}
#main h2.headline1 {
	border-bottom: solid 2px #3071b9;
	color: #3071b9;
	font-size: 180%;
	padding: 0 20px 15px;
}
#main h2.headline2 {
	background-color: #3071b9;
	color: #ffffff;
	font-size: 170%;
	line-height: 1.0;
	padding: 20px;
	text-align: center;
}

#main h3 {
	background-color: #e2eef4;
	color: #3071b9;
	font-size: 160%;
	margin: 0 0 40px;
	padding: 10px 0;
	text-align: center;
}

/* パンくず */
#main .breadcrumb {
	margin: 0 20px 25px;
}

#main .breadcrumb a {
	display: inline;
}
#main .breadcrumb a::after {
	content: '>';
	margin: 0 0 0 5px;
}

#main .breadcrumb p {
	display: inline;
}

/* 特集 */
.special {
	margin: 0 20px 50px;
}

.special .inner {
	margin: 0 -5px;
}

.special .box {
	display: block;
	margin: 0 5px;
	width: 230px;
}

.special .thumb {
	margin: 0 0 15px;
	position: relative;
	height: 230px;
	width: 230px;
}
.bigCategory .box .thumb img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.special .thumb p {
	background-color: rgba(255, 255, 255, .5);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: -webkit-calc( 100% - 80px );
	height: calc( 100% - 80px );
	width: -webkit-calc( 100% - 80px );
	width: calc( 100% - 80px );
}
.special .thumb p span{
	color: #3071b9;
	display: block;
	font-size: 200%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	word-break: keep-all;
}

/* 商品一覧 */
.itemList .inner {
	flex-wrap: wrap;
	margin: 0 7.5px;
}

.itemList .box {
	box-sizing: border-box;
	display: block;
	margin: 0 12.5px 25px;
	width: 220px;
}

.itemList .box .thumb {
	border: solid 1px #d9d9d9;
	box-sizing: border-box;
	margin: 0 0 15px;
	overflow: hidden;
	position: relative;
	height: 220px;
	width: 220px;
}
.itemList .box .thumb img {
	image-rendering: pixelated;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* 商品一覧 big */
.itemListB {
	margin: 0 0 50px;
}

.itemListB .inner {
	flex-wrap: wrap;
	margin: 0 15px;
}

.itemListB .box {
	margin: 0 15px 40px;
	width: 330px;
}

.itemListB .thumb {
	border: solid 1px #d9d9d9;
	box-sizing: border-box;
	margin: 0 0 15px;
	overflow: hidden;
	position: relative;
	height: 330px;
	width: 330px;
}

.itemListB .thumb img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.itemListB .name {
	line-height: 1.5;
	margin: 0 0 10px;
}

.itemListB .price {
	color: #e43d3d;
	font-size: 140%;
	font-weight: bold;
	line-height: 1.1;
}
.itemListB .price span {
	font-size: 72%;
}
.itemListB .price del {
	color: #333333;
	display: block;
	font-size: 72%;
	font-weight: normal;
}
.itemListB .price em {
	font-style: normal;
	font-size: 80%;
	margin-right: 5px;
}

/* 商品カテゴリー */
#main .category {
	background-color: #efefef;
	margin: 0 0 100px;
	padding: 35px 20px 20px;
}

#main .category h2 {
	color: #3071b9;
	font-size: 170%;
	margin: 0 0 30px;
	text-align: center;
}

#main .category .inner {
	flex-wrap: wrap;
	margin: 0 -5px -10px;
}

#main .category .box {
	background-color: #ffffff;
	box-sizing: border-box;
	margin: 0 5px 10px;
	padding: 15px 0 15px 20px;
	width: -webkit-calc( 100% / 2 - 10px );
	width: calc( 100% / 2 - 10px );
}

#main .category .thumb {
	height: 80px;
	width: 85px;
}
#main .category .thumb img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

#main .category .name {
	margin-left: 20px;
	position: relative;
	width: -webkit-calc( 100% - 85px - 20px );
	width: calc( 100% - 85px - 20px );
}
#main .category .name p {
	font-size: 115%;
	line-height: 1.4;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

/* おすすめ */
.recommend {
	margin: 0 0 50px;
}

/* レビュー */
.review {
	margin: 0 0 80px;
}

.review .inner {
	margin: 0 20px;
}

.review .box {
	border-bottom: dotted 1px #cccccc;
	margin: 0 0 20px;
	padding: 0 20px 20px;
}

.review .box .thumb {
	display: block;
	height: 130px;
	width: 130px;
}
.review .box .thumb img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.review .box .text {
	box-sizing: border-box;
	margin-left: 30px;
	width: -webkit-calc( 100% - 160px );
	width: calc( 100% - 160px );
}
.review .box .text p {
	line-height: 1.7;
}
.review .box .text .date {
	margin: 0 0 2px;
}
.review .box .text .date span {
	color: #5fb7e0;
	margin-right: 15px;
}

/** ---------------------
	footer
--------------------- **/
footer {
	background-color: #e2eef4;
	padding: 50px;
}

/* tel */
footer .tel {
	margin: 0 0 10px;
	text-align: center;
}
footer .tel p {
	font-weight: bold;
	margin: 5px 0 0 140px;
}

/* copyright */
footer .copyright p {
	font-size: 90%;
	text-align: center;
}


/** ---------------------
	トップページ
--------------------- **/
/* スライダー */
.slider {
	margin: 100px 0 40px;
}

.swiper-container {
	padding-bottom: 30px;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 2.5px;
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
	bottom: 0;
}

.swiper-pagination-bullet {
	background-color: #d8d8d8;
	border-radius: 0;
	opacity: 1;
	height: 5px;
	width: 40px;
}
.swiper-pagination-bullet::before {
	background-color: #d8d8d8;
	content: '';
	display: block;
	height: 100%;
}
.swiper-pagination-bullet-active::before {
	animation-name: active;
	animation-duration: 3.5s;
	animation-timing-function: linear;
	background-color: #5fb7e0;
}

@keyframes active {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}

.swiper-button-prev, .swiper-button-next {
	background-color: #3071b9;
	top: 45%;
	height: 60px;
	width: 30px;
}
.swiper-button-prev::after, .swiper-button-next::after {
	margin-top: -15px;
}

.swiper-button-prev {
	left: 0;
}
.swiper-button-prev::after {
	display: block;
	content: url("../img/slider-arrow-prev.png");
}

.swiper-button-next {
	right: 0;
}
.swiper-button-next::after {
	display: block;
	content: url("../img/slider-arrow-next.png");
}

/* 強み */
.strength {
	background-color: #efefef;
	margin: 0 0 90px;
	padding: 90px 0;
	width: 100%;
}

.strength .inner {
	text-align: center;
	width: 100%;
}

#main .strength h2 {
	border: none;
	color: #3071b9;
	font-size: 230%;
	font-weight: normal;
	line-height: 1.0;
	margin: 0 0 15px;;
}

.strength p {
	font-size: 90%;
	line-height: 1.8;
}

/* ブログ一覧 */
.blogList {
	margin: 0 0 80px;
}

.blogList .inner {
	margin: 0 25px 20px;
	flex-wrap: wrap;
}

.blogList .box {
	margin: 0 15px 50px;
	width: 320px;
}

.blogList .box .thumb {
	display: block;
	margin: 0 0 20px;
	position: relative;
	height: 210px;
	width: 320px;
}
.blogList .box .thumb img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.blogList a.history {
	border: solid 1px #3071b9;
	box-sizing: border-box;
	color: #3071b9;
	display: block;
	font-weight: bold;
	margin: 0 auto;
	position: relative;
	text-align: center;
	height: 60px;
	width: 360px;
}
.blogList a.history p {
	background-image: url("../img/icon-arrow-smp.png");
	background-position: 0 50%;
	background-repeat: no-repeat;
	padding-left: 26px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	word-break: keep-all;
}

.blogList a.history2 {
	border: solid 1px #3071b9;
	box-sizing: border-box;
	color: #3071b9;
	display: block;
	font-weight: bold;
	margin: 0 auto;
	position: relative;
	text-align: center;
	height: 60px;
	width: 360px;
}
.blogList a.history2 p {
	background-image: url("../img/icon-arrow-smp2.png");
	background-position: 0 50%;
	background-repeat: no-repeat;
	padding-left: 26px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	word-break: keep-all;
}

/** ---------------------
	大カテゴリー
--------------------- **/
/* big category */
.bigCategory {
	margin: 0 0 80px;
}

.bigCategory .inner {
	flex-wrap: wrap;
	margin: 0 15px;
}

.bigCategory .box {
	background-color: #e2eef4;
	border-bottom: solid 1px #3071b9;
	box-sizing: border-box;
	display: block;
	margin: 0 15px 40px;
	padding: 10px 10px 15px;
	width: 330px;
}

.bigCategory .box .thumb {
	margin: 0 auto 15px;
	height: 180px;
	width: 300px;
}
.bigCategory .box .thumb img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.bigCategory .box p {
	color: #3071b9;
	font-size: 120%;
	font-weight: bold;
	text-align: center;
}

/** ---------------------
	商品ページ
--------------------- **/
.itemBlock {
	margin: 0 30px 100px;
}

.itemBox {
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin: 0 0 20px;
}

.itemBox .image {
	margin: 0 0 30px;
}

.itemBox .detail {
	margin: 0 0 30px;
}

.review.item {
	margin: 0 0 100px;
}

/* ボタン */
.itemBlock .btn {
	width: auto;
}

.itemBlock .btn a {
	border: solid 2px;
	border-radius: 5px;
	cursor: pointer;
	display: block;
	font-size: 140%;
	font-weight: bold;
	margin: 0 0 20px;
	padding: 20px 0 22px;
}
.itemBlock .btn a:hover {
	opacity: .7;
	text-decoration: none;
}
.itemBlock .btn p {
	background-position: 0 50%;
	background-repeat: no-repeat;
	display: table;
	margin: 0 auto;
}

.itemBlock .btn .favo {
	border-color: #3071b9;
	color: #3071b9;
}
.itemBlock .btn .favo p {
	background-image: url("../img/icon-star.png");
	background-position: 0 40%;
	padding-left: 60px;
}

.itemBlock .btn .cart {
	background-color: #77be38;
	border-color: #77be38;
	color: #ffffff;
}
.itemBlock .btn .cart p {
	background-image: url("../img/icon-cart.png");
	padding-left: 65px;
}

/* 商品画像 */
.itemBlock .image img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.itemBlock .image .main {
	border: solid 1px #d9d9d9;
	box-sizing: border-box;
	margin: 0 0 30px;
	overflow: hidden;
	position: relative;
	height: 690px;
	width: 690px;
}

.itemBlock .image .main .more {
	background-color: #3071b9;
	color: #ffffff;
	cursor: pointer;
	position: absolute;
	bottom: 0;
	right: 0;
	height: 110px;
	width: 110px;
}
.itemBlock .image .main .more p {
	font-size: 80%;
	position: absolute;
	bottom: 10px;
	text-align: center;
	width: 100%;
}
.itemBlock .image .main .more span {
	display: block;
	font-size: 370%;
	font-weight: normal;
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* 商品画像 ポップアップ */
.itemBlock .liteBox {
	background-color: #ffffff;
	border: solid 1px #cccccc;
	max-height: 90%;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 30;
	height: 90%;
	width: 700px;
}

.itemBlock .liteBox .inner {
	overflow-y: auto;
	padding: 30px;
	position: fixed;
	height: 100%;
	width: 100%;
}

.itemBlock .liteBox .close {
	background-color: #cccccc;
	color: #ffffff;
	cursor: pointer;
	font-size: 350%;
	font-weight: bold;
	line-height: 1.2;
	position: absolute;
	text-align: center;
	top: -20px;
	right: -20px;
	height: 80px;
	width: 80px;
	z-index: 30;
}

.itemBlock .liteBox .main {
	margin: 0 0 20px;
	height: 640px;
	width: 640px;
}

.itemBlock .liteBox .sub {
	flex-wrap: wrap;
	margin: 0 auto;
	width: 640px;
}
.itemBlock .liteBox .sub .scroll {
	overflow-x: scroll;
}
.itemBlock .image .sub .box {
	border: solid 1px #d9d9d9;
	box-sizing: border-box;
	margin: 0;
	overflow: hidden;
	position: relative;
	height: 140px;
	min-width: 140px;
	width: 140px;
}
.itemBlock .image .sub .box + .box {
	margin-left: 10px;
}

/* 商品詳細 */
.itemBlock .detail {
	margin: 0 0 50px;
}

.itemBlock .name {
	border-bottom: solid 2px #3071b9;
	font-size: 150%;
	line-height: 1.5!important;
	margin: 0 0 30px!important;
	padding: 0 0 20px;
}

.itemBlock .desc {
	font-size: 110%;
	line-height: 1.6;
	margin: 0 0 25px;
}

.itemBlock .price {
	color: #e43d3d;
	font-size: 180%;
	font-weight: bold;
	line-height: 1.4;
	margin: 0 0 5px;
}
.itemBlock .price span {
	font-size: 55%;
}
.itemBlock .price del {
	color: #333333;
	display: block;
	font-size: 60%;
	font-weight: normal;
}
.itemBlock .price em {
	font-style: normal;
	font-size: 70%;
	margin-right: 5px;
}

.itemBlock .att {
	color: #e43d3d;
	font-size: 110%;
	margin: 0 0 50px;
}

/* 商品テーブル */
.itemTable {
}

.itemTable table {
	border-collapse: collapse;
	margin: 0 0 50px;
	width: 100%;
}

.itemTable table tr th, .itemTable table tr td {
	border: solid 1px #cccccc;
	box-sizing: border-box;
	line-height: 1.3;
	padding: 10px 20px;
	text-align: center;
}

.itemTable table tr th {
	background-color: #e2eef4;
}

.itemTable table tr td {

}
.itemTable table tr td input {
	background-color: #efefef;
	border: solid 1px #d9d9d9;
	box-sizing: border-box;
	font-size: 110%;
	margin: 5px 0;
	padding: 13px;
	width: 80px;
}
.itemTable table tr td label {
	font-size: 80%;
}

/** ---------------------
	よくある質問
--------------------- **/
.faq {
	margin: 0 0 60px;
}

#main .faq h3 {
	background-color: transparent;
	border-left: solid 4px #3071b9;
	font-size: 140%;
	line-height: 1.2;
	margin: 0 0 20px;
	padding: 0 0 0 20px;
	text-align: left;
}

.faq .inner {
	margin: 0 20px;
}

.faq dl {
	margin: 0;
}

.faq dl dt, .faq dl dd {
	position: relative;
}
.faq dl dt {
	background-color: #e2eef4;
	font-size: 140%;
	font-weight: bold;
	padding: 10px 15px 8px 70px;
}
.faq dl dd {
	font-size: 105%;
	margin: 0 0 30px;
	padding: 20px 15px 8px 70px;
}

.faq dl dt::before, .faq dl dd::before {
	font-size: 36px;
	font-weight: bold;
	position: absolute;
	left: 25px;
}
.faq dl dt::before {
	color: #5fb7e0;
	content: 'Q.';
	top: 4px;
}
.faq dl dd::before {
	color: #3071b9;
	content: 'A.';
	top: 10px;
}

/** ---------------------
	ブログ
--------------------- **/
.blog {
	margin: 0 20px 80px;
}

/* タイトル */
.blog .blogTitle {
	margin: 0 0 40px;
}

#main .blog h2 {
	border-bottom: solid 2px #3071b9;
	font-size: 140%;
	line-height: 1.5;
	margin: 0 0 25px;
	padding: 0 0 15px;
}
#main .blog .blogTitle h2 {
	border-bottom: none;
	color: #3071b9;
	font-size: 160%;
	line-height: 1.5;
	margin: 0 0 10px;
	padding: 0;
}

.blog .blogTitle .date {
	font-size: 114%;
}

/* 目次 */
.blog .toc {
	background-color: #fafafa;
	border: solid 1px #cccccc;
	box-sizing: border-box;
	margin: 0 0 60px;
	padding: 25px 25px;
}

.blog .toc ul li {
	color: #3071b9;
	margin: 12px 0;
}
.blog .toc ul li::before {
	color: #333333;
	content: '・';
	margin-right: 5px;
}

/* block */
.blog .block {
	margin: 0 0 60px;
}

.blog .block p {
	font-size: 110%;
	line-height: 1.9;
	margin: 0 0 30px;
}

.blog .prof p {
	font-size: 110%;
	line-height: 1.9;
	margin: 0 0 30px;
	background-color: #f2f2f2;
	padding: 4%;
	border-radius: 10px;
}

.blog .block img {
	display: table;
	margin: 0 auto 30px;
}

.blog .block span.underline {
	border-bottom: solid 2px #7a7a7a;
}

.blog .block span.red {
	color: #ff4500;
	font-weight: bold;
}

/* 記事カテゴリー */
#main .blogCate {
	margin: 0 0 60px;
}

#main .blogCate .inner {
	margin: 0 20px;
}

#main .blogCate a {
	display: block;
	margin: 0 0 12px;
	padding-left: 22px;
	position: relative;
}
#main .blogCate a:hover {
	text-decoration: underline;
}
#main .blogCate a::before {
	content: '・';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

/* よく読まれている記事 */
#main .read {
	margin: 0 0 100px;
}

#main .read .inner {
	margin: 0 20px;
}

#main .read a {
	border-bottom: dotted 1px #cccccc;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

#main .read .thumb {
	height: 150px;
	width: 150px;
}
#main .read .thumb img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

#main .read .name {
	margin-left: 20px;
	width: -webkit-calc( 100% - 170px );
	width: calc( 100% - 170px );
}

.center {
	text-align: center;
}

/** ---------------------
	メーカー一覧
--------------------- **/
#main .maker {
	margin: 0 0 70px;
}

#main .maker .inner {
	flex-wrap: wrap;
	margin: 0 10px;
}

#main .maker .box {
	border: solid 1px #d9d9d9;
	box-sizing: border-box;
	display: block;
	margin: 0 10px 20px;
	overflow: hidden;
	position: relative;
	height: 70px;
	width: -webkit-calc( 100% / 3 - 20px );
	width: calc( 100% / 3 - 20px );
}

#main .maker .box img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	image-rendering: pixelated;
}

/** ---------------------
	お問合せ
--------------------- **/
.contact {
	margin: 0 0 100px;
}

.contact p {
	font-size: 110%;
	margin: 0;
}

.contact .inner {
	margin: 0 20px;
}

/* 電話での問い合わせ */
.contact .tel {
	background-color: #e2eef4;
	margin: 40px 0 60px;
	padding: 40px 0;
	text-align: center;
}

.contact .tel p {
	font-weight: bold;
}
.contact .tel .text {
	font-size: 120%;
	margin: 0 0 15px;
}
.contact .tel .date {
	font-size: 100%;
	margin: 5px 0 0 100px;
}

/* form */
.contact .form {
	margin: 0;
}

.contact .form h2 {
	border-bottom: solid 2px #3071b9;
	margin: 0 0 20px!important;
	padding: 0 0 20px!important;
}

.contact .form dl {
	margin: 0 0 40px;
}
.contact .form dl::after {
	clear: both;
	content: '';
	display: block;
}

.contact .form dl dt, .contact .form dl dd {
	box-sizing: border-box;
	line-height: 35px;
}

.contact .form dl dt {
	font-size: 115%;
	font-weight: bold;
	padding: 20px 0;
	width: 100%;
}
.contact .form dl dt span {
	background-color: #5fb7e0;
	color: #ffffff;
	font-size: 80%;
	line-height: 1.0;
	margin-right: 20px;
	padding: 5px 16px 3px;
}

.contact .form dl dd {
	border-bottom: dotted 1px #cccccc;
	margin: 0;
	padding: 0 0 30px;
}

/* policy */
.contact .form .policy p {
	margin: 0 0 15px;
	text-align: center;
}
.contact .form .policy a {
	text-decoration: underline;
}

.contact .policy dl {
	margin: 0 0 25px;
}
.contact .policy dl dt, .contact .policy dl dd {
	border-bottom: none;
	padding: 20px 0;
}
.contact .policy dl dt {
	float: left;
	width: 370px;
}
.contact .policy dl dd {
	font-size: 114%;
	padding-left: 370px;
}

.contact .btn .box {
	display: table;
	margin: 0 auto;
	position: relative;
	height: 105px;
	width: 630px;
}

/* confirm */
.contact .confirm .message {
	background-color: #e2eef4;
	border: solid 2px #5fb7e0;
	font-weight: bold;
	margin: 0 0 30px;
	padding: 20px 0;
	text-align: center;
}

.contact .confirm dl dt, .contact .confirm dl dd {
}
.contact .confirm dl dd p {
	margin: 0;
}

.contact .confirm .policy dl {
	margin: 0 0 20px;
}
.contact .confirm .policy p {
	margin: 0;
}

.contact .confirm .btn .box {
	width: 340px;
}

/* error */
.contact .error h2 {
	margin: 0 0 30px!important;
}

.contact .error .message {
	background-color: #fdf2f2;
	border: solid 2px #e10000;
	color: #e10000;
	font-weight: bold;
	line-height: 1.4;
	margin: 0 0 20px;
	padding: 20px;
	text-align: center;
}

.contact .error dd.errorBox input {
	background-color: #fdf2f2;
	border: solid 1px #e10000;
}
.contact .error dd.errorBox p {
	color: #e10000;
	font-weight: bold;
	line-height: 1.0;
	margin: 10px 0 0;
}

/* input textarea submit */
.contact .form input[type="text"] {
	background-color: #efefef;
	border: solid 1px #d9d9d9;
	box-sizing: border-box;
	font-size: 110%;
	height: 70px;
	padding: 10px 15px;
	width: 100%;
}
.contact .form input::placeholder {
	color: #333333;
}
.contact .form textarea {
	background-color: #efefef;
	border: solid 1px #d9d9d9;
	box-sizing: border-box;
	font-size: 114%;
	padding: 10px 15px;
	height: 250px;
	width: 100%;
	vertical-align: bottom;
}
.contact .form input[type="submit"] {
	background-color: #5fb7e0;
	border: none;
	border-radius: 5px;
	box-sizing: border-box;
	box-shadow: 0 5px 0 0 #e6e6e6;
	color: #ffffff;
	cursor: pointer;
	font-size: 170%;
	font-weight: bold;
	padding: 20px 0;
	position: absolute;
	left: 0;
	bottom: 5px;
	width: 100%;
}
.contact .btn input[type="submit"]:hover {
	bottom: 0;
	box-shadow: none;
}
.contact .btn input[type="submit"].return {
	background-color: #999999;
}

/* banner */
#banner {
	display: table;
	padding: 30px 0;
	width: 100%;
	text-align: center;
}

#banner img {
	margin-bottom: 3%;
}
