@charset "UTF-8";
/*-----------------------

        変数

-----------------------*/
:root {
  --baseColor: #fff;
  --colorW: #fff;
  --mainColor: #000;
}

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;
  font-style: normal;
  /*font-weight: normal;*/
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

html {
  /*  overflow-y: scroll;*/
  -webkit-text-size-adjust: 100%; /* iphoneで文字サイズが変わる対策 */
  -ms-text-size-adjust: 100%;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

input, textarea {
  margin: 0;
  padding: 0;
}

input, label, textarea, button, select, option {
  font-family: inherit !important;
}

ol, ul {
  list-style: none;
}

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

caption, th {
  text-align: left;
}

a:focus {
  outline: none;
}

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px; /*¥*/ /*/
height: auto;
overflow: hidden;
/**/
}

.both {
  clear: both;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

/* ここからWordpress用初期設定 */
/* 本文中の画像 */
article img {
  border: none;
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin: 30px auto;
}

.alignright {
  float: right;
  margin-bottom: 30px;
  margin-left: 30px;
}

.alignleft {
  float: left;
  margin-bottom: 30px;
  margin-right: 30px;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  margin: 0;
  color: #666;
  font-size: 14px;
  text-align: center;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
  font-size: 62.5%;
  scroll-padding-top: 10rem;
}

p {
  margin: 0;
  text-align: justify;
}

a {
  text-decoration: none;
  color: var(--mainColor);
}

a:focus,
a:hover {
  opacity: 0.8;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

input,
textarea,
select,
button {
  font-family: inherit;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.text-c {
  text-align: center;
}

.text-l {
  text-align: left;
}

.text-r {
  text-align: right;
}

.text-j {
  text-align: justify;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

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,
button,
textarea,
select,
.entry input[type=url],
input[type=email],
.entry input[type=text] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

@media only screen and (max-width: 559px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
@media screen and (max-width: 559px) {
  /*セレクトボックスの矢印カスタマイズ*/
  .shelf-nav-sp {
    width: 100%;
    margin: 3rem auto 0;
    position: relative;
  }
  .shelf-nav-sp::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1rem 0.7rem 0 0.7rem;
    border-color: var(--mainColor) transparent transparent transparent;
    position: absolute;
    top: 55%;
    right: 1.5rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    pointer-events: none;
  }
  .breadcrumb.form-control {
    width: 100%;
    padding: 1rem;
    /*デフォルトの矢印を削除*/
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
  }
  /*サファリのフォームで入力時にズームしないようにする*/
  input,
  textarea,
  select {
    font-size: 20px;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  /* ボタンは小さくしないように */
  input[type=submit],
  input[type=button] {
    font-size: 16px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  /* プルダウンは小さくしないように */
  select {
    font-size: 20px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
object,
iframe,
pre,
code,
p,
blockquote,
form,
fieldset,
legend,
table,
th,
td,
caption,
tbody,
tfoot,
thead,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
audio,
video,
canvas {
  margin: 0;
  padding: 0;
}

article,
aside,
figure,
figcaption,
footer,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
}

a {
  color: #000;
  -webkit-font-smoothing: antialiased;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover,
a:active {
  text-decoration: none;
}

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

li {
  list-style: none;
}

fieldset {
  border: none;
}

input,
textarea,
select,
label {
  font-family: inherit;
  font-size: 100%;
  margin-bottom: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-top: 0;
  vertical-align: middle;
}

textarea {
  overflow: auto;
}

legend {
  display: none;
}

img {
  border: none;
  vertical-align: top;
}

object {
  outline: none;
  vertical-align: middle;
}

em,
strong {
  font-style: normal;
  font-weight: bold;
}

small {
  font-size: 100%;
}

abbr,
acronym {
  border: none;
  font-variant: normal;
}

.boxRight {
  float: right !important;
}

#i18 {
  z-index: 2005;
  left: 10px;
  position: fixed;
  top: calc(var(--information-banner-height, 0px) + 10px);
}

#i18 .lang {
  float: left;
  margin: 0 5px 0 0;
  position: relative;
}

#i18 .lang:before {
  background: url("{BASEURL}/img/shop/arrow.gif") no-repeat;
  background-size: 10px 7px;
  content: "";
  height: 7px;
  position: absolute;
  right: 13px;
  top: 12px;
  width: 10px;
}

#i18 .currency {
  float: left;
  position: relative;
}

#i18 .currency:before {
  background: url("{BASEURL}/img/shop/arrow.gif") no-repeat;
  background-size: 10px 7px;
  content: "";
  height: 7px;
  position: absolute;
  right: 13px;
  top: 12px;
  width: 10px;
}

#i18 select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
  color: #000;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  line-height: 18px;
  min-width: inherit;
  padding: 5px 25px 5px 10px;
  vertical-align: middle;
}

#privacy,
#law {
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Arial, Helvetica, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Meiryo", sans-serif;
  font-size: 1.4rem;
  line-height: 1.75;
  margin: 0 auto;
  padding: 3rem 4rem 4rem;
  text-align: left;
  width: 96rem;
  color: var(--mainColor);
}

#privacy h2,
#law h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 2rem 0 0;
  padding: 0 0 2rem;
}

#privacy h3,
#privacy dt {
  font-weight: bold;
  margin: 15px 0 8px;
}

#privacy .privacy_intro {
  margin: 0 0 20px;
}

#law h3 {
  font-weight: bold;
  margin: 20px 0 5px;
}

#law .law_attention {
  padding: 10px;
  margin-top: 12px;
  line-height: 1.5;
  background-color: #f8f9fa;
}

@media (min-width: 769px) {
  #law .law_attention {
    padding: 16px;
    margin-top: 16px;
    line-height: 1.6;
  }
}
#law .atobaraiTerm {
  margin: 20px 0;
}

#law .atobaraiTerm .atobaraiTerm__title {
  margin-bottom: 8px;
}

#law .atobaraiTerm .atobaraiTerm__body {
  padding-left: 20px;
}

#law .atobaraiTerm p {
  font-size: 100%;
  line-height: 1.5;
  margin: 0 0 10px;
}

.itemCb #cboxPrevious {
  background: url("{BASEURL}/i/controls.png") no-repeat 0 0;
  bottom: 0;
  height: 20px;
  left: 0;
  overflow: visible;
  text-indent: -9999px;
  width: 20px;
}

.itemCb #cboxNext {
  background: url("{BASEURL}/i/controls.png") no-repeat -22px 0;
  bottom: 0;
  height: 20px;
  left: 30px !important;
  overflow: visible;
  text-indent: -9999px;
  width: 20px;
}

.itemCb #cboxClose {
  background: url("{BASEURL}/i/controls.png") no-repeat -52px 0;
  height: 20px;
  overflow: visible;
  text-indent: -9999px;
  width: 20px;
}

.itemCb #cboxContent button {
  border: none;
}

.itemCb:focus {
  outline: none;
}

a.cboxElement:focus {
  outline: none;
}

.clearfix {
  zoom: 1;
}

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

.show {
  display: block !important;
}

.hide {
  display: none !important;
}

.overlayBackground {
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  display: none;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

#baseMenu {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  right: 10rem;
  top: 2.2rem;
  z-index: 2002;
}
@media only screen and (max-width: 559px) {
  #baseMenu {
    right: 8rem;
    top: 1.3rem;
  }
}

#baseMenu > ul > li {
  float: left;
  list-style: none;
}

#baseMenu > ul > li.base {
  margin: 0 10px 0 0;
}

#baseMenu > ul > li a {
  cursor: pointer;
  display: block;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
#baseMenu > ul > li a img {
  width: 4rem;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media only screen and (max-width: 559px) {
  #baseMenu > ul > li a img {
    width: 3rem;
  }
}

.cart {
  position: relative;
}

.cart-badge {
  display: block !important;
}

.cart-qty {
  position: absolute;
  top: 4px;
  right: 5px;
  padding: 0 1px;
  min-width: 14px;
  background: crimson;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  top: -0.5rem;
  right: -0.7rem;
  min-width: 1.4rem;
  font-size: 1rem;
  line-height: 1.6rem;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;
}

