@charset "UTF-8";
.vbox-overlay {
  --vbox-tools-color:#fff;
  --vbox-title-background:#101010;
  --vbox-title-width:'auto';
  --vbox-title-radius:0;
  --vbox-share-background:#101010;
  --vbox-share-width:'auto';
  --vbox-share-radius:0;
  --vbox-padding:0;
  --vbox-max-width:100%;
}

.vbox-overlay *, .vbox-overlay :after, .vbox-overlay :before {
  -webkit-backface-visibility: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.vbox-overlay * {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}

.vbox-overlay {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 999999;
}

.vbox-share, .vbox-title {
  line-height: 1;
  position: fixed;
  z-index: 98;
  text-align: center;
  margin: 0 auto;
  color: var(--vbox-tools-color);
}

.vbox-title {
  font-size: 12px;
  background-color: var(--vbox-title-background);
  width: var(--vbox-title-width);
  border-radius: var(--vbox-title-radius);
  padding: 12px 54px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.vbox-share {
  font-size: 24px;
  padding: 0 0.35em;
  background-color: var(--vbox-share-background);
  width: var(--vbox-share-width);
  border-radius: var(--vbox-share-radius);
}

.vbox-link-btn, button.vbox-link-btn, button.vbox-link-btn:active, button.vbox-link-btn:focus, button.vbox-link-btn:hover {
  border: none !important;
  background: 0 0 !important;
  box-shadow: none !important;
  color: inherit !important;
  padding: 6px 12px;
  outline: 0;
  display: inline-block;
  cursor: pointer;
}

.vbox-share a {
  color: inherit !important;
  padding: 6px 12px;
  display: inline-block;
}

.vbox-share svg {
  z-index: 10;
  vertical-align: middle;
}

.vbox-close {
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  padding: 6px 15px;
  color: #000;
  color: var(--vbox-tools-color);
  border: 0;
  font-size: 24px;
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.vbox-close:hover {
  opacity: 1;
}

.vbox-left-corner {
  cursor: pointer;
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  line-height: 1;
  font-size: 12px;
  z-index: 99;
  display: flex;
  align-items: center;
  color: var(--vbox-tools-color);
}

.vbox-num {
  display: inline-block;
  padding: 12px 15px;
}

.vbox-left {
  left: 0;
}

.vbox-right {
  right: 0;
}

.vbox-top {
  top: 0;
}

.vbox-bottom {
  bottom: 0;
}

.vbox-next, .vbox-prev {
  position: fixed;
  top: 50%;
  margin-top: -15px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  width: 45px;
  height: 45px;
  z-index: 99;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.vbox-next:hover, .vbox-prev:hover {
  opacity: 1;
}

.vbox-next span, .vbox-prev span {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: var(--vbox-tools-color);
  border-right-color: var(--vbox-tools-color);
  text-indent: -100px;
  position: absolute;
  top: 8px;
  display: block;
}

.vbox-prev {
  left: 15px;
}

.vbox-next {
  right: 15px;
}

.vbox-prev span {
  left: 10px;
  -ms-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.vbox-next span {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 10px;
}

.vbox-open {
  overflow: hidden;
}

.vbox-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch;
  z-index: 20;
  max-height: 100%;
  padding: 30px 0;
}

.vbox-content {
  opacity: 0;
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.vbox-container img {
  max-width: 100%;
  height: auto;
}

.vbox-child {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  max-width: var(--vbox-max-width);
  text-align: initial;
  padding: var(--vbox-padding);
}

.vbox-child img {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  display: block;
}

.vbox-fit .vbox-child img, .vbox-fit .vbox-child.venoratio {
  max-height: calc(100vh - 60px);
}

.vbox-inline, .venoratio {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.venoratio::before {
  display: block;
  padding-top: var(--vb-aspect-ratio);
  content: "";
}

.venoratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: var(--vbox-padding);
}

.venoratio-1x1 {
  --vb-aspect-ratio:100%;
  max-width: min(var(--vbox-max-width), 100vh - 60px);
}

.venoratio-4x3.vbox-child.venoratio {
  --vb-aspect-ratio:calc(3 / 4 * 100%);
  max-width: min(var(--vbox-max-width), (100vh - 60px) * 4 / 3);
}

.venoratio-16x9.vbox-child.venoratio {
  --vb-aspect-ratio:calc(9 / 16 * 100%);
  max-width: min(var(--vbox-max-width), (100vh - 60px) * 16 / 9);
}

.venoratio-21x9.vbox-child.venoratio {
  --vb-aspect-ratio:calc(9 / 21 * 100%);
  max-width: min(var(--vbox-max-width), (100vh - 60px) * 21 / 9);
}

.venoratio-full {
  --vb-aspect-ratio:calc(100vh - 60px);
}

.vbox-grab .vbox-child img {
  cursor: grab;
}

.vbox-child > iframe {
  border: none !important;
}

.vbox-content.swipe-left {
  margin-left: -200px !important;
}

.vbox-content.swipe-right {
  margin-left: 200px !important;
}

.vbox-preloader {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}

.vbox-preloader .vbox-preloader-inner {
  opacity: 1;
  transition: opacity 0.2s;
}

.vbox-hidden {
  display: none;
}

.vbox-preloader.vbox-hidden .vbox-preloader-inner {
  opacity: 0;
}

.vbox-backdrop {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateZ(-1px);
  -moz-transform: translateZ(-1px);
  -o-transform: translateZ(-1px);
  transform: translateZ(-1px);
  z-index: 0;
}

.vbox-tooltip {
  position: relative;
  display: inline-block;
}

.vbox-tooltip .vbox-tooltip-text {
  visibility: hidden;
  color: #fff;
  text-align: center;
  padding: 0;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s;
  margin-bottom: 2px;
  font-family: sans-serif;
}

.vbox-top .vbox-tooltip .vbox-tooltip-text {
  bottom: auto;
  top: 100%;
  margin-bottom: 0;
  margin-top: 2px;
}

.vbox-tooltip-inner {
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 6px;
  font-size: 10px;
}

.vbox-tooltip:hover .vbox-tooltip-text {
  visibility: visible;
  opacity: 1;
}

.vbox-overlay {
  --sk-size:40px;
  --sk-color:#333;
}

.sk-center {
  margin: auto;
}

.sk-plane {
  width: var(--sk-size);
  height: var(--sk-size);
  background-color: var(--sk-color);
  animation: sk-plane 1.2s infinite ease-in-out;
}

@keyframes sk-plane {
  0% {
    transform: perspective(120px) rotateX(0) rotateY(0);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
.sk-chase {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
  animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: sk-chase-dot 2s infinite ease-in-out both;
}

.sk-chase-dot:before {
  content: "";
  display: block;
  width: 25%;
  height: 25%;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-chase-dot-before 2s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3) {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
  animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

@keyframes sk-chase {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes sk-chase-dot {
  100%, 80% {
    transform: rotate(360deg);
  }
}
@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4);
  }
  0%, 100% {
    transform: scale(1);
  }
}
.sk-bounce {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-bounce-dot {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--sk-color);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: sk-bounce 2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.sk-bounce-dot:nth-child(2) {
  animation-delay: -1s;
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
  }
  45%, 55% {
    transform: scale(1);
  }
}
.sk-wave {
  width: var(--sk-size);
  height: var(--sk-size);
  display: flex;
  justify-content: space-between;
}

.sk-wave-rect {
  background-color: var(--sk-color);
  height: 100%;
  width: 15%;
  animation: sk-wave 1.2s infinite ease-in-out;
}

.sk-wave-rect:nth-child(1) {
  animation-delay: -1.2s;
}

.sk-wave-rect:nth-child(2) {
  animation-delay: -1.1s;
}

.sk-wave-rect:nth-child(3) {
  animation-delay: -1s;
}

.sk-wave-rect:nth-child(4) {
  animation-delay: -0.9s;
}

.sk-wave-rect:nth-child(5) {
  animation-delay: -0.8s;
}

@keyframes sk-wave {
  0%, 100%, 40% {
    transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
  }
}
.sk-pulse {
  width: var(--sk-size);
  height: var(--sk-size);
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-pulse 1.2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@keyframes sk-pulse {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.sk-flow {
  width: calc(var(--sk-size) * 1.3);
  height: calc(var(--sk-size) * 1.3);
  display: flex;
  justify-content: space-between;
}

.sk-flow-dot {
  width: 25%;
  height: 25%;
  background-color: var(--sk-color);
  border-radius: 50%;
  animation: sk-flow 1.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s infinite both;
}

.sk-flow-dot:nth-child(1) {
  animation-delay: -0.3s;
}

.sk-flow-dot:nth-child(2) {
  animation-delay: -0.15s;
}

@keyframes sk-flow {
  0%, 100%, 80% {
    transform: scale(0.3);
  }
  40% {
    transform: scale(1);
  }
}
.sk-swing {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
  animation: sk-swing 1.8s infinite linear;
}

.sk-swing-dot {
  width: 45%;
  height: 45%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-swing-dot 2s infinite ease-in-out;
}

.sk-swing-dot:nth-child(2) {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}

@keyframes sk-swing {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes sk-swing-dot {
  0%, 100% {
    transform: scale(0.2);
  }
  50% {
    transform: scale(1);
  }
}
.sk-circle {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-circle-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-circle-dot:before {
  content: "";
  display: block;
  width: 15%;
  height: 15%;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-circle 1.2s infinite ease-in-out both;
}

.sk-circle-dot:nth-child(1) {
  transform: rotate(30deg);
}

.sk-circle-dot:nth-child(2) {
  transform: rotate(60deg);
}

.sk-circle-dot:nth-child(3) {
  transform: rotate(90deg);
}

.sk-circle-dot:nth-child(4) {
  transform: rotate(120deg);
}

.sk-circle-dot:nth-child(5) {
  transform: rotate(150deg);
}

.sk-circle-dot:nth-child(6) {
  transform: rotate(180deg);
}

.sk-circle-dot:nth-child(7) {
  transform: rotate(210deg);
}

.sk-circle-dot:nth-child(8) {
  transform: rotate(240deg);
}

.sk-circle-dot:nth-child(9) {
  transform: rotate(270deg);
}

.sk-circle-dot:nth-child(10) {
  transform: rotate(300deg);
}

.sk-circle-dot:nth-child(11) {
  transform: rotate(330deg);
}

.sk-circle-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-circle-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-circle-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-circle-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-circle-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-circle-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

.sk-circle-dot:nth-child(7):before {
  animation-delay: -0.5s;
}

.sk-circle-dot:nth-child(8):before {
  animation-delay: -0.4s;
}

.sk-circle-dot:nth-child(9):before {
  animation-delay: -0.3s;
}

.sk-circle-dot:nth-child(10):before {
  animation-delay: -0.2s;
}

.sk-circle-dot:nth-child(11):before {
  animation-delay: -0.1s;
}

@keyframes sk-circle {
  0%, 100%, 80% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.sk-circle-fade {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-circle-fade-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-circle-fade-dot:before {
  content: "";
  display: block;
  width: 15%;
  height: 15%;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-circle-fade 1.2s infinite ease-in-out both;
}

.sk-circle-fade-dot:nth-child(1) {
  transform: rotate(30deg);
}

.sk-circle-fade-dot:nth-child(2) {
  transform: rotate(60deg);
}

.sk-circle-fade-dot:nth-child(3) {
  transform: rotate(90deg);
}

.sk-circle-fade-dot:nth-child(4) {
  transform: rotate(120deg);
}

.sk-circle-fade-dot:nth-child(5) {
  transform: rotate(150deg);
}

.sk-circle-fade-dot:nth-child(6) {
  transform: rotate(180deg);
}

.sk-circle-fade-dot:nth-child(7) {
  transform: rotate(210deg);
}

.sk-circle-fade-dot:nth-child(8) {
  transform: rotate(240deg);
}

.sk-circle-fade-dot:nth-child(9) {
  transform: rotate(270deg);
}

.sk-circle-fade-dot:nth-child(10) {
  transform: rotate(300deg);
}

.sk-circle-fade-dot:nth-child(11) {
  transform: rotate(330deg);
}

.sk-circle-fade-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-circle-fade-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-circle-fade-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-circle-fade-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-circle-fade-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-circle-fade-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

.sk-circle-fade-dot:nth-child(7):before {
  animation-delay: -0.5s;
}

.sk-circle-fade-dot:nth-child(8):before {
  animation-delay: -0.4s;
}

.sk-circle-fade-dot:nth-child(9):before {
  animation-delay: -0.3s;
}

.sk-circle-fade-dot:nth-child(10):before {
  animation-delay: -0.2s;
}

.sk-circle-fade-dot:nth-child(11):before {
  animation-delay: -0.1s;
}

@keyframes sk-circle-fade {
  0%, 100%, 39% {
    opacity: 0;
    transform: scale(0.6);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}
.sk-grid {
  width: var(--sk-size);
  height: var(--sk-size);
}

.sk-grid-cube {
  width: 33.33%;
  height: 33.33%;
  background-color: var(--sk-color);
  float: left;
  animation: sk-grid 1.3s infinite ease-in-out;
}

.sk-grid-cube:nth-child(1) {
  animation-delay: 0.2s;
}

.sk-grid-cube:nth-child(2) {
  animation-delay: 0.3s;
}

.sk-grid-cube:nth-child(3) {
  animation-delay: 0.4s;
}

.sk-grid-cube:nth-child(4) {
  animation-delay: 0.1s;
}

.sk-grid-cube:nth-child(5) {
  animation-delay: 0.2s;
}

.sk-grid-cube:nth-child(6) {
  animation-delay: 0.3s;
}

.sk-grid-cube:nth-child(7) {
  animation-delay: 0s;
}

.sk-grid-cube:nth-child(8) {
  animation-delay: 0.1s;
}

.sk-grid-cube:nth-child(9) {
  animation-delay: 0.2s;
}

@keyframes sk-grid {
  0%, 100%, 70% {
    transform: scale3D(1, 1, 1);
  }
  35% {
    transform: scale3D(0, 0, 1);
  }
}
.sk-fold {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
  transform: rotateZ(45deg);
}

.sk-fold-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  transform: scale(1.1);
}

.sk-fold-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--sk-color);
  animation: sk-fold 2.4s infinite linear both;
  transform-origin: 100% 100%;
}

.sk-fold-cube:nth-child(2) {
  transform: scale(1.1) rotateZ(90deg);
}

.sk-fold-cube:nth-child(4) {
  transform: scale(1.1) rotateZ(180deg);
}

.sk-fold-cube:nth-child(3) {
  transform: scale(1.1) rotateZ(270deg);
}

.sk-fold-cube:nth-child(2):before {
  animation-delay: 0.3s;
}

.sk-fold-cube:nth-child(4):before {
  animation-delay: 0.6s;
}

.sk-fold-cube:nth-child(3):before {
  animation-delay: 0.9s;
}

@keyframes sk-fold {
  0%, 10% {
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    transform: perspective(140px) rotateX(0);
    opacity: 1;
  }
  100%, 90% {
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
.sk-wander {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-wander-cube {
  background-color: var(--sk-color);
  width: 20%;
  height: 20%;
  position: absolute;
  top: 0;
  left: 0;
  --sk-wander-distance:calc(var(--sk-size) * 0.75);
  animation: sk-wander 2s ease-in-out -2s infinite both;
}

.sk-wander-cube:nth-child(2) {
  animation-delay: -0.5s;
}

.sk-wander-cube:nth-child(3) {
  animation-delay: -1s;
}

@keyframes sk-wander {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: translateX(var(--sk-wander-distance)) rotate(-90deg) scale(0.6);
  }
  50% {
    transform: translateX(var(--sk-wander-distance)) translateY(var(--sk-wander-distance)) rotate(-179deg);
  }
  50.1% {
    transform: translateX(var(--sk-wander-distance)) translateY(var(--sk-wander-distance)) rotate(-180deg);
  }
  75% {
    transform: translateX(0) translateY(var(--sk-wander-distance)) rotate(-270deg) scale(0.6);
  }
  100% {
    transform: rotate(-360deg);
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*--------------------------------------------------------
	reset
---------------------------------------------------------*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
}

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

em,
strong,
th,
address {
  font-style: normal;
  font-weight: normal;
  text-align: left;
}

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

img,
object,
embed {
  border: 0;
  vertical-align: top;
}

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

hr {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}

li {
  list-style-type: none;
}

strong {
  font-weight: 600;
}

* {
  margin: 0;
  padding: 0;
}

/*-------------------------------------------------
 base
--------------------------------------------------*/
body {
  position: relative;
  background: #fff;
  color: #000;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1.5rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

.wrapper {
  overflow-x: hidden;
  position: relative;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 640px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/*END*/
.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

/*-------------------------------------------------
	main
--------------------------------------------------*/
#main {
  width: 100%;
  height: 100vh;
  position: relative;
}

#main::after {
  content: " ";
  display: block;
  clear: both;
}

/*clearfix*/
.main_l {
  position: absolute;
  left: 0;
  top: 0;
  width: 23.8%;
  height: 100%;
  z-index: 10;
}

.main_r {
  position: absolute;
  right: 0px;
  top: 0%;
  width: 76.2%;
  height: 92.5%;
  z-index: 5;
}

@media screen and (orientation: portrait) {
  .main_l {
    position: absolute;
    left: 0;
    top: 0;
    width: 10.9%;
    height: 100%;
  }
  .main_r {
    position: absolute;
    right: 0px;
    top: 33.6%;
    width: 89.1%;
    height: 60.8%;
  }
}
/*END*/
/* h1
-------------------------------*/
.h1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 23.8%;
  height: 100vh;
  z-index: 9;
}

.h1 h1 {
  width: 60%;
  min-height: 10vh;
  margin: 7vh auto 0;
}

@media screen and (orientation: portrait) {
  .h1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 33.6vh;
    background: #fff;
  }
  .h1 h1 {
    width: inherit;
    margin: 2.4vh auto 0;
    text-align: center;
  }
  .h1 h1 img {
    height: 27vh;
    margin: 0vh auto 0;
  }
}
/*END*/
.h1 h1 img {
  opacity: 0;
  animation: h1_anime 1.8s cubic-bezier(0.095, 0.51, 0.325, 0.995) 1.1s forwards;
}

@keyframes h1_anime {
  0% {
    opacity: 0;
    transform: translateY(15%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
/*=======================================================
   msk anime fade
=========================================================*/
/* in */
.in {
  position: relative;
  opacity: 0;
  bottom: 0;
  transform: translateY(20%);
}

.in.is-view {
  animation: 2s 0s in_view forwards cubic-bezier(0.095, 0.51, 0.325, 0.995);
}

@keyframes in_view {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    bottom: 0px;
    transform: translateY(0%);
  }
}
/* in2 */
.in2 {
  position: relative;
  opacity: 0;
  bottom: 0;
  transform: translateY(100px);
}

.in2.is-view {
  animation: 2s 0s in_view forwards cubic-bezier(0.095, 0.51, 0.325, 0.995);
}

@keyframes in_view {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    bottom: 0px;
    transform: translateY(0px);
  }
}
/*delay*/
.dry {
  animation-delay: 0.2s !important;
}

.dry1 {
  animation-delay: 0s !important;
}

.dry2 {
  animation-delay: 0.1s !important;
}

.dry3 {
  animation-delay: 0.2s !important;
}

.dry4 {
  animation-delay: 0.3s !important;
}

.dry5 {
  animation-delay: 0.4s !important;
}

.dry6 {
  animation-delay: 0.5s !important;
}

/* Slider
-------------------------------*/
.slider_box {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.slider_box li {
  display: block;
  width: 100%;
  outline: none;
  overflow: hidden;
}

/*pc sp*/
.slider_box li .sl_pc {
  display: block;
  width: 100%;
  height: 92.5vh;
}

.slider_box li .sl_sp {
  display: none;
}

@media screen and (orientation: portrait) {
  .slider_box li .sl_pc {
    display: none;
  }
  .slider_box li .sl_sp {
    display: block;
    width: 100%;
    height: 60.8vh;
  }
}
/*END*/
.slider_box li div.sl01 {
  background: url("../img/01.jpg") no-repeat center center;
  background-size: cover;
}

.slider_box li div.sl02 {
  background: url("../img/02.jpg") no-repeat bottom center;
  background-size: cover;
}

.slider_box li div.sl03 {
  background: url("../img/03.jpg") no-repeat center center;
  background-size: cover;
}

.slider_box li div.sl04 {
  background: url("../img/04.jpg") no-repeat center center;
  background-size: cover;
}

.slider_box li div.sl05 {
  background: url("../img/05.jpg") no-repeat center center;
  background-size: cover;
}

.slider_box li div.sl06 {
  background: url("../img/06.jpg") no-repeat center center;
  background-size: cover;
}

/*dots*/
.slider_box .slick-dots {
  position: absolute;
  bottom: -4.5vh;
  z-index: 9;
  display: block;
  right: 20px;
  padding: 0;
  margin: 1.5px 0 0 0;
  list-style: none;
  text-align: center;
}

.slider_box .slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 60px;
  height: 3px;
}

.slider_box .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  cursor: pointer;
  border: 0;
  outline: none;
  width: 100%;
  height: 100%;
  background: #ccc;
}

/* OFF */
.slider_box .slick-dots li button:hover {
  font-size: 0;
  line-height: 0;
  display: block;
  cursor: pointer;
  border: 0;
  outline: none;
  width: 100%;
  height: 100%;
  background: #666;
}

/* ON */
.slider_box .slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

.slider_box .slick-dots li.slick-active button:before {
  position: absolute;
  top: 0;
  left: 0;
  color: black;
  opacity: 1;
  width: 100%;
  height: 100%;
  background: #000;
}

/* focus */
@media screen and (orientation: portrait) {
  .slider_box .slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 0.6vw;
    width: 9vw;
    height: 2px;
  }
  .slider_box .slick-dots {
    position: absolute;
    bottom: -3.7vh;
    z-index: 9;
    display: block;
    right: 20px;
    padding: 0;
    margin: -1px 0 0 0;
    list-style: none;
    text-align: center;
  }
}
/*END*/
.main_open1 {
  position: absolute;
  left: 0%;
  top: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: #fff;
  pointer-events: none;
}

@keyframes main_open1 {
  0% {
    left: 0%;
  }
  100% {
    left: -100%;
  }
}
.slick-initialized + .main_open1 {
  animation: main_open1 1.1s cubic-bezier(0.095, 0.51, 0.325, 0.995) 0.2s forwards;
}

.main_open2 {
  position: absolute;
  left: 0%;
  top: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  background: #eee;
  pointer-events: none;
}

.slick-initialized + .main_open1 + .main_open2 {
  animation: main_open2 1.2s cubic-bezier(0.095, 0.51, 0.325, 0.995) 0.8s forwards;
}

@keyframes main_open2 {
  0% {
    left: 0%;
    opacity: 1;
  }
  100% {
    left: -100%;
    opacity: 0.8;
  }
}
.slider_box {
  opacity: 0;
  transform: translateX(20%);
  animation: slider_box 1.2s cubic-bezier(0.095, 0.51, 0.325, 0.995) 0.8s forwards;
}

@keyframes slider_box {
  0% {
    opacity: 0;
    transform: translateX(0%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
/* scroll
-------------------------------*/
.scroll {
  width: 60px;
  height: 20vh;
  max-height: 135px;
  position: absolute;
  z-index: 200;
  bottom: 0px;
  left: 50%;
  margin-left: -30px;
}

.scroll a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 200;
  transition: 0.3s;
  text-decoration: none !important;
}

.scroll a .scroll_wheel {
  width: 1px;
  height: 100%;
  background: #ccc;
  overflow: hidden;
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0px;
  margin-left: -0.5px;
  transition: 0.3s;
}

.scroll a .scroll_wheel:after {
  width: 1px;
  height: 80px;
  background: #000;
  position: absolute;
  content: " ";
  display: block;
  z-index: 11;
  left: 0%;
  top: 0px;
  transition: 0.3s;
}

.scroll a p {
  transform: rotate(90deg);
  transform-origin: 100% 0%;
  position: absolute;
  bottom: 100%;
  margin: -15px 0px 0px -5px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #000;
  line-height: 1;
  font-family: "Playfair Display", serif;
}

@media screen and (orientation: portrait) {
  .scroll a p {
    transform: rotate(90deg);
    transform-origin: 100% 0%;
    position: absolute;
    bottom: 100%;
    margin: -15px 0px 0px 0px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #000;
    line-height: 1;
    font-family: "Playfair Display", serif;
  }
}
/*END*/
.scroll a:hover {
  opacity: 0.4;
}

.scroll a .scroll_wheel:after {
  width: 1px;
  height: 30%;
  animation: scroll_wheel_after 1.5s infinite normal ease-out;
}

@keyframes scroll_wheel_after {
  0% {
    top: -30%;
    opacity: 1;
  }
  50% {
    top: 100%;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 1;
  }
}
.in_scroll {
  position: relative;
  opacity: 0;
  bottom: 0;
  transform: translateY(-2%);
}

.in_scroll.is-view {
  animation: 1s 1s in_scroll_view forwards cubic-bezier(0.095, 0.51, 0.325, 0.995);
}

@keyframes in_scroll_view {
  0% {
    opacity: 0;
    transform: translateY(-2%);
  }
  100% {
    opacity: 1;
    bottom: 0px;
    transform: translateY(0%);
  }
}
/*-------------------------------------------------
	concept
--------------------------------------------------*/
#concept {
  width: 100%;
}
#concept, #concept * {
  box-sizing: border-box;
}
#concept ul {
  display: block;
}
#concept ul li {
  position: relative;
  display: block;
}
#concept ul li .co_img {
  width: 59.4%;
}
@media (max-width: 1024px) {
  #concept ul li .co_img {
    width: 72%;
  }
}
#concept ul li .co_img img {
  width: 100%;
}
#concept ul li .co_k {
  position: absolute;
  width: 12.6vw;
  z-index: 20;
}
@media (max-width: 1024px) {
  #concept ul li .co_k {
    width: 30.8vw;
  }
}
#concept ul li .co_k img {
  width: 100%;
}
#concept ul li .co_txt {
  position: absolute;
  width: 43%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  text-align: left;
}
#concept ul li .co_txt div {
  position: relative;
  z-index: 20;
}
#concept ul li .co_txt div p {
  margin-top: 2vw;
  font-size: 1.25rem;
  line-height: 1.9;
  letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  #concept ul li .co_txt div p {
    font-size: 0.8125rem;
    line-height: 1.6153846154;
    letter-spacing: 0.1em;
  }
}
@media (max-width: 1024px) {
  #concept ul li .co_txt div p {
    margin-top: 5vw;
  }
}
@media (max-width: 1024px) {
  #concept ul li .co_txt {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
  }
  #concept ul li .co_txt div {
    width: 85%;
    height: 100%;
    margin: 0 auto;
  }
}
#concept ul li:nth-child(1) {
  padding-top: 9vw;
}
#concept ul li:nth-child(1) .co_k {
  left: 54vw;
  top: 5.5vw;
}
#concept ul li:nth-child(1) .co_txt {
  left: 57vw;
  top: 4vw;
}
@media (max-width: 1024px) {
  #concept ul li:nth-child(1) {
    padding-top: 18vw;
  }
  #concept ul li:nth-child(1) .co_k {
    left: 61vw;
    top: 8vw;
  }
  #concept ul li:nth-child(1) .co_txt {
    left: 0;
    top: 0;
    text-align: right;
  }
}
#concept ul li:nth-child(2) {
  padding-top: 12vw;
}
#concept ul li:nth-child(2) .co_img {
  margin-left: auto;
}
#concept ul li:nth-child(2) .co_k {
  width: 18.9vw;
  right: 50vw;
  top: 9vw;
}
#concept ul li:nth-child(2) .co_txt {
  right: 57vw;
  top: 4vw;
}
@media (max-width: 1024px) {
  #concept ul li:nth-child(2) {
    padding-top: 14vw;
  }
  #concept ul li:nth-child(2) .co_k {
    width: 46.2vw;
    right: 49vw;
    top: 6vw;
  }
  #concept ul li:nth-child(2) .co_txt {
    right: 0;
    top: 0;
  }
}
#concept ul li:nth-child(3) {
  padding-top: 12vw;
}
#concept ul li:nth-child(3) .co_k {
  width: 18.9vw;
  left: 49.5vw;
  top: 8.1vw;
}
#concept ul li:nth-child(3) .co_txt {
  left: 57vw;
  top: 6vw;
}
@media (max-width: 1024px) {
  #concept ul li:nth-child(3) {
    padding-top: 17vw;
  }
  #concept ul li:nth-child(3) .co_k {
    width: 46.2vw;
    left: 49vw;
    top: 8vw;
  }
  #concept ul li:nth-child(3) .co_txt {
    left: 0;
    top: 0;
    text-align: right;
  }
}

