@charset "UTF-8";
/* web font */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,700&display=swap&subset=japanese");
/* base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  font-size: 62.5%;
  /* 1em = 10px */
}

body {
  font: 1.6em / 1.4 "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  color: #191919;
  background: #fff;
  transition: filter .2s;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 1.3rem;
}

@media screen and (min-width: 1001px) {
  .sp-only {
    display: none !important;
  }
}

/* main */
.wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  min-width: 1280px;
  max-width: 1920px;
  margin: 0 auto;
}

.wrapper.simple-wrapper {
  min-height: auto;
}

main {
  display: block;
  position: relative;
  padding: 0 128px 0 312px;
}

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

ul, ol, li {
  list-style: none;
}

input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0 12px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #d4d4d4;
  box-shadow: none;
  outline: none;
  font: inherit;
  color: inherit;
}

input[type="number"] {
  -moz-appearance: textfield;
}

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

input[type="image"] {
  padding: 0;
  border-radius: 0;
  border: none;
  cursor: pointer;
}

button {
  cursor: pointer;
}

input[type="radio"], input[type="checkbox"] {
  display: none !important;
}

input::placeholder {
  color: #aaa;
}

input:-ms-input-placeholder {
  color: #aaa;
}

input::-ms-input-placeholder {
  color: #aaa;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.spin-wrap {
  display: block;
  position: relative;
  width: 100%;
}

.spin-wrap .custom-spin {
  padding-right: 30px;
}

.spin-wrap > span {
  display: block;
  position: absolute;
  right: 0;
  width: 24px;
  height: 50%;
  background: #fff;
  border: 1px solid #d4d4d4;
  cursor: pointer;
}

.spin-wrap > span:hover {
  background: #eee;
}

.spin-wrap > span::before {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  content: "";
}

.spin-wrap .spin-up {
  top: 0;
  border-top-right-radius: 4px;
  border-bottom: none;
}

.spin-wrap .spin-up::before {
  border-bottom: 8px solid #191919;
}

.spin-wrap .spin-down {
  bottom: 0;
  border-bottom-right-radius: 4px;
}

.spin-wrap .spin-down::before {
  border-top: 8px solid #191919;
}

.spin-wrap :disabled ~ .spin-up, .spin-wrap :disabled ~ .spin-down, .spin-wrap [readonly] ~ .spin-up, .spin-wrap [readonly] ~ .spin-down {
  display: none;
}

hr {
  margin: 50px 0;
  border-width: 1px 0 0 0;
  border-color: #e5e5e5;
  border-style: solid;
}

/* header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  min-width: 1280px;
  max-width: 1920px;
  margin: 0 auto;
}

.main-header-nav, .main-header-control {
  position: absolute;
  top: 0;
  z-index: 2;
  min-height: 100vh;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: inset 1px 0 0 0 rgba(0, 0, 0, 0.149), inset -1px 0 0 0 rgba(0, 0, 0, 0.149), 1px 0 4px 0 rgba(0, 0, 0, 0.063), -1px 0 4px 0 rgba(0, 0, 0, 0.063);
}

.main-header-nav {
  left: 32px;
  width: 256px;
  padding-bottom: 20px;
}

.main-header-nav .main-logo {
  margin: 14px 0 26px;
}

.main-header-nav .main-logo a {
  display: block;
  text-align: center;
}

.main-header-nav .main-logo img {
  width: 220px;
  pointer-events: none;
}

.main-header-nav .main-nav {
  margin: 0 0 24px;
  padding: 0 32px;
}

.main-header-nav .main-nav-list {
  border-top: 1px solid rgba(0, 0, 0, 0.165);
  font-size: 1.5rem;
  font-weight: bold;
}

.main-header-nav .main-nav-list li {
  padding: 0 1px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.165);
}

.main-header-nav .main-nav-list a {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  height: 52px;
  margin: 0 -32px;
  padding: 0 32px;
  background: url("../images/icon_nav_arrow.svg") no-repeat right 32px top 50%/7px auto;
  color: inherit;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
}

.main-header-nav .main-nav-list a::before, .main-header-nav .main-nav-list a::after {
  display: block;
  position: absolute;
  content: "";
}

.main-header-nav .main-nav-list a::before {
  top: 0;
  right: -1px;
  width: 1px;
  height: 55px;
}

.main-header-nav .main-nav-list a::after {
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
}

.main-header-nav .main-nav-list a.hover-active {
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.5);
  color: #ff9906;
}

.main-header-nav .main-nav-list a.hover-active::before {
  top: -50%;
  bottom: -50%;
  width: 40px;
  height: auto;
}

.main-header-nav .main-nav form {
  display: flex;
  margin: 18px 0;
  font-size: 1.4rem;
}

.main-header-nav .main-nav .nav-search {
  width: calc(100% - 32px);
  height: 38px;
  padding: 0 0 0 14px;
  border: none;
  border-radius: 20px 0 0 20px;
}

.main-header-nav .main-nav .nav-search:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset;
}

.main-header-nav .main-nav .nav-submit {
  width: 32px;
  height: 38px;
  padding: 0;
  border: none;
  border-radius: 0 20px 20px 0;
  background: url("../images/icon_search_b.svg") no-repeat 25% 50%/18px #fff;
}

.main-header-nav .nav-aside {
  position: relative;
  z-index: 0;
  transform-origin: 50% 0;
  transition: all .15s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.main-header-nav .nav-aside a {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
}

.main-header-nav .nav-aside img {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.main-header-nav .nav-aside::before {
  display: block;
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.main-header-nav .nav-aside::after {
  display: block;
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.main-header-nav .aside-gustchan {
  margin-top: -20px;
}

.main-header-nav .aside-gustchan img {
  left: -32px;
}

.main-header-nav .aside-gustchan:hover::before, .main-header-nav .aside-gustchan:hover::after {
  top: 83px;
  right: -134px;
  width: 227px;
  height: 128px;
  transform-origin: 1px 114px;
  animation: balloonZoom1 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  content: "";
}

.main-header-nav .aside-gustchan:hover::before {
  background: url("../images/img_nav_balloon_01.png") no-repeat;
}

.main-header-nav .aside-gustchan:hover::after {
  background: url("../images/img_nav_text_01.png") no-repeat;
}

.main-header-nav .aside-kogustchan {
  margin-top: -42px;
  text-align: right;
}

.main-header-nav .aside-kogustchan img {
  right: -56px;
}

.main-header-nav .aside-kogustchan:hover::before, .main-header-nav .aside-kogustchan:hover::after {
  top: 0;
  left: -16px;
  width: 236px;
  height: 127px;
  transform-origin: 141px 125px;
  animation: balloonZoom2 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  content: "";
}

.main-header-nav .aside-kogustchan::before {
  background: url("../images/img_nav_balloon_02.png") no-repeat;
}

.main-header-nav .aside-kogustchan::after {
  background: url("../images/img_nav_text_02.png") no-repeat;
}

.main-header-drawer {
  display: none;
  position: absolute;
  top: 0;
  left: 288px;
  z-index: 1;
  width: 400px;
  height: 100vh;
  background: #fff;
  box-shadow: 1px 0 4px 0 rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}

.main-header-drawer.drawer-open {
  opacity: 1;
  pointer-events: auto;
}

.main-header-drawer.drawer-close {
  opacity: 0;
  pointer-events: none;
}

.main-header-drawer .drawer-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}

.main-header-drawer .drawer-content.active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.main-header-drawer .drawer-content .drawer-section {
  position: relative;
  z-index: 1;
  padding: 34px 45px;
}

.main-header-drawer .drawer-content .drawer-section::after {
  display: block;
  position: absolute;
  z-index: -1;
  height: 100%;
  background: no-repeat 100% 100%;
  pointer-events: none;
}

.main-header-drawer .drawer-content[data-simplebar] {
  overflow: auto;
  width: calc(100% + 100px);
  padding-right: 100px;
}

.main-header-drawer .drawer-content h3 {
  margin-bottom: 1em;
  font-size: 1.6rem;
}

.main-header-drawer .drawer-content .link-list li {
  margin: 4px 0;
  font-size: 1.3rem;
  line-height: 1.6;
}

.main-header-drawer .drawer-content .link-list li.child-list {
  margin: 12px 0 16px;
}

.main-header-drawer .drawer-content .link-list li.child-list h3 {
  margin-bottom: 6px;
  font-size: 1.5rem;
}

.main-header-drawer .drawer-content .link-list a {
  color: #191919;
  text-decoration: none;
}

.main-header-drawer .drawer-content .link-list a:hover {
  color: #ff9906;
  font-weight: bold;
}

.main-header-drawer .drawer-content .simplebar-track.simplebar-horizontal {
  display: none !important;
}

.main-header-drawer .drawer-content .simplebar-track.simplebar-vertical {
  right: 100px;
  width: 10px;
}

.main-header-drawer .drawer-content .simplebar-track.simplebar-vertical .simplebar-scrollbar {
  left: 0;
  right: 0;
  width: 4px;
  margin: 0 auto;
  transition: width 50ms ease;
}

.main-header-drawer .drawer-content .simplebar-track.simplebar-vertical .simplebar-scrollbar::before {
  top: 3px;
  bottom: 3px;
  border-radius: 8px;
  background-color: #000;
  box-shadow: 0 0 2px 0 #fff;
}

.main-header-drawer .drawer-content .simplebar-track.simplebar-vertical.simplebar-hover .simplebar-scrollbar {
  width: 8px;
}

.main-header-drawer .drawer-overflow {
  position: absolute;
  top: 0;
  right: -100px;
  z-index: 10;
  width: 100px;
  height: 100%;
}

.main-header-drawer .simplebar-dragging ~ .drawer-overflow {
  width: 50px;
}

.main-header-control {
  right: 32px;
  width: 72px;
  padding-top: 16px;
  text-align: center;
}

.main-header-control .cart-block {
  width: 56px;
  height: 56px;
  margin: 0 auto;
}

.main-header-control .cart-block .cart-btn {
  display: block;
  position: relative;
  height: 100%;
  padding-top: 8px;
  background: #ff9906;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  text-decoration: none;
}

.main-header-control .cart-block .cart-btn::after {
  display: block;
  position: absolute;
  left: -2px;
  right: 0;
  bottom: 9px;
  width: 20px;
  height: 22px;
  margin: 0 auto;
  background: url("../images/icon_cart.svg") no-repeat 50% 50%/contain;
  opacity: .6;
  content: "";
}

.main-header-control .control-list li {
  position: relative;
  margin: 5px 0;
}

.main-header-control .control-list a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 50%;
  text-decoration: none;
}

.main-header-control .control-list a[data-count]::before {
  display: block;
  position: absolute;
  top: 8px;
  right: 6px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #ff9906;
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  line-height: 21px;
  text-align: center;
  white-space: nowrap;
  content: attr(data-count);
}

.main-header-control .control-list .control-balloon {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 78px;
  height: 40px;
  margin: auto 0;
  padding: 10px 16px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
  transition: all .15s;
  transform: scale(0);
  transform-origin: calc(100% + 6px) 50%;
  opacity: 0;
}

.main-header-control .control-list .control-balloon::after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  margin: auto 0;
  border-top: 6px solid rgba(0, 0, 0, 0);
  border-bottom: 6px solid rgba(0, 0, 0, 0);
  border-left: 6px solid rgba(0, 0, 0, 0.7);
  content: "";
}

.main-header-control .control-list a:hover ~ .control-balloon {
  transform: scale(1);
  opacity: 1;
}

.main-header-control .message-badge::before {
  display: block;
  position: absolute;
  top: 8px;
  right: 6px;
  width: 21px;
  height: 21px;
  background: url("../images/icon_badge.svg") no-repeat 50% 50%/contain;
  transform: rotate(20deg);
  content: "";
}

.main-header-control .control-favorite img, .main-header-control .control-account img, .main-header-control .control-login img {
  width: 17px;
}

.main-header-control .control-message img, .main-header-control .control-logout img {
  width: 19px;
}

.main-header-control .control-stamp img {
  width: 20px;
}

.main-header-control .control-coupon img {
  width: 25px;
}

.main-header-control .sns-links {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.main-header-control .sns-links li {
  margin: 6px 0;
}

.main-header-control .sns-links li a {
  display: block;
}

.main-header-control .sns-links li img {
  max-width: 40px;
}

.main-header-control .sns-links li img[src$=".svg"] {
  width: 100%;
}

.main-header.footer-fix {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0 !important;
}

.main-header.footer-fix > div {
  top: auto;
  bottom: 0;
}

@keyframes balloonZoom1 {
  0% {
    transform: scale(0) rotate(-90deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

@keyframes balloonZoom2 {
  0% {
    transform: scale(0) rotate(90deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

#navLimited {
  padding-bottom: 680px;
}

#navLimited .simplebar-content {
  min-height: 100%;
  /*background: url("../images/bg/bg_nav_limited.jpg") no-repeat 0 100%/400px auto;*/
}

