@charset "UTF-8";
:root {
  --color-w: #ffffff;
  --color-main: #8a7032;
  --color-red: #800000;
  --color-bg: #eaf2f7;
  --color-bg2: #dde5eb;
  --color-bg3: #dce0e4;
  --color-bg4: #b5c1c5;
  --color-bg5: #aab2b1;
  --color-bg-column: #c3ccd4;
  --color-order-bg: #e6edf2;
  --color-footer: #8b989e;
  --color-bg-red: #751707;
  --color-bg-blue: #ba791a;
  --color-moji: #565656;
  --color-moji-column: #d4dada;
  --color-0: #000000;
  --color-1: #111111;
  --color-2: #202020;
  --color-3: #474747;
  --color-4: #7c7c7c;
  --color-5: #a0a0a0;
  --color-6: #c4c4c4;
  --color-7: #d8d8d8;
  --color-8: #e5e5e5;
  --color-9: #f4f4f4;
  --color-10: #ffffff;
  --color-green: #094147;
  --color-blue: #53657d;
  --color-gold: #a28c63;
  --color-orange: #de7f5e;
  --color-red2: #f78a81;
  --color-info: #f7f7f7;
  --color-grey: #769777;
  --color-pink: #ffada7;
  --color-yellow: #f5ce43;
  --color-beige: #b2b0a8;
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
  --box-shadow: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05), -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.08), -1rem -1rem 1.5rem #fff;
  --box-shadow-inset: inset 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05), inset -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-dark: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.1), -0.8rem -0.8rem 1.2rem rgba(#fff, 0.2);
  --font-main: "Monomakh", "Hina Mincho", serif;
  --font-bold: "Monomakh", "Hina Mincho", serif;
  --font-go: "Kantumruy Pro", "Noto Sans JP", sans-serif;
}

::selection {
  background: #8b989e;
}

.wabori_page {
  --color-main: #800000;
  --color-red: #800000;
  --color-gold: #8a7032;
}

/* ==========================================================================

	common style

========================================================================== */
html {
  font-size: 62.5%;
  font-family: var(--font-main);
  color: var(--color-moji);
}

body {
  font-size: 1.2rem;
  position: relative;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: var(--color-0);
}

body.overflow {
  overflow: hidden;
}

main {
  position: relative;
}

input:-internal-autofill-selected {
  background-color: #fbfbfd !important;
}

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

a:hover {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

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

/* ==========================================================================

	loading

========================================================================== */
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    display: none;
    opacity: 0;
    z-index: -1;
  }
}
#loader {
  width: 100%;
  height: 100vh;
  z-index: 999999;
  position: fixed;
}

#loader.loaded {
  animation: fadeOut 3s forwards;
  display: none;
  z-index: -1;
}

/* ==========================================================================

	splide

========================================================================== */
.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}

.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.splide {
  z-index: 0;
}