/*END*/
/*-------------------------------------------------
	eco
--------------------------------------------------*/
.eco, .eco * {
  box-sizing: border-box;
}

.eco {
  width: 100%;
  margin-top: 190px;
  padding: 85px 0;
  border-top: 1px solid #ccc;
  text-align: center;
}
@media (max-width: 640px) {
  .eco {
    width: 100VW;
    margin-top: 80px;
    padding: 50px 6.4vw;
  }
}
.eco-header {
  position: relative;
  display: block;
  margin: 0 auto;
  color: #231816;
  font-weight: bold;
  font-size: 2.8125rem;
  line-height: 1.2444444444;
  letter-spacing: 0.1em;
}
.eco-header:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: -5.5px;
}
.eco-header:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -5.5px;
}
@media (max-width: 640px) {
  .eco-header {
    font-size: 1.40625rem;
    line-height: 1.2444444444;
    letter-spacing: 0.1em;
  }
  .eco-header:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-top: -2.75px;
  }
  .eco-header:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-bottom: -2.75px;
  }
}
.eco-lead {
  margin-top: 50px;
}
@media (max-width: 640px) {
  .eco-lead {
    margin-top: 30px;
  }
}
.eco-lead > p {
  font-size: 1.25rem;
  line-height: 1.9;
  letter-spacing: 0.1em;
}
.eco-lead > p:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: -9px;
}
.eco-lead > p:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -9px;
}
@media (max-width: 640px) {
  .eco-lead > p {
    font-size: 0.8125rem;
    line-height: 1.6153846154;
    letter-spacing: 0.1em;
  }
  .eco-lead > p:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-top: -4px;
  }
  .eco-lead > p:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-bottom: -4px;
  }
}
.eco-image {
  margin-top: 60px;
}
@media (max-width: 640px) {
  .eco-image {
    margin-top: 30px;
  }
}
.eco-text {
  margin-top: 30px;
}
.eco-text > p {
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
}
.eco-text > p:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: -6px;
}
.eco-text > p:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -6px;
}
@media (max-width: 640px) {
  .eco-text > p {
    font-size: 0.8125rem;
    line-height: 1.6153846154;
    letter-spacing: 0.1em;
  }
  .eco-text > p:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-top: -4px;
  }
  .eco-text > p:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-bottom: -4px;
  }
}