#navReserve {
  padding-bottom: 680px;
}

#navReserve .simplebar-content {
  position: relative;
  min-height: 100%;
  background: url("../images/bg/bg_nav_reserve.jpg") no-repeat 0 100%/400px auto;
}

#navReserve .simplebar-content::after {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 478px;
  height: 587px;
  background: url("../images/parts_menu_reserve.png") no-repeat 0 0;
  content: "";
}

#navTitle .link-list {
  margin: -2px 0;
}

#navTitle .link-list li {
  margin: 0;
}

#navTitle .link-list li a {
  display: inline-block;
  padding: 2px 8px 2px 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.6);
}

#navTitle .drawer-series-images {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}

#navTitle .drawer-series-images img {
  display: block;
  position: absolute;
  bottom: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity .2s;
}

#navTitle .drawer-series-images img.series-active {
  opacity: 1;
  z-index: 2;
}

#navTitle .drawer-section {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#navTitle .drawer-section.drawer-series-atelier {
  padding-bottom: 144px;
}

#navTitle .drawer-section.drawer-series-other {
  padding-bottom: 230px;
}

#navCategory .drawer-section {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#navCategory .drawer-section.drawer-category-goods {
  padding-bottom: 240px;
}

#navCategory .drawer-section.drawer-category-goods::after {
  bottom: 0;
  right: -102px;
  width: calc(100% + 102px);
  /*background-image: url("../images/parts_category_goods.png");*/
  content: "";
}

#navEvent {
  padding-bottom: 680px;
}

#navEvent .simplebar-content {
  min-height: 100%;
  /*background: url("../images/bg/bg_nav_event.jpg") no-repeat 0 100%/400px auto;*/
}

@media screen and (max-height: 929px) {
  .main-header-nav .nav-aside {
    transform: scale(0.8);
  }
  .main-header-nav .aside-gustchan {
    margin-top: -15px;
  }
  .main-header-nav .aside-kogustchan {
    margin-top: -90px;
  }
}

@media screen and (max-height: 839px) {
  .main-header-nav .nav-aside {
    transform: scale(0.6);
  }
  .main-header-nav .aside-gustchan {
    margin-top: -10px;
  }
  .main-header-nav .aside-kogustchan {
    margin-top: -140px;
  }
}

.static-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1120px;
  height: 104px;
  margin: 0 auto;
}

.static-header-main {
  height: 70px;
}

.static-header-main img {
  display: block;
  width: auto;
  height: 100%;
}

.static-header-sns li {
  display: inline-block;
  margin-left: 10px;
}

.static-header-sns img {
  width: 33px;
  height: 33px;
}

/* main */
.contents-header {
  position: relative;
  z-index: 1;
}

.contents-header .main-heading {
  margin: 0 0 36px;
  padding: 33px 0 27px;
  background: url("../images/bg/bg_decoration_line.png") repeat-x 50% 100%;
  font-weight: normal;
}

.top-notice-block {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 24px;
  padding: 4px 4px 4px 0;
  border-radius: 8px;
}

.top-notice-block h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  min-width: 210px;
  color: #fff;
  font-size: 1.6rem;
}

.top-notice-block .top-notice-list {
  width: calc(100% - 180px);
  padding: 18px 20px;
  background: #fff;
  border-radius: 4px;
}

.top-notice-block .top-notice-list li {
  display: flex;
  font-size: 1.4rem;
}

.top-notice-block .top-notice-list li + li {
  margin-top: 6px;
}

.top-notice-block .top-notice-list time {
  margin-right: 18px;
}

.top-notice-block .top-notice-list a {
  color: inherit;
  text-decoration: underline;
}

.top-notice-block .top-notice-list a:hover {
  text-decoration: none;
}

.important-contents {
  background: #fda01a;
}

.important-contents h2::before {
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 4px;
  background: url("../images/icon_important.svg") no-repeat 0 0/cover;
  content: "";
}

.campaign-contents {
  background: #00a6f1;
}

.main-contents img.picw {
  max-width: 100%;
  margin: 0 auto 30px;
}

.main-contents .gs_midasi {
  margin: 0 auto 20px;
}

.column-contents {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}

.column-contents .contents-header {
  width: 100%;
}

.column-contents .main-contents {
  max-width: 1150px;
  width: calc(100% - 312px);
  position: relative;
  z-index: 1;
}

.column-contents .side-contents {
  position: relative;
  z-index: 1;
  width: 312px;
  min-width: 312px;
  margin-top: 40px;
}

.front_page .column-contents .side-contents {
  margin-top: 0;
}

@media screen and (max-width: 1800px) {
  .column-contents .main-contents {
    width: calc(100% - 260px);
  }
  .column-contents .side-contents {
    width: 260px;
    min-width: 260px;
  }
}

