@charset "utf-8";

/*----------------------------------------------------------
 reset
----------------------------------------------------------*/
*, *:before, *:after { box-sizing:border-box; }

html, body, h1, h2, h3, h4, h5, h6,
ul, ol, li, dl, dt, dd,
figure, figcaption, form, textarea,
blockquote, fieldset, legend {
  margin: 0;
  padding: 0;
  border: none;
}

h1, h2, h3, h4, h5, h6 { font-size:100%; }

article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section, summary { display: block; }

table { border-collapse:collapse; border-spacing:0; }

img { max-width:100%; height:auto; font-size:0; line-height:0; vertical-align:bottom; border-width:0; image-rendering:-webkit-optimize-contrast; }

ul , ol { padding:0; list-style:none; }

input , button , textarea , select { font:inherit; }
button { margin:0; padding:0; border:none; border-radius:0; background:none; -webkit-appearance:none; cursor:pointer; }
button:focus { outline:none; }

input[type="submit"],
input[type="button"],
input[type="reset"] {
  cursor: pointer;
}

/* @base
----------------------------------------------------------*/
:root {
  --color-main: #1871b9;
  --color-main-hover: #085da3;
  --color-main-bg: #e1e0ed;
  --color-main-lite-bg: #ebf6ff;
  --color-blk: #000;
  --color-wht: #fff;
  --color-gry: rgba(0,0,0,.2);

  --color-sub: #4da683;
  --color-sub-hover: #4da683;

  --color-hilite: #fffc00;
  --color-red: #d80000;

  --bg-stripe: repeating-linear-gradient(45deg, var(--color-main) 0, var(--color-main) 1px, transparent 0, transparent 50%);
  --bg-stripe-size: 10px 10px;

  --icon-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Cpath fill='%239aa2af' d='M13.158,22.403l2.267-1.734c2.843-2.174,8.435-6.453,12.575-9.615V5.696c-2.648,2.017-10.581,8.083-14.626,11.176L0,5.597v5.716s13.158,11.09,13.158,11.09Z'/%3E%3C/svg%3E");

  --font-base: 'Noto Sans JP',
  "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic",
  "メイリオ", "Meiryo","ヒラギノ角ゴ Pro W3",
  "Hiragino Kaku Gothic Pro", Osaka, sans-serif;
  --font-serif: "游明朝", "Yu Mincho", YuMincho,
  "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro",
  "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  --font-en: 'Noto Serif JP', serif;
}

html, body { height: 100%; }

html {
  font-size: 100%;
  background: var(--color-body-bg);
}

body {
  color: #333;
  font-family: var(--font-base);
  letter-spacing: .025em;
  line-height: 2;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-font-variant-ligatures: none;
  font-variant-ligatures: none;
  -webkit-animation: loading 1.5s;
  animation: loading 1.5s;
}
body.shop {
  background: #fff;
}
@-webkit-keyframes loading {
  0%   { opacity:0; }
  100% { opacity:1; }
}
@keyframes loading {
  0%   { opacity:0; }
  100% { opacity:1; }
}

a { color: var(--color-blk); text-decoration:none; }
a:not([class]) { color: var(--color-main-txt); text-decoration:underline; text-underline-offset:2px; }
a:not(.fade), .anime { transition:all .5s; }
a:not([class]):hover, a:not([class]):focus { text-decoration:none; }
a:focus { outline:none; }

/* @utility */
.font-serif {
  font-family: var(--font-serif);
  font-weight: 500;
}

.font-en {
  font-family: var(--font-en);
  letter-spacing: 0;
}

.clearfix::after { content:""; display:block; clear:both; }

.wide   { width: 100%; }

.pos-r { position:relative; }

.iblock { display:inline-block; }
.block  { display:block; }
.hide   { display:none; }

.fl-left { float:left; }
.fl-right { float:right; }

.ta-left { text-align:left; }
.ta-center { text-align:center; }
.ta-right { text-align:right; }
.ta-just { text-align:justify; }

.va-top  { vertical-align:top; }
.va-mid  { vertical-align:middle; }
.va-btm  { vertical-align:bottom; }
.va-base { vertical-align:baseline; }

.fw-mid { font-weight:500; }
.fw-bold { font-weight:bold; }

.fz-small { font-size:.85em; }
.fz-big { font-size:1.2em; }

.fs-italic { font-style:italic; }
.ws-nowrap { white-space: nowrap; }

.is-fixed { position:fixed; top:0; right:0; bottom:0; left:0; }

.link-disabled { cursor:default; pointer-events:none; opacity:0.6; }