/*-------------------------------------------------
	menu
--------------------------------------------------*/
#menu, #menu * {
  box-sizing: border-box;
}

#menu {
  width: 100%;
  padding: 85px 0 0;
  text-align: center;
  border-top: 1px solid #ccc;
}
@media (max-width: 640px) {
  #menu {
    width: 100vw;
    padding: 50px 6.4vw 0;
  }
}

.menu-header {
  display: block;
  margin: 0 auto;
  color: #231816;
  font-weight: bold;
  font-size: 2.8125rem;
  line-height: 1.2444444444;
  letter-spacing: 0.1em;
}
.menu-header:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: -5.5px;
}
.menu-header:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -5.5px;
}
@media (max-width: 640px) {
  .menu-header {
    font-size: 1.40625rem;
    line-height: 1.2444444444;
    letter-spacing: 0.1em;
  }
  .menu-header:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-top: -2.75px;
  }
  .menu-header:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-bottom: -2.75px;
  }
}
.menu-header.mod-sub {
  font-size: 1.625rem;
  line-height: 1.5384615385;
  letter-spacing: 0.12em;
}
.menu-header.mod-sub:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: -7px;
}
.menu-header.mod-sub:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -7px;
}
@media (max-width: 640px) {
  .menu-header.mod-sub {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.12em;
  }
  .menu-header.mod-sub:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-top: -5px;
  }
  .menu-header.mod-sub:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-bottom: -5px;
  }
}
.menu-lead {
  margin-top: 50px;
}
@media (max-width: 640px) {
  .menu-lead {
    margin-top: 30px;
  }
}
.menu-lead.mod-sub > p {
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.12em;
}
.menu-lead.mod-sub > p > small {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.06em;
}
.menu-lead.mod-sub > p + p {
  margin-top: 40px;
}
@media (max-width: 640px) {
  .menu-lead.mod-sub > p {
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 0.12em;
  }
  .menu-lead.mod-sub > p > small {
    font-size: 0.6875rem;
    line-height: 1.8181818182;
    letter-spacing: 0.06em;
  }
  .menu-lead.mod-sub > p + p {
    margin-top: 15px;
  }
}
.menu-divider {
  display: block;
  width: 100%;
  max-width: 1314px;
  height: 1px;
  margin: 120px auto;
  padding: 0 24px;
  background-color: #ccc;
  outline: none;
  border: none;
  appearance: none;
}
@media (max-width: 640px) {
  .menu-divider {
    margin: 60px auto;
    padding: 0 6.4vw;
  }
}
.menu-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1314px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 640px) {
  .menu-wrapper {
    display: block;
    padding: 0;
  }
}
.menu-wrapper.mod-primary {
  margin-top: 100px;
}
@media (max-width: 640px) {
  .menu-wrapper.mod-primary {
    margin-top: 60px;
  }
}
.menu-wrapper.mod-secondary {
  row-gap: 80px;
  margin-top: 50px;
}
@media (max-width: 640px) {
  .menu-wrapper.mod-secondary {
    margin-top: 30px;
  }
}
.menu-box {
  flex: 0 1 min(590px, 48%);
}
@media (max-width: 640px) {
  .menu-box {
    margin-top: 100px;
  }
  .menu-box:first-child {
    margin-top: 0;
  }
}
.menu-box.mod-center {
  margin-left: auto;
  margin-right: auto;
}
.menu-box-name {
  font-weight: bold;
  font-size: 1.625rem;
  line-height: 1.5384615385;
  letter-spacing: 0.12em;
}
.menu-box-name:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: -7px;
}
.menu-box-name:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -7px;
}
@media (max-width: 640px) {
  .menu-box-name {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.12em;
  }
  .menu-box-name:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-top: -5px;
  }
  .menu-box-name:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-bottom: -5px;
  }
}
.menu-box-lead {
  margin-top: 50px;
}
@media (max-width: 640px) {
  .menu-box-lead {
    margin-top: 20px;
  }
}
.menu-box-lead > p {
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.12em;
}
.menu-box-lead > p > small {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.06em;
}
.menu-box-lead > p + p {
  margin-top: 40px;
}
@media (max-width: 640px) {
  .menu-box-lead > p {
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 0.12em;
  }
  .menu-box-lead > p > small {
    display: inline-block;
    font-size: 0.6875rem;
    line-height: 1.8181818182;
    letter-spacing: 0.06em;
  }
  .menu-box-lead > p + p {
    margin-top: 15px;
  }
}
.menu-box-price > p, .menu-special-price > p {
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0em;
}
.menu-box-price > p:before, .menu-special-price > p:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: -6px;
}
.menu-box-price > p:after, .menu-special-price > p:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -6px;
}
@media (max-width: 640px) {
  .menu-box-price > p, .menu-special-price > p {
    font-size: 0.9375rem;
    line-height: 1.3333333333;
    letter-spacing: 0em;
  }
  .menu-box-price > p:before, .menu-special-price > p:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-top: -2.5px;
  }
  .menu-box-price > p:after, .menu-special-price > p:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-bottom: -2.5px;
  }
}
.menu-wrapper.mod-secondary .menu-box-price, .menu-wrapper.mod-secondary .menu-special-price {
  margin-top: 30px;
}
@media (max-width: 640px) {
  .menu-wrapper.mod-secondary .menu-box-price, .menu-wrapper.mod-secondary .menu-special-price {
    margin-top: 15px;
  }
}