.simple-header {
  margin: 20px 0;
  text-align: center;
}

.simple-header img {
  height: 60px;
}

.single-contents.simple-layout {
  width: 63.229%;
  min-width: 1000px;
  margin: 0 auto;
  padding: 0 32px;
}

.single-contents.simple-layout .contents-header .main-heading {
  padding-top: 0;
}

.single-contents .main-contents {
  border-bottom: 1px solid transparent;
}

/* section style */
.content-section {
  margin-bottom: 80px;
}

.content-section.bg-decoration {
  background: url("../images/bg/bg_decoration_line.png") repeat-x 0 0, url("../images/bg/bg_decoration_tl.png") no-repeat 0 0, url("../images/bg/bg_decoration_tr.png") no-repeat 100% 0;
}

.content-section.bg-color {
  padding-bottom: 70px;
  background-color: #fafafa;
}

.content-section h2 {
  margin-bottom: 35px;
  padding-top: 45px;
  text-align: center;
  font-weight: 300;
}

.content-section h2 img {
  display: block;
  margin: 0 auto 8px;
}

.content-section.limited-content {
  position: relative;
  padding: 14px 15px 70px;
  background: url("../images/bg/bg_limited_tl.png") no-repeat 0 0, url("../images/bg/bg_limited_tr.png") no-repeat 100% 0, url("../images/bg/bg_limited_bl.png") no-repeat 0 100%, url("../images/bg/bg_limited_br.png") no-repeat 100% 100%, url("../images/bg/bg_limited.jpg") no-repeat 50% 0/cover;
}

.content-section.limited-content::before, .content-section.limited-content::after {
  display: block;
  position: absolute;
  z-index: 0;
  pointer-events: none;
  content: "";
}

.content-section.limited-content::before {
  top: 31px;
  bottom: 31px;
  left: 14px;
  right: 14px;
  border-left: 1px solid #b99446;
  border-right: 1px solid #b99446;
}

.content-section.limited-content::after {
  top: 14px;
  bottom: 14px;
  left: 31px;
  right: 31px;
  border-top: 1px solid #b99446;
  border-bottom: 1px solid #b99446;
}

.content-section.limited-content h2 {
  position: relative;
  z-index: 1;
  width: calc(100% - 32px);
  height: 108px;
  margin: 0 auto 30px;
  padding: 14px 0 0;
  border-left: 1px solid #b99446;
  border-right: 1px solid #b99446;
}

.content-section.limited-content h2::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: -18px;
  right: -18px;
  height: 1px;
  background: #b99446;
  content: "";
}

.content-section.limited-content .flex-scroll {
  width: 100% !important;
}

.content-section.limited-content .flex-scroll .product-list-item {
  margin-left: 4px !important;
}

.content-section.limited-content .flex-scroll .product-list-item:last-child {
  margin-right: 4px !important;
}

.flex-labels {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.flex-labels label {
  display: block;
  margin-right: 8px;
  cursor: pointer;
}

.narrow-search {
  display: flex;
  flex-wrap: wrap;
  background: #f5f5f5;
  padding: 25px 17px 17px 25px;
  margin: 0 0 24px 0;
  font-size: 1.3rem;
}

.narrow-search dt {
  min-width: 134px;
  font-weight: bold;
  line-height: 32px;
}

.narrow-search .flex-labels {
  width: calc(100% - 134px);
}

.narrow-search .flex-labels label {
  width: 80px;
  margin-bottom: 8px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #fff;
  line-height: 30px;
  text-align: center;
  transition: all .15s;
}

.narrow-search .flex-labels label:hover {
  border-color: #ff9906;
}

.narrow-search .flex-labels :checked + label {
  border-color: #ff9906;
  background: #ff9906;
  color: #fff;
  font-weight: 600;
}

.sort-block {
  display: flex;
  align-items: center;
  margin-bottom: 65px;
  font-size: 1.3rem;
}

.sort-block .search-total {
  width: 159px;
  font-weight: bold;
}

.sort-block .search-total span {
  font-size: 2.3rem;
}

.sort-block .flex-labels label {
  width: 80px;
  border-radius: 4px;
  background: #f0f0f0;
  line-height: 32px;
  text-align: center;
}

.sort-block .flex-labels :checked + label {
  background: #ff9906;
  color: #fff;
  font-weight: 600;
}

.sort-block .toggle-sort {
  overflow: hidden;
  position: relative;
  margin: 0 8px 0 0;
  border-radius: 4px;
}

.sort-block .toggle-sort-label {
  display: block;
  background: #f0f0f0;
  line-height: 32px;
  padding: 0 34px 0 10px;
}

.sort-block .toggle-sort-label::before, .sort-block .toggle-sort-label::after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  content: "";
}

.sort-block .toggle-sort-label::before {
  right: 17px;
  border-top: 7px solid #c0c0c0;
}

.sort-block .toggle-sort-label::after {
  right: 7px;
  border-bottom: 7px solid #c0c0c0;
}

.sort-block .toggle-sort :checked ~ .toggle-sort-label {
  background: #ff9906;
  color: #fff;
  font-weight: 600;
}

.sort-block .toggle-sort :checked ~ .toggle-sort-label::before {
  border-top-color: #ffc07c;
}

.sort-block .toggle-sort :checked ~ .toggle-sort-label::after {
  border-bottom-color: #ffc07c;
}

.sort-block .toggle-sort .sort-desc:checked ~ .toggle-sort-label::before {
  border-top-color: #fff;
}

.sort-block .toggle-sort .sort-asc:checked ~ .toggle-sort-label::after {
  border-bottom-color: #fff;
}

.sort-block .toggle-sort label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  background: none;
  border-radius: 0;
}

.sort-block .toggle-sort label:first-of-type {
  z-index: 2;
}

.sort-block .toggle-sort label:last-of-type {
  z-index: 1;
}

.sort-block .toggle-sort :checked + label {
  z-index: -1;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-around;
  margin: 0 0 -70px;
  padding: 0 10px;
}

.product-list .product-list-item, .product-list::before, .product-list::after {
  display: block;
  width: 246px;
  min-width: 246px;
  margin: 0 5px;
}

.product-list::before, .product-list::after {
  order: 1;
  content: "";
}

.product-list .product-list-no {
  width: 100%;
  padding-bottom: 10px;
  text-align: center;
}

.product-list .product-list-item {
  position: relative;
  margin: 0 5px 70px 5px;
  padding-top: 35px;
  text-align: center;
}

.product-list .product-list-item::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35px;
  content: "";
}

.product-list .product-list-item.item-recommended::before {
  background: url("../images/label_recommended.png") no-repeat 50% 0;
}

.product-list .product-list-item.item-limited::before {
  background: url("../images/label_limited.png") no-repeat 50% 0;
}

.product-list .product-list-item.item-special::before {
  background: url("../images/label_special.png") no-repeat 50% 0;
}

.product-list .product-list-item::after {
  display: block;
  position: absolute;
  top: 34px;
  left: 0;
  width: 100%;
  height: 3px;
  background: url("../images/border_label.png") no-repeat 50% 0;
  content: "";
}

.product-list .product-list-item a {
  display: block;
  position: relative;
  height: 100%;
  padding-top: 10px;
  text-decoration: none;
}

.product-list .product-list-item .item-img {
  position: relative;
  margin-bottom: 15px;
  width: 246px;
  height: 246px;
  min-height: 246px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-list .product-list-item .item-img img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}

.product-list .product-list-item.item-new .item-img::before {
  display: block;
  position: absolute;
  top: -9px;
  right: 7px;
  z-index: 1;
  width: 31px;
  height: 40px;
  background: url("../images/label_new.png") no-repeat 0 0/contain;
  content: "";
}

.product-list .product-list-item .item-txt {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: calc(100% - 246px - 15px);
}

.product-list .product-list-item .item-txt .item-label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 80%;
  min-height: 24px;
  margin: 0px auto 10px;
  padding: 4px 25px;
  border: 1px solid currentColor;
  border-radius: 15px;
  color: #896623;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.4;
}

.product-list .product-list-item .item-txt .item-label.item-label-soldout {
  color: #999;
}

.product-list .product-list-item .item-txt .item-label::before, .product-list .product-list-item .item-txt .item-label::after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  height: 3px;
  margin: auto 0;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.product-list .product-list-item .item-txt .item-label::before {
  left: 5px;
}

.product-list .product-list-item .item-txt .item-label::after {
  right: 5px;
}

.product-list .product-list-item .item-txt .item-name {
  width: 100%;
  margin-top: 34px;
  color: #614916;
  font-size: 1.4rem;
  line-height: 1.571;
}

.product-list .product-list-item .item-txt .item-label + .item-name {
  margin-top: 0;
}

.product-list .product-list-item .item-txt .item-price {
  width: 100%;
  margin: auto 0 0;
  color: #f0444f;
  font-size: 1.4rem;
  line-height: 1.571;
  font-weight: bold;
}

