/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.modaal-wrapper * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}

.modaal-wrapper .modaal-close {
  border: none;
  background: 0 0;
  padding: 0;
  -webkit-appearance: none;
}

.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}

.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}

.modaal-wrapper [tabindex="0"] {
  outline: 0 !important;
}

.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}

.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px;
}

.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  border-radius: 0;
  background: #fff;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
}

.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}

.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.modaal-close:focus, .modaal-close:hover {
  outline: 0;
  background: #fff;
}

.modaal-close:focus:after, .modaal-close:focus:before, .modaal-close:hover:after, .modaal-close:hover:before {
  background: #b93d0c;
}

.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-close:after, .modaal-close:before {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modaal-close:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modaal-close:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}

.modaal-content-container {
  padding: 30px;
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: 0 0;
}

.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f;
}

.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}

.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f;
}

.modaal-instagram .modaal-container {
  width: auto;
  background: 0 0;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.modaal-instagram .modaal-content-container {
  padding: 0;
  background: 0 0;
}

.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-animation: instaReveal 1s linear forwards;
  animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}

.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}

.modaal-gallery-item img {
  display: block;
}

.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}

.modaal-gallery-label:focus {
  outline: 0;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}

.modaal-gallery-control:focus, .modaal-gallery-control:hover {
  outline: 0;
  background: #fff;
}

.modaal-gallery-control:focus:after, .modaal-gallery-control:focus:before, .modaal-gallery-control:hover:after, .modaal-gallery-control:hover:before {
  background: #afb7bc;
}

.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-gallery-control:after, .modaal-gallery-control:before {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modaal-gallery-control:before {
  margin: -5px 0 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modaal-gallery-control:after {
  margin: 5px 0 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}

.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:after, .modaal-gallery-prev:before {
  left: 22px;
}

.modaal-gallery-prev:before {
  margin: 5px 0 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modaal-gallery-prev:after {
  margin: -5px 0 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}

.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto 50px;
  position: relative;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.modaal-video-container embed, .modaal-video-container iframe, .modaal-video-container object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

.modaal-loading-spinner {
  background: 0 0;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  -webkit-transform: scale(0.25);
  transform: scale(0.25);
}

.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div, .modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  -webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.12s;
  animation-delay: 0.12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  -webkit-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div, .modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  -webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.37s;
  animation-delay: 0.37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  -webkit-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div, .modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  -webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.62s;
  animation-delay: 0.62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  -webkit-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  -webkit-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.87s;
  animation-delay: 0.87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  -webkit-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}
@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    -webkit-transform: none;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
  }
  .modaal-gallery-control:after, .modaal-gallery-control:before {
    background: #fff;
  }
  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }
  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}
