@charset "UTF-8";
/*---------------------------------------------------------
Theme Name: ITB_themes
Theme URI:
Author:IT-Brain Inc.
Author URI:
Description:ウェブサイト
Version: 1.1295
---------------------------------------------------------*/
/* ========================================================================== */
/* base ========= */
/* ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Sorts+Mill+Goudy&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Sawarabi+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css?family=Sawarabi+Mincho&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, figure, figcaption, blockquote, fieldset, legend {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ========================================================================== */
/* アニメーションcss ========= */
/* ========================================================================== */
/* アニメーションCSS ========= */
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  40%, 43%, 70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  70% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  40%, 43%, 70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  70% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(-1turn);
    transform: perspective(400px) rotateY(-1turn);
  }
  0%, 40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) translateZ(150px) rotateY(-190deg);
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) translateZ(150px) rotateY(-170deg);
  }
  50%, 80% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(-1turn);
    transform: perspective(400px) rotateY(-1turn);
  }
  0%, 40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) translateZ(150px) rotateY(-190deg);
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) translateZ(150px) rotateY(-170deg);
  }
  50%, 80% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  0%, 40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  0%, 40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  0%, 40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  0%, 40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
  }
  60%, 80% {
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
  }
  60%, 80% {
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: center;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: center;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: center;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: center;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
  0%, 20%, 60% {
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
  0%, 20%, 60% {
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50%, to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50%, to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/* ========================================================================== */
/* スライダーcss ========= */
/* ========================================================================== */
/**
 * Swiper 5.3.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 8, 2020
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: x mandatory;
      -ms-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: y mandatory;
      -ms-scroll-snap-type: y mandatory;
          scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
  --swiper-navigation-color:#ffffff;
}

.swiper-button-next.swiper-button-black, .swiper-button-prev.swiper-button-black {
  --swiper-navigation-color:#000000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color:#ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color:#000000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* ========================================================================== */
/* Luminous ポップアップ用css ========= */
/* ========================================================================== */
@-webkit-keyframes lum-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes lum-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes lum-fadeZoom {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes lum-fadeZoom {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes lum-loader-rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) rotate(-180deg);
            transform: translate(-50%, -50%) rotate(-180deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
            transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@keyframes lum-loader-rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) rotate(-180deg);
            transform: translate(-50%, -50%) rotate(-180deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
            transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@-webkit-keyframes lum-loader-before {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.2) translateX(6px);
            transform: scale(1.2) translateX(6px);
  }
  25% {
    -webkit-transform: scale(1.3) translateX(8px);
            transform: scale(1.3) translateX(8px);
  }
  40% {
    -webkit-transform: scale(1.2) translateX(6px);
            transform: scale(1.2) translateX(6px);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  60% {
    -webkit-transform: scale(0.8) translateX(6px);
            transform: scale(0.8) translateX(6px);
  }
  75% {
    -webkit-transform: scale(0.7) translateX(8px);
            transform: scale(0.7) translateX(8px);
  }
  90% {
    -webkit-transform: scale(0.8) translateX(6px);
            transform: scale(0.8) translateX(6px);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes lum-loader-before {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.2) translateX(6px);
            transform: scale(1.2) translateX(6px);
  }
  25% {
    -webkit-transform: scale(1.3) translateX(8px);
            transform: scale(1.3) translateX(8px);
  }
  40% {
    -webkit-transform: scale(1.2) translateX(6px);
            transform: scale(1.2) translateX(6px);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  60% {
    -webkit-transform: scale(0.8) translateX(6px);
            transform: scale(0.8) translateX(6px);
  }
  75% {
    -webkit-transform: scale(0.7) translateX(8px);
            transform: scale(0.7) translateX(8px);
  }
  90% {
    -webkit-transform: scale(0.8) translateX(6px);
            transform: scale(0.8) translateX(6px);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes lum-loader-after {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.2) translateX(-6px);
            transform: scale(1.2) translateX(-6px);
  }
  25% {
    -webkit-transform: scale(1.3) translateX(-8px);
            transform: scale(1.3) translateX(-8px);
  }
  40% {
    -webkit-transform: scale(1.2) translateX(-6px);
            transform: scale(1.2) translateX(-6px);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  60% {
    -webkit-transform: scale(0.8) translateX(-6px);
            transform: scale(0.8) translateX(-6px);
  }
  75% {
    -webkit-transform: scale(0.7) translateX(-8px);
            transform: scale(0.7) translateX(-8px);
  }
  90% {
    -webkit-transform: scale(0.8) translateX(-6px);
            transform: scale(0.8) translateX(-6px);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes lum-loader-after {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.2) translateX(-6px);
            transform: scale(1.2) translateX(-6px);
  }
  25% {
    -webkit-transform: scale(1.3) translateX(-8px);
            transform: scale(1.3) translateX(-8px);
  }
  40% {
    -webkit-transform: scale(1.2) translateX(-6px);
            transform: scale(1.2) translateX(-6px);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  60% {
    -webkit-transform: scale(0.8) translateX(-6px);
            transform: scale(0.8) translateX(-6px);
  }
  75% {
    -webkit-transform: scale(0.7) translateX(-8px);
            transform: scale(0.7) translateX(-8px);
  }
  90% {
    -webkit-transform: scale(0.8) translateX(-6px);
            transform: scale(0.8) translateX(-6px);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.lum-lightbox {
  background: rgba(0, 0, 0, 0.6);
}

.lum-lightbox-inner {
  top: 2.5%;
  right: 2.5%;
  bottom: 2.5%;
  left: 2.5%;
}

.lum-lightbox-inner img {
  position: relative;
  max-width: 500px;
}

.lum-lightbox-inner .lum-lightbox-caption {
  margin: 0 auto;
  color: #fff;
  max-width: 700px;
  text-align: center;
}

.lum-loading .lum-lightbox-loader {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 66px;
  height: 20px;
  -webkit-animation: lum-loader-rotate 1800ms infinite linear;
          animation: lum-loader-rotate 1800ms infinite linear;
}

.lum-lightbox-loader:before,
.lum-lightbox-loader:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
}

.lum-lightbox-loader:before {
  left: 0;
  -webkit-animation: lum-loader-before 1800ms infinite linear;
          animation: lum-loader-before 1800ms infinite linear;
}

.lum-lightbox-loader:after {
  right: 0;
  -webkit-animation: lum-loader-after 1800ms infinite linear;
          animation: lum-loader-after 1800ms infinite linear;
  -webkit-animation-delay: -900ms;
          animation-delay: -900ms;
}

.lum-lightbox.lum-opening {
  -webkit-animation: lum-fade 180ms ease-out;
          animation: lum-fade 180ms ease-out;
}

.lum-lightbox.lum-opening .lum-lightbox-inner {
  -webkit-animation: lum-fadeZoom 180ms ease-out;
          animation: lum-fadeZoom 180ms ease-out;
}

.lum-lightbox.lum-closing {
  -webkit-animation: lum-fade 300ms ease-in;
          animation: lum-fade 300ms ease-in;
  animation-direction: reverse;
}

.lum-lightbox.lum-closing .lum-lightbox-inner {
  -webkit-animation: lum-fadeZoom 300ms ease-in;
          animation: lum-fadeZoom 300ms ease-in;
  animation-direction: reverse;
}

.lum-img {
  -webkit-transition: opacity 120ms ease-out;
  transition: opacity 120ms ease-out;
}

.lum-loading .lum-img {
  opacity: 0;
}

.lum-gallery-button {
  overflow: hidden;
  text-indent: 150%;
  white-space: nowrap;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  outline: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 100px;
  max-height: 100%;
  width: 60px;
  cursor: pointer;
}

.lum-close-button {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 32px;
  height: 32px;
  opacity: 0.3;
}

.lum-close-button:hover {
  opacity: 1;
}

.lum-close-button:before,
.lum-close-button:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 2px;
  background-color: #fff;
}

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

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

.lum-previous-button {
  left: 12px;
}

.lum-next-button {
  right: 12px;
}

.lum-gallery-button:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 36px;
  height: 36px;
  border-top: 4px solid rgba(255, 255, 255, 0.8);
}

.lum-previous-button:after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  border-left: 4px solid rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: -2px 0 rgba(0, 0, 0, 0.2);
          box-shadow: -2px 0 rgba(0, 0, 0, 0.2);
  left: 12%;
  border-radius: 3px 0 0 0;
}

.lum-next-button:after {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-right: 4px solid rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 2px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 2px 0 rgba(0, 0, 0, 0.2);
  right: 12%;
  border-radius: 0 3px 0 0;
}

/* This media query makes screens less than 460px wide display in a "fullscreen"-esque mode. Users can then scroll around inside the lightbox to see the entire image. */
@media (max-width: 460px) {
  .lum-lightbox-image-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .lum-lightbox-caption {
    width: 100%;
    position: absolute;
    bottom: 0;
  }
  /* Used to centre the image in the container, respecting overflow: https://stackoverflow.com/a/33455342/515634 */
  .lum-lightbox-position-helper {
    margin: auto;
  }
  .lum-lightbox-inner img {
    max-width: none;
    max-height: none;
  }
}
.lum-lightbox {
  z-index: 999;
}

/* ========================================================================== */
/* フォント ========= */
/* ========================================================================== */
/* ========================================================================== */
/* common ========= */
/* ========================================================================== */
html,
body {
  height: 100%;
}

html {
  font-size: 62.5% !important;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: #e1e1dc;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.05em;
}

.appear {
  opacity: 1;
  -webkit-transition: 2s cubic-bezier(0.23, 1, 0.32, 1);
  transition: 2s cubic-bezier(0.23, 1, 0.32, 1);
}

p, ul li {
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  p, ul li {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

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

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

a[href^="tel:"] {
  cursor: default;
}

ul {
  margin: 0;
  padding: 0;
  font-size: 0;
}

li {
  list-style-type: none;
}

.font-min {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.3em;
}

:root {
  --page-pad: calc(100vw / 12);
  --section-y: 220px;
}
@media screen and (min-width: 768px) {
  :root {
    --page-pad: 7.2vw;
  }
}

/* ========================================================================== */
/* layout ========= */
/* ========================================================================== */
.page-section {
  margin-bottom: 220px;
}
@media screen and (max-width: 767px) {
  .page-section {
    margin-bottom: 132px;
  }
}
.page-section {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .page-section {
    padding-top: 80px;
  }
}
.page-section:last-child {
  margin-bottom: 0;
}

.pageBody-inner {
  max-width: calc(1200px + var(--page-pad) * 2);
  padding: 0 var(--page-pad);
  margin: 0 auto;
}

.pageBody-inner {
  position: relative;
}

@media screen and (max-width: 767px) {
  /* YOUTUBE */
  .embed-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin-bottom: 5px;
  }
  .embed-container iframe,
  .embed-container object,
  .embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
  }
}
/* ========================================================================== */
/* utility ========= */
/* ========================================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.en {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
}

.visible-xs {
  display: none;
}

.visible-sm {
  display: none;
}

.visible-md {
  display: none;
}

.visible-lg {
  display: none;
}

@media screen and (max-width: 374px) {
  .visible-xs {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .visible-sm {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .visible-md {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  .visible-lg {
    display: block;
  }
}
@media screen and (max-width: 374px) {
  .hidden-xs {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .hidden-sm {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .hidden-md {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .hidden-lg {
    display: none;
  }
}
/* ========================================================================== */
/* page-section ========= */
/* ========================================================================== */
.section-kicker {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: 0.55em;
}

/* ========================================================================== */
/* lower Heading ========= */
/* ========================================================================== */
.lowerNoHeading {
  padding-top: 180px;
}
@media screen and (max-width: 767px) {
  .lowerNoHeading {
    padding-top: 120px;
  }
}
.lowerNoHeading .lowerPage-title {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  text-align: center;
  position: static;
  width: 100%;
  padding: 0 8.3333333333vw;
}
@media screen and (max-width: 767px) {
  .lowerNoHeading .lowerPage-title {
    -webkit-transform: none;
            transform: none;
  }
}
.lowerNoHeading .lowerPage-title span.en {
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
.lowerNoHeading .lowerPage-title span.ja {
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .lowerNoHeading .lowerPage-title span.ja {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.lowerPage .pageFoot {
  margin-top: 180px;
}
@media screen and (max-width: 767px) {
  .lowerPage .pageFoot {
    margin-top: 120px;
  }
}
.lowerPageHeading {
  margin: 90px 0 150px;
  padding: 140px 8.3333333333vw 0;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .lowerPageHeading {
    margin: 60px 0 90px;
    padding-top: 100px;
  }
}
.lowerPage-title {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .lowerPage-title {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}
.lowerPage-title span {
  display: block;
}
.lowerPage-title span.en {
  font-family: "Gantari", sans-serif;
  font-weight: 200;
  font-size: 112px;
  font-size: 11.2rem;
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-indent: 0;
  white-space: normal;
  font-weight: 200;
  margin-bottom: 0;
  color: #000;
  text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
  .lowerPage-title span.en {
    font-size: 84px;
    font-size: 8.4rem;
  }
}
@media screen and (max-width: 767px) {
  .lowerPage-title span.en {
    font-size: 56px;
    font-size: 5.6rem;
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 480px) {
  .lowerPage-title span.en {
    font-size: 40px;
    font-size: 4rem;
  }
}
.lowerPage-title span.en::before {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: #000;
  opacity: 0.5;
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .lowerPage-title span.en::before {
    width: 40px;
    margin-bottom: 22px;
  }
}
.lowerPage-title span.ja {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.3em;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.8em;
  text-indent: 0;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1;
  font-weight: 400;
  padding-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .lowerPage-title span.ja {
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: 0.6em;
    padding-bottom: 4px;
  }
}
.lowerPage-caution {
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .lowerPage-caution {
    margin-bottom: 40px;
  }
}

.lowerPage_nav {
  margin-bottom: 100px;
}
.lowerPage_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 991px) {
  .lowerPage_nav ul {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .lowerPage_nav ul {
    gap: 20px;
  }
}
.lowerPage_nav ul li {
  width: calc(33.3333% - 30px);
}
@media screen and (max-width: 991px) {
  .lowerPage_nav ul li {
    width: calc(33.3333% - 20px);
  }
}
@media screen and (max-width: 767px) {
  .lowerPage_nav ul li {
    width: 100%;
  }
}
.lowerPage_nav ul li a {
  display: block;
  color: #000;
  border: 1px solid;
  font-size: 20px;
  font-size: 2rem;
  text-align: center;
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  .lowerPage_nav ul li a {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.lowerPage_nav ul li a:hover {
  background: #000;
  color: #fff;
}

.pageHead {
  color: #000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 151;
  padding: 0;
  -webkit-transition: background 400ms cubic-bezier(0.23, 1, 0.32, 1), position 400ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: background 400ms cubic-bezier(0.23, 1, 0.32, 1), position 400ms cubic-bezier(0.23, 1, 0.32, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 90px;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .pageHead {
    height: 60px;
  }
}
.pageHead .header_nav-logo a {
  color: #000;
  display: block;
}
.pageHead .header_nav-logo a span.en {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 300;
}
.pageHead .header_nav-logo a svg {
  width: 103px;
  height: 32px;
}
.pageHead-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.pageHead-reserve {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: 0.42em;
  line-height: 1.9;
  padding: 0 18px 0 6px;
  border-bottom: 1px solid #000;
  color: #000;
  -webkit-transition: color 0.3s ease, border-color 0.3s ease;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.pageHead-reserve::after {
  content: "▶";
  margin-left: 8px;
  display: inline-block;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  font-size: 9px;
}

.pageHead-hamburger {
  position: relative;
  width: 33px;
  height: 23px;
  cursor: pointer;
}
.pageHead-hamburger span {
  position: absolute;
  right: 0;
  width: 33px;
  height: 1px;
  background: #000;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease, -webkit-transform 0.3s ease;
}
.pageHead-hamburger span:first-child {
  top: 2px;
}
.pageHead-hamburger span:last-child {
  bottom: 2px;
}
.pageHead-hamburger.is-active span:first-child {
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.pageHead-hamburger.is-active span:nth-child(2) {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.pageHead-hamburger.is-active span:last-child {
  bottom: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* ========================================================================== */
/* ドロワーメニュー */
/* ========================================================================== */
#overlay {
  z-index: -1;
  opacity: 0;
  background: #000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  -webkit-transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
  /* easeInOutExpo */
  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
          transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  /* easeInOutExpo */
}

#page {
  position: relative;
  z-index: 2;
  left: 0;
  background: #fff;
  -webkit-transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
  /* easeInOutExpo */
  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
          transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  /* easeInOutExpo */
}

#drawernav {
  position: fixed;
  inset: 0;
  background: #e1e1dc;
  z-index: -1;
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: opacity 400ms cubic-bezier(0.23, 1, 0.32, 1), z-index 0s 600ms, -webkit-transform 600ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 400ms cubic-bezier(0.23, 1, 0.32, 1), z-index 0s 600ms, -webkit-transform 600ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 600ms cubic-bezier(0.23, 1, 0.32, 1), opacity 400ms cubic-bezier(0.23, 1, 0.32, 1), z-index 0s 600ms;
  transition: transform 600ms cubic-bezier(0.23, 1, 0.32, 1), opacity 400ms cubic-bezier(0.23, 1, 0.32, 1), z-index 0s 600ms, -webkit-transform 600ms cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}
#drawernav .drawernav_inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 991px) {
  #drawernav .drawernav_inner {
    grid-template-columns: 6fr 4fr;
  }
}
#drawernav {
  /* ========================================================================== */
  /* 左ペイン：ナビ ========= */
  /* ========================================================================== */
}
#drawernav .drawernav_inner-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 140px var(--page-pad) 60px;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  #drawernav .drawernav_inner-nav {
    padding: 110px 28px 40px;
  }
}
#drawernav .drawernav_inner-kicker {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: 0.55em;
  color: rgba(0, 0, 0, 0.7);
  margin: 0 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  #drawernav .drawernav_inner-kicker {
    font-size: 10px;
    font-size: 1rem;
    margin-bottom: 40px;
  }
}
#drawernav .drawernav_inner-kicker::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #000;
  opacity: 0.5;
}
#drawernav .drawernav_inner-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  font-size: 0;
}
@media screen and (max-width: 1200px) {
  #drawernav .drawernav_inner-list {
    gap: 18px;
  }
}
@media screen and (max-width: 767px) {
  #drawernav .drawernav_inner-list {
    gap: 14px;
  }
}
#drawernav .drawernav_inner-list li {
  margin: 0;
  padding: 0;
  width: auto;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 700ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 700ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 700ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 700ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 700ms cubic-bezier(0.23, 1, 0.32, 1), transform 700ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 700ms cubic-bezier(0.23, 1, 0.32, 1), transform 700ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 700ms cubic-bezier(0.23, 1, 0.32, 1);
}
#drawernav .drawernav_inner-list li a {
  display: inline-block;
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 40px;
  font-size: 4rem;
  font-weight: 200;
  letter-spacing: 0.12em;
  color: #000;
  line-height: 1;
  text-transform: uppercase;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}
@media screen and (max-width: 1200px) {
  #drawernav .drawernav_inner-list li a {
    font-size: 32px;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  #drawernav .drawernav_inner-list li a {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
#drawernav .drawernav_inner-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 0;
  background: #000;
  -webkit-transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
#drawernav .drawernav_inner-list li a:hover, #drawernav .drawernav_inner-list li a:focus-visible {
  opacity: 1;
}
#drawernav .drawernav_inner-list li a:hover::after, #drawernav .drawernav_inner-list li a:focus-visible::after {
  width: 100%;
}
#drawernav .drawernav_inner-list li.current-menu-item a::after, #drawernav .drawernav_inner-list li.current_page_item a::after {
  width: 100%;
  opacity: 0.35;
}
#drawernav .drawernav_inner-foot {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  #drawernav .drawernav_inner-foot {
    margin-top: 40px;
  }
}
#drawernav .drawernav_inner-snsLabel {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: 0.55em;
  color: rgba(0, 0, 0, 0.7);
  margin: 0 0 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  text-transform: uppercase;
}
#drawernav .drawernav_inner-snsLabel::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #000;
  opacity: 0.5;
}
#drawernav .drawernav_inner-sns {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  font-size: 0;
}
#drawernav .drawernav_inner-sns li {
  margin: 0;
  padding: 0;
  width: auto;
}
#drawernav .drawernav_inner-sns a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  color: #000;
  line-height: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