.product-list .product-list-item.favorite-item {
  padding-top: 40px;
}

.product-list .product-list-item.favorite-item::before {
  display: none;
}

.product-list .product-list-item.favorite-item a {
  padding: 0;
}

.product-list .product-list-item.favorite-item .item-txt .item-name {
  margin-top: 0;
}

.product-kuji {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-around;
  margin: 0 0 -70px;
  padding: 0 10px;
}

.product-kuji .product-kuji-item, .product-kuji::before, .product-kuji::after {
  display: block;
  width: 246px;
  min-width: 246px;
  margin: 0 5px;
}

.product-kuji::before, .product-kuji::after {
  order: 1;
  content: "";
}

.product-kuji .product-kuji-item {
  position: relative;
  margin: 0 5px 70px 5px;
  text-align: center;
}

.product-kuji .product-kuji-item .kuji-name {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 2px 10px;
  background: #fff;
  border-radius: 2px;
  border: 1px solid #aaa091;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.25;
  pointer-events: none;
}

.product-kuji .product-kuji-item .kuji-name.rank-A, .product-kuji .product-kuji-item .kuji-name.rank-B, .product-kuji .product-kuji-item .kuji-name.rank-C {
  font-size: 1.4rem;
  border-color: rgba(0, 0, 0, 0.25);
}

.product-kuji .product-kuji-item .kuji-name.rank-A {
  background: #fed834;
}

.product-kuji .product-kuji-item .kuji-name.rank-B {
  background: #cacfd4;
}

.product-kuji .product-kuji-item .kuji-name.rank-C {
  background: #d5b586;
}

.product-kuji .product-kuji-item.kuji-a .kuji-name, .product-kuji .product-kuji-item.kuji-b .kuji-name, .product-kuji .product-kuji-item.kuji-c .kuji-name {
  font-size: 1.4rem;
  border-color: rgba(0, 0, 0, 0.25);
}

.product-kuji .product-kuji-item.kuji-a .kuji-name {
  background: #fed834;
}

.product-kuji .product-kuji-item.kuji-b .kuji-name {
  background: #cacfd4;
}

.product-kuji .product-kuji-item.kuji-c .kuji-name {
  background: #d5b586;
}

.product-kuji .product-kuji-item a {
  display: block;
  position: relative;
  height: 100%;
  padding-top: 10px;
  text-decoration: none;
}

.product-kuji .product-kuji-item .item-img {
  position: relative;
  z-index: 0;
  margin-bottom: 15px;
  width: 246px;
  height: 246px;
  min-height: 246px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.product-kuji .product-kuji-item .item-img img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}

.product-kuji .product-kuji-item .item-txt {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: calc(100% - 246px - 15px);
}

.product-kuji .product-kuji-item .item-txt .item-name {
  width: 100%;
  margin: 0 0 12px;
  color: #614916;
  font-size: 1.4rem;
  line-height: 1.571;
}

.product-kuji .product-kuji-item .item-txt .item-price {
  width: 100%;
  margin: auto 0 0;
  color: #f0444f;
  font-size: 1.4rem;
  line-height: 1.571;
  font-weight: bold;
}

.product-kuji .product-kuji-item.kuji-zero .item-img::before {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100px;
  height: 40px;
  margin: auto;
  background: #ff9907;
  border: 1px solid rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 40px;
  text-align: center;
  transform: rotate(-20deg);
  content: "終了";
  pointer-events: none;
}

#complete_wrap .product-kuji .product-kuji-item {
  margin: 0 5px 50px 5px;
}

#complete_wrap .product-kuji .product-kuji-item .item-img {
  cursor: default;
}

.kuji-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: url("/assets/images/btn_close.png") no-repeat top 25px right 25px rgba(0, 0, 0, 0.75);
  cursor: pointer;
}

.kuji-container {
  display: none;
  overflow-y: auto;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  width: 600px;
  height: 800px;
  max-height: 90%;
  margin: auto;
  padding: 20px;
  background: #fff;
  text-align: center;
}

.kuji-container img {
  margin-bottom: 12px;
  max-width: 100%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.075);
}