.marker { background:linear-gradient(transparent 60%, #fff073 0%); }
.indent { padding-left:1em; text-indent:-1em; }

.li-disc, .li-decimal { padding-left:1.5em; }
.li-disc { list-style:disc; }
.li-decimal { list-style:decimal; }

.flex         { display:-webkit-flex; display:flex; -webkit-flex-wrap:wrap; flex-wrap:wrap; }
.flex-between { -webkit-justify-content:space-between;  justify-content:space-between;  }
.flex-center  { -webkit-justify-content:center; justify-content:center; }
.flex-align-center { -webkit-box-align:center; -webkit-align-items:center; align-items:center; }


.shadow { box-shadow:0 0 3px rgba(0,0,0,0.3); }


.txt-underline { text-decoration:underline; }
.link-txt { font-weight:bold; text-decoration:underline; }
.link-txt:hover { text-decoration: none; }

.bg-common { background-color: var(--color-main-bg); }
.bg-wht { background-color: var(--color-wht); }
.bg-grad {
  background: var(--color-grad2);
  background: -moz-linear-gradient(310deg, var(--color-grad1) 0%, var(--color-grad2) 100%);
  background: -webkit-linear-gradient(310deg, var(--color-grad2) 0%, var(--color-grad1) 100%);
  background: linear-gradient(310deg, var(--color-grad1) 0%, var(--color-grad2) 100%);
}
.color-red { color: var(--color-red-txt); }
.color-main { color: var(--color-main); }
.color-sub { color: var(--color-sub); }
.color-hilite { color: var(--color-hilite); }
.color-wht { color: #fff; }


.hv-fade { -webkit-transition:all .8s ease-out; transition:all .8s ease-out; }
.hv-fade:hover { opacity:.7; }

/* 1025px 以上  */
@media screen and (min-width: 1025px) {
  /* hover scale */
  a .hv-scale { transition:transform .5s ease-out; will-change: transform; }
  a:hover .hv-scale  { -webkit-transform: scale(1.05); transform: scale(1.05); }
}
@media screen and (min-width: 600px) {
  .txt-v {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}

/* layout ------ */
#wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 100%;
}
.inner {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

#main { display:block; }

/* 960px 以上 (PC・タブレット横) */
@media screen and (min-width: 960px) {
  .pc-none { display: none; }
}
/* 600px 以上 (PC・タブレット) */
@media screen and (min-width: 600px) {
  .sp-only { display: none; }
}

/* 959px 以下 (タブレット縦以下) */
@media screen and (max-width: 959px) {
  .inner { width:auto; padding-left:25px; padding-right:25px; }
  .pc-only { display:none; }
}

/* 599px 以下 (スマホ)  */
@media screen and (max-width: 599px) {
  html { font-size: 14px; }
  body { line-height: 1.8; }
  .inner { padding-left:20px; padding-right:20px; }

  .sp-none { display:none; }
  .sp-only { display:block; }
}


/* @common
----------------------------------------------------------*/
.secttl {
  margin-bottom: 1em;
  color: var(--color-main);
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  letter-spacing: .05em;
}
.lead_ttl {
  margin-bottom: 1.3em;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.583;
}

.subttl {
  margin-bottom: 1em;
  padding-bottom: .5em;
  color: var(--color-main);
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: .05em;
  border-bottom: 1px solid var(--color-main);
}

.subttl2 {
  margin: 2em 0 .75em;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: .05em;
}

/* @button */
.c-btn {
  display: inline-block;
  width: 100%;
  max-width: 480px;
  color: #fff;
  padding: .75em 1em;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  background: var(--color-main);
}
.c-btn:hover {
  background-color: var(--color-main-hover);
}

/* @main-content */
.main-content {
  position: relative;
  z-index: 2;
  padding-top: 40px;
}
.main-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  height: 90px;
  background-image: var(--bg-stripe);
  background-size: var(--bg-stripe-size);
}

.main-content-inner-wrap {
  padding: 90px 40px 0;
  background: #fff;
}

.main-content-inner-wrap h2 {
  margin-bottom: 2.4em;
  color: var(--color-main);
  font-size: 1.625rem;
  text-align: center;
  text-transform: capitalize;
  letter-spacing: .05em;
  line-height: 1.4;
}


/* @header
----------------------------------------------------------*/
.g-header {
  padding-top: 20px;
  padding-bottom: 16px;
  -webkit-box-align: end;
  align-items: flex-end;
}
.g-header-logo {
  width: 260px;
}

#baseMenu {
  margin-left: .25rem;
}
#baseMenu ul {
  display: flex;
}
#baseMenu ul li {
  width: 30px;
  margin: 0 6px;
}
#baseMenu .cart {
  order: -1;
  margin-top: 2px;
}

/* @gnav ------ */
.g-nav-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.g-nav-list a {
  display: block;
  padding: 0 1em;
  color: var(--color-main);
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: .05em;
}
.g-nav-list a:hover {
  color: var(--color-sub);
}

