@charset "UTF-8";
/* reset
--------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, main, nav, section {
  display: block;
}
body {
  line-height: 1;
  word-wrap: break-word;
}
ul,ol {
  padding:0;
  list-style: none;
}
img{
  width:100%;
  height:auto;
  object-fit:contain;
}
svg {
  width: 18px;
  height: 18px;
  fill:currentColor;
}

input, select {
  vertical-align: middle;
}
button,[role=button]{
  background:none;
  border:none;
  outline:none;
}
em, i, cite {
  font-style: normal;
}
strong, b {
  font-weight: 600;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
}
ins {
  background-color: #f2f82f;
  color: #171216;
  text-decoration: none;
}
mark {
  background-color: #f2f82f;
  color: #171216;
  font-weight: bold;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
del {
  text-decoration: line-through;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #e5e5e5;
  padding: 0;
}
/*--------------------------------------
  #common
--------------------------------------*/
:root{
  --normalColor:#000;
  --linkColor:#c00;
  --subColor:#555;
}
* {
  box-sizing: border-box;
  transition: .3s ease;
}
body {
  font-family: "Helvetica Neue",Arial,"游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif, sans-serif;
  font-family:"Noto Serif JP" , serif;
  font-feature-settings: "palt";
  color:var(--normalColor);
  background:  #fff;
  min-height:100vh;
  text-rendering:optimizeSpeed;
}
@media (min-width: 811px) {
  a:hover,
  button:hover {
    color:var(--linkColor);
    text-decoration: none;
    opacity: 0.7;
  }
}
/* TITLEBOX  */
.title-box {
  padding: 48px 0 72px;
  text-align: center;
  color: #555;
  letter-spacing: 4px;
}

.title-box .s-title {
  font-size: max(18px,min(3vw,28px) );
  font-size: clamp(18px,3vw,28px);
  position: relative;
}

.title-box .s-title::after {
  content: attr(data-subtitle);
  font-size: max(16px,min( calc(3vw - 2px),26px) );
  font-size: clamp(16px,calc(3vw - 2px),26px);
  padding: 4px 20px;
  border-top: 1px solid;
  letter-spacing: 2.5px;
  position: absolute;
  top: 160%;
  left: 50%;
  transform: translateX(-50%);
}
/* Main Header  */

#mainHeader{
  width:100%;
  background: #111;
  position: sticky;
  top:0;
  z-index:2;
}
@media(max-width:1024px){
  #mainHeader.toppage {
    position: fixed;
  }
}
.header-inner {
  display: flex;
  padding: 16px 8px 8px 32px;
  flex-wrap: wrap;
}

.header-logo {
  width: 10%;
}
@media(max-width:1024px){
  .header-logo img {
    max-height: 96px;
  }
}
.header-menu {
  display: flex;
  justify-content: flex-end;
  width: 90%;
  align-items: center;
  position: relative;
}
.header-menu__icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  margin-left: 16px;
  fill: #fff;
  position: relative;
}
.header-menu__icon > span {
  display: block;
  width: 80%;
  height: 0;
  border: 1px solid;
  position: absolute;
  top: 25%;
  left: 5%;
}
.header-menu__icon > span:nth-of-type(2) {
  top: 50%;
}
.header-menu__icon > span:nth-of-type(3) {
  top: 75%;
}
.header-menu__icon svg {
	width: 24px;
	height: 24px;
}

.header-menu__icon[aria-pressed="true"] > span {
  transform: rotate(45deg);
  top: 50%;
  border-width: 2px;
}
.header-menu__icon[aria-pressed="true"] > span:nth-of-type(2) {
  transform: rotateY(-90deg);
  transform-origin: left;
}
.header-menu__icon[aria-pressed="true"] > span:nth-of-type(3) {
  transform: rotate(-45deg);
}
#gNav-container {
	position: absolute;
	top: 100%;
	right: 0;
	width: min(98vw,400px);
	height: calc(100vh - 100px);
	padding: 16px;
	background: rgba(0,0,0,.9);
	z-index: 10;
}
.gNav {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  padding-top:32px;  
  padding-left: 1em;
  border-top:4px double #777;
	overflow-y: scroll;
}
.gNav-item {
	display: block;
	font-size: 18px;
	color: #fff;
	padding: 12px 0;
	text-decoration: none;
}
.catLarge {
	margin-bottom: 1em;
	padding-left: 1em;
	border-top: 1px solid #777;
	border-bottom: 1px solid #777;
}
.catLarge-child {
	position: relative;
}
.catSmall {
	width: 100%;
  background: #555;
	z-index: 1;
	padding: 16px 0;
	position: absolute;
	top: 100%;
	left: 0;
}
.open-catSmall {
  position: absolute;
  top: 12px;
  right: 0;
  margin: 0;
  fill: #fff;
}
.open-catSmall[aria-pressed="true"] {
  transform: rotate(180deg);
  top: 8px;
}

.gNav-child.shop-tel {
  color: #fff;
  text-align: center;
}
.shop-tel__tel {
  font-size: 22px;
  line-height: 1.8;
  font-weight: 600;
  padding: 16px 0;
}

.shop-tel__time {
  font-size: 14px;
}
.cart.gNav-child {
  margin: 40px 0 32px -3%;
  padding: 32px;
  background: #2d2828;
  text-align: center;
}
#gNav-container svg {
  fill: #fff;
  vertical-align: -2px;
  margin: 0 8px;
}
.gNav-child.sns {
  padding: 32px;
}
.gNav-child.sns svg {
	fill: #fff;
	margin-right: 1em;
}
@media(max-width:1024px){
  .sns-icon-container {
    display: flex;
    justify-content: center;
  }
}
/* bread */
.bread {
  display: flex;
  padding:8px;
}
.bread-item {
  font-size: 12px;
  color: #800;
  text-decoration: none;
}
.bread-item[aria-current] {
  color: var(--normalColor);
}
.bread-item:not([aria-current])::after {
  content: "/";
  padding: 0 4px;
}