@font-face {
  font-family: "baseicon";
  font-style: normal;
  font-weight: normal;
  src: url("https://static.thebase.in/font/v1/baseicon.eot?317xhh");
  src: url("https://static.thebase.in/font/v1/baseicon.eot?317xhh#iefix") format("embedded-opentype"), url("https://static.thebase.in/font/v1/baseicon.ttf?317xhh") format("truetype"), url("https://static.thebase.in/font/v1/baseicon.woff?317xhh") format("woff"), url("https://static.thebase.in/font/v1/baseicon.svg?317xhh#baseicon") format("svg");
}
@font-face {
  font-family: "shopicon";
  font-style: normal;
  font-weight: normal;
  src: url("https://static.thebase.in/font/v1/shopicon.eot?317xhh");
  src: url("https://static.thebase.in/font/v1/shopicon.eot?317xhh#iefix") format("embedded-opentype"), url("https://static.thebase.in/font/v1/shopicon.ttf?317xhh") format("truetype"), url("https://static.thebase.in/font/v1/shopicon.woff?317xhh") format("woff"), url("https://static.thebase.in/font/v1/shopicon.svg?317xhh#baseicon") format("svg");
}
[class^=icon-],
[class*=" icon-"] {
  font-family: "baseicon" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
}

.icon-cart:before {
  content: "\e900";
}

.icon-search:before {
  content: "\e912";
}

.icon-information:before {
  content: "\e919";
}

.icon-tipi:before {
  content: "\e922";
}

.icon-pin:before {
  content: "\e929";
}

#reportBtn a.cboxElement button {
  cursor: pointer;
}

#fixedHeader ul li {
  float: left;
}

#fixedHeader li.topRightNavLi a {
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 1px 0 2px rgba(150, 150, 150, 0.4);
          box-shadow: 0 1px 0 2px rgba(150, 150, 150, 0.4);
  display: block;
  -webkit-font-smoothing: antialiased;
  margin: 1px 0 0;
  padding: 5px 15px;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

#fixedHeader li.topRightNavLi a:hover {
  -webkit-box-shadow: 0 0 0 1px rgba(150, 150, 150, 0.2);
          box-shadow: 0 0 0 1px rgba(150, 150, 150, 0.2);
  padding: 6px 15px 4px;
}

#fixedHeader li.topRightNavLi.base {
  margin: 0 10px 0 0;
}

.titleForSearchResult {
  font-size: 14px;
  font-weight: 400;
  margin: -20px auto 0;
  padding: 0 0 30px;
  text-align: center;
  width: 100%;
}

@media (min-width: 769px) {
  .titleForSearchResult {
    width: 96rem;
  }
}
body#shopTopPage .item .itemTitle {
  margin: 20px 0 5px;
  text-align: center;
}

body#shopTopPage .item a {
  color: #4d4d4d;
}

body#shopTopPage .item a .itemTitle h2 {
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin: 2px auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body#shopTopPage .item .itemImg {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  margin: auto;
  overflow: hidden;
  padding: 1px;
  vertical-align: middle;
}

body#shopTopPage .item:hover a {
  color: #ed4242;
}

body#shopTopPage .item .itemImg a {
  display: block;
  position: relative;
}

body#shopTopPage .item .itemImg a::before {
  content: "";
  display: block;
  padding-top: 100%;
}

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

body#shopTopPage .item .itemImg a .soldout_cover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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;
}

body#shopTopPage .item .itemImg a .soldout_cover p {
  color: #ed4242;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

body#shopTopPage .item .itemDetail .itemPrice {
  font-size: 10px;
  letter-spacing: 1px;
  text-align: center;
}

body#shopTopPage .item .itemDetail .discountPrice {
  color: #e75c5c;
  margin: 0;
}

body#shopTopPage .item .itemDetail .discountPrice__ratio {
  border: 1px solid #e75c5c;
  display: inline-block;
  font-size: 10px;
  font-weight: bold;
  line-height: 18px;
  margin-right: 5px;
  padding: 0 5px;
}

body#shopTopPage .item .itemDetail .discountPrice__calcPrice {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.8;
  white-space: nowrap;
}

body#shopTopPage .item .comingSoon {
  color: #11beae;
  font-size: 14px;
  margin-top: 8px;
}

body#shopTopPage .item .preOrder,
body#shopTopPage .item .lottery,
body#shopTopPage .item .takeout,
body#shopTopPage .item .community {
  border: 1px solid #252525;
  border-radius: 2px;
  color: #252525;
  display: inline-block;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 6px;
  margin-top: 6px;
}

body#shopTopPage .item .community {
  background-color: #f2bb31;
  border: 1px solid #f2bb31;
  color: #fff;
}

body#shopDetailPage #mainContent {
  background-color: #fff;
  margin-bottom: 50px;
}

body#shopDetailPage .itemImg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(100vw - 80px);
}

body#shopDetailPage .itemImgSlide {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

body#shopDetailPage #slideImg .imgBox {
  border-radius: 10px;
  text-align: center;
}

body#shopDetailPage #slideImg .imgBox img {
  width: 100%;
  vertical-align: middle;
}

body#shopDetailPage #slideImg .imgBox img.label_image {
  width: auto;
}

body#shopDetailPage #slideImgPager {
  float: left;
  overflow: hidden;
  width: 6.4rem;
  padding: 0 0 0 1rem;
}

body#shopDetailPage #slideImgPager li + li {
  margin-top: 1rem;
}

body#shopDetailPage #slideImgPager .smallImgBox {
  height: 6.4rem;
  line-height: 6.4rem;
  width: 6.4rem;
}

body#shopDetailPage #slideImgPager .smallImgBox img {
  vertical-align: middle;
  max-height: 6.4rem;
  width: 6.4rem;
  -o-object-fit: cover;
     object-fit: cover;
}

body#shopDetailPage #slideImgPager .mCSB_inside > .mCSB_container {
  margin: 0;
}

body#shopDetailPage #mainContent .purchase {
  border-bottom: dotted 1px #000;
  border-top: dotted 1px #000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body#shopDetailPage header h1.itemTitle {
  color: var(--mainColor);
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 3rem;
}

body#shopDetailPage #purchase_form {
  color: #000;
  margin-bottom: 3rem;
}

body#shopDetailPage #purchase_form select {
  cursor: pointer;
}

body#shopDetailPage #purchase_form #purchaseSelect {
  margin: 0;
}

body#shopDetailPage #purchase_form .purchaseElement {
  margin: 0.5rem 0 1.5rem;
  overflow: hidden;
}

body#shopDetailPage #purchase_form input,
body#shopDetailPage #purchase_form select {
  width: 100%;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}

body#shopDetailPage #purchase_form #itemSelect input::-webkit-input-placeholder {
  color: #cccccc;
  font-size: 1.4rem;
}

body#shopDetailPage #purchase_form #itemSelect input::-moz-placeholder {
  color: #cccccc;
  font-size: 1.4rem;
}

body#shopDetailPage #purchase_form #itemSelect input:-ms-input-placeholder {
  color: #cccccc;
  font-size: 1.4rem;
}

body#shopDetailPage #purchase_form #itemSelect input::-ms-input-placeholder {
  color: #cccccc;
  font-size: 1.4rem;
}

body#shopDetailPage #purchase_form #itemSelect input::placeholder {
  color: #cccccc;
  font-size: 1.4rem;
}

body#shopDetailPage #purchase_form label {
  line-height: 1em;
  display: block;
  font-size: 1.4rem;
  margin: 1.6rem 0 0.8rem 0;
}

body#shopDetailPage #purchase_form .itemOptionElement,
#variationSelectWrap {
  max-width: 100%;
}

body#shopDetailPage #purchase_form .itemOption__caption {
  line-height: 1.5em;
  display: block;
  font-size: 1.2rem;
  margin: 0.8rem 0 0.8rem 0;
}

body#shopDetailPage #purchase_form .itemOption__bottomCaptionBlock {
  overflow: hidden;
}

body#shopDetailPage #purchase_form .itemOption__caption--error {
  float: left;
  font-size: 1.2rem;
  line-height: 1em;
  display: block;
  color: #f07f7f;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

body#shopDetailPage #purchase_form .itemOption__count {
  float: right;
  font-size: 1.2rem;
  line-height: 1em;
  display: block;
  color: #777777;
}

body#shopDetailPage #purchase_form .itemOption__count--error {
  color: #f07f7f;
}

body#shopDetailPage #purchase_form #itemSelect .itemOption__input[data-dirty=true][data-has-error=true] {
  border: #f07f7f 1px solid;
}