.g-cop-bnr {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.g-cop-bnr a {
  display: block;
  border: 1px solid var(--color-main);
  background: #fff;
  line-height: 0;
}
.g-cop-bnr a:hover {
  background: var(--color-main-lite-bg);
}

/* @footer
----------------------------------------------------------*/
.g-footer {
  margin-top: 120px;
}

.g-footer-info {
  padding-bottom: 1rem;
}
.g-footer-info-link {
  font-size: .75rem;
}
.g-footer-info-link li + li {
  margin-left: 3.75em;
}
.g-footer-info-link a {
  color: var(--color-main);
  font-weight: bold;
  text-decoration: none;
}

.g-footer-copy {
  -webkit-box-align: end;
  align-items: flex-end;
}

.g-copyright {
  margin: 0;
  color: var(--color-main);
}
.g-copyright small {
  display: block;
  margin-bottom: -0.5em;
  font-size: .75rem;
}

.g-footer-sub {
  padding: 30px 0 80px;
  background-image: var(--bg-stripe);
  background-size: var(--bg-stripe-size);
}

.sns-icon_container {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap
}
.sns-icon_item {
  margin: 0 10px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center
}


/* @top
----------------------------------------------------------*/
.top-mv {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
  padding: 15px 0;
  background-image: var(--bg-stripe);
  background-size: var(--bg-stripe-size);
}
.top-mv::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 40px;
  bottom: 40px;
  left: 0;
  right: 0;
  background: var(--color-main);
}
.main-slider {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}
.main-slider .slick-list {
  overflow: visible;
}
.main-slider .slick-slide {
  padding: 0 10px;
}
.main-slider .slick-dots {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}

/* slick */
.slick-slide:focus,
.slick-slide *:focus {
  outline: none;
}

/* slick dots */
.slick-dots {
  padding: 13px 0;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 8px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  color: transparent;
  border-radius: 46%;
  outline: none;
  border: none;
  background: var(--color-main-bg);
}
.slick-dots li.slick-active button {
  background: var(--color-main);
}

/* @top-concept */
.top-concept {
  padding-top: 75px;
  padding-bottom: 55px;
}
.concept-img {
  max-width: 700px;
  margin: 0 auto;
}
.concept-img figure {
  width: 47.41%;
}

/* @pickup */
.top-pickup-ttl {
  position: relative;
  z-index: 2;
  max-width: 670px;
  margin: 0 auto 2em;
  padding: 0 1em 1.2em;
}
.top-pickup-ttl > .wrap {
  display: inline-block;
  width: 100%;
  max-width: 572px;
  padding: 0 1em 1.1em;
  background: #fff;
}
.top-pickup-ttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 1.5em;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: var(--bg-stripe);
  background-size: var(--bg-stripe-size);
}

.top-pickup-body {
  max-width: 1070px;
  margin: 0 auto;
}
.top-pickup-body .con_box {
  width: 43.64%;
  max-width: 450px;
  margin-left: auto;
  margin-right: 40px;
}
.top-pickup-body .con_box-txt {
  line-height: 2.375;
}
.top-pickup-body .con_box-img {
  width: 92%;
  margin-top: 3.1em;
  margin-left: auto;
}

.top-pickup-body .img_box {
  width: 44.55%;
  max-width: 490px;
  margin-top: 2.8em;
  margin-left: auto;
}
.top-pickup-body .img_box-1 {
  width: 83%;
  margin-left: auto;
}
.top-pickup-body .img_box-2 {
  width: 71.4%;
}

/* @top-item  */
.top-item {
  padding-top: 70px;
}
.top-item-ttl {
  margin-bottom: 2.4em;
}

/* @itemList */

.itemList {
  display: -webkit-box;
display: flex;
  flex-wrap: wrap;
}
.itemList .item {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  width: 23.64%;
  margin-right: 1.813%;
  margin-bottom: 80px;
  padding-top: 36px;
}
.itemList .item > a {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-flex: 1;
  flex: 1;
  text-decoration: none;
}

.itemList .item::before {
  position: absolute;
  top: 0;
  left: -50vw;
  width: 160vw;
  height: 120px;
  background-image: var(--bg-stripe);
  background-size: var(--bg-stripe-size);
}

.itemList .item .itemImg a {
  display: block;
  position: relative;
}
.itemList .item .itemImg .imgWrap {
  position: relative;
  overflow: hidden;
}

.itemList .item .itemImg .imgWrap::before {
  content: '';
  display: block;
  padding-top: 100%;
}
.itemList .item .itemImg .imgWrap img {
  transition: transform .5s;
}
.itemList .item .itemImg a:hover .imgWrap img {
  transform: scale(1.05);
}