.menu-box-okazu {
  margin-top: 30px;
  line-height: 1;
}
@media (max-width: 640px) {
  .menu-box-okazu {
    margin-top: 10px;
  }
}
.menu-box-okazu-btn, .menu-special-okazu-btn {
  width: max-content;
  margin: 0 auto;
  padding: 0 0 5px;
  border-bottom: 1px #000 solid;
  color: #000;
  text-decoration: none;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0em;
  transition: all 0.3s;
}
@media (max-width: 640px) {
  .menu-box-okazu-btn, .menu-special-okazu-btn {
    padding-bottom: 3px;
    font-size: 0.8125rem;
    line-height: 1;
    letter-spacing: 0em;
  }
}
.menu-box-okazu-btn:hover, .menu-special-okazu-btn:hover, .menu-box-okazu-btn:active, .menu-special-okazu-btn:active {
  padding-right: 20px;
  padding-left: 20px;
}
.menu-box-okazu-modal, .menu-special-okazu-modal {
  display: none;
}
.menu-box-okazu-modal-title, .menu-special-okazu-modal-title {
  font-weight: bold;
  font-size: 1.5625rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
.menu-box-okazu-modal-title:before, .menu-special-okazu-modal-title:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: -7.5px;
}
.menu-box-okazu-modal-title:after, .menu-special-okazu-modal-title:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -7.5px;
}
.menu-box-okazu-modal-subtitle, .menu-special-okazu-modal-subtitle {
  width: max-content;
  margin: 40px auto;
  padding: 0px 15px;
  border-width: 1px 0;
  border-color: #999;
  border-style: solid;
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0em;
}
.menu-box-okazu-modal-list > p, .menu-special-okazu-modal-list > p {
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0em;
}
.menu-box-okazu-modal-list > p:before, .menu-special-okazu-modal-list > p:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: -7px;
}
.menu-box-okazu-modal-list > p:after, .menu-special-okazu-modal-list > p:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -7px;
}
.menu-special {
  width: 100%;
  max-width: 1314px;
  margin: 120px auto 0;
  padding: 120px 24px;
  background-color: #fcf8e7;
}
@media (max-width: 640px) {
  .menu-special {
    width: 100vw;
    margin: 60px -6.4vw 0;
    padding: 60px 6.4vw;
  }
}
.menu-special-okazu {
  line-height: 1;
  margin-top: 50px;
}
@media (max-width: 640px) {
  .menu-special-okazu {
    margin-top: 30px;
  }
}
.menu-special-image {
  margin-top: 60px;
}
@media (max-width: 640px) {
  .menu-special-image {
    margin-top: 40px;
  }
}
.menu-special-price {
  margin-top: 60px;
}
@media (max-width: 640px) {
  .menu-special-price {
    margin-top: 30px;
  }
}

