@charset "UTF-8";
/* slick first loading */
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-prev:before, .slick-next:before {
  color: #dadada;
  text-shadow: 1px 2px 3px #d5d5d5;
}

.remodal div {
  padding: 1.5em;
}
.remodal .btn_wrap * {
  margin: 10px 30px !important;
}

.sp_only {
  display: block !important;
}

.pc_only {
  display: none !important;
}

.f-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

@font-face {
  font-family: 'MyYuGothicM';
  font-weight: normal;
  src: local("YuGothic-Medium"), local("Yu Gothic Medium"), local("YuGothic-Regular");
}
@font-face {
  font-family: 'MyYuGothicM';
  font-weight: bold;
  src: local("YuGothic-Bold"), local("Yu Gothic");
}
@keyframes positionAnime {
  0% {
    background-size: 100% auto;
  }
  50% {
    background-size: 110% auto;
  }
  100% {
    background-size: 100% auto;
  }
}
@keyframes blinkAnime {
  0% {
    opacity: 0.4;
  }
  10% {
    opacity: 0.1;
  }
  50% {
    opacity: 0;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.4;
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#fullscreen_bg {
  z-index: -1;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(../../assets/img/background_sp.png);
  background-size: 100% auto;
  animation: positionAnime 50s infinite alternate;
}
#fullscreen_bg::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  animation: blinkAnime 2s infinite alternate;
}

.to-top {
  position: sticky;
  left: 100%;
  bottom: 0;
  transition: all 0.2s ease;
}
.to-top:before {
  content: '\025b2';
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255, 215, 50, 0.6);
  background-color: rgba(255, 215, 50, 0.2);
  height: 3em;
  width: 3em;
  margin: 10px;
  border-radius: 3px;
}

ul {
  list-style-type: none;
}

body {
  font-family: MyYuGothicM, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
body h1, body h2, body h3 {
  font-family: 'Noto Sans JP', sans-serif;
}

a, button {
  text-decoration: none;
  cursor: pointer;
}
a:hover, button:hover {
  opacity: .7;
}

a {
  color: #22B573;
}

img {
  max-width: 100%;
}

label {
  display: inline-flex;
  align-items: center;
}

form div.select, .form_wrap div.select {
  position: relative;
  border: solid 1px #aeaeae;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
form div.select:before, .form_wrap div.select:before {
  content: '\025bc';
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 30px;
  position: absolute;
  right: 1px;
  background-color: #FFFFFF;
  pointer-events: none;
}
form select, .form_wrap select {
  -webkit-appearance: auto;
  background-color: #FFFFFF;
  padding: 0.5em;
  border: 0;
  border-radius: 2px;
  width: 100%;
}
form select option, form select div, .form_wrap select option, .form_wrap select div {
  font-weight: bold;
}
form input, .form_wrap input {
  background-color: #FFFFFF;
  padding: 0.5em;
  border: solid 1px #aeaeae;
  border-radius: 2px;
}
form input[type=number]::-webkit-inner-spin-button, form input[type=number]::-webkit-outer-spin-button, .form_wrap input[type=number]::-webkit-inner-spin-button, .form_wrap input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}
form input[type=checkbox], .form_wrap input[type=checkbox] {
  display: none;
}
form input[type=checkbox] + span.checkbox, .form_wrap input[type=checkbox] + span.checkbox {
  position: relative;
  border: solid 1px #aeaeae;
  width: 1.5em;
  height: 1.5em;
  border-radius: 2px;
  margin-right: 7px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
form input[type=checkbox]:checked + span.checkbox:after, .form_wrap input[type=checkbox]:checked + span.checkbox:after {
  content: '\02714';
  color: #22B573;
  position: absolute;
  top: -3px;
  font-size: 18px;
}
form input[type=radio], .form_wrap input[type=radio] {
  display: none;
}
form input[type=radio] + span.radio, .form_wrap input[type=radio] + span.radio {
  position: relative;
  border: solid 1px #aeaeae;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  margin-right: 7px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
form input[type=radio]:checked + span.radio:after, .form_wrap input[type=radio]:checked + span.radio:after {
  content: '\02714';
  color: #22B573;
  position: absolute;
  top: -3px;
  font-size: 18px;
}
form article, .form_wrap article {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 30px 0;
}
form article > *, .form_wrap article > * {
  width: 100%;
}
form article label, .form_wrap article label {
  line-height: 2em;
}
form article label span, .form_wrap article label span {
  color: #f53636;
}
form article input, form article textarea, .form_wrap article input, .form_wrap article textarea {
  display: block;
  width: 100%;
  background-color: #FFFFFF;
  padding: 0.5em;
  border: solid 1px #aeaeae;
  border-radius: 2px;
}
form article textarea, .form_wrap article textarea {
  min-height: 10em;
}
form article.short input, form article.short textarea, .form_wrap article.short input, .form_wrap article.short textarea {
  max-width: 100px;
}
form article.middle input, form article.middle textarea, .form_wrap article.middle input, .form_wrap article.middle textarea {
  max-width: 200px;
}

#main-container {
  z-index: 100;
}

* {
  outline: none;
}

main {
  min-height: calc(100vh - 439px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
main .system-message {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0.2em 1em;
  color: #FFFFFF;
  text-indent: 1em;
}
main .system-message button {
  margin: 0;
  padding: 0;
  color: #FFFFFF;
  background-color: transparent;
}
main .system-message.success {
  background-color: rgba(34, 181, 115, 0.4);
  text-shadow: 7px 3px 10px #22b573;
}
main .system-message.error {
  background-color: rgba(245, 54, 54, 0.5);
  text-shadow: 7px 3px 10px #f53636;
}
main.short-contents {
  display: block;
}

button, a.btn, label.btn {
  display: inline-block;
  margin: 10px 0;
  text-decoration: none;
  color: #383838;
  background-color: #FFD732;
  text-align: center;
  line-height: 40px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: bold;
}
button.disabled, a.btn.disabled, label.btn.disabled {
  position: relative;
  pointer-events: none;
}
button.disabled:after, a.btn.disabled:after, label.btn.disabled:after {
  content: '';
  position: absolute;
  border-radius: 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
button.disabled.sold:before, a.btn.disabled.sold:before, label.btn.disabled.sold:before {
  content: 'SOLD OUT';
  color: #f4f4f4;
  background-color: #f53636;
  position: absolute;
  top: 3px;
  right: 10px;
  bottom: 3px;
  left: 10px;
  transform: rotate(-3deg);
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
}

button.arrow_bottom, a.btn.arrow_bottom {
  position: relative;
  padding: 0 3em;
}

button.arrow_bottom:after, a.btn.arrow_bottom:after {
  content: '\025b2';
  display: inline-block;
  transform: rotate(180deg);
  position: absolute;
  top: -2px;
  right: 1em;
  font-size: 10px;
}

button.arrow_right, a.btn.arrow_right {
  position: relative;
  padding: 0 1.5em;
}

button.arrow_right:after, a.btn.arrow_right:after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 2px solid;
  border-color: #000000 #000000 transparent transparent;
  transform: rotate(45deg);
  position: absolute;
  top: 1.5em;
  right: 1.5em;
  font-size: 10px;
}

button.black, a.btn.black {
  background-color: #000000;
  color: #FFFFFF;
  font-size: 15px;
}
button.black:after, a.btn.black:after {
  border-color: #FFFFFF #FFFFFF transparent transparent;
}

button.white, a.btn.white {
  background-color: #FFFFFF;
  color: #000000;
  border: solid 1px #aeaeae;
}

button.mini, a.btn.mini {
  zoom: 0.8;
}

.btn_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
.btn_wrap * {
  margin: 10px !important;
}
.btn_wrap.size-fixed.full a, .btn_wrap.size-fixed.full button {
  width: 100%;
}
.btn_wrap.size-fixed.large a, .btn_wrap.size-fixed.large button {
  width: 250px;
}
.btn_wrap.size-fixed.medium a, .btn_wrap.size-fixed.medium button {
  width: 200px;
}
.btn_wrap.size-fixed.small {
  flex-wrap: nowrap;
}
.btn_wrap.size-fixed.small a, .btn_wrap.size-fixed.small button {
  width: 140px;
}
.btn_wrap.center, .btn_wrap.center-right, .btn_wrap.center-left {
  justify-content: center;
}
.btn_wrap.right {
  justify-content: flex-end;
}
.btn_wrap + .btn_wrap_ext {
  color: #f53636;
  font-size: 0.8em;
  white-space: nowrap;
}

span.tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 2em;
  font-size: 10px;
  text-align: center;
  letter-spacing: 0.2em;
  border-radius: 2px;
  border: solid 1px;
  margin-top: 5px;
  margin-right: 5px;
  white-space: nowrap;
  line-height: 1.9;
}
span.tag.ver1 {
  color: #22B573;
  border-color: #22B573;
  background-color: #FFFFFF;
}
span.tag.ver2 {
  color: #000000;
  border-color: #FFD732;
  background-color: #FFD732;
}
span.tag.ver3 {
  color: #FFFFFF;
  border-color: #22B573;
  background-color: #22B573;
}
span.tag.ver4 {
  color: #FFFFFF;
  border-color: #EA5720;
  background-color: #EA5720;
}

.price {
  padding: 5px;
  color: #22B573;
  font-weight: bold;
  display: block;
  line-height: 2em;
}
.price:before {
  content: '\0a5';
}

.caution {
  color: #f53636;
}

span.pagejump {
  position: relative;
  top: -100px;
}

header {
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background-color: #000000;
  padding: 5px;
}
header > * {
  margin: 10px;
}
header img {
  max-height: 30px;
}
header button, header label.btn {
  position: relative;
  background-color: #FFD732;
  line-height: 0;
  border-radius: 1px;
  margin: 5px;
}
header button img, header label.btn img {
  margin: 5px;
  max-height: 20px;
}
header button span, header label.btn span {
  position: absolute;
  top: -0.6em;
  right: -0.6em;
  color: #383838;
  text-shadow: 0px 1px 2px #f4f4f4;
  background-color: #ff3434;
  display: block;
  font-size: 8px;
  line-height: 1.2em;
  border-radius: 8px;
  padding: 2px 3px 3px;
  text-align: center;
  min-width: calc(1.2em + 4px);
}
header .menu_btn_wrap {
  display: flex;
  align-items: flex-start;
  height: 40px;
}
header .menu_btn_wrap > * {
  margin-left: 10px;
}
header .h-menu {
  position: relative;
  display: -webkig-inline-box;
}
header .h-menuCheckbox {
  display: none;
}
header .h-menu_icon {
  display: inline-block;
  height: 30px;
  vertical-align: middle;
}
header .hamburger-icon {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  z-index: 100;
  top: 10px;
  bottom: 10px;
  right: 0;
  width: 0;
  height: 3px;
  background: white;
  cursor: pointer;
}
header .hamburger-icon::before, header .hamburger-icon::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 100;
  top: 0;
  bottom: 0;
  right: 0;
  width: 0;
  height: 3px;
  background: #383838;
  cursor: pointer;
}
header .hamburger-icon:before {
  top: 10px;
}
header .hamburger-icon:after {
  top: 20px;
}
header #h-menu_black {
  display: none;
  position: fixed;
  z-index: 98;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .7s ease-in-out;
}
header #h-menu_content {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  padding: 53px 16px;
  background: #FFFFFF;
  overflow: auto;
  transition: .3s ease-in-out;
  -webkit-transform: translateX(calc(100vw + 100%));
  transform: translateX(calc(100vw + 100%));
}
header input:checked ~ .h-menu_icon .hamburger-icon {
  opacity: 1;
  width: 32px;
  background: transparent;
}
header input:checked ~ .h-menu_icon .hamburger-icon::before {
  opacity: 1;
  width: 32px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 10px;
  z-index: 999;
}
header input:checked ~ .h-menu_icon .hamburger-icon::after {
  opacity: 1;
  width: 32px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 10px;
  z-index: 999;
}
header input:checked ~ #h-menu_black {
  display: block;
  opacity: .8;
}
header #h-menu_checkbox:checked ~ #h-menu_content {
  -webkit-transform: translateX(calc(100vw - 100%));
  transform: translateX(calc(100vw - 100%));
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}
header .h-menu_icon .hamburger-icon {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
header .h-menu_icon .hamburger-icon::before, header .h-menu_icon .hamburger-icon::after {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
header #h-menu_black {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
header #h-menu_content {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
header #h-menu_content ul {
  list-style: none;
  margin: 0;
  padding: 0 0 30px 0;
}
header #h-menu_content ul li {
  border-bottom: solid 1px #aeaeae;
}
header #h-menu_content ul li > a {
  display: block;
  color: #383838;
  font-size: 16px;
  padding: 24px;
  text-decoration: none;
  transition-duration: 0.2s;
}
header #h-menu_content ul li > a.mypage, header #h-menu_content ul li > a.cart, header #h-menu_content ul li > a.qr {
  padding-left: 70px;
  position: relative;
}
header #h-menu_content ul li > a.mypage:before, header #h-menu_content ul li > a.cart:before, header #h-menu_content ul li > a.qr:before {
  content: '';
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  left: 15px;
}
header #h-menu_content ul li > a.mypage.active:after, header #h-menu_content ul li > a.cart.active:after, header #h-menu_content ul li > a.qr.active:after {
  content: '';
  width: 7px;
  height: 7px;
  display: block;
  position: absolute;
  left: 50px;
  top: 20px;
  border-radius: 100%;
  background-color: #22B573;
}
header #h-menu_content ul li > a.mypage:before {
  background-image: url(../img/icon_human.svg);
}
header #h-menu_content ul li > a.cart:before {
  background-image: url(../img/icon_cart_black.svg);
}
header #h-menu_content ul li > a.qr:before {
  background-image: url(../img/icon_qr_black.svg);
}
header #h-menu_content ul li > label {
  padding: 10px 24px;
}
header #h-menu_content .copyright {
  font-size: 12px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 10px;
  text-align: center;
}