.itemList .itemImg img.image-resize {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.itemList .item .label_image {
  top: -24px;
  left: -1px;
}

.itemList .item .itemTitle {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  min-height: 4.45em;
  margin: .75em 0;
  font-size: .938rem;
  line-height: 1.467;
  font-weight: bold;
}

.itemList .item .itemDetail {
  margin-top: auto;
  padding: .35em 0 .65em .5em;
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 1.125rem;
  text-align: right;
  line-height: 1.2;
  letter-spacing: .05em;
  border-left: 1px solid var(--color-main);
  border-bottom: 1px solid var(--color-main);
}
.itemList .item .itemDetail .discountPrice {
  color: var(--color-red);
  margin: 0;
}
.itemList .item .itemDetail .discountPrice__ratio {
  border: 1px solid var(--color-red);
  display: inline-block;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.8;
  margin-right: .5em;
  padding: 0 .65em;
  vertical-align: 0.25em;
  letter-spacing: 0;
}

.itemList .item .preOrder, .itemList .item .lottery,
.itemList .item .takeout, .itemList .item .community {
  border: 1px solid #252525;
  border-radius: 2px;
  color: #252525;
  display: inline-block;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 6px;
  margin: -.25em 0 1.5em;
  align-self: flex-end;
}

.itemList .item .comingSoon {
  color: var(--color-sub);
  font-size: .875rem;
  margin: -0.25em 0 0.75em;
  align-self: flex-end;
}

.itemList .item .itemImg a .soldout_cover {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  bottom: 0;
  filter: alpha(opacity=80);
  left: 0;
  opacity: 0.8;
  position: absolute;
  right: 0;
  top: 0;
  zoom: 1;
}
.itemList .item .itemImg a .soldout_cover p {
  color: var(--color-red);
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
.itemList .item .community {
  background-color: #f2bb31;
  border: 1px solid #f2bb31;
  color: #fff;
}

/* @itemPage
----------------------------------------------------------*/
.itemPage-wrap {
  margin-bottom: 50px;
  background: #fff;
}

.item-detail-main {
  position: relative;
  margin-bottom: 55px;
}
.item-slider-container {
  width: 47.27%;
}
.item-slider .slider-item {
  position: relative;
}
.item-slider-container .slider-item .imgWrap {
  position: relative;
  overflow: hidden;
}
.item-slider-container .slider-item .imgWrap::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.item-slider-container .slider-item .imgWrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.item-slider-thumb .slider-item {
  width: 15.38%;
  margin-top: 1.54%;
  margin-right: 1.54%;
  cursor: pointer;
}
.item-slider-thumb .slider-item:nth-child(6n) {
  margin-right: 0;
}
.item-slider-thumb .slider-item img {
  transition: transform .5s;
  will-change: transform;
}
.item-slider-thumb .slider-item:hover img {
  transform: scale(1.05);
}
.item-slider-thumb .label_image {
  display: none;
}

.item-detail-purchase {
  width: 50%;
  padding: 2.75em 2.2em 1em;
}
.item-detail-purchase .itemTitle {
  margin-bottom: 1.5em;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.545;
  letter-spacing: .05em;;
}

.item-detail-purchase .itemPrice {
  margin-bottom: 1.2em;
  padding: .05em 0 .55em .5em;
  color: var(--color-main);
  text-align: right;
  font-size: 1.375rem;
  font-family: var(--font-en);
  line-height: 1.2;
  border-left: 1px solid var(--color-main);
  border-bottom: 1px solid var(--color-main);
}

.item-detail-purchase .itemPrice .discountPrice__default {
  color: #666;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.3;
  margin-right: .75em;
  text-decoration: line-through;
  vertical-align: top;
}
.item-detail-purchase .itemPrice .discountPrice__ratio {
  border: 1px solid var(--color-red);
  color: var(--color-red);
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
  padding: 0 .5em;
  letter-spacing: 0;
  vertical-align: top;
}
.item-detail-purchase .itemPrice .discountPrice__calcPrice {
  color: var(--color-red);
  display: block;
  font-weight: bold;
}


.item-detail-purchase .comingSoon {
  text-align: center;
  font-weight: bold;
  color: var(--color-sub);
}

.item-detail-purchase #itemAttention .attention.salesPeriod--willStart,
.item-detail-purchase #itemAttention .attention.salesPeriod--term  {
  border: 1px solid var(--color-sub);
  color: var(--color-sub);
  font-size: .875rem;
  font-weight: bold;
  line-height: 1.7;
  margin: .25em 0 1.5em;
  padding: .85em .5em;
  text-align: center;
}

.item-detail-purchase .attention.salesPeriod--finish {
  border: 1px solid #ddd;
  color: #777;
  font-size: .875rem;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 1.5em;
  padding: .85em .5em;
  text-align: center;
}

.item-detail-purchase .preOrder, .item-detail-purchase .lottery,
.item-detail-purchase .takeout, .item-detail-purchase .community {
  margin: 1rem 0;
}
.item-detail-purchase .preOrder__label,
.item-detail-purchase .lottery__label,
.item-detail-purchase .takeout__label {
  border: 1px solid #252525;
  border-radius: 2px;
  color: #252525;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  padding: .2em .5em;
  margin: 0 0 .4em 0;
}
.item-detail-purchase .preOrder__data,
.item-detail-purchase .lottery__data {
  font-size: 12px;
  color: #252525;
}
.item-detail-purchase .takeout .takeout__data  {
  font-size: 12px;
  margin-top: 4px;
  display: block;
}


.item-detail-purchase #itemAttention {
  margin-bottom: 2.8em;
  font-size: .875rem;
  line-height: 1.857;
}
.item-detail-purchase #itemAttention a {
  color: var(--color-main);
  font-weight: normal;
  text-underline-offset: 0.4em;
}