#drawernav .drawernav_inner-sns a:hover {
  opacity: 0.6;
}
#drawernav {
  /* ========================================================================== */
  /* 右ペイン：visual ========= */
  /* ========================================================================== */
}
#drawernav .drawernav_inner-visual {
  position: relative;
  background: #000;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  #drawernav .drawernav_inner-visual {
    display: none;
  }
}
#drawernav .drawernav_inner-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.15)), to(rgba(0, 0, 0, 0.55)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
#drawernav .drawernav_inner-visualImg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#drawernav .drawernav_inner-visualImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#drawernav .drawernav_inner-visualMark {
  position: absolute;
  top: 60px;
  right: 60px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  z-index: 2;
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: 0.55em;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}
#drawernav .drawernav_inner-visualCopy {
  position: absolute;
  bottom: 60px;
  left: 60px;
  right: 60px;
  z-index: 2;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  #drawernav .drawernav_inner-visualCopy {
    bottom: 40px;
    left: 40px;
    right: 40px;
  }
}
#drawernav .drawernav_inner-visualBrand {
  font-family: "Gantari", sans-serif;
  font-weight: 200;
  font-size: 64px;
  font-size: 6.4rem;
  font-weight: 200;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 0 0 22px;
  text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
  #drawernav .drawernav_inner-visualBrand {
    font-size: 46px;
    font-size: 4.6rem;
  }
}
#drawernav .drawernav_inner-visualLead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  line-height: 1.85;
  margin: 0;
  opacity: 0.85;
  max-width: 26em;
}

/* ドロワー開放時のスタイル ========= */
.drawer-opened #pageHead {
  z-index: 101;
  background: none !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transition: background 400ms cubic-bezier(0.23, 1, 0.32, 1), position 400ms cubic-bezier(0.23, 1, 0.32, 1), opacity 400ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: background 400ms cubic-bezier(0.23, 1, 0.32, 1), position 400ms cubic-bezier(0.23, 1, 0.32, 1), opacity 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
.drawer-opened #pageHead::before, .drawer-opened #pageHead:after {
  display: none;
  -webkit-transition: opacity 400ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
.drawer-opened #pageHead:before {
  background: none !important;
  opacity: 0;
}
.drawer-opened .keyvisual-scroll {
  display: none;
}
.drawer-opened .recruitPageHeading {
  margin-top: 0;
}
.drawer-opened #overlay {
  z-index: 1;
}
.drawer-opened #pageHead,
.drawer-opened #pageHead_reserve {
  background: none !important;
}
.drawer-opened #pageHead_reserve {
  opacity: 0;
}
.drawer-opened #pageHead_reserve:before {
  border-color: transparent transparent transparent transparent;
}
.drawer-opened #page {
  -webkit-box-shadow: 1px 0 2px #000;
          box-shadow: 1px 0 2px #000;
}
.drawer-opened #drawernav {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  z-index: 100;
  -webkit-transition: opacity 400ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 600ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 400ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 600ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 600ms cubic-bezier(0.23, 1, 0.32, 1), opacity 400ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 600ms cubic-bezier(0.23, 1, 0.32, 1), opacity 400ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 600ms cubic-bezier(0.23, 1, 0.32, 1);
}
.drawer-opened #drawernav .drawernav_inner-list li {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.drawer-opened #drawernav .drawernav_inner-list li:nth-child(1) {
  -webkit-transition-delay: calc(220ms + 70ms * 1);
          transition-delay: calc(220ms + 70ms * 1);
}
.drawer-opened #drawernav .drawernav_inner-list li:nth-child(2) {
  -webkit-transition-delay: calc(220ms + 70ms * 2);
          transition-delay: calc(220ms + 70ms * 2);
}
.drawer-opened #drawernav .drawernav_inner-list li:nth-child(3) {
  -webkit-transition-delay: calc(220ms + 70ms * 3);
          transition-delay: calc(220ms + 70ms * 3);
}
.drawer-opened #drawernav .drawernav_inner-list li:nth-child(4) {
  -webkit-transition-delay: calc(220ms + 70ms * 4);
          transition-delay: calc(220ms + 70ms * 4);
}
.drawer-opened #drawernav .drawernav_inner-list li:nth-child(5) {
  -webkit-transition-delay: calc(220ms + 70ms * 5);
          transition-delay: calc(220ms + 70ms * 5);
}
.drawer-opened #drawernav .drawernav_inner-list li:nth-child(6) {
  -webkit-transition-delay: calc(220ms + 70ms * 6);
          transition-delay: calc(220ms + 70ms * 6);
}
.drawer-opened #drawernav .drawernav_inner-list li:nth-child(7) {
  -webkit-transition-delay: calc(220ms + 70ms * 7);
          transition-delay: calc(220ms + 70ms * 7);
}
.drawer-opened #drawernav .drawernav_inner-list li:nth-child(8) {
  -webkit-transition-delay: calc(220ms + 70ms * 8);
          transition-delay: calc(220ms + 70ms * 8);
}
.drawer-opened #drawernav .drawernav_inner-list li:nth-child(9) {
  -webkit-transition-delay: calc(220ms + 70ms * 9);
          transition-delay: calc(220ms + 70ms * 9);
}
.drawer-opened #drawernav .drawernav_inner-list li:nth-child(10) {
  -webkit-transition-delay: calc(220ms + 70ms * 10);
          transition-delay: calc(220ms + 70ms * 10);
}
.drawer-opened #drawernav .drawernav_inner-list li:nth-child(11) {
  -webkit-transition-delay: calc(220ms + 70ms * 11);
          transition-delay: calc(220ms + 70ms * 11);
}
.drawer-opened #drawernav .drawernav_inner-list li:nth-child(12) {
  -webkit-transition-delay: calc(220ms + 70ms * 12);
          transition-delay: calc(220ms + 70ms * 12);
}

body.drawer-opened {
  overflow: hidden;
}
body.drawer-opened .keyvisual-logo {
  display: none;
}
body.drawer-opened .header_nav-logo a {
  color: #fff;
}
body.drawer-opened #pageHead {
  mix-blend-mode: unset;
}
@media screen and (min-width: 991px) {
  body.drawer-opened .pageHead-reserve {
    color: #fff;
    border-bottom-color: #fff;
  }
  body.drawer-opened .pageHead-hamburger span {
    background: #fff;
  }
}

body.drawer-opened .header_nav-wrap:before {
  background: #000;
}

body.drawer-opened .pageHead_navi {
  display: none;
}

.pageFoot {
  width: calc(100% - var(--page-pad) * 2);
  margin: 0 auto;
  padding: 44px 0 56px;
  border-top: 1px solid #000;
}
@media screen and (min-width: 1500px) {
  .pageFoot {
    padding: 44px var(--page-pad) 56px;
  }
}

.pageFoot-inner {
  display: grid;
  gap: 48px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .pageFoot-inner {
    grid-template-columns: 130px 1fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    text-align: right;
  }
}
@media screen and (max-width: 991px) {
  .pageFoot-inner {
    max-width: 160px;
    margin: 0 auto;
  }
}

.pageFoot-brand {
  font-family: "Gantari", "Times New Roman", sans-serif;
  font-weight: 400;
  font-size: 39px;
  font-size: 3.9rem;
  line-height: 1;
  letter-spacing: 0.2em;
}
.pageFoot-brandWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .pageFoot-brandWrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.pageFoot-brand svg {
  width: 130px;
  height: 40px;
}
@media screen and (max-width: 1200px) {
  .pageFoot-brand svg {
    margin: 0 auto;
  }
}