.kuji-container .kuji-name {
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.kuji-container .kuji-title {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.kuji-container .kuji-desc {
  font-size: 1.3rem;
}

.kuji-container .kuji-desc img {
  max-width: 100%;
}

@media screen and (min-width: 1001px) {
  .flex-scroll {
    overflow-x: auto;
    width: calc(100% - 20px);
    margin: 0 auto;
  }
  .flex-scroll .sc-left, .flex-scroll .sc-right {
    display: block !important;
  }
  .flex-scroll .product-list {
    margin-bottom: 0;
    padding: 0;
  }
  .flex-scroll .product-list::before, .flex-scroll .product-list::after {
    display: none;
  }
  .flex-scroll .product-list-item {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1800px) and (min-width: 1001px) {
  .flex-scroll {
    margin-bottom: -30px;
  }
  .flex-scroll .product-list {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .flex-scroll .product-list .product-list-item {
    margin-bottom: 30px;
  }
  .flex-scroll .simplebar-track.simplebar-horizontal {
    bottom: 7px;
    height: 10px;
  }
  .flex-scroll .simplebar-track.simplebar-horizontal .simplebar-scrollbar {
    top: 0;
    bottom: 0;
    height: 4px;
    margin: auto 0;
    transition: height 50ms ease;
  }
  .flex-scroll .simplebar-track.simplebar-horizontal .simplebar-scrollbar::before {
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 2px 0 rgba(255, 255, 255, 0.5);
    transition: none;
    opacity: 1;
  }
  .flex-scroll .simplebar-track.simplebar-horizontal.simplebar-hover .simplebar-scrollbar {
    height: 8px;
  }
  .sc-left, .sc-right {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 32px;
    height: 88px;
    margin: auto 0;
    background-repeat: no-repeat;
    background-size: 14px auto;
    background-color: #f9a225;
    cursor: pointer;
    transition: opacity .15s;
  }
  .sc-left.hide, .sc-right.hide {
    opacity: 0;
    pointer-events: none;
  }
  .sc-left {
    left: 0;
    border-radius: 0 10px 10px 0;
    background-image: url("../images/slider/slider_parts_prev.svg");
    background-position: 45% 50%;
  }
  .sc-right {
    right: 0;
    border-radius: 10px 0 0 10px;
    background-image: url("../images/slider/slider_parts_next.svg");
    background-position: 55% 50%;
  }
}

.panel-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.panel-list li {
  margin: 0 8px 16px;
}

.panel-list a {
  display: block;
  position: relative;
  width: 256px;
  height: 256px;
}

.panel-list a img {
  display: block;
  width: 100%;
  height: 100%;
}

.panel-list a .panel-after {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity .2s;
}

.panel-list a:hover .panel-after {
  opacity: 1;
}

.btn-more {
  margin-top: 40px;
  text-align: center;
}

.btn-more button {
  min-width: 270px;
  height: 45px;
  padding: 0 50px;
  background: url("../images/icon_arrow.png") no-repeat right 15px top 50% #ff9906;
  border: none;
  border-radius: 30px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4);
  color: #fff;
}

/* 商品詳細 */
.product .btn-addcart-error {
  margin: 0 0 18px;
  color: #f0444f;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
}

.product .btn-addcart, .product .btn-favorite {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 270px;
  height: 45px;
  border: none;
  border-radius: 45px;
  font: inherit;
  font-size: 1.4rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4);
}

.product .btn-addcart {
  margin-bottom: 8px;
  background: #ff9906;
  color: #fff;
}

.product .btn-addcart:not(:disabled)::before {
  display: block;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  background: url("../images/icon_cart.svg") no-repeat 0 0/contain;
  content: "";
}

.product .btn-addcart:disabled {
  background: #bbb;
  opacity: .8;
  cursor: default;
}

.product .btn-favorite {
  background: #ffe9c6;
}

.product .btn-favorite::before {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background: url("../images/icon_heart_outline.svg") no-repeat 0 0/contain;
  content: "";
}

.detail-header {
  display: flex;
  align-items: flex-end;
  margin: 0 0 20px;
  padding: 40px 0 30px 24px;
  background: url("../images/bg/bg_decoration_line.png") repeat-x 50% 100%;
}

.detail-header h1 {
  color: #4b3921;
  font-weight: normal;
  font-size: 1.5;
}

.detail-header-left {
  padding-right: 24px;
}

.detail-header .detail-labels {
  margin-bottom: 16px;
  font-size: 1.3rem;
  line-height: 20px;
}

.detail-header .detail-labels li {
  display: inline-block;
  margin: 0 1px 4px 0;
  padding: 0 7px;
  border: 1px solid #aaa091;
  color: #7e7363;
}

.detail-header .detail-labels li.label-new {
  color: #f74437;
  border-color: currentColor;
}

.detail-header .detail-status {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.detail-header .detail-status li {
  margin-right: 15px;
  color: #4b3921;
  font-size: 1.3rem;
}

.detail-header .detail-status .status-label {
  display: inline-block;
  padding: 0 7px;
  border: 1px solid currentColor;
  line-height: 20px;
}

.detail-header .detail-status .state-reserve {
  color: #f18613;
}

.detail-header .detail-status .state-date {
  margin-right: 10px;
}

.detail-contents {
  margin-left: 24px;
}

.detail-contents h2 {
  margin: 24px 0;
  font-size: 2.6rem;
  line-height: 1.231;
  font-weight: normal;
}

.detail-contents p {
  margin: 24px 0;
  font-size: 1.4rem;
  line-height: 1.714;
}

.detail-contents img[style*="margin"] {
  margin: 0 !important;
}

.detail-contents .price-area {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.detail-contents .detail-header-right {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}

.detail-contents .detail-header-right .btn-addcart-error {
  width: 100%;
  margin-bottom: 18px;
  text-align: right;
}

.detail-contents .detail-header-right .btn-addcart {
  margin-left: 20px;
}

.detail-contents .detail-header-right .btn-favorite {
  margin: 0 0 8px 0;
}

.detail-contents .datail-price {
  margin: 0 0 24px;
  font-size: 2.3rem;
  color: #f0444f;
  line-height: 1;
  white-space: nowrap;
}

.detail-contents .datail-price p.stock {
  font-size: 16px;
  color: #4b3921;
  margin: 10px 0 0;
}

.detail-contents .datail-price p.stock .few {
  margin-left: 2em;
  color: #f0444f;
  font-weight: 600;
}

.detail-contents .datail-price del {
  font-size: 1.3rem;
  color: #191919;
}

.detail-contents .product-related {
  margin: 0 0 18px;
  padding: 15px;
  background: #f5f5f5;
  color: #4b3921;
  font-size: 1.3rem;
}

.detail-contents .product-related p {
  margin: 0 0 8px;
  font-weight: bold;
}

.detail-contents .product-related .cs-init {
  width: 100%;
  height: 32px;
  padding: 0 0 0 12px;
  font-size: 1.3rem;
}

.detail-contents .product-options {
  display: flex;
  align-items: stretch;
  margin-bottom: 18px;
  padding: 15px;
  background: #f5f5f5;
  color: #4b3921;
  font-size: 1.3rem;
}

.detail-contents .product-options:empty {
  height: 1px;
  padding: 0;
  background: #e5e5e5;
}

.detail-contents .product-options input:not([type="radio"]):not([type="checkbox"]), .detail-contents .product-options select, .detail-contents .product-options .cs-wrapper .cs-button {
  width: 100%;
  height: 36px;
}

.detail-contents .product-options > dt {
  border-right: 0;
}

.detail-contents .product-options > dt label {
  line-height: 32px;
}

.detail-contents .product-options > dt label::after {
  content: "：";
}

.detail-contents .product-options dl {
  width: 260px;
}

.detail-contents .product-options dl dd.form-group {
  width: 244px;
}

.detail-contents .product-options dl dt {
  margin-bottom: 10px;
}

.detail-contents .product-options dl dt span.required {
  display: none;
}

.detail-contents .product-options dl dt label {
  font-weight: bold;
}

.detail-contents .product-options dl:first-of-type ~ * {
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid #dadada;
}

.detail-contents .product-options .product-options-select {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 344px;
}

.detail-contents .product-options .product-options-select dt {
  min-width: 60px;
  font-weight: bold;
  line-height: 32px;
  margin: 0;
}

.detail-contents .product-options .product-options-select dt::after {
  content: "：";
}

.detail-contents .product-options .product-options-select dt span.required {
  display: none;
}

.detail-contents .product-options .product-options-select dd {
  width: calc(100% - 60px);
}

.detail-contents .product-options .product-options-select dd ~ * {
  margin-top: 8px;
}

.detail-contents .product-options .product-options-select dd p {
  margin: 0;
  color: #f0444f;
  font-size: 1.2rem;
}

.detail-contents .product-options .product-options-select .cs-wrapper {
  display: block;
}

.detail-contents .product-options .product-options-list p {
  margin-bottom: 14px;
  font-weight: bold;
  line-height: 1;
}

.detail-contents .product-options .product-options-list p::after {
  content: "：";
}

.detail-contents .product-options .product-options-list .checkbox-list li ~ li {
  margin-top: 8px;
}

.detail-contents .product-options .product-options-list .checkbox-list label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.detail-contents .product-options .product-options-list .checkbox-list label::before {
  display: block;
  min-width: 24px;
  min-height: 24px;
  margin-right: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: url("../images/icon_check.svg") no-repeat 50px 50px/contain #fff;
  box-sizing: border-box;
  content: "";
}

.detail-contents .product-options .product-options-list .checkbox-list :checked + label::before {
  background-position: 50% 50%;
}

.detail-contents .product-images {
  overflow: hidden;
  padding: 1px 0 0 1px;
}

.detail-contents .product-images li {
  overflow: hidden;
  float: left;
  position: relative;
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
}

.detail-contents .product-images li:first-child {
  width: 50%;
  padding-top: calc(50% - 1px);
}

.detail-contents .product-images li:first-child:last-child {
  float: none;
  margin: 0 auto;
}

.detail-contents .product-images li:nth-child(2):last-child {
  width: 50%;
  padding-top: calc(50% - 1px);
}

.detail-contents .product-images li:first-child:nth-last-child(3) {
  margin-left: 12.5%;
}

.detail-contents .product-images li:nth-child(2):not(:last-child), .detail-contents .product-images li:nth-child(2) ~ li {
  width: 25%;
  padding-top: calc(25% - 1px);
}

.detail-contents .product-images a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.075);
}

.detail-contents .product-images img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

.detail-contents .sns-list {
  display: flex;
  margin: 24px 0;
}

.detail-contents .sns-list li {
  margin-right: 8px;
}

.detail-contents .sns-list a {
  display: block;
}

.detail-contents .sns-list img {
  display: block;
  width: 32px;
}

.detail-contents .product-description {
  color: #4b3921;
  font-size: 1.4rem;
  line-height: 1.714;
}

.detail-contents .product-description .price-red {
  color: #f0444f;
}

.detail-section h2 {
  margin-bottom: 24px;
  font-size: 2.6rem;
  line-height: 1.231;
  font-weight: normal;
}

.detail-section p {
  margin: 24px 0;
  font-size: 1.4rem;
  line-height: 1.714;
}

.detail-section p.detail-note {
  font-size: 1.3rem;
}

.detail-section .detail-images {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 24px 0;
  padding: 1px 0 0 1px;
}

.detail-section .detail-images a {
  display: block;
  margin: 0 1px 1px 0;
  width: 100%;
}

.detail-section .detail-images img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.detail-buttons {
  margin: 45px 0 90px;
}

.detail-buttons button {
  margin-left: auto;
  margin-right: auto;
}

.detail-buttons .product-options {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding: 15px;
  background: #f5f5f5;
  color: #4b3921;
  font-size: 1.3rem;
}

.detail-buttons .product-options dt {
  min-width: 60px;
  font-weight: bold;
  line-height: 32px;
  margin: 0;
}

.detail-buttons .product-options dt::after {
  content: "：";
}

.detail-buttons .product-options dd {
  width: 284px;
}

.detail-buttons .product-options input:not([type="radio"]):not([type="checkbox"]) {
  width: 100%;
  height: 36px;
}

/* side */
.side-contents {
  padding-left: 24px;
}

.side-search {
  font-size: 1.3rem;
  text-align: center;
}

.side-search .cs-wrapper {
  margin-bottom: 16px;
}

.side-search .cs-init {
  display: block;
  width: 100%;
  height: 32px;
  margin-bottom: 16px;
}

.side-search-text {
  display: block;
  width: 100%;
  height: 32px;
  margin-bottom: 24px;
}

.side-search-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 24px;
  border: none;
  background: #63584d;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.3);
  color: #fff;
}

.side-search-submit::before {
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  background: url("../images/icon_search.svg") no-repeat 50% 50%/contain;
  content: "";
}

.side-search-reset {
  border: none;
}

.side-section {
  position: relative;
  margin: 40px 0 60px;
  padding: 20px 0 0;
  background: url("../images/bg/bg_decoration_line.png") repeat-x 50% 0;
}

.side-section:first-child {
  margin-top: 0;
}

.side-section h3 {
  margin: 0 0 25px -.075em;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -.15em;
  text-align: center;
}

.side-section h3 img {
  display: block;
  margin: 0 auto 6px;
}

.side-section h4 {
  margin: 20px 0 10px;
  font-size: 1.3rem;
}

.side-section .side-links li {
  margin: 10px 0;
  font-size: 1.3rem;
}

.side-section .side-links.narrow li {
  margin: 3px 0;
}

.side-section .side-links a {
  color: #0c5dc2;
  text-decoration: none;
}

.side-section .side-links a:hover {
  text-decoration: underline;
}

.side-section .side-4koma img {
  width: 100%;
}

.side-section .side-more {
  margin-top: 20px;
}

.side-section .side-more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 45px;
  padding: 0 24px;
  background: #ff9906;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4);
  border-radius: 30px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.product-list-ranking {
  padding: 0 24px;
}

.product-list-ranking .product-list-item {
  position: relative;
  z-index: 0;
  margin-bottom: 34px;
  text-align: center;
}

.product-list-ranking .product-list-item::before {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 2;
  pointer-events: none;
}

.product-list-ranking .product-list-item:nth-child(1)::before {
  content: url("../images/icon_ranking_01.png");
}

.product-list-ranking .product-list-item:nth-child(2)::before {
  content: url("../images/icon_ranking_02.png");
}

.product-list-ranking .product-list-item:nth-child(3)::before {
  content: url("../images/icon_ranking_03.png");
}

.product-list-ranking .product-list-item:nth-child(4)::before {
  content: url("../images/icon_ranking_04.png");
}

.product-list-ranking .product-list-item:nth-child(5)::before {
  content: url("../images/icon_ranking_05.png");
}

.product-list-ranking .product-list-item:last-child {
  margin-bottom: 0;
}

.product-list-ranking .product-list-item a {
  display: block;
  padding-bottom: 6px;
  color: inherit;
  text-decoration: none;
  transition: background-color .2s, box-shadow .2s;
}

.product-list-ranking .product-list-item a:hover {
  background-color: #f4f8fb;
  box-shadow: 0 0 0 4px #f4f8fb;
}

.product-list-ranking .product-list-item .item-img {
  position: relative;
  z-index: 1;
  width: 216px;
  max-width: 100%;
  padding-top: 100%;
  margin: 0 auto 10px;
}

.product-list-ranking .product-list-item .item-img img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

.product-list-ranking .product-list-item .item-name {
  font-size: 1.3rem;
}

.side-info {
  max-height: 400px;
}

.side-info ul {
  padding: 0 12px;
  font-size: 1.3rem;
  line-height: 1.538;
}

.side-info li {
  margin-bottom: 20px;
}

.side-info li:last-child {
  margin-bottom: 0;
}

.side-info li a {
  color: inherit;
}

.side-info li a:hover {
  text-decoration: none;
}

.side-info time {
  display: block;
  margin-bottom: 2px;
  opacity: .5;
}

.side-info .simplebar-track.simplebar-vertical {
  right: 0;
  width: 10px;
}

.side-info .simplebar-track.simplebar-vertical .simplebar-scrollbar {
  left: 0;
  right: 0;
  width: 4px;
  margin: 0 auto;
  transition: width 50ms ease;
}

.side-info .simplebar-track.simplebar-vertical .simplebar-scrollbar::before {
  top: 3px;
  bottom: 3px;
  border-radius: 8px;
  background-color: #000;
  box-shadow: 0 0 2px 0 #fff;
}

.side-info .simplebar-track.simplebar-vertical.simplebar-hover .simplebar-scrollbar {
  width: 8px;
}

/* footer */
.main-footer {
  position: relative;
  z-index: 2;
  min-width: 1280px;
  padding-top: 44px;
  background: url("/assets/images/bg/footer_bg.jpg") 50% 0;
}

.main-footer > table {
  display: none !important;
}

.main-footer::after {
  display: block;
  position: absolute;
  bottom: 130px;
  left: 0;
  z-index: 0;
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.13);
  content: "";
}