body#shopDetailPage #purchase_form #itemSelect select.itemOption__select,
body#shopDetailPage #purchase_form #itemSelect #valiationSelect,
body#shopDetailPage #purchase_form #itemSelect #amountSelect {
  height: auto;
  white-space: normal;
  max-width: 100%;
  min-height: 2.1em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 1em;
  line-height: initial;
  background-repeat: no-repeat;
  background-position: right 0.35em center;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2210%22%20height%3D%226%22%20viewBox%3D%220%200%2010%206%22%3E%0A%20%20%3Cdefs%3E%0A%20%20%20%20%3Cstyle%3E%0A%20%20%20%20%20%20.cls-1%20%7B%0A%20%20%20%20%20%20%20%20fill%3A%20%23fafafa%3B%0A%20%20%20%20%20%20%20%20fill-rule%3A%20evenodd%3B%0A%20%20%20%20%20%20%20%20filter%3A%20url(%23filter)%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%3C%2Fstyle%3E%0A%20%20%20%20%3Cfilter%20id%3D%22filter%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2210%22%20height%3D%226%22%20filterUnits%3D%22userSpaceOnUse%22%3E%0A%20%20%20%20%20%20%3CfeFlood%20result%3D%22flood%22%20flood-color%3D%22%23333%22%20flood-opacity%3D%220.50%22%2F%3E%0A%20%20%20%20%20%20%3CfeComposite%20result%3D%22composite%22%20operator%3D%22in%22%20in2%3D%22SourceGraphic%22%2F%3E%0A%20%20%20%20%20%20%3CfeBlend%20result%3D%22blend%22%20mode%3D%22multiply%22%20in2%3D%22SourceGraphic%22%2F%3E%0A%20%20%20%20%3C%2Ffilter%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cpath%20id%3D%22icon-arrow-down%22%20class%3D%22cls-1%22%20d%3D%22M5%2C6l5-6H0Z%22%2F%3E%0A%3C%2Fsvg%3E");
}

body#shopDetailPage #purchase_form #amountSelect {
  width: auto;
  max-width: 375px;
}

body#shopDetailPage #purchase_form .purchaseElement label {
  color: #000;
  font-size: 1.4rem;
  margin-right: 1rem;
}

body#shopDetailPage .report {
  text-align: left;
}

body#shopDetailPage .report a {
  color: #aaa;
  display: block;
  font-size: 1.1rem;
  margin-right: 1.5rem;
  padding-top: 0.3rem;
  text-align: right;
}

body#shopDetailPage .report a:hover {
  text-decoration: underline;
}

body#shopDetailPage .itemPrice h2 {
  display: -ms-grid;
  display: grid;
  color: #262626;
  font-weight: normal;
  letter-spacing: 1px;
  text-align: left;
  gap: 3rem;
  margin: 3rem 0;
}

body#shopDetailPage .itemPrice h2 .price {
  display: -ms-grid;
  display: grid;
  gap: 0.8rem;
}

body#shopDetailPage .itemPrice h2 .price[data-proper] {
  gap: 1.2rem;
}

body#shopDetailPage .itemPrice h2 .price__row {
  white-space: nowrap;
}

body#shopDetailPage .itemPrice h2 .price__row > *:not(wbr) {
  display: inline-block;
  vertical-align: middle;
}

body#shopDetailPage .itemPrice h2 .price__row > span:not(:first-child) {
  margin-left: 0.4rem;
}

body#shopDetailPage .itemPrice h2 .price[data-proper] .price__row > span:not(:first-child) {
  margin-left: 0.8rem;
}

body#shopDetailPage .itemPrice h2 .price__discountRate {
  border: 1px solid #e75c5c;
  color: #e75c5c;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 17px;
  padding: 0 6px;
}

body#shopDetailPage .itemPrice h2 .price__label {
  font-weight: 400;
  line-height: 1.2;
}

body#shopDetailPage .itemPrice h2 .price__value {
  font-weight: 400;
  line-height: 1.2;
}

body#shopDetailPage .itemPrice h2 .price__mainLabel {
  font-size: 2rem;
}

body#shopDetailPage .itemPrice h2 .price__mainValue {
  font-size: 2.2rem;
}

body#shopDetailPage .itemPrice h2 .price__subLabel {
  font-size: 1.2rem;
}

body#shopDetailPage .itemPrice h2 .price__subValue {
  font-size: 1.4rem;
}

body#shopDetailPage .itemPrice h2 .price__properLabel {
  font-size: 1.4rem;
}

body#shopDetailPage .itemPrice h2 .price__properValue {
  font-size: 1.6rem;
}

body#shopDetailPage .itemPrice h2 .price__subProperLabel {
  font-size: 1.2rem;
}

body#shopDetailPage .itemPrice h2 .price__subProperValue {
  font-size: 1.4rem;
}

body#shopDetailPage .itemPrice h2 .price__value.price__value--proper {
  text-decoration: line-through;
}

body#shopDetailPage .itemPrice h2 .price__value.price__value--discount {
  color: #e75c5c;
}

body#shopDetailPage .itemPrice[data-soldout] h2 .price__value {
  text-decoration: line-through;
}

body#shopDetailPage .itemPrice h2 .price__tax {
  font-size: 1.2rem;
  color: #a0a7b4;
}

body#shopDetailPage .purchase .soldout {
  color: #ed4242;
  display: block;
  font-size: 1.6rem;
  margin-top: -2.2rem;
  margin-bottom: 2rem;
}

body#shopDetailPage .purchase .comingSoon {
  color: #11beae;
  font-size: 1.9rem;
  margin: 0 0 2rem;
}

body#shopDetailPage .preOrder,
body#shopDetailPage .lottery,
body#shopDetailPage .takeout,
body#shopDetailPage .community {
  margin: 1.6rem 0;
}

body#shopDetailPage .preOrder__label,
body#shopDetailPage .lottery__label,
body#shopDetailPage .takeout__label {
  border: 1px solid #252525;
  border-radius: 2px;
  color: #252525;
  display: inline-block;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0.4rem 0.6rem 0.4rem;
  margin: 0 0 0.4rem 0;
}

body#shopDetailPage .preOrder__data,
body#shopDetailPage .lottery__data {
  font-size: 12px;
  color: #252525;
  font-size: 1.2rem;
}

body#shopDetailPage .takeout .takeout__data {
  display: block;
  font-size: 1.2rem;
  margin-top: 0.4rem;
}

body#shopDetailPage .lottery > * {
  margin-bottom: 0.8rem;
}

body#shopDetailPage #itemAttention {
  font-size: 1.2rem;
  line-height: 1.5em;
  margin-bottom: 2.5rem;
  color: var(--mainColor);
}

body#shopDetailPage #itemAttention .attention a {
  color: var(--mainColor);
}

body#shopDetailPage #itemAttention .attention a:hover {
  text-decoration: underline;
}

body#shopDetailPage #itemAttention .attention.deliveryShortestDay {
  border: 1px solid #11beae;
  border-radius: 2px;
  color: #11beae;
  display: inline-block;
  font-weight: bold;
  width: 100%;
  font-size: 1rem;
  margin-bottom: 2.5rem;
  padding: 0.5rem;
  letter-spacing: 0;
}

body#shopDetailPage #itemAttention .attention.free {
  font-weight: bold;
}

body#shopDetailPage #itemAttention .attention.free .free__text {
  color: #11beae;
  font-weight: bold;
}

body#shopDetailPage #itemAttention .takeout__text {
  color: #252525;
  cursor: pointer;
  font-weight: bold;
  text-decoration: underline;
  margin: 0 0.3rem;
}

body#shopDetailPage #itemAttention .attention.salesPeriod--term {
  background: #ceefeb;
  border: 1px solid #11beae;
  color: #11beae;
  font-weight: bold;
  line-height: 1.7;
  font-size: 1.3rem;
  margin-bottom: 3.6rem;
  padding: 1rem;
}

body#shopDetailPage #itemAttention .attention.salesPeriod--willStart {
  background: #ceefeb;
  border: 1px solid #11beae;
  color: #11beae;
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 3rem;
  padding: 1rem;
}

body#shopDetailPage #itemAttention .attention.salesPeriod--finish {
  border: 1px solid #999;
  color: #999;
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 3.6rem;
  padding: 1rem;
}

body#shopDetailPage .itemDescription {
  margin: 6rem 0.7rem 2.4rem 0;
}

body#shopDetailPage .itemDescription p {
  line-height: 1.75;
}

body.shop #embedded-tag {
  font-size: 1.4rem;
  line-height: 2.4rem;
  padding: 2rem 0 0;
}

body#shopDetailPage #embedded-tag p {
  color: #000;
  margin: 0 0 0.5rem;
}

body#shopDetailPage #embedded-tag textarea {
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  color: #838383;
  padding: 0.5rem;
  width: 100%;
}