.splide__pagination {
  font-size: 0;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

.splide__slide:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

.splide-wrapper {
  position: relative;
}

.splide__arrow > svg {
  display: none;
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

/* ==========================================================================

	animation

========================================================================== */
.hover-photo {
  vertical-align: top;
  transition: transform 1s cubic-bezier(0.5, 1, 0.89, 1);
  overflow: hidden;
}
.hover-photo img {
  transform: scale(1);
  transition: transform 1s cubic-bezier(0.5, 1, 0.89, 1);
  vertical-align: bottom;
}
@media only screen and (min-width: 769px) {
  .hover-photo:hover img {
    transform: scale(1.08);
    transition: transform 1s cubic-bezier(0.5, 1, 0.89, 1);
  }
}

.hover-photo_li {
  vertical-align: top;
  transition: transform 1s cubic-bezier(0.5, 1, 0.89, 1);
}
.hover-photo_li .img {
  width: 100%;
  overflow: hidden;
}
.hover-photo_li .img img {
  transform: scale(1);
  transition: transform 1s cubic-bezier(0.5, 1, 0.89, 1);
  vertical-align: bottom;
}
@media only screen and (min-width: 769px) {
  .hover-photo_li:hover .img img {
    transform: scale(1.08);
    transition: transform 1s cubic-bezier(0.5, 1, 0.89, 1);
  }
}

.fadein {
  opacity: 0;
  transform: translate(0, 15px);
  transition: 0.8s linear;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein_fade {
  -webkit-transform: translateY(0px) scale(1);
  -ms-transform: translateY(0px) scale(1);
  transform: translateY(0px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-filter: blur(10px) brightness(1.5);
  filter: blur(10px) brightness(1.5);
}

.fadein_fade.scrollin {
  transform: translate(0, 0);
  -webkit-transform: translateY(0px) scale(1);
  -ms-transform: translateY(0px) scale(1);
  transform: translateY(0px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-filter: blur(0px) brightness(1);
  filter: blur(0px) brightness(1);
  -webkit-transition: opacity 1.5s ease 0.01s, -webkit-transform 1.5s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.01s, -webkit-filter 1.5s ease 0.01s;
  transition: opacity 1.5s ease 0.01s, -webkit-transform 1.5s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.01s, -webkit-filter 1.5s ease 0.01s;
  transition: transform 1.5s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.01s, opacity 1.5s ease 0.01s, filter 1.5s ease 0.01s;
  transition: transform 1.5s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.01s, opacity 1.5s ease 0.01s, filter 1.5s ease 0.01s, -webkit-transform 1.5s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.01s, -webkit-filter 1.5s ease 0.01s;
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.delay-1000 {
  transition-delay: 1000ms;
}

.display-none {
  display: none;
}

.opacity-0 {
  opacity: 0;
}

.linkanime,
.linkanime::after {
  -webkit-transition: all 640ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 640ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: all 640ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 640ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slidein {
  opacity: 0;
}

.slidein.is-active {
  opacity: 1;
  animation: slideIn 1.6s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes slideIn {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
/* ==========================================================================

	header

========================================================================== */
.header {
  display: flex;
  position: fixed;
  width: 100%;
  height: auto;
  top: 0px;
  z-index: 10;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  z-index: 999999;
  padding: 0;
  opacity: 0;
  transform: translate(0, -30px);
  -webkit-transition: opacity 2s ease 0.1s, -webkit-transform 3s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.6s, -webkit-filter 2s ease 0.1s;
  transition: opacity 2s ease 0.1s, -webkit-transform 3s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.6s, -webkit-filter 2s ease 0.1s;
}
@media only screen and (max-width: 768px) {
  .header {
    padding: 10px 0px;
    margin: 0;
    width: 100%;
    display: block;
  }
}
.header__logo {
  padding: 20px 0px 0 0;
  margin: 0 0 0 30px;
  width: 120px;
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .header__logo {
    margin: 4px 0 0 0px;
    padding: 0;
    width: 130px;
    position: absolute;
    left: 16px;
    z-index: 1000;
    display: block;
  }
}
.header__nav {
  list-style: none;
  margin: 18px 0 0 40px;
  width: calc(100% - 340px);
  opacity: 0;
}
@media only screen and (max-width: 1000px) {
  .header__nav {
    width: calc(100% - 240px);
    margin: 3px 0 0 20px;
  }
}
@media only screen and (max-width: 900px) {
  .header__nav {
    display: none !important;
  }
}
.header__nav ul {
  margin: 0px;
  z-index: 1000;
}
@media only screen and (max-width: 768px) {
  .header__nav ul {
    display: none;
  }
}
.header__nav ul li {
  font-size: 1.1rem;
  text-transform: none;
  letter-spacing: 1px;
  color: var(--color-w);
}
.header__nav ul li * {
  color: var(--color-moji);
}
@media only screen and (max-width: 1000px) {
  .header__nav ul li {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 768px) {
  .header__nav ul li {
    font-size: 1.7rem;
  }
  .header__nav ul li * {
    color: var(--color-w);
  }
}
.header__nav ul li:not(:last-child) {
  margin: 0 20px 0 0;
  text-transform: none;
}
@media only screen and (max-width: 1000px) {
  .header__nav ul li:not(:last-child) {
    margin: 0 12px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .header__nav ul li:not(:last-child) {
    margin: 0 0 20px 0;
  }
}
.header .language {
  position: absolute;
  right: 200px;
  margin: 11px 0 0;
  top: 15px;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .header .language {
    position: absolute;
    right: 80px;
    margin: 11px 0 0;
    top: 12px;
    cursor: pointer;
  }
}
.header .language .accordion {
  color: var(--color-10);
  position: relative;
  padding: 0 15px 0 0;
  letter-spacing: 1px;
}
.header .language .accordion .symbol {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-bottom: 1px solid var(--color-10);
  border-right: 1px solid var(--color-10);
  position: absolute;
  top: 8px;
  right: 0;
  -webkit-transform: translate(25%, -75%) rotateX(0) rotate(45deg);
  transform: translate(25%, -75%) rotateX(0) rotate(45deg);
  -webkit-transition: 0.3s transformease-in-out;
  transition: 0.3s transformease-in-out;
}
.header .language .content {
  list-style-type: none;
  margin: 0px;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
  letter-spacing: 0;
}
.header .language .content .sub {
  margin: 8px 0 0;
}
.header .language .content .sub li {
  font-size: 1.1rem;
  position: relative;
  padding: 0 0 0 13px;
  color: var(--color-w);
}
.header .language .content .sub li:before {
  content: "";
  width: 4px;
  height: 1px;
  background: var(--color-w);
  position: absolute;
  top: 7px;
  left: 0px;
}
.header .language .content .sub li a {
  color: var(--color-w);
}
.header .language .content .sub li:not(:last-child) {
  margin: 0 0 4px 0;
}
.header .language .accordion.active .symbol {
  -webkit-transform: translate(25%, -25%) rotateX(-180deg) rotate(45deg);
  transform: translate(25%, -25%) rotateX(-180deg) rotate(45deg);
}
.header .contact_box {
  position: absolute;
  background-color: var(--color-main);
  margin: 0;
  top: 0;
  right: 0;
  padding: 28px;
  width: 180px;
  text-align: center;
  letter-spacing: 1px;
  color: var(--color-10);
}
@media only screen and (max-width: 768px) {
  .header .contact_box {
    display: none !important;
  }
}
.header .hover-effect a {
  overflow: hidden;
}
.header .hover-effect a span {
  position: relative;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.header .hover-effect a span::before {
  position: absolute;
  top: 100%;
  content: attr(data-hover);
  font-weight: 600;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
@media only screen and (min-width: 769px) {
  .header .hover-effect a:hover span,
  .header .hover-effect a:focus span {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
.header .inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.header__burger {
  background-size: 100%;
  width: 3.1rem;
  height: 2.2rem;
  background-repeat: no-repeat;
}
.header__burger svg {
  width: 1rem;
  height: auto;
  margin: 0.8rem 0 0 0.8rem;
}

header.is-animation .header__logo {
  opacity: 1;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
header.is-animation .header__nav {
  opacity: 1;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gnav {
  position: absolute;
  width: 100%;
  height: 100dvh;
  padding: 70px 20px 70px;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  top: -20px;
  left: 0;
  margin: 0;
  z-index: -1;
  background-color: var(--color-main);
}
@media only screen and (max-width: 768px) {
  .gnav {
    top: 0px;
    z-index: 9999;
  }
}
.gnav .header__logo {
  top: 10px;
}

.overflow .gnav {
  opacity: 1;
  visibility: visible;
  display: block;
}
.overflow .gnav .header__nav ul {
  display: block !important;
}
.overflow .gnav .header__nav,
.overflow .gnav .nav {
  display: block !important;
  z-index: 10000;
  position: relative;
  opacity: 1;
  font-size: 12px;
}
.overflow .gnav .header__nav .menu__second-level,
.overflow .gnav .nav .menu__second-level {
  visibility: visible;
  opacity: 1;
  z-index: 100000;
  position: relative;
  height: 110px;
  left: 16px;
  top: 10px;
}
.overflow .gnav .header__nav {
  width: 100%;
  margin: 30px 0 0 0;
}
.overflow .gnav .header__nav li {
  font-size: 14px;
  color: var(--color-10);
}
.overflow .gnav .header__nav li a {
  color: var(--color-10);
}
.overflow .gnav .header__logo {
  top: 10px;
}
@media only screen and (max-width: 768px) {
  .overflow .gnav .header__logo {
    margin: 4px 0 0 0px;
    padding: 0;
    width: 130px;
    top: 10px;
    position: absolute;
    left: 16px;
    z-index: 10000;
    display: block;
    opacity: 1 !important;
  }
}
.overflow .gnav .sns_area .icon {
  margin-right: 20px;
}
.overflow .gnav .sns_area .icon img {
  width: 24px;
}

.header .has-child {
  cursor: pointer;
  position: relative;
  color: var(--color-w);
}
.header .has-child a {
  color: var(--color-w);
}
@media only screen and (max-width: 768px) {
  .header .has-child {
    margin-bottom: 33px !important;
  }
}
@media only screen and (min-width: 769px) {
  .header .has-child:hover .menu__second-level {
    visibility: visible;
    opacity: 1;
    z-index: 100000;
  }
}
.header .menu__second-level {
  position: absolute;
  top: 25px;
  width: auto;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  visibility: hidden;
  opacity: 0;
}
.header .menu__second-level .sub li {
  font-size: 1.1rem;
  position: relative;
  padding: 0 0 0 13px;
  color: var(--color-w);
}
.header .menu__second-level .sub li:before {
  content: "";
  width: 4px;
  height: 1px;
  background: var(--color-w);
  position: absolute;
  top: 7px;
  left: 0px;
}
.header .menu__second-level .sub li a {
  color: var(--color-w);
}
.header .menu__second-level .sub li:not(:last-child) {
  margin: 0 0 10px 0;
}

.is-load .header {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transition: opacity 1.6s ease 0.1s, -webkit-transform 3s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.6s, -webkit-filter 2s ease 0.1s;
  transition: opacity 1.6s ease 0.1s, -webkit-transform 3s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.6s, -webkit-filter 2s ease 0.1s;
}

.menu-trigger {
  position: absolute;
  cursor: pointer;
  width: 60px;
  height: 60px;
  opacity: 1;
  z-index: 10000;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
  background-color: var(--color-main);
}
@media only screen and (max-width: 768px) {
  .menu-trigger {
    right: 0px;
    top: 0px;
    display: block;
  }
}

.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 1px;
  background: #fff;
  width: 55%;
  z-index: 1000;
  cursor: pointer;
}

.menu-trigger span:nth-of-type(1) {
  top: 18px;
  width: 30px;
  left: 15px;
}

.menu-trigger span:nth-of-type(2) {
  top: 28px;
  width: 30px;
  left: 15px;
}

.menu-trigger span:nth-of-type(3) {
  top: 38px;
  width: 30px;
  left: 15px;
}

.menu-trigger.active span:nth-of-type(1) {
  top: 22px;
  left: 15px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  top: 33px;
  left: 15px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}

@media only screen and (max-width: 768px) {
  .head-animation {
    transform: translateY(-100%);
  }
}
/* ==========================================================================

	pagetop

========================================================================== */
footer .scroll_area {
  position: absolute;
  background-color: transparent;
  z-index: 100;
  right: 1.2vw;
  top: calc(14svh - 40px);
  z-index: 1000;
  width: 21px;
}
@media only screen and (max-width: 768px) {
  footer .scroll_area {
    right: 3.2vw;
    top: calc(10svh - 20px);
    width: 17px;
  }
}
footer .scroll_txt {
  font-size: 10px;
  letter-spacing: 2px;
  position: relative;
  margin: 0 0 20px 6px;
  color: var(--color-w);
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
@media only screen and (max-width: 768px) {
  footer .scroll_txt {
    color: var(--color-w);
    margin: 0 0 5px 4px;
    font-size: 0.9rem;
  }
}
footer .scroll_icon {
  width: 100%;
  height: 80px;
  overflow: hidden;
  position: relative;
}
footer .scroll_icon .line {
  transform-origin: bottom;
  position: absolute;
  top: -80px;
  left: 50%;
  margin-left: 1px;
  display: block;
  width: 1px;
  height: 80px;
  border-radius: 5px;
  background: var(--color-w);
  -webkit-animation: scrollLine 2s infinite;
  animation: scrollLine 2s infinite;
}
@-webkit-keyframes scrollLine {
  0% {
    top: 80px;
  }
  30% {
    top: 0;
  }
  70% {
    top: 0;
  }
  100% {
    top: -80px;
  }
}
@keyframes scrollLine {
  0% {
    top: 80px;
  }
  30% {
    top: 0;
  }
  70% {
    top: 0;
  }
  100% {
    top: -80px;
  }
}

/* ==========================================================================

	footer

========================================================================== */
footer {
  width: 100%;
  position: relative;
  background: var(--color-main);
  padding: 14svh 0 270px;
  overflow: hidden;
}
footer * {
  color: var(--color-w);
}
footer .moji_bottom {
  position: absolute;
  bottom: -8px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  footer {
    padding: 10svh 0 0px;
  }
}
footer .nav {
  margin: 0px;
  z-index: 1000;
}
@media only screen and (max-width: 768px) {
  footer .nav {
    display: block;
    margin: 50px 0 0;
  }
}
footer .nav li {
  font-size: 13px;
  text-transform: none;
  letter-spacing: 1px;
  color: var(--color-w);
  display: inline-block;
}
footer .nav li * {
  color: var(--color-moji);
}
@media only screen and (max-width: 768px) {
  footer .nav li {
    font-size: 12px;
  }
  footer .nav li * {
    color: var(--color-w);
  }
}
footer .nav li:not(:last-child) {
  margin: 0 0 10px;
  text-transform: none;
}
@media only screen and (max-width: 1000px) {
  footer .nav li:not(:last-child) {
    margin: 0 12px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  footer .nav li:not(:last-child) {
    margin: 0 0 20px 0;
  }
}
footer .copy {
  margin: 80px 0 0;
  font-size: 10px;
  font-family: var(--font-go);
}
@media only screen and (max-width: 768px) {
  footer .copy {
    margin: 40px 0 0;
  }
}
footer .copy_attention {
  margin: 5px 0 0;
  font-size: 10px;
  font-family: var(--font-go);
}
footer .inner {
  margin: 0 auto;
  padding: 0 4.8vw 0 4.8vw;
  position: relative;
  z-index: 100;
}
@media only screen and (max-width: 768px) {
  footer .inner {
    padding: 0px 0 30px;
    width: calc(100% - 40px);
    max-width: 600px;
  }
}
footer .inner .left {
  width: calc(100% - 400px);
}
@media only screen and (max-width: 768px) {
  footer .inner .left {
    width: 100%;
  }
}
footer .inner .right {
  width: 400px;
}
@media only screen and (max-width: 768px) {
  footer .inner .right {
    width: 100%;
  }
}
footer .inner .right .access_list {
  border-top: 0px;
}
footer .inner .right .access_list li {
  padding: 0;
  border-bottom: 0px;
}
footer .inner .right .access_list li:not(:last-child) {
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  footer .inner .right .access_list li:not(:last-child) {
    margin-bottom: 28px;
  }
}
@media only screen and (max-width: 768px) {
  footer .inner .right .access_list li .shop_address {
    margin: 0px 0 0;
  }
}

.sns_area {
  margin: 20px 0 0;
}
.sns_area .label {
  font-family: var(--font-go);
  font-size: 12px;
  margin: 0 20px 0 0;
}

.sns_box {
  margin: 20px 0 10px 0;
}
.sns_box .icon {
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 769px) {
  .sns_box .icon:hover {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
  }
  .sns_box .icon:hover i {
    color: var(--color-bg);
  }
}
.sns_box .icon:not(:last-child) {
  margin: 0 14px 0 0;
}
.sns_box .youtube img {
  width: 22px;
  margin: 0 0 4px;
}
.sns_box .twitter_x img {
  width: 18px;
  margin: 0 0 4px;
}
.sns_box .line img {
  width: 18px;
  margin: 0 0 4px;
}
.sns_box .tiktok img {
  width: 18px;
  margin: 0 0 4px;
}
.sns_box .instagram img {
  width: 18px;
  margin: 0 0 4px;
}
.sns_box .facebook img {
  width: 18px;
  margin: 0 0 4px;
}

.btn_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  position: relative;
  margin: 30px 0 0;
}
.btn_list .link_box {
  padding: 10px 10px;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: var(--font-bold);
}
@media only screen and (max-width: 768px) {
  .btn_list .link_box {
    font-size: 1.2rem;
  }
}
.btn_list .close_modal {
  cursor: pointer;
}
.btn_list .link_cart {
  background-color: var(--color-orange);
  border: 1px solid var(--color-orange);
}
@media only screen and (min-width: 769px) {
  .btn_list .link_cart:hover {
    background-color: var(--color-w);
    border: 1px solid var(--color-orange);
    color: var(--color-orange);
  }
}

/* ==========================================================================

	btn-list

========================================================================== */
/* ==========================================================================

	共通情報入力部分

========================================================================== */
input[type=text],
input[type=tel],
input[type=email],
input[type=time],
input[type=date],
input[type=password],
select,
textarea {
  box-sizing: border-box;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid var(--color-7);
  line-height: 180%;
  background: var(--color-info);
  color: var(--color-3);
  outline: none;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
  font-size: 1.4rem;
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=time],
  input[type=date],
  input[type=password],
  select,
  textarea {
    padding: 9px 12px;
    font-size: 1.2rem;
    font-weight: 300;
  }
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=time]:focus,
input[type=date]:focus,
input[type=password]:focus,
textarea:focus {
  background: #fff;
  border-color: var(--color-blue);
}

input[type=submit] {
  outline: none;
}

.input_all {
  width: 100%;
}

::placeholder {
  color: var(--color-1) !important;
}

.select_label {
  position: relative;
}
.select_label::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: -5px;
  border-top: solid 1px var(--color-4);
  border-right: solid 1px var(--color-4);
  transform: rotate(135deg);
  position: absolute;
  top: 50%;
  right: 20px;
}

.select_half {
  width: calc(50% - 10px);
}
@media only screen and (max-width: 768px) {
  .select_half {
    width: calc(50% - 5px);
  }
}

.select_all {
  width: 100%;
}

.select_birth {
  padding: 10px 45px 10px 15px;
}

.radio_btn input[type=radio],
.radio_btn input[type=checkbox] {
  display: none;
}
.radio_btn input[type=radio]:focus,
.radio_btn input[type=checkbox]:focus {
  outline: 0;
}

.radio_btn label {
  position: relative;
  display: inline-block;
  padding: 5px 13px 0px 24px;
  cursor: pointer;
  font-size: 14px;
  line-height: 180%;
}
@media only screen and (max-width: 768px) {
  .radio_btn label {
    font-size: 12px;
  }
}
.radio_btn label::before {
  position: absolute;
  content: "";
  top: 47%;
  left: 0;
  width: 18px;
  height: 18px;
  margin-top: -8px;
  background: #fff;
  border: 1px solid var(--color-7);
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear;
}

.radio_btn input[type=radio] + label::before {
  border-radius: 100%;
}

.radio_btn input[type=checkbox] + label::before {
  border-radius: 4px;
}

.radio_btn :checked + label::after {
  position: absolute;
  content: "";
  top: 47%;
  left: 4px;
  width: 10px;
  height: 10px;
  margin-top: -4px;
  background: var(--color-blue);
}

.radio_btn input[type=radio]:checked + label::after {
  border-radius: 100%;
}

.radio_btn input[type=checkbox]:checked + label::after {
  border-radius: 2px;
}

.radio_btn :disabled + label {
  cursor: default;
  opacity: 0.5;
}

.radio_btn :checked:disabled + label {
  opacity: 1;
}

.input_half {
  width: calc(50% - 10px);
}
@media only screen and (max-width: 768px) {
  .input_half {
    width: calc(50% - 5px);
  }
}

.input_200 {
  width: 200px;
}
@media only screen and (max-width: 768px) {
  .input_200 {
    width: calc(50% - 5px);
    min-height: 51px;
  }
}

.link_box {
  background-color: var(--color-main);
  border: 0.5px solid var(--color-main);
  align-items: center;
  padding: 20px 10px;
  color: var(--color-10);
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
  text-align: center;
  z-index: 10;
  transition: all 0.5s ease;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .link_box {
    width: 100%;
    font-size: 12px;
  }
}
@media only screen and (min-width: 769px) {
  .link_box:hover {
    background-color: var(--color-3);
    border: 0.5px solid var(--color-3);
    color: var(--color-w) !important;
  }
}
.link_box i {
  margin: 0 10px 0 0;
}

.view_more {
  color: var(--color-w);
  font-size: 1rem;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
  padding: 0 34px 0 0;
  position: relative;
  display: inline-block;
  cursor: pointer;
  z-index: 100;
  transition: all 0.5s ease;
  -webkit-transition: all 640ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 640ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: all 640ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 640ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media only screen and (max-width: 768px) {
  .view_more {
    font-size: 0.9rem;
  }
}
@media only screen and (min-width: 769px) {
  .view_more:hover {
    letter-spacing: 3px;
  }
  .view_more:hover::after {
    right: -12px;
    transition: all 0.5s ease;
  }
}
.view_more::after {
  transition: all 0.5s ease;
  content: "";
  width: calc(var(--font-size-scale, 1) * 2 * 1rem);
  height: calc(var(--font-size-scale, 1) * 0.5 * 1rem);
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
  position: absolute;
  bottom: 3px;
  right: 0;
  z-index: 1;
  -webkit-transform: translate(-25%, -50%) skew(45deg);
  transform: translate(-25%, -50%) skew(45deg);
  -webkit-transition: 0.6s -webkit-transformcubic-bezier(0.04, 0.14, 0, 0.63);
  transition: 0.6s -webkit-transformcubic-bezier(0.04, 0.14, 0, 0.63);
  transition: 0.6s transformcubic-bezier(0.04, 0.14, 0, 0.63);
  transition: 0.6s transformcubic-bezier(0.04, 0.14, 0, 0.63), 0.6s -webkit-transformcubic-bezier(0.04, 0.14, 0, 0.63);
}

@media only screen and (min-width: 769px) {
  .view_more_li:hover .view_more {
    letter-spacing: 3px;
  }
  .view_more_li:hover .view_more::after {
    right: -12px;
    transition: all 0.5s ease;
  }
}

.btn_area {
  width: 100%;
  position: relative;
}
.btn_area .item_btn,
.btn_area .submit {
  background: var(--color-main);
  border: 1px solid var(--color-main);
  color: #fff;
  align-items: center;
  padding: 22px 10px 20px;
  width: 100%;
  position: relative;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  font-family: var(--font-bold);
  letter-spacing: 1px;
  z-index: 10;
  cursor: pointer;
  line-height: 1;
}
@media only screen and (min-width: 769px) {
  .btn_area .item_btn:hover,
  .btn_area .submit:hover {
    background-color: var(--color-0);
    border: 1px solid var(--color-0);
    color: #fff;
  }
}
.btn_area .item_btn span,
.btn_area .submit span {
  position: relative;
}
.btn_area .grey {
  background: var(--color-4);
  border: 1px solid var(--color-4);
}
@media only screen and (min-width: 769px) {
  .btn_area .grey:hover {
    background-color: var(--color-0);
    color: var(--color-w);
  }
}
.btn_area .submit_grey {
  background: var(--color-5);
  border: 1px solid var(--color-5);
  pointer-events: none;
}
@media only screen and (min-width: 769px) {
  .btn_area .submit_grey:hover {
    background-color: var(--color-w);
    color: var(--color-5);
  }
}

/* ==========================================================================

	modal

========================================================================== */
@keyframes modal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-video-inner {
  from {
    transform: translate(0, 10px);
  }
  to {
    transform: translate(0, 0);
  }
}
.modal-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000000;
  cursor: pointer;
  opacity: 1;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.modal-video-close {
  opacity: 0;
}

.modal-video-close .modal-video-movie-wrap {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-video-body {
  max-width: 960px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.modal-video-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

@media (orientation: landscape) {
  .modal-video-inner {
    padding: 10px 60px;
    box-sizing: border-box;
  }
}
.modal-video-movie-wrap {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  background-color: #333;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video-inner;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -ms-transition: -ms-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}

.modal-video-movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-video-close-btn {
  position: absolute;
  z-index: 2;
  top: -45px;
  right: 0;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border: none;
  background: transparent;
}

@media (orientation: landscape) {
  .modal-video-close-btn {
    top: 0;
    right: -45px;
  }
}
.modal-video-close-btn:before {
  transform: rotate(45deg);
}

.modal-video-close-btn:after {
  transform: rotate(-45deg);
}

.modal-video-close-btn:before,
.modal-video-close-btn:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
  border-radius: 5px;
  margin-top: -6px;
  display: none;
}

/* ==========================================================================

	index.html

========================================================================== */
section * {
  color: var(--color-10);
}
section .inner {
  max-width: 1300px;
  width: calc(100% - 17vw);
  margin: 0 auto;
  position: relative;
  z-index: 100;
}
@media only screen and (max-width: 1000px) {
  section .inner {
    width: calc(100% - 13vw);
  }
}
@media only screen and (max-width: 768px) {
  section .inner {
    width: calc(100% - 40px);
    max-width: 600px !important;
  }
}
section .category_en {
  font-size: 24px;
  position: relative;
  display: inline-block;
  margin: 0 0 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  section .category_en {
    letter-spacing: 0.4px;
  }
}
section .category_en::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -3px;
  background-color: var(--color-10);
  left: 0;
}
section .category_title {
  font-size: 26px;
  letter-spacing: 3px;
}
@media only screen and (max-width: 768px) {
  section .category_title {
    font-size: 22px;
    text-align: center;
  }
}
section .category_title span {
  font-size: 2rem;
  letter-spacing: 1px;
}
@media only screen and (max-width: 768px) {
  section .category_title span {
    font-size: 1.6rem;
  }
}
section .category_txt {
  font-size: 14px;
  line-height: 2;
  margin: 30px 0 0;
  padding: 30px 0 0;
  position: relative;
}
section .category_txt::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  top: 0px;
  background-color: var(--color-10);
  left: 0;
}
section .txtbox .category {
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1000px) {
  section .txtbox .category {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 768px) {
  section .txtbox .category {
    margin-bottom: 20px;
  }
}
section .txtbox .title {
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1000px) {
  section .txtbox .title {
    font-size: 25px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 768px) {
  section .txtbox .title {
    font-size: 21px;
    line-height: 1.4;
    letter-spacing: 1px;
  }
}
section .txtbox .subtitle {
  font-size: 1.9rem;
  letter-spacing: 1px;
  margin: 0 0 20px;
}
@media only screen and (max-width: 768px) {
  section .txtbox .subtitle {
    font-size: 1.6rem;
  }
}
section .txtbox .txt {
  margin: 0px 0 0;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 400;
}
section .txtbox .txt p {
  margin-bottom: 18px;
}
@media only screen and (max-width: 768px) {
  section .txtbox .txt {
    font-size: 12px;
    line-height: 1.8;
    margin: 0px 0 0;
  }
}
section .txtbox .attention {
  opacity: 0.8;
  font-size: 12px;
  margin: 20px 0 0;
}

.logo_area {
  padding: 80px 0;
  background: #000000;
}
@media only screen and (max-width: 768px) {
  .logo_area {
    padding: 80px 0 50px;
  }
}
.logo_area .logo {
  width: 280px;
  margin: 0 auto;
  padding: 30px 0 0;
}
@media only screen and (max-width: 768px) {
  .logo_area .logo {
    width: 250px;
  }
}
.logo_area .logo_txt {
  text-align: center;
  color: var(--color-9);
  font-size: 22px;
  margin: 20px 0 0;
}

.hero_top .hero_video {
  position: sticky;
  z-index: -1;
  top: 0;
  opacity: 0;
  height: 100svh;
  padding: 0 !important;
  background: var(--color-0);
  filter: blur(5px) brightness(1.7);
}
.hero_top .hero_video:before {
  content: "";
  background: var(--color-2);
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  z-index: 10;
  opacity: 0.2;
  position: absolute;
}
.hero_top .hero_video #video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media only screen and (max-width: 768px) {
  .hero_top .hero_video #video {
    object-fit: contain;
  }
}
.hero_top .logo_box {
  height: 120svh;
  min-height: 700px;
  width: 50%;
  margin: -15% auto 0;
}
@media only screen and (max-width: 768px) {
  .hero_top .logo_box {
    height: 140svh;
    min-height: 500px;
    width: 100%;
    margin: -50% auto 0;
    padding: 0 20px;
    text-align: center;
  }
  .hero_top .logo_box .category_txt:before {
    left: 50%;
    margin-left: -20px;
  }
}

.is-load .hero_video {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 0.5;
  -webkit-filter: blur(0px) brightness(1);
  filter: blur(0px) brightness(1);
  -webkit-transition: opacity 2s ease 0.04s, -webkit-transform 3s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.6s, -webkit-filter 2s ease 0.04s;
  transition: opacity 2s ease 0.04s, -webkit-transform 3s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.6s, -webkit-filter 2s ease 0.04s;
  transition: transform 3s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.6s, opacity 2s ease 0.04s, filter 2s ease 0.04s;
  transition: transform 3s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.6s, opacity 2s ease 0.1s, filter 2s ease 0.04s, -webkit-transform 3s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.6s, -webkit-filter 2s ease 0.04s;
}
.is-load .hero_top {
  width: 100%;
}
.is-load .hero_top .logo {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-filter: blur(0px) brightness(1);
  filter: blur(0px) brightness(1);
  -webkit-transition: opacity 2s ease 0.1s, -webkit-transform 3s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.6s, -webkit-filter 2s ease 0.1s;
  transition: opacity 2s ease 0.1s, -webkit-transform 3s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.6s, -webkit-filter 2s ease 0.1s;
  transition: transform 3s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.6s, opacity 2s ease 0.1s, filter 2s ease 0.1s;
  transition: transform 3s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.6s, opacity 2s ease 0.1s, filter 2s ease 0.1s, -webkit-transform 3s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.6s, -webkit-filter 2s ease 0.1s;
}

.shop_top {
  margin: 0 auto;
  padding: 130px 0 0;
  background: #000000;
}
@media only screen and (max-width: 768px) {
  .shop_top {
    margin: 0px auto;
    padding: 60px 0 0;
  }
}
.shop_top .txtbox .right {
  margin-left: auto;
  width: 48%;
  right: 0;
}
@media only screen and (max-width: 768px) {
  .shop_top .txtbox .right {
    width: calc(100% + 20px);
    right: 0px;
    position: relative;
  }
}
.shop_top .txtbox .left {
  width: 40%;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .shop_top .txtbox .left {
    width: 100%;
    margin: 30px 0 0;
  }
}
.shop_top .access_list {
  margin: 100px auto 0;
}
@media only screen and (max-width: 768px) {
  .shop_top .access_list {
    margin: 40px auto 0;
  }
}

.creditcard_info {
  margin: 20px auto 0;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 30px;
}
.creditcard_info .ja {
  text-align: center;
  font-size: 13px;
}
.creditcard_info .en {
  text-align: center;
  font-size: 12px;
  margin: 8px 0 0;
}
.creditcard_info .brand_icon {
  margin: 20px 0 0 -10px;
}
.creditcard_info .brand_icon .visa {
  width: 80px;
  margin: 0 15px 0 0;
}
.creditcard_info .brand_icon .mastercard {
  width: 60px;
  margin: 0 15px 0 0;
}
.creditcard_info .brand_icon .american {
  width: 30px;
}

.access_list {
  border-top: 1px solid var(--color-5);
}
.access_list li {
  border-bottom: 1px solid var(--color-5);
  padding: 60px 0;
}
@media only screen and (max-width: 768px) {
  .access_list li {
    padding: 40px 0;
  }
}
.access_list li:not(:last-child) {
  margin-bottom: 0px;
}
.access_list li .shop_slider {
  position: relative;
}
.access_list li .shop_slider .splide__arrows {
  display: none;
}
.access_list li .shop_slider li {
  border-bottom: 0px solid var(--color-5) !important;
  padding: 0px 0 !important;
}
.access_list li .shop_slider .splide__pagination {
  -ms-flex-pack: end;
  justify-content: end;
  padding: 0;
  right: 0;
  bottom: -40px;
  margin: 10px 0 0 0;
}
.access_list li .shop_slider .splide__pagination li {
  width: 12px !important;
  height: 20px;
}
.access_list li .shop_slider .splide__pagination li:not(:last-child) {
  margin: 0 9px 0 0;
}
.access_list li .shop_slider .splide__pagination__page.is-active:before {
  content: "";
  background: var(--color-3);
  height: 2px;
  width: 100%;
  position: absolute;
  top: 4px;
  left: 0;
}
.access_list li .shop_slider .splide__pagination__page {
  display: inline-block;
  height: 10px !important;
  width: 12px !important;
  border: 0px;
  padding: 0;
  z-index: 1000;
  position: relative;
  cursor: pointer;
  background: transparent !important;
}
.access_list li .shop_slider .splide__pagination__page:before {
  content: "";
  background: var(--color-w);
  height: 1px;
  width: 100%;
  position: absolute;
  top: 4px;
  left: 0;
}
.access_list li .shop_name_area {
  width: 100%;
  margin: 0 0 20px;
}
.access_list li .left {
  width: 60%;
  margin: 0;
  padding: 0 50px 0 0;
}
@media only screen and (max-width: 768px) {
  .access_list li .left {
    width: 100%;
    padding: 0;
  }
}
.access_list li .right {
  width: 40%;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .access_list li .right {
    width: 100%;
    margin: 30px 0 0;
  }
}
.access_list li .right .map {
  filter: saturate(0.6);
  width: 100%;
  margin: 30px 0 0;
  padding-top: 60%;
}
.access_list li .right .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.access_list li .shop_name {
  display: inline-block;
  position: relative;
  font-size: 16px;
  margin: 0 0 10px;
}
@media only screen and (max-width: 768px) {
  .access_list li .shop_name {
    font-size: 16px;
  }
}
.access_list li .shop_name:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--color-10);
  bottom: -3px;
  left: 0;
}
.access_list li .shop_txt {
  font-size: 13px;
}
.access_list li .shop_address {
  font-family: var(--font-go);
  font-size: 13px;
  margin: 12px 0 0;
  opacity: 0.9;
}
.access_list li .shop_mail {
  font-family: var(--font-go);
  font-size: 13px;
  opacity: 0.9;
}
.access_list li .comingsoon {
  margin: 20px auto;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .access_list li .comingsoon {
    padding: 20px;
    margin: 20px auto 0;
  }
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}

.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.splide {
  z-index: 0;
}

.splide__arrow--prev,
.splide__arrow--next {
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  transition: var(--transition);
  background-color: var(--color-theme-darken);
  border-radius: 50%;
}

.splide__arrow--prev::after,
.splide__arrow--next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid var(--color-gray);
  border-width: 3px 3px 0 0;
}

.splide__arrow--prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}

.splide__arrow--next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}

.splide__arrow:disabled {
  pointer-events: none;
  opacity: 0;
}

.splide__arrow:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

.splide__pagination {
  font-size: 0;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

.splide__slide:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

.splide-wrapper {
  position: relative;
}

.splide__arrow > svg {
  display: none;
}

.gallery_top {
  overflow: hidden;
}

.gallery_top .splide__track {
  overflow: visible;
}

.gallery_top .splide__slide {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.gallery_top .slide {
  overflow: hidden;
  border-radius: 4px;
}

.gallery_top .slide-media {
  padding-top: 62.5%;
}

.gallery_top .slide-media img {
  height: calc(100% + 16px);
  -webkit-transform: translateY(-16px);
  transform: translateY(-16px);
}

.gallery_top {
  padding: 80px 0 120px;
  background: #000000;
}
@media only screen and (max-width: 768px) {
  .gallery_top {
    margin: 0px auto 0px;
    padding: 30px 0 70px;
  }
}
.gallery_top .txtbox {
  margin: 0 0 60px;
}
@media only screen and (max-width: 768px) {
  .gallery_top .txtbox {
    margin: 30px 0;
  }
}

.wabori {
  margin: 0 auto;
  background: #000000;
  background-color: var(--color-red);
}
@media only screen and (max-width: 768px) {
  .wabori {
    margin: 0 auto;
  }
}
.wabori .img {
  overflow: hidden;
  width: 48%;
  height: 240px;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .wabori .img {
    height: 140px;
    width: calc(100% + 40px);
    margin-left: -20px;
  }
}
.wabori .img img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.wabori .txtbox {
  width: 52%;
  margin: 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .wabori .txtbox {
    width: 100%;
    padding: 40px 0 20px;
  }
}
.wabori .txtbox * {
  text-align: center;
}
.wabori .txtbox .txt {
  position: relative;
  display: inline-block;
}
.wabori .txtbox .txt::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -3px;
  background-color: var(--color-10);
  left: 0;
}
.wabori .txtbox .view_more {
  margin: 20px auto;
}

.english_area {
  background: #000000;
  padding: 100px 0 0;
}
@media only screen and (max-width: 768px) {
  .english_area {
    padding: 60px 0 0;
  }
}
.english_area .inner {
  border: 1px solid var(--color-w);
  text-align: center;
  padding: 100px 50px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .english_area .inner {
    padding: 50px 10px;
  }
}
@media only screen and (min-width: 769px) {
  .english_area .inner:hover .hover_bg {
    opacity: 0.04;
  }
  .english_area .inner:hover .link_txt::after {
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
  }
}
.english_area .inner .hover_bg {
  z-index: 10;
  width: 100%;
  position: absolute;
  height: 100%;
  background-color: var(--color-10);
  opacity: 0;
  top: 0;
  left: 0;
}
.english_area .inner .bg_img {
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.english_area .inner .bg_left {
  position: absolute;
  width: 30%;
  top: -64%;
  left: -2%;
  transform: rotate(295deg);
  mix-blend-mode: multiply;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .english_area .inner .bg_left {
    position: absolute;
    width: 66%;
    top: -14%;
    left: -26%;
    transform: rotate(340deg);
    mix-blend-mode: multiply;
    z-index: 1;
  }
}
.english_area .inner .bg_right {
  position: absolute;
  width: 36%;
  top: -21%;
  right: -6%;
  transform: rotate(354deg);
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .english_area .inner .bg_right {
    position: absolute;
    width: 82%;
    top: -6%;
    right: -27%;
    transform: rotate(27deg);
    mix-blend-mode: multiply;
    z-index: 1;
  }
}
.english_area .title {
  font-size: 40px;
  z-index: 10;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .english_area .title {
    font-size: 48px;
    letter-spacing: 2px;
    line-height: 1.25;
    margin-bottom: 20px;
  }
}
.english_area .sub {
  font-size: 14px;
  z-index: 10;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .english_area .sub {
    font-size: 12px;
  }
}
.english_area .link_txt {
  font-size: 13px;
  margin: 20px 0 0;
  position: relative;
  display: inline-block;
  z-index: 10;
}
.english_area .link_txt::after {
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  top: 100%;
  left: 0;
  content: "";
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
  transition: transform 0.3s;
}

.customer_area {
  margin: 0 auto 0px;
  background: #000000;
  padding: 150px 0 0;
}
@media only screen and (max-width: 768px) {
  .customer_area {
    margin: 0px auto 0px;
    padding: 60px 0 0;
  }
}
.customer_area .inner {
  padding: 120px 0;
}
@media only screen and (max-width: 768px) {
  .customer_area .inner {
    padding: 60px 0;
  }
}
.customer_area .inner .left {
  width: 50%;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .customer_area .inner .left {
    width: 100%;
  }
}
.customer_area .inner .right {
  width: 50%;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .customer_area .inner .right {
    width: 100%;
    margin: 0px 0 0;
  }
}

.recruit_area {
  padding: 300px 0 300px;
  position: relative;
  overflow: hidden;
  background: #000000;
}
@media only screen and (max-width: 768px) {
  .recruit_area {
    padding: 110px 0 100px;
  }
}
.recruit_area .recruit_bg {
  position: absolute;
  width: 100%;
  bottom: -20%;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .recruit_area .recruit_bg {
    width: 141%;
    bottom: -3%;
    left: -8%;
  }
}
.recruit_area .inner {
  z-index: 10;
  text-align: center;
}

/* ==========================================================================

	sub_page

========================================================================== */
.sub_page {
  padding: 140px 0 0;
}
@media only screen and (max-width: 768px) {
  .sub_page {
    padding: 96px 0 0;
  }
}
.sub_page .header__logo {
  opacity: 1 !important;
}
.sub_page .header__nav {
  opacity: 1 !important;
}
.sub_page .access_list li {
  padding: 40px 0;
}
.sub_page .access_list li .left,
.sub_page .access_list li .right {
  width: 100%;
}
.sub_page .bg {
  width: 100%;
  height: 60svh;
  overflow: hidden;
  position: relative;
  object-fit: cover;
}
.sub_page .bg .bg_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  position: absolute;
  object-position: 100% 38%;
}

.subpage_contents .left {
  width: 50%;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .subpage_contents .left {
    width: 100%;
  }
}
.subpage_contents .left .artist_img {
  width: 120px;
  margin: -10px 0 0;
}
@media only screen and (max-width: 768px) {
  .subpage_contents .left .artist_img {
    width: 80px;
  }
}
.subpage_contents .right {
  width: 50%;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .subpage_contents .right {
    width: 100%;
    margin: 20px 0 0;
  }
}
.subpage_contents .sns_area {
  margin: 0px 0 0;
}
.subpage_contents .sns_area .label {
  margin: 0 10px 0 0;
}

.about_top_bg {
  position: absolute;
  top: -1%;
  width: 100%;
  opacity: 0.5;
}
.about_price {
  margin: 100px auto 0;
}
@media only screen and (max-width: 768px) {
  .about_price {
    margin: 80px auto 0;
  }
}
.about_price .bg {
  margin: 10svh 0 0;
}
.sub_page .about_price .bg_img {
  object-fit: contain;
  object-position: center;
}

.about_price .inner {
  margin: 50px auto 0;
}
.about_price .inner .price_list {
  margin: 30px 0;
}
.about_price .inner .price_list li {
  border-bottom: 1px solid var(--color-6);
  padding: 0 0 10px;
}
.about_price .inner .price_list li .name {
  width: 70%;
  border-right: 1px solid var(--color-6);
}
.about_price .inner .price_list li .yen {
  width: 30%;
  text-align: right;
}
.about_price .inner .price_list li:not(:last-child) {
  margin-bottom: 20px;
}

.about_hygiene {
  margin: 120px auto 0;
}
@media only screen and (max-width: 768px) {
  .about_hygiene {
    margin: 60px auto 0;
  }
}

.about_TATTOO {
  background-color: var(--color-main);
  padding: 100px 0;
  margin: 80px auto;
}
@media only screen and (max-width: 768px) {
  .about_TATTOO {
    margin: 60px auto 0;
    padding: 60px 0 40px;
  }
}
.about_TATTOO .tattoo_list {
  margin: 40px 0;
}
@media only screen and (max-width: 768px) {
  .about_TATTOO .tattoo_list {
    border-top: 1px solid var(--color-6);
  }
}
.about_TATTOO .tattoo_list li {
  border-bottom: 1px solid var(--color-6);
  padding: 0 0 30px;
}
@media only screen and (max-width: 768px) {
  .about_TATTOO .tattoo_list li {
    padding: 30px 0;
  }
}
.about_TATTOO .tattoo_list li .tattoo_name {
  width: 30%;
  font-size: 15px;
}
@media only screen and (max-width: 768px) {
  .about_TATTOO .tattoo_list li .tattoo_name {
    width: 100%;
  }
}
.about_TATTOO .tattoo_list li .tattoo_name .img {
  width: 68px;
  margin: 8px 0 1px;
}
.about_TATTOO .tattoo_list li .tattoo_txt {
  width: 70%;
  opacity: 0.9;
}
@media only screen and (max-width: 768px) {
  .about_TATTOO .tattoo_list li .tattoo_txt {
    width: 100%;
    margin: 10px 0 0;
  }
}
.about_TATTOO .tattoo_list li:not(:last-child) {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .about_TATTOO .tattoo_list li:not(:last-child) {
    margin-bottom: 0px;
  }
}

.about_QA {
  margin: 80px auto;
  background-color: var(--color-2);
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  .about_QA {
    margin: 60px auto;
    padding: 50px 0;
  }
}
.about_QA .qa_list {
  margin: 40px 0;
}
@media only screen and (max-width: 768px) {
  .about_QA .qa_list {
    border-top: 1px solid var(--color-6);
  }
}
.about_QA .qa_list li {
  border-bottom: 1px solid var(--color-6);
  padding: 0 0 30px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .about_QA .qa_list li {
    padding: 30px 0;
    align-items: start;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.about_QA .qa_list li .icon {
  width: 100px;
  margin: 0 0;
}
@media only screen and (max-width: 768px) {
  .about_QA .qa_list li .icon {
    width: 28px;
    margin: 0 12px 0 0;
  }
}
.about_QA .qa_list li .icon_mail {
  padding: 0 10px 0 20px;
}
@media only screen and (max-width: 768px) {
  .about_QA .qa_list li .icon_mail {
    padding: 0 2px;
  }
}
.about_QA .qa_list li .icon_meeting {
  padding: 0 10px 0 20px;
}
@media only screen and (max-width: 768px) {
  .about_QA .qa_list li .icon_meeting {
    padding: 0;
  }
}
.about_QA .qa_list li .icon_TATTOO {
  padding: 0 10px 0 10px;
}
@media only screen and (max-width: 768px) {
  .about_QA .qa_list li .icon_TATTOO {
    padding: 0;
  }
}
.about_QA .qa_list li .txtbox {
  width: calc(100% - 100px);
}
@media only screen and (max-width: 768px) {
  .about_QA .qa_list li .txtbox {
    width: calc(100% - 40px);
    padding: 0 10px 0 0;
  }
}
.about_QA .qa_list li .txt_blank {
  margin: 0 0 16px 20px;
  font-size: 12px;
  opacity: 0.8;
}
.about_QA .qa_list li .txt_title {
  font-size: 13px;
  margin: 0 0 4px;
}
.about_QA .qa_list li .q_txt {
  font-size: 15px;
  margin: 0 0 12px;
  opacity: 0.9;
}
.about_QA .qa_list li:not(:last-child) {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .about_QA .qa_list li:not(:last-child) {
    margin-bottom: 0px;
  }
}

.about_step {
  padding: 0;
  background-color: rgba(255, 225, 255, 0);
  margin: 100px 0;
}
@media only screen and (max-width: 768px) {
  .about_step {
    margin: 60px auto;
  }
}

.gallery_category .bg {
  margin: 30px auto 60px;
}
@media only screen and (max-width: 768px) {
  .gallery_category .bg {
    margin: 0px auto 30px;
  }
}
.gallery_category .tattoo_category_list {
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 100px;
  grid-row-gap: 80px;
}
@media only screen and (max-width: 768px) {
  .gallery_category .tattoo_category_list {
    margin: 20px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 40px;
  }
}
.gallery_category .tattoo_category_list li {
  text-align: right;
}
.gallery_category .tattoo_category_list li .name {
  font-size: 18px !important;
  letter-spacing: 1px;
  margin: 0 0 20px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .gallery_category .tattoo_category_list li .name {
    font-size: 16px !important;
    letter-spacing: 1px;
    margin: 0;
  }
}
.gallery_category .tattoo_category_list li .img_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 0px;
}
@media only screen and (max-width: 768px) {
  .gallery_category .tattoo_category_list li .img_box {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .gallery_category .tattoo_category_list li .img_box .img02 {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .gallery_category .tattoo_category_list li .view_more {
    margin: 10px 0 0;
  }
}

.tattoo_artist {
  margin: 120px auto 120px;
}
@media only screen and (max-width: 768px) {
  .tattoo_artist {
    margin: 60px auto 60px;
  }
}
.tattoo_artist .artist_list {
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  width: 86%;
}
@media only screen and (max-width: 768px) {
  .tattoo_artist .artist_list {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 20px;
    margin: 20px 0 0;
  }
}
.tattoo_artist .artist_list li {
  text-align: right;
}
.tattoo_artist .artist_list li .name {
  font-size: 14px;
  letter-spacing: 1px;
  margin: 0 0 3px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .tattoo_artist .artist_list li .name {
    font-size: 10px;
  }
}
.tattoo_artist .artist_list li .img {
  width: 100%;
}

.price_tattoo_list {
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 60px;
}
@media only screen and (max-width: 768px) {
  .price_tattoo_list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
.price_tattoo_list li {
  text-align: right;
}
.price_tattoo_list li .name {
  font-size: 14px;
  letter-spacing: 1px;
  margin: 0 0 3px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .price_tattoo_list li .name {
    font-size: 11px;
  }
}
.price_tattoo_list li .img {
  width: 100%;
}

#lg-download,
.lg-thumb-outer {
  display: none;
}

.gallery_list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media only screen and (max-width: 768px) {
  .gallery_list {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}
.gallery_list li {
  text-align: right;
  vertical-align: top;
}
.gallery_list li .name {
  font-size: 14px;
  letter-spacing: 1px;
  margin: 0 0 3px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .gallery_list li .name {
    font-size: 12px;
  }
}
.gallery_list li img {
  vertical-align: bottom !important;
}

.gallery_category_page .gallery_list {
  margin: -20px auto 0;
}

.gallery_category_page .gallery_category {
  margin: 180px auto 0;
}
@media only screen and (max-width: 768px) {
  .gallery_category_page .gallery_category {
    margin: 100px auto 0;
  }
}
.gallery_category_page .gallery_category .txtbox {
  margin: 20px auto 0;
}
@media only screen and (max-width: 768px) {
  .gallery_category_page .gallery_category .txtbox {
    margin: 40px auto 0;
  }
}
.gallery_category_page .gallery_category .tattoo_category_list {
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 100px;
  grid-row-gap: 80px;
}
@media only screen and (max-width: 768px) {
  .gallery_category_page .gallery_category .tattoo_category_list {
    margin: 0px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .gallery_category_page .gallery_category .name {
    font-size: 10px !important;
  }
}
@media only screen and (max-width: 768px) {
  .gallery_category_page .gallery_category .view_more {
    display: none;
  }
}

.gallery_artist_page .gallery_list {
  margin: -40px auto 0;
}
@media only screen and (max-width: 768px) {
  .gallery_artist_page .gallery_list {
    margin: -10px auto 0;
  }
}
.gallery_artist_page .tattoo_artist {
  margin: 120px auto 120px;
}
@media only screen and (max-width: 768px) {
  .gallery_artist_page .tattoo_artist {
    margin: 100px auto 60px;
  }
}
.gallery_artist_page .tattoo_artist .moji_top {
  margin: 0 auto 80px;
}
@media only screen and (max-width: 768px) {
  .gallery_artist_page .tattoo_artist .moji_top {
    margin: 0 auto 40px;
  }
}

.voice_list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  margin: 40px 0 0;
  border-top: 1px solid var(--color-10);
}
.voice_list li {
  border-bottom: 1px solid var(--color-10);
  padding: 40px 0;
}
.voice_list .voice_img {
  width: 20%;
}
@media only screen and (max-width: 750px) {
  .voice_list .voice_img {
    width: 45%;
  }
}
.voice_list .voice_img img {
  vertical-align: bottom;
}
.voice_list .txtbox {
  width: 80%;
  padding: 0 0 0 30px;
}
@media only screen and (max-width: 750px) {
  .voice_list .txtbox {
    width: 100%;
    padding: 15px 0 0;
  }
}
.voice_list .txtbox .name {
  font-size: 16px;
  margin: 0 0 10px;
}
@media only screen and (max-width: 750px) {
  .voice_list .txtbox .name {
    font-size: 14px;
  }
}
.voice_list .txtbox .voice_txt {
  font-size: 13px;
  margin: 0 0 20px;
  opacity: 0.9;
}
@media only screen and (max-width: 750px) {
  .voice_list .txtbox .voice_txt {
    font-size: 12px;
  }
}
.voice_list .txtbox a {
  opacity: 0.8;
}
@media only screen and (max-width: 750px) {
  .voice_list .txtbox a {
    font-size: 12px;
  }
}

.shop_page_top {
  margin: 0 auto 100px;
}
@media only screen and (max-width: 750px) {
  .shop_page_top {
    margin: 0 auto 50px;
  }
}

.youtube {
  overflow: hidden;
}

.movie {
  width: 100%;
  margin: 60px auto 0;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .movie {
    width: 100%;
    padding: 0;
    margin: 9% auto 0;
  }
}
.movie .movie_modal {
  width: 100%;
  cursor: pointer;
  background: #fff;
  z-index: 10001;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.movie .movie_modal .icon {
  position: absolute;
  width: 60px;
  z-index: 1;
  bottom: 30px;
  left: 30px;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
@media only screen and (max-width: 750px) {
  .movie .movie_modal .icon {
    width: 37px;
    z-index: 1;
    bottom: 12px;
    left: 14px;
  }
}
.movie .movie_modal .icon img {
  transition: filter 0.15s linear;
}
.movie .movie_modal .img {
  transform: scale(1);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.movie .movie_modal .img img {
  vertical-align: bottom;
}
@media only screen and (min-width: 751px) {
  .movie .movie_modal:hover {
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .movie .movie_modal:hover .img {
    transform: scale(1.06);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .movie .movie_modal:hover .icon {
    transform: scale(1.3);
  }
  .movie .movie_modal:hover .icon img {
    filter: invert(100%);
  }
}

.shop_page_access {
  margin: 0 auto 100px;
}
@media only screen and (max-width: 750px) {
  .shop_page_access {
    margin: 0 auto 50px;
  }
}
.shop_page_access .bg {
  margin: 0px 0 80px;
}
@media only screen and (max-width: 750px) {
  .shop_page_access .bg {
    margin: 0 auto 50px;
  }
}
.shop_page_access .creditcard_info {
  width: 80%;
  margin: 20px 0 40px;
}
@media only screen and (max-width: 750px) {
  .shop_page_access .creditcard_info {
    width: 100%;
  }
}
.shop_page_access .right {
  width: 50%;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .shop_page_access .right {
    width: 100%;
    margin: 30px 0 0;
  }
}
.shop_page_access .right .map {
  filter: saturate(0.6);
  width: 100%;
  margin: 30px 0 0;
  padding-top: 70%;
}
.shop_page_access .right .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.shop_page_access .shop_name {
  display: inline-block;
  position: relative;
  font-size: 14px;
  margin: 0 0 10px;
}
.shop_page_access .shop_name:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--color-10);
  bottom: -3px;
  left: 0;
}
.shop_page_access .shop_txt {
  font-size: 13px;
}
.shop_page_access .shop_address {
  font-family: var(--font-go);
  font-size: 13px;
  margin: 12px 0 0;
  opacity: 0.9;
}
.shop_page_access .shop_mail {
  font-family: var(--font-go);
  font-size: 13px;
  opacity: 0.9;
}
.shop_page_access .comingsoon {
  margin: 20px auto;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .shop_page_access .comingsoon {
    padding: 20px;
    margin: 20px auto 0;
  }
}

.tattoo_artist_shop {
  margin: 120px auto 120px;
}
@media only screen and (max-width: 768px) {
  .tattoo_artist_shop {
    margin: 40px auto 60px;
  }
}
.tattoo_artist_shop .moji_top {
  margin: 0 0 80px;
}
@media only screen and (max-width: 768px) {
  .tattoo_artist_shop .moji_top {
    margin: 0px auto 60px;
  }
}
.tattoo_artist_shop .artist_list_shop {
  margin: 60px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 50px;
  grid-row-gap: 60px;
  width: 86%;
}
@media only screen and (max-width: 768px) {
  .tattoo_artist_shop .artist_list_shop {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 20px;
    margin: 20px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .tattoo_artist_shop .artist_list_shop li {
    align-items: start;
    border-bottom: 0.5px solid var(--color-10);
    padding: 0 0 20px;
  }
}
.tattoo_artist_shop .artist_list_shop li .name {
  width: 100%;
  font-size: 15px;
  letter-spacing: 1px;
  margin: 0 0 7px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .tattoo_artist_shop .artist_list_shop li .name {
    font-size: 14px;
    margin: 0 0 12px;
  }
}
.tattoo_artist_shop .artist_list_shop li .img {
  width: 40%;
}
.tattoo_artist_shop .artist_list_shop li .txtbox {
  width: 60%;
  padding: 0 0 0 30px;
}
@media only screen and (max-width: 768px) {
  .tattoo_artist_shop .artist_list_shop li .txtbox {
    padding: 0 0 0 20px;
  }
}
.tattoo_artist_shop .artist_list_shop li .txtbox .txt {
  font-size: 12px;
  margin: 0 0 20px;
}
@media only screen and (max-width: 768px) {
  .tattoo_artist_shop .artist_list_shop li .txtbox .txt {
    margin: 0 0 10px;
  }
}
.tattoo_artist_shop .artist_list_shop li .sns_box {
  margin: 0;
}
.tattoo_artist_shop .artist_list_shop li .sns_area {
  margin: 10px 0 0;
}

.shop_contents_01 .moji_top {
  margin: 0 0 80px;
}
@media only screen and (max-width: 768px) {
  .shop_contents_01 .moji_top {
    margin: 0 0 40px;
  }
}
.shop_contents_01 .gazou {
  margin: 20px 0 0;
}
@media only screen and (max-width: 768px) {
  .shop_contents_01 .gazou {
    margin: 20px 0 40px;
  }
}

.shop_page .gallery_top {
  margin: 100px auto 100px;
}
@media only screen and (max-width: 768px) {
  .shop_page .gallery_top {
    margin: 50px auto 40px;
  }
}

.recruit_01 {
  margin: 100px auto 50px;
}
@media only screen and (max-width: 768px) {
  .recruit_01 {
    margin: 50px auto 40px;
  }
}
.recruit_01 .moji {
  margin: 0 0 70px;
}
@media only screen and (max-width: 768px) {
  .recruit_01 .moji {
    margin: 0 0 40px;
  }
}
.recruit_01 .right .subtitle {
  position: relative;
  font-size: 17px;
}
@media only screen and (max-width: 768px) {
  .recruit_01 .right .subtitle {
    font-size: 15px;
  }
}
.recruit_01 .right .subtitle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -3px;
  background-color: var(--color-10);
  left: 0;
}
.recruit_01 .right .txt {
  margin: 40px 0;
}
@media only screen and (max-width: 768px) {
  .recruit_01 .right .txt {
    margin: 30px 0 20px;
  }
}
.recruit_01 .right .creditcard_info .en {
  font-size: 13px;
}
.recruit_01 .right .creditcard_info .ja {
  font-size: 14px;
}

.recruit_02 {
  margin: 100px auto 50px;
}
@media only screen and (max-width: 768px) {
  .recruit_02 {
    border-top: 0.5px solid var(--color-w);
    margin: 50px 0 0px;
    padding: 50px 0 0;
  }
}
.recruit_02 .moji_bottom {
  margin: 80px 0 0;
}
@media only screen and (max-width: 768px) {
  .recruit_02 .moji_bottom {
    margin: 40px 0 0;
  }
}

.recruit_contact {
  margin: 100px auto 180px;
}
@media only screen and (max-width: 768px) {
  .recruit_contact {
    margin: 60px auto 74px;
  }
}
.recruit_contact .link_box {
  max-width: 500px;
  margin: 0 auto;
}

/* ==========================================================================

	contact

========================================================================== */
.page_contact .contact_contents {
  margin: 40px auto 0;
}
.page_contact .contact_contents .left {
  width: 200px;
}
@media only screen and (max-width: 768px) {
  .page_contact .contact_contents .left {
    width: 100%;
  }
}
.page_contact .contact_contents .right {
  width: calc(100% - 200px);
  background: rgba(255, 255, 255, 0.3);
  padding: 60px 40px;
  border-radius: 16px;
}
@media only screen and (max-width: 768px) {
  .page_contact .contact_contents .right {
    width: 100%;
    padding: 30px 20px;
  }
}

#contact .contact-inner select {
  width: 100%;
  color: var(--color-3) !important;
}
#contact .contact-inner textarea {
  color: var(--color-3) !important;
}

.yoyaku_txt {
  width: 100%;
  margin: 40px 0 0px;
  font-size: 13px;
}

::placeholder {
  color: var(--color-5) !important;
}

.contents_radio_bottom {
  margin: 10px 0 0;
}

.contact_nav {
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .contact_nav {
    display: none;
  }
}
.contact_nav:after {
  content: "";
  width: 1px;
  height: calc(50% - 8px);
  position: absolute;
  top: 8px;
  left: 4px;
}
.contact_nav:before {
  content: "";
  width: 1px;
  height: calc(50% - 8px);
  position: absolute;
  bottom: 9px;
  left: 4px;
}
.contact_nav li {
  padding-left: 33px;
  position: relative;
  z-index: 1;
  line-height: 1;
  font-size: 13px;
}
.contact_nav li:nth-child(n+2) {
  margin-top: 68px;
}
.contact_nav li:after {
  content: "";
  background: var(--color-bg3);
  border: 1px solid var(--color-4);
  width: 9px;
  height: 9px;
  border-radius: 20px;
  position: absolute;
  top: 4px;
  left: 0;
}
.contact_nav li span {
  padding-bottom: 9px;
  position: relative;
  display: inline-block;
}
.contact_nav li span:after {
  content: "";
  background: var(--color-4);
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

#contact {
  margin: 80px auto 15svh;
  position: relative;
  padding: 0 !important;
}
@media only screen and (max-width: 768px) {
  #contact {
    padding: 0;
    margin: 20px auto 100px;
  }
}
#contact .btn_area {
  width: 660px;
  margin: 50px auto 50px;
}
@media only screen and (max-width: 768px) {
  #contact .btn_area {
    width: 100%;
    max-width: 680px;
    padding: 0 0px;
    margin: 40px auto 0px;
  }
}
#contact .btn_area .item_btn {
  width: 320px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  #contact .btn_area .item_btn {
    width: 100%;
    margin: 0 0 10px;
  }
}
#contact .contact-inner {
  width: 100%;
  position: relative;
  margin: 40px auto;
}
@media only screen and (max-width: 768px) {
  #contact .contact-inner {
    width: 100%;
    margin: 20px auto 0;
    padding: 0px;
    background: rgba(255, 255, 255, 0);
  }
  #contact .contact-inner input[type=text],
  #contact .contact-inner input[type=tel],
  #contact .contact-inner input[type=email],
  #contact .contact-inner input[type=time],
  #contact .contact-inner input[type=date],
  #contact .contact-inner input[type=password],
  #contact .contact-inner select,
  #contact .contact-inner textarea {
    background: #fff;
  }
}
#contact .contact-inner select {
  width: 100%;
}

.contact_index .contact_nav:after,
.contact_index .contact_nav:before {
  background: var(--color-green);
}

.contact_confirm .contact_nav:after {
  background: var(--color-4);
}

.contact_confirm .contact_nav:before {
  background: var(--color-4);
}

.contact_thanks .contact_nav:after,
.contact_thanks .contact_nav:before {
  background: var(--color-4);
}

.contact_index .contact_nav li:nth-child(1):after {
  background: var(--color-4);
}

.contact_confirm .contact_nav li:nth-child(1):after,
.contact_confirm .contact_nav li:nth-child(2):after {
  background: var(--color-4);
}

.contact_thanks .contact_nav li:nth-child(1):after,
.contact_thanks .contact_nav li:nth-child(2):after,
.contact_thanks .contact_nav li:nth-child(3):after {
  background: var(--color-4);
}

.contact_thanks .txtbox {
  margin: 0 !important;
}
.contact_thanks .txtbox .subtitle {
  font-size: 2rem;
  margin: 0 0 20px;
}
@media only screen and (max-width: 768px) {
  .contact_thanks .txtbox .subtitle {
    font-size: 1.6rem;
  }
}
.contact_thanks .txtbox .txt {
  margin: 0 0;
}

.page_contact .user_area .user_info .item .user_left {
  width: 250px;
  position: relative;
  padding: 0 10px 0 0;
}
@media only screen and (max-width: 768px) {
  .page_contact .user_area .user_info .item .user_left {
    width: 100%;
    padding: 0;
  }
}
.page_contact .user_area .user_info .item .user_left .mark {
  position: absolute;
  right: 20px;
  top: 0;
  border: 2px solid #000;
  font-size: 1rem;
  padding: 4px 8px;
  background: rgb(255, 255, 255);
}
@media only screen and (max-width: 768px) {
  .page_contact .user_area .user_info .item .user_left .mark {
    right: 0px;
    top: -5px;
  }
}
.page_contact .user_area .user_info .item .user_left .mark_required {
  color: var(--color-red);
  border: 1px solid var(--color-red);
}
.page_contact .user_area .user_info .item .user_left .mark_free {
  color: var(--color-2);
  border: 1px solid var(--color-2);
}
.page_contact .user_area .user_info .item .user_right {
  width: calc(100% - 250px);
  font-size: 1.3rem;
  font-weight: bold;
  font-family: var(--font-bold);
  margin: 6px 0 0 0;
}
@media only screen and (max-width: 768px) {
  .page_contact .user_area .user_info .item .user_right {
    width: 100%;
  }
}
.page_contact .user_area .user_info .item .confirm_bg {
  padding: 17px;
  background: var(--color-info);
  border-radius: 6px;
  margin: 0;
  width: 100%;
  color: var(--color-3);
}
.page_contact .user_area .user_info .item .confirm_bg.empty {
  color: var(--color-5);
}
.page_contact .memo {
  margin: 10px 0 0 0;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--color-w) !important;
}
@media only screen and (max-width: 768px) {
  .page_contact .memo {
    font-size: 1rem;
  }
}
.page_contact textarea {
  min-height: 200px;
}
.page_contact .check_area {
  margin: 60px auto 0;
  font-size: 1.2rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .page_contact .check_area {
    margin: 42px auto 0;
  }
}
.page_contact .check_area .check_btn {
  width: 199px;
  margin: 20px auto 0;
}
.page_contact .check_area .check_zone .control {
  padding: 8px 0 0 30px;
}
.page_contact .check_area .link {
  font-size: 1.3rem;
}
@media only screen and (max-width: 768px) {
  .page_contact .check_area .link {
    font-size: 1.2rem;
  }
}

.user_area {
  width: 100%;
}
.user_area .subtitle {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: var(--font-bold);
  margin: 30px 0 0 10px;
}
@media only screen and (max-width: 768px) {
  .user_area .subtitle {
    margin: 30px 0 0 0px;
  }
}
.user_area .user_info .item {
  position: relative;
  margin: 0;
  border-bottom: 1px solid var(--color-6);
  padding: 26px 0;
}
@media only screen and (max-width: 768px) {
  .user_area .user_info .item {
    padding: 20px 0;
  }
}
.user_area .user_info .item .user_left {
  width: 140px;
  margin: 6px 0 0 0;
  font-size: 1.4rem;
  color: var(--color-3);
}
@media only screen and (max-width: 768px) {
  .user_area .user_info .item .user_left {
    width: 100%;
    margin: 0 0 11px 0;
    padding: 0;
    font-size: 1.2rem;
  }
}
.user_area .user_info .item .user_left .required {
  position: relative;
  display: inline-block;
}
.user_area .user_info .item .user_left .required:after {
  content: "*";
  position: absolute;
  top: 1px;
  right: -10px;
  bottom: 0;
  display: block;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--color-red);
}
.user_area .user_info .item .user_right {
  width: calc(100% - 150px);
}
@media only screen and (max-width: 768px) {
  .user_area .user_info .item .user_right {
    width: 100%;
  }
}
.user_area .user_info .item .user_right .contents .label {
  margin: 0 0 6px;
  color: var(--color-2);
}
.user_area .user_info .item .user_right .mb {
  margin: 0 0 16px;
}
.user_area .user_info .item .user_right .hint {
  color: var(--color-3);
  font-size: 1.1rem;
  margin: 10px 0 0 2px;
}
.user_area .user_info .error_box {
  margin: 10px 0 0;
}
.user_area .user_info .error_txt {
  color: var(--color-red2);
  font-size: 1.2rem;
  font-weight: bold;
  font-family: var(--font-bold);
  padding: 5px 0;
}

/* ==========================================================================

	check_zone

========================================================================== */
.check_zone .control {
  display: block;
  position: relative;
  padding: 6px 0 0 30px;
  margin: 0;
  cursor: pointer;
  font-size: 13px;
}
.check_zone .control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .check_zone .control {
    height: auto;
    margin: 0;
    padding: 6px 0 0 30px;
    font-size: 1.2rem !important;
  }
}
.check_zone .control__indicator {
  position: absolute;
  top: 8px;
  left: 0;
  height: 20px;
  width: 20px;
  background: var(--color-w);
}
@media only screen and (max-width: 768px) {
  .check_zone .control__indicator {
    top: 7px;
    left: 6px;
  }
}
.check_zone .control--radio .control__indicator {
  border-radius: 50%;
}
.check_zone .control:hover input ~ .control__indicator,
.check_zone .control input:focus ~ .control__indicator {
  background: var(--color-bg);
}
.check_zone .control input:checked ~ .control__indicator {
  background: var(--color-2);
}
.check_zone .control:hover input:not([disabled]):checked .control__indicator,
.check_zone .control input:checked:focus .control__indicator {
  background: #0e647d;
}
.check_zone .control input:disabled .control__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.check_zone .control__indicator:after {
  content: "";
  position: absolute;
  display: none;
}
.check_zone .control input:checked ~ .control__indicator:after {
  display: block;
}
.check_zone .control--checkbox .control__indicator:after {
  left: 7px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.check_zone .control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #fff;
}
.check_zone .control--radio .control__indicator:after {
  left: 7px;
  top: 7px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #fff;
}
.check_zone .control--radio input:disabled ~ .control__indicator:after {
  background: #7b7b7b;
}

/* ==========================================================================

	彫昌

========================================================================== */
.wabori_top {
  padding: 0 !important;
}
.wabori_top .tattoo_artist_shop {
  background-color: #000000;
  margin: 0 auto;
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  .wabori_top .tattoo_artist_shop {
    padding: 40px 0;
  }
}

.wabori_page .logo_area {
  padding: 100px 0 50px;
}
@media only screen and (max-width: 768px) {
  .wabori_page .logo_area {
    padding: 100px 0 50px;
  }
}
.wabori_page .hero_top .hero_video #video {
  opacity: 0.8;
}
.wabori_page .shop_top {
  margin: 0 auto;
  padding: 130px 0 30px;
}
@media only screen and (max-width: 768px) {
  .wabori_page .shop_top {
    padding-top: 40px;
  }
}
.wabori_page .about_price {
  margin: 0;
  padding: 10px 0 80px;
  background-color: #000000;
}
@media only screen and (max-width: 768px) {
  .wabori_page .about_price {
    margin: 0px auto 0;
  }
}
.wabori_page .gallery_top {
  padding: 90px 0 100px;
  margin: 0 auto 120px;
  background-color: var(--color-red);
}
@media only screen and (max-width: 768px) {
  .wabori_page .gallery_top {
    margin: 0 auto 60px;
    padding: 20px 0 60px;
  }
}
.wabori_page .about_hygiene {
  margin: 0;
  padding: 20px 0 80px;
  background-color: #000000;
}
.wabori_page .about_hygiene .moji {
  margin: 0 0 70px;
}
@media only screen and (max-width: 768px) {
  .wabori_page .about_hygiene .moji {
    margin: 0 0 30px;
  }
}
.wabori_page .about_hygiene .moji img {
  vertical-align: bottom;
}
.wabori_page .about_Fix_hygiene {
  margin: 0 auto;
  padding: 100px 0 0;
  background-color: #000000;
}
@media only screen and (max-width: 768px) {
  .wabori_page .about_Fix_hygiene {
    margin: 0px auto 0px;
    padding: 60px 0 0;
  }
}
.wabori_page .about_Fix_hygiene .moji {
  margin: 100px 0 0;
}
@media only screen and (max-width: 768px) {
  .wabori_page .about_Fix_hygiene .moji {
    margin: 60px auto 0px;
  }
}
.wabori_page .about_Fix_hygiene .moji img {
  vertical-align: bottom;
}
.wabori_page .about_Fix_hygiene .inner {
  border-top: 1px solid var(--color-10);
  padding: 70px 0 0;
}
.wabori_page .about_Fix_hygiene .gazou {
  margin: 20px 0 0;
}
.wabori_page .about_Fix_hygiene .left {
  padding: 0 50px 0 0;
}
@media only screen and (max-width: 768px) {
  .wabori_page .about_Fix_hygiene .left {
    padding: 0;
  }
}
.wabori_page .about_Fix_hygiene .right {
  padding: 0 0 0 50px;
}
@media only screen and (max-width: 768px) {
  .wabori_page .about_Fix_hygiene .right {
    padding: 30px 0 0;
  }
}
.wabori_page .wabori {
  background-color: var(--color-gold) !important;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .wabori_page .wabori .txtbox {
    padding: 50px 0 40px;
  }
}
.wabori_page .wabori .txtbox .subtitle {
  position: relative;
  display: inline-block;
}
.wabori_page .wabori .txtbox .subtitle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -3px;
  background-color: var(--color-10);
  left: 0;
}
.wabori_page .wabori .txtbox .txt::after {
  display: none;
}
.wabori_page .wabori .txtbox .view_more {
  margin: 20px 0 0;
}
.wabori_page .english_area {
  margin: 0 auto;
  padding: 100px 0;
}
@media only screen and (max-width: 768px) {
  .wabori_page .english_area {
    padding: 50px 0;
  }
}

.gallery_category_page_wabori .gallery_category_list {
  background: var(--color-main);
  padding: 60px 0 100px;
}
.gallery_category_page_wabori .gallery_category {
  margin: 60px 0 100px;
}
@media only screen and (max-width: 768px) {
  .gallery_category_page_wabori .gallery_category {
    margin: 0 0 40px;
  }
}

/* ==========================================================================

	en_page

========================================================================== */
.en_page {
  padding: 0 !important;
}
.en_page .nav-list {
  color: var(--color-10);
}
.en_page .logo_area {
  padding: 130px 0 80px;
}
@media only screen and (max-width: 768px) {
  .en_page .logo_area {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 768px) {
  .en_page .hero_top .logo_box {
    padding: 0 20px;
  }
}
.en_page .shop_top .txtbox .right {
  position: relative !important;
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 768px) {
  .en_page .shop_top .txtbox .right .movie {
    margin: 30px 0 0;
  }
}
.en_page .en_gallery {
  border-top: 1px solid var(--color-10);
  border-bottom: 1px solid var(--color-10);
  margin: 60px 0 60px;
  padding: 60px 0;
}
@media only screen and (max-width: 768px) {
  .en_page .en_gallery {
    margin: 30px 0 30px;
    padding: 30px 0;
  }
}
.en_page .en_gallery li .img {
  margin: 20px 0 0;
}
.en_page .en_gallery li:not(:last-child) {
  margin-bottom: 60px;
  padding: 0 0 60px;
  border-bottom: 1px solid var(--color-10);
}
@media only screen and (max-width: 768px) {
  .en_page .en_gallery li:not(:last-child) {
    margin-bottom: 30px;
    padding: 0 0 30px;
  }
}
.en_page .tattoo_artist_shop {
  margin: 0px auto 0px;
  padding: 0px 0 120px;
  background-color: #000000;
}
@media only screen and (max-width: 768px) {
  .en_page .tattoo_artist_shop {
    padding: 0px 0 80px;
  }
}
.en_page .about_price {
  background-color: #000000;
  margin: 0px auto 0;
  padding: 100px 0 0;
}
@media only screen and (max-width: 768px) {
  .en_page .about_price {
    padding: 80px 0 0;
  }
}
.en_page .about_hygiene {
  background-color: #000000;
  padding: 120px 0 0;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .en_page .about_hygiene {
    padding: 80px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .en_page .about_price .inner .price_list li .name {
    width: 60%;
  }
}
@media only screen and (max-width: 768px) {
  .en_page .about_price .inner .price_list li .yen {
    width: 40%;
  }
}
@media only screen and (max-width: 768px) {
  .en_page .gallery_top {
    margin: 0px auto 0px;
    padding: 60px 0 90px;
  }
}
.en_page .gallery_top .img_list {
  margin: 0px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
.en_page .gallery_top .img_list img {
  vertical-align: bottom;
}
.en_page .tattoo_artist_shop .bg {
  margin: 0 0 50px;
}
.en_page .recruit_area {
  padding: 100px 0 100px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .en_page .recruit_area {
    padding: 30px 0 100px;
  }
}

@media only screen and (max-width: 768px) {
  .wabori_en_page .shop_top .txtbox .right {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .wabori_en_page .tattoo_artist_shop .inner {
    border-top: 1px solid var(--color-10);
  }
}
.wabori_en_page .tattoo_artist_shop .name {
  font-size: 1.9rem;
}
.wabori_en_page .wabori {
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .wabori_en_page .wabori {
    margin: 0 auto;
  }
}

.en_gallery_page {
  padding: 130px 0 0px !important;
}
@media only screen and (max-width: 768px) {
  .en_gallery_page {
    padding: 80px 0 0px !important;
  }
}

.cn_page .shop_top {
  padding: 130px 0;
}
@media only screen and (max-width: 768px) {
  .cn_page .shop_top {
    padding: 80px 0;
  }
}

.lg-on {
  overflow: hidden;
}

.lg-backdrop,
.lg-outer {
  z-index: 999999 !important;
}

/*# sourceMappingURL=style.css.map */