.pageFoot-instagram {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 28px;
}
.pageFoot-instagram svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: #000;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pageFoot_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: 0.52em;
}
@media screen and (min-width: 991px) {
  .pageFoot_nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .pageFoot_nav {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 15px;
    padding-top: 16px;
    width: 100%;
  }
}
@media screen and (min-width: 1500px) {
  .pageFoot_nav {
    gap: 20px;
  }
}
.pageFoot_nav li {
  position: relative;
}
@media screen and (max-width: 991px) {
  .pageFoot_nav li {
    width: 100%;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.pageFoot_nav li::marker {
  content: none;
}
.pageFoot_nav li:before {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background: #000;
  -webkit-transform: rotate(25deg) translateY(-50%);
          transform: rotate(25deg) translateY(-50%);
  position: absolute;
  top: calc(50% - 2px);
  left: -8px;
  opacity: 0.5;
}
@media screen and (max-width: 1200px) {
  .pageFoot_nav li:before {
    left: -16px;
  }
}
@media screen and (max-width: 991px) {
  .pageFoot_nav li:before {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .pageFoot_nav li:after {
    content: "/";
    display: block;
    margin-left: 1em;
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.pageFoot_nav li:first-child::before {
  display: none;
}
.pageFoot_nav li:last-child a {
  padding-right: 0;
}
.pageFoot_nav a {
  display: block;
  padding: 0 20px;
}
@media screen and (max-width: 1200px) {
  .pageFoot_nav a {
    padding: 0 10px;
  }
}
@media screen and (max-width: 991px) {
  .pageFoot_nav a {
    padding: 0;
  }
}

.pageFoot-reserve {
  margin: 0 auto;
  width: 165px;
  padding: 6px 0;
  margin: 60px 0 0;
}
@media screen and (min-width: 991px) {
  .pageFoot-reserve {
    margin: 30px 0 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.pageFoot-reserve:after {
  display: none;
}

.pageFoot-copy {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 10px;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.46em;
  margin-top: 190px;
}
@media screen and (max-width: 1200px) {
  .pageFoot-copy {
    margin-top: 60px;
  }
}

/* ========================================================================== */
/* parts ========= */
/* ========================================================================== */
.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 24px;
  border: 1px solid #000;
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 10px;
  font-size: 1rem;
  letter-spacing: 0.36em;
  line-height: 1;
  min-width: 86px;
  position: relative;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
}
.button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 52px;
  height: 1px;
  background: #000;
}
.button:hover {
  background: #000;
  color: #ffffff;
  opacity: 1;
}
.button.is-wide {
  width: 165px;
}
.button.is-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.18em;
  padding: 7px 32px 10px;
  font-size: 14px;
  font-size: 1.4rem;
}

/* ========================================================================== */
/* pages ========= */
/* ========================================================================== */
/* ========================================================================== */
/* HERO ========= */
/* ========================================================================== */
.topPage .pageHead .header_nav-logo a svg {
  -webkit-transition: width 400ms cubic-bezier(0.23, 1, 0.32, 1), height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: width 400ms cubic-bezier(0.23, 1, 0.32, 1), height 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
.topPage .pageHead.is-hero {
  position: absolute;
  top: calc((100vw - var(--page-pad) * 2) * 0.5625 + 90px - 53px);
}
@media screen and (max-width: 480px) {
  .topPage .pageHead.is-hero {
    top: calc((100vw - var(--page-pad) * 2) * 1.778 + 90px - 53px);
  }
}
@media screen and (max-width: 480px) {
  .topPage .pageHead.is-hero .header_nav-logo {
    margin-left: calc(var(--page-pad) * 0.5 * -1);
  }
}
.topPage .pageHead.is-hero .header_nav-logo a svg {
  width: 346px;
  height: 106px;
}
@media screen and (max-width: 480px) {
  .topPage .pageHead.is-hero .header_nav-logo a svg {
    width: 217px;
    height: 67px;
  }
}
.topPage .pageHead.is-hero .pageHead-inner {
  position: fixed;
  top: 0;
  right: 30px;
  height: 90px;
  z-index: 152;
}
@media screen and (max-width: 767px) {
  .topPage .pageHead.is-hero .pageHead-inner {
    height: 60px;
  }
}

body.drawer-opened .topPage .pageHead.is-hero {
  position: fixed;
  top: 0;
}
@media screen and (max-width: 480px) {
  body.drawer-opened .topPage .pageHead.is-hero .header_nav-logo {
    margin-left: 0;
  }
}
body.drawer-opened .topPage .pageHead.is-hero .header_nav-logo a svg {
  width: 103px;
  height: 32px;
}

.topHero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 220px;
}
@media screen and (max-width: 767px) {
  .topHero {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}
.topHero video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.topHero-frame {
  position: relative;
  margin: 0 var(--page-pad);
}
.topHero-logo {
  font-family: "Gantari", "Times New Roman", sans-serif;
  font-weight: 400;
  font-size: 70px;
  font-size: 7rem;
  line-height: 1;
  letter-spacing: 0.13em;
  margin-left: -14px;
  margin-top: -32px;
}
@media screen and (min-width: 768px) {
  .topHero-logo {
    position: absolute;
    bottom: -48px;
    left: -5%;
    font-size: 86px;
    font-size: 8.6rem;
    margin: 0;
  }
}
@media screen and (min-width: 991px) {
  .topHero-logo {
    font-size: 118px;
    font-size: 11.8rem;
  }
}

.topHero_news {
  margin: 80px var(--page-pad) 0;
  display: grid;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .topHero_news {
    margin: 16px var(--page-pad) 0 auto;
    width: 480px;
    grid-template-columns: 82px 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.topHero_news-label {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.55em;
}
.topHero_news-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 2;
  letter-spacing: 0.36em;
}
@media screen and (min-width: 768px) {
  .topHero_news-text {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.topHero_news-text span {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .topHero_news-text span {
    display: block;
    margin: 0 0 8px;
  }
}
.topHero_news-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 10px 7px;
}
@media screen and (min-width: 768px) {
  .topHero_news-button {
    grid-column: 1/-1;
    justify-self: end;
  }
}

/* ========================================================================== */
/* CONCEPT (about) ========= */
/* ========================================================================== */
.topAbout {
  position: relative;
  overflow: hidden;
}
.topAbout-inner {
  max-width: calc(1500px + var(--page-pad) * 2);
  padding: 0 var(--page-pad);
  margin: 0 auto;
}
.topAbout-title {
  position: relative;
  margin: 0;
  min-height: 120px;
}
@media screen and (min-width: 991px) {
  .topAbout-title {
    min-height: 200px;
  }
}
@media screen and (max-width: 480px) {
  .topAbout-title {
    min-height: 60px;
  }
}
.topAbout-kicker {
  position: absolute;
  bottom: 0;
  left: calc(var(--page-pad) * 0.5);
}
@media screen and (min-width: 991px) {
  .topAbout-kicker {
    top: 0;
  }
}
.topAbout-hairLabel, .topAbout-fabricTopLabel {
  position: absolute;
  top: 0;
  right: 5%;
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 21px;
  font-size: 2.1rem;
  letter-spacing: 0.55em;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .topAbout-hairLabel, .topAbout-fabricTopLabel {
    right: 0;
    top: 10px;
    font-size: 44px;
    font-size: 4.4rem;
  }
}
.topAbout-line {
  position: absolute;
  left: -8%;
  top: 170%;
  width: 41.6666666667vw;
  height: 1px;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .topAbout-line {
    -webkit-transform: rotate(-50deg);
            transform: rotate(-50deg);
    left: -4.1666666667vw;
    top: 120px;
    width: 50vw;
  }
}
@media screen and (max-width: 480px) {
  .topAbout-line {
    top: 160%;
    width: 70%;
  }
}
.topAbout .topAbout_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.topAbout .topAbout_img-lef {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 60px;
  padding-right: 40px;
}
@media screen and (max-width: 991px) {
  .topAbout .topAbout_img-lef {
    padding-right: 20px;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .topAbout .topAbout_img-lef {
    padding-right: 10px;
    gap: 10px;
  }
}
.topAbout .topAbout_img-lef img:first-child {
  width: calc(100% - var(--page-pad) * 1.5);
  margin-left: auto;
}
.topAbout .topAbout_img-right {
  width: 50%;
  position: relative;
  padding-right: calc(var(--page-pad));
}
@media screen and (max-width: 767px) {
  .topAbout .topAbout_img-right {
    padding-right: calc(var(--page-pad) * 0.5);
  }
}
.topAbout-fabricTop, .topAbout-fabricBottom, .topAbout-portrait {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.topAbout-fabricTopLabel {
  position: static;
}
.topAbout-portraitLabel {
  position: absolute;
  right: calc(4.1666666667vw - 0.5em);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Gantari", "Times New Roman", sans-serif;
  font-weight: 400;
  font-size: 64px;
  font-size: 6.4rem;
  line-height: 1;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #fff;
  font-weight: 100;
  letter-spacing: 0.3em;
}
@media screen and (min-width: 768px) {
  .topAbout-portraitLabel {
    letter-spacing: 0.2em;
    right: calc(4.1666666667vw - 0.2em);
    font-size: 90px;
    font-size: 9rem;
  }
}
@media screen and (min-width: 991px) {
  .topAbout-portraitLabel {
    font-size: 120px;
    font-size: 12rem;
  }
}
@media screen and (min-width: 1200px) {
  .topAbout-portraitLabel {
    font-size: 190px;
    font-size: 19rem;
  }
}
.topAbout-copy {
  position: relative;
  width: 100%;
  margin-top: 40px;
}
@media screen and (min-width: 991px) {
  .topAbout-copy {
    width: 50%;
    margin-left: auto;
    margin-top: -18vw;
  }
}
@media screen and (min-width: 1800px) {
  .topAbout-copy {
    margin-top: -320px;
  }
}
.topAbout-textJa {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 3.1;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  .topAbout-textJa {
    letter-spacing: 0.25em;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 2.8;
  }
}
@media screen and (max-width: 480px) {
  .topAbout-textJa {
    letter-spacing: 0.1em;
  }
}
.topAbout-textEn {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2.55;
  letter-spacing: 0.38em;
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .topAbout-textEn {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

/* ========================================================================== */
/* GALLERY ========= */
/* ========================================================================== */
.topGallery {
  position: relative;
  overflow: hidden;
  padding: 50px 0 30px;
}
@media screen and (min-width: 768px) {
  .topGallery {
    padding: 140px 0 30px;
  }
}
.topGallery-stage {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 45px;
  margin: 0 auto 90px;
  padding: 0 var(--page-pad);
}
@media screen and (min-width: 991px) {
  .topGallery-stage {
    grid-template-columns: repeat(12, 1fr);
    row-gap: 0;
    margin: 0 auto 280px;
    --col-w: calc((100vw - var(--page-pad) * 2) / 12);
  }
}
@media screen and (min-width: 1200px) {
  .topGallery-stage {
    margin: 0 auto 390px;
  }
}
.topGallery-watermark {
  position: absolute;
  top: 0;
  z-index: 2;
  pointer-events: none;
  font-family: "Gantari", "Times New Roman", sans-serif;
  font-weight: 400;
  font-size: 24vw;
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 0.8;
  white-space: nowrap;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.86);
  color: transparent;
  -webkit-transform: translateX(-0.1em);
          transform: translateX(-0.1em);
}
@media screen and (max-width: 480px) {
  .topGallery-watermark {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.86);
  }
}
.topGallery-item {
  position: relative;
  z-index: 1;
}
.topGallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.topGallery-item--top {
  width: 69.3333333333%;
  margin-left: auto;
}
@media screen and (min-width: 991px) {
  .topGallery-item--top {
    width: auto;
    margin: 0;
    grid-column: 8/-1;
    grid-row: 1;
    aspect-ratio: 540/310;
  }
}
.topGallery-item--top .topGallery-watermark {
  left: calc(-100vw + var(--page-pad) + (100vw - var(--page-pad) * 2) * 260 / 375 + var(--page-pad));
  top: -0.4em;
}
@media screen and (min-width: 991px) {
  .topGallery-item--top .topGallery-watermark {
    left: calc(-7 * var(--col-w) - var(--page-pad));
  }
}
.topGallery-item--left {
  width: calc(48% + 30px);
  padding-left: calc(var(--page-pad));
}
@media screen and (min-width: 991px) {
  .topGallery-item--left {
    width: auto;
    grid-column: 2/6;
    grid-row: 2/4;
    aspect-ratio: 380/640;
    margin-top: -130px;
    padding-left: 0;
  }
}
.topGallery-item--left .topGallery-watermark {
  left: calc(-1 * var(--page-pad) + var(--page-pad));
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 991px) {
  .topGallery-item--left .topGallery-watermark {
    left: calc(-1 * var(--col-w) - var(--page-pad));
  }
}
.topGallery-item--right {
  width: calc(58.6666666667% + 20px);
  margin-left: auto;
  padding-right: calc(var(--page-pad) * 0.5);
}
@media screen and (min-width: 991px) {
  .topGallery-item--right {
    width: auto;
    margin: 0;
    grid-column: 7/12;
    grid-row: 3/5;
    aspect-ratio: 490/790;
    padding-right: 0;
  }
}
.topGallery-item--right .topGallery-watermark {
  left: calc(-100vw + var(--page-pad) + (100vw - var(--page-pad) * 2) * 220 / 375 + var(--page-pad));
  top: 50%;
}
@media screen and (min-width: 991px) {
  .topGallery-item--right .topGallery-watermark {
    left: calc(-6 * var(--col-w) - var(--page-pad));
    top: calc(100% - 0.4em);
  }
}
.topGallery-caption {
  position: absolute;
  top: 0;
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 7px;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  line-height: 1.7;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .topGallery-caption {
    font-size: 11px;
    font-size: 1.1rem;
    letter-spacing: 0.45em;
  }
}
@media screen and (min-width: 991px) {
  .topGallery-caption {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.topGallery-caption span {
  display: block;
  font-size: 11px;
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  .topGallery-caption span {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 991px) {
  .topGallery-caption span {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
.topGallery-caption strong {
  display: inline-block;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .topGallery-caption strong {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 991px) {
  .topGallery-caption strong {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
.topGallery-caption.is-left {
  left: 0;
}
@media screen and (min-width: 991px) {
  .topGallery-caption.is-left {
    left: -80px;
  }
}
.topGallery-caption.is-right {
  right: 0px;
}
@media screen and (min-width: 991px) {
  .topGallery-caption.is-right {
    right: -52px;
  }
}
.topGallery-copy {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 30px;
  max-width: calc(1120px + var(--page-pad) * 2);
}
.topGallery-copyLead {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 3.2;
  letter-spacing: 0.42em;
}
@media screen and (min-width: 768px) {
  .topGallery-copyLead {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.topGallery-copyTitle {
  margin-top: 24px;
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-weight: 200;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.34em;
}
@media screen and (min-width: 768px) {
  .topGallery-copyTitle {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

/* ========================================================================== */
/* PHOTO BG ========= */
/* ========================================================================== */
.topPhotoBg {
  margin-bottom: 100px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .topPhotoBg {
    margin-bottom: 0;
  }
}
.topPhotoBg-image {
  width: 100%;
}

/* ========================================================================== */
/* SALON ========= */
/* ========================================================================== */
.topSalon {
  overflow: hidden;
}
.topSalon-inner {
  padding: 0 var(--page-pad);
}
.topSalon-title {
  margin-bottom: 50px;
  text-align: right;
  position: relative;
}
@media screen and (min-width: 991px) {
  .topSalon-title {
    margin-bottom: 96px;
    border-bottom: 0;
    padding-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.topSalon-titleLine {
  display: block;
  width: 83.3333333333vw;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
  right: calc(var(--page-pad) * -1);
}
@media screen and (min-width: 991px) {
  .topSalon-titleLine {
    width: 50vw;
  }
}
.topSalon-titleText {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: 0.6em;
}
@media screen and (min-width: 768px) {
  .topSalon-titleText {
    margin-left: 36px;
    font-size: 54px;
    font-size: 5.4rem;
  }
}

.salon_list {
  display: grid;
  gap: 70px;
}
@media screen and (min-width: 991px) {
  .salon_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media screen and (min-width: 1500px) {
  .salon_list {
    gap: 56px;
    padding: 0 var(--page-pad);
  }
}

@media screen and (min-width: 991px) {
  .salon_one:nth-child(2) {
    margin-top: 160px;
  }
}
@media screen and (min-width: 991px) {
  .salon_one:last-child {
    margin-top: 288px;
  }
}
.salon_one-title {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.55em;
}
.salon_one-titleEn {
  margin-top: 20px;
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.2em;
  white-space: pre-line;
}
@media screen and (max-width: 480px) {
  .salon_one-titleEn {
    margin-top: 10px;
  }
}
.salon_one-img {
  margin-top: 28px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 280/150;
}
@media screen and (min-width: 991px) {
  .salon_one-img {
    aspect-ratio: 280/540;
  }
}
@media screen and (max-width: 480px) {
  .salon_one-img {
    margin-top: 20px;
  }
}
.salon_one-info {
  margin-top: 28px;
  display: grid;
  gap: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.9;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 480px) {
  .salon_one-info {
    gap: 2px;
    margin-top: 16px;
  }
}
.salon_one-info h3 {
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: normal;
}
.salon_one-tel {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  letter-spacing: 0.26em;
}
.salon_one-address {
  line-height: 1.75;
  margin-top: 10px;
}
@media screen and (max-width: 480px) {
  .salon_one-address {
    margin-top: 4px;
  }
}
.salon_one-button {
  margin-top: 32px;
  padding: 5px 16px;
}
@media screen and (max-width: 480px) {
  .salon_one-button {
    margin-top: 20px;
  }
}

/* ========================================================================== */
/* RECRUIT ========= */
/* ========================================================================== */
.topRecruit {
  overflow: hidden;
  padding: 0 0 150px;
}
@media screen and (min-width: 768px) {
  .topRecruit {
    padding: 0 0 300px;
  }
}
.topRecruit-heading {
  margin-bottom: 50px;
  position: relative;
  padding-left: var(--page-pad);
}
@media screen and (min-width: 991px) {
  .topRecruit-heading {
    margin-bottom: 96px;
  }
}
.topRecruit-headingText {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: 0.6em;
}
@media screen and (min-width: 768px) {
  .topRecruit-headingText {
    font-size: 54px;
    font-size: 5.4rem;
  }
}
.topRecruit-headingLine {
  display: block;
  width: 83.3333333333vw;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 991px) {
  .topRecruit-headingLine {
    width: 50vw;
  }
}
.topRecruit-body {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 0 var(--page-pad);
}
@media screen and (min-width: 991px) {
  .topRecruit-body {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 96px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0;
  }
}
.topRecruit-img {
  width: 100%;
  aspect-ratio: 800/410;
  -o-object-fit: cover;
     object-fit: cover;
}
.topRecruit-textWrap {
  text-align: center;
  text-align: right;
}
@media screen and (min-width: 991px) {
  .topRecruit-textWrap {
    padding-right: var(--page-pad);
  }
}
.topRecruit-textEn {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.6;
  letter-spacing: 0.32em;
}
@media screen and (min-width: 768px) {
  .topRecruit-textEn {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 991px) {
  .topRecruit-textEn {
    font-size: clamp(16px, 1.45vw, 24px);
    line-height: 2.5;
  }
}
@media screen and (max-width: 480px) {
  .topRecruit-textEn {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.topRecruit-textJa {
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.6;
  letter-spacing: 0.24em;
}
@media screen and (min-width: 768px) {
  .topRecruit-textJa {
    margin-top: 48px;
  }
}
@media screen and (min-width: 991px) {
  .topRecruit-textJa {
    padding-right: var(--page-pad);
  }
}
@media screen and (max-width: 480px) {
  .topRecruit-textJa {
    font-size: 13px;
    font-size: 1.3rem;
    letter-spacing: 0.5em;
  }
}
.topRecruit-button {
  margin-top: 40px;
  padding: 7px 32px;
  letter-spacing: 0.18em;
  margin-right: 52px;
}
@media screen and (min-width: 991px) {
  .topRecruit-button {
    margin-right: calc(var(--page-pad) + 52px);
  }
}

/* ========================================================================== */
/* CONCEPT PAGE ========= */
/* ========================================================================== */
.conceptPage img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.conceptPage .concept_section,
.conceptPage .concept_intro,
.conceptPage .concept_navi {
  scroll-margin-top: 100px;
}
.conceptPage {
  /* ========================================================================== */
  /* INTRO ========= */
  /* ========================================================================== */
}
.conceptPage .concept_intro {
  display: grid;
  gap: 60px;
  margin-bottom: 220px;
}
@media screen and (max-width: 767px) {
  .conceptPage .concept_intro {
    gap: 50px;
    margin-bottom: 120px;
  }
}
@media screen and (min-width: 991px) {
  .conceptPage .concept_intro {
    grid-template-columns: 55fr 45fr;
    gap: 80px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .conceptPage .concept_intro {
    gap: 120px;
  }
}
.conceptPage .concept_intro-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (min-width: 991px) {
  .conceptPage .concept_intro-list {
    gap: 28px;
  }
}
@media screen and (max-width: 480px) {
  .conceptPage .concept_intro-list {
    gap: 10px;
  }
}
.conceptPage .concept_intro-list li {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.conceptPage .concept_intro-list li span {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #d8d8d3;
}
.conceptPage .concept_intro-list li:nth-child(2n) {
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
@media screen and (max-width: 767px) {
  .conceptPage .concept_intro-list li:nth-child(2n) {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
.conceptPage .concept_intro-comment {
  position: relative;
  padding-left: 0;
}
@media screen and (min-width: 991px) {
  .conceptPage .concept_intro-comment {
    padding-left: 30px;
  }
}
@media screen and (min-width: 991px) {
  .conceptPage .concept_intro-comment::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: #000;
    opacity: 0.35;
  }
}
.conceptPage .concept_intro-commentHeading {
  font-family: "Gantari", sans-serif;
  font-weight: 200;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.35;
  letter-spacing: 0.28em;
  color: #000;
  margin: 0 0 40px;
  text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
  .conceptPage .concept_intro-commentHeading {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .conceptPage .concept_intro-commentHeading {
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 28px;
    letter-spacing: 0.2em;
  }
}
@media screen and (max-width: 480px) {
  .conceptPage .concept_intro-commentHeading {
    font-size: 20px;
    font-size: 2rem;
  }
}
.conceptPage .concept_intro-commentHeading span {
  display: inline-block;
  font-family: "Gantari", sans-serif;
  font-weight: 100;
  font-style: italic;
  color: rgba(0, 0, 0, 0.55);
  letter-spacing: 0.18em;
  margin: 0 0.15em;
}
.conceptPage .concept_intro-commentText {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.4;
  letter-spacing: 0.12em;
  color: #000;
  margin: 0;
  max-width: 38em;
}
@media screen and (min-width: 768px) {
  .conceptPage .concept_intro-commentText {
    line-height: 2.5;
    letter-spacing: 0.15em;
  }
}
@media screen and (max-width: 767px) {
  .conceptPage .concept_intro-commentText {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 2.1;
  }
}
.conceptPage {
  /* ========================================================================== */
  /* NAVI ========= */
  /* ========================================================================== */
}
.conceptPage .concept_navi {
  margin-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .conceptPage .concept_navi {
    margin-bottom: 110px;
  }
}
.conceptPage .concept_navi-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}
@media screen and (min-width: 768px) {
  .conceptPage .concept_navi-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.conceptPage .concept_navi-list li {
  margin: 0;
  padding: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .conceptPage .concept_navi-list li::after {
    content: "";
    position: absolute;
    top: 22%;
    bottom: 22%;
    right: 0;
    width: 1px;
    background: rgba(0, 0, 0, 0.35);
  }
  .conceptPage .concept_navi-list li:last-child::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .conceptPage .concept_navi-list li + li {
    border-top: 1px solid rgba(0, 0, 0, 0.25);
  }
}
.conceptPage .concept_navi-list li a {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 10px;
  padding: 36px 20px;
  color: #000;
  text-align: center;
  -webkit-transition: color 0.3s ease, background 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease;
}
@media screen and (max-width: 767px) {
  .conceptPage .concept_navi-list li a {
    padding: 24px 16px;
    gap: 6px;
  }
}
.conceptPage .concept_navi-list li a:hover, .conceptPage .concept_navi-list li a:focus-visible {
  background: rgba(0, 0, 0, 0.04);
  opacity: 1;
}
.conceptPage .concept_navi-list li a .en {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.45em;
  line-height: 1;
  text-indent: 0.45em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .conceptPage .concept_navi-list li a .en {
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.35em;
    text-indent: 0.35em;
  }
}
.conceptPage .concept_navi-list li a .jp,
.conceptPage .concept_navi-list li a .ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .conceptPage .concept_navi-list li a .jp,
  .conceptPage .concept_navi-list li a .ja {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.conceptPage {
  /* ========================================================================== */
  /* CONCEPT SECTIONS ========= */
  /* ========================================================================== */
}
.conceptPage .concept_section {
  margin-bottom: 220px;
  scroll-margin-top: 120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .conceptPage .concept_section {
    margin-bottom: 130px;
    scroll-margin-top: 80px;
  }
}
.conceptPage .concept_section:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 991px) {
  .conceptPage .concept_section:nth-of-type(even) .concept_box > .concept_box-img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .conceptPage .concept_section:nth-of-type(even) .concept_box > .concept_box-info {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.conceptPage .concept_box {
  display: grid;
  gap: 40px 60px;
}
@media screen and (min-width: 991px) {
  .conceptPage .concept_box {
    grid-template-columns: 1fr 1fr;
    gap: 50px 80px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .conceptPage .concept_box {
    gap: 50px 120px;
  }
}
.conceptPage .concept_box-img {
  margin: 0;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 5/4;
  background: #d8d8d3;
}
@media screen and (min-width: 991px) {
  .conceptPage .concept_box-img {
    aspect-ratio: 4/3;
  }
}
.conceptPage .concept_box-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.conceptPage .concept_box-info {
  position: relative;
}
.conceptPage .concept_box-infoTag {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: 0.55em;
  line-height: 1;
  color: #000;
  margin-bottom: 28px;
  padding-left: 56px;
  position: relative;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .conceptPage .concept_box-infoTag {
    font-size: 11px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-left: 40px;
  }
}
.conceptPage .concept_box-infoTag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 1px;
  background: #000;
}
@media screen and (max-width: 767px) {
  .conceptPage .concept_box-infoTag::before {
    width: 28px;
  }
}
.conceptPage .concept_box-infoHeading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.3em;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.12em;
  color: #000;
  margin: 0 0 32px;
}
@media screen and (max-width: 1200px) {
  .conceptPage .concept_box-infoHeading {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .conceptPage .concept_box-infoHeading {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.65;
    margin-bottom: 24px;
    letter-spacing: 0.08em;
  }
}
@media screen and (max-width: 480px) {
  .conceptPage .concept_box-infoHeading {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.conceptPage .concept_box-infoText {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.3;
  letter-spacing: 0.12em;
  color: #000;
  margin: 0;
  max-width: 36em;
}
@media screen and (min-width: 768px) {
  .conceptPage .concept_box-infoText {
    line-height: 2.4;
    letter-spacing: 0.14em;
  }
}
@media screen and (max-width: 767px) {
  .conceptPage .concept_box-infoText {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 2;
  }
}
.conceptPage {
  /* ========================================================================== */
  /* COLOR LIST ========= */
  /* ========================================================================== */
}
.conceptPage .concept_color-list {
  display: grid;
  gap: 0;
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .conceptPage .concept_color-list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 110px;
  }
}
.conceptPage .concept_color-list li {
  margin: 0;
  padding: 36px 0 36px;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  position: relative;
}
@media screen and (min-width: 768px) {
  .conceptPage .concept_color-list li {
    padding: 40px 36px;
  }
}
@media screen and (min-width: 768px) {
  .conceptPage .concept_color-list li:nth-child(2n-1) {
    padding-left: 0;
  }
  .conceptPage .concept_color-list li:nth-child(2n-1)::after {
    content: "";
    position: absolute;
    top: 10%;
    bottom: 10%;
    right: 0;
    width: 1px;
    background: rgba(0, 0, 0, 0.2);
  }
  .conceptPage .concept_color-list li:nth-child(2n) {
    padding-right: 0;
  }
  .conceptPage .concept_color-list li:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  }
}
@media screen and (max-width: 767px) {
  .conceptPage .concept_color-list li:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  }
}
.conceptPage .concept_color-listHeading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.3em;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.55;
  margin: 0 0 16px;
  color: #000;
}
@media screen and (max-width: 767px) {
  .conceptPage .concept_color-listHeading {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 12px;
    letter-spacing: 0.08em;
  }
}
@media screen and (max-width: 480px) {
  .conceptPage .concept_color-listHeading br {
    display: none;
  }
}
.conceptPage .concept_color-listText {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 2.1;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.85);
  margin: 0;
}
@media screen and (max-width: 767px) {
  .conceptPage .concept_color-listText {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.95;
  }
}
.conceptPage {
  /* ========================================================================== */
  /* CARE 01 - description callout ========= */
  /* ========================================================================== */
}
.conceptPage .care_description {
  margin-top: 90px;
  padding: 60px var(--page-pad);
  border-top: 1px solid rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .conceptPage .care_description {
    margin-top: 60px;
    padding: 40px 20px;
  }
}
.conceptPage .care_description-heading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.3em;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.7;
  margin: 0 0 24px;
  color: #000;
}
@media screen and (max-width: 767px) {
  .conceptPage .care_description-heading {
    font-size: 17px;
    font-size: 1.7rem;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
  }
}
.conceptPage .care_description-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 2.2;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.85);
  margin: 0;
}
@media screen and (max-width: 767px) {
  .conceptPage .care_description-text {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 2;
  }
}
.conceptPage {
  /* ========================================================================== */
  /* CARE 02 - sub-points ========= */
  /* ========================================================================== */
}
.conceptPage .concept_box-pointWrap {
  display: grid;
  gap: 40px;
  margin-top: 16px;
}
@media screen and (min-width: 991px) {
  .conceptPage .concept_box-pointWrap {
    gap: 48px;
  }
}
.conceptPage .concept_box-point {
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .conceptPage .concept_box-point {
    padding-top: 24px;
  }
}
.conceptPage .concept_box-pointHeading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.3em;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.55;
  margin: 0 0 16px;
  color: #000;
}
@media screen and (max-width: 767px) {
  .conceptPage .concept_box-pointHeading {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 12px;
    letter-spacing: 0.06em;
  }
}
.conceptPage .concept_box-pointText {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 2.15;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.85);
  margin: 0;
}
@media screen and (min-width: 768px) {
  .conceptPage .concept_box-pointText {
    line-height: 2.25;
    letter-spacing: 0.12em;
  }
}
@media screen and (max-width: 767px) {
  .conceptPage .concept_box-pointText {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 2;
  }
}
.conceptPage .concept_box-info:has(.concept_box-pointWrap) .concept_box-infoHeading {
  margin-bottom: 16px;
}
.conceptPage {
  /* ========================================================================== */
  /* Reduced motion ========= */
  /* ========================================================================== */
}
@media (prefers-reduced-motion: reduce) {
  .conceptPage .concept_navi-list li a {
    -webkit-transition: none;
    transition: none;
  }
}

/* ========================================================================== */
/* SALON 詳細（single-salon_list.php） ========= */
/* ========================================================================== */
.salonListPage .lowerPage_nav .pageBody-inner {
  max-width: calc(1200px + var(--page-pad) * 2);
}
.salonListPage .pageBody-inner {
  max-width: 100%;
}

/* ========================================================================== */
/* 1. PAGE HEADER ========= */
/* ========================================================================== */
.salonOnePage_header {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding: 160px var(--page-pad) 80px;
  max-width: calc(1300px + var(--page-pad) * 2);
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .salonOnePage_header {
    grid-template-columns: 1fr;
    row-gap: 18px;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    padding: 110px var(--page-pad) 50px;
  }
}
.salonOnePage_header-en {
  grid-column: 1;
  grid-row: 1;
  font-family: "Gantari", sans-serif;
  font-weight: 200;
  font-weight: 200;
  font-size: clamp(42px, 9vw, 120px);
  letter-spacing: 0.04em;
  line-height: 0.92;
  text-indent: 0;
  color: #000;
  text-transform: uppercase;
  margin: 0;
}
.salonOnePage_header-en::before {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: #000;
  opacity: 0.5;
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .salonOnePage_header-en::before {
    width: 40px;
    margin-bottom: 22px;
  }
}
.salonOnePage_header-title {
  grid-column: 1;
  grid-row: 2;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.3em;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  line-height: 1.3;
  color: rgba(0, 0, 0, 0.85);
  margin: 28px 0 0;
  max-width: 32ch;
}
@media screen and (max-width: 767px) {
  .salonOnePage_header-title {
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.2em;
    margin-top: 0;
  }
}
.salonOnePage_header-sub {
  grid-column: 2;
  grid-row: 1/3;
  align-self: end;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.55em;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1;
  margin: 0;
  padding-bottom: 6px;
}
@media screen and (max-width: 767px) {
  .salonOnePage_header-sub {
    grid-column: 1;
    grid-row: auto;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    font-size: 11px;
    font-size: 1.1rem;
    letter-spacing: 0.35em;
    padding-bottom: 0;
    margin-top: 0;
  }
}

/* ========================================================================== */
/* 2. KEY VISUAL ========= */
/* ========================================================================== */
.salon_keyvisual {
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .salon_keyvisual {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .salon_keyvisual .pageBody-inner {
    padding: 0 !important;
  }
}
.salon_keyvisual img,
.salon_keyvisual video {
  display: block;
  width: 100%;
  aspect-ratio: 89/55;
  -o-object-fit: cover;
     object-fit: cover;
  background: #d8d8d3;
}
@media screen and (max-width: 767px) {
  .salon_keyvisual img,
  .salon_keyvisual video {
    aspect-ratio: 4/3;
  }
}

/* ========================================================================== */
/* 3. WRAPPER + SECTION ========= */
/* ========================================================================== */
.salonOnePage .pageBody-inner {
  max-width: calc(1200px + var(--page-pad) * 2);
  padding: 0 var(--page-pad);
  margin: 0 auto;
}
.salonOnePage_section {
  margin-bottom: 220px;
}
@media screen and (max-width: 767px) {
  .salonOnePage_section {
    margin-bottom: 132px;
  }
}
.salonOnePage_section {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .salonOnePage_section {
    padding-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .salonOnePage_section {
    padding-top: 40px;
  }
}
.salonOnePage_section-heading {
  margin-bottom: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 24px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .salonOnePage_section-heading {
    margin-bottom: 50px;
    gap: 16px;
  }
}
.salonOnePage_section-heading::before {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: #000;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform: translateY(-0.55em);
          transform: translateY(-0.55em);
  opacity: 0.55;
}
@media screen and (max-width: 767px) {
  .salonOnePage_section-heading::before {
    width: 40px;
  }
}
.salonOnePage_section-heading span {
  display: block;
}
.salonOnePage_section-heading span.en {
  font-family: "Gantari", sans-serif;
  font-weight: 200;
  font-weight: 200;
  font-size: clamp(26px, 4.5vw, 56px);
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  color: #000;
}
.salonOnePage-button {
  max-width: calc(820px + var(--page-pad) * 2);
  padding: 0 var(--page-pad);
  margin: 0 auto !important;
}
.salonOnePage-button:not(.salon_lineButton) a {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  background: #000;
  color: #fff;
  padding: 40px 48px;
  position: relative;
  -webkit-transition: background 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: background 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media screen and (max-width: 767px) {
  .salonOnePage-button:not(.salon_lineButton) a {
    padding: 28px 24px;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
.salonOnePage-button:not(.salon_lineButton) a::after {
  content: "";
  grid-column: 2;
  grid-row: 1/3;
  align-self: center;
  width: 40px;
  height: 1px;
  background: currentColor;
  -webkit-transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media screen and (max-width: 767px) {
  .salonOnePage-button:not(.salon_lineButton) a::after {
    width: 28px;
  }
}
.salonOnePage-button:not(.salon_lineButton) a:hover, .salonOnePage-button:not(.salon_lineButton) a:focus-visible {
  background: #3a3a3a;
  opacity: 1;
}
.salonOnePage-button:not(.salon_lineButton) a:hover::after, .salonOnePage-button:not(.salon_lineButton) a:focus-visible::after {
  width: 64px;
}
@media screen and (max-width: 767px) {
  .salonOnePage-button:not(.salon_lineButton) a:hover::after, .salonOnePage-button:not(.salon_lineButton) a:focus-visible::after {
    width: 40px;
  }
}
.salonOnePage-button:not(.salon_lineButton) a span.en {
  grid-column: 1;
  grid-row: 1;
  font-family: "Gantari", sans-serif;
  font-weight: 200;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 200;
  letter-spacing: 0.25em;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 10px;
}
@media screen and (max-width: 767px) {
  .salonOnePage-button:not(.salon_lineButton) a span.en {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.18em;
    margin-bottom: 6px;
  }
}
.salonOnePage-button:not(.salon_lineButton) a span.ja {
  grid-column: 1;
  grid-row: 2;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: inherit;
  opacity: 0.75;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .salonOnePage-button:not(.salon_lineButton) a span.ja {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/* ========================================================================== */
/* 4. INFO LIST ========= */
/* ========================================================================== */
.salon_info-list {
  max-width: 100%;
  margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.salon_info-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  padding: 28px 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .salon_info-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 22px 0;
  }
}
.salon_info-label {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
  padding-top: 0.15em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .salon_info-label {
    font-size: 11px;
    font-size: 1.1rem;
    padding-top: 0;
  }
}
.salon_info-text {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
  max-width: 50ch;
}
.salon_info-text a {
  color: #000;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.salon_info-text a:hover, .salon_info-text a:focus-visible {
  opacity: 0.65;
}
.salon_info-sub {
  margin-top: 10px;
  font-size: 12px;
  font-size: 1.2rem;
}
.salon_info-sub a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ========================================================================== */
/* 5. MENU ========= */
/* ========================================================================== */
#salon_menu .salon_menu-wrap {
  display: block;
}
#salon_menu .salon_menu {
  width: 100%;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  #salon_menu .salon_menu {
    margin-top: 60px;
  }
}
#salon_menu .salon_menu:first-child {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  #salon_menu .salon_menu:first-child {
    margin-top: 45px;
  }
}
#salon_menu .salon_menu > header {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  #salon_menu .salon_menu > header {
    margin-bottom: 24px;
  }
}
#salon_menu .salon_menu-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 18px 24px;
  padding: 0 0 16px !important;
  margin: 0 !important;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
#salon_menu .salon_menu-title span.en {
  font-family: "Gantari", sans-serif;
  font-weight: 200;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 200;
  letter-spacing: 0.15em;
  line-height: 1;
  text-indent: 0;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  #salon_menu .salon_menu-title span.en {
    font-size: 22px;
    font-size: 2.2rem;
    letter-spacing: 0.1em;
  }
}
#salon_menu .salon_menu-title small {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.65);
  letter-spacing: 0.08em;
  margin-top: 4px;
}
@media screen and (max-width: 480px) {
  #salon_menu .salon_menu-title small {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
#salon_menu .salon_menu-caution {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: 0.06em;
  margin: 20px 0 0;
}
@media screen and (max-width: 767px) {
  #salon_menu .salon_menu-caution {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
#salon_menu .salon_menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 8.3333333333vw;
     -moz-column-gap: 8.3333333333vw;
          column-gap: 8.3333333333vw;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  #salon_menu .salon_menu-list {
    grid-template-columns: 1fr;
  }
}
#salon_menu .salon_menu-list li {
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
#salon_menu .salon_menu-list table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
#salon_menu .salon_menu-list table th {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.3em;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: left;
  padding: 0;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  #salon_menu .salon_menu-list table th {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
#salon_menu .salon_menu-list table td {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: right;
  white-space: nowrap;
  padding: 0;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  #salon_menu .salon_menu-list table td {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
#salon_menu .salon_menu-list table td.menu_info {
  text-align: left;
  white-space: normal;
  padding-top: 6px;
}
#salon_menu .salon_menu-list table td.menu_info small {
  display: block;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: normal;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.55);
  letter-spacing: 0.04em;
}

/* ========================================================================== */
/* 6. MAP ========= */
/* ========================================================================== */
.salon_map-info iframe {
  width: 100%;
  aspect-ratio: 89/40;
  height: auto;
  vertical-align: bottom;
  border: 0;
}
@media screen and (max-width: 767px) {
  .salon_map-info iframe {
    aspect-ratio: 4/3;
  }
}
.salon_map-link {
  margin-top: 30px;
}
.salon_map-link a {
  margin: 0 auto;
}

/* ========================================================================== */
/* 7. LINE BUTTON ========= */
/* ========================================================================== */
.salonOnePage-button.salon_lineButton {
  margin-top: 40px !important;
  max-width: calc(480px + var(--page-pad) * 2);
}
@media screen and (max-width: 767px) {
  .salonOnePage-button.salon_lineButton {
    margin-top: 20px !important;
  }
}
.salonOnePage-button.salon_lineButton a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  background: #89b37c;
  color: #fff;
  padding: 32px 0;
}
@media screen and (max-width: 767px) {
  .salonOnePage-button.salon_lineButton a {
    padding: 26px 0;
  }
}
.salonOnePage-button.salon_lineButton a:hover, .salonOnePage-button.salon_lineButton a:focus-visible {
  background: #7aa46e;
  color: #fff;
  opacity: 1;
}
.salonOnePage-button.salon_lineButton a span.ja {
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.14em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .salonOnePage-button.salon_lineButton a span.ja {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.salonOnePage-button.salon_lineButton a svg {
  width: 26px;
  height: 26px;
}
@media screen and (max-width: 767px) {
  .salonOnePage-button.salon_lineButton a svg {
    width: 22px;
    height: 22px;
  }
}
.salonOnePage-button.salon_lineButton a svg g > path,
.salonOnePage-button.salon_lineButton a svg g g > g > g + g > path {
  fill: #fff;
}
.salonOnePage-button.salon_lineButton a svg g g > g > g > path {
  fill: #89b37c;
}

/* ========================================================================== */
/* 8. Reduced motion ========= */
/* ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .salonOnePage-button a,
  .salonOnePage-button a::after,
  .salon_info-text a {
    -webkit-transition: none;
    transition: none;
  }
}
.menuPage .pageBody-inner {
  max-width: calc(1200px + 16.6666666667vw);
}

.salon_menu-caution {
  text-align: center;
  margin-bottom: 60px;
}
.salon_menu-caution small {
  display: block;
  margin-top: 40px;
  font-size: 12px;
  font-size: 1.2rem;
}
.salon_menu-section {
  margin-bottom: 260px;
}
@media screen and (max-width: 767px) {
  .salon_menu-section {
    margin-bottom: 120px;
  }
}
.salon_menu-section::last-child {
  margin-bottom: 0;
}
.salon_menu-sectionHeading {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .salon_menu-sectionHeading {
    margin-bottom: 30px;
  }
}
.salon_menu-sectionHeading span {
  display: block;
}
.salon_menu-sectionHeading span.en {
  color: #ffffff;
  font-size: 32px;
  font-size: 3.2rem;
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .salon_menu-sectionHeading span.en {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.salon_menu-sectionHeading span.ja {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
}
.salon_menu-sectionNavi {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .salon_menu-sectionNavi {
    margin-bottom: 60px;
  }
}
.salon_menu-sectionNavi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .salon_menu-sectionNavi ul {
    gap: 10px;
  }
}
.salon_menu-sectionNavi ul li {
  width: calc(25% - 22.5px);
}
@media screen and (max-width: 991px) {
  .salon_menu-sectionNavi ul li {
    width: calc(25% - 7.5px);
  }
}
@media screen and (max-width: 767px) {
  .salon_menu-sectionNavi ul li {
    width: calc(50% - 5px);
  }
}
.salon_menu-sectionNavi ul li a {
  display: block;
  text-align: center;
  color: #000;
  font-size: 16px;
  font-size: 1.6rem;
  border: 1px solid;
  padding: 8px 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .salon_menu-sectionNavi ul li a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .salon_menu-sectionNavi ul li a {
    padding: 4px 0;
  }
}
.salon_menu-sectionNavi ul li a:hover {
  background: #ffffff;
  color: #fff;
}
.salon_menu-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 110px 120px;
}
.salon_menu-wrap .salon_menu {
  width: calc(50% - 60px);
}
@media screen and (max-width: 991px) {
  .salon_menu-wrap .salon_menu {
    width: 100%;
  }
}
.salon_menu-wrap .salon_menu-title {
  border-bottom: 1px solid;
  padding-bottom: 10px;
  margin-bottom: 25px;
  text-align: left;
  padding-left: 0.5em;
}
.salon_menu-wrap .salon_menu-title span.en {
  font-size: 35px;
  font-size: 3.5rem;
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-weight: 500;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1200px) {
  .salon_menu-wrap .salon_menu-title span.en {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 480px) {
  .salon_menu-wrap .salon_menu-title span.en {
    font-size: 20px;
    font-size: 2rem;
  }
}
.salon_menu-wrap .salon_menu-title small.ja {
  font-size: 20px;
  font-size: 2rem;
  font-weight: normal;
}
@media screen and (max-width: 1200px) {
  .salon_menu-wrap .salon_menu-title small.ja {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.salon_menu-wrap .salon_menu .salon_menu-sb {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  color: #555;
  letter-spacing: 0.2em;
}
.salon_menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.salon_menu-list li {
  width: 100%;
  border-bottom: 1px solid;
  padding-bottom: 20px;
}
.salon_menu-list table {
  width: 100%;
  border-collapse: collapse;
}
.salon_menu-list table tr {
  line-height: 1;
}
.salon_menu-list table tr th {
  text-align: left;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.75;
}
@media screen and (max-width: 991px) {
  .salon_menu-list table tr th {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.salon_menu-list table tr th span {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
}
.salon_menu-list table tr th span:before, .salon_menu-list table tr th span:after {
  display: inline-block;
}
.salon_menu-list table tr th span:before {
  content: "（";
}
.salon_menu-list table tr th span:after {
  content: "）";
}
.salon_menu-list table tr td {
  text-align: right;
  vertical-align: top;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.45;
}
@media screen and (max-width: 991px) {
  .salon_menu-list table tr td {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.salon_menu-list table tr .menu_info small {
  display: block;
  text-align: justify;
  font-weight: normal;
  font-size: 12px;
  font-size: 1.2rem;
  padding-top: 10px;
  color: #8e8e8e;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .salon_menu-list table tr .menu_info small {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.salon_menu-list table tr .menu_info small span {
  display: block;
  margin-top: 20px;
  color: #000;
  font-weight: bold;
}
.salon_menu-list table tr .menu_info small .btn {
  margin: 8px auto 0 0;
}
.salon_menu-list table tr .menu_info small a {
  color: blue;
  text-decoration: underline;
}

.staff_area-inner {
  margin-bottom: 100px;
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .staff_area-inner {
    padding-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .staff_area-inner {
    margin-bottom: 40px;
  }
}
.staff_area-inner:first-child {
  padding-top: 0;
}
.staff_area-inner::last-child {
  margin-bottom: 0;
}
.staff_area-heading {
  padding-bottom: 16px;
  border-bottom: 1px solid;
}
@media screen and (max-width: 767px) {
  .staff_area-heading {
    padding-bottom: 12px;
  }
}
.staff_area-heading .ja {
  display: block;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .staff_area-heading .ja {
    font-size: 20px;
    font-size: 2rem;
  }
}
.staff_area .satff_wrap {
  max-width: calc(1200px + 16.6666666667vw);
  padding: 0 8.3333333333vw;
  margin: 0 auto;
}
.staff_area .staff_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px 30px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .staff_area .staff_list {
    margin-top: 45px;
  }
}
@media screen and (max-width: 480px) {
  .staff_area .staff_list {
    gap: 30px 15px;
  }
}
.staff_area .staff_list li {
  width: calc(25% - 22.5px);
}
@media screen and (max-width: 991px) {
  .staff_area .staff_list li {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 480px) {
  .staff_area .staff_list li {
    width: calc(50% - 7.5px);
  }
}
.staff_area .staff_list-infoInner {
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 991px) {
  .staff_area .staff_list-infoInner {
    margin-bottom: 10px;
  }
}
.staff_area .staff_list-img {
  margin-bottom: 10px;
  line-height: 0;
}
.staff_area .staff_list-img a {
  display: block;
}
.staff_area .staff_list-img img {
  line-height: 1;
  aspect-ratio: 1/1.4838;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 0;
     object-position: center 0;
}
.staff_area .staff_list-img img.no-image {
  -o-object-position: center center;
     object-position: center center;
}
.staff_area .staff_list-position {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 5px;
}
.staff_area .staff_list-name span {
  display: block;
}
.staff_area .staff_list-name span.ja {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 0.2em;
}
.staff_area .staff_list-name span.en {
  font-size: 10px;
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0.3em;
  color: #555;
  text-transform: uppercase;
}
.staff_area .staff_list-read {
  color: #555;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .staff_area .staff_list-read {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.staff_area .staff_list-insta {
  position: absolute;
  top: calc(50% + 10px);
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.staff_area .staff_list-insta svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #000;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media screen and (max-width: 480px) {
  .staff_area .staff_list-insta svg {
    width: 18px;
    height: 18px;
  }
}
.staff_area .staff_list-insta svg path {
  fill: #555;
}
.staff_area .staff_list-button a {
  display: block;
  border: 1px solid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 8px;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .staff_area .staff_list-button a {
    text-align: left;
    padding-left: 10px;
  }
}
.staff_area .staff_list-button a:hover {
  background: #000;
  color: #fff;
}
.staff_area .staff_list-button a span.ja {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .staff_area .staff_list-button a span.ja {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.staff_area .staff_list-caution {
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #d32f2f;
  margin-top: 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .staff_area .staff_list-caution {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/* STAFF ONE ========= */
.staff_one-box {
  max-width: calc(1000px + 16.6666666667vw);
  padding: 0 8.3333333333vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .staff_one-box {
    padding: 0;
  }
}
.staff_one-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 80px;
}
@media screen and (max-width: 991px) {
  .staff_one-main {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .staff_one-main {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 60px;
  }
}
.staff_one-mainInfo {
  width: 60%;
  padding-left: 60px;
}
@media screen and (max-width: 991px) {
  .staff_one-mainInfo {
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .staff_one-mainInfo {
    width: 100%;
    padding: 0 8.3333333333vw;
  }
}
.staff_one-mainImg {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 40%;
  position: relative;
  z-index: 0;
}
.staff_one-mainImg video {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .staff_one-mainImg {
    width: 100%;
    margin: 0 auto 30px;
    max-width: 675px;
  }
  .staff_one-mainImg img, .staff_one-mainImg video {
    width: 100%;
  }
}
.staff_one-mainMessage {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .staff_one-mainMessage {
    margin-top: 40px;
  }
}
.staff_one-mainMessage .staff_one-message, .staff_one-mainMessage .staff_one-style {
  max-width: 100%;
  padding-bottom: 0;
}
.staff_one-mainMessage .staff_one-message:last-child, .staff_one-mainMessage .staff_one-style:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .staff_one-mainMessage .staff_one-message, .staff_one-mainMessage .staff_one-style {
    padding: 0;
    margin-bottom: 40px;
  }
}
.staff_one-mainMessage .staff_one-messageHeading {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid;
}
.staff_one-mainMessage .staff_one-messageHeading span.en {
  text-transform: uppercase;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 200;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .staff_one-mainMessage .staff_one-messageHeading span.en {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.staff_one-position {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .staff_one-position {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.staff_one-nameArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.staff_one-name span {
  display: block;
}
.staff_one-name span.ja {
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .staff_one-name span.ja {
    font-size: 30px;
    font-size: 3rem;
  }
}
.staff_one-name span.en {
  font-size: 14px;
  font-size: 1.4rem;
  color: #555;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 200;
}
@media screen and (max-width: 767px) {
  .staff_one-name span.en {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.staff_one-insta svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: #000;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media screen and (max-width: 767px) {
  .staff_one-insta svg {
    width: 37px;
    height: 37px;
  }
}
.staff_one-calendar {
  margin-top: 30px;
}
.staff_one-calendar .month-header {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 767px) {
  .staff_one-calendar {
    padding: 0 8.3333333333vw;
  }
}
.staff_one-section {
  max-width: 415px;
  margin-bottom: 60px;
}
@media screen and (max-width: 991px) {
  .staff_one-section {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .staff_one-section {
    width: 100%;
    max-width: 100%;
  }
}
.staff_one-section:last-child {
  margin-bottom: 0;
}
.staff_one-sectionHeading {
  font-size: 23px;
  font-size: 2.3rem;
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-weight: 500;
  border-bottom: 3px solid;
  padding-bottom: 5px;
  margin-bottom: 5px;
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  .staff_one-sectionHeading {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
.staff_one-message, .staff_one-style {
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .staff_one-message, .staff_one-style {
    padding: 0 8.3333333333vw;
  }
}
.staff_one-messageHeading {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid;
}
.staff_one-messageHeading .en {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .staff_one-messageHeading .en {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.staff_one-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 30px;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .staff_one-button {
    padding: 0 8.3333333333vw;
    gap: 40px;
  }
}
.staff_one-button-primary a {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  background: #000;
  color: #fff;
  padding: 30px 40px;
  position: relative;
  -webkit-transition: background 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: background 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media screen and (max-width: 767px) {
  .staff_one-button-primary a {
    padding: 24px 24px;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
.staff_one-button-primary a::after {
  content: "";
  grid-column: 2;
  grid-row: 1/3;
  align-self: center;
  width: 36px;
  height: 1px;
  background: currentColor;
  -webkit-transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media screen and (max-width: 767px) {
  .staff_one-button-primary a::after {
    width: 28px;
  }
}
.staff_one-button-primary a:hover, .staff_one-button-primary a:focus-visible {
  background: #3a3a3a;
  opacity: 1;
}
.staff_one-button-primary a:hover::after, .staff_one-button-primary a:focus-visible::after {
  width: 56px;
}
@media screen and (max-width: 767px) {
  .staff_one-button-primary a:hover::after, .staff_one-button-primary a:focus-visible::after {
    width: 36px;
  }
}
.staff_one-button-primary a span.en {
  grid-column: 1;
  grid-row: 1;
  font-family: "Gantari", sans-serif;
  font-weight: 200;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 200;
  letter-spacing: 0.25em;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 8px;
}
@media screen and (max-width: 767px) {
  .staff_one-button-primary a span.en {
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.18em;
    margin-bottom: 6px;
  }
}
.staff_one-button-primary a span.ja {
  grid-column: 1;
  grid-row: 2;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: inherit;
  opacity: 0.75;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .staff_one-button-primary a span.ja {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.staff_one-back {
  margin: 0;
  text-align: center;
}
.staff_one-back a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1;
  padding: 12px 16px;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.staff_one-back a::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  -webkit-transition: width 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transition: width 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.staff_one-back a:hover, .staff_one-back a:focus-visible {
  color: #000;
  opacity: 1;
}
.staff_one-back a:hover::before, .staff_one-back a:focus-visible::before {
  width: 36px;
}
.staff_one-reserve a {
  display: block;
  max-width: 430px;
  color: #fff;
  background: #ffffff;
  text-align: center;
  margin: 0 auto 50px;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 22px 0;
  position: relative;
  -webkit-transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  border-radius: 18px;
}
@media screen and (max-width: 767px) {
  .staff_one-reserve a {
    font-size: 14px;
    font-size: 1.4rem;
    padding: 15px 0;
  }
}
.staff_one-reserve a:hover {
  opacity: 0.8;
}
.staff_one-reserve a:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  margin-left: 0.5em;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.staff_one-reserve a img {
  width: 7px;
  height: 10px;
  display: block;
  margin-left: 1em;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
}

/* ========================================================================== */
/* HAIR STYLE ========= */
/* ========================================================================== */
.style_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
}
.style_list li {
  width: calc(20% - 8px);
  margin-bottom: 10px;
}
@media screen and (max-width: 1200px) {
  .style_list li {
    width: calc(25% - 7.5px);
  }
}
@media screen and (max-width: 991px) {
  .style_list li {
    width: calc(33.3333% - 6.6666666667px);
  }
}
@media screen and (max-width: 767px) {
  .style_list li {
    width: calc(50% - 5px);
  }
}
.style_list img {
  width: 100%;
  height: auto;
}
.style_list-button {
  text-align: right;
}

.lum-lightbox-inner img {
  max-width: 1000px;
}
@media screen and (max-width: 480px) {
  .lum-lightbox-inner img {
    width: 100% !important;
  }
}

#pagination-container {
  margin-top: 40px;
}
#pagination-container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 480px) {
  #pagination-container ul {
    gap: 5px;
  }
}
#pagination-container ul li {
  border: 1px solid #BFBFBF;
}
#pagination-container ul li a, #pagination-container ul li span {
  display: block;
  width: 100%;
  height: 100%;
  padding: 14px 10px 10px;
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 13px;
  font-size: 1.3rem;
  color: #000;
  line-height: 1;
  font-weight: bold;
}
#pagination-container ul li span.current {
  background: #C1C1C1;
  border: 2px solid #C1C1C1;
  color: #fff;
}

/* ========================================================================== */
/* スタイル覧 ========= */
/* ========================================================================== */
#style_one .btn {
  margin: 0 auto;
}

.style_one-box {
  max-width: calc(1000px + 16.6666666667vw);
  width: 100%;
  padding: 0 8.3333333333vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .style_one-box {
    margin-top: -50px;
    padding: 0;
  }
}
.style_one-box .staff_one-button {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .style_one-box .staff_one-button {
    margin-top: 60px;
  }
}
.style_one-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.style_one-img {
  text-align: center;
  line-height: 0;
  width: 50%;
}
@media screen and (max-width: 991px) {
  .style_one-img {
    width: 100%;
    margin-bottom: 40px;
  }
}
.style_one-img .thumbnail-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 5px;
  margin-top: 5px;
}
.style_one-info {
  width: 50%;
  padding-left: 70px;
}
@media screen and (max-width: 991px) {
  .style_one-info {
    width: 100%;
    padding-left: 0;
  }
}
.style_one-info section:last-child {
  margin-bottom: 0;
}
.style_one-staffBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.style_one-staffBoxImg {
  width: 150px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 480px) {
  .style_one-staffBoxImg {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    width: 100px;
  }
}
.style_one-staffBoxInfo {
  width: calc(100% - 150px);
  text-align: right;
  padding-right: 40px;
}
@media screen and (max-width: 991px) {
  .style_one-staffBoxInfo {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .style_one-staffBoxInfo {
    width: calc(100% - 150px);
    padding-right: 30px;
  }
}
@media screen and (max-width: 480px) {
  .style_one-staffBoxInfo {
    width: calc(100% - 100px);
    text-align: left;
    padding-left: 20px;
    padding-right: 0;
  }
}
.style_one-staffBoxPosition {
  font-size: 1.1rem !important;
  margin-bottom: 5px;
}
.style_one-staffBoxName {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
}
.style_one-staffBoxName span {
  display: block;
}
.style_one-staffBoxName span.ja {
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.2em;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .style_one-staffBoxName span.ja {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.style_one-staffBoxName span.ja:last-child {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0;
}
.style_one-staffBoxName span.en {
  text-transform: uppercase;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: #555;
}
.style_one-other {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .style_one-other {
    margin-top: 60px;
    padding: 0 8.3333333333vw;
  }
}
.style_one-otherList {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 991px) {
  .style_one-otherList {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .style_one-otherList {
    gap: 5px;
  }
}
@media screen and (max-width: 480px) {
  .style_one-otherList {
    grid-template-columns: repeat(3, 1fr);
  }
}
.style_one-otherList li {
  width: 100%;
  margin: 0;
}
.style_one-otherList img {
  width: 100%;
  height: auto;
}

/* all ======================== */
.kvWrap {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .kvWrap {
    margin-top: 64px;
  }
}

.blogBody {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 4.1666666667vw;
}
@media screen and (max-width: 991px) {
  .blogBody {
    width: 100%;
  }
}
.blogBody .blogBody_inner {
  /* == ●●● list ●●● == */
}
.blogBody .blogBody_inner:nth-of-type(1) {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .blogBody .blogBody_inner:nth-of-type(1) {
    width: 100%;
  }
}
.blogBody .blogBody_inner {
  /* == ●●● side ●●● == */
}
.blogBody .blogBody_inner:nth-of-type(2) {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .blogBody .blogBody_inner:nth-of-type(2) {
    width: 100%;
    margin-top: 56px;
  }
}
.blogBody .blogBody_inner:nth-of-type(2) .sidebarWrap {
  margin-bottom: 40px;
}
.blogBody .blogBody_inner:nth-of-type(2) .sidebarWrap:nth-of-type(1) ul li::before {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  content: "\f15b";
  display: inline-block;
  color: #c7c7c7;
  margin-right: 5px;
}
.blogBody .blogBody_inner:nth-of-type(2) .sidebarWrap:nth-of-type(3) ul li::before {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  content: "\f073";
  display: inline-block;
  color: #c7c7c7;
  margin-right: 5px;
}
.blogBody .blogBody_inner:nth-of-type(2) .sidebarWrap .sidebarTitle {
  border-left: 5px solid #000;
  padding-left: 8px;
  font-weight: 900;
  font-size: 1.8rem;
}
.blogBody .blogBody_inner:nth-of-type(2) .sidebarWrap ul {
  margin-top: 24px;
}
.blogBody .blogBody_inner:nth-of-type(2) .sidebarWrap ul li {
  width: 100%;
  margin-bottom: 16px;
}
.blogBody .blogBody_inner:nth-of-type(2) {
  /* == ●●● author ●●● == */
}
.blogBody .blogBody_inner:nth-of-type(2) .postStaffArea {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.blogBody .blogBody_inner:nth-of-type(2) .postStaffArea .postStaffArea_inner {
  width: 33.3333%;
  padding: 8px;
}
.blogBody .blogBody_inner:nth-of-type(2) .postStaffArea .postStaffArea_inner img {
  display: block;
  border-radius: 50%;
}
.blogBody .blogBody_inner:nth-of-type(2) .postStaffArea .postStaffArea_inner a span:last-of-type {
  display: block;
  font-size: 1rem;
  text-align: center;
  margin-top: 5px;
}
.blogBody .blogBody_inner a {
  color: #000;
}

/* == ■■■■■■ breadcrumb ■■■■■■ == */
.breadcrumbs_single {
  color: #6f6f6f;
  border-bottom: 1px solid #ccc;
  margin-bottom: 40px;
}
.breadcrumbs_single .breadcrumbs_single_inner {
  padding: 8px 0;
  margin: 0 auto;
}
.breadcrumbs_single .breadcrumbs_single_inner span {
  display: inline-block;
  margin: 0 5px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .breadcrumbs_single .breadcrumbs_single_inner span {
    font-size: 1.2rem;
    margin: 0 2px;
  }
}
.breadcrumbs_single .breadcrumbs_single_inner span:first-of-type {
  margin-left: 0;
}
.breadcrumbs_single .breadcrumbs_single_inner span:last-of-type [property=name] {
  display: inline-block;
  padding: 0;
  margin-top: -3px;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .breadcrumbs_single .breadcrumbs_single_inner span:last-of-type [property=name] {
    max-width: 120px;
  }
}
.breadcrumbs_single .breadcrumbs_single_inner span a {
  color: #5d4c43;
}

/* == ■■■■■■ socialBtn ■■■■■■ == */
.socialBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.socialBtn li {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .socialBtn li {
    width: 50%;
  }
}
.socialBtn li.twitter {
  background-color: #00ABF1;
}
.socialBtn li.facebook {
  background-color: #395899;
}
.socialBtn li.line {
  background-color: #00B900;
}
.socialBtn li.pocket {
  background-color: #F13B4C;
}
.socialBtn li a {
  display: block;
  padding: 10px 0;
  color: #fff;
  text-align: center;
}
.socialBtn li a i {
  display: inline-block;
  margin-right: 5px;
  font-size: 1.6rem;
  vertical-align: middle;
}
.socialBtn li a span {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.4rem;
}

/* == ■■■■■■ reserve bana ■■■■■■ == */
.post_reserveBanaArea {
  border-top: 1px dashed rgb(214, 214, 214);
  border-bottom: 1px dashed rgb(214, 214, 214);
  padding: 40px 0;
}
.post_reserveBanaArea .reserveTitle {
  margin-bottom: 32px;
  font-weight: bold;
  font-size: 2.4rem;
  color: rgb(121, 121, 121);
}
.post_reserveBanaArea .reserveTitle::before {
  content: "";
  width: 24px;
  height: 3px;
  background-color: rgb(121, 121, 121);
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}
.post_reserveBanaArea-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.post_reserveBanaArea-inner li {
  width: 48%;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .post_reserveBanaArea-inner li {
    margin-bottom: 16px;
  }
}
.post_reserveBanaArea-inner li:nth-child(3) {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .post_reserveBanaArea-inner li:nth-child(3) {
    margin-bottom: 16px;
  }
}
.post_reserveBanaArea-inner li:nth-child(4) {
  margin-bottom: 0;
}

/* == ■■■■■■ salon info ■■■■■■ == */
.post_salonInfo {
  margin-bottom: 24px;
  border-bottom: 1px dashed rgb(214, 214, 214);
  padding: 40px 0;
}
.post_salonInfo .post_salonInfoTitle {
  margin-bottom: 24px;
  font-weight: bold;
  font-size: 2.4rem;
  color: rgb(121, 121, 121);
}
.post_salonInfo .post_salonInfoTitle::before {
  content: "";
  width: 24px;
  height: 3px;
  background-color: rgb(121, 121, 121);
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}
.post_salonInfo-inner:nth-of-type(1) {
  margin-top: 32px;
}
.post_salonInfo-inner:nth-of-type(1) .post_salonInfo-inner-area {
  margin-bottom: 16px;
}
.post_salonInfo-inner:nth-of-type(1) .post_salonInfo-inner-area p:nth-of-type(1) {
  font-weight: bold;
}
.post_salonInfo-inner:nth-of-type(1) .post_salonInfo-inner-area p:nth-of-type(2) {
  margin-top: 8px;
}
.post_salonInfo-inner:nth-of-type(1) .post_salonInfo-inner-area p:nth-of-type(3) {
  margin-top: 8px;
}
.post_salonInfo-inner:nth-of-type(2) {
  margin-top: 32px;
}
.post_salonInfo-inner:nth-of-type(2) span {
  width: 40px;
  height: 1px;
  display: inline-block;
  background-color: #6f6f6f;
  margin-right: 8px;
}
.post_salonInfo-inner:nth-of-type(2) span:last-of-type {
  margin-right: 0;
}
.post_salonInfo-inner:nth-of-type(3) {
  margin-top: 32px;
}
.post_salonInfo-inner:nth-of-type(3) .post_salonInfo-text:nth-of-type(1) {
  margin-bottom: 16px;
}
.post_salonInfo-inner:nth-of-type(3) .post_salonInfo-text:nth-of-type(1) p {
  margin-bottom: 10px;
}
.post_salonInfo-inner:nth-of-type(3) .post_salonInfo-text:nth-of-type(2) {
  line-height: 2.2;
  font-size: 1.4rem;
  font-style: italic;
  color: #838383;
}

/* == ■■■■■■ pager ■■■■■■ == */
.pagelink {
  margin: 0 auto;
}
.pagelink .page-numbers {
  border: 1px solid #ccc;
  padding: 5px 8px;
  margin-right: 5px;
}
.pagelink span.current {
  background-color: rgb(128, 128, 128);
  color: #fff;
}

/* == ■■■■■■ heading ■■■■■■ == */
.heading_area {
  width: 100%;
  margin: 180px auto 0 auto;
  color: #000;
  overflow: hidden;
  position: relative;
  padding-bottom: 3px;
}
@media screen and (max-width: 991px) {
  .heading_area {
    margin: 100px auto 0 auto;
  }
}
.heading_area span {
  position: relative;
  font-family: "Gudea", sans-serif;
  font-style: italic;
  padding: 0px;
  font-size: 3.8rem;
  max-width: 400px;
  margin: 0 auto;
  display: block;
  border-bottom: 2px solid #000;
  text-align: center;
  z-index: 1;
  -webkit-transform: rotate(0.028deg);
          transform: rotate(0.028deg);
}
@media screen and (max-width: 991px) {
  .heading_area span {
    font-size: 2.8rem;
  }
}
.heading_area::before {
  content: "";
  border-bottom: 1px solid #d7d8d8;
  bottom: 3px;
  height: 0;
  position: absolute;
  width: 100%;
  z-index: 0;
}

/* archive ======================== */
.blogArchive_Wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
.blogArchive_Wrap li {
  width: 48%;
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .blogArchive_Wrap li {
    width: 100%;
    margin-bottom: 56px;
  }
  .blogArchive_Wrap li:last-child {
    margin-bottom: 0;
  }
}
.blogArchive_Wrap.blogArchivePerson_Wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin-left: -24px;
  margin-right: -24px;
  margin-bottom: 40px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 374px) {
  .blogArchive_Wrap.blogArchivePerson_Wrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (max-width: 991px) {
  .blogArchive_Wrap.blogArchivePerson_Wrap {
    margin-left: -12px;
    margin-right: -12px;
  }
}
.blogArchive_Wrap.blogArchivePerson_Wrap li {
  width: 33.3333333%;
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .blogArchive_Wrap.blogArchivePerson_Wrap li {
    width: 100%;
    padding: 0;
    margin-bottom: 56px;
  }
  .blogArchive_Wrap.blogArchivePerson_Wrap li:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 991px) {
  .blogArchive_Wrap.blogArchivePerson_Wrap li {
    padding: 12px;
  }
}
.blogArchive_Wrap .blogContents .blogContents_inner {
  /* == ■■■■■■ img ■■■■■■ == */
}
.blogArchive_Wrap .blogContents .blogContents_inner:nth-of-type(1) {
  position: relative;
}
.blogArchive_Wrap .blogContents .blogContents_inner:nth-of-type(1) a {
  display: block;
}
.blogArchive_Wrap .blogContents .blogContents_inner:nth-of-type(1) a span {
  display: block;
  background-size: cover;
  background-position: center;
}
.blogArchive_Wrap .blogContents .blogContents_inner:nth-of-type(1) a span::before {
  content: "";
  display: block;
  padding-top: 70%;
}
.blogArchive_Wrap .blogContents .blogContents_inner:nth-of-type(1) {
  /* == ●●● avatar ●●● == */
}
.blogArchive_Wrap .blogContents .blogContents_inner:nth-of-type(1) .avatarWrap {
  position: absolute;
  bottom: -48px;
  right: 8px;
}
.blogArchive_Wrap .blogContents .blogContents_inner:nth-of-type(1) .avatarWrap p:nth-of-type(1) {
  width: 80px;
  height: 80px;
}
.blogArchive_Wrap .blogContents .blogContents_inner:nth-of-type(1) .avatarWrap p:nth-of-type(1) img {
  border-radius: 50%;
}
.blogArchive_Wrap .blogContents .blogContents_inner:nth-of-type(1) .avatarWrap p:nth-of-type(2) {
  font-size: 1.2rem;
  margin-top: 8px;
  text-align: center;
}
.blogArchive_Wrap .blogContents .blogContents_inner {
  /* == ■■■■■■ category ■■■■■■ == */
}
.blogArchive_Wrap .blogContents .blogContents_inner:nth-of-type(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin-top: 16px;
}
.blogArchive_Wrap .blogContents .blogContents_inner:nth-of-type(2) p {
  margin-right: 5px;
}
.blogArchive_Wrap .blogContents .blogContents_inner:nth-of-type(2) p span {
  border: 1px solid #969696;
  font-size: 1.4rem;
  padding: 5px;
}
.blogArchive_Wrap .blogContents .blogContents_inner:nth-of-type(2) p span a {
  color: #969696;
}
.blogArchive_Wrap .blogContents .blogContents_inner {
  /* == ●●● info ●●● == */
}
.blogArchive_Wrap .blogContents .blogContents_inner:nth-of-type(3) {
  margin-top: 16px;
}
.blogArchive_Wrap .blogContents .blogContents_inner:nth-of-type(3) p:nth-of-type(1) {
  font-size: 1.2rem;
  margin-top: 24px;
}
.blogArchive_Wrap .blogContents .blogContents_inner:nth-of-type(3) p:nth-of-type(1) span {
  display: inline-block;
}
.blogArchive_Wrap .blogContents .blogContents_inner:nth-of-type(3) p:nth-of-type(1) span:nth-of-type(1) {
  margin-right: 12px;
}
.blogArchive_Wrap .blogContents .blogContents_inner:nth-of-type(3) p:nth-of-type(1) span:nth-of-type(1)::before {
  content: "\f073";
  font-style: normal;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: #aaa;
  margin-right: 5px;
}
.blogArchive_Wrap .blogContents .blogContents_inner:nth-of-type(3) p:nth-of-type(1) span:nth-of-type(2)::before {
  content: "\f01e";
  font-style: normal;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: #aaa;
  margin-right: 5px;
}
.blogArchive_Wrap .blogContents .blogContents_inner:nth-of-type(3) p:nth-of-type(2) {
  margin-top: 5px;
  line-height: 1.75;
  font-weight: bold;
  font-size: 1.8rem;
}
.blogArchive_Wrap .blogContents .blogContents_inner a {
  color: #000;
}

/* archive person ======================== */
.noPost {
  text-align: center;
}

.blogPageWrap {
  width: 91.6666666667%;
  margin: 64px auto 0 auto;
}

/* single ======================== */
/* == ■■■■■■ kv ■■■■■■ == */
.singlePageKv {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .singlePageKv {
    margin-top: 64px;
  }
}

/* == ■■■■■■ 目次 ■■■■■■ == */
#toc .tocInner {
  padding: 40px 0;
  border-top: 1px solid rgb(199, 199, 199);
  border-bottom: 1px solid rgb(199, 199, 199);
  margin-bottom: 40px;
}
#toc .tocInner .tocTitle {
  text-align: left;
  font-weight: bold;
  color: rgb(122, 122, 122);
  font-size: 2rem;
}
#toc .tocInner .tocTitle::before {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  content: "\f0ca";
  display: inline-block;
  margin-right: 5px;
}
#toc .tocInner .chapter {
  padding: 0;
}
#toc .tocInner .chapter li {
  margin-top: 32px;
}
#toc .tocInner .chapter li a {
  color: #000;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  #toc .tocInner .chapter li a {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
#toc .tocInner .chapter .chapter_nest {
  padding-left: 16px;
}
#toc .tocInner .chapter .chapter_nest li {
  margin-top: 24px;
  font-weight: normal;
}
#toc .tocInner .chapter .chapter_nest li a {
  color: #000;
  font-size: 1.4rem;
  line-height: 1.5;
}
#toc .tocInner .chapter .chapter_nest .chapter_nest-inner {
  padding-left: 24px;
}
#toc .tocInner .chapter .chapter_nest .chapter_nest-inner li {
  margin-top: 16px;
  font-size: 1.4rem;
}
#toc .tocInner .chapter .chapter_nest .chapter_nest-inner li a {
  color: #888;
}

.chapter {
  counter-reset: level1;
}
.chapter li::before {
  content: counter(level1) ". ";
  counter-increment: level1;
  color: #000;
}
.chapter .chapter_nest {
  counter-reset: level2;
}
.chapter .chapter_nest li {
  position: relative;
}
.chapter .chapter_nest li::before {
  counter-increment: level2;
  content: "";
  display: inline-block;
  margin-right: 16px;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
}
.chapter .chapter_nest-inner {
  counter-reset: level3;
}
.chapter .chapter_nest-inner li::before {
  content: "・";
  counter-increment: level3;
}

/* == ■■■■■■ pan / discription ■■■■■■ == */
.post_firstWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: wrap column;
          flex-flow: wrap column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: -64px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .post_firstWrap {
    margin-top: 0;
  }
}
.post_firstWrap div:nth-of-type(1) {
  width: 100%;
}
.post_firstWrap div:nth-of-type(2) {
  width: 70%;
  margin-top: 24px;
  line-height: 2;
  font-size: 1.8rem;
}
@media screen and (max-width: 991px) {
  .post_firstWrap div:nth-of-type(2) {
    font-size: 1.4rem;
    width: 100%;
  }
}

/* == ■■■■■■ title ■■■■■■ == */
.singleTitleWrap {
  border: 1px solid #9d9d9d;
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .singleTitleWrap {
    padding: 16px 10px;
  }
}
.singleTitleWrap .singlepageTitle {
  text-align: left;
  font-size: 3rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 374px) {
  .singleTitleWrap .singlepageTitle {
    font-size: 2rem;
  }
}
.singleTitleWrap .singlePageWrap_parts {
  /* == ■■■■■■ cat ■■■■■■ == */
}
.singleTitleWrap .singlePageWrap_parts:nth-of-type(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin: 16px 0;
}
.singleTitleWrap .singlePageWrap_parts:nth-of-type(1) p {
  margin-right: 8px;
  display: block;
}
.singleTitleWrap .singlePageWrap_parts:nth-of-type(1) p span {
  border: 1px solid #969696;
  font-size: 1.4rem;
  padding: 5px;
}
.singleTitleWrap .singlePageWrap_parts:nth-of-type(1) p span a {
  color: #969696;
}
.singleTitleWrap .singlePageWrap_parts {
  /* == ■■■■■■ data ■■■■■■ == */
}
.singleTitleWrap .singlePageWrap_parts:nth-of-type(2) span {
  display: inline-block;
  font-size: 1.4rem;
}
.singleTitleWrap .singlePageWrap_parts:nth-of-type(2) span:nth-of-type(1) {
  margin-right: 12px;
}
.singleTitleWrap .singlePageWrap_parts:nth-of-type(2) span:nth-of-type(1)::before {
  content: "\f073";
  font-style: normal;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: #aaa;
  margin-right: 5px;
}
.singleTitleWrap .singlePageWrap_parts:nth-of-type(2) span:nth-of-type(2)::before {
  content: "\f01e";
  font-style: normal;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: #aaa;
  margin-right: 5px;
}

/* == ■■■■■■ title end ■■■■■■ == */
.singleTitleWrap_description {
  margin-top: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 40px 16px;
  line-height: 1.75;
}

.singlePageWrap {
  position: relative;
}
.singlePageWrap .singlePageWrap_inner {
  padding: 80px 0;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 374px) {
  .singlePageWrap .singlePageWrap_inner {
    padding: 40px 0 16px 0;
  }
}
.singlePageWrap .singlePageWrap_inner p {
  margin: 0 0 30px;
  line-height: 2;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: justify;
}
@media screen and (max-width: 374px) {
  .singlePageWrap .singlePageWrap_inner p {
    font-size: 1.4rem;
  }
}
.singlePageWrap .singlePageWrap_inner a {
  color: #000;
  text-decoration: underline;
}
.singlePageWrap .singlePageWrap_inner {
  /* == ■■■■■■ text style ■■■■■■ == */
  /* == ●●● 引用 ●●● == */
}
.singlePageWrap .singlePageWrap_inner .blockquote_list {
  position: relative;
  padding: 10px 15px 10px 60px;
  margin: 24px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-style: italic;
  background: #f5f5f5;
  color: #777777;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
}
.singlePageWrap .singlePageWrap_inner .blockquote_list::before {
  display: inline-block;
  position: absolute;
  top: 15px;
  left: 15px;
  vertical-align: middle;
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  color: #9dd4ff;
  font-size: 30px;
  line-height: 1;
}
.singlePageWrap .singlePageWrap_inner .blockquote_list p {
  padding: 0;
  margin: 7px 0;
  line-height: 1.7;
}
.singlePageWrap .singlePageWrap_inner .blockquote_list cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}
.singlePageWrap .singlePageWrap_inner {
  /* == ●●● 引用 end ●●● == */
  /* == ●●● リスト ●●● == */
}
.singlePageWrap .singlePageWrap_inner .post_list {
  background: #f5f5f5;
  margin: 16px 0;
  border-radius: 8px;
  -webkit-box-shadow: 0px 0px 5px silver;
          box-shadow: 0px 0px 5px silver;
  padding: 1rem 1rem 1rem 3rem;
}
.singlePageWrap .singlePageWrap_inner .post_list li {
  list-style: disc;
  line-height: 1.5;
  padding: 1rem 0;
}
.singlePageWrap .singlePageWrap_inner {
  /* == ●●● リスト end ●●● == */
  /* == ●●● twenty twenty ●●● == */
}
.singlePageWrap .singlePageWrap_inner .twenty-twentyBox {
  max-width: 480px;
  margin: 40px 0;
}
.singlePageWrap .singlePageWrap_inner {
  /* == ●●● twenty twenty end ●●● == */
  /* == ●●● h2 ●●● == */
}
.singlePageWrap .singlePageWrap_inner h2 {
  width: 100%;
  border-left: 5px solid #000;
  padding: 12px 0 12px 8px;
  background-color: #f3f3f3;
  margin: 72px 0 32px;
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 374px) {
  .singlePageWrap .singlePageWrap_inner h2 {
    margin: 40px 0 24px;
    font-size: 1.8rem;
  }
}
.singlePageWrap .singlePageWrap_inner {
  /* == ●●● h2 end ●●● == */
  /* == ●●● h3 ●●● == */
}
.singlePageWrap .singlePageWrap_inner h3 {
  margin: 40px 0 20px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .singlePageWrap .singlePageWrap_inner h3 {
    font-size: 1.6rem;
  }
}
.singlePageWrap .singlePageWrap_inner h3::before {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  content: "\f0eb";
  color: #000;
  display: inline-block;
  margin-right: 5px;
}
.singlePageWrap .singlePageWrap_inner h3::after {
  content: "";
  width: 0;
  -webkit-transition: 1s;
  transition: 1s;
  background-color: rgba(255, 255, 255, 0.1);
  height: 12px;
  position: absolute;
  z-index: -1;
  bottom: -3px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .singlePageWrap .singlePageWrap_inner h3::after {
    bottom: -3px;
  }
}
@media screen and (max-width: 767px) {
  .singlePageWrap .singlePageWrap_inner h3 {
    font-size: 1.8rem;
    margin: 24px 0 12px;
  }
}
.singlePageWrap .singlePageWrap_inner h3.animated::after {
  content: "";
  width: 100%;
}
.singlePageWrap .singlePageWrap_inner {
  /* == ●●● h3 end ●●● == */
  /* == ●●● bold red ●●● == */
}
.singlePageWrap .singlePageWrap_inner .redFont {
  font-weight: 700;
  font-size: 1.8rem;
  color: #d32f2f;
}
.singlePageWrap .singlePageWrap_inner {
  /* == ●●● bold red end ●●● == */
  /* == ●●● bold ●●● == */
}
.singlePageWrap .singlePageWrap_inner strong {
  font-weight: 700;
  font-size: 1.8rem;
}
.singlePageWrap .singlePageWrap_inner {
  /* == ●●● bold end ●●● == */
  /* == ●●● small ●●● == */
}
.singlePageWrap .singlePageWrap_inner small {
  font-size: 1.2rem;
}
.singlePageWrap .singlePageWrap_inner {
  /* == ●●● small end ●●● == */
  /* == ●●● other heading ●●● == */
}
.singlePageWrap .singlePageWrap_inner .serialHeading {
  font-size: 1.8rem;
  position: relative;
  font-weight: bold;
  color: #000;
  margin-bottom: 40px;
  z-index: 1;
}
.singlePageWrap .singlePageWrap_inner .serialHeading::before {
  content: "▼";
  display: inline-block;
  margin-right: 5px;
}
.singlePageWrap .singlePageWrap_inner {
  /* == ●●● other heading end ●●● == */
  /* == ●●● bg gray ●●● == */
}
.singlePageWrap .singlePageWrap_inner .bgGray {
  margin-top: 40px;
  background-color: #ececec;
  padding: 40px 16px;
  line-height: 1.75;
}
.singlePageWrap .singlePageWrap_inner {
  /* == ●●● bg gray end ●●● == */
  /* == ●●● bg yellow ●●● == */
}
.singlePageWrap .singlePageWrap_inner .bgYellow {
  margin-top: 40px;
  background-color: #fdf6e2;
  padding: 40px 16px;
  line-height: 1.75;
}
.singlePageWrap .singlePageWrap_inner {
  /* == ●●● bg gray end ●●● == */
}

/* == ■■■■■■ この記事を書いた人 ■■■■■■ == */
.writerArea {
  width: 100%;
  margin: 0 auto 80px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  padding: 24px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.writerArea p:nth-of-type(1) {
  width: 100%;
  border-top: 1px solid #9d9d9d;
  border-bottom: 1px solid #9d9d9d;
  padding: 10px 0;
  margin-bottom: 16px;
}
.writerArea p:nth-of-type(2) {
  width: 14%;
}
@media screen and (max-width: 767px) {
  .writerArea p:nth-of-type(2) {
    width: 25%;
  }
}
.writerArea p:nth-of-type(3) {
  width: 83%;
}
@media screen and (max-width: 767px) {
  .writerArea p:nth-of-type(3) {
    width: 70%;
  }
}
.writerArea p:nth-of-type(3) span {
  display: block;
}
.writerArea p:nth-of-type(3) span:nth-of-type(1) {
  font-weight: bold;
}
.writerArea p:nth-of-type(3) span:nth-of-type(2) {
  margin-top: 8px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .writerArea p:nth-of-type(3) span:nth-of-type(2) {
    display: none;
  }
}
.writerArea p:nth-of-type(4) {
  display: none;
}
@media screen and (max-width: 767px) {
  .writerArea p:nth-of-type(4) {
    display: block;
    width: 100%;
    margin-top: 16px;
    line-height: 1.5;
  }
}

/* == ■■■■■■ recentHeading ■■■■■■ == */
.otherPostContents {
  margin-bottom: 40px;
}

.noPostText {
  margin-top: 40px;
}

.recentHeading {
  width: 100%;
  font-size: 2rem;
  text-align: center;
  color: #fff;
  padding: 12px 0;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .recentHeading {
    font-size: 1.6rem;
  }
}

.recentBlogWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 40px 0;
}
@media screen and (max-width: 374px) {
  .recentBlogWrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-right: 0;
    margin-left: 0;
  }
}
.recentBlogWrap li {
  width: 31%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .recentBlogWrap li {
    width: 100%;
    margin-bottom: 16px;
  }
  .recentBlogWrap li:last-child {
    margin-bottom: 0;
  }
}
.recentBlogWrap li .recentBlogWrap_inner:nth-of-type(1) {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .recentBlogWrap li .recentBlogWrap_inner:nth-of-type(1) {
    width: 40%;
    margin-bottom: 0px;
  }
}
.recentBlogWrap li .recentBlogWrap_inner:nth-of-type(1) a {
  display: block;
}
.recentBlogWrap li .recentBlogWrap_inner:nth-of-type(1) a span {
  display: block;
  background-size: cover;
  background-position: center;
}
.recentBlogWrap li .recentBlogWrap_inner:nth-of-type(1) a span::before {
  content: "";
  display: block;
  padding-top: 70%;
}
.recentBlogWrap li .recentBlogWrap_inner:nth-of-type(2) {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .recentBlogWrap li .recentBlogWrap_inner:nth-of-type(2) {
    width: 55%;
  }
}
.recentBlogWrap li .recentBlogWrap_inner:nth-of-type(2) p:nth-of-type(1) {
  margin: 8px 0;
  font-size: 1.4rem;
}
.recentBlogWrap li .recentBlogWrap_inner:nth-of-type(2) p:nth-of-type(2) {
  line-height: 1.75;
}
.recentBlogWrap:after {
  content: "";
  display: block;
  width: 31%;
}

/* author page ======================== */
.authorHeading {
  max-width: 400px;
  margin: 0 auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .authorHeading {
    margin-bottom: 40px;
  }
}
.authorHeading {
  text-align: center;
  text-transform: uppercase;
  font-size: 3.2rem;
  position: relative;
}
@media screen and (max-width: 374px) {
  .authorHeading {
    font-size: 2rem;
  }
}
.authorHeading.ja {
  font-size: 2rem;
}
@media screen and (max-width: 374px) {
  .authorHeading.ja {
    font-size: 1.8rem;
  }
}
.authorHeading span:first-of-type {
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 24px;
  width: 2px;
  height: 11px;
  background-color: #000;
}
.authorHeading span:first-of-type::before {
  content: "";
  position: absolute;
  left: 4px;
  width: 2px;
  height: 11px;
  background-color: #000;
}
.authorHeading span:first-of-type::after {
  content: "";
  position: absolute;
  right: 4px;
  width: 2px;
  height: 11px;
  background-color: #000;
}
.authorHeading span:last-of-type {
  display: inline-block;
  position: absolute;
  top: 6px;
  right: 24px;
  width: 2px;
  height: 11px;
  background-color: #000;
}
.authorHeading span:last-of-type::before {
  content: "";
  position: absolute;
  left: 4px;
  width: 2px;
  height: 11px;
  background-color: #000;
}
.authorHeading span:last-of-type::after {
  content: "";
  position: absolute;
  right: 4px;
  width: 2px;
  height: 11px;
  background-color: #000;
}

/* blog card ======================== */
.blogCard {
  width: 100%;
  margin-bottom: 64px;
  padding: 32px 16px 16px 16px;
  border: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
@media screen and (max-width: 991px) {
  .blogCard {
    margin-bottom: 40px;
  }
}
.blogCard .blogCard_inner:nth-of-type(1) {
  position: absolute;
  top: -8px;
  left: 16px;
  padding: 5px 8px;
  text-align: center;
  color: #fff;
  background-color: #000;
  font-size: 1.2rem;
}
.blogCard .blogCard_inner:nth-of-type(2) {
  width: 20%;
}
.blogCard .blogCard_inner:nth-of-type(2) a {
  display: block;
}
.blogCard .blogCard_inner:nth-of-type(2) a span {
  display: block;
  background-size: cover;
  background-position: center;
}
.blogCard .blogCard_inner:nth-of-type(2) a span::before {
  content: "";
  display: block;
  padding-top: 70%;
}
@media screen and (max-width: 767px) {
  .blogCard .blogCard_inner:nth-of-type(2) {
    width: 30%;
  }
}
.blogCard .blogCard_inner:nth-of-type(3) {
  width: 78%;
}
@media screen and (max-width: 767px) {
  .blogCard .blogCard_inner:nth-of-type(3) {
    width: 68%;
  }
}
.blogCard .blogCard_inner:nth-of-type(3) .blogCard_innerTitle {
  margin-bottom: 8px;
}
.blogCard .blogCard_inner:nth-of-type(3) .blogCard_innerTitle a {
  text-decoration: underline;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .blogCard .blogCard_inner:nth-of-type(3) .blogCard_innerTitle a {
    font-size: 1.6rem;
  }
}
.blogCard .blogCard_inner:nth-of-type(3) .blogCard_innerURL {
  font-size: 1rem;
  margin-bottom: 16px;
  font-style: italic;
}
.blogCard .blogCard_inner:nth-of-type(3) .blogCard_innerURL a {
  color: #000;
}
.blogCard .blogCard_inner:nth-of-type(3) .blogCard_innerURL a span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}
.blogCard .blogCard_inner:nth-of-type(4) {
  width: 100%;
  margin-top: 10px;
}
.blogCard .blogCard_inner:nth-of-type(4) .blogCard_innerText {
  line-height: 1.5;
  margin-bottom: 16px;
  font-size: 1.4rem;
  color: #afafaf;
}
.blogCard .blogCard_inner:nth-of-type(4) .blogCard_innerLink {
  text-align: right;
  text-decoration: underline;
  font-size: 1.4rem;
}

/* ========================================================================== */
/* SIDEBAR ARCHIVE (カレンダー風グリッド) ========= */
/* ========================================================================== */
.sidebarTitle {
  background: #e1e1dc;
  text-align: center;
  padding: 10px;
  margin: 0 0 20px;
  font-weight: normal;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
}

.yearArchiveList {
  list-style: none;
  padding: 0;
  margin: 0;
}
.yearArchiveList li::before,
.yearArchiveList li::after,
.yearArchiveList .year::before {
  content: none !important;
  display: none !important;
}
.yearArchiveList > li {
  list-style: none;
}
.yearArchiveList .year {
  display: block;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 8px 4px;
  margin: 0;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  font-weight: normal;
}
.yearArchiveList .eachYear {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  margin-top: 0 !important;
}
.yearArchiveList .eachYear .singleList {
  list-style: none;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin-bottom: 0 !important;
}
.yearArchiveList .eachYear .singleList a {
  display: block;
  padding: 12px 4px;
  text-align: center;
  color: #000;
  font-size: 13px;
  font-size: 1.3rem;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.yearArchiveList .eachYear .singleList a:hover {
  background: #e1e1dc;
}

/* ========================================================================== */
/* RECRUIT ========= */
/* ========================================================================== */
.recruitPage img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.recruitPage .pageBody-inner {
  max-width: calc(960px + 16.6666666667vw);
}
.recruitPage .recruitPage_section,
.recruitPage .recruitPage_kv,
.recruitPage .recruitPage_nav {
  scroll-margin-top: 100px;
}
.recruitPage {
  /* ========================================================================== */
  /* KEY VISUAL ========= */
  /* ========================================================================== */
}
.recruitPage_kv {
  position: relative;
  z-index: 0;
  padding-top: 90px;
  margin-bottom: 120px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .recruitPage_kv {
    margin-bottom: 20px;
  }
}
.recruitPage_kv-title {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1.5px #fff;
  position: absolute;
  top: calc(50% - 0.5em);
  left: 0;
  width: 100%;
  z-index: 1;
  font-size: 10vw;
  font-size: clamp(90px, 10vw, 180px);
  letter-spacing: 0.75em;
  text-indent: 0.55em;
}
@media screen and (max-width: 1500px) {
  .recruitPage_kv-title {
    top: calc(50% - 0.15em);
  }
}
@media screen and (max-width: 991px) {
  .recruitPage_kv-title {
    font-size: 8vw;
  }
}
@media screen and (max-width: 767px) {
  .recruitPage_kv-title {
    -webkit-text-stroke-width: 0.5px;
    top: calc(50% - 1.5em);
  }
}
@media screen and (max-width: 480px) {
  .recruitPage_kv-title {
    -webkit-text-stroke-width: 0.5px;
    font-size: 48px;
    font-size: 4.8rem;
    letter-spacing: 0.45em;
    text-indent: 0.45em;
    top: calc(50% - 1em);
  }
}
.recruitPage_kv-title .en {
  font-weight: 900;
  line-height: 1;
}
.recruitPage_kv-main {
  max-width: calc(1200px + var(--page-pad) * 2);
  padding: 0 var(--page-pad);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .recruitPage_kv-main {
    max-width: 100%;
    padding: 0;
  }
}
.recruitPage_kv-sub {
  width: 100%;
  overflow: hidden;
  margin-top: -45px;
}
@media screen and (max-width: 767px) {
  .recruitPage_kv-sub {
    margin-top: -25px;
  }
}
.recruitPage_kv-subTrack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: kvScroll 60s linear infinite;
          animation: kvScroll 60s linear infinite;
}
.recruitPage_kv-sub li {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: clamp(180px, 16vw, 280px);
  margin-right: 14px;
}
@media screen and (max-width: 991px) {
  .recruitPage_kv-sub li {
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .recruitPage_kv-sub li {
    width: 42vw;
  }
}
.recruitPage_kv-sub li img {
  width: 100%;
  height: auto;
}
.recruitPage {
  /* ========================================================================== */
  /* NAV ========= */
  /* ========================================================================== */
}
.recruitPage_nav {
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .recruitPage_nav {
    margin-bottom: 100px;
  }
}
.recruitPage_nav-list {
  margin-top: 0;
  padding: 0;
}
.recruitPage_nav-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .recruitPage_nav-list ul {
    gap: 20px 15px;
  }
}
.recruitPage_nav-list ul li {
  width: calc(20% - 24px);
}
@media screen and (max-width: 991px) {
  .recruitPage_nav-list ul li {
    width: calc(33.3333333333% - 20px);
  }
}
@media screen and (max-width: 767px) {
  .recruitPage_nav-list ul li {
    width: calc(50% - 15px);
  }
}
.recruitPage_nav-list ul li a {
  display: block;
  text-align: center;
  border: none;
  border-bottom: 1px solid;
  padding: 0 0 8px;
  position: relative;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .recruitPage_nav-list ul li a {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.recruitPage_nav-list ul li a:after {
  content: "→";
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  margin-left: 0.5em;
}
.recruitPage_nav-buttonWrap {
  margin-top: 60px;
}
.recruitPage_nav-buttonBox {
  max-width: 280px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .recruitPage_nav-buttonBox {
    max-width: 220px;
  }
}
.recruitPage_nav-button a {
  display: block;
  border: 1px solid;
  padding: 8px 0;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .recruitPage_nav-button a {
    padding: 12px 0;
  }
}
.recruitPage {
  /* ========================================================================== */
  /* SECTION 共通 ========= */
  /* ========================================================================== */
}
.recruitPage_section {
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .recruitPage_section {
    margin-bottom: 100px;
  }
}
.recruitPage_section:last-child {
  margin-bottom: 0;
}
.recruitPage_section {
  /* ゴースト英字 + 写真 + 黒タグ のセクション見出し */
}
.recruitPage_section-head {
  position: relative;
  z-index: 0;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .recruitPage_section-head {
    margin-bottom: 50px;
  }
}
.recruitPage_section-headImg {
  width: 58.3333333333vw;
  margin-left: auto;
  padding-top: 40px;
}
@media screen and (max-width: 1200px) {
  .recruitPage_section-headImg {
    width: 66.6666666667vw;
  }
}
@media screen and (max-width: 480px) {
  .recruitPage_section-headImg {
    padding-top: 20px;
  }
}
.recruitPage_section-title {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.recruitPage_section-title span {
  display: block;
}
.recruitPage_section-title {
  /* ゴースト英字：アウトライン縦組み（横書きのまま縦並び）。写真の左端に重ねる */
}
.recruitPage_section-title .en {
  font-family: "Gantari", sans-serif;
  font-weight: 200;
  font-size: 136px;
  font-size: 13.6rem;
  font-weight: 900;
  font-size: clamp(64px, 9vw, 136px);
  line-height: 1;
  letter-spacing: 0.15em;
  color: transparent;
  -webkit-text-stroke: 1px #000;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  /* 改行位置はマークアップの <br> で指定（縦書きでは <br> が列区切りになる） */
  position: absolute;
  top: 0;
  right: calc(58.3333333333vw - 0.5em);
}
@media screen and (max-width: 1200px) {
  .recruitPage_section-title .en {
    right: calc(66.6666666667vw - 0.5em);
  }
}
@media screen and (max-width: 480px) {
  .recruitPage_section-title .en {
    font-size: 40px;
    font-size: 4rem;
  }
}
.recruitPage_section-title {
  /* 黒タグ：左端フルブリードで写真の手前まで伸ばし、下寄りに配置 */
}
.recruitPage_section-title .ja {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 28.3333333333vw;
  background: #000;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  padding: 8px 20px 8px 0;
  text-align: right;
}
.recruitPage_section-title {
  /* xl 以下：H2 を通常フローに戻し、.en は -head(relative) に再アンカー、.ja を画像下へ自然に段落ち */
}
@media screen and (max-width: 1200px) {
  .recruitPage_section-title {
    position: static;
  }
  .recruitPage_section-title .ja {
    position: static;
    width: 80%;
    margin-top: 30px;
    padding: 10px 20px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 480px) {
  .recruitPage_section-title .ja {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.recruitPage_section {
  /* GREETING 用 中央寄せ見出し（細い英字） */
}
.recruitPage_section-heading {
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .recruitPage_section-heading {
    margin-bottom: 30px;
  }
}
.recruitPage_section-heading span {
  display: block;
}
.recruitPage_section-heading .en {
  font-family: "Gantari", sans-serif;
  font-weight: 100;
  font-size: 48px;
  font-size: 4.8rem;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .recruitPage_section-heading .en {
    font-size: 32px;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 480px) {
  .recruitPage_section-heading .en {
    letter-spacing: 0.2em;
    text-indent: 0.2em;
  }
}
.recruitPage {
  /* ========================================================================== */
  /* 1 GREETING（代表挨拶） ========= */
  /* ========================================================================== */
}
.recruitPage_owner-visual {
  max-width: 960px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .recruitPage_owner-visual {
    margin-bottom: 40px;
  }
}
.recruitPage_owner-lead {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.3em;
  font-weight: 200;
  font-size: 20px;
  font-size: 2rem;
  line-height: 2.5;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .recruitPage_owner-lead {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .recruitPage_owner-lead {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.recruitPage_owner-credo, .recruitPage_owner-text {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .recruitPage_owner-credo, .recruitPage_owner-text {
    margin-bottom: 40px;
  }
}
.recruitPage_owner-credo p, .recruitPage_owner-text p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 3.5;
  letter-spacing: 0.1em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .recruitPage_owner-credo p, .recruitPage_owner-text p {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.recruitPage_owner-name {
  max-width: 320px;
  margin: 0 auto;
}
.recruitPage_owner-nameInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
  padding-bottom: 24px;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .recruitPage_owner-nameInner {
    gap: 30px;
  }
}
.recruitPage_owner-name .company {
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .recruitPage_owner-name .company {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.recruitPage_owner-nameList .ja {
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  white-space: nowrap;
}
.recruitPage_owner-nameList .ja:first-child {
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .recruitPage_owner-nameList .ja {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.recruitPage {
  /* ========================================================================== */
  /* 2 BENEFITS（お店の魅力） ========= */
  /* ========================================================================== */
}
.recruitPage_benefit-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 120px 30px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .recruitPage_benefit-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 20px;
  }
}
.recruitPage_benefit-list li {
  background: #ffffff;
  padding: 50px 16px 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruitPage_benefit-list li {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.recruitPage_benefit-listNum {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 13px;
  font-size: 1.3rem;
  color: #fff;
  background: #a39f78;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.2;
  position: absolute;
  top: -32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.recruitPage_benefit-listNum span {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 500;
}
.recruitPage_benefit-listHeading {
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .recruitPage_benefit-listHeading {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .recruitPage_benefit-listHeading {
    min-height: 0;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.recruitPage_benefit-listImg {
  width: 80px;
  margin: 0 auto 16px;
}
.recruitPage_benefit-listImg img {
  height: auto;
}
.recruitPage_benefit-listText {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2;
  color: #555;
}
@media screen and (max-width: 480px) {
  .recruitPage_benefit-listText {
    font-size: 10px;
    font-size: 1rem;
  }
}
.recruitPage {
  /* ========================================================================== */
  /* 3 WORKING MOM ========= */
  /* ========================================================================== */
}
.recruitPage_mom-title {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .recruitPage_mom-title {
    margin-bottom: 30px;
  }
}
.recruitPage_mom-title .en {
  font-family: "Gantari", sans-serif;
  font-weight: 200;
  font-size: 90px;
  font-size: 9rem;
  font-size: clamp(32px, 6vw, 90px);
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  line-height: 1;
  display: inline-block;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px #000;
}
@media screen and (max-width: 480px) {
  .recruitPage_mom-title .en {
    -webkit-text-stroke: 1px #000;
  }
}
.recruitPage_mom-title .en:after {
  content: "";
  display: block;
  width: calc(100% + 40px);
  height: 1px;
  background: #000;
  margin-top: 10px;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}
.recruitPage_mom-img {
  max-width: 640px;
  margin: 0 auto 60px;
}
.recruitPage_mom-lead {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .recruitPage_mom-lead {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .recruitPage_mom-lead {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.recruitPage_mom-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media screen and (max-width: 480px) {
  .recruitPage_mom-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.recruitPage_mom-list li {
  background: #f2f2f0;
  padding: 28px 30px 28px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  position: relative;
  border: 1px solid #ffb3be;
}
@media screen and (max-width: 767px) {
  .recruitPage_mom-list li {
    padding: 15px 10px 10px 0;
  }
}
.recruitPage_mom-listNum {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: bold;
  color: #fff;
  background: #ffb3be;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .recruitPage_mom-listNum {
    width: 32px;
    height: 32px;
    font-size: 20px;
    font-size: 2rem;
  }
}
.recruitPage_mom-listImg {
  width: 56px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.recruitPage_mom-listImg img {
  height: auto;
}
.recruitPage_mom-listHeading {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .recruitPage_mom-listHeading {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .recruitPage_mom-listHeading {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.recruitPage_mom-listText {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 2;
}
@media screen and (max-width: 480px) {
  .recruitPage_mom-listText {
    font-size: 10px;
    font-size: 1rem;
  }
}
.recruitPage {
  /* ========================================================================== */
  /* 4 NUMBER（数字でみる） ========= */
  /* ========================================================================== */
}
.recruitPage_number-date {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 40px;
}
.recruitPage_number-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media screen and (max-width: 991px) {
  .recruitPage_number-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .recruitPage_number-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.recruitPage_number-list li {
  background: #ffffff;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 16px;
}
@media screen and (max-width: 767px) {
  .recruitPage_number-list li {
    padding: 10px;
  }
}
@media screen and (max-width: 480px) {
  .recruitPage_number-list li {
    padding: 0;
  }
}
.recruitPage_number-listLabel {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
  color: #a39f78;
  line-height: 1.4;
  letter-spacing: 0.08em;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid currentColor;
  width: 70%;
}
.recruitPage_number-listLabel small {
  display: block;
  font-weight: 500;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: normal;
}
.recruitPage_number-listData {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
}
.recruitPage_number-listData .en {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 70px;
  font-size: 7rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 480px) {
  .recruitPage_number-listData .en {
    font-size: 44px;
    font-size: 4.4rem;
  }
}
.recruitPage_number-listRatio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.recruitPage_number-listRatio .ratio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.recruitPage_number-listRatio .ratio small {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 4px;
}
.recruitPage_number-listRatio .colon {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 70px;
  font-size: 7rem;
  line-height: 1.2;
}
.recruitPage {
  /* ========================================================================== */
  /* 5 HISTORY（沿革） ========= */
  /* ========================================================================== */
}
.recruitPage_history-timeline {
  --axis: 130px;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
  -webkit-transform: translateX(var(--axis));
          transform: translateX(var(--axis));
}
@media screen and (max-width: 767px) {
  .recruitPage_history-timeline {
    --axis: 0;
  }
}
.recruitPage_history-beginning {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.3em;
  color: #555;
  padding-left: calc(var(--axis) - 60px);
  margin-bottom: 30px;
}
.recruitPage_history-list {
  position: relative;
}
.recruitPage_history-list:before {
  content: "";
  width: 1px;
  background: #000;
  position: absolute;
  left: var(--axis);
  top: 18px;
  bottom: 18px;
}
.recruitPage_history-list li {
  display: grid;
  grid-template-columns: calc(var(--axis) - 20px) 1fr;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 46px;
  position: relative;
}
.recruitPage_history-list li:last-child {
  padding-bottom: 0;
}
.recruitPage_history-list li:after {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #e1e1dc;
  border: 2px double #000;
  position: absolute;
  left: var(--axis);
  top: 30%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.recruitPage_history-listYear {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 1;
  font-weight: bold;
  letter-spacing: -0.03em;
  text-align: left;
  color: transparent;
  -webkit-text-stroke: 1px #000;
}
@media screen and (max-width: 767px) {
  .recruitPage_history-listYear {
    font-size: 30px;
    font-size: 3rem;
    padding-left: 16px;
  }
}
.recruitPage_history-listText {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .recruitPage_history-listText {
    padding-left: 16px;
  }
}
.recruitPage_history-next {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.3em;
  color: #555;
  text-align: center;
  padding-top: 90px;
  position: relative;
  left: -65px;
}
.recruitPage_history-next:before {
  content: "";
  width: 1px;
  height: 70px;
  background: repeating-linear-gradient(to bottom, #000 0 4px, transparent 4px 10px);
  position: absolute;
  top: 0;
  left: var(--axis);
  -webkit-transform: translateX(calc(-50% + 65px));
          transform: translateX(calc(-50% + 65px));
}
.recruitPage {
  /* ========================================================================== */
  /* 6 EDUCATION（教育制度） ========= */
  /* ========================================================================== */
}
.recruitPage_education-lead, .recruitPage_tour-heading, .recruitPage_photo-heading, .recruitPage_career-lead {
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 2.4;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .recruitPage_education-lead, .recruitPage_tour-heading, .recruitPage_photo-heading, .recruitPage_career-lead {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .recruitPage_education-lead, .recruitPage_tour-heading, .recruitPage_photo-heading, .recruitPage_career-lead {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.recruitPage_education-text {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 2.4;
  text-align: justify;
  margin: 0 auto 80px;
  max-width: 640px;
}
@media screen and (max-width: 767px) {
  .recruitPage_education-text {
    font-size: 12px;
    font-size: 1.2rem;
    text-align: justify;
    line-height: 2;
    margin-bottom: 50px;
  }
}
.recruitPage_education {
  /* カリキュラム */
}
.recruitPage_education-curriculum {
  margin: 0 auto 100px;
}
@media screen and (max-width: 767px) {
  .recruitPage_education-curriculum {
    margin-bottom: 60px;
  }
}
.recruitPage_education-curriculumHeading {
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 10px;
  border-bottom: 1px solid;
}
@media screen and (max-width: 767px) {
  .recruitPage_education-curriculumHeading {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
.recruitPage_education-curriculumYear {
  max-width: 400px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.recruitPage_education-curriculumYearTitle {
  text-align: center;
  margin-bottom: 24px;
}
.recruitPage_education-curriculumYearTitle small {
  display: block;
  font-size: 13px;
  font-size: 1.3rem;
  color: #555;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.recruitPage_education-curriculumYearTitle .en {
  display: block;
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-indent: 0.25em;
}
.recruitPage_education-curriculumStep > li {
  position: relative;
  padding-bottom: 40px;
}
.recruitPage_education-curriculumStep > li:last-child {
  padding-bottom: 0;
}
.recruitPage_education-curriculumStep > li:not(:last-child):after {
  content: "";
  width: 1px;
  height: 40px;
  background: #000;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.recruitPage_education-curriculumStepMonth {
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  padding: 8px 0;
}
.recruitPage_education-curriculumStepBox {
  border: 1px solid #000;
  border-top: none;
  padding: 24px 28px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .recruitPage_education-curriculumStepBox {
    padding: 20px;
  }
}
.recruitPage_education-curriculumStepStart {
  background: #ff1f6f;
  color: #fff;
  text-align: center;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  padding: 10px 0;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .recruitPage_education-curriculumStepStart {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.recruitPage_education-curriculumStepList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
}
.recruitPage_education-curriculumStepList li {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.5;
}
.recruitPage_education-curriculumStepList li:before {
  content: "■";
  font-size: 9px;
  font-size: 0.9rem;
  margin-right: 0.5em;
  vertical-align: 1px;
}
.recruitPage_education-curriculumDebut {
  max-width: 400px;
  margin: 0 auto;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
}
.recruitPage_education-curriculumDebut p {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .recruitPage_education-curriculumDebut p {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.recruitPage_education-curriculumDebut small {
  font-size: 11px;
  font-size: 1.1rem;
}
.recruitPage_education {
  /* 教育環境 */
}
.recruitPage_education-envList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 120px;
}
@media screen and (max-width: 991px) {
  .recruitPage_education-envList {
    gap: 80px;
  }
}
@media screen and (max-width: 480px) {
  .recruitPage_education-envList {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
.recruitPage_education-envImg {
  margin-bottom: 20px;
}
.recruitPage_education-envTitle {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.4;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .recruitPage_education-envTitle {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.recruitPage_education-envText {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 2;
  text-align: justify;
}
.recruitPage {
  /* ========================================================================== */
  /* 7 CAREER（キャリアプラン）※教育セクション内のサブブロック ========= */
  /* ========================================================================== */
}
.recruitPage_career {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .recruitPage_career {
    margin-top: 60px;
  }
}
.recruitPage_career-photo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .recruitPage_career-photo {
    gap: 10px;
  }
}
.recruitPage_career-photo li img {
  aspect-ratio: 3/2;
}
.recruitPage_career-text {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 2.5;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .recruitPage_career-text {
    font-size: 12px;
    font-size: 1.2rem;
    text-align: justify;
    line-height: 2;
  }
}
.recruitPage_career-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media screen and (max-width: 991px) {
  .recruitPage_career-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.recruitPage_career-list li {
  background: #939584;
  color: #fff;
  text-align: center;
  padding: 28px 16px;
}
.recruitPage_career-listTitle {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  padding-bottom: 14px;
  margin-bottom: 14px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruitPage_career-listTitle {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .recruitPage_career-listTitle {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.recruitPage_career-listTitle:after {
  content: "";
  width: 50px;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .recruitPage_career-listTitle:after {
    width: 40px;
  }
}
.recruitPage_career-listText {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 2;
  color: #000;
}
@media screen and (max-width: 767px) {
  .recruitPage_career-listText {
    font-size: 10px;
    font-size: 1rem;
  }
}
.recruitPage {
  /* ========================================================================== */
  /* 8 PHOTO（フォト撮影） ========= */
  /* ========================================================================== */
}
.recruitPage_photo-text {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 2.5;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .recruitPage_photo-text {
    font-size: 12px;
    font-size: 1.2rem;
    text-align: justify;
  }
}
.recruitPage_photo-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .recruitPage_photo-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.recruitPage_photo-list li img {
  aspect-ratio: 4/3;
}
.recruitPage {
  /* ========================================================================== */
  /* 9 INTERVIEW（先輩の声） ========= */
  /* ========================================================================== */
}
.recruitPage_voice-article {
  max-width: 960px;
  margin: 0 auto;
}
.recruitPage_voice-list li {
  background: #ffffff;
  padding: 50px;
  margin-bottom: 120px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  border-left: 10px solid #a39f78;
}
@media screen and (max-width: 767px) {
  .recruitPage_voice-list li {
    padding: 30px;
    gap: 24px;
    margin-bottom: 60px;
    border-left-width: 4px;
  }
}
@media screen and (max-width: 480px) {
  .recruitPage_voice-list li {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.recruitPage_voice-list li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 480px) {
  .recruitPage_voice-listImg {
    max-width: 200px;
    margin: 0 auto;
  }
}
.recruitPage_voice-listImg .no-image {
  -o-object-position: top center;
     object-position: top center;
}
.recruitPage_voice-listName {
  margin-top: 16px;
  text-align: center;
}
.recruitPage_voice-listName .ja {
  display: block;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.recruitPage_voice-listName small {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.4;
  display: inline-block;
}
.recruitPage_voice-listSection {
  margin-bottom: 40px;
}
.recruitPage_voice-listSection:last-child {
  margin-bottom: 0;
}
.recruitPage_voice-listSectionHeading {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #a39f78;
  margin-bottom: 10px;
}
.recruitPage_voice-listSectionHeading span.ja {
  display: inline-block;
  border-bottom: 1px solid #a39f78;
}
@media screen and (max-width: 767px) {
  .recruitPage_voice-listSectionHeading {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.recruitPage_voice-listSectionText {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 2;
  color: #555;
}
.recruitPage {
  /* ========================================================================== */
  /* 10 VISIT（サロン見学） ========= */
  /* ========================================================================== */
}
.recruitPage_tour-box {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.recruitPage_tour-text {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 2.2;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .recruitPage_tour-text {
    font-size: 12px;
    font-size: 1.2rem;
    text-align: justify;
  }
}
.recruitPage_tour-photo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .recruitPage_tour-photo {
    gap: 30px;
    margin-bottom: 80px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.recruitPage_tour-photo li:last-child:nth-child(odd) {
  grid-column: 1/-1;
  justify-self: center;
  width: calc(50% - 40px);
}
@media screen and (max-width: 767px) {
  .recruitPage_tour-photo li:last-child:nth-child(odd) {
    width: 100%;
  }
}
.recruitPage_tour {
  /* 店舗動画：クリックで再生（再生中は再生マークを隠す） */
}
.recruitPage_tour-video {
  position: relative;
  background: #000;
  cursor: pointer;
  aspect-ratio: 16/9;
}
.recruitPage_tour-video video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recruitPage_tour-video.is-playing .recruitPage_tour-playBtn {
  opacity: 0;
  pointer-events: none;
}
.recruitPage_tour-playBtn {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  -webkit-transition: opacity 0.4s ease, background 0.4s ease;
  transition: opacity 0.4s ease, background 0.4s ease;
}
.recruitPage_tour-playBtn:hover {
  background: rgba(0, 0, 0, 0.35);
}
.recruitPage_tour-playBtn:hover .recruitPage_tour-playIcon {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.recruitPage_tour-playIcon {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .recruitPage_tour-playIcon {
    width: 60px;
    height: 60px;
  }
}
.recruitPage_tour-playIcon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #000;
}
@media screen and (max-width: 767px) {
  .recruitPage_tour-playIcon:after {
    border-width: 9px 0 9px 15px;
  }
}
.recruitPage_tour-coupon {
  background: rgba(163, 159, 120, 0.8);
  color: #fff;
  text-align: center;
  padding: 30px 30px 40px;
  max-width: 360px;
  margin: 0 auto 30px;
}
.recruitPage_tour-couponLabel {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .recruitPage_tour-couponLabel {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.recruitPage_tour-couponTitle {
  margin-bottom: 15px;
}
.recruitPage_tour-couponTitle .en {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.25em;
  text-indent: 0.25em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .recruitPage_tour-couponTitle .en {
    font-size: 20px;
    font-size: 2rem;
  }
}
.recruitPage_tour-couponMain {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 10px 0;
}
.recruitPage_tour-couponMenu {
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  font-weight: 500;
  margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
  .recruitPage_tour-couponMenu {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.recruitPage_tour-couponOff {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.02em;
}
.recruitPage_tour-couponOff .en {
  font-size: 80px;
  font-size: 8rem;
}
@media screen and (max-width: 767px) {
  .recruitPage_tour-couponOff .en {
    font-size: 64px;
    font-size: 6.4rem;
  }
}
.recruitPage_tour-couponOff .unit {
  font-size: 46px;
  font-size: 4.6rem;
}
@media screen and (max-width: 767px) {
  .recruitPage_tour-couponOff .unit {
    font-size: 38px;
    font-size: 3.8rem;
  }
}
.recruitPage_tour-couponNote {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .recruitPage_tour-couponNote {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.recruitPage_tour-couponNote li {
  margin-bottom: 16px;
}
.recruitPage_tour-couponNote li:last-child {
  margin-bottom: 0;
}
.recruitPage_tour-salonName {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 10px;
}
.recruitPage {
  /* ========================================================================== */
  /* 11 FLOW（採用までの流れ） ========= */
  /* ========================================================================== */
}
.recruitPage_flow-list {
  max-width: 320px;
  margin: 0 auto;
}
.recruitPage_flow-list li {
  background: #ffffff;
  border: 8px solid #a39f78;
  text-align: center;
  padding: 10px 20px 20px;
  margin-bottom: 50px;
  position: relative;
}
.recruitPage_flow-list li:not(:last-child):after {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 16px solid #a39f78;
  position: absolute;
  bottom: -34px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.recruitPage_flow-list li:last-child {
  margin-bottom: 0;
}
.recruitPage_flow-listStep {
  font-family: "Gantari", sans-serif;
  font-weight: 300;
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
  color: #a39f78;
  margin-bottom: 10px;
}
.recruitPage_flow-listHeading {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .recruitPage_flow-listHeading {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.recruitPage_flow-listText {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.8;
}
.recruitPage {
  /* ========================================================================== */
  /* 12 GUIDELINES（募集要項） ========= */
  /* ========================================================================== */
}
.recruitPage_description .recruitRecruitment_box {
  margin-bottom: 0;
  scroll-margin-top: 100px;
  /* 募集条件がサロンタイプで変わる旨のリード文 */
}
.recruitPage_description .recruitRecruitment_box-lead {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.9;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .recruitPage_description .recruitRecruitment_box-lead {
    font-size: 13px;
    font-size: 1.3rem;
    text-align: left;
    margin-bottom: 30px;
  }
}
.recruitPage_description .recruitRecruitment_box {
  /* タブ（2分割・アクティブはオリーブ塗り＋下向き三角でパネルへ接続） */
}
.recruitPage_description .recruitRecruitment_box-tab {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 720px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 767px) {
  .recruitPage_description .recruitRecruitment_box-tab {
    gap: 6px;
    margin-bottom: 30px;
  }
}
.recruitPage_description .recruitRecruitment_box-tabBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  padding: 20px 10px;
  background: #ffffff;
  border: 1px solid #a39f78;
  color: #000;
  line-height: 1.4;
  cursor: pointer;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruitPage_description .recruitRecruitment_box-tabBtn {
    padding: 14px 6px;
  }
}
.recruitPage_description .recruitRecruitment_box-tabBtn .ja {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .recruitPage_description .recruitRecruitment_box-tabBtn .ja {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.recruitPage_description .recruitRecruitment_box-tabBtnSub {
  font-size: 12px;
  font-size: 1.2rem;
  color: #555;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 480px) {
  .recruitPage_description .recruitRecruitment_box-tabBtnSub {
    font-size: 10px;
    font-size: 1rem;
  }
}
.recruitPage_description .recruitRecruitment_box-tabBtn:hover {
  background: rgba(163, 159, 120, 0.15);
}
.recruitPage_description .recruitRecruitment_box-tabBtn.is-active {
  background: #a39f78;
  color: #fff;
  border-color: #a39f78;
}
.recruitPage_description .recruitRecruitment_box-tabBtn.is-active .recruitRecruitment_box-tabBtnSub {
  color: rgba(255, 255, 255, 0.85);
}
.recruitPage_description .recruitRecruitment_box-tabBtn.is-active:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: #a39f78;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .recruitPage_description .recruitRecruitment_box-tabBtn.is-active:after {
    display: none;
  }
}
.recruitPage_description .recruitRecruitment_box {
  /* 募集要項末尾の再掲タブ（スマホで最後まで読んだ人に別タイプの存在を気づかせる） */
}
.recruitPage_description .recruitRecruitment_box-tabFoot {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .recruitPage_description .recruitRecruitment_box-tabFoot {
    margin-top: 40px;
  }
}
.recruitPage_description .recruitRecruitment_box-tabFoot .recruitRecruitment_box-tab {
  margin-bottom: 0;
}
.recruitPage_description .recruitRecruitment_box-tabFoot {
  /* 末尾タブは上にパネルがあるので、アクティブ三角を上向きへ反転 */
}
.recruitPage_description .recruitRecruitment_box-tabFoot .recruitRecruitment_box-tabBtn.is-active:after {
  top: -8px;
  bottom: auto;
}
.recruitPage_description .recruitRecruitment_box-tabFootLead {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .recruitPage_description .recruitRecruitment_box-tabFootLead {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.recruitPage_description .recruitRecruitment_box-list {
  display: none;
}
.recruitPage_description .recruitRecruitment_box-list.is-active {
  display: block;
}
.recruitPage_description .recruitRecruitment_box-list li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 30px;
  padding: 28px 10px;
  border-bottom: 1px dashed;
}
@media screen and (max-width: 767px) {
  .recruitPage_description .recruitRecruitment_box-list li {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 0;
  }
}
.recruitPage_description .recruitRecruitment_box-list li:first-child {
  border-top: 1px dashed;
}
.recruitPage_description .recruitRecruitment_box-list li h3 {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.recruitPage_description .recruitRecruitment_box-list li p {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 2;
}
.recruitPage_description .recruitRecruitment_box-listSalon {
  display: block;
  margin-bottom: 16px;
}
.recruitPage_description .recruitRecruitment_box-listSalon:before {
  content: "■";
  margin-right: 0.3em;
}
.recruitPage_description .recruitRecruitment_box-listNote {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  color: #555;
}
.recruitPage_description .recruitRecruitment_box-note {
  font-weight: bold;
  color: #a39f78;
}
.recruitPage {
  /* ========================================================================== */
  /* ENTRY ========= */
  /* ========================================================================== */
}
.recruitPage_entry {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .recruitPage_entry {
    margin-top: 80px;
  }
}
.recruitPage_entry a {
  display: block;
  background: #939584;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  outline: 1px solid #939584;
  outline-offset: -10px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  position: relative;
  z-index: 0;
}
.recruitPage_entry a:before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border: 1px solid #fff;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .recruitPage_entry a:before {
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .recruitPage_entry a {
    padding: 36px 20px;
  }
}
.recruitPage_entry a:hover {
  opacity: 0.8;
}
.recruitPage_entry a .ja {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .recruitPage_entry a .ja {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.recruitPage_entry a .en {
  display: block;
  font-family: "Gantari", sans-serif;
  font-weight: 200;
  font-size: 68px;
  font-size: 6.8rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .recruitPage_entry a .en {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

/* KV サブ写真 無限スクロール（複製した2巡分を -50% で送る） */
@-webkit-keyframes kvScroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes kvScroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/* ========================================================================== */
/* コンタクト ========= */
/* ========================================================================== */
.h-captcha {
  text-align: center;
}

/* contact======================== */
.contact-section {
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .contact-section {
    margin-bottom: 100px;
  }
}
.contact-section:last-child {
  margin-bottom: 0;
}
.contact-section .salonOnePage_section-heading {
  border-bottom: none;
  padding-bottom: 0;
}
.contact-section-tel {
  text-align: center;
}
.contact-section-tel a {
  color: #000;
  font-size: 40px;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .contact-section-tel a {
    font-size: 32px;
    font-size: 3.2rem;
  }
}
.contact-section-tel small {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .contact-section-tel small {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/* contact SNS ======================== */
.contact_sns {
  max-width: 720px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 767px) {
  .contact_sns {
    margin-bottom: 100px;
  }
}
.contact_sns-text {
  font-weight: bold;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .contact_sns-text {
    margin-bottom: 30px;
  }
}
.contact_sns-navi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .contact_sns-navi ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
}
.contact_sns-navi ul li {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contact_sns-navi ul li {
    max-width: 320px;
    margin: 0 auto;
  }
}
.contact_sns-navi ul li a {
  display: block;
  position: relative;
  color: #000;
  font-weight: bold;
  line-height: 1.45;
  border-bottom: 2px solid;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .contact_sns-navi ul li a {
    padding-top: 10px;
    padding-bottom: 15px;
  }
}
.contact_sns-navi ul li a span {
  display: block;
  font-size: 0.7em;
}
.contact_sns-navi ul li a i {
  position: absolute;
  right: 10px;
  bottom: 14px;
}
@media screen and (max-width: 767px) {
  .contact_sns-navi ul li a i {
    bottom: 20px;
  }
}

.recruitRecruitment_box-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dashed;
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .recruitRecruitment_box-list li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.recruitRecruitment_box-list li h3 {
  width: 30%;
  font-size: 13px;
  font-size: 1.3rem;
  text-align: right;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .recruitRecruitment_box-list li h3 {
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
  }
}
.recruitRecruitment_box-list li p {
  width: 70%;
  padding-left: 80px;
  font-size: 13px;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .recruitRecruitment_box-list li p {
    width: 100%;
    padding-left: 0;
  }
}
.recruitRecruitment_box-list li p span {
  display: block;
  margin-bottom: 30px;
}
.recruitRecruitment_box-list li p span:last-child {
  margin-bottom: 0;
}

.entryPage .entryPage_article {
  margin-top: 0;
  margin-bottom: 300px;
}
@media screen and (max-width: 767px) {
  .entryPage .entryPage_article {
    margin-bottom: 140px;
  }
}
.entryPage .entryPage_article .entryPage-heading {
  text-align: center;
  margin-bottom: 20px;
}
.entryPage .entryPage_article .entryPage-heading span.ja {
  font-size: 25px;
  font-size: 2.5rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .entryPage .entryPage_article .entryPage-heading span.ja {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.entryPage .entryPage_article .recruitPage_nav-button {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .entryPage .entryPage_article .recruitPage_nav-button {
    margin-top: 40px;
  }
}
.entryPage .entryPage_article .recruitPage_nav-button a span.ja {
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1.75;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 767px) {
  .entryPage .entryPage_article .recruitPage_nav-button a span.ja {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.entryPage .recruitPage_section-heading {
  padding-left: 0;
  padding-right: 0;
}
.entryPage .recruitPage_button {
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .entryPage .recruitPage_button {
    margin-bottom: 60px;
  }
}
.entryPage .recruitPage_company .recruitPage_requirements-list {
  max-width: calc(1000px + 16.6666666667vw);
  padding: 0 calc(8.3333333333vw - 12px);
  margin: 0 auto;
}
.entryPage_navi {
  margin: -100px 0 100px;
  border-top: 1px solid;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .entryPage_navi {
    margin: -60px 0 80px;
  }
}
.entryPage_navi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 20px;
  max-width: calc(500px + 16.6666666667vw);
  padding: 0 8.3333333333vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .entryPage_navi ul {
    gap: 10px;
  }
}
.entryPage_navi ul li {
  width: 50%;
}
.entryPage_navi ul li a {
  display: block;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .entryPage_navi ul li a {
    padding: 10px 0;
  }
}
.entryPage_navi ul li a span.ja {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .entryPage_navi ul li a span.ja {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.entryPage_form {
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .entryPage_form {
    margin-bottom: 100px;
  }
}
.entryPage_form .wpcf7 {
  margin-top: 0;
}
.entryPage_form form {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px;
}
.entryPage_form .formList {
  border: none;
  margin-top: 0;
}
.entryPage_form .formList .required,
.entryPage_form .formList .requied {
  display: none;
}
.entryPage_form .formList tbody tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: none;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .entryPage_form .formList tbody tr {
    margin-bottom: 10px;
  }
}
.entryPage_form .formList tbody th {
  width: 100%;
  background: none;
  font-size: 15px;
  font-size: 1.5rem;
  padding-bottom: 8px;
  font-weight: bold;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .entryPage_form .formList tbody th {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.entryPage_form .formList tbody th.select_th {
  max-width: 382px;
}
.entryPage_form .formList tbody th p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.entryPage_form .formList tbody th small {
  font-size: 12px;
  font-size: 1.2rem;
  color: #707070;
}
.entryPage_form .formList tbody td {
  width: 100%;
}
.entryPage_form .formList tbody td input[type=text], .entryPage_form .formList tbody td .wpcf7 input[type=url], .wpcf7 .entryPage_form .formList tbody td input[type=url],
.entryPage_form .formList tbody td input[type=tel],
.entryPage_form .formList tbody td input[type=email] {
  height: 52px;
}
.entryPage_form .formList tbody td input,
.entryPage_form .formList tbody td textarea,
.entryPage_form .formList tbody td select {
  width: 100%;
  background: #fff;
  border: 1px solid #000;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 1em;
}
.entryPage_form .formList tbody td textarea {
  color: #333;
  width: 100%;
}
.entryPage_form .formList tbody td select {
  height: 52px;
  color: #333;
  font-size: 100%;
}
.entryPage_form .formList tbody td .wpcf7-form-control-wrap[data-name=your-info],
.entryPage_form .formList tbody td .wpcf7-form-control-wrap[data-name=your-job] {
  position: relative;
}
.entryPage_form .formList tbody td .wpcf7-form-control-wrap[data-name=your-info]:after,
.entryPage_form .formList tbody td .wpcf7-form-control-wrap[data-name=your-job]:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
  margin-left: 0.5em;
  position: absolute;
  top: 4px;
  right: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.entryPage_form .wpcf7-not-valid-tip {
  margin-top: 5px;
}
.entryPage_form .wpcf7-confirm {
  background: #000 !important;
  border: inherit !important;
}
.entryPage_form .wpcf7-submit {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 50px auto 0 !important;
  padding: 20px !important;
  background: #000 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  -webkit-box-shadow: inset 0 0 0 6px #000, inset 0 0 0 7px rgba(255, 255, 255, 0.7);
          box-shadow: inset 0 0 0 6px #000, inset 0 0 0 7px rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.25em;
  text-indent: 0.25em;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 480px) {
  .entryPage_form .wpcf7-submit {
    max-width: 260px;
  }
}
.entryPage_form .wpcf7-submit:hover {
  opacity: 0.8;
}

/* form ======================== */
.form_caution {
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.75;
}

.salon_tourText p {
  line-height: 1.75;
  text-align: center;
  color: #000;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 480px) {
  .salon_tourText p {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/* == ■■■■■■ heading ■■■■■■ == */
.formHeading {
  border-bottom: 1px solid #000;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .formHeading {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.formTel p:nth-of-type(1) {
  margin-top: 40px;
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "Gantari", sans-serif;
  font-weight: 200;
}
@media screen and (max-width: 480px) {
  .formTel p:nth-of-type(1) {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.formTel p:nth-of-type(2) {
  font-size: 12px;
  font-size: 1.2rem;
  margin-top: 5px;
}

/* == ■■■■■■ form layout ■■■■■■ == */
table.formList {
  width: 100%;
  margin: 40px auto 0 auto;
  border-collapse: collapse;
  border: 1px solid #ddd;
}
table.formList tr {
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 480px) {
  table.formList tr {
    border-bottom: none;
  }
}
table.formList tr:last-child {
  border-bottom: none;
}
table.formList th {
  width: 20%;
  padding: 12px;
  background-color: #000;
  font-size: 13px;
  font-size: 1.3rem;
}
@media screen and (max-width: 480px) {
  table.formList th {
    width: 100%;
    display: block;
    text-align: left;
  }
}
table.formList th .requied {
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  color: #fff;
  background-color: #ffffff;
  padding: 3px 5px;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  table.formList th .requied {
    width: 40px;
    text-align: center;
  }
}
table.formList td {
  width: 70%;
  padding: 12px;
}
@media screen and (max-width: 480px) {
  table.formList td {
    width: 100%;
    display: block;
  }
}

/* contact form 7 ======================== */
.wpcf7 {
  margin-top: 40px;
}
.wpcf7 input[type=text], .wpcf7 input[type=tel], .wpcf7 input[type=url], .wpcf7 input[type=email] {
  background-color: #fff;
  color: #333;
  width: 100%;
  border: 1px solid #ddd;
  font-size: 100%;
  padding: 0.5em;
  border-radius: 4px;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1) inset;
          box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1) inset;
}
.wpcf7 .wpcf7-not-valid-tip {
  font-size: 80%;
}
.wpcf7 span.wpcf7-list-item {
  display: block;
  margin-bottom: 8px;
}
.wpcf7 span.wpcf7-list-item:last-child {
  margin-bottom: 0;
}
.wpcf7 {
  /* == ■■■■■■ btn ■■■■■■ == */
}
.wpcf7 .wpcf7-confirm {
  width: 100%;
  max-width: 240px;
  display: block;
  margin: 24px auto;
  padding: 12px 0;
  background: #ffffff;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #ffffff;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
}
.wpcf7 .entryBtn_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 500px;
  margin: 0 auto;
}
.wpcf7 .entryBtn_area li {
  width: 48%;
}
.wpcf7 .entryBtn_area li .wpcf7-submit {
  width: 100%;
  max-width: 240px;
  display: block;
  padding: 12px 0;
  background: #000;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #ffffff;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
}
.wpcf7 .entryBtn_area li .wpcf7-back {
  width: 100%;
  max-width: 240px;
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  padding: 12px 0;
  background: #eee;
  color: #333;
  border-radius: 4px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  border: 1px solid #ccc;
  text-shadow: -1px 1px 0 rgb(255, 255, 255);
}
.wpcf7 .entryBtn_area li .wpcf7-back:hover {
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 0 1px rgba(0, 0, 0, 0.2) inset;
}
.wpcf7 .wpcf7-quiz {
  width: 10% !important;
}

.asterisk {
  margin: 0 0 0 0.2em;
  color: #000;
}

/* thanks ======================== */
.thanksArea {
  text-align: center;
}
.thanksArea p {
  font-size: 1.6rem;
  margin-top: 24px;
  line-height: 2.2;
}
.thanksArea p:nth-of-type(1) {
  margin-top: 0;
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
}
@media screen and (max-width: 480px) {
  .thanksArea p:nth-of-type(1) {
    font-size: 2rem;
  }
}

.thanksArea_contact {
  max-width: 380px;
  margin: 56px auto 40px auto;
  border: 1px solid;
  padding: 16px 0;
}
.thanksArea_contact p {
  text-align: center;
}
.thanksArea_contact p:nth-of-type(1) {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
}
.thanksArea_contact p:nth-of-type(2) {
  margin-top: 16px;
}
.thanksArea_contact p:nth-of-type(2) span {
  font-size: 2.2rem;
}

/* ========================================================================== */
/* PRIVACY PORICY ========= */
/* ========================================================================== */
.privacyPageHeading .lowerPage-title span.en {
  letter-spacing: 0.1em;
  font-size: 110px;
  font-size: 11rem;
}
@media screen and (max-width: 1200px) {
  .privacyPageHeading .lowerPage-title span.en {
    font-size: 90px;
    font-size: 9rem;
  }
}
@media screen and (max-width: 991px) {
  .privacyPageHeading .lowerPage-title span.en {
    letter-spacing: 0;
  }
}
@media screen and (max-width: 767px) {
  .privacyPageHeading .lowerPage-title span.en {
    font-size: 48px;
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 480px) {
  .privacyPageHeading .lowerPage-title span.en {
    font-size: 32px;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .privacyPageHeading .lowerPage-title span.ja {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .privacyPageHeading .lowerPage-title span.ja:after {
    width: 120px;
  }
}
@media screen and (max-width: 480px) {
  .privacyPageHeading .lowerPage-title span.ja {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .privacyPageHeading .lowerPage-title span.ja:after {
    width: 40px;
  }
}
.privacyPage .privacy p {
  line-height: 2.5;
  margin-bottom: 20px;
}
.privacyPage .privacy p:last-child {
  margin-bottom: 0;
}
.privacyPage .privacy > p {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .privacyPage .privacy > p {
    margin-bottom: 60px;
  }
}
.privacyPage .privacy h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .privacyPage .privacy h2 {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}
.privacyPage .privacy h2:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-right: 1em;
}
@media screen and (max-width: 767px) {
  .privacyPage .privacy h2:before {
    width: 10px;
    height: 10px;
    margin-right: 0.5em;
  }
}
.privacyPage .privacy h3 {
  border-bottom: 1px solid;
  padding-bottom: 10px;
  margin-bottom: 10px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .privacyPage .privacy h3 {
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 20px;
  }
}
.privacyPage .privacy a {
  color: blue;
}
.privacyPage .privacy ul li {
  position: relative;
  padding-left: 1.5em;
}
.privacyPage .privacy ul li a {
  display: inline;
}
.privacyPage .privacy ul li:before {
  content: "・";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.privacyPage .privacy_area {
  max-width: 800px;
  margin: 0 auto;
}
.privacyPage .privacy_section {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .privacyPage .privacy_section {
    margin-bottom: 40px;
  }
}
.privacyPage .privacy_section:last-child {
  margin-bottom: 0;
}

/* ========================================================================== */
/* サンクス ========= */
/* ========================================================================== */
.thanksWrap {
  margin-bottom: 220px;
}
@media screen and (max-width: 767px) {
  .thanksWrap {
    margin-bottom: 132px;
  }
}
.thanksWrap p {
  line-height: 2;
  margin-bottom: 16px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .thanksWrap p {
    text-align: left;
  }
}
.thanksWrap p:nth-of-type(1) {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .thanksWrap p:nth-of-type(1) {
    text-align: center;
  }
}
.thanksWrap .thanksWrap_inner {
  max-width: 500px;
  border: 1px solid #000;
  padding: 16px;
  margin: 40px auto 0 auto;
}
.thanksWrap .thanksWrap_inner span {
  display: block;
  text-align: center;
}
.thanksWrap .thanksWrap_inner span:nth-of-type(1) {
  margin-bottom: 8px;
}
.thanksWrap .thanksWrap_inner span:nth-of-type(2) {
  font-size: 2rem;
}/*# sourceMappingURL=style.css.map */