section {
  width: 100%;
  padding: 15px;
}
section .inner {
  width: 100%;
  max-width: 100%;
  padding: 15px;
}
section .inner.white-back {
  background-color: rgba(255, 255, 255, 0.9);
}
section .inner .attention {
  color: #FF0000;
  text-align: center;
  font-size: 14px;
}
section > h1 {
  font-size: 28px;
  font-weight: bold;
  margin: 40px 0;
  text-align: center;
}
section > h2 {
  font-size: 24px;
  font-weight: normal;
  margin: 20px 0;
  position: relative;
}
section > h2:before {
  position: absolute;
  top: -1em;
  z-index: -1;
  content: '\025c6';
  font-size: 40px;
  color: #FFFFFF;
  width: 2.5em;
  height: 2.5em;
  line-height: 1.5em;
  opacity: 0.22;
  background: linear-gradient(135deg, #e3e0e0 0%, #c3c2bb 51%, #999999 100%);
  display: inline-block;
  text-align: center;
  padding-bottom: 4px;
  font-weight: bold;
  transform: rotate(25deg);
}
section.separate-bottom-gray, section .separate-bottom-gray {
  padding-bottom: 0;
}
section.separate-bottom-gray:after, section .separate-bottom-gray:after {
  content: '';
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 2px rgba(185, 185, 184, 0.2);
  display: block;
  width: 100%;
}
section.separate-bottom-yellow {
  border-bottom: solid 4px #FFD732;
}
section.main-image + section h2, section.separate-bottom-yellow + section h2 {
  margin: 40px 0 20px;
}
section .toggle input[type=checkbox] {
  display: none;
}
section .toggle input[type=checkbox] + label {
  cursor: pointer;
}
section .toggle input[type=checkbox] + label + div {
  height: 0;
  opacity: 0;
  transition: .8s;
  visibility: hidden;
}
section .toggle > input[type=checkbox]:checked + label + div {
  height: auto;
  opacity: 1;
  visibility: visible;
}
section.main-image {
  position: relative;
  padding: 0;
  line-height: 0;
}
section.main-image.kv > div {
  position: relative;
  padding: 0;
}
section.main-image + section.banner-area {
  margin-top: 0;
}
section.main-image + section.banner-area > div {
  text-align: center;
}
section.main-image + section.banner-area > div img {
  max-height: 60px;
}
section.main-image img {
  width: 100%;
}
section.main-image a:hover {
  opacity: 0.9;
}
section.main-image > div {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.main-image .slide .slick-prev, section.main-image .slide .slick-next {
  zoom: 1.5;
  opacity: 0.5;
  z-index: 99;
}
section.main-image .slide .slick-prev {
  left: 3px;
}
section.main-image .slide .slick-next {
  right: 3px;
}
section.main-image .slide .slick-dots {
  bottom: 0;
}
section.main-image .slide.slick-dotted.slick-slider {
  margin-bottom: 0;
}
section.page-title h1 {
  margin: 0;
  padding: 20px;
  font-size: 20px;
  font-weight: normal;
}
section.page-title.underline h1 {
  border-bottom: solid 1px #383838;
}
section.info-title {
  font-size: 13px;
}
section.info-title h4 {
  font-size: 18px;
  min-height: 30px;
  padding-left: 0.8em;
  text-indent: -0.8em;
}
section.info-title h4:before {
  content: '';
  width: 4px;
  margin: 0 0.5em -3px 0;
  line-height: 20px;
  height: 20px;
  display: inline-block;
  background: linear-gradient(-45deg, #dfdfdf, #FFFFFF, #dddddd, #aeaeae);
  background-size: 400% 400%;
  animation: gradient 5s ease infinite;
  text-align: center;
  color: #fff;
  border-radius: 1px;
}
section.cart-group {
  font-size: 13px;
  margin: 20px;
  border: 2px solid #E3E0E0;
  background: #FFFFFF;
}
section.cart-group > div {
  padding: 0;
}
section.cart-group h4 {
  font-size: 16px;
}
section.cart-group .ctrl-box {
  margin-top: -20px;
}
section.cart-group .ctrl-box .total-price {
  padding: 0 10px;
  text-align: right;
  font-size: 20px;
}
section.cart-group .ctrl-box .total-price:before {
  content: '合計\0a5';
}
section.cart-group .ctrl-box .total-amount {
  padding: 10px 10px 0 10px;
  text-align: right;
  font-size: 14px;
}
section.cart-group .ctrl-box .total-amount:after {
  content: '点';
}
section.cart-group .ctrl-box .caution {
  text-align: center;
}
section.cart-group .ctrl-box button, section.cart-group .ctrl-box a.btn {
  padding: 0 1em;
}
section.history-group {
  padding: 30px;
}
section.history-group h4 {
  line-height: 0;
}
section.history-group .btn_wrap {
  display: flex !important;
}
section.history-group ul.transaction-detail li span {
  display: inline-block;
  width: 160px;
  text-align: right;
  padding-right: 1em;
}
section.history-group .receipt {
  padding: 1.5em;
  margin: 2em;
  text-align: center;
  background-color: rgba(221, 221, 221, 0.2);
  font-weight: bold;
  font-size: 80%;
}
section.history-group.f-box > div {
  width: 100%;
  margin-top: 3em;
}
section.cart-group .product-item, section.history-group .product-item {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
section.cart-group .product-item .delete-btn, section.history-group .product-item .delete-btn {
  position: absolute;
  top: 0px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background-color: #000000;
  width: 25px;
  height: 25px;
  font-size: 18px;
  border-radius: 100%;
  z-index: 99;
}
section.cart-group .product-item .img-wrap, section.history-group .product-item .img-wrap {
  width: 100px;
  height: 100px;
  box-shadow: 0 0 8px #c2c2c2;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.cart-group .product-item .img-wrap img, section.history-group .product-item .img-wrap img {
  max-width: 100%;
  max-height: 100%;
}
section.cart-group .product-item h3, section.history-group .product-item h3 {
  margin-top: 0;
}
section.cart-group .product-item h3 a, section.history-group .product-item h3 a {
  font-size: 12px;
  text-decoration: underline;
  color: #000000;
  margin-right: 45px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
section.cart-group .product-item .product-detail-wrapper, section.history-group .product-item .product-detail-wrapper {
  position: relative;
  width: calc(100% - 120px);
}
section.cart-group .product-item .product-detail-wrapper .option-box, section.history-group .product-item .product-detail-wrapper .option-box {
  padding-top: 0;
}
section.cart-group .product-item .product-detail-wrapper .option-box .variation, section.history-group .product-item .product-detail-wrapper .option-box .variation {
  display: block;
  font-size: 14px;
  line-height: 1.5em;
}
section.cart-group .product-item .product-detail-wrapper .option-box .price, section.history-group .product-item .product-detail-wrapper .option-box .price {
  padding: 0;
  font-size: 16px;
  line-height: 1.2em;
}
section.cart-group .product-item .product-detail-wrapper .bottom-box, section.history-group .product-item .product-detail-wrapper .bottom-box {
  position: absolute;
  bottom: 5px;
  right: 15px;
  display: block;
}
section.cart-group .product-item .product-detail-wrapper .bottom-box .subtotal-price, section.history-group .product-item .product-detail-wrapper .bottom-box .subtotal-price {
  font-size: 14px;
}
section.cart-group .product-item .product-detail-wrapper .bottom-box .subtotal-price:before, section.history-group .product-item .product-detail-wrapper .bottom-box .subtotal-price:before {
  content: '\0a5';
}
section.cart-group .product-item .form_wrap .number-button-input input, section.cart-group .product-item .form_wrap .number-button-input button, section.history-group .product-item .form_wrap .number-button-input input, section.history-group .product-item .form_wrap .number-button-input button {
  height: 25px;
  width: 25px;
  font-size: 12px;
  line-height: 1;
}
section.info-item .ctrl-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}
section.info-item .ctrl-box label {
  display: block;
  padding-right: 20px;
}
section.info-item .ctrl-box form {
  width: calc(100% - 6em);
}
section.info-item .item-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
section.info-item .item-wrap article {
  margin: 10px;
  display: flex;
  flex-wrap: wrap;
  background-color: #F4F4F4;
  box-shadow: 0 0 8px #c2c2c2;
  width: calc(50% - 20px);
}
section.info-item .item-wrap article.sold a {
  position: relative;
  overflow: hidden;
}
section.info-item .item-wrap article.sold a:before {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  background-color: #000000;
  z-index: 99;
}
section.info-item .item-wrap article.sold a:after {
  content: 'SOLD OUT';
  font-size: 12px;
  color: #e3e0e0;
  background-color: #f53636;
  z-index: 100;
  transform: rotate(45deg);
  width: 100px;
  height: 60px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  right: -35px;
  top: -15px;
}
section.info-item .item-wrap article a {
  display: flex;
  flex-wrap: wrap;
}
section.info-item .item-wrap article figure {
  width: 100%;
  background-color: #FFFFFF;
  height: calc(50vw - 35px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
section.info-item .item-wrap article figure img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
section.info-item .item-wrap article div {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  background-color: #F4F4F4;
  padding: 2px 10px;
  width: 100%;
  height: calc(100% - 50vw + 35px);
}
section.info-item .item-wrap article div h5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  max-height: 58px;
  overflow: hidden;
  color: #000000;
  font-size: 11px;
  font-weight: normal;
  padding: 5px 0 7px 0;
  margin-bottom: 14px;
  min-width: 100%;
  line-height: 1.55em;
}
section.info-item .item-wrap article div h5:after {
  content: '';
  display: block;
  width: 100%;
  height: 38px;
}
section.info-item .item-wrap article div .price {
  position: absolute;
  bottom: 0;
  width: calc(100% - 20px);
  border-top: solid 2px #AEAEAE;
  text-align: right;
}
section.info-item .item-wrap article div:after {
  content: '';
  height: 2em;
}
section.info-success {
  padding: 3em 15px;
}
section.info-success .inner {
  margin-bottom: 2em;
}
section.info-success h3 {
  padding-bottom: 0.5em;
  font-weight: bold;
}
section.info-success * {
  text-align: center;
}
section.info-plan.queue {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
section.info-plan.queue:after, section.info-plan.queue .spacer {
  content: '';
  width: calc(100% / 2);
}
section.info-plan.queue article {
  width: calc(50% - 15px);
  position: relative;
}
section.info-plan.queue article a {
  height: 60px;
  display: flex;
  align-items: center;
  padding-right: calc(0.5em + 30px);
}
section.info-plan.queue article a span {
  font-size: 14px;
  font-weight: bold;
  margin-left: 1em;
  line-height: 1;
}
section.info-plan.queue article:after {
  content: '○';
  font-size: 30px;
  font-weight: bold;
  line-height: 60px;
  position: absolute;
  top: 0;
  right: 10px;
  pointer-events: none;
}
section.info-plan.queue article.finished::after {
  content: '×';
  font-size: 30px;
  font-weight: bold;
  line-height: 60px;
  position: absolute;
  top: 0;
  right: 10px;
  color: #000000;
  background-color: transparent;
  z-index: 100;
  transform: rotate(0);
  width: auto;
  height: auto;
  display: inline;
}
section.info-plan article {
  box-shadow: 0 0 8px #999999;
  background-color: #FFFFFF;
  margin: 10px 0 20px;
}
section.info-plan article.finished,
section.info-plan article.before,
section.info-plan article.after {
  position: relative;
  overflow: hidden;
}
section.info-plan article.finished:before,
section.info-plan article.before:before,
section.info-plan article.after:before {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  background-color: #000000;
  z-index: 99;
}
section.info-plan article.finished:after, section.info-plan article.finished.after:after{
  content: '終了';
  font-size: 12px;
  color: #e3e0e0;
  background-color: #f53636;
  z-index: 100;
  transform: rotate(45deg);
  width: 100px;
  height: 60px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  right: -40px;
  top: -20px;
}

section.info-plan article.before:after{
  content: '受付前';
  font-size: 12px;
  color: #e3e0e0;
  background-color: #f53636;
  z-index: 100;
  transform: rotate(45deg);
  width: 100px;
  height: 60px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  right: -40px;
  top: -20px;
}

section.info-plan article.after:after{
  content: '受付終了';
  font-size: 12px;
  color: #e3e0e0;
  background-color: #f53636;
  z-index: 100;
  transform: rotate(45deg);
  width: 100px;
  height: 60px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  right: -40px;
  top: -20px;
}


section.info-plan article.finished a {
  pointer-events: none;
}
section.info-plan article a {
  color: #000000;
  display: table;
}
section.info-plan article a h4 {
  display: table-cell;
  background-color: #E3E0E0;
  white-space: nowrap;
  padding: 0.8em;
  font-size: 13px;
  line-height: 1.3em;
  vertical-align: middle;
}
section.info-plan article a h4 > span {
  display: block;
  width: 140px;
}
section.info-plan article a div {
  display: table-cell;
  background-color: #FFFFFF;
  width: 100%;
  padding: 0.5em 2.2em 0.5em 0.8em;
  line-height: 1.2em;
  position: relative;
  vertical-align: middle;
}
section.info-plan article a div:after {
  content: '\025b2';
  font-size: 10px;
  width: 20px;
  height: 20px;
  background-color: #000000;
  color: #FFFFFF;
  position: absolute;
  right: 10px;
  top: calc(50% - 10px);
  text-align: center;
  transform: rotate(90deg);
  border-radius: 20px;
}
section.info-notice ul li label, section.info-notice ul li a {
  position: relative;
  background-color: #000000;
  border-radius: 2px;
  padding: 0.5em 3em 0.5em 0.5em;
  margin: 5px 0;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 12px;
  display: block;
}
section.info-notice ul li.toggle input[type=checkbox]:checked + label + div {
  padding: 0 1em 1em;
}
section.info-notice ul li label:after {
  position: absolute;
  right: 1em;
  top: calc(50% - 0.7em);
  content: '\025bc';
  display: block;
  width: 0.8em;
  height: 0.8em;
}
section.info-notice ul li a:after {
  position: absolute;
  right: 1em;
  top: calc(50% - 0.4em);
  content: '';
  display: block;
  width: 0.8em;
  height: 0.8em;
  border-right: solid 1px #FFFFFF;
  border-bottom: solid 1px #FFFFFF;
  transform: rotate(-45deg);
}
section.product-item.qr, section .product-item.qr {
  padding: 0 50px;
}
section.product-item.qr .product-img, section .product-item.qr .product-img {
  padding: 0;
  line-height: 1;
}
section.product-item.qr .product-img img, section .product-item.qr .product-img img {
  width: 100%;
}
section.product-item.qr .qr-total-price, section .product-item.qr .qr-total-price {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5em;
  margin-bottom: 2em;
}
section.product-item.qr .qr-total-price span, section .product-item.qr .qr-total-price span {
  color: #22B573;
  font-size: 20px;
}
section.product-item.qr .qr-total-price span:before, section .product-item.qr .qr-total-price span:before {
  content: '\0a5';
  margin: 0 5px;
}
section.product-item.qr .qr-total-price span:after, section .product-item.qr .qr-total-price span:after {
  content: '';
}
section.product-item.qr .message, section .product-item.qr .message {
  padding: 2em 0;
  font-size: 12px;
  color: #383838;
}
section.product-item.qr .message a, section .product-item.qr .message a {
  text-decoration: underline;
  color: #383838;
}
section.product-item .product-img, section .product-item .product-img {
  padding: 10px 20px 30px;
  margin: 15px;
  background-color: #FFFFFF;
  box-shadow: 0 0 8px #c2c2c2;
}
section.product-item .product-img img, section .product-item .product-img img {
  max-width: 100%;
}
section.product-item .product-img .slick-list, section .product-item .product-img .slick-list {
  height: calc(100vw - 110px) !important;
}
section.product-item .product-img .slick-list div, section .product-item .product-img .slick-list div {
  display: flex;
  align-items: center;
}
section.product-item .product-img .slick-prev, section.product-item .product-img .slick-next, section .product-item .product-img .slick-prev, section .product-item .product-img .slick-next {
  z-index: 99;
}
section.product-item .product-img .slick-prev:before, section.product-item .product-img .slick-next:before, section .product-item .product-img .slick-prev:before, section .product-item .product-img .slick-next:before {
  color: #cccccc;
}
section.product-item .product-img .slick-dots, section .product-item .product-img .slick-dots {
  display: flex;
  justify-content: center;
  z-index: 99;
  right: 0px;
  bottom: 0;
  bottom: -40px;
}
section.product-item .product-img .slick-dots li, section .product-item .product-img .slick-dots li {
  margin: 0 2px;
}
section.product-item .product-img + nav, section .product-item .product-img + nav {
  display: none;
}
section.product-item h3, section .product-item h3 {
  margin-top: 70px;
}
section.product-item .option-box, section .product-item .option-box {
  padding-top: 10px;
}
section.product-item .option-box .price-box, section .product-item .option-box .price-box {
  position: absolute;
}
section.product-item .option-box .price-box .price, section .product-item .option-box .price-box .price {
  font-size: 22px;
}
section.product-item .option-box .sns-box, section .product-item .option-box .sns-box {
  display: flex;
  justify-content: flex-end;
  margin: 20px 0;
}
section.product-item .option-box .sns-box a, section .product-item .option-box .sns-box a {
  display: flex;
  align-items: flex-start;
  margin: 0 0 0 20px;
}
section.product-item .option-box .sns-box a img, section .product-item .option-box .sns-box a img {
  display: block;
  width: 33px;
}
section.product-item .form_wrap, section .product-item .form_wrap {
  margin: 5px 0;
}
section.product-item .form_wrap .number-button-input, section .product-item .form_wrap .number-button-input {
  background-color: #FFFFFF;
  border: solid 1px #aeaeae;
  display: table;
  margin: 10px 0;
  border-radius: 2px;
}
section.product-item .form_wrap .number-button-input input, section.product-item .form_wrap .number-button-input button, section .product-item .form_wrap .number-button-input input, section .product-item .form_wrap .number-button-input button {
  position: relative;
  display: table-cell !important;
  height: 40px;
  width: 40px;
  font-size: 18px;
  background-color: transparent;
  border-radius: 0;
  margin: 0;
}
section.product-item .form_wrap .number-button-input input, section .product-item .form_wrap .number-button-input input {
  text-align: center;
  border: 0;
}
section.product-item .form_wrap .number-button-input button.plus, section .product-item .form_wrap .number-button-input button.plus {
  border-left: solid 1px #aeaeae;
}
section.product-item .form_wrap .number-button-input button.minus, section .product-item .form_wrap .number-button-input button.minus {
  border-right: solid 1px #aeaeae;
}
section.product-item .form_wrap .number-button-input button.plus:after, section .product-item .form_wrap .number-button-input button.plus:after {
  content: '+';
  position: relative;
  top: -2px;
}
section.product-item .form_wrap .number-button-input button.minus:after, section .product-item .form_wrap .number-button-input button.minus:after {
  content: '－';
}
section.product-item #cartInButton a, section.product-item #cartInButton button, section .product-item #cartInButton a, section .product-item #cartInButton button {
  margin: 20px auto !important;
}
section.product-item #cartInButton + .btn_wrap_ext, section .product-item #cartInButton + .btn_wrap_ext {
  text-align: center;
}
section.product-item .product-description, section .product-item .product-description {
  line-height: 1.5em;
  margin: 30px 0;
}
section.product-item .product-description .message, section .product-item .product-description .message {
  color: #22B573;
}
section.product-item .product-description .tabs, section .product-item .product-description .tabs {
  margin-top: 50px;
  width: 100%;
  margin: 0;
}
section.product-item .product-description .tab_item, section .product-item .product-description .tab_item {
  width: calc(100%/3);
  height: 50px;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  border-radius: 4px 4px 0 0;
}
section.product-item .product-description .tab_item:hover, section .product-item .product-description .tab_item:hover {
  opacity: 0.75;
}
section.product-item .product-description input[name="tab_item"], section .product-item .product-description input[name="tab_item"] {
  display: none;
}
section.product-item .product-description .tab_content, section .product-item .product-description .tab_content {
  display: none;
  padding: 40px 20px;
  clear: both;
  overflow: hidden;
}
section.product-item .product-description #all:checked ~ #all_content, section.product-item .product-description #programming:checked ~ #programming_content, section.product-item .product-description #design:checked ~ #design_content, section .product-item .product-description #all:checked ~ #all_content, section .product-item .product-description #programming:checked ~ #programming_content, section .product-item .product-description #design:checked ~ #design_content {
  display: block;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-top: 3px solid #22b573;
  border-radius: 0 0 4px 4px;
  background-color: #fff;
}
section.product-item .product-description .tabs input:checked + .tab_item, section .product-item .product-description .tabs input:checked + .tab_item {
  background-color: #22b573;
  color: #fff;
}
section.info-notice.list {
  align-items: flex-start !important;
}
section.info-notice.list article > * {
  max-width: 100% !important;
}
section.info-notice.list ul {
  margin-top: 60px;
  width: 100%;
}
section.info-notice.list ul li {
  margin: 5px 0;
}
section.info-notice.list ul li a, section.info-notice.list ul li label {
  margin: 0;
}
section .live-tour, section .live-today, section.info-notice.list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
section .live-tour article, section .live-today article, section.info-notice.list article {
  margin: 0 auto;
}
section .live-tour article h4, section .live-today article h4, section.info-notice.list article h4 {
  font-size: 12px;
  min-height: 1.8em;
}
section .live-tour article h4:before, section .live-today article h4:before, section.info-notice.list article h4:before {
  height: 12px;
}
section .live-tour article > *, section .live-today article > *, section.info-notice.list article > * {
  max-width: 100%;
}
section .live-tour article > img, section .live-today article > img, section.info-notice.list article > img {
  margin-bottom: 10px;
}
section .live-tour article a, section .live-today article a, section.info-notice.list article a {
  color: #383838;
}
section .live-tour.more article, section .live-today.more article, section.info-notice.list.more article {
  max-width: calc(50% - 10px);
}
section .live-tour.more article > *, section .live-today.more article > *, section.info-notice.list.more article > * {
  max-width: 100%;
}
section .live-tour.more3 article, section .live-today.more3 article, section.info-notice.list.more3 article {
  padding-bottom: 2em;
  max-width: calc((100% - 20px) / 3);
}
section .live-tour.more3 article > *, section .live-today.more3 article > *, section.info-notice.list.more3 article > * {
  max-width: 100%;
}
section .live-tour.more3 .img-wrap, section .live-today.more3 .img-wrap, section.info-notice.list.more3 .img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc((100vw - 20px) / 3);
}
section .live-tour.more3 .img-wrap img, section .live-today.more3 .img-wrap img, section.info-notice.list.more3 .img-wrap img {
  max-width: 100%;
  max-height: 100%;
}
section .live-tour.slide, section .live-today.slide, section.info-notice.list.slide {
  margin-left: -15px;
  width: calc(100% + 30px);
}
section .live-tour.slide .slick-slide > *, section .live-today.slide .slick-slide > *, section.info-notice.list.slide .slick-slide > * {
  max-width: 100%;
  margin: 10px;
}
section .live-tour.slide .slick-slide .img-wrap, section .live-today.slide .slick-slide .img-wrap, section.info-notice.list.slide .slick-slide .img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc((60vw - 20px) / 16 * 9);
}
section .live-tour.slide .slick-slide .img-wrap img, section .live-today.slide .slick-slide .img-wrap img, section.info-notice.list.slide .slick-slide .img-wrap img {
  max-width: 100%;
  max-height: 100%;
}
section .live-tour.slide .slick-prev, section .live-tour.slide .slick-next, section .live-today.slide .slick-prev, section .live-today.slide .slick-next, section.info-notice.list.slide .slick-prev, section.info-notice.list.slide .slick-next {
  opacity: 0.6;
  zoom: 1.5;
  z-index: 100;
}
section .live-tour.slide .slick-prev:before, section .live-tour.slide .slick-next:before, section .live-today.slide .slick-prev:before, section .live-today.slide .slick-next:before, section.info-notice.list.slide .slick-prev:before, section.info-notice.list.slide .slick-next:before {
  color: #22b573;
}
section .live-tour.slide .slick-prev, section .live-today.slide .slick-prev, section.info-notice.list.slide .slick-prev {
  left: -30px;
}
section .live-tour.slide .slick-next, section .live-today.slide .slick-next, section.info-notice.list.slide .slick-next {
  right: -30px;
}
section.faq, section.kiyaku, section.inquiry {
  padding: 30px;
  font-size: 13px;
}
section.faq ul li, section.kiyaku ul li, section.inquiry ul li {
  border-bottom: 1px solid #828282;
  margin: 10px 0;
}
section.faq ul li label, section.kiyaku ul li label, section.inquiry ul li label {
  display: block;
  padding: 0 1.5em;
}
section.faq ul li label:before, section.kiyaku ul li label:before, section.inquiry ul li label:before {
  content: "Q.";
  margin-left: -1.5em;
}
section.faq ul li input[type=checkbox] + label, section.kiyaku ul li input[type=checkbox] + label, section.inquiry ul li input[type=checkbox] + label {
  position: relative;
}
section.faq ul li input[type=checkbox] + label:after, section.kiyaku ul li input[type=checkbox] + label:after, section.inquiry ul li input[type=checkbox] + label:after {
  content: '';
  position: absolute;
  top: calc(50% - 0.5em);
  right: 0.5em;
  display: block;
  width: 0.8em;
  height: 0.8em;
  border-right: solid 1px #383838;
  border-bottom: solid 1px #383838;
  transform: rotate(-45deg);
  transition: all 0.2s linear;
}
section.faq ul li input[type=checkbox]:checked + label:after, section.kiyaku ul li input[type=checkbox]:checked + label:after, section.inquiry ul li input[type=checkbox]:checked + label:after {
  content: '';
  transform: rotate(45deg);
}
section.faq ul li > div, section.kiyaku ul li > div, section.inquiry ul li > div {
  border-top: 1px solid #828282;
  margin-top: 10px;
}
section.faq ul li > div > div, section.kiyaku ul li > div > div, section.inquiry ul li > div > div {
  padding: 10px 20px;
}
section.faq ul li > div > div:before, section.kiyaku ul li > div > div:before, section.inquiry ul li > div > div:before {
  content: "A.";
  color: #f00;
  margin-left: -15px;
}
section.kiyaku ol {
  font-size: 12px;
  list-style: none;
  margin-top: 15px;
  margin-bottom: 15px;
}
section.inquiry form, section.inquiry .form_wrap {
  margin: 30px auto;
}
section.inquiry.confirm label + div {
  white-space: pre-wrap;
  word-wrap: break-word;
}
section.big-message {
  padding: 60px 0;
  font-weight: bold;
  text-align: center;
}
section.big-message h5 {
  line-height: 2em;
  font-size: 20px;
  color: #383838;
}
section.big-message > a {
  color: #22B573;
}
section.big-message p {
  padding: 1.5em;
  font-size: 13px;
  font-weight: normal;
}
section.regist-navi {
  max-width: 580px;
  font-size: 16px;
}
section.regist-navi.white {
  margin: 10px 10px 30px 10px;
  border: 2px solid #E3E0E0;
  background: #FFFFFF;
}
section.regist-navi.with-gray-line article + article {
  margin: 0;
  padding: 2em 0;
  border-top: solid 1px #e3e0e0;
}
section.regist-navi .aid-forgot {
  position: relative;
  top: -1.5em;
  text-align: right;
}
section.regist-navi .aid-forgot a {
  font-size: 14px;
  color: #22B573;
  text-decoration: underline;
}
section.regist-navi .message {
  font-size: 13px;
  padding: 1em;
}
section.regist-navi .new-message {
  margin-top: 3em;
  padding: 2em 1em;
  background-color: rgba(34, 181, 115, 0.1);
  border-radius: 2px;
}
section.regist-navi .new-message h5 {
  font-size: 16px;
}
section.regist-navi .new-message p {
  font-size: 14px;
}
section.regist-navi .new-message p a {
  font-size: 14px;
  color: #22B573;
  text-decoration: underline;
}
section.regist-navi article {
  align-items: center;
}
section.regist-navi article .confirm {
  padding: 1em;
  background-color: #FFFBEB;
}
section #agreeTerms {
  display: block;
}
section #agreeTerms label {
  font-size: 12px;
  max-width: 100%;
  display: block;
  padding-left: 2em;
  text-indent: -2.5em;
}
section #agreeTerms label a {
  color: #22B573;
  margin: 0 0.2em;
}
section #agreeTerms label .checkbox {
  top: 0.4em;
  left: 0.4em;
}
section #agreeTerms label .checkbox:after {
  left: 31px;
}
section.mypage.queue-main.finished .mypage-block {
  position: relative;
}
section.mypage.queue-main.finished .mypage-block:before {
  content: attr(message);
  color: #f50707;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  height: auto;
  width: auto;
  top: 35px;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.8);
}
section.mypage.queue-main ul li {
  padding: 0 !important;
}
section.mypage.queue-main ul li > * {
  width: 100% !important;
}
section.mypage.queue-main dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}
section.mypage.queue-main dl dt {
  width: 50%;
  text-align: right;
  padding-right: 1em;
}
section.mypage.queue-main dl dd {
  width: 50%;
}
section.mypage.queue-main .qr-box {
  text-align: center;
}
section.mypage.queue-main .qr-box img {
  display: inline-block;
  max-height: 150px;
  margin: 0 auto;
}
section.mypage.queue-main .qr-box .m-text {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 1px;
  margin-bottom: 1em;
  padding: 1em 0;
}
section.mypage.queue-main .qr-box .m-text.colored {
  font-size: 18px;
  font-weight: bold;
  color: #FF0000;
}
section.mypage .mypage-block {
  border: solid 2px #E3E0E0;
  background-color: #FFFFFF;
}
section.mypage .mypage-block h3 {
  background-color: #E3E0E0;
  text-align: center;
  font-size: 16px;
  line-height: 35px;
}
section.mypage .mypage-block.mail h3, section.mypage .mypage-block.qr h3 {
  position: relative;
}
section.mypage .mypage-block.mail h3:before, section.mypage .mypage-block.qr h3:before {
  position: absolute;
  top: 5px;
  left: 10px;
  content: '';
  background-color: #000000;
  background-repeat: no-repeat;
  background-position: center, center;
  background-size: 14px;
  display: block;
  height: 24px;
  width: 24px;
  border-radius: 3px;
}
section.mypage .mypage-block.mail {
  padding-bottom: 10px;
}
section.mypage .mypage-block.mail h3:before {
  content: '';
  background-image: url(../img/icon_mail.svg);
}
section.mypage .mypage-block.mail div {
  line-height: 2em;
  font-size: 16px;
}
section.mypage .mypage-block.mail p {
  font-size: 12px;
}
section.mypage .mypage-block.mail p a {
  color: #22B573;
  display: inline-block;
  margin: 0 2px;
}
section.mypage .mypage-block.qr h3:before {
  content: '';
  background-image: url(../img/icon_qr.svg);
}
section.mypage .mypage-block article {
  margin: 0px 20px 20px 20px;
  padding-top: 20px;
  display: flex;
}
section.mypage .mypage-block article > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
section.mypage .mypage-block article img {
  max-width: 110px;
  max-height: 110px;
  box-shadow: 0 0 8px #c2c2c2;
}
section.mypage .mypage-block article p {
  font-size: 12px;
  margin-left: 10px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
section.mypage .mypage-block article + article {
  border-top: solid 1px #e3e0e0;
}
section.mypage .mypage-block ul {
  width: 80%;
  margin: 20px auto;
}
section.mypage .mypage-block ul li {
  padding: 20px 0;
}
section.mypage .mypage-block ul li > * {
  display: inline-block;
  width: 100%;
}
section.mypage .mypage-block ul li label {
  font-size: 18px;
}
section.information-title {
  text-align: center;
  font-size: 20px;
  padding-bottom: 0;
  margin-bottom: 15px;
}
section.information-title .date {
  text-align: right;
  font-size: 13px;
  margin-top: 5px;
  border-bottom: 1px solid #828282;
}
section.information-title .date:before {
  content: '';
  display: none;
}
section.information-body {
  padding: 15px;
  margin-bottom: 50px;
  overflow-wrap: break-word;
}
section.information-body img {
  max-width: 100%;
}
section.banner-area {
  /*		margin: 60px 0 0 0;*/
  background-color: rgba(255, 215, 50, 0.1);
  padding: 20px;
}
section.banner-area .banner_list {
  margin: 20px;
}
section.banner-area .slick-slide img {
  margin: 0 auto;
}
section.banner-area .slick-prev:before, section.banner-area .slick-next:before {
  color: #ffd732;
}

footer {
  background-color: #000000;
  padding-top: 2em;
}
footer ul li {
  padding: 1em 3em;
}
footer ul li a {
  color: #DFDFDF;
  font-size: 14px;
  font-weight: normal;
}
footer .copyright {
  padding: 1em;
  font-size: 12px;
  color: #DFDFDF;
  text-align: center;
}

/* タブレット用 */
@media screen and (min-width: 600px) {
  section.product-item .product-img {
    max-width: 440px;
    margin: 15px auto !important;
  }
  section.product-item .product-img .slick-list {
    height: 400px !important;
  }
  section.product-item .product-img .slick-list div {
    display: flex;
    align-items: center;
  }

  section #agreeTerms label {
    padding-left: 0;
    text-indent: 0;
    text-align: center;
  }
  section #agreeTerms label .checkbox:after {
    left: 0;
  }

  section.mypage .mypage-block.queue-main ul li {
    padding: 0 !important;
  }
  section.mypage .mypage-block.queue-main ul li > * {
    width: 100% !important;
  }
  section.mypage .mypage-block article > div {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
  section.mypage .mypage-block article > div + div {
    width: 100%;
  }
  section.mypage .mypage-block article p {
    font-size: 16px;
    margin: 0 30px;
  }
  section.mypage .mypage-block article .btn_wrap {
    width: auto;
  }
  section.mypage .mypage-block ul li > * {
    width: calc(50% - 4px);
  }
  section.mypage .mypage-block ul li > p {
    padding-left: calc(50% - 4px);
    width: 100%;
  }
  section.mypage .mypage-block ul li label {
    font-size: 18px;
  }
  section.mypage .mypage-block ul li label + div {
    font-size: 14px;
  }
}
/* PC用 */
@media screen and (min-width: 1025px) {
  .sp_only {
    display: none !important;
  }

  .pc_only {
    display: block !important;
  }

  #fullscreen_bg {
    background-image: url(../../assets/img/background_pc.png);
  }

  button, a.btn, label.btn {
    margin: 10px 0;
    line-height: 40px;
    border-radius: 3px;
    font-size: 16px;
    white-space: nowrap;
  }

  button.arrow_bottom, a.btn.arrow_bottom {
    padding: 0 3em;
  }

  button.arrow_bottom:after, a.btn.arrow_bottom:after {
    content: '▲';
    top: -2px;
    right: 1em;
    font-size: 10px;
  }

  button.arrow_right, a.btn.arrow_right {
    padding: 5px;
  }

  button.arrow_right:after, a.btn.arrow_right:after {
    width: 10px;
    height: 10px;
    top: 2em;
    right: 1.5em;
    font-size: 10px;
  }

  button.black, a.btn.black {
    font-size: 18px;
  }

  .btn_wrap * {
    margin: 30px !important;
  }
  .btn_wrap.size-fixed.large a, .btn_wrap.size-fixed.large button {
    width: 380px;
  }
  .btn_wrap.size-fixed.medium a, .btn_wrap.size-fixed.medium button {
    width: 280px;
  }
  .btn_wrap.size-fixed.small a, .btn_wrap.size-fixed.small button {
    width: 200px;
  }
  .btn_wrap.center-right {
    justify-content: flex-end;
  }
  .btn_wrap.center-right > * {
    margin-right: 0 !important;
  }
  .btn_wrap.center-left {
    justify-content: flex-start;
  }
  .btn_wrap.center-left > * {
    margin-left: 0 !important;
  }

  span.tag {
    width: 70px;
    font-size: 12px;
    letter-spacing: 0.2em;
    margin-top: 5px;
    margin-right: 5px;
    padding: 2px 0 1px 0;
    height: 2em;
  }

  header.mini > * {
    margin: 5px;
  }
  header.mini img {
    max-height: 30px;
  }
  header.mini button, header.mini label.btn {
    width: 70px;
  }
  header.mini button img, header.mini label.btn img {
    max-height: 20px;
  }
  header.mini button span, header.mini label.btn span {
    top: 0.3em;
  }
  header.mini .menu_btn_wrap {
    height: 38px;
  }
  header img {
    max-height: 50px;
    transition: .3s;
  }
  header button, header label.btn {
    width: 60px;
    transition: .3s;
  }
  header button img, header label.btn img {
    max-height: 30px;
  }
  header button span, header label.btn span {
    position: absolute;
    top: -1em;
    right: -1em;
    font-size: 11px;
    line-height: 1.4em;
    border-radius: 10px;
    padding: 3px;
    min-width: calc(1.4em + 4px);
  }
  header .menu_btn_wrap {
    height: 50px;
  }

  form div.select, .form_wrap div.select {
    display: inline-flex;
  }
  form select, .form_wrap select {
    width: 250px;
  }
  form article > label, .form_wrap article > label {
    max-width: 200px;
  }
  form article > label + div, .form_wrap article > label + div {
    max-width: calc(100% - 200px);
  }

  main {
    min-height: calc(100vh - 132px);
  }

  section {
    padding: 50px;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }
  section > * {
    max-width: 1200px;
    width: 100%;
  }
  section .inner .attention {
    font-size: 18px;
  }
  section > h1 {
    font-size: 36px;
  }
  section > h2 {
    font-size: 28px;
  }
  section > h2:before {
    font-size: 3vw;
  }
  section.separate-bottom-gray:after {
    max-width: 1200px;
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
  section.main-image {
    margin: 0;
    max-width: 100%;
  }
  section.main-image > * {
    max-width: 100%;
  }
  section.main-image > div {
    padding: 0 50px;
  }
  section.main-image.kv + section.banner-area > div img {
    max-height: 80px;
  }
  section.page-title {
    padding: 0 40px;
  }
  section.page-title h1 {
    font-size: 36px;
    padding: 40px 0;
  }
  section.info-title > * {
    max-width: 1200px;
  }
  section.info-title h4 {
    max-width: 1200px;
    margin: 0 50px;
    font-size: 40px;
    min-height: 60px;
  }
  section.info-title h4:before {
    width: 10px;
    height: 35px;
    border-radius: 1px;
  }
  section.cart-group .ctrl-box .total-price {
    padding: 0 15px;
    font-size: 30px;
  }
  section.cart-group .ctrl-box .total-amount {
    padding: 15px 15px 0 15px;
    font-size: 20px;
  }
  section.history-group.f-box {
    align-items: flex-start;
    justify-content: space-between;
  }
  section.history-group.f-box > div {
    width: 48%;
  }
  section.history-group.f-box .receipt {
    width: 100%;
    font-size: 90%;
  }
  section.history-group h4 {
    font-size: 28px;
  }
  section.history-group .btn_wrap {
    display: none !important;
  }
  section.cart-group, section.history-group {
    max-width: 1200px;
    margin: 20px 50px;
    padding: 50px;
  }
  section.cart-group .product-item .img-wrap, section.history-group .product-item .img-wrap {
    width: 190px;
    height: 190px;
  }
  section.cart-group .product-item h3 a, section.history-group .product-item h3 a {
    font-size: 26px;
    -webkit-line-clamp: 1;
  }
  section.cart-group .product-item .product-detail-wrapper, section.history-group .product-item .product-detail-wrapper {
    width: calc(100% - 230px);
  }
  section.cart-group .product-item .product-detail-wrapper .option-box .variation, section.history-group .product-item .product-detail-wrapper .option-box .variation {
    font-size: 22px;
  }
  section.cart-group .product-item .product-detail-wrapper .option-box .price, section.history-group .product-item .product-detail-wrapper .option-box .price {
    font-size: 26px;
  }
  section.cart-group .product-item .product-detail-wrapper .bottom-box, section.history-group .product-item .product-detail-wrapper .bottom-box {
    bottom: -30px;
  }
  section.cart-group .product-item .product-detail-wrapper .bottom-box .subtotal-price, section.history-group .product-item .product-detail-wrapper .bottom-box .subtotal-price {
    font-size: 20px;
  }
  section.cart-group .product-item .product-detail-wrapper .bottom-box .subtotal-price:before, section.history-group .product-item .product-detail-wrapper .bottom-box .subtotal-price:before {
    content: '小計 \0a5';
  }
  section.cart-group .product-item .form_wrap, section.history-group .product-item .form_wrap {
    position: relative;
    float: right;
    right: 15px;
    bottom: 0;
  }
  section.cart-group .product-item .form_wrap .number-button-input input, section.cart-group .product-item .form_wrap .number-button-input button, section.history-group .product-item .form_wrap .number-button-input input, section.history-group .product-item .form_wrap .number-button-input button {
    height: 40px;
    width: 40px;
    font-size: 20px;
  }
  section.info-item {
    max-width: 1200px;
    margin-top: 50px;
  }
  section.info-item .item-wrap {
    justify-content: flex-start;
  }
  section.info-item .item-wrap article {
    margin: 0 25px 25px 0;
    width: calc(20% - 20px);
  }
  section.info-item .item-wrap article:nth-child(5n) {
    margin-right: 0;
  }
  section.info-item .item-wrap article figure {
    height: calc(20vw - 30px);
  }
  section.info-item .item-wrap article div {
    height: calc(100% - 20vw + 30px);
  }
  section.info-item .ctrl-box {
    justify-content: flex-start;
  }
  section.info-plan.queue:after, section.info-plan.queue .spacer {
    content: '';
    width: calc(100% / 3);
  }
  section.info-plan.queue article {
    width: 27%;
  }
  section.info-plan.queue article a {
    height: 80px;
  }
  section.info-plan.queue article a span {
    font-size: 18px;
  }
  section.info-plan.queue article:after {
    font-size: 35px;
    line-height: 80px;
    right: 20px;
  }
  section.info-plan.queue article.finished::after {
    font-size: 35px;
    line-height: 80px;
    right: 20px;
  }
  section.info-plan article {
    max-width: 1170px;
    margin: 20px auto;
  }
  section.info-plan article a h4 {
    font-size: 16px;
  }
  section.info-plan article a h4 > span {
    width: 200px;
  }
  section.info-plan article a div {
    font-size: 18px;
  }
  section.info-plan article a div:after {
    width: 30px;
    height: 30px;
    right: 10px;
    top: calc(50% - 15px);
    padding-top: 3px;
    transform: rotate(90deg);
    border-radius: 30px;
  }
  section.product-item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  section.product-item .product-img-wrapper {
    max-width: 550px;
    width: auto;
  }
  section.product-item .product-img {
    width: 500px;
    margin: 20px 40px;
  }
  section.product-item .product-img + nav {
    max-width: 440px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
  section.product-item .product-img + nav button {
    display: flex;
    background-color: transparent;
    max-width: 20%;
    padding: 5px;
    border: solid 3px transparent;
  }
  section.product-item .product-img + nav button img {
    display: inline-block;
    max-width: 100%;
  }
  section.product-item .product-img + nav button:hover {
    border: solid 3px #22b573;
  }
  section.product-item .product-img + nav.few button {
    max-width: 25%;
  }
  section.product-item .product-detail-wrapper {
    padding: 20px 50px;
    max-width: calc(100% - 520px);
  }
  section.product-item .product-detail-wrapper > * {
    padding: 10px;
  }
  section.product-item .product-detail-wrapper h3 {
    margin-top: 10px;
    font-size: 30px !important;
  }
  section.product-item .option-box .price {
    font-size: 32px;
  }
  section.product-item .option-box .sns-box a img {
    width: 40px;
  }
  section.product-item #cartInButton a, section.product-item #cartInButton button {
    margin: 0 !important;
  }
  section.product-item #cartInButton + .btn_wrap_ext {
    text-align: left;
  }
  section.product-item.qr .product-detail-wrapper {
    max-width: 500px;
  }
  section.product-item.qr .btn_wrap {
    max-width: 300px;
  }
  section.product-item.qr a, section.product-item.qr button {
    margin: 10px 0 !important;
    line-height: 4em;
  }
  section.product-item.qr .qr-total-price {
    text-align: left;
    font-size: 22px;
  }
  section.product-item.qr .qr-total-price span {
    display: block;
    font-size: 28px;
  }
  section.product-description {
    max-width: 1200px;
    margin: 50px auto;
  }
  section .live-today article {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
  }
  section .live-today article > * {
    max-width: calc(50% - 10px);
  }
  section .live-today article > div {
    width: 100%;
    padding: 40px;
  }
  section .live-tour, section .live-today, section.info-notice.list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  section .live-tour article, section .live-today article, section.info-notice.list article {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  section .live-tour article *, section .live-today article *, section.info-notice.list article * {
    margin: 0 5px;
  }
  section .live-tour article .img-wrap + div, section .live-today article .img-wrap + div, section.info-notice.list article .img-wrap + div {
    width: 100%;
  }
  section .live-tour article h4, section .live-today article h4, section.info-notice.list article h4 {
    font-size: 18px;
    min-height: 1.8em;
  }
  section .live-tour article h4:before, section .live-today article h4:before, section.info-notice.list article h4:before {
    height: 18px;
    width: 5px;
  }
  section .live-tour article > *, section .live-today article > *, section.info-notice.list article > * {
    max-width: calc(50% - 10px);
  }
  section .live-tour article > img, section .live-today article > img, section.info-notice.list article > img {
    margin-bottom: 10px;
  }
  section .live-tour.more article, section .live-today.more article, section.info-notice.list.more article {
    max-width: calc(50% - 10px);
  }
  section .live-tour.more article > *, section .live-today.more article > *, section.info-notice.list.more article > * {
    max-width: 100%;
  }
  section .live-tour.more3 article, section .live-today.more3 article, section.info-notice.list.more3 article {
    max-width: calc((100% - 20px) / 3);
    margin-bottom: 2em;
  }
  section .live-tour.more3 .img-wrap, section .live-today.more3 .img-wrap, section.info-notice.list.more3 .img-wrap {
    background-color: rgba(204, 204, 204, 0.1);
    height: 300px;
    margin-bottom: 10px;
    width: 100%;
  }
  section .live-tour.slide .slick-slide > *, section .live-today.slide .slick-slide > *, section.info-notice.list.slide .slick-slide > * {
    max-width: 100%;
    margin: 10px;
  }
  section .live-tour.slide .slick-slide .img-wrap, section .live-today.slide .slick-slide .img-wrap, section.info-notice.list.slide .slick-slide .img-wrap {
    height: calc((30vw - 20px) / 16 * 9);
  }
  section.info-notice ul {
    margin: 20px auto;
  }
  section.info-notice ul li a, section.info-notice ul li label {
    font-size: 16px;
  }
  section.faq, section.kiyaku, section.inquiry {
    font-size: 14px;
    display: block;
    min-height: calc(100vh - 265px);
  }
  section.faq > *, section.kiyaku > *, section.inquiry > * {
    max-width: 780px;
    margin: 0 auto;
  }
  section.faq ul li, section.kiyaku ul li, section.inquiry ul li {
    padding: 0 1em;
  }
  section.inquiry form, section.inquiry .form_wrap {
    max-width: 600px;
  }
  section.big-message {
    display: block;
    min-height: 500px;
  }
  section.big-message h5 {
    font-size: 30px;
  }
  section.big-message p {
    font-size: 14px;
  }
  section.big-message > * {
    margin: 0 auto;
  }
  section.regist-navi {
    margin: 40px !important;
    border: 2px solid #E3E0E0;
    background: #FFFFFF;
  }
  section.regist-navi form .select {
    display: flex;
  }
  section.regist-navi form .select select {
    width: 100%;
  }
  section.information-title .date {
    text-align: center;
  }
  section.information-body {
    display: block;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 100px;
  }
  section.banner-area {
    margin: 60px 0 0 0;
    padding: 30px;
  }
  section.banner-area .banner_list {
    margin: 30px;
  }

  footer {
    padding-top: 0;
    position: relative;
  }
  footer ul {
    display: flex;
  }
  footer ul li {
    padding: 1em 2em;
    font-size: 12px;
  }
  footer ul li a {
    font-size: 12px;
  }
  footer .copyright {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1em 2em;
  }
}
/* PC横幅最大以上用 */
@media screen and (min-width: 1200px) {
  section > h2:before {
    font-size: 48px;
  }
  section.info-item .item-wrap article figure {
    height: 210px;
  }
  section.info-item .item-wrap article div {
    height: calc(100% - 210px);
  }
}
@media screen and (max-width: 320px) {
  header {
    zoom: 0.85;
  }

  section:not(.banner-area), section:not(.banner-area) {
    zoom: 0.85;
  }
}
