@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0s ease-out;
  -o-transition: all 0s ease-out;
  transition: all 0s ease-out;
}

*::before,
*::after {
  -webkit-transition: all 0s ease-out;
  -o-transition: all 0s ease-out;
  transition: all 0s ease-out;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 16px;
  /*font-family: 'Noto Sans JP', 'Roboto', sans-serif;*/
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  color: #292929;
  line-height: 1;
  text-align: justify;
  background: #292929;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Noto Sans JP', 'Roboto', sans-serif;
  font-size: inherit;
  font-weight: bold;
}

ul,
li {
  list-style: none;
}

a, object {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0s ease-out;
  -o-transition: all 0s ease-out;
  transition: all 0s ease-out;
  display: inline-block;
}

table {
  border-collapse: collapse;
}

i, em {
  display: inline-block;
  font-size: inherit;
  font-style: normal;
  line-height: 1;
}

strong, small, big, b {
  font-size: inherit;
  font-style: normal;
  line-height: 1;
}

picture,
source,
img {
  width: 100%;
  max-width: 100%;
  vertical-align: top;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
}

svg {
  fill: currentColor;
}

button {
  border: none;
  cursor: pointer;
}

input,
button {
  outline: none;
  /*border: 1px solid #C0BFBC;*/
  border: none;
}

section {
  position: relative;
}

@media screen and (max-width: 1280px) {
  html {
    font-size: 100%;
  }
  body {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 4.6875vw;
  }
}

/*
Animate.css - http://daneden.me/animate
Licensed under the ☺ license (http://licence.visualidiot.com/)

Copyright (c) 2012 Dan Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
body {
  /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
  -webkit-backface-visibility: hidden;
}

.animated {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@-moz-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@-o-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  -moz-animation-name: flash;
  -o-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
  }
}

@-moz-keyframes shake {
  0%, 100% {
    -moz-transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -moz-transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -moz-transform: translateX(10px);
  }
}

@-o-keyframes shake {
  0%, 100% {
    -o-transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -o-transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -o-transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.shake {
  -webkit-animation-name: shake;
  -moz-animation-name: shake;
  -o-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
  }
}

@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
  }
}

@-o-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -o-transform: translateY(0);
  }
  40% {
    -o-transform: translateY(-30px);
  }
  60% {
    -o-transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  -moz-animation-name: bounce;
  -o-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
  }
}

@-moz-keyframes tada {
  0% {
    -moz-transform: scale(1);
  }
  10%, 20% {
    -moz-transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -moz-transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -moz-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -moz-transform: scale(1) rotate(0);
  }
}

@-o-keyframes tada {
  0% {
    -o-transform: scale(1);
  }
  10%, 20% {
    -o-transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -o-transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -o-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -o-transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

.tada {
  -webkit-animation-name: tada;
  -moz-animation-name: tada;
  -o-animation-name: tada;
  animation-name: tada;
}

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

@-moz-keyframes swing {
  20% {
    -moz-transform: rotate(15deg);
  }
  40% {
    -moz-transform: rotate(-10deg);
  }
  60% {
    -moz-transform: rotate(5deg);
  }
  80% {
    -moz-transform: rotate(-5deg);
  }
  100% {
    -moz-transform: rotate(0deg);
  }
}

@-o-keyframes swing {
  20% {
    -o-transform: rotate(15deg);
  }
  40% {
    -o-transform: rotate(-10deg);
  }
  60% {
    -o-transform: rotate(5deg);
  }
  80% {
    -o-transform: rotate(-5deg);
  }
  100% {
    -o-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);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  -o-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  -moz-animation-name: swing;
  -o-animation-name: swing;
  animation-name: swing;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}

@-moz-keyframes wobble {
  0% {
    -moz-transform: translateX(0%);
  }
  15% {
    -moz-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -moz-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -moz-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -moz-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -moz-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -moz-transform: translateX(0%);
  }
}

@-o-keyframes wobble {
  0% {
    -o-transform: translateX(0%);
  }
  15% {
    -o-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -o-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -o-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -o-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -o-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -o-transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  -moz-animation-name: wobble;
  -o-animation-name: wobble;
  animation-name: wobble;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}

@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(1);
  }
  50% {
    -moz-transform: scale(1.1);
  }
  100% {
    -moz-transform: scale(1);
  }
}

@-o-keyframes pulse {
  0% {
    -o-transform: scale(1);
  }
  50% {
    -o-transform: scale(1.1);
  }
  100% {
    -o-transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  -o-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
}

@-moz-keyframes flip {
  0% {
    -moz-transform: perspective(400px) rotateY(0);
    -moz-animation-timing-function: ease-out;
  }
  40% {
    -moz-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -moz-animation-timing-function: ease-out;
  }
  50% {
    -moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -moz-animation-timing-function: ease-in;
  }
  80% {
    -moz-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -moz-animation-timing-function: ease-in;
  }
  100% {
    -moz-transform: perspective(400px) scale(1);
    -moz-animation-timing-function: ease-in;
  }
}

@-o-keyframes flip {
  0% {
    -o-transform: perspective(400px) rotateY(0);
    -o-animation-timing-function: ease-out;
  }
  40% {
    -o-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -o-animation-timing-function: ease-out;
  }
  50% {
    -o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -o-animation-timing-function: ease-in;
  }
  80% {
    -o-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -o-animation-timing-function: ease-in;
  }
  100% {
    -o-transform: perspective(400px) scale(1);
    -o-animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
    transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) scale(1);
    transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.flip {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flip;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flip;
  -o-backface-visibility: visible !important;
  -o-animation-name: flip;
  backface-visibility: visible !important;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@-moz-keyframes flipInX {
  0% {
    -moz-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -moz-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -moz-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -moz-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@-o-keyframes flipInX {
  0% {
    -o-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -o-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -o-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -o-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInX;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInX;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@-moz-keyframes flipOutX {
  0% {
    -moz-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -moz-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@-o-keyframes flipOutX {
  0% {
    -o-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -o-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -moz-animation-name: flipOutX;
  -moz-backface-visibility: visible !important;
  -o-animation-name: flipOutX;
  -o-backface-visibility: visible !important;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@-moz-keyframes flipInY {
  0% {
    -moz-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -moz-transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -moz-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -moz-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@-o-keyframes flipInY {
  0% {
    -o-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -o-transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -o-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -o-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInY;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@-moz-keyframes flipOutY {
  0% {
    -moz-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -moz-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@-o-keyframes flipOutY {
  0% {
    -o-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -o-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipOutY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipOutY;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}

@-o-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  -moz-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}

@-o-keyframes fadeInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  -moz-animation-name: fadeInUpBig;
  -o-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  -moz-animation-name: fadeInDownBig;
  -o-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}

@-o-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  -moz-animation-name: fadeInLeftBig;
  -o-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}

@-o-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  -moz-animation-name: fadeInRightBig;
  -o-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  -moz-animation-name: fadeOut;
  -o-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
}

@-moz-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
}

@-o-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  -moz-animation-name: fadeOutUp;
  -o-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
}

@-moz-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
}

@-o-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  -moz-animation-name: fadeOutDown;
  -o-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
}

@-moz-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(-20px);
  }
}

@-o-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  -moz-animation-name: fadeOutLeft;
  -o-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
}

@-moz-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(20px);
  }
}

@-o-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  -moz-animation-name: fadeOutRight;
  -o-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}

@-moz-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
}

@-o-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  -moz-animation-name: fadeOutUpBig;
  -o-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}

@-moz-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
}

@-o-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  -moz-animation-name: fadeOutDownBig;
  -o-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}

@-moz-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
}

@-o-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  -moz-animation-name: fadeOutLeftBig;
  -o-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}

@-moz-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
}

@-o-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  -moz-animation-name: fadeOutRightBig;
  -o-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
  }
}

@-moz-keyframes bounceIn {
  0% {
    opacity: 0;
    -moz-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -moz-transform: scale(1.05);
  }
  70% {
    -moz-transform: scale(0.9);
  }
  100% {
    -moz-transform: scale(1);
  }
}

@-o-keyframes bounceIn {
  0% {
    opacity: 0;
    -o-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -o-transform: scale(1.05);
  }
  70% {
    -o-transform: scale(0.9);
  }
  100% {
    -o-transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  -moz-animation-name: bounceIn;
  -o-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes bounceInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateY(-30px);
  }
  80% {
    -moz-transform: translateY(10px);
  }
  100% {
    -moz-transform: translateY(0);
  }
}

@-o-keyframes bounceInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateY(-30px);
  }
  80% {
    -o-transform: translateY(10px);
  }
  100% {
    -o-transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  -moz-animation-name: bounceInUp;
  -o-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes bounceInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateY(30px);
  }
  80% {
    -moz-transform: translateY(-10px);
  }
  100% {
    -moz-transform: translateY(0);
  }
}

@-o-keyframes bounceInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateY(30px);
  }
  80% {
    -o-transform: translateY(-10px);
  }
  100% {
    -o-transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  -moz-animation-name: bounceInDown;
  -o-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(30px);
  }
  80% {
    -moz-transform: translateX(-10px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}

@-o-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateX(30px);
  }
  80% {
    -o-transform: translateX(-10px);
  }
  100% {
    -o-transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  -moz-animation-name: bounceInLeft;
  -o-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes bounceInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(-30px);
  }
  80% {
    -moz-transform: translateX(10px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}

@-o-keyframes bounceInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateX(-30px);
  }
  80% {
    -o-transform: translateX(10px);
  }
  100% {
    -o-transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  -moz-animation-name: bounceInRight;
  -o-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
}

@-moz-keyframes bounceOut {
  0% {
    -moz-transform: scale(1);
  }
  25% {
    -moz-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -moz-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -moz-transform: scale(0.3);
  }
}

@-o-keyframes bounceOut {
  0% {
    -o-transform: scale(1);
  }
  25% {
    -o-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -o-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -o-transform: scale(0.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  -moz-animation-name: bounceOut;
  -o-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}

@-moz-keyframes bounceOutUp {
  0% {
    -moz-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
}

@-o-keyframes bounceOutUp {
  0% {
    -o-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  -moz-animation-name: bounceOutUp;
  -o-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}

@-moz-keyframes bounceOutDown {
  0% {
    -moz-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
}

@-o-keyframes bounceOutDown {
  0% {
    -o-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  -moz-animation-name: bounceOutDown;
  -o-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}

@-moz-keyframes bounceOutLeft {
  0% {
    -moz-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
}

@-o-keyframes bounceOutLeft {
  0% {
    -o-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  -moz-animation-name: bounceOutLeft;
  -o-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}

@-moz-keyframes bounceOutRight {
  0% {
    -moz-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
}

@-o-keyframes bounceOutRight {
  0% {
    -o-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  -moz-animation-name: bounceOutRight;
  -o-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@-moz-keyframes rotateIn {
  0% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}

@-o-keyframes rotateIn {
  0% {
    -o-transform-origin: center center;
    -o-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: center center;
    -o-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  -moz-animation-name: rotateIn;
  -o-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@-moz-keyframes rotateInUpLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}

@-o-keyframes rotateInUpLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  -moz-animation-name: rotateInUpLeft;
  -o-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@-moz-keyframes rotateInDownLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}

@-o-keyframes rotateInDownLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  -moz-animation-name: rotateInDownLeft;
  -o-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@-moz-keyframes rotateInUpRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}

@-o-keyframes rotateInUpRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  -moz-animation-name: rotateInUpRight;
  -o-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@-moz-keyframes rotateInDownRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}

@-o-keyframes rotateInDownRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  -moz-animation-name: rotateInDownRight;
  -o-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(200deg);
    opacity: 0;
  }
}

@-moz-keyframes rotateOut {
  0% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(200deg);
    opacity: 0;
  }
}

@-o-keyframes rotateOut {
  0% {
    -o-transform-origin: center center;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: center center;
    -o-transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  -moz-animation-name: rotateOut;
  -o-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}

@-moz-keyframes rotateOutUpLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
}

@-o-keyframes rotateOutUpLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  -moz-animation-name: rotateOutUpLeft;
  -o-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}

@-moz-keyframes rotateOutDownLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
}

@-o-keyframes rotateOutDownLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  -moz-animation-name: rotateOutDownLeft;
  -o-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}

@-moz-keyframes rotateOutUpRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
}

@-o-keyframes rotateOutUpRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  -moz-animation-name: rotateOutUpRight;
  -o-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}

@-moz-keyframes rotateOutDownRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
}

@-o-keyframes rotateOutDownRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  -moz-animation-name: rotateOutDownRight;
  -o-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

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

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

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

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    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;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -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;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  -moz-animation-name: hinge;
  -o-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
}

@-moz-keyframes rollIn {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0px) rotate(0deg);
  }
}

@-o-keyframes rollIn {
  0% {
    opacity: 0;
    -o-transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  -moz-animation-name: rollIn;
  -o-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
  }
}

@-moz-keyframes rollOut {
  0% {
    opacity: 1;
    -moz-transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(100%) rotate(120deg);
  }
}

@-o-keyframes rollOut {
  0% {
    opacity: 1;
    -o-transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  -moz-animation-name: rollOut;
  -o-animation-name: rollOut;
  animation-name: rollOut;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */
