@charset "utf-8";

/**
 # --------------------------------------------------------------------
 # 全体
 # --------------------------------------------------------------------
**/

body {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo,
    メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  -webkit-text-size-adjust: 100%;
}

a {
  color: #09c;
  text-decoration: none;
}
a:hover {
  background: #fff;
  opacity: 0.6;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-decoration: underline;
}
ul {
  list-style-type: none;
}
button:hover {
  cursor: pointer;
}
table {
  width: 100%;
}
td,
th {
  padding: 0.5em;
  border: 1px solid #ccc;
}
th {
  width: 30%;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: left;
  padding: 6px 6px 6px 12px;
}

#page {
  background: #fff;
}
/**
 # --------------------------------------------------------------------
 # フォント/装飾
 # --------------------------------------------------------------------
**/

.red {
  color: red;
}
.bold {
  font-weight: bold;
}

.f_xlarge {
  font-size: 2em;
}
.f_large {
  font-size: 1.6em;
}
.f_middle {
  font-size: 1.2em;
}
.f_Mmiddle {
  font-size: 1.1em;
}
.f_small {
  font-size: 0.9em;
}
.f_xsmall {
  font-size: 0.7em;
}
.textLh {
  line-height: 1.4em;
}

.price {
  color: red;
  font-size: 1.2em;
}
.grayBg {
  background: #ededed;
}
.bgwhite {
  background: #fff;
}

.radius4 {
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
}
.radius6 {
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
}
.radius30 {
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
}
.border1B {
  border: 1px solid #000;
}
.dot1px {
  border-bottom: 1px dotted #000;
  padding: 5px 10px;
  margin: 5px;
}

.title {
  font-size: 1em;
  font-weight: bold;
  padding: 10px 0;
}
.title02 {
  margin: 20px 0 20px;
  padding: 0.3em 0;
  color: #004d2d;
  font-size: 1.5em;
  font-weight: normal;
  position: relative;
  border-bottom: 3px solid #ededed;
  box-sizing: border-box;
}
.title02:after {
  position: absolute;
  display: block;
  content: "";
  width: 30%;
  border-bottom: 3px solid #004d2d;
  bottom: -3px;
}
.title04 {
  max-width: 970px;
  margin: 0 auto 20px;
  padding: 0.25em 0.5em;
  color: #494949;
  letter-spacing: 1em;
  background: transparent;
  border-left: solid 5px #004d2d;
  box-sizing: border-box;
}

.icon_after:after,
.page_no:after {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1.2em;
  margin-right: 0.2em;
  text-align: center;
}

/**
 # --------------------------------------------------------------------
 # レイアウト
 # --------------------------------------------------------------------
**/

.flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.flcolumn {
  -webkit-box-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.flwrap {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flexBox li,
.flexBox div {
  box-sizing: border-box;
}

.fl02 {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: 50%;
}

.fl03 {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: 33%;
}

.fl01 {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: 100%;
}

.w80 {
  width: 80%;
  margin: 10px auto;
}
.w90 {
  width: 90%;
  margin: 10px auto;
}

.taC {
  text-align: center;
}

.img100 img {
  width: 100%;
}

#top_page,
#item_page,
#category_page,
#content_page {
  background: #fff;
}

/**
 # --------------------------------------------------------------------
 # header
 # --------------------------------------------------------------------
**/

header a {
  display: block;
  text-decoration: none;
}
header a:hover {
  text-decoration: none;
}
header .logo strong {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 2px 1em;
  color: #fff;
  font-weight: normal;
}

/* searchBox関連 header外でも利用できるように指定 */
.searchBox {
  width: 100%;
  padding: 0;
  border: 1px solid #ccc;
  background: #fff;
  box-sizing: border-box;
}
.searchBox * {
  margin: 0;
  vertical-align: middle;
  border: none;
  height: 35px;
  box-sizing: border-box;
}
.searchBox input {
  -webkit-appearance: none;
  width: calc(100% - 45px);
  padding: 3px;
}
.searchBox button {
  padding: 0 3px;
  min-width: 20px;
  font-size: 20px;
  background: #fff;
}
.searchBox button:hover {
  background: #09c;
  opacity: 0.5;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: #fff;
}
.mm-listview .search {
  display: none;
}
/* done header nav > mmenu */
.mm-menu .icon-down-open:before {
  display: none;
}

/**
 # --------------------------------------------------------------------
 # cart
 # --------------------------------------------------------------------
**/

.cartBox {
  padding: 20px 10px;
}
.cartBox form {
  padding: 0;
  margin: 0;
  text-align: left;
}
.cartBox form li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 6px 0;
  margin: 3px auto;
  border-bottom: 1px dotted #ccc;
}
/*.cartBox form .cart_btn{width:50%;margin-left:auto;} */