/*----------------------------------------------------------------------
    venobox2
-----------------------------------------------------------------------*/
.vbox-inline {
  width: 100%;
  max-width: 580px;
  min-height: 315px;
  border-radius: 5px;
  margin: 0 auto;
  padding: 80px 30px;
  text-align: center;
}

/*-------------------------------------------------
	カートボタン
--------------------------------------------------*/
.cart {
  position: fixed;
  right: 20px;
  top: 0;
  z-index: 100;
  display: block;
  width: 60px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 0 0 5px 5px;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (orientation: portrait) {
  .cart {
    background-color: rgb(0, 0, 0);
  }
}
@media (max-width: 640px) {
  .cart {
    right: 10px;
    width: 50px;
  }
}
.cart:hover {
  background: rgb(0, 0, 0);
}

/*END*/
/*-------------------------------------------------
	商品追加フォーム
--------------------------------------------------*/
button,
input,
select,
textarea,
.pure-g [class*=pure-u] {
  font-family: Meiryo, Hiragino Kaku Gothic Pro, sans-serif;
}

.item_detail_info {
  width: 100%;
  max-width: 350px;
  margin: 30px auto 0;
  text-align: center;
}
@media (max-width: 640px) {
  .item_detail_info {
    max-width: auto;
    margin: 20px auto 0;
  }
}

/*[プルダウン] */
.variations {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 0;
  padding: 0;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
}
.variations .variation_group_name {
  flex: 0 0 auto;
  font-size: 14px;
  line-height: 14px;
  font-family: "Noto Serif JP", serif;
}
.variations select {
  position: relative;
  flex: 1 1 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 5px 30px 5px 5px;
  background: #fff;
  border: 1px solid #bbb;
  border-radius: 5px;
  box-shadow: none;
  font-family: "Noto Serif JP", serif;
  color: #000;
  font-size: 14px;
  line-height: 16px;
  cursor: pointer;
  text-overflow: ellipsis;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
@media (max-width: 640px) {
  .variations select {
    font-size: 16px;
  }
}
.variations::before {
  content: "";
  position: absolute;
  z-index: 10;
  top: calc(50% - 3px);
  right: 8px;
  display: block;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #666;
  pointer-events: none;
}

/* 数量：[-][+]*/
.item_detail_number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin: 20px auto 0;
  padding: 0;
  font-size: 0;
  line-height: 1;
}
.item_detail_number span {
  font-size: 14px;
  line-height: 1;
}
.item_detail_number button {
  width: 25px;
  height: 25px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 5px 0 0 5px;
  background-color: #999;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  outline: none;
  appearance: none;
  overflow: hidden;
  transition: background-color 0.3s;
}
.item_detail_number button:last-child {
  border-radius: 0 5px 5px 0;
}
.item_detail_number button:hover {
  background-color: #000;
}
.item_detail_number input {
  width: 40px;
  height: 25px;
  margin: 0;
  padding: 0;
  border: 0;
  background-color: #eee;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  outline: none;
  appearance: none;
}

/*カートボタン*/
.info_group {
  margin-top: 30px;
}
@media (max-width: 640px) {
  .info_group {
    margin-top: 20px;
  }
}
.info_group a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: max-content;
  margin: 0 auto;
  padding: 6px 45px;
  border: 0;
  border-radius: 5px;
  background-color: #000;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  transition: 0.3s;
}
@media (max-width: 640px) {
  .info_group a {
    width: 100%;
    max-width: 50vw;
    font-size: 12px;
    padding: 6px 1em;
    gap: 1px;
  }
}
.info_group a:hover {
  background-color: #555;
}
.info_group a:after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  margin-right: -10px;
  background-image: url(../img/cart.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 640px) {
  .info_group a:after {
    width: 28px;
    height: 28px;
    margin-right: -5px;
  }
}