body#shopDetailPage #purchase_form .purchaseButton {
  margin: 3rem 0 0;
  text-align: center;
}

body#shopDetailPage #purchase_form .purchaseButton .purchaseButton__btn {
  background: #000;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  outline: none;
  padding: 1.4rem 0;
  text-align: center;
  text-decoration: none;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  width: 100%;
}

body#shopDetailPage #purchase_form .purchaseButton .purchaseButton__btn.purchaseButton__btn--outOfStock {
  color: #fff;
  background: #888;
}

body#shopDetailPage #purchase_form .purchaseButton .purchaseButton__btn:hover {
  cursor: pointer;
  opacity: 0.7;
}

body#shopDetailPage #purchase_form .purchaseButton .purchaseButton__btn.purchaseButton__btn--comingSoonStay:disabled {
  cursor: not-allowed;
  opacity: 1;
}

body#shopDetailPage #purchase_form .purchaseButton .purchaseButton__btn.purchaseButton__btn--comingSoonStay {
  background: #eeeeee;
  color: #999999;
  cursor: not-allowed;
  opacity: 1;
}

body#shopDetailPage #purchase_form .purchaseButton .purchaseButton__btn.purchaseButton__btn--notApplying:disabled {
  cursor: not-allowed;
  opacity: 1;
}

body#shopDetailPage #purchase_form .purchaseButton .purchaseButton__btn:disabled {
  background: #eeeeee;
  color: #999999;
  cursor: not-allowed;
  opacity: 1;
}

body#shopDetailPage #purchase_form .purchaseButton .purchaseButton__btn--disabled {
  background: #eeeeee;
  color: #999999;
  cursor: not-allowed;
  opacity: 1;
}

body#shopDetailPage #purchase_form .purchaseButton .purchaseButton__btn:disabled:hover {
  opacity: 1;
}

body#shopDetailPage #purchase_form .purchaseButton .purchaseButton__btn--disabled:hover {
  opacity: 1;
}

body#shopDetailPage .shareButtons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body#shopDetailPage .shareButtons > div {
  margin-right: 4px;
}

@media (min-width: 769px) {
  body#shopDetailPage #mainContent {
    padding: 8rem 6.5rem;
    width: 95rem;
  }
}
@media only screen and (min-width: 769px) and (max-width: 559px) {
  body#shopDetailPage #mainContent {
    width: 92%;
    padding: 3rem 2rem;
  }
}
@media (min-width: 769px) {
  body#shopDetailPage #mainContent .item {
    float: left;
    position: relative;
    width: 49.3rem;
  }
  body#shopDetailPage #mainContent .purchase {
    margin: 0 0 0 52rem;
    width: 28rem;
  }
  body#shopDetailPage header h1.itemTitle {
    font-size: 27px;
    margin-bottom: 55px;
    font-size: 2.7rem;
    margin-bottom: 5.5rem;
  }
  body#shopDetailPage #mainContent .item .itemImg {
    height: 400px;
    height: 40rem;
  }
  body#shopDetailPage #mainContent .item .itemImgSlide {
    float: left;
    width: 400px;
    width: 40rem;
  }
  body#shopDetailPage #mainContent .item .bx-wrapper {
    float: left;
    width: 400px;
    width: 40rem;
  }
  body#shopDetailPage #slideImg .imgBox {
    border-radius: 10px;
    height: 400px;
    line-height: 400px;
    text-align: center;
    width: 400px;
    height: 40rem;
    line-height: 40rem;
    width: 40rem;
  }
  body#shopDetailPage #slideImg .imgBox img {
    max-height: 400px;
    max-width: 400px;
    vertical-align: middle;
    -o-object-fit: contain;
       object-fit: contain;
    max-height: 40rem;
    min-width: 40rem;
  }
  body#shopDetailPage #slideImgPager {
    float: left;
    height: 400px;
    overflow: hidden;
    padding: 0 0 0 10px;
    width: 83px;
    height: 40rem;
    pad: 0 0 1rem;
    width: 8.3rem;
  }
}
#widget {
  margin: 0 !important;
}

#reportBtn {
  padding-bottom: 20px;
}

#twitter-widget-0 {
  width: 75px;
}

#twitter-widget-1 {
  width: 75px;
}

body.shop #mainFooter .footerMenu li .fb-like {
  margin-top: -5px;
}

.main {
  background: #fff;
  height: auto;
  margin: 0 auto;
  text-align: left;
  width: 96rem;
}
@media only screen and (max-width: 559px) {
  .main {
    padding: 3rem 2rem;
  }
}

.main #about {
  color: #535353;
  margin: 0 auto;
  padding: 8.5rem 0;
  width: 82rem;
}

.main #about h2 {
  color: #000;
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 24px;
  text-align: left;
  text-transform: uppercase;
}

@media (min-width: 769px) {
  .main #about h2 {
    font-size: 34px;
    margin-bottom: 60px;
  }
}
.main #about h3 {
  font-size: 28px;
}

.main #about p {
  font-size: 14px;
  line-height: 1.6em;
}

.main #about .social {
  margin: 40px 0 0;
  text-align: center;
  width: 100%;
}

.main #about .social > ul {
  display: inline-block;
}

.main #about .social ul li {
  float: left;
  margin-right: 15px;
}

.main #about .social ul li:last-child {
  margin-right: 0;
}

body.shop #mainFooter .footerMenu ul .social_btn {
  float: right;
  width: 215px;
}

body.shop #mainFooter .footerMenu ul .social_btn li {
  margin: 0;
}

body.shop #mainFooter .footerMenu ul .social_btn li.twitter {
  margin: -5px 0 0 0;
}

.inquirySection {
  padding: 60px;
}

.inquirySection h1 {
  color: #1a1a1a;
  font-size: 35px;
  letter-spacing: 3px;
  line-height: 35px;
  margin: 0 0 20px;
  text-align: left;
  text-transform: uppercase;
}

.inquirySection p {
  color: #000;
  font-size: 13px;
  line-height: 13px;
  text-align: left;
}

.inquirySection form {
  width: 100%;
}

@media (min-width: 769px) {
  .inquirySection form {
    margin: 40px auto 0;
    width: 652px;
  }
}
.inquirySection dl {
  text-align: left;
}

.inquirySection dl dt {
  color: #000;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 10px;
}

.inquirySection dl dt span {
  color: #fb7c8a;
  font-size: 11px;
  line-height: 11px;
  margin-left: 5px;
  vertical-align: baseline;
}

.inquirySection dl dd {
  margin-bottom: 20px;
}

.inquirySection dl dd input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #c4c4c4;
  border-radius: 5px;
  padding: 5px 10px;
  width: 100%;
}

.inquirySection dl dd textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #c4c4c4;
  border-radius: 5px;
  height: 135px;
  padding: 10px;
  width: 100%;
}

@media (min-width: 769px) {
  .inquirySection dl dd input {
    width: 630px;
  }
  .inquirySection dl dd textarea {
    width: 630px;
  }
}
@-moz-document url-prefix() {
  .inquirySection dl dd textarea {
    font-size: 11px;
  }
}
.inquirySection .control-panel input#buttonLeave {
  background-color: #000;
  border: none;
  color: #ccc;
  display: inherit;
  font-size: 12px;
  -webkit-font-smoothing: antialiased;
  font-weight: bold;
  letter-spacing: 5px;
  margin: 55px auto 0;
  padding: 14px 0;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  width: 290px;
}

.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;
}

#inquiryConfirmSection p {
  color: #000;
  font-size: 13px;
  line-height: 13px;
}

#inquiryConfirmSection dd {
  font-size: 12px;
  padding-left: 15px;
}

#inquiryCompleteSection p {
  line-height: 1.4em;
  margin: 30px 0 0;
}

#inquiryCompleteSection a {
  background-color: #000;
  color: #ccc;
  display: block;
  font-size: 12px;
  -webkit-font-smoothing: antialiased;
  font-weight: bold;
  letter-spacing: 5px;
  margin: 35px auto 0;
  padding: 14px 0;
  text-align: center;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  width: 290px;
}

#inquiryCompleteSection a:hover {
  -ms-filter: "alpha(opacity=70)";
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}

@media (max-width: 769px) {
  .main,
  #privacy,
  #law {
    width: 92%;
    margin: 0 auto;
    padding: 3rem 2rem;
  }
  .main #about,
  .main .inquirySection {
    width: 100%;
    padding: 0;
  }
}
.template #category-menu {
  display: block;
}

.template #category-menu span {
  cursor: pointer;
}

.template #category-menu .category-list {
  display: none;
}