.cartBox form .select {
  width: 70%;
}
.cartBox .op_title {
  font-weight: bold;
  line-height: 1.1em;
}
.cartBox .option .op_title {
  background: #ededed;
  color: #333;
  padding: 0 10px;
}

.cartBtn {
  display: block;
  width: 100%;
  padding: 6px;
  border: none;
  box-sizing: border-box;
  text-align: center;
  font-weight: bold;
  color: #fff;
  background: #689f38;
  cursor: pointer;
}
.cartBtn:hover {
  background: #004d2d;
  transition: 0.5s all;
  text-decoration: none;
  opacity: 1;
}

.cartBtn:disabled {
  background: #ccc;
  cursor: auto;
}
.option {
  display: block;
  border-bottom: 3px solid #ededed;
}

#fix_cart {
  -js-display: flex;
  display: -webkit-flex;
  display: flex;
  position: fixed;
  top: -150px;
  z-index: 50;
  padding: 15px 15px;
  width: calc(970px * 0.382);
  max-width: 38.2%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 5px #ccc;
  box-sizing: border-box;
}
#fix_cart img {
  max-width: 70px;
  max-height: 70px;
  margin-right: 10px;
}
#fix_cart .cart {
  width: calc(100% - 60px);
  padding: 0;
}
#fix_cart .price {
  font-size: 0.85em;
}
#fix_cart .shippingmsg {
  font-size: 0.85em;
}

.op_qty_shipping {
  text-align: left;
  display: block;
  font-size: 0.8em;
  line-height: 1em;
}

.select_btn {
  width: 100%;
}
.select_btn {
  border: 3px solid #689f38;
}
.kazu {
  font-size: 1.5em;
  line-height: 1.5em;
  margin: 10px;
  width: 4em;
}
.item_Number_Price p {
  margin: 0.2em;
}
.delivery {
  padding: 3px 10px;
  background: #ededed;
}
.ship_free {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #000;
  font-size: 1em;
  background: #ededed;
}
.ship_free:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  margin-left: -15px;
  border: 10px solid transparent;
  border-bottom: 10px solid #ededed;
}
.ship_free span {
  margin: 0;
  padding: 0;
}

/* #info_panel{
	font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 0.9em;
    text-align:left;line-height: 1.1;
    width: 100%;
	background:#edf2c5;
	border:1px solid #ccc;
	margin-top:10px;
	margin-bottom:10px;
	}
#info_panel table{
	width: 100%;
    margin: 5px auto;
    padding: 0;
	}
#info_panel th{padding:3px;}
#info_panel tbody{border-top: 1px dashed #999;}
#info_panel tbody td{padding: 3px;vertical-align:top;border-top: 1px dashed #999;}
#qtyInfo .TITpart{width:80px;}
.qty span{font-size: 3.5em;font-weight:bold;}
#qty_select .qty .stkok{color: #033;font-size: 3.5em;}
#deliverInfo{border-top: 1px solid #999;}
#deliverInfo .TITpart{width:240px;}
.LimDate{font-size: 1.5em;}
.ShippDate{font-size: 3.3em;}
.LimDate, .ShippDate{color: #900;font-weight: bold;}
.shipinfo{border:1px solid #ccc;margin-top:10px;}
.shipinfo th, .shipinfo td{
	border-bottom:1px solid #ccc;
	border-right:1px solid #ccc;
	padding:10px;
	}
.shipinfo th{width:25%;padding:5px;background:#ededed;}
*/