/*ios 角丸対応*/
input[type=button],
input[type=text],
input[type=submit],
input[type=image],
textarea {
  -webkit-appearance: none !important;
  border-radius: 0;
}

input {
  border-radius: 0;
}

#omiyage {
  width: 100%;
  margin: 150px auto 0;
  padding: 120px 0;
  background-color: #f6f0e8;
  text-align: center;
}
@media (max-width: 640px) {
  #omiyage {
    width: 100%;
    margin: 0 auto;
    padding: 60px 6.4vw;
  }
}
#omiyage, #omiyage * {
  box-sizing: border-box;
}

.omiyage-header {
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 1.4;
  letter-spacing: 0.12em;
}
.omiyage-header:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: -8px;
}
.omiyage-header:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -8px;
}
@media (max-width: 640px) {
  .omiyage-header {
    font-size: 1.40625rem;
    line-height: 1.2444444444;
    letter-spacing: 0.1em;
  }
  .omiyage-header:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-top: -2.75px;
  }
  .omiyage-header:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-bottom: -2.75px;
  }
}
.omiyage-lead {
  margin-top: 50px;
}
@media (max-width: 640px) {
  .omiyage-lead {
    margin-top: 30px;
  }
}
.omiyage-lead > p {
  font-size: 1.5rem;
  line-height: 1.6666666667;
  letter-spacing: 0.06em;
}
.omiyage-lead > p:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: -8px;
}
.omiyage-lead > p:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -8px;
}
@media (max-width: 640px) {
  .omiyage-lead > p {
    font-size: 1rem;
    line-height: 1.4375;
    letter-spacing: 0.1em;
  }
  .omiyage-lead > p:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-top: -3.5px;
  }
  .omiyage-lead > p:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-bottom: -3.5px;
  }
}
.omiyage-obi {
  position: relative;
  display: block;
  width: 100%;
  height: 4px;
  margin: 133px auto 33px;
  padding: 0;
  background: linear-gradient(to bottom, #c00 50%, #fff 51%);
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  outline: none;
  border: none;
}
@media (max-width: 640px) {
  .omiyage-obi {
    width: 100vw;
    margin: 78px -6.4vw 28px;
  }
}
.omiyage-obi::before {
  content: "";
  position: absolute;
  top: -33px;
  left: calc(50% - 35px);
  z-index: 1;
  display: block;
  width: 70px;
  height: 70px;
  background: url(../img/omiyage.png) no-repeat;
  background-size: contain;
}
@media (max-width: 640px) {
  .omiyage-obi::before {
    top: -28px;
    left: calc(50% - 30px);
    width: 60px;
    height: 60px;
  }
}

.kohagi {
  margin-top: 70px;
}
.kohagi-title, .yakumi-title {
  position: relative;
  width: max-content;
  margin: 0 auto;
  padding: 0;
  font-weight: bold;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: 0.12em;
}
@media (max-width: 640px) {
  .kohagi-title, .yakumi-title {
    font-size: 1.375rem;
    line-height: 1.5909090909;
    letter-spacing: 0.12em;
  }
}
.kohagi-title::after, .yakumi-title::after {
  content: "";
  position: absolute;
  left: -3%;
  bottom: -6px;
  display: block;
  width: 106%;
  height: 13px;
  background-color: #fff;
  z-index: -1;
}
@media (max-width: 640px) {
  .kohagi-title::after, .yakumi-title::after {
    bottom: 2px;
    height: 10px;
  }
}
.kohagi-lead, .yakumi-lead {
  margin-top: 30px;
}
@media (max-width: 640px) {
  .kohagi-lead, .yakumi-lead {
    margin-top: 20px;
  }
}
.kohagi-lead > p, .yakumi-lead > p {
  font-size: 1.125rem;
  line-height: 1.7777777778;
  letter-spacing: 0.06em;
}
.kohagi-lead > p:before, .yakumi-lead > p:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: -7px;
}
.kohagi-lead > p:after, .yakumi-lead > p:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -7px;
}
@media (max-width: 640px) {
  .kohagi-lead > p, .yakumi-lead > p {
    font-size: 0.875rem;
    line-height: 1.6428571429;
    letter-spacing: 0.06em;
  }
  .kohagi-lead > p:before, .yakumi-lead > p:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-top: -4.5px;
  }
  .kohagi-lead > p:after, .yakumi-lead > p:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-bottom: -4.5px;
  }
}
.kohagi-images {
  display: grid;
  width: 100%;
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 0;
  grid-template: "primary primary" auto "secondaryA secondaryB" auto/50% 50%;
}
@media (max-width: 640px) {
  .kohagi-images {
    margin: 50px auto 0;
    grid-template: "primary" auto "secondaryA" auto "secondaryB" auto/1fr;
  }
}
.kohagi-images-box.mod-primary {
  grid-area: primary;
}
.kohagi-images-box.mod-secondary-a {
  grid-area: secondaryA;
}
.kohagi-images-box.mod-secondary-b {
  grid-area: secondaryB;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
@media (max-width: 640px) {
  .kohagi-images-box.mod-secondary-b {
    margin-top: 20px;
    background: transparent;
  }
}
.kohagi-images-box.mod-secondary-b > p {
  width: max-content;
  text-align: left;
  font-size: 1.125rem;
  line-height: 1.7777777778;
  letter-spacing: 0.06em;
}
@media (max-width: 640px) {
  .kohagi-images-box.mod-secondary-b > p {
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.6428571429;
    letter-spacing: 0.06em;
  }
  .kohagi-images-box.mod-secondary-b > p:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-top: -4.5px;
  }
  .kohagi-images-box.mod-secondary-b > p:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-bottom: -4.5px;
  }
}
.kohagi-wrapper, .drink-wrapper, .yakumi-wrapper {
  display: grid;
  width: 100%;
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 0;
  grid: auto-flow/repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 640px) {
  .kohagi-wrapper, .drink-wrapper, .yakumi-wrapper {
    width: 100%;
    margin: 30px auto 0;
    grid: auto-flow/repeat(2, 1fr);
    gap: 6.4vw;
  }
}
.kohagi-box, .drink-box, .yakumi-box {
  display: flex;
  flex-direction: column;
}
.kohagi-box-name, .drink-box-name, .yakumi-box-name {
  margin-top: 20px;
}
.kohagi-box-name > p, .drink-box-name > p, .yakumi-box-name > p {
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0em;
}
.kohagi-box-name > p:before, .drink-box-name > p:before, .yakumi-box-name > p:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: -6px;
}
.kohagi-box-name > p:after, .drink-box-name > p:after, .yakumi-box-name > p:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -6px;
}
@media (max-width: 640px) {
  .kohagi-box-name > p, .drink-box-name > p, .yakumi-box-name > p {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  .kohagi-box-name > p:before, .drink-box-name > p:before, .yakumi-box-name > p:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-top: -4px;
  }
  .kohagi-box-name > p:after, .drink-box-name > p:after, .yakumi-box-name > p:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-bottom: -4px;
  }
}
.kohagi-box-description, .yakumi-box-description {
  margin-top: 10px;
}
.kohagi-box-description > p, .yakumi-box-description > p {
  font-size: 0.875rem;
  line-height: 2.8571428571;
  letter-spacing: 0em;
}
.kohagi-box-description > p:before, .yakumi-box-description > p:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: -13px;
}
.kohagi-box-description > p:after, .yakumi-box-description > p:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -13px;
}
@media (max-width: 640px) {
  .kohagi-box-description > p, .yakumi-box-description > p {
    font-size: 0.8125rem;
    line-height: 1.5384615385;
    letter-spacing: 0em;
  }
  .kohagi-box-description > p:before, .yakumi-box-description > p:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-top: -3.5px;
  }
  .kohagi-box-description > p:after, .yakumi-box-description > p:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-bottom: -3.5px;
  }
}
.kohagi-box-price, .drink-box-price, .yakumi-box-price {
  margin-top: 10px;
}
.kohagi-box-price > p, .drink-box-price > p, .yakumi-box-price > p {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0em;
}
.kohagi-box-price > p:before, .drink-box-price > p:before, .yakumi-box-price > p:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: -4px;
}
.kohagi-box-price > p:after, .drink-box-price > p:after, .yakumi-box-price > p:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -4px;
}
.kohagi-box .item_detail_info, .drink-box .item_detail_info, .yakumi-box .item_detail_info {
  margin-top: 0;
}
.kohagi-box .item_detail_info input, .drink-box .item_detail_info input, .yakumi-box .item_detail_info input {
  background-color: #fff;
}
.kohagi-bag {
  margin-top: 120px;
}
@media (max-width: 640px) {
  .kohagi-bag {
    margin-top: 60px;
  }
}
.kohagi-bag-text {
  margin-top: 15px;
}
.kohagi-bag-text > p {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0em;
}
.kohagi-bag-text > p:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: -4px;
}
.kohagi-bag-text > p:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -4px;
}
@media (max-width: 640px) {
  .kohagi-bag-text > p {
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  .kohagi-bag-text > p:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-top: -3.5px;
  }
  .kohagi-bag-text > p:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-bottom: -3.5px;
  }
}