.template #category-menu:hover .category-list {
  display: block;
  padding: 20px 0 0;
  position: absolute;
  z-index: 9999;
}

.template #category-menu .category-list ul {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  -webkit-box-shadow: 0 1px 3px rgb(100, 100, 100);
          box-shadow: 0 1px 3px rgb(100, 100, 100);
  cursor: pointer;
  margin: 0;
  max-width: 250px;
  padding: 10px;
}

.template #category-menu .category-list ul li {
  border: none;
  float: none;
  height: auto;
  line-height: 26px;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: left;
  width: 100%;
}

.template #category-menu .category-list ul li a {
  display: inline;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 1px;
  line-height: 18px;
  white-space: nowrap;
}

.template #category-menu .category-list ul li a:hover {
  border-bottom: none;
  text-decoration: underline;
}

body.shop #shopHeader nav ul#appsItemCategoryTag {
  display: block;
}

body.template #category-menu span {
  display: block;
  -webkit-font-smoothing: antialiased;
  padding: 10px;
  text-transform: uppercase;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

body.template #category-menu:hover .category-list ul {
  border: inherit;
  border-radius: inherit;
  padding: 0;
}

body.template #category-menu:hover .category-list ul li:before {
  padding-top: 15px;
}

body.template #category-menu:hover .category-list ul li:after {
  padding-bottom: 15px;
}

body.template #category-menu:hover .category-list ul li:hover {
  background-color: #b3b3b3;
  border-bottom: none;
  height: auto;
}

body.template #category-menu:hover .category-list ul li a {
  display: block;
  margin: 0;
  max-width: 250px;
  overflow: hidden;
  padding: 10px 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.template #category-menu:hover .category-list ul li a:hover {
  text-decoration: none;
}

.template #category-menu .appsItemCategoryTag_child .appsItemCategoryTag_lowerchild {
  display: none;
}

@media (min-width: 769px) {
  .template #category-menu .appsItemCategoryTag_child .appsItemCategoryTag_lowerchild {
    display: none;
    left: 99%;
    position: absolute;
    top: 0;
    z-index: -1;
  }
  .template #category-menu .appsItemCategoryTag_lowerchild:hover,
  .template #category-menu .appsItemCategoryTag_child:hover .appsItemCategoryTag_lowerchild {
    display: block;
  }
}
.categoryTitle01 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.1;
  margin: 38px 0 0;
  text-align: center;
}

.childCategoryList01 {
  padding: 17px 0 0;
  text-align: center;
}

.childCategoryList01_child {
  display: inline-block;
  font-size: 14px;
  letter-spacing: -0.4em;
}

.childCategoryList01_link {
  display: inline-block;
  letter-spacing: normal;
  line-height: 2;
  padding: 0 15px;
}

.childCategoryList01_link:hover {
  text-decoration: underline;
}

body.template .etc-menu span {
  display: block;
  -webkit-font-smoothing: antialiased;
  text-transform: uppercase;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

#appsItemDetailCustom #appsItemDetailCustomTag .appsItemDetailCustomTag_description {
  font-size: 13px;
}

@media (max-width: 768px) {
  .main .communityMain {
    width: 100%;
    padding: 0;
  }
  .main .communityMain .communityTitle {
    font-size: 18px;
  }
  .main .communityMain #limitedItem,
  .main .communityMain #limitedUrl {
    width: 100%;
  }
  .main .communityMain .communityItems,
  .main .communityMain #productsLimitedUrl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .main .communityMain .communityItems .communityItem {
    width: 31%;
    margin: 0 0 12px 0;
  }
  .main .communityMain .communityItems .communityItem .communityImageContainer {
    position: relative;
    width: 100%;
    height: auto;
  }
  .main .communityMain .communityItems .communityItem .communityImageContainer::before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .main .communityMain .communityItems .communityItem .communityImageContainer .communityImageResize {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .main .communityMain #productsLimitedUrl .urlBox {
    width: 44%;
    margin: 0 0 12px 0 !important;
  }
}
@media (max-width: 480px) {
  .main .communityMain .communityContent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main .communityMain .communityContent .communityOverview,
  .main .communityMain .communityContent .communityNav {
    width: 100%;
    margin: 0;
  }
  .main .communityMain .communityItems .communityItem {
    width: 49%;
  }
  .main .communityMain #productsLimitedUrl .urlBox {
    width: 100%;
    margin: 0 0 12px 0 !important;
  }
}
.item {
  width: 100%;
}

body#shopTopPage .item .itemImg {
  width: 30rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 2rem;
}

body#shopTopPage .item .itemTitle {
  margin: 0 0 0.5rem;
  text-align: left;
  color: var(--colorW);
  font-size: 2rem;
}

body#shopTopPage .item a .itemTitle h2 {
  font-size: 2rem;
  line-height: 1.3;
  white-space: normal;
}
@media only screen and (max-width: 559px) {
  body#shopTopPage .item a .itemTitle h2 {
    font-size: 1.6rem;
  }
}

body#shopTopPage .item .itemDetail .itemPrice {
  font-size: 2rem;
  text-align: left;
  color: var(--colorW);
  font-weight: 500;
}
@media only screen and (max-width: 559px) {
  body#shopTopPage .item .itemDetail .itemPrice {
    font-size: 1.6rem;
  }
}

body#shopTopPage .item .itemImg img.image-resize {
  -o-object-fit: cover;
     object-fit: cover;
}

body#shopDetailPage #purchase_form .purchaseButton .purchaseButton__btn,
#reportBtn {
  display: none;
}

body#shopDetailPage .itemDescription {
  color: var(--mainColor);
  font-size: 1.4rem;
  margin: 6rem 0 2.4rem 0;
}

body#shopDetailPage .shareButtons {
  display: none;
}

@media only screen and (max-width: 559px) {
  .mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCSB_scrollTools .mCSB_dragger, .mCSB_scrollTools {
    display: none !important;
  }
}
body#shopDetailPage #purchase_form #itemSelect select.itemOption__select, body#shopDetailPage #purchase_form #itemSelect #valiationSelect, body#shopDetailPage #purchase_form #itemSelect #amountSelect {
  height: 4rem;
  min-height: 4rem;
}

select {
  font-size: 1.6rem !important;
}

body {
  width: 100%;
  color: var(--baseColor);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  margin: 0;
}

.container,
.wrapper {
  max-width: 100rem;
  padding: 0 2rem;
  margin: 0 auto;
  min-height: auto;
}
@media only screen and (max-width: 1369px) {
  .container,
  .wrapper {
    width: 100%;
    padding: 0 6rem;
  }
}
@media only screen and (max-width: 559px) {
  .container,
  .wrapper {
    padding: 0 4rem;
  }
}

.noto {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
}

.corm {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

html {
  font-size: 0.7320644217vw;
}
@media only screen and (max-width: 559px) {
  html {
    font-size: 2.6666666667vw;
  }
}

.sec__pb {
  padding-bottom: 20rem;
}
@media only screen and (max-width: 559px) {
  .sec__pb {
    padding-bottom: 10rem;
  }
}
.sec__mb {
  margin-bottom: 24rem;
}
@media only screen and (max-width: 559px) {
  .sec__mb {
    margin-bottom: 12rem;
  }
}

:root {
  --hdr-h: 0px;
}

.o-hamburger {
  width: 100%;
  height: 100vh;
  position: fixed;
  overflow: auto;
  top: 0;
  right: -100%;
  z-index: 9000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  padding: 3rem 3.5rem;
  background-image: url("/images/bg.webp");
  background-repeat: repeat-y;
}
@media only screen and (max-width: 559px) {
  .o-hamburger {
    padding: 6rem 0 2rem;
  }
}
.o-hamburger__btn {
  cursor: pointer;
  position: fixed;
  right: 2rem;
  z-index: 9999;
  top: 3rem;
}
.o-hamburger__wrap {
  width: 50rem;
  margin-inline: auto;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 559px) {
  .o-hamburger__wrap {
    width: 100%;
    padding-inline: 2.5rem;
    top: inherit;
    -webkit-transform: inherit;
            transform: inherit;
  }
}
.o-hamburger__logo {
  text-align: center;
  margin-bottom: 5.5rem;
}
.o-hamburger__shop {
  margin-bottom: 5rem;
}
.o-hamburger__shoplink {
  background-color: var(--colorW);
  color: var(--mainColor);
  font-size: 1.8rem;
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 8rem;
  border-radius: 0.5rem;
  margin-inline: auto;
  font-weight: 500;
}
@media only screen and (max-width: 559px) {
  .o-hamburger__shoplink {
    width: 100%;
  }
}
.o-hamburger__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 6rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 6rem;
}
@media only screen and (max-width: 559px) {
  .o-hamburger__list {
    gap: 0 3rem;
  }
}
.o-hamburger__item {
  padding-bottom: 2rem;
  border-bottom: 2px solid;
  margin-bottom: 2rem;
  text-align: center;
}
.o-hamburger__link {
  color: var(--colorW);
}