.rn_infoBox {
  font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 0.9em;
  text-align: left;
  line-height: 1.1;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 0 0 3px 3px;
}
.qty_title {
  font-size: 1.2em;
  text-align: center;
  display: block;
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px dashed #ccc;
}
.rn_ShippDate,
.rn_LimDate {
  color: #900;
  font-weight: bold;
}
.rn_ShippDate {
  font-size: 2.5em;
  line-height: 1.5em;
  background: linear-gradient(transparent 60%, #fff172 20%);
}
.rn_LimDate {
  font-size: 1.2em;
}
.rn_TITpart {
  background: #ededed;
  padding: 5px;
  margin-top: 10px;
  font-size: 0.8em;
}

.rn_infoBox .tile {
  margin: 3px 3px 0 0;
}
.info_icon,
.info_icon:hover {
  width: 92px;
  height/**/: 92px;
  height: /*ie6*/ 0;
  padding: 92px 0 0;
  box-sizing: border-box;
  overflow: hidden;
  background: url("https://www.loupe-studio.com/img/parts/info_iconz.png") 0 0
    no-repeat;
  position: relative;
  color: #fff;
  display: block;
  opacity: 1;
  text-decoration: none;
  line-height: 1.5em;
}

.info_icon.mailbin.ok {
  background-color: #cb2546;
  background-position: 0 0;
  width: 180px;
  height: 92px;
  padding: 8px 5px 0 92px;
  text-align: center;
}
.info_icon.teikeigai.ok {
  background-color: #e67e22;
  background-position: -185px 0;
  width: 180px;
  height: 92px;
  padding: 8px 5px 0 92px;
  text-align: center;
}
.info_icon.wrapping.ok {
  background-color: #f39c12;
  background-position: -380px 0;
}
.info_icon.wrapping.ng {
  background-color: #f1c40f;
  background-position: -185px -92px;
}
.info_icon.return.ng {
  background-color: #7f8c8d;
  background-position: -277px -92px;
}
.info_icon.daibiki.ng {
  background-color: #95a5a6;
  background-position: -369px -92px;
}

.info_icon .num {
  position: absolute;
  margin: 34px 0 0 -92px;
  width: 92px;
  display: block;
  color: #000;
  font-size: 3.5em;
  font-weight: bold;
  text-align: center;
}
.info_icon .mb100 {
  font-size:2.3em;
}
.info_icon .uni {
  font-size: 2em;
  line-height: 1.2em;
}

.tile_info {
  display: none;
  position: absolute;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
  background: #fff;
}
.tile:hover .tile_info {
  display: block;
}

/**
 # --------------------------------------------------------------------
 # content
 # --------------------------------------------------------------------
**/

#content {
  line-height: 1.5em;
}

#content h1,
.content h1 {
  font-size: 2em;
  color: #fff;
  font-size: noarmal;
  font-weight: normal;
  padding: 0.7em;
  margin-bottom: 20px;
  background: #004d2d;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

#content h2 {
  padding: 0.5em;
  font-size: 1.5em;
  color: #004d2d;
}
#content h3 {
  padding: 0.5em;
  margin: 1em 0;
  color: #010101;
  background: #dcecd4;
  border-bottom: solid 3px #004d2d;
}

#content table {
  margin: 30px 0;
}
#content ul,
#content ol {
  padding: 10px 10px 10px 30px;
}
#content p {
  padding: 10px 0;
}
.text_table ul {
  list-style-type: inherit;
}

#content .payment h2,
#faq_wrapper .qabox_bar {
  padding: 0.5em;
  margin: 1em 0;
  color: #010101;
  background: #dcecd4;
  border-bottom: solid 3px #004d2d;
}
#content .payment h3,
.qabox_button {
  padding: 0.5em 0;
  background: #fff;
  font-size: 1.3em;
  color: #004d2d;
  border-bottom: 1px solid #999;
}