/* section */
#main-article {
	padding: 0 20px max(80px,min(15vw,136px) );
	padding: 0 20px clamp(80px,15vw,136px);
}
#main{
	background: url(https://contents.raku-uru.jp/01/19443/21/kura-illust_1638508209284.webp) bottom right/120px 56px no-repeat;
}
.no-webp #main{
  background: url(https://image.raku-uru.jp/01/19443/20/kura-illust_1638508209028.png) bottom right/120px 56px no-repeat;
}

.section-inner,
.aside-inner {
	padding: 0 max(20px, min(7.638vw,120px) );
	padding: 0 clamp(20px,7.638vw,120px);
}
.main{
	padding: 0 max(20px, min(7.638vw,120px)) max(20px, min(7.638vw,120px));
	padding: 0 clamp(20px,7.638vw,120px) clamp(20px,7.638vw,120px);
}
/* title box */
.title-box .s-title {
  font-size: max(16px,min( 2.2vw,20px) );
  font-size: clamp(16px,2.2vw,20px);
}
.title-box .s-title::after {
  font-size: max(14px,min(2vw,18px) );
  font-size: clamp(14px,2vw,18px);
  width: max-content;
}
.ttl{
  padding: 48px 0;
}
/* 商品一覧画像 */
.img-box {
  position: relative;
  text-align:center;
}
.img-box::before {
  content: "";
  display: block;
  padding-top: 133.33%;
}
.img-box > img,
.img-box > picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* 商品一覧 */
.list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: max(12px,min(3vw,42px) );
	row-gap: max(12px,min(3vw,42px) );
	padding-bottom: max(80px, min(10vw,128px) );
	column-gap: clamp(12px,3vw,42px);
	row-gap: clamp(12px,3vw,42px);
	padding-bottom: clamp(80px,10vw,128px);
}

.list-item {
	display: block;
	text-decoration: none;
	color: var(--normalColor);
	padding-bottom: 1em;
}
.list-image__img {
  width:auto;
  max-height:100%;
	padding-top: max(8px,min(2vw,24px) );
	padding-bottom: max(8px,min(2vw,24px) );
	padding-top: clamp(8px,2vw,24px);
	padding-bottom: clamp(8px,2vw,24px);
  object-fit: contain;
}
.list-title {
  padding: 4px 0;
}

.list-title__name {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
}
.list-price {
	margin: 0;
	padding: 0;
}
.list-price__price {
  font-size: 15px;
  font-weight: 400;
  color: #333;
}
.icon-badge {
	position: absolute;
	top: -1px;
	left: -1px;
}
.yoyaku {
	position: absolute;
	bottom: 0;
	left: 20px;
	width: calc(100% - 40px);
	font-size: 12px;
	font-weight: 600;
	text-align: center;
	background: rgba(0,0,0,.8);
	padding: 6px 0px;
	color: #fff;
}

/* search form */
#global-search {
  display:none;
	width: 0;
	height: 0;
	font-size: 16px;
	color: var(--normalColor);
	background: rgba(0,0,0,.5);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 101;
}
#global-search[aria-hidden="false"] {
	display: flex;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding-top: 64px;
	overflow-y: scroll;
}
#cmsCommonForm {
	width: min(90%,640px);
}
.g-search-container {
	position: relative;
	background: rgba(250,250,250,.9);
	padding: 24px;
}
.g-search-content {
  margin-bottom: 24px;
}
.detail-search__label {
  font-weight: 600;
  line-height: 1.5;
  display: block;
}
#cmsCommonForm input {
	height: 48px;
}
#search-category {
	height: 48px;
	width: 232px;
}
.g-search__btn {
	height: 48px;
  color: #fff;
  padding: 8px 12px;
	background: #800;
}
.g-search__btn svg {
  margin-right: 4px;
  vertical-align: -4px;
	fill: #fff;
}
#close-global-search {
	font-size: 40px;
	position: absolute;
	top: 4px;
	right: 4px;
}



/*--------------------------------------
 FOAM
--------------------------------------*/
/* iOS　リセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

input, textarea, select {
  outline: 0;
}

/* 基本スタイル */
input[type="text"], input[type="email"], input[type="url"], input[type="number"], input[type="password"] {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 0.2em 15px;
}
input[type="number"] {
  padding-right: 5px;
  padding-left: 5px;
}
input[type="text"]::focus, input[type="text"]:hover, input[type="email"]::focus, input[type="email"]:hover, input[type="url"]::focus, input[type="url"]:hover {
  border: 1px solid #00AEE3;
}
input[type='checkbox'], input[type="radio"], input[type="submit"] ,
button,[role=button]{
  cursor: pointer;
}
textarea {
  border: 1px solid #e5e5e5;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  height: 230px;
  margin: auto;
}