html.is-open .o-hamburger {
  right: 0;
  visibility: visible;
  opacity: 1;
  top: 0;
  pointer-events: all;
}

.is-open .overlay {
  opacity: 1;
  visibility: visible;
  z-index: 100;
}

html.is-open {
  overflow: hidden;
  height: 100%;
}
html.is-open::-webkit-scrollbar {
  display: none;
}

/*------------------------------------
  メニュークリック後メニュー外の背景 ↓
  ------------------------------------*/
.overlay {
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  visibility: hidden;
  width: 100vw;
  pointer-events: none;
}

/* ボタン全体の設定 */
.o-hamburger__btn {
  position: fixed;
  width: 4rem;
  height: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  top: 3rem;
  right: 3rem;
}
@media only screen and (max-width: 559px) {
  .o-hamburger__btn {
    top: 1.5rem;
    right: 1.5rem;
  }
}

/* 線のスタイル */
.o-hamburger__icon {
  visibility: visible;
  width: 4rem;
  height: 2px;
  background-color: var(--colorW);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  border-radius: 50%;
}

html.is-open .o-hamburger__icon {
  -webkit-transform: rotate(45deg) translate(1.1rem, 1rem);
          transform: rotate(45deg) translate(1.1rem, 1rem);
  background-color: var(--colorW);
}
html.is-open .o-hamburger__icon:nth-child(2) {
  -webkit-transform: rotate(-45deg) translate(0.7rem, -0.5rem);
          transform: rotate(-45deg) translate(0.7rem, -0.5rem);
  background-color: var(--colorW);
}
html.is-open .o-hamburger__icon:last-child {
  display: none;
}

.primary-ttl {
  text-align: center;
  font-size: clamp(3rem, calc(2.4174757282rem + 1.5533980583vw), 5.4rem);
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-top: -5rem;
  margin-bottom: 2rem;
  z-index: 100;
  position: relative;
  line-height: 1.3;
}
@media only screen and (max-width: 559px) {
  .primary-ttl {
    margin-top: -2.5rem;
    margin-bottom: 1rem;
  }
}
.primary-ttl--large {
  margin-top: 7.5rem;
}
@media only screen and (max-width: 559px) {
  .primary-ttl--large {
    margin-top: 2rem;
  }
}
.primary-ttl__area {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 5.5rem;
  text-align: center;
}
@media only screen and (max-width: 559px) {
  .primary-ttl__area {
    margin-bottom: 2rem;
  }
}
.primary-ttl__en {
  text-align: center;
  opacity: 0.15;
  font-family: var(--corm);
  font-size: clamp(4.8rem, calc(3.1009708738rem + 4.5307443366vw), 11.8rem);
  line-height: 1;
  font-weight: 400;
}
.primary-ttl__en--large {
  font-size: clamp(5.4rem, calc(1.686407767rem + 9.9029126214vw), 20.7rem);
  opacity: 0.2;
}
.primary-ttl__img {
  margin-inline: auto;
  display: block;
}
@media only screen and (max-width: 559px) {
  .primary-ttl__img {
    width: 14.7rem;
    height: 1.7rem;
  }
}

.secondary-ttl {
  text-align: center;
  font-size: clamp(3rem, calc(2.4174757282rem + 1.5533980583vw), 5.4rem);
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-top: -7rem;
  line-height: 1;
  position: relative;
}
@media only screen and (max-width: 559px) {
  .secondary-ttl {
    margin-top: -4rem;
    margin-bottom: 0.5rem;
  }
}
.secondary-ttl__area {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 7.5rem;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 559px) {
  .secondary-ttl__area {
    margin-bottom: 3rem;
  }
}
.secondary-ttl__area img {
  width: 29rem;
  height: 17.5rem;
}
@media only screen and (max-width: 559px) {
  .secondary-ttl__area img {
    width: 16rem;
    height: 9.6rem;
  }
}
.secondary-ttl__en {
  text-align: center;
  color: var(--base50Color);
  font-family: var(--corm);
  font-size: clamp(2rem, calc(1.6116504854rem + 1.0355987055vw), 3.6rem);
  letter-spacing: 0.05em;
}
.secondary-ttl__text {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 2rem;
  z-index: 100;
  text-align: center;
  font-size: 2rem;
  font-size: clamp(1.6rem, calc(1.5029126214rem + 0.2588996764vw), 2rem);
}
@media only screen and (max-width: 559px) {
  .secondary-ttl__text {
    top: 0.5rem;
  }
}
.secondary-ttl__text span.pink {
  font-size: 2.6rem;
  font-size: clamp(2rem, calc(1.854368932rem + 0.3883495146vw), 2.6rem);
}
.secondary-ttl__text span.small {
  font-size: 1.3rem;
  font-size: clamp(1rem, calc(0.927184466rem + 0.1941747573vw), 1.3rem);
  display: block;
}

.tertiary-ttl {
  text-align: center;
  font-size: clamp(2.4rem, calc(1.9631067961rem + 1.1650485437vw), 4.2rem);
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1;
  margin-block: 1.5rem;
}
@media only screen and (max-width: 559px) {
  .tertiary-ttl {
    margin-bottom: 1rem;
  }
}
.tertiary-ttl__area {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 559px) {
  .tertiary-ttl__area {
    margin-bottom: 2rem;
  }
}
.tertiary-ttl__en {
  text-align: center;
  color: var(--mainColor);
  font-family: var(--corm);
  font-size: clamp(1.2rem, calc(1.0300970874rem + 0.4530744337vw), 1.9rem);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 559px) {
  .tertiary-ttl__en {
    margin-bottom: 1rem;
  }
}
.tertiary-ttl__img {
  margin-inline: auto;
  display: block;
}
@media only screen and (max-width: 559px) {
  .tertiary-ttl__img--mark {
    width: 3rem;
    height: 1.8rem;
  }
}
.tertiary-ttl__img--border {
  width: 4.9rem;
  height: 0.4rem;
}

.quaternary-ttl {
  font-size: 4.2rem;
  font-size: clamp(2.4rem, calc(1.9631067961rem + 1.1650485437vw), 4.2rem);
  letter-spacing: 0.05em;
  font-weight: 500;
  color: var(--mainColor);
}
.quaternary-ttl span {
  font-size: clamp(1.8rem, calc(1.4601941748rem + 0.9061488673vw), 3.2rem);
}
.quaternary-ttl__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 559px) {
  .quaternary-ttl__area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
}
.quaternary-ttl__en {
  font-size: clamp(1.3rem, calc(1.0815533981rem + 0.5825242718vw), 2.2rem);
  letter-spacing: 0.05em;
  font-family: var(--corm);
  color: var(--subColor);
}
.quaternary-ttl__en span {
  font-size: clamp(1.8rem, calc(1.4601941748rem + 0.9061488673vw), 3.2rem);
  padding-right: 1rem;
}
@media only screen and (max-width: 559px) {
  .quaternary-ttl__en span {
    padding-right: 0;
  }
}

.quinary-ttl {
  color: var(--mainColor);
  text-align: center;
  font-size: 5.8rem;
  font-size: clamp(3rem, calc(2.3203883495rem + 1.8122977346vw), 5.8rem);
  position: relative;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 559px) {
  .quinary-ttl {
    margin-bottom: 1rem;
  }
}
.quinary-ttl__area {
  text-align: center;
  margin-bottom: 5.5rem;
}
@media only screen and (max-width: 559px) {
  .quinary-ttl__area {
    margin-bottom: 3rem;
  }
}
.quinary-ttl__area img:last-child {
  height: 0.5rem;
  width: auto;
}
.quinary-ttl__en {
  text-align: center;
  font-size: clamp(1.4rem, calc(1.2786407767rem + 0.3236245955vw), 1.9rem);
  margin-bottom: 1rem;
  line-height: 1;
}
@media only screen and (max-width: 559px) {
  .quinary-ttl__en {
    margin-bottom: -1rem;
  }
}
.quinary-ttl__img {
  margin-bottom: 2.4rem;
}
@media only screen and (max-width: 559px) {
  .quinary-ttl__img {
    width: 7rem;
    height: 5rem;
    margin-bottom: 1rem;
  }
}