#content h4 {
  padding: 0.5em 0 0.5em 1em;
  margin-bottom: 10px;
  border-left: 5px solid #004d2d;
}
.newskey {
  padding: 10px;
  margin-bottom: 15px;
  background: #ededed;
  border: 1px solid #ccc;
}
.qabox_list_q {
  background: #ededed;
  border: 1px solid #ccc;
  padding: 10px;
  margin: 0 0 20px;
}
.qabox_button {
  display: block;
  padding: 0.5em 0 0.5em 1em;
  margin-bottom: 10px;
  background: #ededed;
  border-bottom: none;
  border-left: 5px solid #004d2d;
}

.campany p {
  width: 50%;
  padding: 15px 0;
  font-size: 0.8em;
}
.campany img {
  width: 98%;
}

.nf #content h1 {
  font-size: 5em;
  color: #000;
  font-weight: bold;
  background: none;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.swiper-wrapper img {
  width: 100%;
}

#historyItems .itemUnits {
  width: 100%;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.info_wrap .box {
  position: relative;
  margin: 0 0 10px 0;
  padding: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background: #548c39;
}
.info_wrap .box a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  padding: 10px 10px 0 105px;
  box-sizing: border-box;
  text-decoration: none;
  color: #333;
}
.info_wrap .icon {
  padding: 20px 10px;
  margin: auto;
  font-size: 3em;
  color: #fff;
}
.info_wrap .text {
  padding: 10px;
  background: #fff;
  width: 100%;
}
/**
 # --------------------------------------------------------------------
 # item_content
 # --------------------------------------------------------------------
**/

#item_content {
  font-size: 0.95em;
  line-height: 1.4em;
}

#imgBox {
  position: relative;
  overflow: hidden;
}
.imgUnit {
  padding: 5px 8%;
  box-sizing: border-box;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-next.swiper-button-loupeGreen,
.swiper-container-rtl .swiper-button-prev.swiper-button-loupeGreen {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23004d2d'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-loupeGreen,
.swiper-container-rtl .swiper-button-next.swiper-button-loupeGreen {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23004d2d'%2F%3E%3C%2Fsvg%3E");
}
.swiper-pagination-bullet-active {
  background: #004d2d;
}

.explanText p {
  padding: 0 0 15px 0;
  line-height: 1.5em;
}
.explanText ul {
  margin: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.explanText li {
  padding: 3px 0;
}
.explanText li:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #ccc;
  margin-right: 5px;
}
.explanText img {
  width: 100%;
}
.spec {
  word-break: break-all;
}
.spec th {
  background: #cae8ea;
}

.desc {
  display: block;
  padding: 3px 0 5px;
}

.item_list .title02,
.recommend_Items .title02 {
  width: 100%;
}

#RankingItems div,
.recommend_Items div {
  -ms-flex: 0 1 auto;
}
#RankingItems img {
  padding-bottom: 20px;
}

#RankingItems,
.recommend_Items {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-bottom: 30px;
}
.check_Items {
  margin-bottom: 30px;
}

#RankingItems div {
  position: relative;
  z-index: 2;
  padding: 8px;
  font-size: 0.9em;
}

#RankingItems .price {
  display: block;
}
.rank_1,
.rank_2,
.rank_3,
.rank_4,
.rank_5 {
  position: relative;
}
.rank_1:before,
.rank_2:before,
.rank_3:before,
.rank_4:before,
.rank_5:before {
  position: absolute;
  top: -10px;
  left: 10px;
  display: block;
  content: "";
  width: 50px;
  height: 50px;
  z-index: 20;
}