.main-footer.static-footer {
  padding-top: 0;
}

.main-footer.static-footer::after {
  display: none;
}

.simple-footer {
  width: 63.229%;
  min-width: 1000px;
  margin: 0 auto;
  padding: 0 32px 15px;
}

.simple-footer p {
  font-size: 1.4rem;
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "footer-list-begin . . footer-list-end" "footer-list-begin . . footer-list-end";
  position: relative;
  z-index: 5;
  width: 1128px;
  margin: 0 auto;
  color: #fff;
  text-shadow: 0 0 2px #000;
}

.footer-grid .footer-list {
  padding-right: 1em;
}

.footer-grid .footer-list:first-child {
  grid-area: footer-list-begin;
}

.footer-grid .footer-list:last-child {
  grid-area: footer-list-end;
}

.footer-grid .footer-list h4 {
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.footer-grid .footer-list li {
  margin: 10px 0;
  font-size: 1.3rem;
}

.footer-grid a {
  color: #fff;
  text-decoration: none;
}

.footer-grid a:hover {
  text-decoration: underline;
}

@media all and (-ms-high-contrast: none) {
  .footer-grid {
    display: -ms-grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    -ms-grid-rows: 1fr 1fr;
  }
  .footer-grid .footer-list {
    -ms-grid-column-span: 1;
  }
  .footer-grid .footer-list:first-child, .footer-grid .footer-list:nth-child(2), .footer-grid .footer-list:nth-child(3), .footer-grid .footer-list:last-child {
    grid-row: 1;
    -ms-grid-row: 1;
  }
  .footer-grid .footer-list:nth-child(4), .footer-grid .footer-list:nth-child(5) {
    -ms-grid-row-span: 1;
    grid-row: 2;
    -ms-grid-row: 2;
  }
  .footer-grid .footer-list:first-child {
    -ms-grid-row-span: 2;
    grid-column: 1;
    -ms-grid-column: 1;
  }
  .footer-grid .footer-list:nth-child(2) {
    -ms-grid-row-span: 1;
    grid-column: 2;
    -ms-grid-column: 2;
  }
  .footer-grid .footer-list:nth-child(3) {
    -ms-grid-row-span: 1;
    grid-column: 3;
    -ms-grid-column: 3;
  }
  .footer-grid .footer-list:nth-child(4) {
    grid-column: 2;
    -ms-grid-column: 2;
  }
  .footer-grid .footer-list:nth-child(5) {
    grid-column: 3;
    -ms-grid-column: 3;
  }
  .footer-grid .footer-list:last-child {
    -ms-grid-row-span: 2;
    grid-column: 4;
    -ms-grid-column: 4;
  }
}

.footer-bottom {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  width: 1128px;
  margin: 30px auto 0;
  height: 130px;
  font-size: 1.2rem;
  color: #fff;
  text-shadow: 0 0 2px #000;
}

.static-footer .footer-bottom {
  margin-top: 0 !important;
}

.footer-bottom .footer-logo {
  margin-right: 60px;
}

.footer-bottom .footer-logo img {
  display: block;
}

.footer-bottom-links {
  display: flex;
  margin-bottom: 12px;
}

.footer-bottom-links li {
  margin-right: 18px;
  padding-right: 18px;
  line-height: 1;
  border-right: 1px solid #fff;
}

.footer-bottom-links li:last-child {
  margin: 0;
  padding: 0;
  border: none;
}

.footer-bottom-links a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  text-decoration: underline;
}

.footer-bottom-links a[target="_blank"] {
  padding-left: 16px;
  background: url("/assets/images/icon_blank_w.svg") no-repeat 0 50%/11px auto;
}

@media screen and (max-width: 1800px) {
  .footer-grid {
    width: 60%;
    margin: 0 0 0 7.5%;
  }
  .footer-bottom {
    margin: 30px 0 0 7.5%;
  }
}

/* ガストちゃん */
.gust-chan {
  overflow: hidden;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 680px;
  height: 680px;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.gust-chan img {
  display: block;
  position: absolute;
}

.gust-chan-main {
  right: 23px;
  bottom: -17px;
  z-index: 2;
  animation: 3s cubic-bezier(0.645, 0.045, 0.355, 1) infinite alternate floatKogust;
}

.gust-chan-item-01 {
  right: 347px;
  bottom: 496px;
  z-index: 2;
  animation: 2.5s cubic-bezier(0.645, 0.045, 0.355, 1) infinite alternate float01;
}

.gust-chan-item-02 {
  right: 263px;
  bottom: 477px;
  z-index: 3;
  animation: 2s cubic-bezier(0.645, 0.045, 0.355, 1) infinite alternate float03;
}

.gust-chan-item-03 {
  right: 200px;
  bottom: 532px;
  z-index: 2;
  animation: 2.4s cubic-bezier(0.645, 0.045, 0.355, 1) infinite alternate float02;
}

.gust-chan-item-04 {
  right: 0;
  bottom: 309px;
  z-index: 3;
  animation: 1.7s cubic-bezier(0.645, 0.045, 0.355, 1) infinite alternate float04;
}

.gust-chan-item-05 {
  right: 418px;
  bottom: 0;
  z-index: 3;
  animation: 2.1s cubic-bezier(0.645, 0.045, 0.355, 1) infinite alternate float05;
}

.gust-chan-item-06 {
  right: 296px;
  bottom: 432px;
  z-index: 1;
  animation: 2.3s cubic-bezier(0.645, 0.045, 0.355, 1) infinite alternate float01;
}

.gust-chan-item-07 {
  right: 491px;
  bottom: 41px;
  z-index: 1;
  animation: 2.7s cubic-bezier(0.645, 0.045, 0.355, 1) infinite alternate float02;
}

/* keyframes */
@keyframes floatKogust {
  0% {
    transform: translate(0, -20px);
  }
  100% {
    transform: translate(0, 20px);
  }
}

@keyframes float01 {
  0% {
    transform: translate(0, -15px);
  }
  100% {
    transform: translate(0, 15px);
  }
}

@keyframes float02 {
  0% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, -15px);
  }
}