#itemAttention .attention.deliveryShortestDay {
  border: 1px solid var(--color-sub);
  border-radius: 2px;
  color: var(--color-sub);
  display: inline-block;
  font-size: 10px;
  font-weight: bold;
  margin-bottom: 25px;
  padding: 5px;
  width: 100%;
  text-align: center;
}
#itemAttention .attention.free {
  font-weight: bold;
}
#itemAttention .attention.free .free__text {
  color: var(--color-sub);
  font-weight: bold;
}
#itemAttention .takeout__text {
  color: #252525;
  cursor: pointer;
  font-weight: bold;
  margin: 0 3px;
  text-decoration: underline;
}

#purchase_form .purchaseElement {
  overflow: hidden;
}
body#shopDetailPage #purchase_form #itemSelect select.itemOption__select,
body#shopDetailPage #purchase_form #itemSelect #valiationSelect {
  margin-top: .15em;
  background-size: 0.95rem auto;
  background-position: right 0.8em center;
  background-image: var(--icon-arrow);
}
body#shopDetailPage #purchase_form input,
body#shopDetailPage #purchase_form select {
  box-shadow: none;
  padding: .75em 1.5em .75em 1em;
  font-family: inherit;
  font-size: 16px;
}
body#shopDetailPage #purchase_form input:focus,
body#shopDetailPage #purchase_form select:focus {
  outline: none;
  border-color: var(--color-main);
}


#purchase_form #amountSelectWrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.8em;
  border-top: 1px solid var(--color-main);
  border-bottom: 1px solid var(--color-main);
}
#purchase_form #amountSelectWrap label {
  margin-right: .5em;
  color: var(--color-main);
  font-weight: bold;
}
#purchase_form #itemSelect #amountSelect {
  width: 6.5em;
  min-width: 0;
  margin: 0;
  padding: 1.2em 1.5em 1.2em 1.2em;
  font-family: inherit;
  border: none;
}
body #purchase_form #itemSelect #amountSelect {
  background-size: 0.85rem auto;
  background-position: right 0.5em top 1.5em;
  background-image: var(--icon-arrow);
}
#purchase_form #itemSelect #amountSelect:focus {
  outline: none;
  background-color: var(--color-main-lite-bg);
}

 #purchase_form .purchaseButton {
  margin: 1.8em 0 0;
  text-align: center;
}

#purchase_form .purchaseButton .purchaseButton__btn {
  background: var(--color-main);
  border: none;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: block;
  font-weight: bold;
  outline: none;
  padding: .75em;
  text-align: center;
  text-decoration: none;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  width: 100%;
}

#purchase_form .purchaseButton .purchaseButton__btn--disabled {
  background: #eee;
  color: #777;
  cursor: not-allowed;
  opacity: 1;
}


#reportBtn {
  margin: .6em 0;
  color: #555;
  text-align: right;
  font-size: .875rem;
}
#reportBtn a {
  text-decoration: none;
}
#reportBtn a:hover {
  color: #333;
}


.itemDescription {
  padding: 4em 0;
  border-top: 1px solid var(--color-main);
  border-bottom: 1px solid var(--color-main);
}


.other-items {
  margin-top: 150px;
}
.other-items-ttl {
  margin-bottom: 2em;
}
.other-items  + .btn-itemlist {
  margin-top: 0;
}

.btn-itemlist {
  margin-top: 4em;
  text-align: center;
}




/* @about
----------------------------------------------------------*/
.about-body {
  margin-bottom: 4.5rem;
}
.about-body-con,
.about-body-logo {
  width: 47.85%;
}
.about-body-con .lead {
  margin-bottom: 1.5em;
  font-size: 1.375rem;
  line-height: 1.727;
  letter-spacing: .05em;
}
.about-body-con .txt {
  text-align: justify;
  letter-spacing: 0;
  line-height: 2.143;
}
.about-body-logo-img {
  max-width: 390px;
  margin: 2.4rem auto;
}