.rank_1:before {
  background: url(../img/rank_1.png) 0 0 no-repeat;
  background-size: 50px;
}
.rank_2:before {
  background: url(../img/rank_2.png) 0 0 no-repeat;
  background-size: 50px;
}
.rank_3:before {
  background: url(../img/rank_3.png) 0 0 no-repeat;
  background-size: 50px;
}
.rank_4:before {
  background: url(../img/rank_4.png) 0 0 no-repeat;
  background-size: 50px;
}
.rank_5:before {
  background: url(../img/rank_5.png) 0 0 no-repeat;
  background-size: 50px;
}

.item_list {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-bottom: 30px;
}
.new_itm {
  padding: 8px;
  margin: 2px;
  font-size: 0.9em;
  border: 1px solid #ededed;
}

.new_itm {
  position: relative;
}

.pop:before,
.pop_new:before {
  height: 2em;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  margin: 3px 0;
  padding: 0.25em 0.5em;
  color: #fff;
  font-size: 12px;
}
.pop:after,
.pop_new:after {
  position: absolute;
  top: calc(2em + 6px);
  left: 1.5em;
  margin-left: -5px;
  content: "";
  border: 5px solid transparent;
}

.pop:before {
  background: #c70909;
  content: attr(data-pop);
}
.pop:after {
  border-top: 5px solid #c70909;
}
.pop_new:after {
  border-top: 5px solid #c70909;
}

.pop_new:before {
  background: #689f38;
  content: "NEW!";
}
.pop_new:after {
  border-top: 5px solid #689f38;
}

.recommend_Items h3 {
  font-weight: normal;
}
.recommend_Items div {
  border-bottom: 1px solid #ededed;
}

.recommend_Items div,
.result div {
  width: 100%;
  position: relative;
  padding: 8px 0;
  box-sizing: border-box;
}
.recommend_Items img,
.result img {
  width: 100px;
  height: 100px;
  padding-right: 10px;
}
.recommend_Items .price,
.result .price {
  display: block;
  position: absolute;
  bottom: 8px;
  right: 10px;
  text-decoration: none;
}

.checkitem a {
  display: block;
}

.pickup_bnr div {
  margin: 10px 0;
}
.pickup_bnr img {
  display: block;
}

.box div {
  padding: 0 0 20px;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.recIBox img,
.topic img {
  width: 100px;
  height: 100px;
  display: block;
  padding-right: 5px;
}

/*-----リンク範囲調整 --*/
.link a {
  box-sizing: border-box;
  height: 100%;
  position: relative;
  padding-bottom: 2em;
  display: block;
  z-index: 10;
}
.link span.price {
  position: absolute;
  margin-top: -1.5em;
  z-index: 1;
}
/*-----カテゴリ表示 --*/

.cat {
  padding: 20px 0;
  margin: 20px 0;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}
.cat ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cat li {
  display: inline-block;
  padding: 5px 20px;
  margin: 0 5px 5px 0;
  background: #ededed;
}
.cat .title03 {
  font-size: 1.2em;
  padding-bottom: 5px;
}

/**
 # --------------------------------------------------------------------
 # top
 # --------------------------------------------------------------------
**/

.top_content {
  background: #fff;
}
.main_bnr_container {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}
#main_bnr {
  overflow: visible;
  max-width: 970px;
  max-height: 370px;
  margin: auto;
}
#main_bnr .imgUnit {
  padding: 0;
}
#main_bnr .swiper-button-next,
#main_bnr .swiper-button-prev {
  height: calc(100% + 1px);
  top: 0;
  width: calc(50% - 485px);
  min-width: 32px;
  background-color: #ffffffaa;
  margin: 0;
}
#main_bnr .swiper-button-next {
  right: 0;
  background-position: 3px 50%;
}
#main_bnr .swiper-button-prev {
  left: 0;
  background-position: calc(100% - 3px) 50%;
}