@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}
@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}
@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}
@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .modaal-instagram iframe {
    width: 600px !important;
  }
}
@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}
@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}
@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.modaal-wrapper .modaal-close {
  border: none;
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.modaal-wrapper .modaal-close::before, .modaal-wrapper .modaal-close::after {
  display: block;
  content: " ";
  position: absolute;
  top: 0;
  left: 23px;
  width: 2px;
  height: 46px;
  background: #fff;
  border-radius: 2px;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.modaal-wrapper .modaal-close::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modaal-wrapper .modaal-close::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modaal-wrapper .modaal-close span {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .modaal-wrapper .modaal-close:hover::before, .modaal-wrapper .modaal-close:hover::after {
    opacity: 0.5;
  }
}

.modaal-noscroll {
  overflow: auto;
  scrollbar-gutter: stable;
}

section .inner {
  max-width: 1120px;
  width: 90.666vw;
  margin: 0 auto;
  padding: 20px 0 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  section .inner {
    padding: 10px 0;
  }
}

a.link {
  color: #d14124;
}
a.link::after {
  content: "";
  display: inline-block;
  background: url(/store/shinkuu/images/common/icon_arrow-red.svg) no-repeat;
  width: 11px;
  height: 8px;
  margin-left: 5px;
  margin-bottom: 2px;
}
#desc a.link {
  font-size: 1.5rem;
}

.red {
  color: #d14124;
}

@media screen and (min-width: 768px) {
  #kv {
    margin-top: 30px;
  }
}
#kv .inner {
  padding: 0;
}
@media screen and (max-width: 640px) {
  #kv .inner {
    width: 100%;
  }
}
#kv .inner .crumbs {
  background-color: rgba(208, 208, 202, 0.2);
  padding: 5px;
}
@media screen and (min-width: 768px) {
  #kv .inner .crumbs {
    background-color: #FFFFFF;
    padding: 0 0 5px 0;
  }
}
#kv .inner .swiper .swiper-thumbnail {
  display: none;
}
@media screen and (min-width: 768px) {
  #kv .inner .swiper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    height: 320px;
    width: 100%;
  }
  #kv .inner .swiper .swiper-container {
    overflow: hidden;
    width: 100%;
  }
  #kv .inner .swiper .swiper-thumbnail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 47%;
    height: 320px;
    overflow: auto;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
  }
  #kv .inner .swiper .swiper-thumbnail .swiper-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-line-pack: start;
        align-content: flex-start;
    -webkit-transform: none !important;
            transform: none !important;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  #kv .inner .swiper .swiper-thumbnail .swiper-wrapper {
    gap: 6px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  #kv .inner .swiper .swiper-thumbnail .swiper-wrapper {
    gap: 12px;
  }
}
@media screen and (min-width: 768px) {
  #kv .inner .swiper .swiper-thumbnail .swiper-wrapper .swiper-slide {
    width: calc((100% - 12px) / 3);
    height: auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  #kv .inner .swiper .swiper-thumbnail .swiper-wrapper .swiper-slide {
    width: calc((100% - 24px) / 3);
  }
}
@media screen and (min-width: 768px) {
  #kv .inner .swiper .swiper-thumbnail .swiper-slide {
    cursor: pointer;
    opacity: 0.2;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  #kv .inner .swiper .swiper-thumbnail .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
  }
}
@media screen and (min-width: 981px) {
  #kv .inner .swiper {
    gap: 10px;
    height: 420px;
  }
  #kv .inner .swiper .swiper-thumbnail {
    height: 420px;
  }
}
@media screen and (min-width: 1200px) {
  #kv .inner .swiper {
    gap: 15px;
    height: 500px;
  }
  #kv .inner .swiper .swiper-thumbnail {
    height: 500px;
  }
}

#desc .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  #desc .inner {
    padding-top: 50px;
  }
}
@media screen and (min-width: 768px) {
  #desc .inner > div {
    width: 50%;
  }
}
#desc .inner .desc_wrapper {
  display: contents;
}
@media screen and (min-width: 768px) {
  #desc .inner .desc_wrapper {
    display: initial;
  }
}
#desc .inner .desc_text {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
#desc .inner .desc_text h1 {
  letter-spacing: -0.1em;
  line-height: 1.25;
  padding-bottom: 1em;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  #desc .inner .desc_text h1 {
    font-size: 2.4rem;
  }
}
#desc .inner .desc_text h1 span {
  letter-spacing: 0.04em;
  display: block;
}
#desc .inner .desc_text .text {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: -0.06em;
}
@media screen and (min-width: 768px) {
  #desc .inner .desc_text .text {
    font-size: 1.8rem;
  }
}
#desc .inner .desc_text .text #modaal_box2, #desc .inner .desc_text .text #modaal_box3 {
  display: none;
}
#desc .inner .desc_cart {
  margin-top: 30px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (min-width: 768px) {
  #desc .inner .desc_cart {
    margin-top: 0;
    padding-left: 20px;
  }
}
@media screen and (min-width: 981px) {
  #desc .inner .desc_cart {
    padding-left: 40px;
  }
}
@media screen and (max-width: 640px) {
  #desc .inner .desc_cart {
    width: 100%;
  }
}
#desc .inner .desc_cart .pre {
  text-indent: -1em;
  padding: 1em 0 0 1em;
  font-size: 90%;
}
#desc .inner .desc_cart .pre a {
  display: inline;
  color: #d14124;
}
#desc .inner .desc_cart #modaal_box {
  display: block;
}
@media screen and (min-width: 768px) {
  #desc .inner .desc_cart #modaal_box {
    display: none;
  }
}
#desc .inner .desc_cart #product_list {
  display: none;
}
@media screen and (min-width: 768px) {
  #desc .inner .desc_cart #product_list {
    display: block;
  }
}
#desc .inner .desc_cart #product_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
}
#desc .inner .desc_cart #product_list ul li {
  width: calc((100% - 28px) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 981px) {
  #desc .inner .desc_cart #product_list ul li {
    width: calc((100% - 42px) / 4);
  }
}
#desc .inner .desc_cart #product_list ul li h3 {
  padding-top: 0.5em;
  line-height: 1.2;
  font-size: 1.2rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