/* 基本table
--------------------------------------*/
table {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin: auto;
}
table table {
  width: 100%;
}
th, td {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #e5e5e5;
  margin: 0 -1px -1px 0;
  vertical-align: middle;
  padding:5px;
  display:block;
}
table tr:last-child td:last-child {
  margin-bottom:0;
}
th {
  background: #f6f6f7;
}
@media screen and (min-width: 768px) {
  table table {
    min-width: 80%;
    max-width: 100%;
    width: auto;
  }
  th,td {
    margin-right: -1px;
    display: table-cell;
  }
}
/* ご利用ガイド用スタイル */
table.about-tbl {
  margin: 24px auto;
  width: 100%;
}
table.about-tbl th, table.about-tbl td {
  padding: 10px;
}
table.about-tbl th {
  min-width: 200px;
}
table.about-tbl a {
  text-decoration: underline;
}
table.shipment-tbl {
  margin-bottom: 30px;
}
table.shipment-tbl table {
  margin-bottom: 15px;
}
table.shipment-tbl th, table.shipment-tbl td {
  font-size: 14px;
}
table.shipment-tbl td {
  padding: 4px 8px;
}
table.shipment-tbl thead th,
table.shipment-tbl thead td {
  text-align: center;
  font-weight: bold;
}
.shipment-tbl-normal-shippoint-point span {
  display: inline-block;
}
.shipment-tbl-tkbsize-defined {
  margin-top: 30px;
}
.shipment-tbl-tkbsize-defined thead td {
  background: #f6f6f7;
}
.shipment-tbl-tkbsize-defined tbody tr td:last-child {
  border-bottom-width: 2px;
}
.shipment-tbl-eidome a {
	text-decoration: underline;
}
.shipment-tbl-ptn6 .shipment-tbl-normal td > table {
	display: block;
	overflow-x: auto;
	white-space: nowrap;
	max-width: 580px;
}
@media screen and (min-width: 768px) {
  table.shipment-tbl th {
    max-width:22em;
  }
  table.shipment-tbl table th {
    max-width: 10em;
  }
  .shipment-tbl-tkbsize-defined tbody tr td:last-child {
    border-width: 1px;
  }
}
/* ページ送り */
.pager {
  position: relative;
  margin: 0 auto 30px;
  text-align: center;
  width: 94%;
}
.pager .prev,
.pager .next {
  position: absolute;
  top: 50%;
  margin-top: -10px;
}
.pager .prev {
  left: 0;
}
.pager .next {
  right: 0;
}
.pager-icon {
	width: 22px;
	height: 22px;
	fill: #333;
}

@media screen and (min-width: 768px) {
  .pager {
    width: 60%;
  }
  .pager .prev a span,
  .pager .next a span {
    display: inline;
  }
}
.page-num {
  display: inline-block;
}
.page-num ul {
  font-size: 0;
}
.page-num ul li {
  font-size: 14px;
  display: inline-block;
  margin: 0 15px;
}
.page-num ul li span {
  font-weight: bold;
  font-size: 16px;
}

/* 〇 */
.page-num2 {
  display: inline-block;
}
.page-num2 ul {
  font-size: 0;
}
.page-num2 ul li {
  font-size: 14px;
  display: inline-block;
  margin: 0 5px;
}
.page-num2 ul li a {
  display: block;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
}
.page-num2 ul li a:hover {
  background-color: #000;
  color: #fff;
  text-decoration: none;
}
.page-num2 ul li span a {
  font-weight: bold;
  background-color: #000;
  color: #fff;
}

/* □ */
.page-num3 {
  display: inline-block;
}
.page-num3 ul {
  font-size: 0;
}
.page-num3 ul li {
  font-size: 14px;
  display: inline-block;
  margin: 0 5px;
}
.page-num3 ul li a {
  display: block;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  border: 1px solid #000;
  color: #000;
}
.page-num3 ul li a:hover {
  background-color: #000;
  color: #fff;
  text-decoration: none;
}
.page-num3 ul li span a {
  font-weight: bold;
  background-color: #000;
  color: #fff;
}

/* CSSボタン */
.css-batu, .css-plus {
  display: inline-block;
  position: relative;
  margin: 0 20px 0 7px;
  padding: 0;
  width: 4px;
  height: 20px;
  background: #000;
  cursor: pointer;
}

/* ×ボタン */
.css-batu {
  transform: rotate(45deg);
}
.css-batu::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  width: 20px;
  height: 4px;
  margin-top: -2px;
  background: #000;
}

/* +ボタン */
.css-plus::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  width: 20px;
  height: 4px;
  margin-top: -2px;
  background: #000;
}

/* TOPへ戻る */
#pagetop {
  position: fixed;
  height: 44px;
  bottom: 20px;
  right: 10px;
  font-size: 20px;
  z-index: 101;
}
#pagetop a {
  background: #000;
  opacity: 0.7;
  text-decoration: none;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
/*--------------------------------------------
 検索フォームスタイル
--------------------------------------------*/
.searchform1,
.searchform2,
.searchform3,
.searchform4 {
  position: relative;
  height: 36px;
}
.searchform1 input,
.searchform2 input,
.searchform3 input,
.searchform4 input {
  border: none;
}
.searchform1 input[type="text"],
.searchform2 input[type="text"],
.searchform3 input[type="text"],
.searchform4 input[type="text"] {
  padding: 0 15px;
  position: absolute;
}
.searchform1 input[type="submit"],
.searchform2 input[type="submit"],
.searchform3 input[type="submit"],
.searchform4 input[type="submit"] {
  position: absolute;
  padding: 0;
}
.searchform1 button,
.searchform2 button,
.searchform3 button,
.searchform4 button {
  position: absolute;
  padding: 0;
}

/* 虫眼鏡ボタン付き検索（searchform1）
--------------------------------------------*/
.searchform1 input[type="text"] {
  background: #eeeeee;
  border-right: none;
}