@keyframes float03 {
  0% {
    transform: translate(0, -10px);
  }
  100% {
    transform: translate(0, 10px);
  }
}

@keyframes float04 {
  0% {
    transform: translate(0, 10px);
  }
  100% {
    transform: translate(0, -10px);
  }
}

@keyframes float05 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 20px);
  }
}

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

/* stamp */
body.body-blur {
  overflow: hidden;
}

body.body-blur > :not(.no-blur) {
  filter: blur(5.6px);
}

#stampOverlay {
  overflow-x: hidden;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20000;
  background: rgba(0, 0, 0, 0.6);
  animation: .2s fadeInLayer;
  transform: translateZ(0);
}

#stampOverlay .stamp-close {
  position: absolute;
  top: -90px;
  right: 40px;
  z-index: 100;
  width: 58px;
  height: 58px;
  background: url("../images/stamp/parts_close.svg") no-repeat 0 0/contain;
  cursor: pointer;
}

@keyframes fadeInLayer {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.stamp-wrapper {
  position: relative;
  width: 760px;
  margin: 130px auto;
  color: #4f2313;
}

.stamp-wrapper .stamp-name-label {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -21px;
  left: 78px;
  z-index: 5;
  height: 42px;
  border-radius: 40px;
  background: #361f17;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
}

.stamp-wrapper .stamp-block-01 {
  position: relative;
  z-index: 2;
  height: 243px;
  margin: 0 0 30px;
}

.stamp-wrapper .stamp-block-01 .stamp-name-label {
  width: 184px;
}

.stamp-wrapper .stamp-block-01 .stamp-block-body {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: url("../images/stamp/parts_ivy_left.png") no-repeat 20px 50%, url("../images/stamp/parts_ivy_right.png") no-repeat right 20px top 50%, #fff;
  border-radius: 20px;
  box-shadow: 5px 7px 3px 0 rgba(0, 0, 0, 0.4);
}

.stamp-wrapper .stamp-block-01 .stamp-main-text {
  font-size: 3.7rem;
  font-weight: 600;
  line-height: 1.27;
  text-align: center;
}

.stamp-wrapper .stamp-block-01 .stamp-btn {
  display: flex;
  justify-content: center;
  margin: 15px 0 18px;
}

.stamp-wrapper .stamp-block-01 .stamp-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 40px;
  border-radius: 40px;
  font-size: 1.5rem;
  text-decoration: none;
}

.stamp-wrapper .stamp-block-01 .stamp-btn .stamp-btn-login {
  margin-right: 15px;
  background: #ff9906;
  color: #fff;
  font-weight: 600;
}

.stamp-wrapper .stamp-block-01 .stamp-btn .stamp-btn-register {
  background: #ffe9c6;
  color: #191919;
}

.stamp-wrapper .stamp-block-01 .stamp-notice {
  font-size: 1.4rem;
  font-weight: 600;
}

.stamp-wrapper .stamp-block-01::before {
  display: block;
  position: absolute;
  bottom: -44px;
  left: -38px;
  z-index: 6;
  width: 184px;
  height: 44px;
  background: url("../images/stamp/parts_balloontail_left.png") no-repeat 0 0;
  content: "";
}

.stamp-wrapper .stamp-block-01::after {
  display: block;
  position: absolute;
  top: -24px;
  left: -409px;
  z-index: 4;
  width: 608px;
  height: 665px;
  background: url("../images/stamp/character_gust_chan.png") no-repeat 0 0;
  content: "";
}

.stamp-wrapper .stamp-block-logined {
  position: relative;
  z-index: 2;
  height: 243px;
  margin: 0 0 30px;
}

.stamp-wrapper .stamp-block-logined .stamp-name-label {
  width: 246px;
  padding-left: .5em;
}

.stamp-wrapper .stamp-block-logined .stamp-block-body {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: url("../images/stamp/parts_ivy_left.png") no-repeat 20px 50%, url("../images/stamp/parts_ivy_right.png") no-repeat right 20px top 50%, #fff;
  border-radius: 20px;
  box-shadow: 5px 7px 3px 0 rgba(0, 0, 0, 0.4);
}

.stamp-wrapper .stamp-block-logined .stamp-block-body .stamp-main-text {
  font-size: 3.7rem;
  font-weight: 600;
  line-height: 1.27;
}

.stamp-wrapper .stamp-block-logined .stamp-block-body .stamp-position {
  display: inline-block;
  margin: -20px 10px 0;
  color: #fb3c1b;
  font-size: 5.8rem;
}

.stamp-wrapper .stamp-block-logined::before {
  display: block;
  position: absolute;
  bottom: -46px;
  right: -34px;
  z-index: 4;
  width: 153px;
  height: 46px;
  background: url("../images/stamp/parts_balloontail_right.png") no-repeat 0 0;
  content: "";
}

.stamp-wrapper .stamp-block-logined::after {
  display: block;
  position: absolute;
  top: 4px;
  right: -365px;
  z-index: 5;
  width: 472px;
  height: 453px;
  background: url("../images/stamp/character_kogust_chan.png") no-repeat 0 0;
  content: "";
}

.stamp-wrapper .stamp-block-card {
  position: relative;
  z-index: 1;
  height: 426px;
  margin: 0 0 30px;
}

.stamp-wrapper .stamp-block-card::before {
  display: block;
  position: absolute;
  top: -119px;
  left: -119px;
  z-index: -1;
  width: 998px;
  height: 664px;
  background: url("../images/stamp/stamp_card.png") no-repeat 0 0;
  pointer-events: none;
  content: "";
}

.stamp-wrapper .stamp-block-card .stamp-block-body {
  width: 100%;
  height: 100%;
}

.stamp-wrapper .stamp-block-card .stamp-block-body .stamp-no-label {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
}

.stamp-wrapper .stamp-block-card .stamp-block-body .stamp-expire {
  position: absolute;
  bottom: 23px;
  left: 100px;
  color: #724f42;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 24px;
}

.stamp-wrapper .stamp-block-card .stamp-block-body .stamp-pager {
  position: absolute;
  bottom: 26px;
  left: 0;
  width: 100%;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
}

.stamp-wrapper .stamp-block-card .stamp-block-body .stamp-table {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 620px;
  margin: 100px auto 0;
}

.stamp-wrapper .stamp-block-card .stamp-block-body .stamp-table li {
  position: relative;
  width: 103px;
  height: 103px;
  margin: 0 25px 25px 0;
}

.stamp-wrapper .stamp-block-card .stamp-block-body .stamp-table li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #8d6c56;
  font-size: 4rem;
  font-weight: bold;
}

.stamp-wrapper .stamp-block-card .stamp-block-body .stamp-table li:nth-child(5n) {
  margin-right: 0;
}

.stamp-wrapper .stamp-block-card .stamp-block-body .stamp-table li.stamp span {
  display: none;
}

.stamp-wrapper .stamp-block-card .stamp-block-body .stamp-table li.stamp::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: url("../images/stamp/parts_stamp.png") no-repeat 50% 50%;
  content: "";
}

.stamp-wrapper .stamp-block-detail {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 20px;
}

.stamp-wrapper .stamp-block-detail .stamp-block-body {
  padding: 40px 90px;
}

.stamp-wrapper .stamp-block-detail .stamp-block-body h2 {
  margin-bottom: 10px;
  font-size: 2.9rem;
  line-height: 1.172;
  text-align: center;
}

.stamp-wrapper .stamp-block-detail .stamp-block-body h3 {
  margin: 30px 0 0;
  padding-bottom: 10px;
  border-bottom: 3px solid currentColor;
  font-size: 1.9rem;
  text-align: center;
}

.stamp-wrapper .stamp-block-detail .stamp-block-body h3 + p {
  margin-top: 10px;
}

.stamp-wrapper .stamp-block-detail .stamp-block-body p {
  font-size: 1.5rem;
  text-align: center;
}

.stamp-wrapper .stamp-block-detail .stamp-block-body p a {
  color: inherit;
}

.stamp-wrapper .stamp-block-detail .stamp-block-body .stamp-tokuten {
  overflow: hidden;
  font-size: 1.5rem;
}