.yakumi {
  width: 100%;
  max-width: 1314px;
  margin: 120px auto 0;
  padding: 80px 24px 0;
  border-top: 1px solid #bbb;
}
@media (max-width: 640px) {
  .yakumi {
    margin: 60px auto 0;
    padding: 60px 0 0;
  }
}
.yakumi-wrapper {
  margin-top: 30px;
  grid: auto-flow/repeat(1, 1fr);
}
@media (max-width: 640px) {
  .yakumi-wrapper {
    margin-top: 10px;
  }
}
.yakumi-box .item_detail_info {
  margin-top: 20px;
}

.drink {
  width: 100%;
  max-width: 1200px;
  margin: 100px auto 0;
  padding: 0;
  text-align: center;
}
@media (max-width: 640px) {
  .drink {
    margin: 50px auto 0;
    padding: 0 6.4vw;
  }
}
.drink, .drink * {
  box-sizing: border-box;
}
.drink-header {
  display: block;
  margin: 0 auto;
  color: #231816;
  font-weight: bold;
  font-size: 1.625rem;
  line-height: 1.5384615385;
  letter-spacing: 0.12em;
}
.drink-header:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: -7px;
}
.drink-header:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -7px;
}
@media (max-width: 640px) {
  .drink-header {
    font-size: 1.40625rem;
    line-height: 1.2444444444;
    letter-spacing: 0.1em;
  }
  .drink-header:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-top: -2.75px;
  }
  .drink-header:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-bottom: -2.75px;
  }
}
.drink-lead {
  margin-top: 50px;
}
@media (max-width: 640px) {
  .drink-lead {
    margin-top: 30px;
  }
}
.drink-lead > p {
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.12em;
}
.drink-lead > p:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: -6px;
}
.drink-lead > p:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -6px;
}
@media (max-width: 640px) {
  .drink-lead > p {
    font-size: 0.8125rem;
    line-height: 1.7692307692;
    letter-spacing: 0.1em;
  }
  .drink-lead > p:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-top: -5px;
  }
  .drink-lead > p:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-bottom: -5px;
  }
}
.drink-wrapper {
  margin-top: 30px;
  row-gap: 60px;
}
@media (max-width: 640px) {
  .drink-wrapper {
    margin-top: 10px;
    row-gap: 20px;
  }
}
.drink-box-name {
  margin-bottom: auto;
}
.drink-box .item_detail_info input {
  background-color: #eee;
}