#desc .inner .desc_cart #product_list ul li h3 small {
  font-size: 1rem;
}
#desc .inner .desc_cart #product_list ul li .price {
  font-size: 0.9rem;
}
#desc .inner .desc_cart #product_list ul li .price span {
  font-size: 1.2rem;
  padding-right: 0.1em;
}
#desc .inner .desc_cart #product_list ul li.sold p {
  position: relative;
}
#desc .inner .desc_cart #product_list ul li.sold p::after {
  display: block;
  content: "";
  background: url(../images/index/icon_soldout.svg) no-repeat;
  width: 80px;
  height: 16px;
  background-size: contain;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
#desc .inner .desc_cart #product_list ul li.sold p img {
  opacity: 0.6;
}
#desc .inner .desc_cart #product_list .modaal_btn {
  margin-top: 30px;
}

.modaal-inner2 {
  font-size: 1.3rem;
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .modaal-inner2 {
    font-size: 1.5rem;
    padding: 15px 0;
  }
}

.product {
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 145px 1fr;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .product {
    grid-template-rows: 1fr auto;
    grid-template-columns: 190px 1fr;
  }
}
.product .thumb {
  width: 130px;
  grid-row: 1;
  grid-column: 1;
}
@media screen and (min-width: 768px) {
  .product .thumb {
    grid-row: 1/3;
    width: 160px;
  }
}
.product .product_info h3 {
  font-size: 1.8rem;
  line-height: 1.2;
  padding-bottom: 0.2em;
}
.product .product_info h3 small {
  font-size: 1.2rem;
}
.product .product_info .memo1 {
  font-size: 1.3rem;
}
.product .product_info .memo2 {
  font-size: 1.2rem;
}
.product .product_info .memo3 {
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  .product .product_info .memo3 {
    font-size: 1.2rem;
  }
}
.product .product_info .price {
  font-size: 1.8rem;
}
.product .product_info .price .s {
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  .product .product_info .color {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
  .product .product_info .color span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
  }
}
.product .cart_box {
  grid-row: 2;
  grid-column: 1/3;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .product .cart_box {
    grid-column: 2;
  }
}
.product .cart_box .notes {
  color: #d14124;
  font-size: 1rem;
  padding-top: 0.5em;
}
.product .cart_box .notes .resale {
  display: none;
}
.product .cart_box .cart_btn {
  border: 1.5px solid #1a1a1a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 36px;
}
@media screen and (min-width: 768px) {
  .product .cart_box .cart_btn {
    width: 170px;
    border-width: 1px;
  }
}
.product .cart_box .cart_btn img {
  -webkit-filter: invert(7%) sepia(9%) saturate(10%) hue-rotate(314deg) brightness(91%) contrast(92%);
          filter: invert(7%) sepia(9%) saturate(10%) hue-rotate(314deg) brightness(91%) contrast(92%);
}
.product .cart_box .cart_btn:hover {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .product .cart_box .cart_btn:hover {
    border: 1px solid #d14124;
  }
}
.product .cart_box .cart_btn:hover img {
  -webkit-filter: invert(48%) sepia(75%) saturate(7124%) hue-rotate(11deg) brightness(95%) contrast(101%);
          filter: invert(48%) sepia(75%) saturate(7124%) hue-rotate(11deg) brightness(95%) contrast(101%);
}
.product .cart_box .cart_btn.sold {
  border: none;
  background-color: #d0d0ca;
  pointer-events: none;
}
.product .cart_box .cart_btn.sold img {
  -webkit-filter: none;
          filter: none;
}