.imp_infomation {
  border: 2px solid #af0000;
  margin: 10px 0;
  padding: 10px;
  font-size: 0.9em;
}
.imp_infomation strong {
  display: block;
  color: #af0000;
  font-weight: bold;
}
.infomation {
  background: #ededed;
  border: 1px solid #cccccc;
  padding: 10px;
  margin: 10px auto;
  box-sizing: border-box;
  font-size: 0.8em;
}
.infomation li {
  padding: 5px 0;
  line-height: 1.5em;
}
.info_date {
  font-weight: bold;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 2px solid #000;
}

.content_inner {
  max-width: 970px;
  margin: 0 auto 30px;
}
.content_inner .resItems li {
  width: calc(100% / 6 - 6px);
  -ms-flex: 0 1 auto;
  padding: 10px 10px 5px;
  margin: 10px 5px 10px 0;
  border-right: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  background: #fff;
  font-size: 0.8em;
  line-height: 1.4;
}
.content_inner img {
  width: 100%;
}

.top_itemList {
  margin: 30px 0;
}

.top_list {
  background: url(/img/top/bg_loupe004.png) right -10px top 100px no-repeat,
    url(/img/top/bg_loupe002.png) left -30px top 500px no-repeat,
    url(/img/top/bg_loupe003.png) right -30px bottom 60px no-repeat;
  background-size: 15%, 15%;
}
.top_categoryList li {
  width: calc(100% / 2 - 4px);
  height: 120px;
  background: #ededed;
  margin: 2px;
}

#top_content .osusume .resItems li {
  background: #3498db;
  border-right: none;
  border-bottom: none;
}
.osusume .resItems li a {
  color: #fff;
}

.more_link {
  width: 40%;
  margin: 20px auto;
  background: #fff;
  border-bottom: 3px solid #004d2d;
  border-top: 1px solid #004d2d;
  border-left: 1px solid #004d2d;
  border-right: 1px solid #004d2d;
  border-radius: 6px;
  text-align: center;
}
.more_link a {
  padding: 1em;
  display: block;
}
.more_link a:hover {
  background: #004d2d;
  color: #fff;
}

/**
 # --------------------------------------------------------------------
 # category
 # --------------------------------------------------------------------
**/

.tags li.tag:after {
  content: "(" attr(data-items) ")";
  padding-left: 0.3em;
}

#category_content {
  padding: 30px 0;
  font-size: 0.85em;
  line-height: 1.5em;
}
#category_nav {
  width: 20%;
  margin: 0 10px;
  font-size: 0.95em;
  color: #333333;
}

#category_nav li {
  padding: 5px 0;
  border-bottom: 1px solid #c1c1c1;
}
#category_nav li:last-child {
  border-bottom: none;
}
.tag_parent {
  display: block;
  background: #333333;
  padding: 8px 5px;
  margin: 10px 0 8px;
  color: #fff;
}
#category_items {
  width: calc(80% - 20px);
  padding: 0 10px;
  box-sizing: border-box;
}

#category_items .resItems {
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
#category_items .resItems li {
  width: calc(100% / 4 - 5px);
  -ms-flex: 0 1 auto;
  padding: 30px 10px;
  margin: 10px 5px 10px 0;
  border-right: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  box-shadow: 0px 3px 6px -4px #b2b5b1;
  background: #fff;
}
#category_items .resItems li img {
  width: 85%;
  padding-bottom: 30px;
  margin: 0 auto;
  display: block;
  text-align: center;
}
.resItems span {
  display: block;
}
.resItems .price:after {
  content: "円(税込)";
  font-size: 0.8em;
}

#category_items .rows {
  border-bottom: 1px solid #c1c1c1;
  margin-bottom: 10px;
  padding: 10px 0 0;
}
.non_tag {
  border-top: 1px solid #c1c1c1;
}
.non_tag li {
  display: inline-block;
  width: auto;
  margin: 5px 5px 5px 0;
  padding: 8px 8px 8px 0;
  background: #333333;
  color: #fff;
  cursor: pointer;
}
.non_tag li a{
  color:#fff;
}
.non_tag li a:hover{
  background: none;
  opacity: 1;
  text-decoration: none;
}