.senary-ttl {
  text-align: center;
  font-size: clamp(2.4rem, calc(2.0601941748rem + 0.9061488673vw), 3.8rem);
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-top: -3rem;
  z-index: 100;
  position: relative;
  line-height: 1.3;
}
@media only screen and (max-width: 559px) {
  .senary-ttl {
    margin-top: -1.5rem;
  }
}
.senary-ttl__area {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 5.5rem;
  text-align: center;
}
@media only screen and (max-width: 559px) {
  .senary-ttl__area {
    margin-bottom: 3rem;
  }
}
.senary-ttl__en {
  text-align: center;
  opacity: 0.15;
  font-family: var(--corm);
  font-size: clamp(3.2rem, calc(2.0349514563rem + 3.1067961165vw), 8rem);
  line-height: 1;
  font-weight: 400;
}
.senary-ttl__img {
  text-align: center;
}

.primary-ttl__area--course-schedule {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 559px) {
  .primary-ttl__area--course-schedule {
    margin-bottom: 2.5rem;
  }
}

.o-btn {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.o-btn__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--colorW);
  gap: 4rem;
  border: 1px solid;
  width: 21rem;
  height: 5rem;
  font-size: 1.4rem;
}
.o-btn__link img {
  width: 2.8rem;
  height: auto;
}

.o-card {
  display: -ms-grid;
  display: grid;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 559px) {
  .o-card {
    margin-bottom: 2.5rem;
  }
}
.o-card--2wrap {
  -ms-grid-columns: 1fr 6rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
}
.o-card--3wrap {
  -ms-grid-columns: 1fr 4rem 1fr 4rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media only screen and (max-width: 559px) {
  .o-card--3wrap {
    -ms-grid-columns: 1fr 2rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.o-card--4wrap {
  -ms-grid-columns: 1fr 3rem 1fr 3rem 1fr 3rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.5rem 3rem;
}
@media only screen and (max-width: 559px) {
  .o-card--4wrap {
    -ms-grid-columns: calc((100% - 2rem) / 2) 2rem calc((100% - 2rem) / 2);
    grid-template-columns: calc((100% - 2rem) / 2) calc((100% - 2rem) / 2);
    gap: 2rem;
  }
}
.o-card__list {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem 2rem;
  margin-top: -1.5rem;
  position: relative;
}
@media only screen and (max-width: 559px) {
  .o-card__list {
    margin-top: -1rem;
    margin-bottom: 0.8rem;
  }
}
.o-card__listitem {
  background-color: var(--sub80Color);
  color: var(--colorW);
  padding: 0.5rem 1.5rem;
  border-radius: calc(infinity * 1px);
  max-width: 19em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
  font-size: clamp(1.1rem, calc(1.027184466rem + 0.1941747573vw), 1.4rem);
}
@media only screen and (max-width: 559px) {
  .o-card__listitem {
    padding: 0.3rem 1rem;
    max-width: 13em;
    gap: 0.3rem 0.5rem;
  }
}
.o-card__ttl {
  font-size: clamp(1.2rem, calc(1.1029126214rem + 0.2588996764vw), 1.6rem);
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  margin-bottom: 1em;
  min-height: 4.6rem;
}
@media only screen and (max-width: 559px) {
  .o-card__ttl {
    -webkit-line-clamp: 3;
    line-clamp: 3;
    min-height: auto;
    margin-bottom: 1rem;
  }
}
.o-card__date {
  color: var(--mainColor);
  font-family: var(--corm);
  font-size: clamp(1.2rem, calc(1.0058252427rem + 0.5177993528vw), 2rem);
  line-height: 1;
}
.o-card__img {
  border-radius: 1rem;
  aspect-ratio: 308/176;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.o-square__figure img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
  width: 100%;
}

.o-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6rem;
}
.o-flex--c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.o-flex--b {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.o-flex--e {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.o-flex__item {
  width: calc((100% - 6rem) / 2);
}
.o-flex__item--1 {
  width: calc((100% - 6rem) / 3);
}
.o-flex__item--2 {
  width: calc((100% - 6rem) / 3 * 2);
}

.l-hdr {
  position: fixed;
  z-index: 1000;
  width: 100%;
}
.l-hdr__inner {
  padding: 3rem 3.5rem 0;
}
@media only screen and (max-width: 559px) {
  .l-hdr__inner {
    padding: 1.5rem 1.5rem 0;
  }
}
.l-hdr__logo img {
  width: 14.5rem;
  height: auto;
}
@media only screen and (max-width: 559px) {
  .l-hdr__logo img {
    width: 12rem;
    vertical-align: top;
  }
}
.l-hdr__nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  position: absolute;
  right: 3.3rem;
}
@media only screen and (max-width: 559px) {
  .l-hdr__nav {
    display: none;
  }
}
.l-hdr__navitem:not(:last-child) {
  border-bottom: 2px solid;
}
.l-hdr__navlink {
  color: var(--colorW);
  font-size: 1.8rem;
  font-weight: 500;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  padding-inline: 1.5rem;
}

.l-ftr {
  background-color: var(--colorW);
  padding: 2rem 0;
}
.l-ftr__copy {
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--mainColor);
  font-weight: 700;
}
.l-ftr__inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  font-size: 1.4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 559px) {
  .l-ftr__inner ul {
    font-size: 1.2rem;
  }
}

.mv__visu {
  position: relative;
  height: 100svh;
}
.mv__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width: 559px) {
  .mv__text {
    width: 100%;
    text-align: center;
    top: 31%;
  }
}
.mv__text img {
  width: 71.8rem;
  height: auto;
}
@media only screen and (max-width: 559px) {
  .mv__text img {
    width: 34rem;
  }
}
.mv__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bg__wrap {
  padding-top: 15rem;
  background-image: url("https://xs042290.xsrv.jp/jamkoubou/assets/images/bg3.webp");
}