.cart.sold .notes .resale {
  display: block;
}

.accordion_inner {
  padding-top: 18px;
  padding-bottom: 18px;
}
@media screen and (min-width: 768px) {
  .accordion_inner {
    padding-top: 30px;
    padding-bottom: 70px;
  }
}

@media screen and (min-width: 768px) {
  .modaal_inner {
    max-width: 800px;
    width: 95%;
    margin: 0 auto;
    padding-bottom: 30px;
  }
  .modaal_inner .product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px 0;
    border-bottom: 1px solid;
  }
  .modaal_inner .product .thumb {
    width: 120px;
  }
  .modaal_inner .product .product_info {
    margin-left: 30px;
  }
  .modaal_inner .product .product_info h3 {
    font-size: 1.8rem;
  }
  .modaal_inner .product .product_info h3 br {
    display: none;
  }
  .modaal_inner .product .product_info h3 small {
    font-size: 1.2rem;
  }
  .modaal_inner .product .product_info .memo1 {
    font-size: 1.3rem;
  }
  .modaal_inner .product .product_info .memo2 {
    font-size: 1.2rem;
  }
  .modaal_inner .product .product_info .price {
    padding-top: 1em;
    font-size: 1.8rem;
    display: inline-block;
  }
  .modaal_inner .product .cart_box {
    margin-left: auto;
  }
}
#info {
  background-color: #f7f8f8;
  margin-top: 15px;
  padding-top: 20px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  #info {
    margin-top: 90px;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 981px) {
  #info {
    margin-top: 40px;
  }
}
#info .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  #info .inner {
    padding-top: 40px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 640px) {
  #info .inner {
    width: 100%;
  }
}
#info .inner .nav {
  display: none;
}
@media screen and (min-width: 768px) {
  #info .inner .nav {
    display: block;
    position: sticky;
    top: 80px;
    margin-top: 30px;
    height: 400px;
  }
}
#info .inner .nav ul li:nth-of-type(n + 2) {
  padding-top: 10px;
}
@media screen and (min-width: 768px) {
  #info .inner .nav ul li img {
    width: 174px;
  }
}
#info .inner .content {
  max-width: 754px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #info .inner .content {
    width: calc(100% - 180px - 30px);
    padding-bottom: 80px;
  }
}
#info .inner .content .bottom0 {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
#info .inner .content .bottom1-2 {
  margin-bottom: 0.5em !important;
}
#info .inner .content .bottom1 {
  padding-bottom: 1em;
}
#info .inner .content .bottom2 {
  padding-bottom: 2em;
}
#info .inner .content .top1 {
  padding-top: 1em;
}
#info .inner .content .top2 {
  padding-top: 2em;
}
#info .inner .content .banner {
  max-width: 222px;
  width: 48%;
}
#info .inner .content h4 {
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
  position: relative;
  height: 28px;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  #info .inner .content h4 {
    height: 34px;
    padding-left: 25px;
    pointer-events: none;
  }
}
#info .inner .content h4 img {
  height: 12px;
}
@media screen and (min-width: 768px) {
  #info .inner .content h4 img {
    height: initial;
  }
}
#info .inner .content h4::before, #info .inner .content h4::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: #1a1a1a;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  cursor: pointer;
}
#info .inner .content h4::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
#info .inner .content h4.open::before {
  opacity: 0;
}
#info .inner .content h4.open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
@media screen and (min-width: 768px) {
  #info .inner .content h4::before, #info .inner .content h4::after {
    display: none;
  }
}
#info .inner .content > div {
  padding: 0 4.667vw;
  width: 100vw;
}
@media screen and (min-width: 768px) {
  #info .inner .content > div {
    padding: 0;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  #info .inner .content > div:first-of-type {
    margin-top: 30px;
  }
}
#info .inner .content > div h5 {
  font-size: 1.8rem;
  line-height: 1.3;
  letter-spacing: -0.06em;
  padding-bottom: 0.5em;
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  #info .inner .content > div h5 {
    font-size: 2rem;
    padding-top: 0;
  }
}
#info .inner .content > div h5.top {
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  #info .inner .content ul {
    margin-left: 24px;
  }
}
#info .inner .content ul li .text {
  font-size: 1.5rem;
  line-height: 1.53;
  padding-bottom: 1.5em;
}
#info .inner .content ul li .img {
  padding-bottom: 1.5em;
}
#info .inner .content ul.list {
  list-style: disc;
  margin-left: 1em;
}
#info .inner .content ul.list li:nth-of-type(n + 2) {
  margin-top: 0;
  padding-top: 0 !important;
}
#info .inner .content ul.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  #info .inner .content ul.card {
    gap: 15px;
  }
}
#info .inner .content ul.card li {
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding: 1em 0.5em;
}
@media screen and (min-width: 768px) {
  #info .inner .content ul.card li {
    width: calc((100% - 30px) / 3);
    padding: 20px;
    display: block;
  }
}
#info .inner .content ul.card li h5 {
  padding-top: 0.5em;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  #info .inner .content ul.card li h5 {
    font-size: 1.8rem;
  }
}
#info .inner .content ul.card li picture img {
  width: 110px;
}
@media screen and (min-width: 768px) {
  #info .inner .content ul.card li picture img {
    width: auto;
  }
}
#info .inner .content ul.card li > div {
  width: calc(100% - 110px - 10px);
}
@media screen and (min-width: 768px) {
  #info .inner .content ul.card li > div {
    width: auto;
  }
}
#info .inner .content ul.card li > div .text {
  padding-top: 0;
}
#info .inner .content #detail {
  padding-left: 0;
  padding-right: 0;
}
#info .inner .content #detail h4 {
  margin-left: 4.667vw;
  margin-right: 4.667vw;
}
@media screen and (min-width: 768px) {
  #info .inner .content #detail h4 {
    margin-left: 0;
    margin-right: 0;
  }
}
#info .inner .content #detail h5, #info .inner .content #detail .text, #info .inner .content #detail .sub {
  padding-left: calc(4.667vw + 0.5em);
  padding-right: 4.667vw;
}
@media screen and (min-width: 768px) {
  #info .inner .content #detail h5, #info .inner .content #detail .text, #info .inner .content #detail .sub {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) {
  #info .inner .content #detail ul li:nth-of-type(n + 2) {
    padding-top: 1.5em;
  }
}
#info .inner .content #ingredients h4 img {
  height: 14px;
}
@media screen and (min-width: 768px) {
  #info .inner .content #ingredients h4 img {
    height: initial;
  }
}
#info .inner .content #ingredients h5 {
  margin-left: 0;
}
#info .inner .content #howto .accordion_inner {
  padding-left: 1em;
}
#info .inner .content #howto ol {
  margin-bottom: 25px;
  margin-left: 5px;
}
@media screen and (min-width: 768px) {
  #info .inner .content #howto ol {
    margin-bottom: 45px;
  }
}
#info .inner .content #howto ol li {
  list-style-type: none;
  counter-increment: cnt;
  font-size: 1.5rem;
  text-indent: -1.3em;
  padding-left: 1em;
}
#info .inner .content #howto ol li::before {
  content: "" counter(cnt) "";
}
#info .inner .content #howto ol li span::before {
  content: "|";
  display: inline;
  vertical-align: 0.1em;
  padding: 0 0.2em 0 0.1em;
}
#info .inner .content #howto ol li:nth-of-type(n + 2) {
  padding-top: 1em;
}
#info .inner .content #howto h5 {
  margin-bottom: 1em;
}
#info .inner .content #howto h5 img {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
@media screen and (min-width: 768px) {
  #info .inner .content #howto h5 img {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
#info .inner .content #howto .video_banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  #info .inner .content #howto .video_banner {
    gap: 30px 15px;
  }
}
#info .inner .content #howto .video_banner a {
  color: initial;
}
#info .inner .content #howto .video_banner li {
  width: calc((100% - 15px) / 2);
  font-size: 1.3rem;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  #info .inner .content #howto .video_banner li {
    width: calc((100% - 30px) / 3);
  }
}
#info .inner .content #howto .video_banner li p {
  padding-top: 0.4em;
}
@media screen and (min-width: 768px) {
  #info .inner .content #review ul {
    margin-left: 24px;
  }
}
#info .inner .content #review ul li {
  padding-left: 20px;
  background: url("/store/shinkuu/images/product/icon_list.svg") left 0px top 5px no-repeat;
  background-size: 14px auto;
}
#info .inner .content #review ul li:nth-of-type(n + 2) {
  margin-top: 1em;
}
#info .inner .content #review h5 {
  font-size: 1.6rem;
  padding: 1em 0;
}
@media screen and (min-width: 768px) {
  #info .inner .content #review h5 {
    font-size: 1.8rem;
    margin-left: 24px;
  }
}
#info .inner .content #director ul {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  #info .inner .content #director ul {
    margin-left: 24px;
  }
}
#info .inner .content #contents ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  #info .inner .content #contents ul {
    gap: 28px;
  }
}
#info .inner .content #contents ul li {
  width: calc((100% - 15px) / 2);
}
@media screen and (min-width: 768px) {
  #info .inner .content #contents ul li {
    width: calc((100% - 56px) / 3);
  }
}
@media screen and (max-width: 640px) {
  #info .inner .content #products h4 img {
    height: 13px;
  }
}
#info .inner .content #products .accordion_inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  #info .inner .content #products .accordion_inner ul {
    gap: 28px;
  }
}
#info .inner .content #products .accordion_inner ul li {
  width: calc((100% - 15px) / 2);
}
@media screen and (min-width: 768px) {
  #info .inner .content #products .accordion_inner ul li {
    width: calc((100% - 84px) / 4);
  }
}
#info .inner .content #products .accordion_inner ul li a {
  color: #1a1a1a;
}
#info .inner .content #products .accordion_inner .products dl dt {
  height: auto;
  padding-top: 0.5em;
}
#info .inner .content #products .accordion_inner .products dl dt h3 {
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  #info .inner .content #products .accordion_inner .products dl dt h3 {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 640px) {
  #info .inner .content #products .accordion_inner .products dl dt h3 .sp-br {
    display: none;
  }
}
#info .inner .content #products .accordion_inner .products dl dt .price {
  position: relative;
  bottom: 0;
  font-size: 1rem;
}
#info .inner .content #products .accordion_inner .products dl dt .price span {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  #info .inner .content #products .accordion_inner .products dl dt .price span {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  #info .inner .content #products .accordion_inner .products dl dt .price {
    font-size: 1.2rem;
  }
}
#info .inner .content #products .accordion_inner .products dl dt::after {
  display: none;
}
@media screen and (max-width: 640px) {
  #info .inner .content #products .accordion_inner .products .sold dd::after {
    width: 80px;
    height: 16px;
  }
}
#info .inner .content .base .accordion_inner {
  padding-left: 1.5em;
}
@media screen and (min-width: 768px) {
  #info .inner .content .base .accordion_inner {
    padding-left: 0;
    padding-right: 60px;
  }
}
#info .inner .content .base ul li h5 {
  font-size: 1.5rem;
  margin-left: -0.8em;
}
@media screen and (min-width: 768px) {
  #info .inner .content .base ul li h5 {
    font-size: 1.8rem;
    margin-left: 0;
  }
}
#info .inner .content .base ul li:nth-of-type(n + 2) {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  #info .inner .content .base ul li:nth-of-type(n + 2) {
    margin-top: 35px;
  }
}
#info .inner .content .base ul li > div span.ff-b {
  font-size: 1.5rem;
}

.btn_buy {
  display: block;
  width: 100vw;
  position: fixed;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  bottom: 0;
  z-index: 10;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background-color: rgba(255, 255, 255, 0.75);
  padding: 10px 0;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .btn_buy {
    padding: 0;
  }
}
.btn_buy.up {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}
.btn_buy.down {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}
.btn_buy img {
  max-width: 375px;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}/*# sourceMappingURL=product-2.0.css.map */