.social {
  margin: 40px 0 0;
  text-align: center;
  width: 100%;
}
.social ul li {
  width: 24px;
  margin-right: 15px;
}
.social ul li:last-child {
  margin-right: 0;
}

.about-img {
  margin-bottom: 80px;
}
.about-img figure {
  width: 32.5%;
}

.about-cop_bnr {
  text-align: center;
}

.guide-box {
  position: relative;
  z-index: 2;
  margin-top: 100px;
  padding-top: 40px;
  padding-bottom: 60px;
  font-size: .875rem;
}
.guide-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50vw;
  z-index: -1;
  width: 160vw;
  height: 90px;
  background-image: var(--bg-stripe);
  background-size: var(--bg-stripe-size);
}
.guide-box h2 {
  margin-left: -40px;
  margin-right: -40px;
  padding-top: 80px;
  background: #fff;
}



/* @inquirySection
----------------------------------------------------------*/
.inquirySection h1 {
  margin-bottom: 3em;
  color: var(--color-main);
  font-size: 1.625rem;
  text-align: center;
  text-transform: capitalize;
  letter-spacing: .05em;
  line-height: 1.4;
}

.inquirySection p {
  margin-bottom: .8em;
  padding-bottom: .5em;
  color: var(--color-main);
  font-size: 1.375rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.4;
  border-bottom: 1px solid var(--color-main);
}

.inquirySection form {
  width: 100%;
}
.inquirySection dl {
  text-align: left;
}

.inquirySection dl dt {
  color: #000;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: .85em;
}

.inquirySection dl dt span {
  color: var(--color-red);
  font-size: .875rem;
  margin-left: .65em;
  vertical-align: baseline;
}

.inquirySection dl dd {
  margin-bottom: 1.8rem;
}

.inquirySection dl dd textarea,
.inquirySection dl dd input {
  box-sizing: border-box;
  border: 1px solid var(--color-main);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  padding: .75em;
  width: 100%;
  font-size: 16px;
}

.inquirySection dl dd textarea {
  height: 18em;
}
.inquirySection dl dd input:focus,
.inquirySection dl dd textarea:focus {
  outline: none;
  border-color: var(--color-sub);
}

.inquirySection .control-panel input#buttonLeave {
  background-color: var(--color-main);
  border: none;
  color: #fff;
  display: inherit;
  -webkit-font-smoothing: antialiased;
  font-weight: bold;
  margin: 55px auto 0;
  padding: 14px 0;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  width: 100%;
  max-width: 480px;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.inquirySection .control-panel input#buttonLeave:hover {
  cursor: pointer;
  -ms-filter: "alpha(opacity=70)";
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}

/* @privacy
----------------------------------------------------------*/
#privacy {
  font-size: .875rem;
}
#privacy h3,
#privacy dt {
  margin: 1.2em 0 0.5em;
  color: var(--color-main);
  font-weight: bold;
  font-size: 1.15rem;
}
#privacy .privacy_intro {
  margin: 0 0 1.5em;
}

/* @law
----------------------------------------------------------*/
#law h3 {
  margin: 1.7em 0 .5em;
  color: var(--color-main);
  font-weight: bold;
}

#law .law_attention {
  padding: 1em 1.2em;
  margin-top: 12px;
  line-height: 1.5;
  background-color: var(--color-main-lite-bg);
}

/* レスポンシブ
----------------------------------------------------------*/
/* 960px 以上 */
@media screen and (min-width: 960px) {
  /* @header
  ----------------------------------------------------------*/
  .g-header .sns-icon_container {
    display: none;
  }
  .g-header-cart {
    display: none;
  }

  /* @menu-btn */
  .menu-btn {
    display: none;
  }

  /* @gnav ------ */
  .g-nav {
    display: flex;
    flex-direction: column;
    padding-bottom: .5em;
  }
  .g-nav-main {
    align-items: flex-end;
  }
  .g-nav-sub {
    order: -1;
  }
  .g-nav-list li {
    margin-right: 1.1em;
  }

  .g-nav-bnr {
    margin-bottom: 20px;
  }

  .g-nav-list-sub,
  .g-nav .sns-icon_container_47ede870,
  .g-nav .g-copyright {
    display: none;
  }

  /* @footer
  ----------------------------------------------------------*/
  .g-footer-copy .sns-icon_container {
    margin-right: 1rem;
  }


  /* @top
  ----------------------------------------------------------*/
  .itemList .item:nth-child(4n) {
    margin-right: 0;
  }
  .itemList .item:nth-child(4n+1)::before {
    content: "";
  }



  .about-body-con .txt,
  .itemDescription {
    font-size: .875rem;
  }


}