@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@-moz-keyframes lightSpeedIn {
  0% {
    -moz-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -moz-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -moz-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@-o-keyframes lightSpeedIn {
  0% {
    -o-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -o-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -o-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -o-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  -moz-animation-name: lightSpeedIn;
  -o-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  -moz-animation-timing-function: ease-out;
  -o-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.animated.lightSpeedIn {
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */
@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@-moz-keyframes lightSpeedOut {
  0% {
    -moz-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@-o-keyframes lightSpeedOut {
  0% {
    -o-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -o-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  -moz-animation-name: lightSpeedOut;
  -o-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -o-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.animated.lightSpeedOut {
  -webkit-animation-duration: 0.25s;
  -moz-animation-duration: 0.25s;
  -o-animation-duration: 0.25s;
  animation-duration: 0.25s;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */
@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg);
  }
  10% {
    -webkit-transform: skewX(-8deg);
  }
  20% {
    -webkit-transform: skewX(7deg);
  }
  30% {
    -webkit-transform: skewX(-6deg);
  }
  40% {
    -webkit-transform: skewX(5deg);
  }
  50% {
    -webkit-transform: skewX(-4deg);
  }
  60% {
    -webkit-transform: skewX(3deg);
  }
  70% {
    -webkit-transform: skewX(-2deg);
  }
  80% {
    -webkit-transform: skewX(1deg);
  }
  90% {
    -webkit-transform: skewX(0deg);
  }
  100% {
    -webkit-transform: skewX(0deg);
  }
}

@-moz-keyframes wiggle {
  0% {
    -moz-transform: skewX(9deg);
  }
  10% {
    -moz-transform: skewX(-8deg);
  }
  20% {
    -moz-transform: skewX(7deg);
  }
  30% {
    -moz-transform: skewX(-6deg);
  }
  40% {
    -moz-transform: skewX(5deg);
  }
  50% {
    -moz-transform: skewX(-4deg);
  }
  60% {
    -moz-transform: skewX(3deg);
  }
  70% {
    -moz-transform: skewX(-2deg);
  }
  80% {
    -moz-transform: skewX(1deg);
  }
  90% {
    -moz-transform: skewX(0deg);
  }
  100% {
    -moz-transform: skewX(0deg);
  }
}

@-o-keyframes wiggle {
  0% {
    -o-transform: skewX(9deg);
  }
  10% {
    -o-transform: skewX(-8deg);
  }
  20% {
    -o-transform: skewX(7deg);
  }
  30% {
    -o-transform: skewX(-6deg);
  }
  40% {
    -o-transform: skewX(5deg);
  }
  50% {
    -o-transform: skewX(-4deg);
  }
  60% {
    -o-transform: skewX(3deg);
  }
  70% {
    -o-transform: skewX(-2deg);
  }
  80% {
    -o-transform: skewX(1deg);
  }
  90% {
    -o-transform: skewX(0deg);
  }
  100% {
    -o-transform: skewX(0deg);
  }
}

@keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg);
    transform: skewX(9deg);
  }
  10% {
    -webkit-transform: skewX(-8deg);
    transform: skewX(-8deg);
  }
  20% {
    -webkit-transform: skewX(7deg);
    transform: skewX(7deg);
  }
  30% {
    -webkit-transform: skewX(-6deg);
    transform: skewX(-6deg);
  }
  40% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  50% {
    -webkit-transform: skewX(-4deg);
    transform: skewX(-4deg);
  }
  60% {
    -webkit-transform: skewX(3deg);
    transform: skewX(3deg);
  }
  70% {
    -webkit-transform: skewX(-2deg);
    transform: skewX(-2deg);
  }
  80% {
    -webkit-transform: skewX(1deg);
    transform: skewX(1deg);
  }
  90% {
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
  }
  100% {
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
  }
}

.wiggle {
  -webkit-animation-name: wiggle;
  -moz-animation-name: wiggle;
  -o-animation-name: wiggle;
  animation-name: wiggle;
  -webkit-animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -o-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.animated.wiggle {
  -webkit-animation-duration: 0.75s;
  -moz-animation-duration: 0.75s;
  -o-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

/*
------------------------------------------------ */
@media screen and (max-width: 768px) {
  .is_hamburgermenu-open {
    overflow: hidden;
  }
}

/*
------------------------------------------------ */
/*
------------------------------------------------ */
.l-header {
  background: #ffffff;
  position: relative;
  z-index: 15;
}

/*
------------------------------------------------ */
.l-main {
  background: #ffffff;
  /*overflow: hidden;*/
}

/*
------------------------------------------------ */
/*
------------------------------------------------ */
.p-section .is_mt-000 {
  margin-top: 0px !important;
}

.p-section .is_mt-020 {
  margin-top: 20px !important;
}

.p-section .is_mt-040 {
  margin-top: 40px !important;
}

.p-section .is_mt-060 {
  margin-top: 60px !important;
}

.p-section .is_mt-080 {
  margin-top: 80px !important;
}

.p-section .is_mt-100 {
  margin-top: 100px !important;
}

.p-section .is_mt-120 {
  margin-top: 120px !important;
}

.p-section .is_mt-140 {
  margin-top: 140px !important;
}

.p-section .is_mt-160 {
  margin-top: 160px !important;
}

.p-section .is_mt-180 {
  margin-top: 180px !important;
}

.p-section .is_mt-200 {
  margin-top: 200px !important;
}

.p-section .is_mb-000 {
  margin-bottom: 0px !important;
}

.p-section .is_mb-020 {
  margin-bottom: 20px !important;
}

.p-section .is_mb-040 {
  margin-bottom: 40px !important;
}

.p-section .is_mb-060 {
  margin-bottom: 60px !important;
}

.p-section .is_mb-080 {
  margin-bottom: 80px !important;
}

.p-section .is_mb-100 {
  margin-bottom: 100px !important;
}

.p-section .is_mb-120 {
  margin-bottom: 120px !important;
}

.p-section .is_mb-140 {
  margin-bottom: 140px !important;
}

.p-section .is_mb-160 {
  margin-bottom: 160px !important;
}

.p-section .is_mb-180 {
  margin-bottom: 180px !important;
}

.p-section .is_mb-200 {
  margin-bottom: 200px !important;
}

.p-section .is_ml-000 {
  margin-left: 0px !important;
}

.p-section .is_ml-020 {
  margin-left: 20px !important;
}

.p-section .is_ml-040 {
  margin-left: 40px !important;
}

.p-section .is_ml-060 {
  margin-left: 60px !important;
}

.p-section .is_ml-080 {
  margin-left: 80px !important;
}

.p-section .is_ml-100 {
  margin-left: 100px !important;
}

.p-section .is_ml-120 {
  margin-left: 120px !important;
}

.p-section .is_ml-140 {
  margin-left: 140px !important;
}

.p-section .is_ml-160 {
  margin-left: 160px !important;
}

.p-section .is_ml-180 {
  margin-left: 180px !important;
}

.p-section .is_ml-200 {
  margin-left: 200px !important;
}

.p-section .is_mr-000 {
  margin-right: 0px !important;
}

.p-section .is_mr-020 {
  margin-right: 20px !important;
}

.p-section .is_mr-040 {
  margin-right: 40px !important;
}

.p-section .is_mr-060 {
  margin-right: 60px !important;
}

.p-section .is_mr-080 {
  margin-right: 80px !important;
}

.p-section .is_mr-100 {
  margin-right: 100px !important;
}

.p-section .is_mr-120 {
  margin-right: 120px !important;
}

.p-section .is_mr-140 {
  margin-right: 140px !important;
}

.p-section .is_mr-160 {
  margin-right: 160px !important;
}

.p-section .is_mr-180 {
  margin-right: 180px !important;
}

.p-section .is_mr-200 {
  margin-right: 200px !important;
}

.p-section .is_pt-000 {
  padding-top: 0px !important;
}

.p-section .is_pt-020 {
  padding-top: 20px !important;
}

.p-section .is_pt-040 {
  padding-top: 40px !important;
}

.p-section .is_pt-060 {
  padding-top: 60px !important;
}

.p-section .is_pt-080 {
  padding-top: 80px !important;
}

.p-section .is_pt-100 {
  padding-top: 100px !important;
}

.p-section .is_pt-120 {
  padding-top: 120px !important;
}

.p-section .is_pt-140 {
  padding-top: 140px !important;
}

.p-section .is_pt-160 {
  padding-top: 160px !important;
}

.p-section .is_pt-180 {
  padding-top: 180px !important;
}

.p-section .is_pt-200 {
  padding-top: 200px !important;
}

.p-section .is_pb-000 {
  padding-bottom: 0px !important;
}

.p-section .is_pb-020 {
  padding-bottom: 20px !important;
}

.p-section .is_pb-040 {
  padding-bottom: 40px !important;
}

.p-section .is_pb-060 {
  padding-bottom: 60px !important;
}

.p-section .is_pb-080 {
  padding-bottom: 80px !important;
}

.p-section .is_pb-100 {
  padding-bottom: 100px !important;
}

.p-section .is_pb-120 {
  padding-bottom: 120px !important;
}

.p-section .is_pb-140 {
  padding-bottom: 140px !important;
}

.p-section .is_pb-160 {
  padding-bottom: 160px !important;
}

.p-section .is_pb-180 {
  padding-bottom: 180px !important;
}

.p-section .is_pb-200 {
  padding-bottom: 200px !important;
}

.p-section .is_pl-000 {
  padding-left: 0px !important;
}

.p-section .is_pl-020 {
  padding-left: 20px !important;
}

.p-section .is_pl-040 {
  padding-left: 40px !important;
}

.p-section .is_pl-060 {
  padding-left: 60px !important;
}

.p-section .is_pl-080 {
  padding-left: 80px !important;
}

.p-section .is_pl-100 {
  padding-left: 100px !important;
}

.p-section .is_pl-120 {
  padding-left: 120px !important;
}

.p-section .is_pl-140 {
  padding-left: 140px !important;
}

.p-section .is_pl-160 {
  padding-left: 160px !important;
}

.p-section .is_pl-180 {
  padding-left: 180px !important;
}

.p-section .is_pl-200 {
  padding-left: 200px !important;
}

.p-section .is_pr-000 {
  padding-right: 0px !important;
}

.p-section .is_pr-020 {
  padding-right: 20px !important;
}

.p-section .is_pr-040 {
  padding-right: 40px !important;
}

.p-section .is_pr-060 {
  padding-right: 60px !important;
}

.p-section .is_pr-080 {
  padding-right: 80px !important;
}

.p-section .is_pr-100 {
  padding-right: 100px !important;
}

.p-section .is_pr-120 {
  padding-right: 120px !important;
}

.p-section .is_pr-140 {
  padding-right: 140px !important;
}

.p-section .is_pr-160 {
  padding-right: 160px !important;
}

.p-section .is_pr-180 {
  padding-right: 180px !important;
}

.p-section .is_pr-200 {
  padding-right: 200px !important;
}

@media screen and (max-width: 768px) {
  .p-section .is_mt-000 {
    margin-top: 0vw !important;
  }
  .p-section .is_mt-020 {
    margin-top: 2.60417vw !important;
  }
  .p-section .is_mt-040 {
    margin-top: 5.20833vw !important;
  }
  .p-section .is_mt-060 {
    margin-top: 7.8125vw !important;
  }
  .p-section .is_mt-080 {
    margin-top: 10.41667vw !important;
  }
  .p-section .is_mt-100 {
    margin-top: 13.02083vw !important;
  }
  .p-section .is_mt-120 {
    margin-top: 15.625vw !important;
  }
  .p-section .is_mt-140 {
    margin-top: 18.22917vw !important;
  }
  .p-section .is_mt-160 {
    margin-top: 20.83333vw !important;
  }
  .p-section .is_mt-180 {
    margin-top: 23.4375vw !important;
  }
  .p-section .is_mt-200 {
    margin-top: 26.04167vw !important;
  }
  .p-section .is_mb-000 {
    margin-bottom: 0vw !important;
  }
  .p-section .is_mb-020 {
    margin-bottom: 2.60417vw !important;
  }
  .p-section .is_mb-040 {
    margin-bottom: 5.20833vw !important;
  }
  .p-section .is_mb-060 {
    margin-bottom: 7.8125vw !important;
  }
  .p-section .is_mb-080 {
    margin-bottom: 10.41667vw !important;
  }
  .p-section .is_mb-100 {
    margin-bottom: 13.02083vw !important;
  }
  .p-section .is_mb-120 {
    margin-bottom: 15.625vw !important;
  }
  .p-section .is_mb-140 {
    margin-bottom: 18.22917vw !important;
  }
  .p-section .is_mb-160 {
    margin-bottom: 20.83333vw !important;
  }
  .p-section .is_mb-180 {
    margin-bottom: 23.4375vw !important;
  }
  .p-section .is_mb-200 {
    margin-bottom: 26.04167vw !important;
  }
  .p-section .is_ml-000 {
    margin-left: 0vw !important;
  }
  .p-section .is_ml-020 {
    margin-left: 2.60417vw !important;
  }
  .p-section .is_ml-040 {
    margin-left: 5.20833vw !important;
  }
  .p-section .is_ml-060 {
    margin-left: 7.8125vw !important;
  }
  .p-section .is_ml-080 {
    margin-left: 10.41667vw !important;
  }
  .p-section .is_ml-100 {
    margin-left: 13.02083vw !important;
  }
  .p-section .is_ml-120 {
    margin-left: 15.625vw !important;
  }
  .p-section .is_ml-140 {
    margin-left: 18.22917vw !important;
  }
  .p-section .is_ml-160 {
    margin-left: 20.83333vw !important;
  }
  .p-section .is_ml-180 {
    margin-left: 23.4375vw !important;
  }
  .p-section .is_ml-200 {
    margin-left: 26.04167vw !important;
  }
  .p-section .is_mr-000 {
    margin-right: 0vw !important;
  }
  .p-section .is_mr-020 {
    margin-right: 2.60417vw !important;
  }
  .p-section .is_mr-040 {
    margin-right: 5.20833vw !important;
  }
  .p-section .is_mr-060 {
    margin-right: 7.8125vw !important;
  }
  .p-section .is_mr-080 {
    margin-right: 10.41667vw !important;
  }
  .p-section .is_mr-100 {
    margin-right: 13.02083vw !important;
  }
  .p-section .is_mr-120 {
    margin-right: 15.625vw !important;
  }
  .p-section .is_mr-140 {
    margin-right: 18.22917vw !important;
  }
  .p-section .is_mr-160 {
    margin-right: 20.83333vw !important;
  }
  .p-section .is_mr-180 {
    margin-right: 23.4375vw !important;
  }
  .p-section .is_mr-200 {
    margin-right: 26.04167vw !important;
  }
  .p-section .is_pt-000 {
    padding-top: 0vw !important;
  }
  .p-section .is_pt-020 {
    padding-top: 2.60417vw !important;
  }
  .p-section .is_pt-040 {
    padding-top: 5.20833vw !important;
  }
  .p-section .is_pt-060 {
    padding-top: 7.8125vw !important;
  }
  .p-section .is_pt-080 {
    padding-top: 10.41667vw !important;
  }
  .p-section .is_pt-100 {
    padding-top: 13.02083vw !important;
  }
  .p-section .is_pt-120 {
    padding-top: 15.625vw !important;
  }
  .p-section .is_pt-140 {
    padding-top: 18.22917vw !important;
  }
  .p-section .is_pt-160 {
    padding-top: 20.83333vw !important;
  }
  .p-section .is_pt-180 {
    padding-top: 23.4375vw !important;
  }
  .p-section .is_pt-200 {
    padding-top: 26.04167vw !important;
  }
  .p-section .is_pb-000 {
    padding-bottom: 0vw !important;
  }
  .p-section .is_pb-020 {
    padding-bottom: 2.60417vw !important;
  }
  .p-section .is_pb-040 {
    padding-bottom: 5.20833vw !important;
  }
  .p-section .is_pb-060 {
    padding-bottom: 7.8125vw !important;
  }
  .p-section .is_pb-080 {
    padding-bottom: 10.41667vw !important;
  }
  .p-section .is_pb-100 {
    padding-bottom: 13.02083vw !important;
  }
  .p-section .is_pb-120 {
    padding-bottom: 15.625vw !important;
  }
  .p-section .is_pb-140 {
    padding-bottom: 18.22917vw !important;
  }
  .p-section .is_pb-160 {
    padding-bottom: 20.83333vw !important;
  }
  .p-section .is_pb-180 {
    padding-bottom: 23.4375vw !important;
  }
  .p-section .is_pb-200 {
    padding-bottom: 26.04167vw !important;
  }
  .p-section .is_pl-000 {
    padding-left: 0vw !important;
  }
  .p-section .is_pl-020 {
    padding-left: 2.60417vw !important;
  }
  .p-section .is_pl-040 {
    padding-left: 5.20833vw !important;
  }
  .p-section .is_pl-060 {
    padding-left: 7.8125vw !important;
  }
  .p-section .is_pl-080 {
    padding-left: 10.41667vw !important;
  }
  .p-section .is_pl-100 {
    padding-left: 13.02083vw !important;
  }
  .p-section .is_pl-120 {
    padding-left: 15.625vw !important;
  }
  .p-section .is_pl-140 {
    padding-left: 18.22917vw !important;
  }
  .p-section .is_pl-160 {
    padding-left: 20.83333vw !important;
  }
  .p-section .is_pl-180 {
    padding-left: 23.4375vw !important;
  }
  .p-section .is_pl-200 {
    padding-left: 26.04167vw !important;
  }
  .p-section .is_pr-000 {
    padding-right: 0vw !important;
  }
  .p-section .is_pr-020 {
    padding-right: 2.60417vw !important;
  }
  .p-section .is_pr-040 {
    padding-right: 5.20833vw !important;
  }
  .p-section .is_pr-060 {
    padding-right: 7.8125vw !important;
  }
  .p-section .is_pr-080 {
    padding-right: 10.41667vw !important;
  }
  .p-section .is_pr-100 {
    padding-right: 13.02083vw !important;
  }
  .p-section .is_pr-120 {
    padding-right: 15.625vw !important;
  }
  .p-section .is_pr-140 {
    padding-right: 18.22917vw !important;
  }
  .p-section .is_pr-160 {
    padding-right: 20.83333vw !important;
  }
  .p-section .is_pr-180 {
    padding-right: 23.4375vw !important;
  }
  .p-section .is_pr-200 {
    padding-right: 26.04167vw !important;
  }
}

@media screen and (min-width: 768px) {
  .p-section .is_mt-000-pc {
    margin-top: 0px !important;
  }
  .p-section .is_mt-020-pc {
    margin-top: 20px !important;
  }
  .p-section .is_mt-040-pc {
    margin-top: 40px !important;
  }
  .p-section .is_mt-060-pc {
    margin-top: 60px !important;
  }
  .p-section .is_mt-080-pc {
    margin-top: 80px !important;
  }
  .p-section .is_mt-100-pc {
    margin-top: 100px !important;
  }
  .p-section .is_mt-120-pc {
    margin-top: 120px !important;
  }
  .p-section .is_mt-140-pc {
    margin-top: 140px !important;
  }
  .p-section .is_mt-160-pc {
    margin-top: 160px !important;
  }
  .p-section .is_mt-180-pc {
    margin-top: 180px !important;
  }
  .p-section .is_mt-200-pc {
    margin-top: 200px !important;
  }
  .p-section .is_mb-000-pc {
    margin-bottom: 0px !important;
  }
  .p-section .is_mb-020-pc {
    margin-bottom: 20px !important;
  }
  .p-section .is_mb-040-pc {
    margin-bottom: 40px !important;
  }
  .p-section .is_mb-060-pc {
    margin-bottom: 60px !important;
  }
  .p-section .is_mb-080-pc {
    margin-bottom: 80px !important;
  }
  .p-section .is_mb-100-pc {
    margin-bottom: 100px !important;
  }
  .p-section .is_mb-120-pc {
    margin-bottom: 120px !important;
  }
  .p-section .is_mb-140-pc {
    margin-bottom: 140px !important;
  }
  .p-section .is_mb-160-pc {
    margin-bottom: 160px !important;
  }
  .p-section .is_mb-180-pc {
    margin-bottom: 180px !important;
  }
  .p-section .is_mb-200-pc {
    margin-bottom: 200px !important;
  }
  .p-section .is_ml-000-pc {
    margin-left: 0px !important;
  }
  .p-section .is_ml-020-pc {
    margin-left: 20px !important;
  }
  .p-section .is_ml-040-pc {
    margin-left: 40px !important;
  }
  .p-section .is_ml-060-pc {
    margin-left: 60px !important;
  }
  .p-section .is_ml-080-pc {
    margin-left: 80px !important;
  }
  .p-section .is_ml-100-pc {
    margin-left: 100px !important;
  }
  .p-section .is_ml-120-pc {
    margin-left: 120px !important;
  }
  .p-section .is_ml-140-pc {
    margin-left: 140px !important;
  }
  .p-section .is_ml-160-pc {
    margin-left: 160px !important;
  }
  .p-section .is_ml-180-pc {
    margin-left: 180px !important;
  }
  .p-section .is_ml-200-pc {
    margin-left: 200px !important;
  }
  .p-section .is_mr-000-pc {
    margin-right: 0px !important;
  }
  .p-section .is_mr-020-pc {
    margin-right: 20px !important;
  }
  .p-section .is_mr-040-pc {
    margin-right: 40px !important;
  }
  .p-section .is_mr-060-pc {
    margin-right: 60px !important;
  }
  .p-section .is_mr-080-pc {
    margin-right: 80px !important;
  }
  .p-section .is_mr-100-pc {
    margin-right: 100px !important;
  }
  .p-section .is_mr-120-pc {
    margin-right: 120px !important;
  }
  .p-section .is_mr-140-pc {
    margin-right: 140px !important;
  }
  .p-section .is_mr-160-pc {
    margin-right: 160px !important;
  }
  .p-section .is_mr-180-pc {
    margin-right: 180px !important;
  }
  .p-section .is_mr-200-pc {
    margin-right: 200px !important;
  }
  .p-section .is_pt-000-pc {
    padding-top: 0px !important;
  }
  .p-section .is_pt-020-pc {
    padding-top: 20px !important;
  }
  .p-section .is_pt-040-pc {
    padding-top: 40px !important;
  }
  .p-section .is_pt-060-pc {
    padding-top: 60px !important;
  }
  .p-section .is_pt-080-pc {
    padding-top: 80px !important;
  }
  .p-section .is_pt-100-pc {
    padding-top: 100px !important;
  }
  .p-section .is_pt-120-pc {
    padding-top: 120px !important;
  }
  .p-section .is_pt-140-pc {
    padding-top: 140px !important;
  }
  .p-section .is_pt-160-pc {
    padding-top: 160px !important;
  }
  .p-section .is_pt-180-pc {
    padding-top: 180px !important;
  }
  .p-section .is_pt-200-pc {
    padding-top: 200px !important;
  }
  .p-section .is_pb-000-pc {
    padding-bottom: 0px !important;
  }
  .p-section .is_pb-020-pc {
    padding-bottom: 20px !important;
  }
  .p-section .is_pb-040-pc {
    padding-bottom: 40px !important;
  }
  .p-section .is_pb-060-pc {
    padding-bottom: 60px !important;
  }
  .p-section .is_pb-080-pc {
    padding-bottom: 80px !important;
  }
  .p-section .is_pb-100-pc {
    padding-bottom: 100px !important;
  }
  .p-section .is_pb-120-pc {
    padding-bottom: 120px !important;
  }
  .p-section .is_pb-140-pc {
    padding-bottom: 140px !important;
  }
  .p-section .is_pb-160-pc {
    padding-bottom: 160px !important;
  }
  .p-section .is_pb-180-pc {
    padding-bottom: 180px !important;
  }
  .p-section .is_pb-200-pc {
    padding-bottom: 200px !important;
  }
  .p-section .is_pl-000-pc {
    padding-left: 0px !important;
  }
  .p-section .is_pl-020-pc {
    padding-left: 20px !important;
  }
  .p-section .is_pl-040-pc {
    padding-left: 40px !important;
  }
  .p-section .is_pl-060-pc {
    padding-left: 60px !important;
  }
  .p-section .is_pl-080-pc {
    padding-left: 80px !important;
  }
  .p-section .is_pl-100-pc {
    padding-left: 100px !important;
  }
  .p-section .is_pl-120-pc {
    padding-left: 120px !important;
  }
  .p-section .is_pl-140-pc {
    padding-left: 140px !important;
  }
  .p-section .is_pl-160-pc {
    padding-left: 160px !important;
  }
  .p-section .is_pl-180-pc {
    padding-left: 180px !important;
  }
  .p-section .is_pl-200-pc {
    padding-left: 200px !important;
  }
  .p-section .is_pr-000-pc {
    padding-right: 0px !important;
  }
  .p-section .is_pr-020-pc {
    padding-right: 20px !important;
  }
  .p-section .is_pr-040-pc {
    padding-right: 40px !important;
  }
  .p-section .is_pr-060-pc {
    padding-right: 60px !important;
  }
  .p-section .is_pr-080-pc {
    padding-right: 80px !important;
  }
  .p-section .is_pr-100-pc {
    padding-right: 100px !important;
  }
  .p-section .is_pr-120-pc {
    padding-right: 120px !important;
  }
  .p-section .is_pr-140-pc {
    padding-right: 140px !important;
  }
  .p-section .is_pr-160-pc {
    padding-right: 160px !important;
  }
  .p-section .is_pr-180-pc {
    padding-right: 180px !important;
  }
  .p-section .is_pr-200-pc {
    padding-right: 200px !important;
  }
}

@media screen and (max-width: 768px) {
  .p-section .is_mt-000-sp {
    margin-top: 0vw !important;
  }
  .p-section .is_mt-020-sp {
    margin-top: 2.60417vw !important;
  }
  .p-section .is_mt-040-sp {
    margin-top: 5.20833vw !important;
  }
  .p-section .is_mt-060-sp {
    margin-top: 7.8125vw !important;
  }
  .p-section .is_mt-080-sp {
    margin-top: 10.41667vw !important;
  }
  .p-section .is_mt-100-sp {
    margin-top: 13.02083vw !important;
  }
  .p-section .is_mt-120-sp {
    margin-top: 15.625vw !important;
  }
  .p-section .is_mt-140-sp {
    margin-top: 18.22917vw !important;
  }
  .p-section .is_mt-160-sp {
    margin-top: 20.83333vw !important;
  }
  .p-section .is_mt-180-sp {
    margin-top: 23.4375vw !important;
  }
  .p-section .is_mt-200-sp {
    margin-top: 26.04167vw !important;
  }
  .p-section .is_mb-000-sp {
    margin-bottom: 0vw !important;
  }
  .p-section .is_mb-020-sp {
    margin-bottom: 2.60417vw !important;
  }
  .p-section .is_mb-040-sp {
    margin-bottom: 5.20833vw !important;
  }
  .p-section .is_mb-060-sp {
    margin-bottom: 7.8125vw !important;
  }
  .p-section .is_mb-080-sp {
    margin-bottom: 10.41667vw !important;
  }
  .p-section .is_mb-100-sp {
    margin-bottom: 13.02083vw !important;
  }
  .p-section .is_mb-120-sp {
    margin-bottom: 15.625vw !important;
  }
  .p-section .is_mb-140-sp {
    margin-bottom: 18.22917vw !important;
  }
  .p-section .is_mb-160-sp {
    margin-bottom: 20.83333vw !important;
  }
  .p-section .is_mb-180-sp {
    margin-bottom: 23.4375vw !important;
  }
  .p-section .is_mb-200-sp {
    margin-bottom: 26.04167vw !important;
  }
  .p-section .is_ml-000-sp {
    margin-left: 0vw !important;
  }
  .p-section .is_ml-020-sp {
    margin-left: 2.60417vw !important;
  }
  .p-section .is_ml-040-sp {
    margin-left: 5.20833vw !important;
  }
  .p-section .is_ml-060-sp {
    margin-left: 7.8125vw !important;
  }
  .p-section .is_ml-080-sp {
    margin-left: 10.41667vw !important;
  }
  .p-section .is_ml-100-sp {
    margin-left: 13.02083vw !important;
  }
  .p-section .is_ml-120-sp {
    margin-left: 15.625vw !important;
  }
  .p-section .is_ml-140-sp {
    margin-left: 18.22917vw !important;
  }
  .p-section .is_ml-160-sp {
    margin-left: 20.83333vw !important;
  }
  .p-section .is_ml-180-sp {
    margin-left: 23.4375vw !important;
  }
  .p-section .is_ml-200-sp {
    margin-left: 26.04167vw !important;
  }
  .p-section .is_mr-000-sp {
    margin-right: 0vw !important;
  }
  .p-section .is_mr-020-sp {
    margin-right: 2.60417vw !important;
  }
  .p-section .is_mr-040-sp {
    margin-right: 5.20833vw !important;
  }
  .p-section .is_mr-060-sp {
    margin-right: 7.8125vw !important;
  }
  .p-section .is_mr-080-sp {
    margin-right: 10.41667vw !important;
  }
  .p-section .is_mr-100-sp {
    margin-right: 13.02083vw !important;
  }
  .p-section .is_mr-120-sp {
    margin-right: 15.625vw !important;
  }
  .p-section .is_mr-140-sp {
    margin-right: 18.22917vw !important;
  }
  .p-section .is_mr-160-sp {
    margin-right: 20.83333vw !important;
  }
  .p-section .is_mr-180-sp {
    margin-right: 23.4375vw !important;
  }
  .p-section .is_mr-200-sp {
    margin-right: 26.04167vw !important;
  }
  .p-section .is_pt-000-sp {
    padding-top: 0vw !important;
  }
  .p-section .is_pt-020-sp {
    padding-top: 2.60417vw !important;
  }
  .p-section .is_pt-040-sp {
    padding-top: 5.20833vw !important;
  }
  .p-section .is_pt-060-sp {
    padding-top: 7.8125vw !important;
  }
  .p-section .is_pt-080-sp {
    padding-top: 10.41667vw !important;
  }
  .p-section .is_pt-100-sp {
    padding-top: 13.02083vw !important;
  }
  .p-section .is_pt-120-sp {
    padding-top: 15.625vw !important;
  }
  .p-section .is_pt-140-sp {
    padding-top: 18.22917vw !important;
  }
  .p-section .is_pt-160-sp {
    padding-top: 20.83333vw !important;
  }
  .p-section .is_pt-180-sp {
    padding-top: 23.4375vw !important;
  }
  .p-section .is_pt-200-sp {
    padding-top: 26.04167vw !important;
  }
  .p-section .is_pb-000-sp {
    padding-bottom: 0vw !important;
  }
  .p-section .is_pb-020-sp {
    padding-bottom: 2.60417vw !important;
  }
  .p-section .is_pb-040-sp {
    padding-bottom: 5.20833vw !important;
  }
  .p-section .is_pb-060-sp {
    padding-bottom: 7.8125vw !important;
  }
  .p-section .is_pb-080-sp {
    padding-bottom: 10.41667vw !important;
  }
  .p-section .is_pb-100-sp {
    padding-bottom: 13.02083vw !important;
  }
  .p-section .is_pb-120-sp {
    padding-bottom: 15.625vw !important;
  }
  .p-section .is_pb-140-sp {
    padding-bottom: 18.22917vw !important;
  }
  .p-section .is_pb-160-sp {
    padding-bottom: 20.83333vw !important;
  }
  .p-section .is_pb-180-sp {
    padding-bottom: 23.4375vw !important;
  }
  .p-section .is_pb-200-sp {
    padding-bottom: 26.04167vw !important;
  }
  .p-section .is_pl-000-sp {
    padding-left: 0vw !important;
  }
  .p-section .is_pl-020-sp {
    padding-left: 2.60417vw !important;
  }
  .p-section .is_pl-040-sp {
    padding-left: 5.20833vw !important;
  }
  .p-section .is_pl-060-sp {
    padding-left: 7.8125vw !important;
  }
  .p-section .is_pl-080-sp {
    padding-left: 10.41667vw !important;
  }
  .p-section .is_pl-100-sp {
    padding-left: 13.02083vw !important;
  }
  .p-section .is_pl-120-sp {
    padding-left: 15.625vw !important;
  }
  .p-section .is_pl-140-sp {
    padding-left: 18.22917vw !important;
  }
  .p-section .is_pl-160-sp {
    padding-left: 20.83333vw !important;
  }
  .p-section .is_pl-180-sp {
    padding-left: 23.4375vw !important;
  }
  .p-section .is_pl-200-sp {
    padding-left: 26.04167vw !important;
  }
  .p-section .is_pr-000-sp {
    padding-right: 0vw !important;
  }
  .p-section .is_pr-020-sp {
    padding-right: 2.60417vw !important;
  }
  .p-section .is_pr-040-sp {
    padding-right: 5.20833vw !important;
  }
  .p-section .is_pr-060-sp {
    padding-right: 7.8125vw !important;
  }
  .p-section .is_pr-080-sp {
    padding-right: 10.41667vw !important;
  }
  .p-section .is_pr-100-sp {
    padding-right: 13.02083vw !important;
  }
  .p-section .is_pr-120-sp {
    padding-right: 15.625vw !important;
  }
  .p-section .is_pr-140-sp {
    padding-right: 18.22917vw !important;
  }
  .p-section .is_pr-160-sp {
    padding-right: 20.83333vw !important;
  }
  .p-section .is_pr-180-sp {
    padding-right: 23.4375vw !important;
  }
  .p-section .is_pr-200-sp {
    padding-right: 26.04167vw !important;
  }
}

/*
------------------------------------------------ */
.is_sw-pc {
  display: block;
}

.is_sw-sp {
  display: none;
}

.is_textalign-left {
  text-align: left;
}

.is_textalign-center {
  text-align: center;
}

.is_textalign-right {
  text-align: right;
}

.is_border-bottom-gry01 {
  border-bottom: 1px solid #efefef;
}

.is_color-ble01 {
  color: #0068b7;
}

.is_color-wht01 {
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .is_sw-pc {
    display: none;
  }
  .is_sw-sp {
    display: block;
  }
}

/* p-section
------------------------------------------------ */
.p-section {
  width: 100%;
  text-align: center;
}

.p-section__inner {
  margin: 0 auto;
  padding: 0 100px;
  width: 100%;
  max-width: calc( 1480px);
}

@media screen and (max-width: 1280px) {
  .p-section__inner {
    padding: 0 5.20833vw;
  }
}

@media screen and (max-width: 768px) {
  .p-section__inner {
    padding: 0 5.20833vw;
    width: 100%;
    max-width: 100%;
  }
}

/* p-btn
------------------------------------------------ */
.p-bgc__clr01 {
  background: none;
}

.p-bgc__wht01 {
  background: #ffffff;
}

.p-bgc__gry01 {
  background: #efefef;
}

.p-bgc__blk01 {
  background: #292929;
}

.p-bgc__ble01 {
  background: #0068b7;
}

/* p-ic
------------------------------------------------ */
.p-ic {
  display: inline-block;
  width: 1em;
  height: 1em;
}

.p-ic.is_size-xl {
  width: 1.5em;
  height: 1.5em;
}

.p-ic.is_size-lg {
  width: 1.25em;
  height: 1.25em;
}

.p-ic.is_size-md {
  width: 1.0em;
  height: 1.0em;
}

.p-ic.is_size-sm {
  width: 0.75em;
  height: 0.75em;
}

.p-ic.is_size-es {
  width: 0.5em;
  height: 0.5em;
}

.p-ic__caret01-top01-blk01 {
  background: url(../img/common/ic_caret01_top01_blk01_img01.svg) no-repeat 50% 50%;
  background-size: contain;
  -webkit-transform: scale(0.8, 0.8);
  -ms-transform: scale(0.8, 0.8);
  transform: scale(0.8, 0.8);
}

.p-ic__caret01-top01-gry01 {
  background: url(../img/common/ic_caret01_top01_gry01_img01.svg) no-repeat 50% 50%;
  background-size: contain;
  -webkit-transform: scale(0.8, 0.8);
  -ms-transform: scale(0.8, 0.8);
  transform: scale(0.8, 0.8);
}

.p-ic__caret01-top01-wht01 {
  background: url(../img/common/ic_caret01_top01_wht01_img01.svg) no-repeat 50% 50%;
  background-size: contain;
  -webkit-transform: scale(0.8, 0.8);
  -ms-transform: scale(0.8, 0.8);
  transform: scale(0.8, 0.8);
}

.p-ic__caret01-top01-ylw01 {
  background: url(../img/common/ic_caret01_top01_ylw01_img01.svg) no-repeat 50% 50%;
  background-size: contain;
  -webkit-transform: scale(0.8, 0.8);
  -ms-transform: scale(0.8, 0.8);
  transform: scale(0.8, 0.8);
}

.p-ic__caret01-top01-red01 {
  background: url(../img/common/ic_caret01_top01_red01_img01.svg) no-repeat 50% 50%;
  background-size: contain;
  -webkit-transform: scale(0.8, 0.8);
  -ms-transform: scale(0.8, 0.8);
  transform: scale(0.8, 0.8);
}

/*
------------------------------------------------ */
.p-att p {
  font-size: 1em;
}

.p-att ul li {
  font-size: 1em;
}

/*
------------------------------------------------ */
.p-btnlink__box > ul {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 50px;
}

.p-btnlink__box.is_textalign-left > ul {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.p-btnlink__box.is_textalign-center > ul {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-btnlink__box.is_textalign-right > ul {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.p-btnlink__box > ul > li {
  width: 100%;
  max-width: 350px;
}

.p-btnlink__box_item {
  width: 100%;
  max-width: 350px;
  height: 50px;
  background: #0068b7;
  color: #ffffff;
}

.p-btnlink__box_item.is_type-square {
  border-radius: 0px;
}

.p-btnlink__box_item.is_type-round {
  border-radius: 5px;
}

.p-btnlink__box_item.is_type-circle {
  border-radius: 50px;
}

.p-btnlink__box_item object {
  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: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.p-btnlink__box_item a,
.p-btnlink__box_item span {
  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;
  gap: 1em;
}

.p-btnlink__box_item big {
  font-size: 1.125em;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .p-btnlink__box > ul {
    gap: 6.51042vw;
  }
  .p-btnlink__box > ul > li {
    width: 100%;
    max-width: 100%;
  }
  .p-btnlink__box_item {
    width: 100%;
    max-width: 100%;
    height: 3em;
    border-radius: 0.65104vw;
  }
  .p-btnlink__box_item big {
    font-size: 1em;
  }
}

/*
------------------------------------------------ */
.p-tit {
  position: relative;
}

.p-tit h1, .p-tit h2, .p-tit h3, .p-tit h4, .p-tit h5, .p-tit h6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.75em;
  position: relative;
}

.p-tit big {
  font-weight: bold;
}

.p-tit small {
  font-weight: bold;
}

.p-tit.is_decor-point01 h1 big, .p-tit.is_decor-point01 h2 big, .p-tit.is_decor-point01 h3 big, .p-tit.is_decor-point01 h4 big, .p-tit.is_decor-point01 h5 big, .p-tit.is_decor-point01 h6 big {
  position: relative;
}

.p-tit.is_decor-point01 h1 big::before, .p-tit.is_decor-point01 h2 big::before, .p-tit.is_decor-point01 h3 big::before, .p-tit.is_decor-point01 h4 big::before, .p-tit.is_decor-point01 h5 big::before, .p-tit.is_decor-point01 h6 big::before {
  display: block;
  content: '';
  width: 1em;
  height: 1em;
  background: url(../img/common/ico_point01_ble01_img01_l.png) no-repeat 50% 50%;
  background-size: contain;
  position: absolute;
  top: -0.7em;
  left: -1.0em;
}

.p-tit.is_type-img01 h1 picture,
.p-tit.is_type-img01 h1 source,
.p-tit.is_type-img01 h1 img, .p-tit.is_type-img01 h2 picture,
.p-tit.is_type-img01 h2 source,
.p-tit.is_type-img01 h2 img, .p-tit.is_type-img01 h3 picture,
.p-tit.is_type-img01 h3 source,
.p-tit.is_type-img01 h3 img, .p-tit.is_type-img01 h4 picture,
.p-tit.is_type-img01 h4 source,
.p-tit.is_type-img01 h4 img, .p-tit.is_type-img01 h5 picture,
.p-tit.is_type-img01 h5 source,
.p-tit.is_type-img01 h5 img, .p-tit.is_type-img01 h6 picture,
.p-tit.is_type-img01 h6 source,
.p-tit.is_type-img01 h6 img {
  height: 55px;
  width: auto;
}

.p-tit.is_box-gry01 h1, .p-tit.is_box-gry01 h2, .p-tit.is_box-gry01 h3, .p-tit.is_box-gry01 h4, .p-tit.is_box-gry01 h5, .p-tit.is_box-gry01 h6 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 1em;
  background: #797979;
  color: #ffffff;
  min-width: 300px;
}

.p-tit.is_textalign-left h1, .p-tit.is_textalign-left h2, .p-tit.is_textalign-left h3, .p-tit.is_textalign-left h4, .p-tit.is_textalign-left h5, .p-tit.is_textalign-left h6 {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-tit.is_textalign-center h1, .p-tit.is_textalign-center h2, .p-tit.is_textalign-center h3, .p-tit.is_textalign-center h4, .p-tit.is_textalign-center h5, .p-tit.is_textalign-center h6 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-tit.is_textalign-right h1, .p-tit.is_textalign-right h2, .p-tit.is_textalign-right h3, .p-tit.is_textalign-right h4, .p-tit.is_textalign-right h5, .p-tit.is_textalign-right h6 {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.p-tit__type01 big {
  font-size: 2.625em;
}

.p-tit__type02 big {
  font-size: 2.25em;
}

.p-tit__type02 small {
  font-size: 0.875em;
}

.p-tit__type02.is_decor-bar01::before {
  display: block;
  content: '';
  width: 100vw;
  height: 28px;
  background: #0068b7;
  position: absolute;
  top: 0.5em;
  left: calc( -100vw - 20px);
  margin-left: auto;
}

.p-tit__type03 big {
  font-size: 1.875em;
}

.p-tit__type04 big {
  font-size: 1.75em;
}

.p-tit__type05 big {
  font-size: 1.625em;
}

.p-tit__type06 big {
  font-size: 1.5em;
}

.p-tit__type06 small {
  font-size: 1em;
}

.p-tit__type07 big {
  font-size: 1.375em;
}

.p-tit__type08 big {
  font-size: 1.25em;
}

.p-tit__type09 big {
  font-size: 1.125em;
}

.p-tit__type10 big {
  font-size: 1em;
}

@media screen and (max-width: 1280px) {
  .p-tit__type02.is_decor-bar01::before {
    left: calc( -100vw - 2.60417vw);
  }
}

@media screen and (max-width: 980px) {
  .p-tit__type02.is_decor-bar01::before {
    height: 1.75em;
  }
}

@media screen and (max-width: 768px) {
  .p-tit.is_type-img01 h1 picture,
  .p-tit.is_type-img01 h1 source,
  .p-tit.is_type-img01 h1 img, .p-tit.is_type-img01 h2 picture,
  .p-tit.is_type-img01 h2 source,
  .p-tit.is_type-img01 h2 img, .p-tit.is_type-img01 h3 picture,
  .p-tit.is_type-img01 h3 source,
  .p-tit.is_type-img01 h3 img, .p-tit.is_type-img01 h4 picture,
  .p-tit.is_type-img01 h4 source,
  .p-tit.is_type-img01 h4 img, .p-tit.is_type-img01 h5 picture,
  .p-tit.is_type-img01 h5 source,
  .p-tit.is_type-img01 h5 img, .p-tit.is_type-img01 h6 picture,
  .p-tit.is_type-img01 h6 source,
  .p-tit.is_type-img01 h6 img {
    height: auto;
    width: 100%;
  }
  .p-tit.is_box-gry01 h1, .p-tit.is_box-gry01 h2, .p-tit.is_box-gry01 h3, .p-tit.is_box-gry01 h4, .p-tit.is_box-gry01 h5, .p-tit.is_box-gry01 h6 {
    padding: 1em 2em;
    min-width: 39.0625vw;
  }
  .p-tit__type01 big {
    font-size: 2.125em;
  }
  .p-tit__type01 big {
    font-size: 1.25em;
  }
  .p-tit__type02 big {
    font-size: 1.25em;
  }
  .p-tit__type02 small {
    font-size: 1em;
  }
  .p-tit__type02.is_decor-bar01::before {
    width: 100vw;
    height: 3.125em;
    top: 0.0em;
    left: calc( -100vw - 2.60417vw);
  }
  .p-tit__type03 big {
    font-size: 1.125em;
  }
  .p-tit__type04 big {
    font-size: 1.125em;
  }
  .p-tit__type05 big {
    font-size: 1.125em;
  }
  .p-tit__type06 big {
    font-size: 1.125em;
  }
  .p-tit__type06 small {
    font-size: 0.75em;
  }
  .p-tit__type07 big {
    font-size: 1.125em;
  }
  .p-tit__type08 big {
    font-size: 1.125em;
  }
  .p-tit__type09 big {
    font-size: 1.125em;
  }
  .p-tit__type10 big {
    font-size: 1.125em;
  }
}

/*
------------------------------------------------ */
.p-newslist__box > ul {
  margin-bottom: 2em;
}

.p-newslist__box > ul > li {
  border-top: 1px solid #e1e1e1;
}

.p-newslist__box > ul > li:first-of-type {
  border-top: none;
}

.p-newslist__box_item {
  font-size: 1em;
  line-height: 1.6;
}

.p-newslist__box_item object {
  width: 100%;
}

.p-newslist__box_item a,
.p-newslist__box_item span {
  padding: 1.5em 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 1em;
  text-align: left;
}

.p-newslist__box_item--date {
  width: 5em;
}

.p-newslist__box_item--cat {
  width: 5em;
}

.p-newslist__box_item--cat big {
  font-weight: bold;
}

.p-newslist__box_item--txt big {
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .p-newslist__box > ul {
    margin-bottom: 2em;
  }
  .p-newslist__box_item {
    font-size: 1em;
  }
  .p-newslist__box_item a,
  .p-newslist__box_item span {
    padding: 1.5em 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-newslist__box_item--date {
    width: 5em;
  }
  .p-newslist__box_item--cat {
    width: 5em;
  }
  .p-newslist__box_item--txt {
    width: 100%;
  }
  .p-newslist__box_item--txt big {
    line-height: 1.6;
  }
}

/*
------------------------------------------------ */
.p-newsarchive__box > ul {
  margin-bottom: 2em;
}

.p-newsarchive__box > ul > li {
  margin-top: 10px;
}

.p-newsarchive__box > ul > li:first-of-type {
  margin-top: 0px;
}

.p-newsarchive__box_item object {
  width: 100%;
}

.p-newsarchive__box_item a,
.p-newsarchive__box_item span {
  padding: 1.5em 3.0em;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1em;
  text-align: left;
  background: #f2f2f2;
}

.p-newsarchive__box_item--date {
  padding: 0.5em;
  width: 8em;
  background: #b1b1b1;
  color: #ffffff;
  text-align: center;
  border-radius: 0.5em;
}

.p-newsarchive__box_item--cat {
  width: 5em;
}

.p-newsarchive__box_item--cat big {
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .p-newsarchive__box > ul {
    margin-bottom: 2em;
  }
  .p-newsarchive__box > ul > li {
    margin-top: 1.30208vw;
  }
  .p-newsarchive__box > ul > li:first-of-type {
    margin-top: 0vw;
  }
  .p-newsarchive__box_item a,
  .p-newsarchive__box_item span {
    padding: 1em;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.5em;
  }
  .p-newsarchive__box_item--date {
    width: 7em;
    font-size: 0.75em;
  }
  .p-newsarchive__box_item--cat {
    width: 5em;
  }
  .p-newsarchive__box_item--txt {
    width: 100%;
  }
  .p-newsarchive__box_item--txt big {
    line-height: 1.6;
  }
}

/*
------------------------------------------------ */
.p-textlink__box_item a,
.p-textlink__box_item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1em;
}

.p-textlink__box_item i {
  padding: 0.5em;
  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;
  width: 2em;
  height: 2em;
  background: #0068b7;
  border-radius: 2em;
  font-size: 0.625em;
  color: #ffffff;
}

.p-textlink__box_item big {
  font-weight: bold;
  line-height: 1.2;
}

/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
.p-header {
  width: 100%;
  height: 112px;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

.p-header .p-section__inner {
  padding: 0px 30px 0px 30px;
  width: 100%;
  max-width: 1310px;
  height: 112px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  position: relative;
}

.p-header__logo {
  margin-top: auto;
  margin-bottom: 20px;
  padding: 1em 0;
  width: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.p-header__btn {
  display: none;
}

.p-header__navi {
  margin-top: auto;
}

.p-header__navi_box > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.p-header__navi_box--item-link {
  padding-bottom: 20px;
}

.p-header__navi_box--item-link a,
.p-header__navi_box--item-link span {
  padding: 1em;
  position: relative;
}

.p-header__navi_box--item-link a:hover {
  color: #0068b7;
}

.p-header__navi_box--item-link a:hover::after {
  display: block;
  content: '';
  background: #0068b7;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.p-header__navi_box--item-link big {
  font-size: 1.125em;
  font-weight: bold;
}

.p-header__navi_box--item-menu {
  position: relative;
}

.p-header__navi_box--item-menu-trigger {
  padding-bottom: 20px;
}

.p-header__navi_box--item-menu-trigger a,
.p-header__navi_box--item-menu-trigger span {
  padding: 1em;
  position: relative;
}

.p-header__navi_box--item-menu-trigger big {
  font-size: 1.125em;
  font-weight: bold;
}

.p-header__navi_box--item-menu:hover .p-header__navi_box--item-menu-trigger a {
  color: #0068b7;
}

.p-header__navi_box--item-menu:hover .p-header__navi_box--item-menu-trigger a::after {
  display: block;
  content: '';
  background: #0068b7;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.p-header__navi_box--item-menu-target {
  display: none;
  padding: 30px 20px;
  width: calc( 100% + 200px);
  max-width: 300px;
  position: absolute;
  top: calc( 100% + 0px);
  left: -100px;
  right: -100px;
  z-index: 15;
  background: #ffffff;
  overflow: hidden;
  border-radius: 0px 0px 5px 5px;
  -webkit-box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
}

.p-header__navi_box--item-menu:hover .p-header__navi_box--item-menu-target {
  display: block;
}

.p-header__navi_box--item-menu-target > ul > li {
  border-bottom: 2px solid #efefef;
}

.p-header__navi_box--item-menu-target > ul > li:last-of-type {
  border-bottom: none;
}

.p-header__navi_box--item-menu-target-item a,
.p-header__navi_box--item-menu-target-item span {
  padding: 1em;
}

.p-header__navi_box--item-menu-target-item big {
  font-size: 0.875em;
  font-weight: normal;
}

.p-header__navi_btn {
  position: absolute;
  top: 0;
  right: 30px;
}

.p-header__navi_btn > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.p-header__navi_btn--item {
  overflow: hidden;
  border-radius: 0px 0px 5px 5px;
}

.p-header__navi_btn--item a,
.p-header__navi_btn--item span {
  padding: 0.75em 2em;
  background: #0068b7;
  color: #ffffff;
}

.p-header__navi_btn--item big {
  font-weight: bold;
}

@media screen and (max-width: 1280px) {
  .p-header__logo {
    width: 350px;
  }
}

@media screen and (max-width: 980px) {
  .p-header__logo {
    width: 250px;
  }
  .p-header__navi_box--item-link a,
  .p-header__navi_box--item-link span {
    padding: 1em 0.5em;
  }
  .p-header__navi_box--item-link big {
    font-size: 0.875em;
  }
  .p-header__navi_box--item-menu-trigger big {
    font-size: 0.875em;
  }
  .p-header__navi_box--item-menu-target-item big {
    font-size: 0.75em;
  }
  .p-header__navi_btn--item big {
    font-size: 0.75em;
  }
}

@media screen and (max-width: 768px) {
  .p-header {
    width: 100%;
    height: 13.02083vw;
  }
  .p-header .p-section__inner {
    padding: 0vw;
    width: 100%;
    height: 13.02083vw;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #ffffff;
  }
  .p-header__logo {
    margin: auto 0 auto 2.60417vw;
    padding: 0;
    width: 52.08333vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .p-header__btn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }
  .p-header__btn button {
    width: 13.02083vw;
    height: 13.02083vw;
    background: #0068b7;
    position: relative;
  }
  .p-header__btn i {
    display: inline-block;
    width: 30%;
    height: 2px;
    background: #ffffff;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
  }
  .p-header__btn i:nth-of-type(1) {
    top: 3.90625vw;
  }
  .p-header__btn i:nth-of-type(2) {
    top: 5.20833vw;
  }
  .p-header__btn i:nth-of-type(3) {
    top: 6.51042vw;
  }
  .is_hamburgermenu-open .p-header__btn i:nth-of-type(1) {
    top: 4.42708vw;
    left: 0vw;
    -webkit-transform: translateY(0.78125vw) rotate(-45deg);
    -ms-transform: translateY(0.78125vw) rotate(-45deg);
    transform: translateY(0.78125vw) rotate(-45deg);
  }
  .is_hamburgermenu-open .p-header__btn i:nth-of-type(2) {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .is_hamburgermenu-open .p-header__btn i:nth-of-type(3) {
    top: 5.98958vw;
    left: 0vw;
    -webkit-transform: translateY(-0.78125vw) rotate(45deg);
    -ms-transform: translateY(-0.78125vw) rotate(45deg);
    transform: translateY(-0.78125vw) rotate(45deg);
  }
  .p-header__btn button big {
    font-size: 0.625em;
    color: #ffffff;
    position: absolute;
    bottom: 1.95313vw;
    left: 0;
    right: 0;
  }
  .p-header__navi {
    margin-top: 0;
    padding-bottom: 6.51042vw;
    width: 100%;
    height: calc( 100vh - 13.02083vw);
    height: calc( 100svh - 13.02083vw);
    position: fixed;
    top: 13.02083vw;
    background: #ffffff;
    overflow-x: auto;
    display: none;
  }
  .is_hamburgermenu-open .p-header__navi {
    display: block;
  }
  .p-header__navi_box > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-top: 1px solid #efefef;
  }
  .p-header__navi_box > ul > li {
    width: 100%;
    border-bottom: 1px solid #efefef;
  }
  .p-header__navi_box--item-link {
    padding-bottom: 0;
  }
  .p-header__navi_box--item-link object {
    width: 100%;
  }
  .p-header__navi_box--item-link a,
  .p-header__navi_box--item-link span {
    padding: 1em 2em;
    width: 100%;
    text-align: left;
  }
  .p-header__navi_box--item-link a:hover {
    color: #0068b7;
  }
  .p-header__navi_box--item-link a:hover::after {
    display: none;
  }
  .p-header__navi_box--item-link big {
    font-size: 1em;
  }
  .p-header__navi_box--item-menu-trigger {
    padding: 0vw;
  }
  .p-header__navi_box--item-menu-trigger object {
    width: 100%;
  }
  .p-header__navi_box--item-menu-trigger a,
  .p-header__navi_box--item-menu-trigger span {
    padding: 1em 2em;
    width: 100%;
    text-align: left;
  }
  .p-header__navi_box--item-menu-trigger big {
    font-size: 1em;
  }
  .p-header__navi_box--item-menu:hover .p-header__navi_box--item-menu-trigger a::after {
    display: none;
  }
  .p-header__navi_box--item-menu-target {
    display: block;
    padding: 0;
    width: 100%;
    max-width: 100%;
    position: unset;
    top: unset;
    left: unset;
    right: unset;
    border-radius: unset;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    background: #efefef;
  }
  .p-header__navi_box--item-menu-target > ul > li {
    border-bottom: 1px solid #ffffff;
    text-align: left;
  }
  .p-header__navi_box--item-menu-target > ul > li:last-of-type {
    border-bottom: none;
  }
  .p-header__navi_box--item-menu-target-item object {
    width: 100%;
  }
  .p-header__navi_box--item-menu-target-item a,
  .p-header__navi_box--item-menu-target-item span {
    padding: 0.5em 0.5em 0.5em 2em;
    width: 100%;
    vertical-align: middle;
  }
  .p-header__navi_box--item-menu-target-item big {
    font-size: 0.625em;
    line-height: 1.6;
  }
  .p-header__navi_btn {
    margin-top: 6.51042vw;
    position: unset;
    top: unset;
    right: unset;
  }
  .p-header__navi_btn > ul {
    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;
  }
  .p-header__navi_btn--item {
    border-radius: 1.30208vw;
  }
  .p-header__navi_btn--item a,
  .p-header__navi_btn--item span {
    padding: 1em 4em;
  }
  .p-header__navi_btn--item big {
    font-size: 1em;
  }
}

/*
------------------------------------------------ */
.p-footer__cta .p-section {
  padding: 70px 0px 50px 0px;
}

.p-footer__cta_tit {
  margin-bottom: 1em;
}

.p-footer__cta_txt {
  margin-bottom: 2em;
}

.p-footer__cta_txt p {
  font-size: 1.125em;
  font-weight: bold;
}

.p-footer__logo .p-section {
  padding: 20px 15px;
}

.p-footer__logo .p-section__inner {
  width: 100%;
  max-width: 910px;
}

.p-footer__logo p {
  width: 270px;
}

.p-footer__navi {
  color: #ffffff;
}

.p-footer__navi .p-section {
  padding: 2em 0;
}

.p-footer__navi_box > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2em;
}

.p-footer__navi_box--item a,
.p-footer__navi_box--item span {
  padding: 1em 0em;
  position: relative;
}

.p-footer__navi_box--item a::after {
  display: block;
  content: '';
  background: #ffffff;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0.5em;
  left: 0;
  right: 0;
  margin: auto;
}

.p-footer__navi_box--item big {
  font-weight: bold;
}

.p-footer__copy {
  color: #ffffff;
}

.p-footer__copy .p-section {
  padding: 2em 0;
}

@media screen and (max-width: 768px) {
  .p-footer__cta .p-section {
    padding: 10.41667vw 0vw;
  }
  .p-footer__cta_tit {
    margin-bottom: 1em;
  }
  .p-footer__cta_txt {
    margin-bottom: 2em;
  }
  .p-footer__cta_txt p {
    font-size: 1em;
    line-height: 1.6;
  }
  .p-footer__logo .p-section {
    padding: 2.60417vw 0vw;
  }
  .p-footer__logo .p-section__inner {
    width: 100%;
    max-width: 100%;
  }
  .p-footer__logo p {
    padding: 1em 0;
    width: 52.08333vw;
  }
  .p-footer__navi .p-section {
    padding: 4em 0 0 0;
  }
  .p-footer__navi_box > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0em 0.5em;
  }
  .p-footer__navi_box--item a,
  .p-footer__navi_box--item span {
    padding: 0em 0em 1em 0em;
  }
  .p-footer__navi_box--item a::after {
    height: 1px;
  }
  .p-footer__navi_box--item big {
    font-size: 0.625em;
  }
  .p-footer__copy {
    padding-bottom: 4em;
  }
  .p-footer__copy .p-section {
    padding: 2em 0;
  }
  .p-footer__copy p small {
    font-size: 0.625em;
  }
}

/*
------------------------------------------------ */
.p-contentblock {
  padding: 40px 0px 60px 0px;
}

.p-contentblock .p-section__inner > [class^='p-contentblock__'] + [class^='p-contentblock__'] {
  margin-top: 50px;
}

.p-contentblock__txt p {
  line-height: 1.6;
  text-align: left;
}

.p-contentblock__txt p + p {
  margin-top: 1em;
}

.p-contentblock__box > dl {
  text-align: left;
}

.p-contentblock__box > dl > dt {
  margin-bottom: 1em;
}

.p-contentblock__box > dl > dd {
  margin-bottom: 2em;
}

.p-contentblock__box > dl > dd > ul {
  margin-left: 1em;
}

.p-contentblock__box > dl > dd > ul > li {
  list-style: outside disc;
  line-height: 1.6;
}

.p-contentblock__box > dl > dd > p {
  line-height: 1.6;
}

.p-contentblock__box > dl > dd > p + p {
  margin-top: 1em;
}

.p-document > [class^='p-document__'] + [class^='p-document__'] {
  margin-top: 50px;
}

.p-document__txt {
  margin: 0 auto;
  width: 100%;
  max-width: 640px;
}

.p-document__txt p {
  line-height: 1.6;
  text-align: left;
}

.p-document__txt p + p {
  margin-top: 1em;
}

.p-document__img {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}

.p-document__box {
  margin: 0 auto;
  width: 100%;
}

.p-document__box.is_width-md {
  max-width: 640px;
}

.p-document__box.is_width-lg {
  max-width: 800px;
}

.p-document__box.is_width-xl {
  max-width: 1040px;
}

.p-document__box > dl > dt {
  margin-bottom: 1em;
}

.p-document__box > dl > dt p em {
  margin: 0 auto;
  padding: 0.5em;
  width: 100%;
  max-width: 220px;
  background: #0068b7;
  border-radius: 3em;
  font-size: 1.25em;
  font-weight: bold;
  color: #ffffff;
  display: inline-block;
}

.p-document__box > dl > dd {
  margin-bottom: 2em;
  text-align: left;
}

.p-document__box > dl > dd > ul {
  margin-left: 1em;
}

.p-document__box > dl > dd > ul > li {
  list-style: outside disc;
  line-height: 1.6;
}

.p-document__box > ul {
  margin-left: 1em;
  text-align: left;
}

.p-document__box > ul > li {
  list-style: outside decimal;
  line-height: 1.6;
}

.p-document__box > ul > li + li {
  margin-top: 1em;
}

.p-document__box > ol {
  margin-left: 1em;
  text-align: left;
}

.p-document__box > ol > li {
  list-style: outside decimal;
  line-height: 1.6;
}

.p-document__box > ol > li + li {
  margin-top: 1em;
}

.p-document__box > p {
  text-align: left;
  line-height: 1.6;
}

.is_textalign-left.p-document__box > p {
  text-align: left;
}

.is_textalign-center.p-document__box > p {
  text-align: center;
}

.is_textalign-right.p-document__box > p {
  text-align: right;
}

.p-document__box > p + p {
  margin-top: 1em;
}

@media screen and (max-width: 768px) {
  .p-contentblock {
    padding: 10.41667vw 0vw 7.8125vw 0vw;
  }
  .p-contentblock .p-section__inner > [class^='p-contentblock__'] + [class^='p-contentblock__'] {
    margin-top: 6.51042vw;
  }
  .p-document > [class^='p-document__'] + [class^='p-document__'] {
    margin-top: 6.51042vw;
  }
  .p-document__txt {
    width: 100%;
    max-width: 100%;
  }
  .p-document__img {
    width: 100%;
    max-width: 100%;
  }
  .p-document__box {
    width: 100%;
  }
  .p-document__box.is_width-md {
    max-width: 100%;
  }
  .p-document__box.is_width-lg {
    max-width: 100%;
  }
  .p-document__box.is_width-xl {
    max-width: 100%;
  }
  .p-document__box > dl > dt p em {
    padding: 0.5em;
    width: 100%;
    max-width: 20em;
    border-radius: 3em;
    font-size: 1em;
  }
}

/*
------------------------------------------------ */
.p-pageback__box {
  padding: 30px 0px 220px 0px;
  font-size: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-pageback__box a,
.p-pageback__box span {
  width: 35px;
  height: 35px;
  border: 1px solid #656565;
  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;
}

.p-pageback__box i {
  color: #656565;
}

@media screen and (max-width: 768px) {
  .p-pageback__box {
    padding: 5.20833vw 0vw 10.41667vw 0vw;
    font-size: 1em;
  }
  .p-pageback__box a,
  .p-pageback__box span {
    width: 4.55729vw;
    height: 4.55729vw;
  }
}

/*
------------------------------------------------ */
.p-tophero {
  width: 100%;
  height: 550px;
}

.p-tophero .p-section__inner {
  padding: 0;
  width: 100%;
  max-width: 1920px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-tophero__img {
  width: calc( 100% - 600px);
}

.p-tophero__img picture,
.p-tophero__img source,
.p-tophero__img img {
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
  width: 100%;
  height: 550px;
}

.p-tophero__txt {
  margin-top: auto;
  padding: 40px 80px;
  width: 600px;
  max-height: 550px;
  text-align: left;
}

.p-tophero__txt > p {
  margin-bottom: 3em;
  line-height: 1.6;
  color: #ffffff;
}

.p-tophero__txt > ul > li {
  margin-bottom: 1em;
}

.p-tophero__txt_item big {
  padding-left: 2em;
  display: block;
  font-size: 1.125em;
  font-weight: bold;
  line-height: 1.6;
  color: #ffffff;
  position: relative;
}

.p-tophero__txt_item big:before {
  display: inline-block;
  content: '\f0da';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0;
  left: 0;
}

.p-tophero__txt_item a:hover big {
  color: #ffff00;
}

@media screen and (max-width: 980px) {
  .p-tophero__img {
    width: calc( 100% - 400px);
  }
  .p-tophero__txt {
    padding: 40px 40px;
    width: 400px;
  }
}

@media screen and (max-width: 768px) {
  .p-tophero {
    width: 100%;
    height: auto;
  }
  .p-tophero .p-section__inner {
    padding: 0;
    width: 100%;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .p-tophero__img {
    width: 100%;
  }
  .p-tophero__img picture,
  .p-tophero__img source,
  .p-tophero__img img {
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
    width: 100%;
    height: 44.27083vw;
  }
  .p-tophero__txt {
    padding: 5.20833vw 5.20833vw;
    width: 100%;
    max-height: auto;
  }
  .p-tophero__txt > p {
    margin-bottom: 1em;
    font-size: 0.875em;
  }
  .p-tophero__txt > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-tophero__txt > ul > li {
    margin-bottom: 0.5em;
    width: 100%;
  }
  .p-tophero__txt_item big {
    padding-left: 1em;
    font-size: 0.75em;
  }
}

/*
------------------------------------------------ */
.p-topinfolist {
  padding: 60px 0px;
}

.p-topinfolist__box {
  margin-bottom: 40px;
  margin-left: auto;
  width: 100%;
  max-width: 788px;
}

.p-topinfolist__box .p-newslist {
  margin-right: 66px;
}

.p-topinfolist__btn {
  margin-left: auto;
}

@media screen and (max-width: 980px) {
  .p-topinfolist__tit {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 768px) {
  .p-topinfolist {
    padding: 7.8125vw 0vw;
  }
  .p-topinfolist__tit {
    margin-bottom: 6.51042vw;
  }
  .p-topinfolist__box {
    margin: 0 auto 5.20833vw auto;
    width: 100%;
    max-width: 102.60417vw;
  }
  .p-topinfolist__box .p-newslist {
    margin: 0 auto;
  }
}

/*
------------------------------------------------ */
.p-goodslist {
  margin-bottom: 60px;
  padding: 100px 0px 250px 0px;
  background: #f6f5f5;
}

.p-goodslist__navi {
  margin-bottom: 80px;
}

.p-goodslist__navi > ul {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1em 0em;
}

.p-goodslist__navi > ul > li {
  border-right: 1px solid #c4c5c6;
}

.p-goodslist__navi > ul > li:last-of-type {
  border-right: none;
}

.p-goodslist__navi_item a,
.p-goodslist__navi_item span {
  padding: 0.5em 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

.p-goodslist__navi_item a:hover,
.p-goodslist__navi_item span:hover {
  color: #0068b7;
}

.p-goodslist[data-cat-setting="all"] {
  /*.p-goodslist__box > ul > li {
    display: flex;
  }
  .p-goodslist__box > ul > li[data-cat-target*="all"] {
    display: flex;
  }*/
}

.p-goodslist[data-cat-setting="all"] .p-goodslist__navi > ul > li[data-cat-trigger="all"] {
  color: #0068b7;
}

.p-goodslist[data-cat-setting="anime"] {
  /*.p-goodslist__box > ul > li {
    display: none;
  }
  .p-goodslist__box > ul > li[data-cat-target*="anime"] {
    display: flex;
  }*/
}

.p-goodslist[data-cat-setting="anime"] .p-goodslist__navi > ul > li[data-cat-trigger="anime"] {
  color: #0068b7;
}

.p-goodslist[data-cat-setting="artist"] {
  /*.p-goodslist__box > ul > li {
    display: none;
  }
  .p-goodslist__box > ul > li[data-cat-target*="artist"] {
    display: flex;
 }*/
}

.p-goodslist[data-cat-setting="artist"] .p-goodslist__navi > ul > li[data-cat-trigger="artist"] {
  color: #0068b7;
}

.p-goodslist[data-cat-setting="apparel"] {
  /*.p-goodslist__box > ul > li {
    display: none;
  }
  .p-goodslist__box > ul > li[data-cat-target*="apparel"] {
    display: flex;
  }*/
}

.p-goodslist[data-cat-setting="apparel"] .p-goodslist__navi > ul > li[data-cat-trigger="apparel"] {
  color: #0068b7;
}

.p-goodslist[data-cat-setting="event"] {
  /*.p-goodslist__box > ul > li {
    display: none;
  }
  .p-goodslist__box > ul > li[data-cat-target*="event"] {
    display: flex;
  }*/
}

.p-goodslist[data-cat-setting="event"] .p-goodslist__navi > ul > li[data-cat-trigger="event"] {
  color: #0068b7;
}

.p-goodslist__navi_item big {
  font-weight: bold;
}

.p-goodslist__box > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.p-goodslist__box > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: calc( ( 100% - 60px ) / 4);
}

.p-goodslist__box_item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background: #ffffff;
}

.p-goodslist__box_item object {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.p-goodslist__box_item a,
.p-goodslist__box_item span {
  padding: 0px 30px 60px 30px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  border: 1px solid #c4c5c6;
  overflow: hidden;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.p-goodslist__box_item a:hover {
  border: 1px solid #0068b7;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.p-goodslist__box_item--img {
  margin: 0 -30px;
  height: 330px;
  overflow: hidden;
  background: #f6f5f5;
}

.p-goodslist__box_item a:hover .p-goodslist__box_item--img p {
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.p-goodslist__box_item--img p {
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.p-goodslist__box_item--img picture,
.p-goodslist__box_item--img source,
.p-goodslist__box_item--img img {
  width: 100%;
  height: 330px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

.p-goodslist__box_item--tit {
  padding: 30px 0px;
}

.p-goodslist__box_item--tit p {
  font-size: 0.875em;
  font-weight: bold;
  line-height: 1.6;
}

.p-goodslist__box_item--txt {
  padding: 0px 0px 20px 0px;
}

.p-goodslist__box_item--txt p {
  font-size: 0.75em;
  font-weight: bold;
  line-height: 1.6;
}

.p-goodslist__box_item--lnk {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: auto;
}

.p-goodslist__box_item--lnk p {
  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;
  margin: 0 auto;
}

.p-goodslist__box_item--lnk i {
  padding: 0.5em;
  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;
  width: 2em;
  height: 2em;
  background: #0068b7;
  border-radius: 2em;
  font-size: 0.625em;
  color: #ffffff;
}

.p-goodslist__pager {
  margin-top: 5em;
  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;
  gap: 1px;
}

.p-goodslist__pager .page-numbers {
  width: 3em;
  height: 3em;
  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;
  border: 1px solid #c4c5c6;
  background: #ffffff;
}

.p-goodslist__pager .page-numbers:hover {
  opacity: 0.8;
}

.p-goodslist__pager .page-numbers.current {
  border: none;
  background: none;
  font-weight: bold;
}

.p-goodslist__pager .page-numbers.current:hover {
  opacity: 1;
}

.p-goodslist__pager .page-numbers.prev,
.p-goodslist__pager .page-numbers.next {
  margin: 0 2em;
  width: auto;
  border: none;
  background: none;
  font-size: 80%;
}

.p-goodslist__pager .page-numbers.prev:hover,
.p-goodslist__pager .page-numbers.next:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1280px) {
  .p-goodslist__box > ul {
    gap: 2.60417vw;
  }
  .p-goodslist__box > ul > li {
    width: calc( ( 100% - 5.20833vw ) / 3);
  }
}

@media screen and (max-width: 980px) {
  .p-goodslist__box > ul {
    gap: 2.60417vw;
  }
  .p-goodslist__box > ul > li {
    width: calc( ( 100% - 2.60417vw ) / 2);
  }
  .p-goodslist__box_item a,
  .p-goodslist__box_item span {
    padding: 0vw 3.90625vw 7.8125vw 3.90625vw;
  }
  .p-goodslist__box_item--img {
    margin: 0 -3.90625vw;
    height: 42.96875vw;
  }
  .p-goodslist__box_item--img picture,
  .p-goodslist__box_item--img source,
  .p-goodslist__box_item--img img {
    width: 100%;
    height: 42.96875vw;
  }
  .p-goodslist__box_item--tit {
    padding: 3.90625vw 0vw;
  }
  .p-goodslist__box_item--tit p {
    font-size: 1.125em;
  }
  .p-goodslist__box_item--txt {
    padding: 0vw 0vw 3.90625vw 0vw;
  }
  .p-goodslist__box_item--lnk {
    bottom: 3.90625vw;
  }
  .p-goodslist__box_item--lnk i {
    padding: 0.5em;
    width: 2em;
    height: 2em;
    border-radius: 2em;
    font-size: 0.625em;
  }
}

@media screen and (max-width: 768px) {
  .p-goodslist {
    margin-bottom: 7.8125vw;
    padding: 13.02083vw 0vw 32.55208vw 0vw;
  }
  .p-goodslist__navi {
    margin-bottom: 10.41667vw;
  }
  .p-goodslist__navi > ul {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 0;
    text-align: left;
  }
  .p-goodslist__navi > ul > li {
    width: 50%;
    border: 1px solid #c4c5c6;
    margin-top: -1px;
    margin-left: -1px;
  }
  .p-goodslist__navi > ul > li:first-of-type {
    width: calc( 100% - 1px);
  }
  .p-goodslist__navi > ul > li:last-of-type {
    border: 1px solid #c4c5c6;
  }
  .p-goodslist__navi_item {
    height: 100%;
    font-size: 0.5625em;
  }
  .p-goodslist__navi_item object {
    width: 100%;
    height: 100%;
  }
  .p-goodslist__navi_item a,
  .p-goodslist__navi_item span {
    padding: 1em 1em;
    display: block;
    width: 100%;
    height: 100%;
  }
  .p-goodslist__navi_item big {
    font-size: 0.875em;
  }
  .p-goodslist__box > ul {
    gap: 3.90625vw;
  }
  .p-goodslist__box > ul > li {
    width: calc( ( 100% - 3.90625vw ) / 2);
  }
  .p-goodslist__box_item {
    font-size: 0.625em;
  }
  .p-goodslist__box_item a,
  .p-goodslist__box_item span {
    padding: 0vw 3.90625vw 7.8125vw 3.90625vw;
  }
  .p-goodslist__box_item--img {
    margin: 0 -3.90625vw;
    height: 42.96875vw;
  }
  .p-goodslist__box_item--img picture,
  .p-goodslist__box_item--img source,
  .p-goodslist__box_item--img img {
    width: 100%;
    height: 42.96875vw;
  }
  .p-goodslist__box_item--tit {
    padding: 3.90625vw 0vw;
  }
  .p-goodslist__box_item--tit p {
    font-size: 1.125em;
  }
  .p-goodslist__box_item--txt {
    padding: 0vw 0vw 3.90625vw 0vw;
  }
  .p-goodslist__box_item--lnk {
    bottom: 3.90625vw;
  }
  .p-goodslist__box_item--lnk i {
    padding: 0.5em;
    width: 2em;
    height: 2em;
    border-radius: 2em;
    font-size: 0.625em;
  }
}

/*
------------------------------------------------ */
/*
------------------------------------------------ */
.p-pagenavi .p-bgc {
  padding: 100px 0px;
}

.p-pagenavi__box {
  padding: 50px 0px;
  border-top: 1px solid #292929;
  border-bottom: 1px solid #292929;
}

/*
------------------------------------------------ */
.p-goodsdetail__sct {
  margin-bottom: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 50px;
}

.p-goodsdetail__sct_box.is_type-aside {
  width: calc( 100% - 810px);
  height: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.p-goodsdetail__sct_box.is_type-main {
  width: 760px;
  overflow: hidden;
}

.p-goodsdetail__sct_box--text {
  padding: 40px;
  background: #f6f5f5;
  min-height: 620px;
}

.p-goodsdetail__sct_box--text-tit {
  margin: 40px 0px 60px 0px;
}

.p-goodsdetail__sct_box--text-tit::after {
  display: inline-block;
  content: '';
  width: 120px;
  height: 1px;
  background: #292929;
  margin-top: 40px;
}

.p-goodsdetail__sct_box--text-tit .p-tit h1 big, .p-goodsdetail__sct_box--text-tit .p-tit h2 big, .p-goodsdetail__sct_box--text-tit .p-tit h3 big, .p-goodsdetail__sct_box--text-tit .p-tit h4 big, .p-goodsdetail__sct_box--text-tit .p-tit h5 big, .p-goodsdetail__sct_box--text-tit .p-tit h6 big {
  line-height: 1.4;
}

.p-goodsdetail__sct_box--text-tit .p-tit h1 small, .p-goodsdetail__sct_box--text-tit .p-tit h2 small, .p-goodsdetail__sct_box--text-tit .p-tit h3 small, .p-goodsdetail__sct_box--text-tit .p-tit h4 small, .p-goodsdetail__sct_box--text-tit .p-tit h5 small, .p-goodsdetail__sct_box--text-tit .p-tit h6 small {
  margin-top: 0.5em;
}

.p-goodsdetail__sct_box--text-txt p {
  text-align: left;
  line-height: 1.6;
}

.p-goodsdetail__sct_box--slide {
  margin-bottom: 125px;
}

.p-goodsdetail__sct_box--data-tit {
  margin-bottom: 50px;
}

.p-goodsdetail__sct_box--data-box {
  margin-bottom: 50px;
}

@media screen and (max-width: 1280px) {
  .p-goodsdetail__sct {
    margin-bottom: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
  }
  .p-goodsdetail__sct_box.is_type-aside {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
  }
  .p-goodsdetail__sct_box.is_type-main {
    width: 100%;
  }
  .p-goodsdetail__sct_box--text {
    min-height: auto;
  }
}

@media screen and (max-width: 768px) {
  .p-goodsdetail__sct {
    margin-bottom: 26.04167vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6.51042vw;
  }
  .p-goodsdetail__sct_box.is_type-aside {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
  }
  .p-goodsdetail__sct_box.is_type-main {
    width: 100%;
  }
  .p-goodsdetail__sct_box--text {
    padding: 5.20833vw;
    min-height: auto;
  }
  .p-goodsdetail__sct_box--text-tit {
    margin: 2.60417vw 0vw 7.8125vw 0vw;
  }
  .p-goodsdetail__sct_box--text-tit::after {
    width: 15.625vw;
    height: 1px;
    margin-top: 0vw;
  }
  .p-goodsdetail__sct_box--slide {
    margin-bottom: 13.02083vw;
  }
  .p-goodsdetail__sct_box--data-tit {
    margin-bottom: 6.51042vw;
  }
  .p-goodsdetail__sct_box--data-box {
    margin-bottom: 6.51042vw;
  }
}

/*
------------------------------------------------ */
.p-contentslider__box_main {
  margin-bottom: 50px;
}

.p-contentslider__box_main .swiper-slide {
  background: #f6f5f5;
}

.p-contentslider__box_main .swiper-slide picture,
.p-contentslider__box_main .swiper-slide source,
.p-contentslider__box_main .swiper-slide img {
  width: 100%;
  height: 450px;
  overflow: hidden;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-contentslider__box_thumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.p-contentslider__box_thumb ul li {
  width: calc( ( 100% - 50px ) / 6);
  background: #f6f5f5;
}

.p-contentslider__box_thumb ul li picture,
.p-contentslider__box_thumb ul li source,
.p-contentslider__box_thumb ul li img {
  width: 100%;
  height: 100px;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 1280px) {
  .p-contentslider__box_main .swiper-slide picture,
  .p-contentslider__box_main .swiper-slide source,
  .p-contentslider__box_main .swiper-slide img {
    width: 100%;
    height: 79.6875vw;
  }
  .p-contentslider__box_thumb ul li picture,
  .p-contentslider__box_thumb ul li source,
  .p-contentslider__box_thumb ul li img {
    width: 100%;
    height: 23.4375vw;
  }
}

@media screen and (max-width: 768px) {
  .p-contentslider__box_main {
    margin-bottom: 6.51042vw;
  }
  .p-contentslider__box_main .swiper-slide picture,
  .p-contentslider__box_main .swiper-slide source,
  .p-contentslider__box_main .swiper-slide img {
    width: 100%;
    height: 79.6875vw;
  }
  .p-contentslider__box_thumb ul {
    gap: 1.30208vw;
  }
  .p-contentslider__box_thumb ul li {
    width: calc( ( 100% - 6.51042vw ) / 6);
  }
  .p-contentslider__box_thumb ul li picture,
  .p-contentslider__box_thumb ul li source,
  .p-contentslider__box_thumb ul li img {
    width: 100%;
    height: 13.02083vw;
  }
}

/*
------------------------------------------------ */
.p-datalsit__box dl dt {
  margin-bottom: 20px;
  padding: 10px;
  background: #0068b7;
  color: #ffffff;
}

.p-datalsit__box dl dt p {
  line-height: 1.6;
}

.p-datalsit__box dl dt p big {
  font-size: 1.5em;
  font-weight: bold;
}

.p-datalsit__box dl dd {
  margin-bottom: 40px;
}

.p-datalsit__box dl dd p {
  line-height: 1.6;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .p-datalsit__box dl dt {
    margin-bottom: 2.60417vw;
    padding: 1.30208vw;
  }
  .p-datalsit__box dl dt p big {
    font-size: 1em;
  }
  .p-datalsit__box dl dd {
    margin-bottom: 5.20833vw;
  }
}

/*
------------------------------------------------ */
.p-anchorlist__box {
  padding: 20px;
  color: #0068b7;
}

.p-anchorlist__box > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.p-anchorlist__box > ul > li {
  width: 100%;
  max-width: 270px;
}

.p-anchorlist__box > ul > li + li {
  border-left: 1px solid #0068b7;
}

.p-anchorlist__box_item {
  width: 100%;
}

.p-anchorlist__box_item object {
  width: 100%;
}

.p-anchorlist__box_item a,
.p-anchorlist__box_item span {
  padding: 10px 10px 20px 10px;
  width: 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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.p-anchorlist__box_item a:hover {
  -webkit-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}

.p-anchorlist__box_item picture,
.p-anchorlist__box_item source,
.p-anchorlist__box_item img {
  width: 90px;
}

.p-anchorlist__box_item big {
  font-size: 0.875em;
}

.p-anchorlist__box_item i {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .p-anchorlist__box {
    padding: 2.60417vw;
  }
  .p-anchorlist__box > ul > li {
    width: 100%;
    max-width: 30%;
  }
  .p-anchorlist__box > ul > li:nth-of-type(2) {
    max-width: 40%;
  }
  .p-anchorlist__box_item a,
  .p-anchorlist__box_item span {
    padding: 1.30208vw 1.30208vw 6.51042vw 1.30208vw;
  }
  .p-anchorlist__box_item a:hover {
    -webkit-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
  }
  .p-anchorlist__box_item picture,
  .p-anchorlist__box_item source,
  .p-anchorlist__box_item img {
    width: 11.71875vw;
  }
  .p-anchorlist__box_item big {
    font-size: 0.5em;
  }
}

/*
------------------------------------------------ */
.p-pointlist > [class^='p-pointlist__'] + [class^='p-pointlist__'] {
  margin-top: 50px;
}

.p-pointlist__box > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-pointlist__box > ul > li {
  width: calc( 100% / 3);
}

.p-pointlist__box > ul > li + li {
  border-left: 1px solid #efefef;
}

.p-pointlist__box_item {
  padding: 0 30px;
}

.p-pointlist__box_item > dl > dt {
  margin-bottom: 30px;
}

.p-pointlist__box_item > dl > dt p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1em;
}

.p-pointlist__box_item > dl > dt p em {
  margin: 0 auto;
  padding: 0.5em;
  width: 100%;
  max-width: 220px;
  background: #0068b7;
  border-radius: 3em;
  font-size: 1.25em;
  font-weight: bold;
  color: #ffffff;
  display: inline-block;
}

.p-pointlist__box_item > dl > dt p big {
  font-size: 1.375em;
  font-weight: bold;
}

.p-pointlist__box_item > dl > dd p {
  line-height: 1.6;
  text-align: left;
}

.p-pointlist__box_item > dl > dd p + p {
  margin-top: 0;
}

@media screen and (max-width: 980px) {
  .p-pointlist__box > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .p-pointlist__box > ul > li {
    padding: 2em 0;
    width: calc( 100%);
  }
  .p-pointlist__box > ul > li + li {
    border-left: none;
    border-top: 1px solid #efefef;
  }
}

@media screen and (max-width: 768px) {
  .p-pointlist > [class^='p-pointlist__'] + [class^='p-pointlist__'] {
    margin-top: 6.51042vw;
  }
  .p-pointlist__box > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .p-pointlist__box > ul > li {
    padding: 2em 0;
    width: calc( 100%);
  }
  .p-pointlist__box > ul > li + li {
    border-left: none;
    border-top: 1px solid #efefef;
  }
  .p-pointlist__box_item {
    padding: 0 3.90625vw;
  }
  .p-pointlist__box_item > dl > dt {
    margin-bottom: 3.90625vw;
  }
  .p-pointlist__box_item > dl > dt p {
    gap: 1em;
  }
  .p-pointlist__box_item > dl > dt p em {
    padding: 0.5em;
    width: 100%;
    max-width: 100%;
    border-radius: 3em;
    font-size: 0.875em;
  }
  .p-pointlist__box_item > dl > dt p big {
    font-size: 1.125em;
  }
}

/*
------------------------------------------------ */
.p-steplist__box > ol > li + li {
  margin-top: 40px;
}

.p-steplist__box_item > dl > dt {
  margin-bottom: 40px;
}

.p-steplist__box_item > dl > dt p {
  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;
}

.p-steplist__box_item > dl > dt p i {
  padding: 10px;
  width: 80px;
  height: 80px;
  border-radius: 80px;
  background: #0068b7;
  display: inline-block;
  position: relative;
  right: -40px;
}

.p-steplist__box_item > dl > dt p em {
  padding: 0.5em;
  width: 100%;
  max-width: 360px;
  background: #0068b7;
  border-radius: 3em;
  font-size: 1.25em;
  font-weight: bold;
  color: #ffffff;
  display: inline-block;
}

.p-steplist__box_item > dl > dd {
  margin-bottom: 40px;
}

.p-steplist__box_item > dl > dd p {
  text-align: left;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .p-steplist__box > ol > li + li {
    margin-top: 10.41667vw;
  }
  .p-steplist__box_item > dl > dt {
    margin-bottom: 5.20833vw;
  }
  .p-steplist__box_item > dl > dt p {
    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;
  }
  .p-steplist__box_item > dl > dt p i {
    padding: 1.30208vw;
    width: 10.41667vw;
    height: 10.41667vw;
    border-radius: 10.41667vw;
    position: absolute;
    left: 5.20833vw;
  }
  .p-steplist__box_item > dl > dt p em {
    padding: 0.5em;
    width: 100%;
    max-width: 100%;
    border-radius: 3em;
    font-size: 0.875em;
  }
  .p-steplist__box_item > dl > dd {
    margin-bottom: 5.20833vw;
  }
}

/*
------------------------------------------------ */
.p-tablelist__box > dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.125em;
  line-height: 1.6;
  text-align: left;
  border-top: 1px solid #efefef;
}

.p-tablelist__box > dl > dt {
  padding: 1em 0;
  width: 260px;
  border-bottom: 1px solid #efefef;
}

.p-tablelist__box > dl > dt p big {
  font-weight: bold;
  color: #0068b7;
}

.p-tablelist__box > dl > dd {
  padding: 1em 0;
  width: calc( 100% - 260px);
  border-bottom: 1px solid #efefef;
}

.p-tablelist__box > dl > dd > ul {
  margin-left: 1em;
}

.p-tablelist__box > dl > dd > ul > li {
  list-style: outside disc;
}

@media screen and (max-width: 768px) {
  .p-tablelist__box > dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 1.125em;
  }
  .p-tablelist__box > dl > dt {
    padding: 1em 0 0 0;
    width: 100%;
    border-bottom: none;
  }
  .p-tablelist__box > dl > dd {
    padding: 1em 0;
    width: calc( 100%);
    border-bottom: 1px solid #efefef;
  }
}

/*
------------------------------------------------ */
.p-pagetitle .p-bgc__ble01 {
  color: #ffffff;
}

.p-pagetitle .p-section__inner {
  width: 100%;
  height: 268px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2em;
}

.p-pagetitle__txt p {
  line-height: 1.6;
}

.p-pagetitle__txt p + p {
  margin-top: 1em;
}

@media screen and (max-width: 768px) {
  .p-pagetitle .p-section__inner {
    padding: 2em 1em;
    width: 100%;
    height: auto;
    gap: 2em;
  }
}

/*
------------------------------------------------ */
.p-contactform > [class^='p-contactform__'] + [class^='p-contactform__'] {
  margin-top: 50px;
}

.p-contactform__frame_item {
  padding: 40px 40px;
}

.p-contactform__frame_item--scroll {
  padding: 40px;
  width: 100%;
  height: 20em;
  overflow-y: auto;
  border: 1px solid #efefef;
}

.p-contactform__box_item {
  padding: 40px 85px;
}

.p-contactform__box_item + .p-contactform__box_item {
  border-top: 1px solid #efefef;
}

.p-contactform__box_item > dl {
  text-align: left;
}

.p-contactform__box_item > dl > dt + dt,
.p-contactform__box_item > dl > dt + dd,
.p-contactform__box_item > dl > dd + dt,
.p-contactform__box_item > dl > dd + dd {
  margin-top: 1em;
}

.p-contactform__box_item > dl > dt p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5em;
}

.p-contactform__box_item > dl > dt p em {
  padding: 0.5em 1.0em;
  font-weight: bold;
  color: #ffffff;
  white-space: nowrap;
  background: #0068b7;
}

.p-contactform__box_item > dl > dt p big {
  font-weight: bold;
  white-space: nowrap;
}

.p-contactform__box_item > dl > dt p small {
  font-size: 0.875em;
  white-space: nowrap;
}

.p-contactform__box_item > dl > dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: self-end;
  -ms-flex-align: self-end;
  align-items: self-end;
  gap: 1em;
}

.p-contactform__box_item > dl > dd input[type="text"] {
  display: block;
  padding: 1em;
  border: 1px solid #efefef;
  width: 100%;
}

.p-contactform__box_item > dl > dd textarea {
  display: block;
  padding: 1em;
  border: 1px solid #efefef;
  width: 100%;
  height: 20em;
}

.p-contactform__box_item > dl > dd p {
  width: 100%;
}

.p-contactform__box_item > dl > dd p span {
  font-size: 60%;
  color: #dd0000;
}

.p-contactform__check_item p {
  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;
  gap: 0.5em;
}

.p-contactform__check_item p input[type="checkbox"] {
  border-radius: 0;
  border: 1px solid #efefef;
}

.p-contactform__check_item a {
  text-decoration: underline;
  color: #0068b7;
}

.p-contactform__check_item a[target]:after {
  display: inline-block;
  content: '\f08e';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  width: 1em;
  height: 1em;
}

.p-contactform__btn > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 1em;
}

.p-contactform__btn_item button {
  padding: 0.5em 1.0em;
  font-size: 1em;
  font-weight: bold;
  color: #ffffff;
  background: #0068b7;
  width: 160px;
  height: 60px;
}

.p-contactform__btn_item button[disabled] {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  pointer-events: none;
}

@media screen and (max-width: 1280px) {
  .p-contactform__box_item {
    padding: 40px;
  }
}

@media screen and (max-width: 768px) {
  .p-contactform > [class^='p-contactform__'] + [class^='p-contactform__'] {
    margin-top: 6.51042vw;
  }
  .p-contactform__frame_item {
    padding: 5.20833vw 0vw;
  }
  .p-contactform__frame_item--scroll {
    padding: 5.20833vw;
    height: 20em;
  }
  .p-contactform__frame_item--scroll .p-document__box {
    font-size: 0.625em;
  }
  .p-contactform__box_item {
    padding: 5.20833vw 0vw;
  }
  .p-contactform__box_item > dl > dt p {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-contactform__box_item > dl > dt p em {
    padding: 0.5em 1.0em;
    font-size: 0.625em;
  }
  .p-contactform__box_item > dl > dt p big {
    font-size: 0.625em;
  }
  .p-contactform__box_item > dl > dt p small {
    font-size: 0.5em;
  }
  .p-contactform__box_item > dl > dd input[type="text"] {
    padding: 1em;
    width: 100%;
  }
  .p-contactform__box_item > dl > dd textarea {
    padding: 1em;
    width: 100%;
    height: 20em;
  }
  .p-contactform__btn_item button {
    padding: 0.5em 1.0em;
    font-size: 1em;
    width: 100%;
    height: 3em;
  }
}

/*
------------------------------------------------ */
.mw_wp_form p {
  line-height: 1.6;
  text-align: center;
}

.mw_wp_form p + p {
  margin-top: 1em;
}

/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