.sbox1 {
  height: 36px;
  left: 0;
  top: 0;
  width: 260px;
  width: -webkit-calc(100% - 40px);
  width: calc(100% - 40px);
  border-radius: 2px 0 0 2px;
}
.sbox1:hover {
  border: none;
  background: #fffDF4;
}

.sbtn1 {
  width: 40px;
  height: 36px;
  right: 0;
  top: 0;
  border-radius: 0 2px 2px 0;
  background: #000000;
  color: #fff;
  border: none;
  border-left: none;
  font-size: 16px;
}
.sbtn1::after {
  content: "\e92b";
  font-family: "icomoon";
  font-size: 20px;
  color: #fff;
}
.sbtn1:hover {
  background: #000000;
  color: #fff;
}

/* 検索ボタン付き検索（searchform2）
--------------------------------------------*/
.searchform2 input[type="text"] {
  border-right: none;
  border: 1px solid #bfbfbf;
  background: #fff;
}
.searchform2 input[type="text"]:hover {
  border: solid 1px #00b7ee;
}

.sbox2 {
  height: 36px;
  left: 0;
  top: 0;
  width: 240px;
  width: -webkit-calc(100% - 60px);
  width: calc(100% - 60px);
}

.sbtn2 {
  width: 60px;
  height: 36px;
  right: 0;
  top: 0;
  background: #444444;
  color: #fff;
  border: none;
  border-left: none;
  font-size: 16px;
}
.sbtn2:hover {
  background: #444444;
  color: #fff;
}

/* 虫眼鏡フレーム内検索（#searchform3）
--------------------------------------------*/
.searchform3 {
  border: 2px solid #bfbfbf;
  height: 40px;
}
.searchform3 input[type="text"] {
  border-right: none;
  border: none;
  background: #fff;
}
.searchform3:hover {
  border: solid 2px #00b7ee;
}

.sbox3 {
  height: 36px;
  left: 0;
  top: 0;
  width: 260px;
  width: -webkit-calc(100% - 40px);
  width: calc(100% - 40px);
}
.sbox3:hover {
  border: none;
}

.sbtn3 {
  width: 40px;
  height: 36px;
  right: 0;
  top: 0;
  background: #fff;
  color: #333;
  border: none;
  border-left: none;
  font-size: 16px;
}
.sbtn3::after {
  content: "\e92b";
  font-family: "icomoon";
  font-size: 20px;
  color: #333;
}
.sbtn3:hover {
  background: #E0E0E0;
  color: #000;
}

/* 伸びる検索（searchform4）
--------------------------------------------*/
.searchform4 {
  height: 44px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  width: 44px;
}
.searchform4 input[type="text"] {
  background: #ccc;
  border: none;
  border-radius: 22px;
  color: #333;
  cursor: pointer;
  height: 44px;
  opacity: 0;
  outline: none;
  padding: 5px;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.7s;
  width: 44px;
  z-index: 5;
}
.searchform4 input[type="text"]:focus {
  cursor: text;
  opacity: 1;
  width: 300px;
}
.searchform4 input[type="submit"] {
  display: none;
}

.sbtn4 {
  border-radius: 50%;
  display: inline-block;
  height: 44px;
  line-height: 44px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  text-align: center;
  width: 44px;
}
.sbtn4::after {
  content: "\e92b";
  font-family: "icomoon";
  font-size: 20px;
  color: #fff;
}
/* ディスクリプション */
.lead-txt {
	width: max-content;
  font-size: 14px;
  line-height: 1.5;
  padding: 10px 3% 0;
	transform: translateX(-50%);
	position: relative;
	left: 50%;
}
.lead-txt p {
  text-align: left;
  margin-bottom: 1em;
}
/* TOP
----------------------------------*/
#top-shop-message1,
#top-shop-message2 {
  border: 10px solid #ebe2db;
  padding: 2.0em;
}
#top-shop-message1 h2,
#top-shop-message2 h2 {
  font-size: 20px;
  line-height: 1.5;
  padding: 10px 0;
  position: relative;
}
#top-shop-message1 p,
#top-shop-message2 p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 1.5em;
}
#top-shop-message2 {
  margin-top: 30px;
}

/* お知らせ */
.list-info {
  padding: 0 3%;
  list-style: none;
  margin-top: 24px;
}
.list-info li {
  font-size: 16px;
  padding: 5px 0 15px;
}
.list-info li span {
  font-size: 12px;
}

/* 商品リスト
----------------------------------*/
/* アイコン */
.icon-rank {
  width: 100%;
  height: 22px;
  margin: 0 0 10px;
  line-height: 22px;
  text-align: center;
  z-index: 97;
  background-color: #d99d68;
}
.icon-rank span {
  font-weight: bold;
  color: #fff;
}

/* バッチ */
.icon-badge::before{
  width: 60px;
  height: 20px;
  display: inline-block;
  font-size: 11px;
  line-height: 20px;
  text-align: center;
}
 .icon-badge56434{
    margin-right: 5px;
    margin-bottom: 15px;
    z-index: 97;
  }
/* NEWバッジ */
  .icon-badge56434::before{
    content: "NEW";
    background: #ff6f00;
    border: 1px solid #ff6f00;
    color: #fff;
  }
/* おすすめバッジ */
 .icon-badge56435{
    margin-right: 5px;
    margin-bottom: 15px;
    z-index: 97;
  }
/* NEWバッジ */
  .icon-badge56435::before{
    content: "おすすめ";
    background: #0093e8;
    border: 1px solid #0093e8;
    color: #fff;
  }
/* 人気バッジ  */
 .icon-badge56436{
    margin-right: 5px;
    margin-bottom: 15px;
    z-index: 97;
  }