/* 959px 以下 (タブレット縦以下) */
@media screen and (max-width: 959px) {
  /* @common
  ----------------------------------------------------------*/
  .main-content-inner-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* @header
  ----------------------------------------------------------*/
  .g-header {
    padding-left: 14px;
    padding-right: 14px;
  }
  .g-header-logo {
    position: relative;
    z-index: 9999;
    width: 170px;
  }

  .g-header-btn {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: end;
    align-items: flex-end;
    margin-bottom: 18px;
  }
  .g-header-cart {
    width: 30px;
    margin-bottom: -3px;
  }

  /* @menu-btn */
  .menu-btn {
    display: block;
    width: 45px;
    height: 45px;
    margin-left: 15px;
    cursor: pointer;
    z-index: 99999;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .g-header-member .menu-btn {
    margin-top: 8px;
  }
  .menu-btn:focus-visible {
    outline: auto;
  }

  .menu-label {
    position: relative;
    display: inline-block;
    margin-bottom: 1.35em;
    color: var(--color-main);
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    letter-spacing: .05em;
  }
  .menu-label::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    color: var(--color-main);
  }
  .menu-btn.is-open .menu-label {
    color: transparent;
  }
  .menu-btn.is-open .menu-label:after {
    content: "close";
    opacity: 1;
  }

  .menu-bar {
    position: relative;
    display: block;
    width: 30px;
    height: 2px;
    margin: 0 auto;
    transition: background-color 10ms 300ms ease;
    background: var(--color-main);
  }
  .menu-bar::before,
  .menu-bar::after {
    content: "";
    transition: top 300ms 350ms ease, transform 300ms 50ms ease;
    position: absolute;
    background: var(--color-main);
    left: 0;
    right: 0;
    height: 2px;
  }
  .menu-bar::before {
    top: -6px;
  }
  .menu-bar::after {
    top: 6px;
  }

  .menu-btn.is-open .menu-bar {
    background-color: transparent;
  }
  .menu-btn.is-open .menu-bar::before,
  .menu-btn.is-open .menu-bar::after {
    transition: top 300ms 50ms ease, transform 300ms 350ms ease;
    top: 0;
  }

  .menu-btn.is-open .menu-bar::before {
    transform: rotate(40deg);
  }
  .menu-btn.is-open .menu-bar::after {
    transform: rotate(-40deg);
  }



  /* @gnav */
  .g-header .g-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-left: auto;
    z-index: 999;
    display: none;
    padding: 140px 0 0;
    background: #fff;
  }
  .g-nav-wrap {
    height: 100%;
    overflow-y: auto;
    overscroll-behavior: none;
  }

  .g-nav-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-flex: 1;
    flex: 1;
    padding: 0 28px;
  }
  .g-nav .g-nav-list {
    -webkit-box-ordinal-group: 0;
    order: -1;
    display: block;
    width: 100%;
    font-size: 1.2143rem;
    margin-bottom: .5em;
  }
  .g-nav .g-nav-list > li {
    margin-bottom: 10px;
    margin-left: 0;
  }
  .g-nav .g-nav-list > li > a {
    display: block;
    padding: .35em 0;
    font-size: 1.214rem;
  }
  .g-nav-list-sub {
    width: 100%;
    font-size: 12px;
  }
  .g-nav-list-sub a {
    display: block;
    padding: .5em 0;
    color: var(--color-main);
    font-weight: bold;
    text-decoration: none;
  }

  .g-nav .g-copyright {
    margin: 1em 28px;
    text-align: center;
  }
  .g-nav-bnr {
    padding: 15px 28px 80px;
    text-align: center;
    background-image: var(--bg-stripe);
    background-size: var(--bg-stripe-size);
  }
  .g-cop-bnr {
    margin-bottom: 0;
    margin-right: auto;
  }

  #baseMenu {
    width: 100%;
    margin-left: 0;
    margin-top: 2em;
  }



  /* fadein */
  .g-nav .g-nav-list > li,
  .g-nav .g-nav-list-sub,
  .g-nav #baseMenu {
    opacity: 0;
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
    -webkit-transform: translateY(-1.2em);
    transform: translateY(-1.2em);
  }
  .g-nav .g-nav-sub {
    opacity: 0;
    margin-top: 2rem;
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
  }

  .g-nav.is-open .g-nav-list > li,
  .g-nav.is-open .g-nav-list-sub,
  .g-nav.is-open #baseMenu,
  .g-nav.is-open .g-nav-sub {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .g-nav .g-nav-list > li:nth-child(1) { -webkit-transition-delay:.3s; transition-delay:.3s; }
  .g-nav .g-nav-list > li:nth-child(2) { -webkit-transition-delay:.4s; transition-delay:.4s; }
  .g-nav .g-nav-list > li:nth-child(3) { -webkit-transition-delay:.5s; transition-delay:.5s; }
  .g-nav .g-nav-list > li:nth-child(4) { -webkit-transition-delay:.6s; transition-delay:.6s; }
  .g-nav .g-nav-list-sub  { -webkit-transition-delay:.8s; transition-delay:.8s;
  }
  .g-nav #baseMenu  { -webkit-transition-delay:.9s; transition-delay:.9s;
  }
  .g-nav .g-nav-sub { -webkit-transition-delay:1s; transition-delay:1s;
  }

  /* @footer
  ----------------------------------------------------------*/
  .g-footer-info,
  .g-footer-copy {
    flex-direction: column;
  }
  .g-footer-info-link {
    margin-bottom: 1.5em;
    justify-content: center;
  }
  .g-footer-info-link li + li {
    margin-left: 2.2rem;
  }
  .g-footer-copy .sns-icon_container_47ede870 {
    margin: 10px 0;
  }
  .g-footer-copy {
    align-items: center;
  }
  .sns-icon_container {
    margin-bottom: 10px;
  }

  /* @top
  ----------------------------------------------------------*/
  /* @top-pickup */
  .top-pickup-body .con_box {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
  }
  .top-pickup-body .con_box-txt {
    text-align: center;
  }

  .top-pickup-body .con_box-img {
    margin-left: 0;
  }
  .top-pickup-body .img_box {
    width: 100%;
    max-width: 100%;
    margin-top: 1em;
  }

  /* @top-item */
  .itemList .item {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 4.5%;
  }
  .itemList .item:nth-child(3n) {
    margin-right: 0;
  }

  .itemList .item .label_image {
    top: -12px;
    height: 50px;
    width: 50px;
  }

  /* @itemPage
  ----------------------------------------------------------*/
  .itemPage-wrap {
    margin-left: 10px;
    margin-right: 10px;
  }

  .item-detail-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .item-slider-container,
  .item-detail-purchase {
    width: 100%;
  }
  .item-detail-purchase {
    padding-left: 0;
    padding-right: 0;
  }

  .item-detail-purchase .itemTitle {
    margin-bottom: 1.8em;
    font-size: 1.25rem;
  }
  .item-detail-purchase .itemPrice .discountPrice__calcPrice {
    margin-top: .25em;
  }

  .itemDescription {
    padding: 3em 0;
  }

  /* @about
  ----------------------------------------------------------*/
  .about-body-con,
  .about-body-logo {
    width: 100%;
  }

  .guide-box h2 {
    margin-left: -20px;
    margin-right: -20px;
  }

}

