@charset "UTF-8";
/* line-heightの上下をなくす
===================================================== */
/* letter-spacingの文末をなくす
===================================================== */
/* clearfix
===================================================== */
/* hover
===================================================== */
/* linkcolor
===================================================== */
/* z-index
===================================================== */
/* rem変換
===================================================== */
/* %変換
===================================================== */
/* vh変換(SP用)
===================================================== */
/* vw変換(SP用)
===================================================== */
/* vw変換(PC用) minとmax
===================================================== */
/* spサイズをpcへ引き伸ばし
===================================================== */
/* ラインハイト計算
===================================================== */
/* レタースペーシング計算
===================================================== */
/* right-arrow
===================================================== */
/* aspect-area(padding-top)
===================================================== */
/* aspect-area-h(height)
===================================================== */
/* youtube
===================================================== */
/* margin: 0 auto
===================================================== */
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.animated {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

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

.animated.delay-05s {
  animation-delay: 0.51s;
}

.animated.delay-1s {
  animation-delay: 1s;
}

.animated.delay-15s {
  animation-delay: 1.5s;
}

.animated.delay-2s {
  animation-delay: 2s;
}

.animated.delay-3s {
  animation-delay: 3s;
}

.animated.delay-4s {
  animation-delay: 4s;
}

.animated.delay-5s {
  animation-delay: 5s;
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  from, 11.1%, to {
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-duration: 0.75s;
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-duration: 0.75s;
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-duration: 0.75s;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  animation-duration: 0.75s;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-duration: 2s;
  animation-name: hinge;
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

/* ベースカラー変数　*/
/*リセット
--------------------------------------------*/
/*メディアクエリー
---------------------------------------------*/
/*変数
---------------------------------------------*/
/* color
===================================================== */
/*リセット
--------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 400;
  font-style: normal;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

img {
  width: 100%;
  display: block;
}

/*fonts
---------------------------------------------*/
.zenkaku {
  font-family: "zen-kaku-gothic-antique", sans-serif;
  font-style: normal;
}
.zenkaku--black {
  font-weight: 900;
}
.zenkaku--bold {
  font-weight: 700;
}
.zenkaku--medium {
  font-weight: 500;
}
.zenkaku--light {
  font-weight: 400;
}
.zenkaku--thin {
  font-weight: 300;
}

.zenkaku__New {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-style: normal;
}
.zenkaku__New--black {
  font-weight: 900;
}
.zenkaku__New--bold {
  font-weight: 700;
}
.zenkaku__New--medium {
  font-weight: 500;
}
.zenkaku__New--light {
  font-weight: 400;
}
.zenkaku__New--thin {
  font-weight: 300;
}

/* common
---------------------------------------------*/
html,
body {
  width: 100%;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.bold {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.en {
  font-family: "Oooh Baby", cursive;
  font-weight: 400;
  font-style: normal;
}

img {
  width: 100%;
  display: block;
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none !important;
  }
}

main {
  background: #e5dfd4;
}

/*content*/
div.content {
  background: #d9cbb6;
}
@media screen and (min-width: 769px) {
  div.content {
    padding: 90px 0 124px;
  }
}
@media screen and (max-width: 768px) {
  div.content {
    padding: 100px 0 125px;
  }
}
div.content div.c_title {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  color: #634a3d;
}
@media screen and (min-width: 769px) {
  div.content div.c_title {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 768px) {
  div.content div.c_title {
    margin-bottom: 35px;
  }
}
div.content div.c_title h2 {
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  div.content div.c_title h2 {
    font-size: 44px;
  }
}
@media screen and (max-width: 768px) {
  div.content div.c_title h2 {
    font-size: 30px;
  }
}
div.content div.c_title h2 span {
  color: #d46453;
}
@media screen and (min-width: 769px) {
  div.content div.c_title h2 span {
    font-size: 90px;
    display: inline-block;
    padding: 0 10px 0 0;
    vertical-align: middle;
  }
}
@media screen and (max-width: 768px) {
  div.content div.c_title h2 span {
    font-size: 76px;
    display: inline-block;
    padding: 0 10px 0 0;
    vertical-align: middle;
  }
}
div.content div.c_title p {
  background: url(../images/ribbon.png);
  background-size: contain;
  background-repeat: no-repeat;
  text-align: center;
  font-size: 20px;
  width: 307px;
  height: 63px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  div.content div.c_title p {
    font-size: 20px;
    width: 77%;
    height: 55px;
    margin: 0 auto 20px;
    letter-spacing: 0.7px;
  }
}
div.content div.c_title p span {
  position: relative;
  line-height: 1;
  top: 10px;
}
@media screen and (min-width: 769px) {
  div.content ul.item {
    display: grid;
    grid-template-columns: repeat(5, 200px);
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 30px;
    list-style: none;
    padding: 0;
    width: 1032px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  div.content ul.item {
    width: 93.3333333333%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.8571428571%;
  }
}
div.content ul.item li {
  background: #634a3d;
  border-radius: 10px 10px 20px 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  div.content ul.item li {
    width: 48.5714285714%;
    margin-bottom: 8px;
    padding-bottom: 36px;
    position: relative;
    overflow: hidden;
  }
}
@media screen and (min-width: 769px) {
  div.content ul.item li {
    width: 200px;
    box-sizing: border-box;
    padding: 5px 5px 7px 5px;
  }
}
@media screen and (min-width: 769px) {
  div.content ul.item li::before {
    content: "";
    display: block;
    padding-top: 177.5%;
  }
}
@media screen and (min-width: 769px) {
  div.content ul.item li:nth-child(-n+4) {
    grid-row: 1;
    margin-left: 105px;
  }
}
@media screen and (min-width: 769px) {
  div.content ul.item li:nth-child(n+5):nth-child(-n+9) {
    grid-row: 2;
  }
}
@media screen and (min-width: 769px) {
  div.content ul.item li:nth-child(n+10) {
    grid-row: 3;
    margin-left: 105px;
  }
}
@media screen and (max-width: 768px) {
  div.content ul.item li img {
    width: 95.2941176471%;
    margin: 4px auto 8px;
  }
}
@media screen and (min-width: 769px) {
  div.content ul.item li img {
    margin-bottom: 10px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 190px;
  }
}
div.content ul.item li p {
  color: #fff;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  div.content ul.item li p {
    width: 92.9411764706%;
    margin: 0 auto 17px;
    font-size: 12px;
  }
}
@media screen and (min-width: 769px) {
  div.content ul.item li p {
    font-size: 14px;
    position: absolute;
    top: 71.2676056338%;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
  }
}
div.content ul.item li div.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: none;
  box-shadow: 0;
  background: #d46453;
}
div.content ul.item li div.btn::before {
  content: "投票する";
}
@media screen and (max-width: 768px) {
  div.content ul.item li div.btn::before {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  div.content ul.item li div.btn {
    border-radius: 70px;
    width: 92.9411764706%;
    margin: 0 auto 6px;
    height: 30px;
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  div.content ul.item li div.btn {
    border-radius: 70px;
    height: 36px;
    width: 186px;
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
  }
}
div.content ul.item li div.btn.active {
  pointer-events: none;
  background: #efe9df;
}
div.content ul.item li div.btn.active::before {
  content: "投票しました";
  color: #634a3d;
}
@media screen and (max-width: 768px) {
  div.content ul.item li div.btn.active::before {
    font-size: 14px;
  }
}
div.content ul.item li div.btn.end {
  pointer-events: none;
  background: #efe9df;
}
div.content ul.item li div.btn.end::before {
  content: "受付終了しました";
  color: #634a3d;
}
@media screen and (max-width: 768px) {
  div.content ul.item li div.btn.end::before {
    font-size: 14px;
  }
}

/*footer*/
footer {
  position: relative;
  background: #d46453;
}
@media screen and (min-width: 769px) {
  footer {
    padding: 76px 0 28px;
  }
}
@media screen and (max-width: 768px) {
  footer {
    padding: 90px 0 30px;
  }
}
footer::before {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background: #d46453;
  position: absolute;
  top: -5px;
  left: 0;
}
footer p {
  text-align: center;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  footer p {
    font-size: 32px;
  }
}
@media screen and (min-width: 769px) {
  footer p {
    font-size: 36px;
  }
}
footer p.f_p1 {
  letter-spacing: 0.03em;
}
@media screen and (min-width: 769px) {
  footer p.f_p1 span.inner {
    background: linear-gradient(transparent 80%, rgba(221, 190, 169, 0.7) 80%);
    padding: 0 5px;
    display: inline-block;
  }
}
footer p.f_p1 span.line {
  display: inline-block;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  footer p.f_p1 span.line {
    background: linear-gradient(transparent 80%, rgba(221, 190, 169, 0.7) 80%);
    font-weight: 500;
  }
}
@media screen and (max-width: 768px) {
  footer p.f_p1 span.line:first-child {
    margin-bottom: 10px;
    padding: 0 5px;
    font-weight: 500;
  }
}
@media screen and (max-width: 768px) {
  footer p.f_p1 span.num {
    font-size: 43px;
    font-weight: 500;
  }
}
@media screen and (min-width: 769px) {
  footer p.f_p1 span.num {
    font-size: 48px;
  }
}
footer p.f_p1 span.circle {
  background: #fff;
  color: #d46453;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  footer p.f_p1 span.circle {
    font-size: 22px;
    width: 27px;
    height: 27px;
    line-height: 26px;
    top: -2px;
    font-weight: 500;
    margin-right: 7px;
    text-align: center;
    text-indent: 2px;
  }
}
@media screen and (min-width: 769px) {
  footer p.f_p1 span.circle {
    font-size: 25px;
    width: 31px;
    height: 31px;
    line-height: 28px;
    top: -3px;
    margin-right: 16px;
  }
}
footer p.f_p2 {
  line-height: 1.46;
}
@media screen and (max-width: 768px) {
  footer p.f_p2 {
    font-size: 26px;
    margin-top: 56px;
  }
}
@media screen and (min-width: 769px) {
  footer p.f_p2 {
    font-size: 30px;
    margin-top: 41px;
  }
}
footer a {
  display: block;
}
@media screen and (max-width: 768px) {
  footer a {
    width: 29.8666666667%;
    margin: 90px auto 0;
  }
}
@media screen and (min-width: 769px) {
  footer a {
    width: 125px;
    margin: 63px auto 0;
  }
}

/*modal*/
.modal {
  display: none;
  width: 100%;
  height: 100vh;
  background: rgba(17, 17, 17, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}
.modal .m_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  box-sizing: border-box;
  border: 10px solid #d46453;
  border-left: none;
  border-right: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .modal .m_inner {
    width: 420px;
    height: 280px;
  }
}
@media screen and (max-width: 768px) {
  .modal .m_inner {
    width: 93.3333333333%;
  }
}
@media screen and (max-width: 768px) {
  .modal .m_inner::before {
    content: "";
    display: block;
    padding-top: 60%;
  }
}
.modal .m_inner p {
  color: #d46453;
  font-size: 34px;
}
.modal .m_inner p span {
  display: block;
  font-size: 14px;
  margin-top: 15px;
}
.modal .m_inner div.close_btn {
  position: absolute;
  right: 0;
}
@media screen and (min-width: 769px) {
  .modal .m_inner div.close_btn {
    width: 38px;
    top: -58px;
  }
}
@media screen and (max-width: 768px) {
  .modal .m_inner div.close_btn {
    top: -51px;
    width: 32px;
  }
}

/* ORG */
.basein {
  max-width: 985px;
  width: 100%;
  margin: 0 auto;
}

.main_viz {
  position: relative;
  margin: 30px 0;
}
.main_viz::before, .main_viz::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 30px;
  background: url(../images/og/main_border01.webp) no-repeat;
}
.main_viz::before {
  top: -30px;
  background-size: cover;
  background-position: 50%;
}
.main_viz::after {
  bottom: -30px;
  background-size: cover;
  background-position: 50%;
}
.main_viz .main_bgAnimation {
  position: relative;
  overflow: hidden;
}
.main_viz .main_bgAnimation::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(99, 74, 61, 0.5);
  z-index: 1;
}
.main_viz .main_bgAnimation.slider-wrapper {
  display: flex;
  overflow: hidden;
}
.main_viz .main_bgAnimation.slider-wrapper .left_mov.slider {
  animation: scroll-left 60s infinite linear 0.5s both;
  display: flex;
  justify-content: flex-start;
}
.main_viz .main_bgAnimation.slider-wrapper .right_mov.slider {
  animation: scroll-right 60s infinite linear 0.5s both;
  display: flex;
  justify-content: flex-end;
}
.main_viz .main_bgAnimation.slider-wrapper .slide {
  width: 16.6666666667vw;
}
@media screen and (max-width: 768px) {
  .main_viz .main_bgAnimation.slider-wrapper .slide {
    width: 33.3333333333vw;
  }
}
.main_viz .main_bgAnimation.slider-wrapper .slide img {
  display: block;
  width: 100%;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.main_viz .basein .title_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  z-index: 2;
  max-width: 543px;
  text-align: center;
}
.main_viz .basein .title_wrap h1 {
  font-size: 126px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 15px;
}
.main_viz .basein .title_wrap h1 span {
  font-size: 100px;
  display: block;
  vertical-align: middle;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.main_viz .basein .title_wrap .title_ribbon {
  max-width: 421px;
  width: 100%;
  margin: 21px auto 0;
}
.main_viz .basein .title_wrap .sub_title {
  font-size: 24px;
  color: #fff;
  writing-mode: vertical-rl;
  text-align: left;
  position: absolute;
  top: -4px;
  right: -55px;
}
.main_viz .basein .title_wrap .sub_title span {
  display: table;
  background: #d46453;
  padding: 7px 5px 13px;
  transform: rotate(6deg);
  font-weight: 500;
  letter-spacing: -7px;
}
.main_viz .basein .title_wrap .sub_title span:first-child {
  margin-left: 20px;
}

.content01 {
  color: #634a3d;
}
@media screen and (min-width: 769px) {
  .content01 .basein {
    padding: 100px 0;
  }
}
@media screen and (max-width: 768px) {
  .content01 .basein {
    padding: 80px 12px 128px;
    box-sizing: border-box;
  }
}
.content01 .basein h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 52px;
}
@media screen and (max-width: 768px) {
  .content01 .basein h2 {
    font-size: clamp(1.313rem, 0.926rem + 1.93vw, 2.375rem);
  }
}
.content01 .basein h2 .title_wrapper {
  position: relative;
}
@media screen and (max-width: 768px) {
  .content01 .basein h2 .title_wrapper {
    font-size: 26px;
    padding: 0;
  }
}
.content01 .basein h2 .title_wrapper::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: calc(50% - 6px);
  transform: translateX(-50%);
  width: 100%;
  height: 18px;
  background: rgba(203, 128, 89, 0.35);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .content01 .basein h2 .title_wrapper::after {
    bottom: 2px;
    left: 27px;
    width: 80%;
    height: 12px;
  }
}
.content01 .basein h2 .title_wrapper i {
  display: inline-block;
  position: relative;
  letter-spacing: 1px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .content01 .basein h2 .title_wrapper i {
    margin-top: 30px;
    letter-spacing: normal;
  }
}
.content01 .basein h2 .title_wrapper i .title_item {
  position: relative;
  font-size: 38px;
  padding: 0 14px 0 25px;
}
@media screen and (max-width: 768px) {
  .content01 .basein h2 .title_wrapper i .title_item {
    font-size: 30px;
  }
}
.content01 .basein h2 .title_wrapper i .title_item::before {
  content: "“";
  color: #d46453;
  position: absolute;
  top: 0;
  left: 2px;
  font-size: 50px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .content01 .basein h2 .title_wrapper i .title_item::before {
    font-size: 42px;
    left: 5px;
  }
}
.content01 .basein h2 .title_wrapper i .title_item::after {
  content: "”";
  color: #d46453;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 50px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .content01 .basein h2 .title_wrapper i .title_item::after {
    font-size: 42px;
  }
}
.content01 .basein .sub_title {
  font-size: 30px;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.9px;
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .content01 .basein .sub_title {
    font-size: 23px;
    padding: 30px 0 18px;
  }
}
.content01 .basein .sub_title i {
  display: block;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .content01 .basein .sub_title i {
    line-height: 37px;
  }
}
.content01 .basein .sub_title span {
  background: #fff;
  padding: 0 6px 3px;
  border-radius: 3px;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .content01 .basein .sub_title span {
    display: inline-block;
    padding: 0 6px 0;
  }
}
.content01 .basein .lead_txt {
  text-align: center;
  font-size: 16px;
  line-height: 33px;
  letter-spacing: 1px;
}
.content01 .basein .lead_txt.first_txt {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .content01 .basein .lead_txt.first_txt {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: normal;
  }
}
.content01 .basein .lead_txt + .lead_txt {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .content01 .basein .lead_txt + .lead_txt {
    font-size: 16px;
    letter-spacing: normal;
    font-weight: 500;
  }
}

.period {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .period {
    margin: 0 10px;
  }
}
.period .basein {
  padding: 91px 0 50px;
  margin-bottom: 90px;
  background: #fff;
  border-radius: 28px;
}
@media screen and (max-width: 768px) {
  .period .basein {
    margin-bottom: 100px;
    padding: 91px 0 60px;
  }
}
.period .basein h3 {
  text-align: center;
  font-size: 32px;
  margin-top: -116px;
}
@media screen and (max-width: 768px) {
  .period .basein h3 {
    font-size: 28px;
    margin-top: -117px;
  }
}
.period .basein h3 span {
  display: inline-block;
  padding: 8px 0 10px;
  background: #d46453;
  color: #fff;
  max-width: 264px;
  width: 100%;
  border-radius: 40px;
  letter-spacing: 5px;
}
@media screen and (max-width: 768px) {
  .period .basein h3 span {
    padding: 11px 0 13px;
  }
}
.period .basein .period_bold {
  font-size: 47px;
  color: #634a3d;
  padding: 40px 0 45px;
  letter-spacing: 1px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .period .basein .period_bold {
    font-size: 36px;
    padding: 30px 0 45px;
    font-weight: 500;
    letter-spacing: normal;
  }
}
.period .basein .period_bold .small_txt {
  font-size: 31px;
  padding: 0 3px;
}
@media screen and (max-width: 768px) {
  .period .basein .period_bold .small_txt {
    font-size: 23px;
    font-weight: 500;
  }
}
.period .basein .period_bold em {
  font-size: 71px;
}
@media screen and (max-width: 768px) {
  .period .basein .period_bold em {
    font-weight: 500;
    font-size: 54px;
  }
}
.period .basein .bigest_txt {
  font-size: 71px;
}
.period .basein .bigest_txt .month {
  font-size: 41px;
}
@media screen and (max-width: 768px) {
  .period .basein .bigest_txt .month {
    font-size: 34px;
    font-weight: 500;
  }
}
.period .basein .bigest_txt .ciecle {
  font-size: 30px;
  background: #634a3d;
  color: #fff;
  border-radius: 50%;
  padding: 0 6px;
  line-height: 43px;
  display: inline-block;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .period .basein .bigest_txt .ciecle {
    font-size: 22px;
    padding: 0 5px 2px;
    line-height: 30px;
  }
}
.period .basein .bigest_txt .quatro {
  font-size: 39.2px;
  padding: 0 13px 5px;
  display: inline-block;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .period .basein .bigest_txt .quatro {
    ppadding: 0;
    font-size: 29px;
    vertical-align: middle;
    font-weight: 500;
    padding-right: 6px;
  }
}
.period .basein .period_sub {
  text-align: center;
  line-height: 1.5;
  font-size: 20px;
  color: #634a3d;
}
@media screen and (max-width: 768px) {
  .period .basein .period_sub {
    font-size: 16px;
  }
}
.period .basein .movie {
  margin: 0 auto;
  text-align: center;
  padding: 30px 0 0;
}
.period .basein .movie .movie_video {
  margin: 0 auto;
}
.period .basein .links.insta {
  padding: 15px 0 15px 38px;
  color: #d46453;
  border: 1px solid #d46453;
  border-radius: 40px;
  margin: 48px auto 0;
  display: block;
  font-size: 22px;
  width: 100%;
  max-width: 242px;
  background: url(../images/og/insta.svg) no-repeat;
  background-size: 46px;
  background-position: 2px 50%;
}
@media screen and (max-width: 768px) {
  .period .basein .links.insta {
    margin: 54px auto 0;
    padding: 11px 14px 15px 25px;
    font-size: 18px;
    background-size: 36px;
    max-width: 279px;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 768px) {
  .main_viz .basein {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 66px);
    height: 100%;
    z-index: 1;
  }
  .main_viz .sp_title_wrap {
    text-align: center;
  }
  .main_viz .sp_title_wrap .sp_sub_title {
    background: #d46453;
    color: #fff;
    text-align: center;
    padding: 5px;
    line-height: 1.3;
    font-size: 16px;
    display: inline-block;
    width: auto;
  }
  .main_viz .sp_title_wrap .sp_sub_title span, .main_viz .sp_title_wrap .sp_sub_title i {
    font-weight: 700;
  }
  .main_viz .sp_title_wrap h1 {
    text-align: center;
    font-size: 88px;
    letter-spacing: 6px;
    color: #fff;
    margin: 3vh 0 10px;
  }
  .main_viz .sp_title_wrap h1 span {
    font-size: 70px;
    display: block;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
  }
}/*# sourceMappingURL=style.css.map */