/* NEWバッジ */
  .icon-badge56436::before{
    content: "人気";
    background: #e31c24;
    border: 1px solid #e31c24;
    color: #fff;
  }
/* ユーザー追加バッジ */
.tax {
  font-size: 80%;
}
/*　並び順／ページ送り */
.sort {
  text-align: right;
  margin-bottom: 1.5em;
}
.sort ul {
  padding: 10px 3%;
}
.sort ul li {
  display: inline-block;
  font-size: 12px;
  padding: 0 5px;
  border-right: 1px solid #333;
}
.sort ul li:first-child,
.sort ul li:last-child {
  border: none;
}
.item-list-itemcount {
  border-top: 1px solid #e5e5e5;
  text-align: right;
  margin: 1.5em 0;
  padding: 10px 3%;
  font-size: 12px;
}
/* 検索結果0,キャンペーン商品0 */
.product-list, .item-list-noitem {
  font-size: 18px;
  line-height: 1.6;
}
/* トップページフッター */
.schedule-area2 {
  width: 100%;
}
.calendar-2 table {
  width: 100%;
  margin: 0;
}
.f-logo {
  text-align: center;
  width: 100%;
  margin: auto;
  font-size: 20px;
}
.f-logo a {
  color: #fff;
}
.f-logo img {
  margin: auto;
  max-height: 100px;
}
#information {
	background: #ebebeb;
}
.information-block {
	display: flex;
	justify-content: center;
	color: var(--normalColor);
}
.information-block.f-left {
	padding-bottom: 64px;
}
.information-block.f-right{
  position:relative;
}
.information-block.f-right.toppage::before {
	content: "";
	position: absolute;
	top: -56px;
	right: 8px;
	display: block;
	width: 120px;
	height: 56px;
  background: url(https://contents.raku-uru.jp/01/19443/21/kura-illust_1638508209284.webp) bottom/cover no-repeat;
}
.no-webp .information-block.f-right.toppage::before{
	background: url(https://image.raku-uru.jp/01/19443/20/kura-illust_1638508209028.png) bottom/cover no-repeat;
}

/*--------------------------------------
 calendar
--------------------------------------*/
.months {
  font-size: 18px;
  text-align: center;
  padding: 8px 0;
  margin: auto;
}
.schedule-area {
  text-align: center;
  margin-bottom: 24px;
}
.schedule-area .months {
  width: 94%;
  color: #fff;
  background-color: #f2a0a1;
  padding: 8px 0;
  margin-bottom: 1.0em;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
}
.schedule-area2 {
  text-align: center;
}
.schedule-area2 .months {
  text-align: left;
  padding: 10px;
}

/* カレンダー線あり
--------------------------------------------*/
.calendar table {
  width: 94%;
  margin: auto;
}
.calendar th, .calendar td {
  font-size: 13px;
  font-weight: normal;
  padding: 5px 0;
  width: -webkit-calc(94% / 7);
  width: calc(94% / 7);
  text-align: center;
  border: 2px solid #fff;
  margin: 0;
  display: table-cell;
}
.calendar thead th {
  padding: 10px 0;
}
.calendar thead th:first-child {
  color: #ec0000;
}
.calendar thead th:last-child {
  color: #0068b7;
}
.calendar td i {
  display: inline-block;
  width: 26px;
  height: 26px;
  line-height: 26px;
}

/* カレンダーイベント色分け */
.e1 i {
  color: #fff;
  background-color: #0093e8;
  border-radius:50%;
}
.e2 i {
  color: #fff;
  background-color: #ff6f00;
  border-radius:50%;
}
.e3 i {
  color: #000;
  background-color: #bda88f;
  border-radius:50%;
}
.list-event {
  border-top: 1px solid #e5e5e5;
  padding: 15px 0;
  margin: 0 3%;
  text-align: left;
}
.list-event li {
  display: inline-block;
  line-height: 24px;
  position: relative;
  min-height: 24px;
  margin-bottom: 5px;
  margin-right: 10px;
  padding-left: 32px;
  text-align: left;
  list-style: none;
  font-size: 13px;
}
.list-event li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
  content: '';
}
.list-event li.event1::before {
  background-color: #0093e8;
}
.list-event li.event2::before {
  background-color: #ff6f00;
}
.list-event li.event3::before {
  background-color: #bda88f;
}
.schedule-area2 {
	width: 100%;
	padding-top: 32px;
}
.schedule-area2 .months {
	font-size: 18px;
	color: #444;
}
.calendar thead tr {
	border-top: 2px solid #555;
	border-bottom: 2px solid #555;
}
/* content footer left */
.address {
  color: #555;
  text-align: center;
}
.address-name {
  font-size: 22px;
  padding: 20px 0;
}
.name-sub {
  display: block;
  font-size: 14px;
  padding-top: 8px;
}
.address-address {
  font-size: 14px;
}
.p-code {
  margin-right: 1em;
}
.address-tel {
  padding: 1em 0;
}
/* content footer right */
.information-block.f-right {
	color: #fff;
	background: #000;
	padding-top: 40px;
}
.f-right .list-link {
  width:240px;
  margin: 0 auto;
  padding-top: 20px;
  text-align: left;
}
.list-link li {
  padding: 12px;
}
.list-link li::before {
  content: ">";
  margin-right: 8px;
}
.list-link li a {
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.copyright {
	font-size: 12px;
	color: #fff;
	line-height: 1;
	padding: 40px 0;
	background: #000;
	text-align: center;
}
/* ログインページ
----------------------------------*/

#main-image + div#login-error-message {
  border-top-width: 1px;
  border-top-style: solid;
}
#top-shop-message2 {
  margin-top: 30px;
}
#login-error-message {
  font-size: 12px;
  margin: 20px 10px;
  padding: 10px;
  text-align: center;
  color: #e6503f;
  border: #e6503f solid 1px;
}
#login-message {
  margin:30px 10px 0;
}
.login-tbl {
  display: block;
  width: calc(100% - 20px);
  margin: 20px 10px 20px;
}
.login-tbl tbody,
.login-tbl tr {
  display: block;
  width: 100%;
}
.login-tbl th {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.2;
  display: block;
  padding: 10px;
  text-align: left;
  border: none;
  background: none;
}
.login-tbl td {
  font-size: 14px;
  font-weight: normal;
  display: block;
  padding: 10px;
  vertical-align: top;
  border: none;
}
.login-tbl td input[type=text],
.login-tbl td input[type=password] {
  line-height: 36px;
  width: 100%;
  height: 36px;
  padding: 0 10px;
  border: #d0d0d0 solid 1px;
}
.login-link ul li {
  margin-top: 1em;
}
.login-btn {
  font-size: 15px;
  margin-bottom: 25px;
  text-align: center;
}
.login-btn a {
  font-size: 16px;
  font-weight: normal;
  line-height: 44px;
  position: relative;
  display: inline-block;
  width: 152px;
  height: 44px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #666;
}
.login-link{
  margin-bottom: 60px;
}
.login-link ul li {
  text-align: center;
  list-style: none;
}
.login-link ul li a {
  text-decoration: underline;
}
@media screen and (min-width: 960px) {

  .body-login .main {
    float: none;
    margin-right: auto;
    margin-left: auto;
  }
  .body-login .footer-logo {
    float: none;
    width: 100%;
    text-align: center;
  }

  #login-error-message {
    font-size: 14px;
    margin: 30px 30px 40px;
    padding: 8px 15px;
    text-align: left;
  }
  #login-message {
    margin: 30px 0;
    text-align: center;
  }

  .login-tbl {
    max-width: 785px;
    display: table;
    margin: 15px auto;
  }
  .login-tbl tbody {
    display: table-row-group;
  }
  .login-tbl tr {
    display: table-row;
  }
  .login-tbl th {
    font-size: 16px;
    font-weight: normal;
    line-height: 36px;
    width: 200px;
    text-align: left;
    vertical-align: top;
    display: table-cell;
  }
  .login-tbl td {
    text-align: left;
    display: table-cell;
  }
}