.concept {
  margin-bottom: 18.5rem;
  position: relative;
}
@media only screen and (max-width: 559px) {
  .concept {
    margin-bottom: 9rem;
  }
}
.concept__figure {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 559px) {
  .concept__figure {
    position: static;
    text-align: center;
  }
}
.concept__img {
  width: 42rem;
  height: auto;
}
@media only screen and (max-width: 559px) {
  .concept__img {
    width: calc(100% - 8rem);
  }
}
@media only screen and (max-width: 559px) {
  .concept__ttl {
    text-align: center;
  }
}
.concept__ttl img {
  width: 21.5rem;
  height: auto;
}
@media only screen and (max-width: 559px) {
  .concept__ttl img {
    width: 17.5rem;
  }
}
.concept__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 14rem;
}
@media only screen and (max-width: 559px) {
  .concept__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5.5rem;
  }
}
.concept__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-top: 21rem;
}
@media only screen and (max-width: 559px) {
  .concept__cont {
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.concept__subttl {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 3rem;
  line-height: 1;
  margin-left: 4rem;
}
@media only screen and (max-width: 559px) {
  .concept__subttl {
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    font-size: 2.8rem;
    line-height: 1.0714285714;
    text-align: center;
    margin-left: 0;
  }
}
.concept__textarea {
  margin-top: 4rem;
}
@media only screen and (max-width: 559px) {
  .concept__textarea {
    margin: 3rem 0 3.5rem;
  }
}
.concept__text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 2.2222222222;
}
@media only screen and (max-width: 559px) {
  .concept__text {
    font-size: 1.6rem;
    line-height: 1.5625;
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
  }
}

@media only screen and (max-width: 559px) {
  .mono {
    margin-bottom: 10rem;
  }
}
@media only screen and (max-width: 559px) {
  .mono__ttl {
    text-align: center;
    margin-bottom: 6rem;
  }
}
.mono__ttl img {
  width: 22rem;
  height: auto;
}
@media only screen and (max-width: 559px) {
  .mono__ttl img {
    width: 18rem;
  }
}
.mono__wrap {
  padding-inline: 6rem;
}
@media only screen and (max-width: 559px) {
  .mono__wrap {
    padding: 0;
  }
}
.mono__img {
  width: 41rem;
  height: auto;
}
@media only screen and (max-width: 559px) {
  .mono__img {
    width: 100%;
  }
}
.mono__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -18.5rem;
}
@media only screen and (max-width: 559px) {
  .mono__flex {
    gap: 3.5rem;
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.mono__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.5rem;
}
@media only screen and (max-width: 559px) {
  .mono__item {
    gap: 3.5rem;
  }
}
.mono__item--01 {
  padding-top: 33.5rem;
}
@media only screen and (max-width: 559px) {
  .mono__item--01 {
    padding-top: 0;
  }
}

.tax {
  margin-top: -9rem;
  margin-bottom: 18.5rem;
}
@media only screen and (max-width: 559px) {
  .tax {
    margin-top: 0;
    margin-bottom: 10rem;
  }
}
@media only screen and (max-width: 559px) {
  .tax__ttl {
    text-align: center;
  }
}
.tax__ttl img {
  width: 19.9rem;
  height: auto;
}
@media only screen and (max-width: 559px) {
  .tax__ttl img {
    width: 16.3rem;
  }
}
.tax__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 16.5rem;
}
@media only screen and (max-width: 559px) {
  .tax__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5rem;
  }
}
.tax__cont {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  margin-top: 30rem;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin-bottom: 10.5rem;
}
@media only screen and (max-width: 559px) {
  .tax__cont {
    margin-top: 0;
    margin-bottom: 3.5rem;
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
  }
}
.tax__text {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 2.2222222222;
  font-weight: 400;
}
@media only screen and (max-width: 559px) {
  .tax__text {
    font-size: 1.6rem;
    line-height: 1.5625;
  }
}
.tax__subttl {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  display: inline-block;
  border: 1px solid;
  padding: 0.5rem 0.2rem;
  margin-block: 5rem 2rem;
}
@media only screen and (max-width: 559px) {
  .tax__subttl {
    font-size: 1.6rem;
    margin-block: 2rem;
    padding: 0.2rem 0.5rem;
  }
}
.tax__ex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 7.5rem;
}
@media only screen and (max-width: 559px) {
  .tax__ex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.tax__figure {
  margin-bottom: 2.5rem;
}
.tax__img--01 {
  width: 30rem;
  height: auto;
}
.tax__item {
  text-align: center;
}
.tax__item--01 {
  margin-top: 17rem;
}
@media only screen and (max-width: 559px) {
  .tax__item--01 {
    margin-top: 0;
  }
}
.tax__name {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 559px) {
  .tax__name {
    font-size: 2.4rem;
  }
}
.tax__infofigure {
  width: 22rem;
}
@media only screen and (max-width: 559px) {
  .tax__infofigure {
    width: 15rem;
    margin-inline: auto;
  }
}
.tax__photo {
  width: 22rem;
  height: auto;
}
@media only screen and (max-width: 559px) {
  .tax__photo {
    width: 15rem;
  }
}
.tax__role {
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  margin-top: 2rem;
}
@media only screen and (max-width: 559px) {
  .tax__role {
    font-size: 1.6rem;
    line-height: 1.625;
  }
}
.tax__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
}
@media only screen and (max-width: 559px) {
  .tax__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 4.5rem;
  }
}
.tax__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-top: 5.5rem;
}
@media only screen and (max-width: 559px) {
  .tax__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
  }
}
.tax__infottl {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 3rem;
  line-height: 1;
  margin-left: 3rem;
}
@media only screen and (max-width: 559px) {
  .tax__infottl {
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    margin-left: 0;
    text-align: center;
    font-size: 2.8rem;
    line-height: 1.2857142857;
  }
}
.tax__infotextarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 559px) {
  .tax__infotextarea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.tax__infotext {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  line-height: 2.2222222222;
  margin-top: 4.5rem;
}
@media only screen and (max-width: 559px) {
  .tax__infotext {
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 1.5625;
  }
}
@media only screen and (max-width: 559px) {
  .tax__infotext:not(:first-child) {
    margin-top: 2rem;
  }
}
.tax__infotext:not(:last-child) {
  margin-left: 4rem;
}
@media only screen and (max-width: 559px) {
  .tax__infotext:not(:last-child) {
    margin-left: 0;
  }
}

.work {
  margin-bottom: 18rem;
}
@media only screen and (max-width: 559px) {
  .work {
    margin-bottom: 7.5rem;
  }
}
@media only screen and (max-width: 559px) {
  .work__ttl {
    text-align: center;
    margin-bottom: 6rem;
  }
}
.work__ttl img {
  width: 21.1rem;
  height: auto;
}
@media only screen and (max-width: 559px) {
  .work__ttl img {
    width: 17.3rem;
  }
}
.work__wrap {
  padding-inline: 6rem;
}
@media only screen and (max-width: 559px) {
  .work__wrap {
    padding-inline: 0;
  }
}
.work__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8.5rem;
  margin-top: -18.5rem;
}
@media only screen and (max-width: 559px) {
  .work__list {
    margin-top: 0;
    gap: 6rem;
  }
}
.work__item--01 figure {
  text-align: right;
}
.work__item--02 {
  text-align: center;
}
.work__item--03 {
  text-align: left;
}
.work__figure {
  margin-bottom: 7.5rem;
}
@media only screen and (max-width: 559px) {
  .work__figure {
    margin-bottom: 3rem;
  }
}
.work__img {
  width: 50rem;
  height: auto;
}
@media only screen and (max-width: 559px) {
  .work__img {
    width: 100%;
  }
}
.work__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 559px) {
  .work__cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.work__cont--02 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.work__cont--03 {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  left: -6rem;
}
@media only screen and (max-width: 559px) {
  .work__cont--03 {
    left: 0;
  }
}
.work__subttl {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 3rem;
  line-height: 1;
  margin-left: 6rem;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
@media only screen and (max-width: 559px) {
  .work__subttl {
    font-size: 2.8rem;
    line-height: 1.2857142857;
    margin-left: 0;
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    text-align: center;
  }
}
.work__textarea {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin-top: 4rem;
}
@media only screen and (max-width: 559px) {
  .work__textarea {
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
  }
}
.work__text {
  line-height: 2.2222222222;
}
@media only screen and (max-width: 559px) {
  .work__text {
    font-size: 1.6rem;
    line-height: 1.5625;
  }
}
.work__text:not(:last-child) {
  margin-left: 4rem;
}
@media only screen and (max-width: 559px) {
  .work__text:not(:last-child) {
    margin-left: 0;
    margin-bottom: 1.5rem;
  }
}

.cta {
  text-align: center;
  margin-bottom: 26rem;
}
@media only screen and (max-width: 559px) {
  .cta {
    margin-bottom: 7rem;
  }
}
.cta img {
  width: 68.5rem;
  height: auto;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 559px) {
  .cta img {
    width: calc(100% - 8rem);
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 559px) {
  .cta p {
    font-size: 1.6rem;
  }
}

.products {
  padding-bottom: 20rem;
}
@media only screen and (max-width: 559px) {
  .products {
    padding-bottom: 7rem;
  }
}
.products__ttl {
  text-align: center;
  margin-bottom: 10.5rem;
}
@media only screen and (max-width: 559px) {
  .products__ttl {
    margin-bottom: 6rem;
  }
}
.products__ttl img {
  width: 20.8rem;
  height: auto;
}
@media only screen and (max-width: 559px) {
  .products__ttl img {
    width: 17rem;
  }
}
.products__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5rem 1fr 5rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
}
@media only screen and (max-width: 559px) {
  .products__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }
}

.under__page {
  padding-bottom: 20rem;
}
@media only screen and (max-width: 559px) {
  .under__page {
    padding-bottom: 6rem;
  }
}
.under__wrap a {
  overflow-wrap: break-word;
}

.detail {
  background-image: url("https://xs042290.xsrv.jp/jamkoubou/assets/images/bg3.webp");
  padding: 12rem 0;
}
@media only screen and (max-width: 559px) {
  .detail {
    padding: 6rem 0;
  }
}

@media only screen and (max-width: 559px) {
  body#shopDetailPage .itemImg {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    gap: 2rem;
  }
  body#shopDetailPage #mainContent {
    padding: 3rem 2rem;
  }
  body#shopDetailPage .itemDescription {
    margin-top: 2rem;
  }
  div#mCSB_1_container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0.5rem 1fr 0.5rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  body#shopDetailPage #slideImgPager {
    width: 100%;
    padding: 0;
  }
  body#shopDetailPage #slideImgPager li + li {
    margin-top: 0;
  }
  body#shopDetailPage #slideImgPager .smallImgBox {
    height: 6.4rem;
    width: 100%;
    line-height: 6.4rem;
  }
  body#shopDetailPage #slideImgPager .smallImgBox img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
    max-width: 100%;
    max-height: 100%;
  }
  .mCSB_1_scrollbar_vertical {
    display: none;
  }
}