.pages {
  justify-content: flex-end;
  align-items: flex-end;
}
.pages a,
.pages span {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  padding: 8px 0;
  margin: 0 2px;
  line-height: 1.2em;
  border-radius: 3px;
  min-width: 2.5em;
  box-sizing: border-box;
}
.pages a {
  border: 1px solid #333;
}
.this_page {
  border: 1px solid #999;
  background: #ccc;
  color: #fff;
}
.page_no:after {
  content: "\f101";
}
.pages .separater {
  margin: 0;
  min-width: 1.7em;
}

/*------------category_top */

.category_top {
  padding: 30px 10px;
  width: 100%;
  box-sizing: border-box;
}
.category_top h1 {
  font-size: 2em;
  font-weight: normal;
  text-align: center;
  margin: 0 auto 30px;
  padding: 0 0 10px;
  border-bottom: 3px solid #333;
}
.cat_search {
  width: 100%;
  padding: 0 0 20px;
  margin: 0 0 40px;
  border: 1px solid #c7c6c6;
  background: #ededed;
}
.cat_search .searchBox {
  width: 80%;
  margin: 0 auto;
}
.search_title {
  padding: 15px;
  margin-bottom: 15px;
  background: #333;
  border-left: 2px solid #548c39;
  font-size: 1.8em;
  color: #fff;
  font-weight: normal;
}

.sub_cat {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.sub_cat div {
  width: calc(100% / 4 - 10px);
  min-height: 120px;
  padding: 10px;
  margin: 5px 5px 30px;
  background-size: 40%;
  border: 1px solid #999;
  position: relative;
}

.sub_cat .category_title {
  display: block;
  padding: 10px 0 10px 5px;
  background: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid #333;
  font-size: 1.5em;
  color: #333;
}
.sub_cat div a {
  text-decoration: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sub_cat p {
  padding: 40px 0 20px;
  line-height: 1.6em;
  width: 70%;
  text-shadow: #ffe 1px 1px 0.2px, #fff -1px 1px 0.2px, #fff 1px -1px 0.2px,
    #fff -1px -1px 0.2px;
}

@media screen and (max-width: 768px) {
  #category_content .flexBox li {
    width: calc(100% / 2 - 5px);
  }
  #category_content img {
    width: 100%;
  }
  .sub_cat div {
    width: calc(100% / 2 - 10px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #category_content .flexBox li {
    width: calc(100% / 3 - 5px);
  }
  #category_content img {
    width: 100%;
  }
  .sub_cat div {
    width: calc(100% / 3 - 10px);
  }
}
@media print, screen and (min-width: 1450px) {
  #category_content .flexBox li {
    width: calc(100% / 6 - 5px);
  }
  .sub_cat div {
    width: calc(100% / 5 - 10px);
  }
}

/**
 # --------------------------------------------------------------------
 # content
 # --------------------------------------------------------------------
**/