.stamp-wrapper .stamp-block-detail .stamp-block-body .stamp-tokuten dt {
  float: left;
  width: 200px;
  height: 40px;
  padding-right: 38px;
  line-height: 39px;
  border-bottom: 1px solid #e9e3e1;
  font-weight: 600;
  text-align: right;
}

.stamp-wrapper .stamp-block-detail .stamp-block-body .stamp-tokuten dd {
  float: left;
  width: calc(100% - 200px);
  height: 40px;
  line-height: 39px;
  border-bottom: 1px solid #e9e3e1;
}

.stamp-wrapper .stamp-block-step {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 20px;
  margin: 0 0 30px;
}

.stamp-wrapper .stamp-block-step .stamp-block-body {
  padding: 40px 0 60px;
}

.stamp-wrapper .stamp-block-step .stamp-block-body h2 {
  margin-bottom: 20px;
  font-size: 2.9rem;
  line-height: 1.172;
  text-align: center;
}

.stamp-wrapper .stamp-block-step .stamp-block-body h2 span {
  font-size: 4.4rem;
}

.stamp-wrapper .stamp-block-step .stamp-block-body .stamp-step {
  display: flex;
  width: 650px;
  margin: 0 auto;
  text-align: center;
}

.stamp-wrapper .stamp-block-step .stamp-block-body .stamp-step-total {
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 600;
}

.stamp-wrapper .stamp-block-step .stamp-block-body .stamp-step-total span {
  display: block;
  font-size: 2.1rem;
}

.stamp-wrapper .stamp-block-step .stamp-block-body .stamp-step-icon {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
}

.stamp-wrapper .stamp-block-step .stamp-block-body .stamp-step-icon span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #d9d9d9;
}

.stamp-wrapper .stamp-block-step .stamp-block-body .stamp-step-icon img {
  display: block;
}

.stamp-wrapper .stamp-block-step .stamp-block-body .stamp-step-icon::before {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  z-index: 0;
  width: 100px;
  height: 4px;
  margin: auto 0;
  background: #d9d9d9;
  content: "";
}

.stamp-wrapper .stamp-block-step .stamp-block-body .stamp-step-bottom {
  font-size: 1.2rem;
}

.stamp-wrapper .stamp-block-step .stamp-block-body .stamp-step-item {
  display: inline-block;
  margin-bottom: 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
}

.stamp-wrapper .stamp-block-step .stamp-block-body .stamp-step-left span {
  color: #fb3c1b;
  font-weight: 600;
}

.stamp-wrapper .stamp-block-step .stamp-block-body .stamp-step li {
  width: calc(100% / 5);
}

.stamp-wrapper .stamp-block-step .stamp-block-body .stamp-step li:first-child .stamp-step-icon::before {
  display: none;
}

.stamp-wrapper .stamp-block-step .stamp-block-body .stamp-step li.clear .stamp-step-total {
  color: #ff9906;
}

.stamp-wrapper .stamp-block-step .stamp-block-body .stamp-step li.clear .stamp-step-icon span, .stamp-wrapper .stamp-block-step .stamp-block-body .stamp-step li.clear .stamp-step-icon::before {
  background: #ff9906;
}

.stamp-wrapper .stamp-block-step .stamp-block-body .stamp-step li.clear .stamp-step-icon::after {
  display: block;
  position: absolute;
  top: 4px;
  right: 0;
  z-index: 2;
  content: url("../images/stamp/parts_check.png");
}

/* news */
#newsOverlay {
  overflow: hidden;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20000;
  background: rgba(0, 0, 0, 0.6);
  animation: .2s fadeInLayer;
  transform: translateZ(0);
}

#newsOverlay::before {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  background: url("../images/stamp/parts_close.svg") no-repeat 0 0/contain;
  cursor: pointer;
  content: "";
}

#newsOverlay .side-section {
  position: absolute;
  top: 100px;
  bottom: 100px;
  left: 0;
  right: 0;
  width: 760px;
  max-width: 100%;
  margin: auto;
  padding: 30px 20px;
  background-color: #fff;
  border-radius: 20px;
}

#newsOverlay .side-section h3 {
  height: 102px;
  margin: 0;
}

#newsOverlay .side-section .side-info {
  height: calc(100% - 102px);
}

/* poko */
#pokoOverlay {
  overflow: hidden;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20000;
  background: rgba(0, 0, 0, 0.6);
  animation: .2s fadeInLayer;
}

.poko-body {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 760px;
  height: 566px;
  margin: auto;
  border-radius: 20px;
  background: url("../images/poko/parts_tl.png") no-repeat 20px 20px, url("../images/poko/parts_tr.png") no-repeat right 20px top 20px, url("../images/poko/parts_bl.png") no-repeat left 20px bottom 20px, url("../images/poko/parts_br.png") no-repeat right 20px bottom 20px, #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.poko-body .poko-area {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 460px;
  cursor: none;
}

.poko-body .poko-area.disabled {
  display: none;
}

.poko-body .poko-area .poko-pikopiko {
  position: absolute;
  z-index: 1;
  width: 307px;
  height: 283px;
  opacity: 0;
  transition: opacity .15s;
  pointer-events: none;
}

.poko-body .poko-area .poko-pikopiko img {
  position: absolute;
  top: 0;
  left: 0;
}

.poko-body .poko-area .poko-pikopiko-after {
  display: none;
}

.poko-body .poko-area:active .poko-pikopiko-before {
  display: none;
}

.poko-body .poko-area:active .poko-pikopiko-after {
  display: block;
}

.poko-body .poko-area:hover .poko-pikopiko {
  opacity: 1;
}

.poko-body .poko-gustchan {
  position: relative;
  z-index: 1;
  height: 100%;
}

.poko-body .poko-gustchan > div {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity .1s;
  pointer-events: none;
}

.poko-body .poko-gustchan > div.active {
  opacity: 1;
  z-index: 1;
}

.poko-body .poko-gustchan > div .balloon {
  position: absolute;
}

.poko-body .poko-gustchan-default {
  padding: 47px 0 0 190px;
}

.poko-body .poko-gustchan-default .balloon {
  top: 90px;
  left: 577px;
}

.poko-body .poko-gustchan-poko {
  padding: 29px 0 0 192px;
}

.poko-body .poko-gustchan-poko .balloon {
  top: 75px;
  left: -145px;
}

.poko-body .poko-gustchan-get .gustchan {
  position: absolute;
  top: 53px;
  left: 309px;
}

.poko-body .poko-gustchan-get .balloon {
  top: 85px;
  left: 578px;
}

.poko-body .poko-gustchan-get .stamp-sheet {
  position: absolute;
  top: 100px;
  left: 50px;
  width: 247px;
  height: 308px;
  background: url("../images/poko/parts_sheet.png") no-repeat 0 0;
}

.poko-body .poko-gustchan-get .stamp-sheet::before {
  display: block;
  position: absolute;
  top: -56px;
  left: 188px;
  width: 110px;
  height: 98px;
  background: url("../images/poko/parts_star_01.png") no-repeat 0 0;
  content: "";
}

.poko-body .poko-gustchan-get .stamp-sheet::after {
  display: block;
  position: absolute;
  top: 259px;
  left: -70px;
  width: 95px;
  height: 98px;
  background: url("../images/poko/parts_star_02.png") no-repeat 0 0;
  content: "";
}

.poko-body .poko-gustchan-get .stamp-sheet img {
  position: absolute;
  top: 104px;
  left: 45px;
  opacity: 0;
  transform: scale(1.25);
  transition: .8s .25s ease-out;
}

.poko-body .poko-gustchan-get.active {
  opacity: 1;
  z-index: 1;
}

.poko-body .poko-gustchan-get.active .stamp-sheet img {
  opacity: 1;
  transform: scale(1);
}

.poko-body .poko-gustchan-get .stamp-link {
  position: absolute;
  left: 50px;
  top: 415px;
  width: 240px;
  text-align: center;
}

.poko-body .poko-gustchan-get .stamp-link a {
  color: #4f2313;
  font-size: 1.6rem;
  text-decoration: underline;
  pointer-events: auto;
  cursor: pointer;
}

.poko-body .poko-bottom {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50px;
  z-index: 2;
  width: 496px;
  height: 48px;
  margin: 0 auto;
}

.poko-body .poko-bottom.active {
  display: flex;
  justify-content: space-between;
}

.poko-body .poko-bottom .poko-btn {
  display: block;
  position: relative;
  width: 240px;
  height: 48px;
  border: none;
  border-radius: 24px;
  font-size: 1.5rem;
}

.poko-body .poko-bottom .poko-btn.emph {
  background: #ff9906;
  color: #fff;
  font-weight: 600;
}

.poko-body .poko-bottom .poko-btn.close {
  background: url("../images/poko/icon_cross.svg") no-repeat 28px 50%/13px 13px #ffe9c6;
  color: #463d30;
}