.data {
  width: 100%;
  margin: 120px auto 0;
  padding: 80px 24px;
  border-top: 1px solid #ccc;
}
@media (max-width: 640px) {
  .data {
    margin: 60px auto 0;
    padding: 20px 6.4vw;
  }
}
.data, .data * {
  box-sizing: border-box;
}
.data-inner {
  display: grid;
  grid: auto-flow/repeat(2, 48%);
  gap: 4%;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 640px) {
  .data-inner {
    display: block;
  }
}
.data-box {
  margin-top: 50px;
}
@media (max-width: 640px) {
  .data-box {
    margin-top: 30px;
  }
}
.data-box.mod-warning {
  color: #ed5656;
}
.data-box-header {
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 640px) {
  .data-box-header {
    font-size: 1rem;
    line-height: 1.25;
    letter-spacing: 0em;
  }
}
.data-box-header::before {
  content: "■ ";
  display: inline-block;
  color: #999;
}
.data-box-body p {
  margin-top: 10px;
  font-size: 0.9375rem;
  line-height: 1.6666666667;
  letter-spacing: 0em;
}
@media (max-width: 640px) {
  .data-box-body p {
    margin-top: 5px;
    font-size: 0.875rem;
    line-height: 1.6428571429;
    letter-spacing: 0em;
  }
}
.data-box-body p small {
  color: #666;
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  letter-spacing: 0em;
}
@media (max-width: 640px) {
  .data-box-body p small {
    font-size: 0.75rem;
    line-height: 1.6666666667;
    letter-spacing: 0em;
  }
}
.data-box-body p.btn-pdf {
  margin: 15px 0;
}
.data-box-body p.btn-pdf a {
  display: block;
  width: max-content;
  margin: 0;
  padding: 12px 40px;
  background-color: #eee;
  border: 1px solid #ccc;
  color: #000;
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1.7857142857;
  letter-spacing: 0em;
  text-decoration: none;
  transition: all 0.3s;
}
.data-box-body p.btn-pdf a:hover {
  background-color: #ddd;
  border-color: #ddd;
}
.data-box-body .table-responsive {
  margin-top: 10px;
}
@media (max-width: 1024px) {
  .data-box-body .table-responsive {
    overflow-x: scroll;
  }
}
.data-box-body table {
  border-collapse: collapse;
  text-wrap: nowrap;
}
.data-box-body table td, .data-box-body table th {
  padding: 10px 15px;
  border: 1px #bbb solid;
  font-weight: normal;
  text-align: right;
  font-size: 0.875rem;
  line-height: 1.7857142857;
  letter-spacing: 0em;
}
@media (max-width: 640px) {
  .data-box-body table td, .data-box-body table th {
    font-size: 0.875rem;
    line-height: 1.6428571429;
    letter-spacing: 0em;
  }
}
.data-box-body table > thead th {
  background-color: #f3f3f3;
}
.data-box-body table > thead th:first-child {
  text-align: left;
  background-color: #ddd;
}
.data-box-body table > tbody th {
  background-color: #f3f3f3;
  text-align: left;
}
.data-box-body dl {
  margin-top: 10px;
  font-size: 0.9375rem;
  line-height: 1.6666666667;
  letter-spacing: 0em;
}
@media (max-width: 640px) {
  .data-box-body dl {
    font-size: 0.875rem;
    line-height: 1.6428571429;
    letter-spacing: 0em;
  }
}
.data-box-body dl > div {
  display: flex;
}
.data-box-body dl > div > dt {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
}
.data-box-body dl > div > dd {
  flex: 0 0 3em;
  margin: 0;
  padding: 0;
  text-align: right;
}

.corporate {
  width: 90%;
  margin: 0 auto;
  padding: 80px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  text-align: center;
}
@media (max-width: 640px) {
  .corporate {
    width: calc(100% - 6.4vw * 2);
    margin: 50px 6.4vw 0;
    padding: 40px 0;
  }
}
.corporate, .corporate * {
  box-sizing: border-box;
}
.corporate-header {
  margin-bottom: 30px;
  font-size: 1.625rem;
  line-height: 1;
  letter-spacing: 0.06em;
}
.corporate-header:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: 0px;
}
.corporate-header:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: 0px;
}
@media (max-width: 640px) {
  .corporate-header {
    margin-bottom: 20px;
    font-size: 1.375rem;
    line-height: 1;
    letter-spacing: 0.06em;
  }
  .corporate-header:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-top: 0px;
  }
  .corporate-header:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-bottom: 0px;
  }
}
.corporate-body p {
  margin-top: 10px;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media (max-width: 640px) {
  .corporate-body p {
    font-size: 0.8125rem;
    line-height: 1.6153846154;
    letter-spacing: 0em;
  }
}
.corporate-body p a {
  color: #000;
  text-decoration: underline;
  transition: 0.3s;
}
.corporate-body p a:hover {
  opacity: 0.6;
}
.corporate-body p a.tel {
  pointer-events: none;
  text-decoration: none;
}
.corporate-body .btn-mail {
  margin: 30px auto 0;
}
.corporate-body .btn-mail a {
  display: block;
  width: max-content;
  margin: 0 auto;
  padding: 15px 50px;
  background-color: #fff;
  border: 1px solid #000;
  font-size: 0.875rem;
  line-height: 1.7857142857;
  letter-spacing: 0.04em;
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}
.corporate-body .btn-mail a:hover {
  color: #fff;
  background-color: #000;
}
.corporate-banner {
  width: 100%;
  margin: 80px auto 0;
  padding: 0;
}
.corporate-banner a {
  display: block;
  width: fit-content;
  margin: 0 auto;
  transition: 0.3s;
}
.corporate-banner a:hover {
  opacity: 0.6;
}
@media (max-width: 640px) {
  .corporate-banner {
    width: 100%;
    margin: 50px auto 0;
  }
}

.gotop {
  position: fixed;
  bottom: 0;
  right: 15px;
  width: max-content;
  z-index: 5;
}
@media (max-width: 640px) {
  .gotop {
    bottom: 10px;
    right: 0;
  }
}
.gotop, .gotop * {
  box-sizing: border-box;
}
.gotop a {
  position: relative;
  display: block;
  width: 45px;
  height: 200px;
  background: url("../img/page_top.png") center top no-repeat;
  background-size: contain;
  text-decoration: none;
  transition: 0.3s;
}
@media (max-width: 640px) {
  .gotop a {
    width: 40px;
    height: 130px;
  }
}
.gotop a:hover {
  opacity: 0.5;
}

/*-------------------------------------------------
	footer
--------------------------------------------------*/
footer {
  padding: 50px 0;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

footer .copyright {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
}

/* 260224 汎用noticeクラス追加
------------------------------------------ */
.notice {
  width: 90vw;
  max-width: 860px;
  margin: 45px auto;
  padding: 36px;
  background-color: #f5f5f5;
  color: #231816;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.04em;
}
@media (max-width: 760px) {
  .notice {
    width: 85.3vw;
    max-width: none;
    margin: 30px auto;
    padding: 30px 15px;
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}
.notice p {
  text-box: trim-both cap alphabetic;
}
.notice p + p {
  margin-top: 1.25lh;
}
/*# sourceMappingURL=style.css.map */