#content_page .contener img {
  width: 100%;
  max-width: 590px;
}
#content_page .contener .max_w100 {
  width: auto;
  max-width: 100%;
}
/**
 # --------------------------------------------------------------------
 # 404
 # --------------------------------------------------------------------
**/
.nf {
  height: 100vh;
  text-align: center;
  background: url(../img/404_loupebg.png),
    -moz-linear-gradient(top, #7ac630 0%, #cfe489 0%, #7ac630 100%);
  background: url(../img/404_loupebg.png),
    -webkit-linear-gradient(top, #7ac630 0%, #cfe489 0%, #7ac630 100%);
  background: url(../img/404_loupebg.png),
    linear-gradient(to bottom, #7ac630 0%, #cfe489 0%, #7ac630 100%);
  background-repeat: no-repeat;
  background-position: 120%;
}

.nf a {
  color: #000;
}
.nf h1 {
  font-size: 5em;
  margin: 100px 0 20px;
  padding: 0;
}
.nf h2 {
  font-size: 2em;
  line-height: 2em;
}

.nfLink {
  margin: 100px auto 20px;
  width: 50%;
}
.nfLink ul {
  text-align: left;
}
.nfLink li {
  display: block;
  padding: 10px 0;
}
.nf .icon-home-1 a:after {
  content: "トップページへ";
}

/**
 # --------------------------------------------------------------------
 # contactForm
 # --------------------------------------------------------------------
**/
.hmw_form dl {
  color: #404040;
}
.hmw_form dt {
  clear: both;
  padding: 5px 0;
  box-sizing: border-box;
  position: relative;
}
.hmw_form dd {
  width: 100%;
  box-sizing: border-box;
}
.hmw_form input,
.hmw_form textarea {
  width: 100%;
  padding: 6px;
  box-sizing: border-box;
  border: 1px solid #a9a9a9;
}
.hmw_form input[type="checkbox"],
.hmw_form input[type="radio"] {
  width: auto;
}
.hmw_form select {
  padding: 6px;
  margin: 5px 0 20px;
}
.hmw_form textarea {
  height: 12em;
}
.hmw_form button {
  display: block;
  font-size: 1.4rem;
  color: #fff;
  background: #548c36;
  border: none;
  position: relative;
}
.hmw_form button span {
  position: absolute;
  right: 10px;
  top: calc(50% - 0.5em);
  transition: all 0.3s;
}
.hmw_form button:hover span {
  right: 5px;
}
dt.hmw_form_required:after {
  content: "必須";
  font-size: 0.8rem;
  color: #fff;
  padding: 0 10px;
  background: #a80202c2;
}
.hmw_form_error input,
.hmw_form_error textarea {
  background: #ffe3de;
  border: 1px solid #a9a9a9;
}
#content p.hmw_form_error_msg {
  font-size: 0.9rem;
  color: red;
  padding: 0;
}

/**
 # --------------------------------------------------------------------
 # footer
 # --------------------------------------------------------------------
**/

/*---パンくず */

#fBreadcrumb li {
  padding: 0 0 8px 0;
}
#fBreadcrumb li:after {
  content: " > ";
}
#fBreadcrumb li:last-child:after {
  content: "";
}

footer {
  background: #ededed;
  width: 100%;
  font-size: 1em;
  padding: 0;
  margin: 0;
}
footer a {
  font-size: 0.9em;
}

.footerMenu {
  max-width: 970px;
  margin: 0 auto;
  padding: 0 0 20px;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footerMenu h2 {
  width: 100%;
  text-align: center;
  margin: 30px 0;
  font-size: 1.8em;
  font-weight: normal;
}
.footerMenu h3 {
  margin: 10px 0;
}
.footerMenu div {
  padding: 10px;
  position: relative;
}
.footerMenu a {
  text-decoration: none;
}
.footerMenu li a {
  display: block;
}
.footerMenu li a:hover {
  text-decoration: underline;
}
.footerMenu .w66 {
  width: 66%;
}
.footerMenu iframe {
  width: 100%;
}
.footerMenu .sns {
  margin-top: 0;
}

.footerMenu .menuBox {
  margin: 0 auto 4em;
  padding: 10px 5px;
}

.menuBox h3 {
  text-align: center;
}
.menuBox p a {
  padding-bottom: 25px;
  display: block;
}
.menuBox p a:after {
  display: block;
  content: "詳細はこちら>>";
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.menuBox img {
  width: 100%;
}

.pagetop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  opacity: 0.7;
  z-index: 100;
}
.pagetop a {
  display: block;
  width: 50px;
  height: 50px;
  padding: 3px;
  background: #333;
  border-radius: 3px;
  font-size: 10px;
  text-align: center;
  box-sizing: border-box;
  color: #fff;
  text-decoration: none;
}
.pagetop a:before {
  font-size: 25px;
  display: block;
  margin: 2px auto;
}

footer small {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 10px 0;
  background: #404040;
  text-align: center;
  font-size: 0.8em;
  color: #fff;
}
footer .copy a {
  color: #fff;
  font-size: 0.9rem;
}
footer .copy a:hover {
  color: #999;
}