/* @959px 〜 600px  */
@media screen and (max-width: 959px) and (min-width: 600px) {
  .itemList .item:nth-child(3n+1)::before {
    content: "";
    height: 80px;
  }
}

/* @599px 以下  */
@media screen and (max-width: 599px) {
  :root {
    --bg-stripe-size: 8px 8px;
  }


  /* @common
  ----------------------------------------------------------*/
  .lead_ttl {
    font-size: 1.15rem;
  }
  .subttl {
    font-size: 1.25rem;
  }

  .main-content-inner {
    padding-left: 10px;
    padding-right: 10px;
  }
  .main-content-inner-wrap {
    padding-top: 60px;
  }

  /* @top
  ----------------------------------------------------------*/
  .top-mv::after {
    top: 15px;
    bottom: 15px;
  }
  .main-slider .slick-slide {
    padding: 0;
  }
  .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }

  /* @top-concept */
  .top-concept {
    padding-top: 50px;
  }

  /* @top-pickup */
  .top-pickup-ttl {
    margin-left: -10px;
    margin-right: -10px;
    padding: 0 .75em .75em;
  }
  .top-pickup-ttl > .wrap {
    padding: 0 .5em .85em;
  }

  /* @top-item */
  .itemList {
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .itemList .item {
    width: 48%;
    margin-bottom: 16%;
    margin-right: 0;
    padding-top: 20px;
  }
  .itemList .item:nth-child(2n+1)::before {
    content: "";
    height: 60px;
  }

  /* @about
  ----------------------------------------------------------*/
  .about-body-con .lead {
    font-size: 1.2rem;
    text-align: justify;
  }

  .about-img {
    margin-bottom: 40px;
  }
  .about-img figure {
    width: 100%;
    margin-bottom: 5%;
  }

  .guide-box {
    padding-bottom: 0;
  }
  .guide-box h2 {
    padding-top: 60px;
    margin-left: -20px;
    margin-right: -20px;
  }

  /* @inquirySection
  ----------------------------------------------------------*/
  .inquirySection h1 {
    margin-bottom: 2.5em;
  }
  .inquirySection p {
    font-size: 1.15rem;
  }

  /* @law @privacy
  ----------------------------------------------------------*/
  #law h2,
  #privacy h2 {
    font-size: 1.35rem;
  }
  #privacy {
    font-size: 1rem;
  }

}