/* 特商法・送料についてページ
----------------------------------*/
.payment-content tr:first-child td {
  font-weight:bold;
  background: #f6f6f7;
  text-align:center;
}
.payment-content td {
  text-align:right;
}

/* notfoundページ
----------------------------------*/
.notfound {
  font-size: 24px;
  margin-top: 90px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 600px) {
  .notfound {
    font-size: 16px;
    margin:50px 10px 0;
  }
}
/* 閉店表示
----------------------------------*/
body#close #wrapper > div.main-container {
  padding-top: 80px;
}
@media screen and (min-width: 960px){
  body#close #mainHeader {
    border-top: 10px solid #000;
  }
}

/* IE調整用
----------------------------------*/
@media all and (-ms-high-contrast:none) {
  .site-name-text a {
    padding-top: 6px;
  }
  .item-detail-radio label {
    padding-top: 4px;
  }
}
/* .sort-select */
.sort-select {
  padding: 20px 0px;
}
@media only screen and (max-width: 600px) {
  .sort-select {
   padding: 10px 0px;
  }
}
.sort-select .sort-label {
  display: inline;
  font-size: 16px;
  vertical-align: middle;
  line-height: 30px;
}
.sort-select label {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  height: 30px;
  padding-left: 5px;
  border: 1px solid #e5e5e5;
}
.sort-select label::after {
	z-index: 3;
	position: absolute;
	right: 7px;
	top: 10px;
	content: "▼";
	font-size: 10px;
	pointer-events: none;
}
.sort-select select {
  z-index: 2;
  display: block;
  width: 100%;
  margin: 0;
  border: 0;
  outline: none;
  font-size: 16px;
  line-height: 30px;
  appearance: none;
  padding-right: 32px;
}
.wysiwyg-data html, .wysiwyg-data address, .wysiwyg-data blockquote, .wysiwyg-data body, .wysiwyg-data dd, .wysiwyg-data div, .wysiwyg-data dl, .wysiwyg-data dt, .wysiwyg-data fieldset, .wysiwyg-data form, .wysiwyg-data frame, .wysiwyg-data frameset, .wysiwyg-data h1, .wysiwyg-data h2, .wysiwyg-data h3, .wysiwyg-data h4, .wysiwyg-data h5, .wysiwyg-data h6, .wysiwyg-data noframes, .wysiwyg-data ol, .wysiwyg-data p, .wysiwyg-data ul, .wysiwyg-data center, .wysiwyg-data dir, .wysiwyg-data hr, .wysiwyg-data menu, .wysiwyg-data pre {
  display: block;
  unicode-bidi: embed;
}
.wysiwyg-data {
  padding: 20px;
  line-height: normal;
  text-align: left;
  font-size: 14px;
}
.wysiwyg-data li {
  display: list-item;
}
.wysiwyg-data head {
  display: none;
}
.wysiwyg-data table {
  display: table;
}
.wysiwyg-data tr {
  display: table-row;
}
.wysiwyg-data thead {
  display: table-header-group;
}
.wysiwyg-data tbody {
  display: table-row-group;
}
.wysiwyg-data tfoot {
  display: table-footer-group;
}
.wysiwyg-data col {
  display: table-column;
}
.wysiwyg-data colgroup {
  display: table-column-group;
}
.wysiwyg-data td, .wysiwyg-data th {
  display: table-cell;
}
.wysiwyg-data caption {
  display: table-caption;
}
.wysiwyg-data th {
  font-weight: bolder;
  text-align: center;
}
.wysiwyg-data caption {
  text-align: center;
}
.wysiwyg-data body {
  margin: 8px;
}
.wysiwyg-data h1 {
  font-size: 20px;
  margin: .67em 0;
}
.wysiwyg-data h2 {
  font-size: 18px;
  margin: .75em 0;
}
.wysiwyg-data h3 {
  font-size: 16px;
  margin: .83em 0;
}
.wysiwyg-data h4, .wysiwyg-data p, .wysiwyg-data blockquote, .wysiwyg-data ul, .wysiwyg-data fieldset, .wysiwyg-data form, .wysiwyg-data ol, .wysiwyg-data dl, .wysiwyg-data dir, .wysiwyg-data menu {
  font-size: 14px;
  margin: 1.12em 0;
  color: #333;
}
.wysiwyg-data h5 {
  font-size: 14px;
  margin: 1.5em 0;
}
.wysiwyg-data h6 {
  font-size: 14px;
  margin: 1.67em 0;
}
.wysiwyg-data h1, .wysiwyg-data h2, .wysiwyg-data h3, .wysiwyg-data h4, .wysiwyg-data h5, .wysiwyg-data h6, .wysiwyg-data b, .wysiwyg-data strong {
  font-weight: normal;
}
.wysiwyg-data blockquote {
  margin-left: 40px;
  margin-right: 40px;
}
.wysiwyg-data i, .wysiwyg-data cite, .wysiwyg-data em, .wysiwyg-data var, .wysiwyg-data address {
  font-style: italic;
}
.wysiwyg-data pre, .wysiwyg-data tt, .wysiwyg-data code, .wysiwyg-data kbd, .wysiwyg-data samp {
  font-family: monospace;
}
.wysiwyg-data pre {
  white-space: pre;
}
.wysiwyg-data button, .wysiwyg-data textarea, .wysiwyg-data input, .wysiwyg-data select {
  display: inline-block;
}
.wysiwyg-data big {
  font-size: 120%;
}
.wysiwyg-data small, .wysiwyg-data sub, .wysiwyg-data sup {
  font-size: 86%;
}
.wysiwyg-data sub {
  vertical-align: sub;
}
.wysiwyg-data sup {
  vertical-align: super;
}
.wysiwyg-data table {
  border-spacing: 2px;
}
.wysiwyg-data thead, .wysiwyg-data tbody, .wysiwyg-data tfoot {
  vertical-align: middle;
}
.wysiwyg-data td, .wysiwyg-data th, .wysiwyg-data tr {
  vertical-align: inherit;
}
.wysiwyg-data s, .wysiwyg-data strike, .wysiwyg-data del {
  text-decoration: line-through;
}
.wysiwyg-data hr {
  border: 1px inset;
}
.wysiwyg-data ol, .wysiwyg-data ul, .wysiwyg-data dir, .wysiwyg-data menu, .wysiwyg-data dd {
  margin-left: 40px;
}
.wysiwyg-data ol {
  list-style-type: decimal;
}
.wysiwyg-data ol ul {
  margin-top: 0;
  margin-bottom: 0;
}
.wysiwyg-data ul ol, .wysiwyg-data ul ul {
  margin-top: 0;
  margin-bottom: 0;
}
.wysiwyg-data ol ol {
  margin-top: 0;
  margin-bottom: 0;
}
.wysiwyg-data u, .wysiwyg-data ins {
  text-decoration: underline;
}
.wysiwyg-data br:before {
  content: "\A";
  white-space: pre-line;
}
.wysiwyg-data center {
  text-align: center;
}
.wysiwyg-data :link, .wysiwyg-data :visited {
  text-decoration: underline;
}
.wysiwyg-data :focus {
  outline: thin dotted invert;
}
.wysiwyg-data table {
  border: solid 1px;
  border-collapse: separate;
  border-color: #c0c0c0 #c0c0c0 #808080 #808080;
  border-spacing: 2px;
  width: auto;
}
.wysiwyg-data table tr td {
  border: solid 1px;
  border-color: #808080 #808080 #c0c0c0 #c0c0c0;
  padding: 0;
}
.item-comment .wysiwyg-data table tr td {
  background: #fff;
}
.wysiwyg-data ul {
  list-style-type: disc;
}
.wysiwyg-data ul li {
  list-style-type: disc;
}
.wysiwyg-data ol {
  list-style-type: decimal;
}
.wysiwyg-data BDO[DIR="ltr"] {
  direction: ltr;
  unicode-bidi: bidi-override;
}
.wysiwyg-data BDO[DIR="rtl"] {
  direction: rtl;
  unicode-bidi: bidi-override;
}
.wysiwyg-data *[DIR="ltr"] {
  direction: ltr;
  unicode-bidi: embed;
}
.wysiwyg-data *[DIR="rtl"] {
  direction: rtl;
  unicode-bidi: embed;
}
/* Begin bidirectionality settings (do not change) */
@media print {
  .wysiwyg-data h1 {
    page-break-before: always;
    page-break-after: avoid;
  }
  .wysiwyg-data h2, .wysiwyg-data h3, .wysiwyg-data h4, .wysiwyg-data h5, .wysiwyg-data h6 {
    page-break-after: avoid;
  }
  .wysiwyg-data ul, .wysiwyg-data ol, .wysiwyg-data dl {
    page-break-before: avoid;
  }
}
ata *[DIR="rtl"] {
  direction: rtl;
  unicode-bidi: embed;
}
@media (min-width: 600px) {
  /* カレンダー */
  .f-center .infromation-block-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
  }
}
@media (min-width: 1025px) {
  .sp-hidden{display:block}
  .pc-hidden{display:none}
  .pc-v-hidden{visibility: hidden}
  #wrapper {
    display: flex;
    flex-wrap:wrap;
    align-items: flex-start;
  }
  #mainHeader {
    width: 220px;
    min-height:100vh;
    position: sticky;
    top: 0;
  }
  #main-container {
    display:flex;
    flex-direction: column;
    width: calc(100% - 221px);
    min-height: 100vh;
    border-left: 1px solid #aaa;
    overflow-x: hidden;
  }
  /* header && nav */
  .header-inner {
    flex-direction: column;
    align-items: center;
    padding: 40px 0 0;
  }
  .header-logo {
    width: 30%;
  }
  .header-menu {
    width: 94%;
    margin: auto;
  }
  .header-menu__icon{
    display:none
  }
  #gNav-container {
    position: static;
    width: 100%;
    height: auto;
    padding: 0;
    background: initial;
    text-align: left;
  }
  .gNav {
    position: static;
    padding-left: 0;
    border-top:none;
    overflow-y: initial;
  }

  .gNav-item {
    font-size: 16px;
  }
  .catLarge{
    border-bottom:none;
  }
  .catLarge-child {
    border-bottom: 1px solid #666;
  }
  .open-catSmall{
    transform: rotate(-90deg);
  }
  .open-catSmall[aria-pressed="true"] {
    transform: rotate(90deg);
  }
  .catSmall {
    top: 0;
    left: 100%;
    padding: 8px 16px 0;
  }
  .gNav-child.search {
    margin-bottom: 80px;
  }
  #open-global-search,
  #open-global-search-pc {
    font-family: "Noto Serif JP", serif;
  }
  .cart.gNav-child {
    margin: 40px -3% 32px;
    padding: 32px;
    background: #2d2828;
    text-align: center;
  }
  .cart.gNav-item {
    font-size: 20px;
  }
  .catLarge-child:hover > .catSmall,
  .catLarge-child:focus > .catSmall {
    display: block;
  }
  .shop-tel__tel {
    font-size: 30px;
  }
  .shop-tel__time {
    font-size: 12px;
    letter-spacing: 0;
  }
  .gNav-child.sns {
    padding: 40px 0;
  }
  .gNav-child.sns .sns-icon {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 16px;
    color: #fff;
    margin-bottom: 12px;
    padding: 16px 8px;
    border: 1px solid #fff;
    border-radius: 16px;
    text-decoration: none; 
  }
  main{
    flex:1;
  }
  .title-box{
    padding-top:108px;
    padding-bottom:92px;
  }
  .list-title__name {
    font-size: 18px;
  }
  .list-price__price {
    font-size: 16px;
  }
  /* ディスクリプション */
  .lead-txt {
    padding: 10px 0;
  }
  .lead-txt p {
    font-size: 16px;
  }
  /* TOP
  ----------------------------------*/
  #top-shop-message1,
  #top-shop-message2 {
    padding: 3.0em;
  }
  #top-shop-message2 {
    margin-top: 60px;
  }
  /* 検索・カテゴリーページ
  ----------------------------------*/
  .cat-head,
  .frame-block {
    padding: 3.0em;
  }
  /*　並び順／ページ送り */
  .sort {
    margin-bottom: 2.5em;
  }
  .sort ul {
    padding: 20px 0;
  }
  .sort ul li {
    display: inline-block;
    font-size: 14px;
    padding: 0 15px;
  }
  .item-list-itemcount {
    margin: 2.0em 0;
    padding: 20px 0;
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  /* content footer */
  .information {
    display: flex;
    padding: 0 8px;
  }
  .information-block.f-left {
    order: 1;
    align-self:flex-start;
    width:352px;
    padding-top: 40px;
    padding-right: 40px;
  }
  .f-left .infromation-block-inner {
    display:grid;
    grid-template-columns: 22% 74%;
    width: 100%;
    font-size: 13px;
    justify-content: space-between;
    padding: 0 48px;
    padding-right: 20px;
  }
  .address {
    letter-spacing: 1.1px;
    padding-top: 20px;
    text-align: left;
  }
  .address-name {
    font-size: 20px;
    padding: 20px 0 8px;
  }
  .address-name-sub {
    margin-bottom: 1em;
  }
  .address-address {
    font-size: 13px;
  }
  .p-code {
    display: block;
    font-size: 13px;
  }
  .address-tel {
    font-size: 16px;
    letter-spacing: 1px;
  }
  .information-block.f-center {
    order: 2;
  }
  .information-block.f-right {
    order: 3;
    padding-top: 40px;
    padding-left: 40px;
    background: initial;
  }
  .information-block.f-right.toppage::before {
    top:initial;
    bottom: 0;
    right: 0;
  }
  .f-right .list-link {
    padding-top: 10px;
  }
  .list-link-title {
    font-size: 13px;
    color: var(--subColor);
  }
  .list-link li::before {
    display: none;
  }
  .list-link li {
    padding: 5px 0px;
  }
  .list-link li a {
    font-size: 10px;
    color:var(--subColor);
    letter-spacing: .8px;
  }
  .copyright {
    padding: 20px 12px;
    text-align: right;
  }
}
@media(min-width:1600px){
  .list {
    grid-template-columns: repeat(3,1fr);
   }
}
