@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-style: normal;
  font-weight: normal;
  -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: 18px;
  font-family: 'Noto Sans JP', 'Roboto', sans-serif;
  font-style: normal;
  color: #2F3640;
  line-height: 1;
  text-align: justify;
  background: #ffffff;
  overflow-x: hidden;
}

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

i, b, em, big, strong, small, sub, sup {
  font-style: normal;
}

ul,
li {
  list-style: none;
}

a {
  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;
}

a:hover {
  text-decoration: underline;
}

table {
  border-collapse: collapse;
}

i {
  display: block;
  line-height: 1;
  font-style: normal;
}

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: 768px) {
  body {
    font-size: 4.10256vw;
  }
}

/*
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;
}

/*
------------------------------------------------ */
body.is_gnavi-open {
  overflow: hidden;
}

/*
------------------------------------------------ */
.l-wrapper {
  padding-top: 100px;
  overflow-x: hidden;
}

@media screen and (max-width: 980px) {
  .l-wrapper {
    padding-top: 80px;
  }
}

@media screen and (max-width: 768px) {
  .l-wrapper {
    padding-top: 20.51282vw;
  }
}

/*
------------------------------------------------ */
.p-header {
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  position: fixed;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  top: 0;
  z-index: 150;
}

.is_gnavi-open .p-header {
  background: rgba(255, 255, 255, 0);
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
}

.p-header a:hover {
  text-decoration: none;
}

.p-header .p-section__inner {
  padding: 0px 100px;
  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: 100px;
  width: 100%;
  height: 100px;
}

.p-anchor {
  margin-top: -100px;
  padding-top: 100px;
  width: 100%;
  height: 1px;
}

.p-header__logo {
  width: 240px;
}

.p-header__tit_item {
  font-family: 'Roboto', sans-serif;
}

.p-header__tit_item p a,
.p-header__tit_item p 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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-header__tit_item p sub {
  color: #2F3640;
  font-size: 1em;
  font-weight: bold;
}

.p-header__tit_item p big {
  color: #1B46FA;
  font-size: 1.44444em;
  font-weight: bold;
}

.is_gnavi-open .p-header__logo,
.is_gnavi-open .p-header__tit {
  -webkit-transform: translateY(-100vh);
  -ms-transform: translateY(-100vh);
  transform: translateY(-100vh);
}

.p-header__btn {
  position: fixed;
  top: 0;
  right: 100px;
}

.p-header__btn_item {
  font-family: 'Roboto', sans-serif;
}

.p-header__btn_item p a,
.p-header__btn_item p span {
  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;
  background: #E74C3C;
  width: 260px;
  height: 100px;
  cursor: pointer;
}

.p-header__btn_item p big {
  color: #ffffff;
  font-size: 1.44444em;
  font-weight: bold;
}

.p-header__nav {
  position: fixed;
  top: 0;
  right: 0;
}

.p-header__nav_item p a,
.p-header__nav_item p span {
  display: block;
  background: #1B46FA;
  width: 100px;
  height: 100px;
  cursor: pointer;
}

.p-header__nav_item p i {
  display: inline-block;
  width: 30px;
  height: 2px;
  position: absolute;
  left: 35px;
  background: #ffffff;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.p-header__nav_item p i:nth-of-type(1) {
  top: 38px;
}

.p-header__nav_item p i:nth-of-type(2) {
  top: 49px;
}

.p-header__nav_item p i:nth-of-type(3) {
  top: 60px;
}

.is_gnavi-open .p-header__nav_item p i {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.is_gnavi-open .p-header__nav_item p i:nth-of-type(1) {
  top: 38px;
  left: 35px;
  -webkit-transform: translateY(8px) rotate(-45deg);
  -ms-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}

.is_gnavi-open .p-header__nav_item p i:nth-of-type(2) {
  opacity: 0;
}

.is_gnavi-open .p-header__nav_item p i:nth-of-type(3) {
  top: 38px;
  left: 35px;
  -webkit-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

@media screen and (max-width: 1440px) {
  .p-header .p-section__inner {
    gap: 50px;
  }
}

@media screen and (max-width: 980px) {
  .p-header .p-section__inner {
    padding: 0px 50px;
    gap: 50px;
    width: 100%;
    height: 80px;
  }
  .p-anchor {
    margin-top: -80px;
    padding-top: 80px;
  }
  .p-header__btn {
    right: 80px;
  }
  .p-header__btn_item p a,
  .p-header__btn_item p span {
    width: 80px;
    height: 80px;
  }
  .p-header__btn_item p big {
    font-size: 0.88889em;
  }
  .p-header__nav_item p a,
  .p-header__nav_item p span {
    width: 80px;
    height: 80px;
  }
  .p-header__nav_item p i {
    width: 24px;
    height: 2px;
    position: absolute;
    left: 28px;
  }
  .p-header__nav_item p i:nth-of-type(1) {
    top: 30px;
  }
  .p-header__nav_item p i:nth-of-type(2) {
    top: 39px;
  }
  .p-header__nav_item p i:nth-of-type(3) {
    top: 48px;
  }
  .is_gnavi-open .p-header__nav_item p i:nth-of-type(1) {
    top: 30px;
    left: 28px;
    -webkit-transform: translateY(6px) rotate(-45deg);
    -ms-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg);
  }
  .is_gnavi-open .p-header__nav_item p i:nth-of-type(2) {
    opacity: 0;
  }
  .is_gnavi-open .p-header__nav_item p i:nth-of-type(3) {
    top: 30px;
    left: 28px;
    -webkit-transform: translateY(6px) rotate(45deg);
    -ms-transform: translateY(6px) rotate(45deg);
    transform: translateY(6px) rotate(45deg);
  }
}

@media screen and (max-width: 768px) {
  .p-header .p-section__inner {
    padding: 0vw 46.15385vw 0vw 5.12821vw;
    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: 1.28205vw;
    width: 100%;
    height: 20.51282vw;
  }
  .p-anchor {
    margin-top: -20.51282vw;
    padding-top: 20.51282vw;
  }
  .p-header__logo {
    width: 46.15385vw;
  }
  .p-header__tit_item p a,
  .p-header__tit_item p span {
    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: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 0.5em;
  }
  .p-header__tit_item p sub {
    font-size: 3.58974vw;
  }
  .p-header__tit_item p big {
    font-size: 3.58974vw;
  }
  .is_gnavi-open .p-header__logo,
  .is_gnavi-open .p-header__tit {
    -webkit-transform: translateY(-100vh);
    -ms-transform: translateY(-100vh);
    transform: translateY(-100vh);
  }
  .p-header__btn {
    position: fixed;
    top: 0;
    right: 20.51282vw;
  }
  .p-header__btn_item p a,
  .p-header__btn_item p span {
    width: 20.51282vw;
    height: 20.51282vw;
  }
  .p-header__btn_item p big {
    font-size: 4.10256vw;
  }
  .p-header__nav {
    position: fixed;
    top: 0;
    right: 0;
  }
  .p-header__nav_item p a,
  .p-header__nav_item p span {
    width: 20.51282vw;
    height: 20.51282vw;
  }
  .p-header__nav_item p i {
    display: inline-block;
    width: 7.17949vw;
    height: 0.51282vw;
    position: absolute;
    left: 6.66667vw;
  }
  .p-header__nav_item p i:nth-of-type(1) {
    top: 7.69231vw;
  }
  .p-header__nav_item p i:nth-of-type(2) {
    top: 10vw;
  }
  .p-header__nav_item p i:nth-of-type(3) {
    top: 12.30769vw;
  }
  .is_gnavi-open .p-header__nav_item p i {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  .is_gnavi-open .p-header__nav_item p i:nth-of-type(1) {
    top: 7.94872vw;
    left: 6.66667vw;
    -webkit-transform: translateY(2.05128vw) rotate(-45deg);
    -ms-transform: translateY(2.05128vw) rotate(-45deg);
    transform: translateY(2.05128vw) rotate(-45deg);
  }
  .is_gnavi-open .p-header__nav_item p i:nth-of-type(2) {
    opacity: 0;
  }
  .is_gnavi-open .p-header__nav_item p i:nth-of-type(3) {
    top: 7.94872vw;
    left: 6.66667vw;
    -webkit-transform: translateY(2.05128vw) rotate(45deg);
    -ms-transform: translateY(2.05128vw) rotate(45deg);
    transform: translateY(2.05128vw) rotate(45deg);
  }
}

/*
------------------------------------------------ */
.p-navi__global {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: -999;
  -webkit-transform: translateY(-100vh);
  -ms-transform: translateY(-100vh);
  transform: translateY(-100vh);
}

.is_gnavi-open .p-navi__global {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  z-index: 120;
}

.p-navi__global .p-section__inner {
  padding: 0px;
  width: 100%;
  max-width: 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-navi__global_head {
  padding: 100px 60px;
  width: 360px;
  height: 100vh;
  background: url(../img/common/bgi_keyvisual01_img01.png) no-repeat 50% 50%;
  background-size: cover;
  opacity: 0;
}

.is_gnavi-open .p-navi__global_head {
  opacity: 1;
}

.p-navi__global_head--logo {
  opacity: 0.3;
}

.p-navi__global_head--tit {
  margin-top: 140px;
}

.p-navi__global_menu {
  margin: 0 auto;
  padding: 60px;
  width: calc( 100% - 360px);
  max-height: calc( 100vh - 100px);
  overflow-y: auto;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
}

.p-navi__global_menu a:hover {
  text-decoration: none;
}

.p-navi__global_menu > ul {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  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;
  gap: 60px;
}

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

.p-navi__global_menu > ul > li.is_width-full {
  width: 100%;
}

.p-navi__global_menu > ul > li > dl {
  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;
  gap: 1.5em;
  text-align: left;
}

.p-navi__global_menu > ul > li > dl > dt .p-navi__global_menu--item a,
.p-navi__global_menu > ul > li > dl > dt .p-navi__global_menu--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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5em;
}

.p-navi__global_menu > ul > li > dl > dt .p-navi__global_menu--item sub {
  font-family: 'Roboto', sans-serif;
  font-size: 0.88889em;
  color: #1B46FA;
}

.p-navi__global_menu > ul > li > dl > dt .p-navi__global_menu--item big {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.22222em;
  font-weight: bold;
  color: #2F3640;
}

.p-navi__global_menu > ul > li > dl > dt .p-navi__global_menu--item a:hover big {
  text-decoration: underline;
}

.p-navi__global_menu > ul > li > dl > dd > 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;
  gap: 1.5em;
}

.p-navi__global_menu > ul > li > dl > dd > ul > li .p-navi__global_menu--item big {
  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;
  font-size: 0.77778em;
}

.p-navi__global_menu > ul > li > dl > dd > ul > li .p-navi__global_menu--item big::before {
  display: inline-block;
  content: '';
  width: 4px;
  height: 1px;
  background: #2F3640;
}

.p-navi__global_menu > ul > li > dl > dd > ul > li .p-navi__global_menu--item a:hover big {
  text-decoration: underline;
}

@media screen and (max-width: 1920px) {
  /*.p-navi__global_menu > ul > li > dl > dd .p-navi__global_menu--item big br {
    display: none;
  }*/
}

@media screen and (max-width: 1440px) {
  .p-navi__global_menu > ul > li {
    width: calc( ( 100% - 60px ) / 2);
  }
}

@media screen and (max-width: 980px) {
  .p-navi__global_menu {
    margin: 0 auto;
    max-height: calc( 100vh - 80px);
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    transform: translateY(80px);
  }
  .p-navi__global_menu > ul > li {
    width: calc( ( 100% - 0px ) / 1);
  }
}

@media screen and (max-width: 768px) {
  .p-navi__global .p-section__inner {
    height: 100vh;
  }
  .p-navi__global_head {
    display: none;
  }
  .p-navi__global_menu {
    margin: 0 auto;
    padding: 5.12821vw 5.12821vw;
    width: calc( 100%);
    max-height: calc( 100vh - 20.51282vw);
    overflow-y: auto;
    -webkit-transform: translateY(20.51282vw);
    -ms-transform: translateY(20.51282vw);
    transform: translateY(20.51282vw);
  }
  .p-navi__global_menu > ul {
    margin: 0 auto;
    width: 100%;
    max-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: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0vw;
  }
  .p-navi__global_menu > ul > li {
    width: 100%;
    margin: 0 auto 5.12821vw auto;
    padding-bottom: 5.12821vw;
    border-bottom: 1px solid #E1E1E1;
  }
  .p-navi__global_menu > ul > li.is_width-full {
    width: 100%;
  }
  .p-navi__global_menu > ul > li > dl {
    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;
    gap: 0;
  }
  .p-navi__global_menu > ul > li > dl > dt .p-navi__global_menu--item a,
  .p-navi__global_menu > ul > li > dl > dt .p-navi__global_menu--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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.5em;
  }
  .p-navi__global_menu > ul > li > dl > dt .p-navi__global_menu--item sub {
    font-size: 0.77778em;
  }
  .p-navi__global_menu > ul > li > dl > dt .p-navi__global_menu--item big {
    font-size: 1.22222em;
  }
  .p-navi__global_menu > ul > li > dl > dd > 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;
    gap: 1.5em;
  }
  .p-navi__global_menu > ul > li > dl > dd > ul > li .p-navi__global_menu--item big {
    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-navi__global_menu > ul > li > dl > dd > ul > li .p-navi__global_menu--item big::before {
    width: 1.02564vw;
    height: 0.25641vw;
  }
  dl.js_accordion_gnavi > .js_accordion_gnavi_trigger {
    width: 100%;
    cursor: pointer;
    position: relative;
  }
  dl.js_accordion_gnavi > .js_accordion_gnavi_trigger::before {
    display: inline-block;
    content: '';
    width: 3.58974vw;
    height: 2px;
    background: #9D9D9D;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    -webkit-transition: all 0.2s ease-out !important;
    -o-transition: all 0.2s ease-out !important;
    transition: all 0.2s ease-out !important;
  }
  dl.js_accordion_gnavi > .js_accordion_gnavi_trigger::after {
    display: inline-block;
    content: '';
    width: 2px;
    height: 3.58974vw;
    background: #9D9D9D;
    position: absolute;
    top: 0;
    bottom: 0;
    right: calc( 1.79487vw - 1px);
    margin: auto;
    -webkit-transition: all 0.2s ease-out !important;
    -o-transition: all 0.2s ease-out !important;
    transition: all 0.2s ease-out !important;
  }
  dl.js_accordion_gnavi.is_accordion-open > .js_accordion_gnavi_trigger::before,
  dl.js_accordion_gnavi.is_accordion-open > .js_accordion_gnavi_trigger::after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  dl.js_accordion_gnavi.is_accordion-open > .js_accordion_gnavi_trigger::before {
    opacity: 0;
  }
  dl.js_accordion_gnavi > .js_accordion_gnavi_trigger a {
    pointer-events: none;
  }
  dl.js_accordion_gnavi > .js_accordion_gnavi_target {
    margin-top: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
  }
  dl.js_accordion_gnavi.is_accordion-open > .js_accordion_gnavi_target {
    margin-top: 1.5em;
    height: auto;
    overflow: hidden;
  }
}

/*
------------------------------------------------ */
.l-main {
  background: url(../img/common/bgi_decovisual01_img01.png) no-repeat top center;
  background-size: 100%;
  background-attachment: fixed;
}

/*
------------------------------------------------ */
/*
------------------------------------------------ */
.p-footer__pagetop_btn {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 30;
}

.p-footer__pagetop_btn p a,
.p-footer__pagetop_btn p span {
  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: 100px;
  height: 50px;
  background: #1B46FA;
  border: 1px solid #1B46FA;
  color: #ffffff;
  -webkit-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  position: relative;
  overflow: hidden;
}

.p-footer__pagetop_btn p a:hover {
  color: #1B46FA;
  -webkit-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}

.p-footer__pagetop_btn p a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #ffffff;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -o-transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.p-footer__pagetop_btn p a:hover::before {
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

.p-footer__pagetop_btn p big {
  font-size: 0.66667em;
  z-index: 15;
}

.p-footer__sitemap {
  padding: 120px 0px 60px 0px;
}

.p-footer__sitemap_navi a:hover {
  text-decoration: none;
}

.p-footer__sitemap_navi > 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;
  gap: 60px;
}

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

.p-footer__sitemap_navi > ul > li.is_width-full {
  width: 100%;
}

.p-footer__sitemap_navi > ul > li > dl {
  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;
  gap: 1.5em;
  text-align: left;
}

.p-footer__sitemap_navi > ul > li > dl > dt .p-footer__sitemap_navi--item a,
.p-footer__sitemap_navi > ul > li > dl > dt .p-footer__sitemap_navi--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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5em;
}

.p-footer__sitemap_navi > ul > li > dl > dt .p-footer__sitemap_navi--item sub {
  font-family: 'Roboto', sans-serif;
  font-size: 0.88889em;
  color: #1B46FA;
}

.p-footer__sitemap_navi > ul > li > dl > dt .p-footer__sitemap_navi--item big {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.22222em;
  font-weight: bold;
  color: #2F3640;
}

.p-footer__sitemap_navi > ul > li > dl > dt .p-footer__sitemap_navi--item a:hover big {
  text-decoration: underline;
}

.p-footer__sitemap_navi > ul > li > dl > dd > 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;
  gap: 1.5em;
}

.p-footer__sitemap_navi > ul > li > dl > dd > ul > li .p-footer__sitemap_navi--item big {
  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;
  font-size: 0.77778em;
}

.p-footer__sitemap_navi > ul > li > dl > dd > ul > li .p-footer__sitemap_navi--item big::before {
  display: inline-block;
  content: '';
  width: 4px;
  height: 1px;
  background: #2F3640;
}

.p-footer__sitemap_navi > ul > li > dl > dd > ul > li .p-footer__sitemap_navi--item a:hover big {
  text-decoration: underline;
}

.p-footer__sitemap_guide {
  margin-top: 120px;
}

.p-footer__sitemap_guide > 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 0;
}

.p-footer__sitemap_guide > ul > li {
  margin-left: -1px;
  border-left: 1px solid #2F3640;
  border-right: 1px solid #2F3640;
}

.p-footer__sitemap_guide--item a,
.p-footer__sitemap_guide--item span {
  padding: 0 1em;
}

.p-footer__sitemap_guide--item big {
  font-size: 0.77778em;
}

.p-footer__copyright {
  background: #1B46FA;
}

.p-footer__copyright_item {
  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: 100%;
  height: 90px;
}

.p-footer__copyright_item p small {
  font-size: 0.66667em;
  color: #ffffff;
}

@media screen and (max-width: 1920px) {
  /*.p-footer__sitemap_navi > ul > li > dl > dd > ul > li .p-footer__sitemap_navi--item big br {
    display: none;
  }*/
}

@media screen and (max-width: 1440px) {
  .p-footer__sitemap_navi > ul > li {
    width: calc( ( 100% - 60px ) / 2);
  }
}

@media screen and (max-width: 768px) {
  .p-footer__pagetop_btn p a,
  .p-footer__pagetop_btn p span {
    width: 25.64103vw;
    height: 12.82051vw;
  }
  .p-footer__pagetop_btn p big {
    font-size: 0.66667em;
  }
  .p-footer__sitemap {
    padding: 15.38462vw 0vw 15.38462vw 0vw;
  }
  .p-footer__sitemap_navi {
    display: none;
  }
  .p-footer__sitemap_guide {
    margin-top: 0vw;
  }
  .p-footer__sitemap_guide > 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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1em 0;
  }
  .p-footer__sitemap_guide > ul > li {
    border: none;
  }
  .p-footer__sitemap_guide--item a,
  .p-footer__sitemap_guide--item span {
    padding: 0;
  }
  .p-footer__copyright_item {
    width: 100%;
    height: 17.94872vw;
  }
  .p-footer__copyright_item p small {
    font-size: 0.55556em;
  }
}

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

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

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

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

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

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

.p-section__inner {
  margin: 0 auto;
  padding: 0px 100px;
  width: 100%;
  max-width: 1920px;
}

@media screen and (max-width: 980px) {
  .p-section {
    width: 100%;
    text-align: center;
  }
  .p-section__inner {
    margin: 0 auto;
    padding: 0px 50px;
    width: 100%;
    max-width: 1920px;
  }
}

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

/*
------------------------------------------------ */
.p-bgc__clr01,
.is_bgc01-clr01 {
  background: none;
}

.p-bgc__wht01,
.is_bgc01-wht01 {
  background: #ffffff;
}

.p-bgc__gry01,
.is_bgc01-gry01 {
  background: #F7F7F7;
}

.p-bgc__ble01,
.is_bgc01-ble01 {
  background: #1B46FA;
}

.p-bgc__blk01,
.is_bgc01-blk01 {
  background: #2F3640;
}

.p-bgc__img01,
.is_bgc01-img01 {
  background: url(../img/common/bgi_decovisual01_img01.png) no-repeat top center;
  background-size: 100%;
  background-attachment: fixed;
}

.is_mt-000 {
  margin-top: 0vw !important;
}

.is_mt-020 {
  margin-top: 5.12821vw !important;
}

.is_mt-040 {
  margin-top: 10.25641vw !important;
}

.is_mt-060 {
  margin-top: 15.38462vw !important;
}

.is_mt-080 {
  margin-top: 20.51282vw !important;
}

.is_mt-100 {
  margin-top: 25.64103vw !important;
}

.is_mt-120 {
  margin-top: 30.76923vw !important;
}

.is_mt-140 {
  margin-top: 35.89744vw !important;
}

.is_mt-160 {
  margin-top: 41.02564vw !important;
}

.is_mt-180 {
  margin-top: 46.15385vw !important;
}

.is_mt-200 {
  margin-top: 51.28205vw !important;
}

.is_mb-000 {
  margin-bottom: 0vw !important;
}

.is_mb-020 {
  margin-bottom: 5.12821vw !important;
}

.is_mb-040 {
  margin-bottom: 10.25641vw !important;
}

.is_mb-060 {
  margin-bottom: 15.38462vw !important;
}

.is_mb-080 {
  margin-bottom: 20.51282vw !important;
}

.is_mb-100 {
  margin-bottom: 25.64103vw !important;
}

.is_mb-120 {
  margin-bottom: 30.76923vw !important;
}

.is_mb-140 {
  margin-bottom: 35.89744vw !important;
}

.is_mb-160 {
  margin-bottom: 41.02564vw !important;
}

.is_mb-180 {
  margin-bottom: 46.15385vw !important;
}

.is_mb-200 {
  margin-bottom: 51.28205vw !important;
}

.is_ml-000 {
  margin-left: 0vw !important;
}

.is_ml-020 {
  margin-left: 5.12821vw !important;
}

.is_ml-040 {
  margin-left: 10.25641vw !important;
}

.is_ml-060 {
  margin-left: 15.38462vw !important;
}

.is_ml-080 {
  margin-left: 20.51282vw !important;
}

.is_ml-100 {
  margin-left: 25.64103vw !important;
}

.is_ml-120 {
  margin-left: 30.76923vw !important;
}

.is_ml-140 {
  margin-left: 35.89744vw !important;
}

.is_ml-160 {
  margin-left: 41.02564vw !important;
}

.is_ml-180 {
  margin-left: 46.15385vw !important;
}

.is_ml-200 {
  margin-left: 51.28205vw !important;
}

.is_mr-000 {
  margin-right: 0vw !important;
}

.is_mr-020 {
  margin-right: 5.12821vw !important;
}

.is_mr-040 {
  margin-right: 10.25641vw !important;
}

.is_mr-060 {
  margin-right: 15.38462vw !important;
}

.is_mr-080 {
  margin-right: 20.51282vw !important;
}

.is_mr-100 {
  margin-right: 25.64103vw !important;
}

.is_mr-120 {
  margin-right: 30.76923vw !important;
}

.is_mr-140 {
  margin-right: 35.89744vw !important;
}

.is_mr-160 {
  margin-right: 41.02564vw !important;
}

.is_mr-180 {
  margin-right: 46.15385vw !important;
}

.is_mr-200 {
  margin-right: 51.28205vw !important;
}

.is_pt-000 {
  padding-top: 0vw !important;
}

.is_pt-020 {
  padding-top: 5.12821vw !important;
}

.is_pt-040 {
  padding-top: 10.25641vw !important;
}

.is_pt-060 {
  padding-top: 15.38462vw !important;
}

.is_pt-080 {
  padding-top: 20.51282vw !important;
}

.is_pt-100 {
  padding-top: 25.64103vw !important;
}

.is_pt-120 {
  padding-top: 30.76923vw !important;
}

.is_pt-140 {
  padding-top: 35.89744vw !important;
}

.is_pt-160 {
  padding-top: 41.02564vw !important;
}

.is_pt-180 {
  padding-top: 46.15385vw !important;
}

.is_pt-200 {
  padding-top: 51.28205vw !important;
}

.is_pb-000 {
  padding-bottom: 0vw !important;
}

.is_pb-020 {
  padding-bottom: 5.12821vw !important;
}

.is_pb-040 {
  padding-bottom: 10.25641vw !important;
}

.is_pb-060 {
  padding-bottom: 15.38462vw !important;
}

.is_pb-080 {
  padding-bottom: 20.51282vw !important;
}

.is_pb-100 {
  padding-bottom: 25.64103vw !important;
}

.is_pb-120 {
  padding-bottom: 30.76923vw !important;
}

.is_pb-140 {
  padding-bottom: 35.89744vw !important;
}

.is_pb-160 {
  padding-bottom: 41.02564vw !important;
}

.is_pb-180 {
  padding-bottom: 46.15385vw !important;
}

.is_pb-200 {
  padding-bottom: 51.28205vw !important;
}

.is_pl-000 {
  padding-left: 0vw !important;
}

.is_pl-020 {
  padding-left: 5.12821vw !important;
}

.is_pl-040 {
  padding-left: 10.25641vw !important;
}

.is_pl-060 {
  padding-left: 15.38462vw !important;
}

.is_pl-080 {
  padding-left: 20.51282vw !important;
}

.is_pl-100 {
  padding-left: 25.64103vw !important;
}

.is_pl-120 {
  padding-left: 30.76923vw !important;
}

.is_pl-140 {
  padding-left: 35.89744vw !important;
}

.is_pl-160 {
  padding-left: 41.02564vw !important;
}

.is_pl-180 {
  padding-left: 46.15385vw !important;
}

.is_pl-200 {
  padding-left: 51.28205vw !important;
}

.is_pr-000 {
  padding-right: 0vw !important;
}

.is_pr-020 {
  padding-right: 5.12821vw !important;
}

.is_pr-040 {
  padding-right: 10.25641vw !important;
}

.is_pr-060 {
  padding-right: 15.38462vw !important;
}

.is_pr-080 {
  padding-right: 20.51282vw !important;
}

.is_pr-100 {
  padding-right: 25.64103vw !important;
}

.is_pr-120 {
  padding-right: 30.76923vw !important;
}

.is_pr-140 {
  padding-right: 35.89744vw !important;
}

.is_pr-160 {
  padding-right: 41.02564vw !important;
}

.is_pr-180 {
  padding-right: 46.15385vw !important;
}

.is_pr-200 {
  padding-right: 51.28205vw !important;
}

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

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

@media screen and (max-width: 768px) {
  .is_mt-000-sp {
    margin-top: 0vw !important;
  }
  .is_mt-020-sp {
    margin-top: 5.12821vw !important;
  }
  .is_mt-040-sp {
    margin-top: 10.25641vw !important;
  }
  .is_mt-060-sp {
    margin-top: 15.38462vw !important;
  }
  .is_mt-080-sp {
    margin-top: 20.51282vw !important;
  }
  .is_mt-100-sp {
    margin-top: 25.64103vw !important;
  }
  .is_mt-120-sp {
    margin-top: 30.76923vw !important;
  }
  .is_mt-140-sp {
    margin-top: 35.89744vw !important;
  }
  .is_mt-160-sp {
    margin-top: 41.02564vw !important;
  }
  .is_mt-180-sp {
    margin-top: 46.15385vw !important;
  }
  .is_mt-200-sp {
    margin-top: 51.28205vw !important;
  }
  .is_mb-000-sp {
    margin-bottom: 0vw !important;
  }
  .is_mb-020-sp {
    margin-bottom: 5.12821vw !important;
  }
  .is_mb-040-sp {
    margin-bottom: 10.25641vw !important;
  }
  .is_mb-060-sp {
    margin-bottom: 15.38462vw !important;
  }
  .is_mb-080-sp {
    margin-bottom: 20.51282vw !important;
  }
  .is_mb-100-sp {
    margin-bottom: 25.64103vw !important;
  }
  .is_mb-120-sp {
    margin-bottom: 30.76923vw !important;
  }
  .is_mb-140-sp {
    margin-bottom: 35.89744vw !important;
  }
  .is_mb-160-sp {
    margin-bottom: 41.02564vw !important;
  }
  .is_mb-180-sp {
    margin-bottom: 46.15385vw !important;
  }
  .is_mb-200-sp {
    margin-bottom: 51.28205vw !important;
  }
  .is_ml-000-sp {
    margin-left: 0vw !important;
  }
  .is_ml-020-sp {
    margin-left: 5.12821vw !important;
  }
  .is_ml-040-sp {
    margin-left: 10.25641vw !important;
  }
  .is_ml-060-sp {
    margin-left: 15.38462vw !important;
  }
  .is_ml-080-sp {
    margin-left: 20.51282vw !important;
  }
  .is_ml-100-sp {
    margin-left: 25.64103vw !important;
  }
  .is_ml-120-sp {
    margin-left: 30.76923vw !important;
  }
  .is_ml-140-sp {
    margin-left: 35.89744vw !important;
  }
  .is_ml-160-sp {
    margin-left: 41.02564vw !important;
  }
  .is_ml-180-sp {
    margin-left: 46.15385vw !important;
  }
  .is_ml-200-sp {
    margin-left: 51.28205vw !important;
  }
  .is_mr-000-sp {
    margin-right: 0vw !important;
  }
  .is_mr-020-sp {
    margin-right: 5.12821vw !important;
  }
  .is_mr-040-sp {
    margin-right: 10.25641vw !important;
  }
  .is_mr-060-sp {
    margin-right: 15.38462vw !important;
  }
  .is_mr-080-sp {
    margin-right: 20.51282vw !important;
  }
  .is_mr-100-sp {
    margin-right: 25.64103vw !important;
  }
  .is_mr-120-sp {
    margin-right: 30.76923vw !important;
  }
  .is_mr-140-sp {
    margin-right: 35.89744vw !important;
  }
  .is_mr-160-sp {
    margin-right: 41.02564vw !important;
  }
  .is_mr-180-sp {
    margin-right: 46.15385vw !important;
  }
  .is_mr-200-sp {
    margin-right: 51.28205vw !important;
  }
  .is_pt-000-sp {
    padding-top: 0vw !important;
  }
  .is_pt-020-sp {
    padding-top: 5.12821vw !important;
  }
  .is_pt-040-sp {
    padding-top: 10.25641vw !important;
  }
  .is_pt-060-sp {
    padding-top: 15.38462vw !important;
  }
  .is_pt-080-sp {
    padding-top: 20.51282vw !important;
  }
  .is_pt-100-sp {
    padding-top: 25.64103vw !important;
  }
  .is_pt-120-sp {
    padding-top: 30.76923vw !important;
  }
  .is_pt-140-sp {
    padding-top: 35.89744vw !important;
  }
  .is_pt-160-sp {
    padding-top: 41.02564vw !important;
  }
  .is_pt-180-sp {
    padding-top: 46.15385vw !important;
  }
  .is_pt-200-sp {
    padding-top: 51.28205vw !important;
  }
  .is_pb-000-sp {
    padding-bottom: 0vw !important;
  }
  .is_pb-020-sp {
    padding-bottom: 5.12821vw !important;
  }
  .is_pb-040-sp {
    padding-bottom: 10.25641vw !important;
  }
  .is_pb-060-sp {
    padding-bottom: 15.38462vw !important;
  }
  .is_pb-080-sp {
    padding-bottom: 20.51282vw !important;
  }
  .is_pb-100-sp {
    padding-bottom: 25.64103vw !important;
  }
  .is_pb-120-sp {
    padding-bottom: 30.76923vw !important;
  }
  .is_pb-140-sp {
    padding-bottom: 35.89744vw !important;
  }
  .is_pb-160-sp {
    padding-bottom: 41.02564vw !important;
  }
  .is_pb-180-sp {
    padding-bottom: 46.15385vw !important;
  }
  .is_pb-200-sp {
    padding-bottom: 51.28205vw !important;
  }
  .is_pl-000-sp {
    padding-left: 0vw !important;
  }
  .is_pl-020-sp {
    padding-left: 5.12821vw !important;
  }
  .is_pl-040-sp {
    padding-left: 10.25641vw !important;
  }
  .is_pl-060-sp {
    padding-left: 15.38462vw !important;
  }
  .is_pl-080-sp {
    padding-left: 20.51282vw !important;
  }
  .is_pl-100-sp {
    padding-left: 25.64103vw !important;
  }
  .is_pl-120-sp {
    padding-left: 30.76923vw !important;
  }
  .is_pl-140-sp {
    padding-left: 35.89744vw !important;
  }
  .is_pl-160-sp {
    padding-left: 41.02564vw !important;
  }
  .is_pl-180-sp {
    padding-left: 46.15385vw !important;
  }
  .is_pl-200-sp {
    padding-left: 51.28205vw !important;
  }
  .is_pr-000-sp {
    padding-right: 0vw !important;
  }
  .is_pr-020-sp {
    padding-right: 5.12821vw !important;
  }
  .is_pr-040-sp {
    padding-right: 10.25641vw !important;
  }
  .is_pr-060-sp {
    padding-right: 15.38462vw !important;
  }
  .is_pr-080-sp {
    padding-right: 20.51282vw !important;
  }
  .is_pr-100-sp {
    padding-right: 25.64103vw !important;
  }
  .is_pr-120-sp {
    padding-right: 30.76923vw !important;
  }
  .is_pr-140-sp {
    padding-right: 35.89744vw !important;
  }
  .is_pr-160-sp {
    padding-right: 41.02564vw !important;
  }
  .is_pr-180-sp {
    padding-right: 46.15385vw !important;
  }
  .is_pr-200-sp {
    padding-right: 51.28205vw !important;
  }
}

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

/*
------------------------------------------------ */
.p-att p {
  font-size: 0.88889em;
  line-height: 1.6;
  text-align: left;
}

.p-att ul li {
  font-size: 0.88889em;
  line-height: 1.6;
  text-align: left;
}

/*
------------------------------------------------ */
.p-tit {
  letter-spacing: 0.05em;
}

.p-tit.is_deco-border-bottom-gry {
  padding-bottom: 2em;
  border-bottom: 1px solid #E1E1E1;
}

.p-tit__extra01 h1, .p-tit__extra01 h2, .p-tit__extra01 h3, .p-tit__extra01 h4, .p-tit__extra01 h5, .p-tit__extra01 h6, .p-tit__extra01 p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.p-tit__extra01 big {
  display: inline-block;
  font-size: 5.55556em;
  font-weight: bold;
  color: #A0B6D7;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.05em;
}

.p-tit__extra01 b {
  display: inline-block;
  font-weight: bold;
  color: #1B46FA;
  line-height: 1;
}

.p-tit__type01 {
  margin-bottom: 4em;
}

.p-tit__type01 h1, .p-tit__type01 h2, .p-tit__type01 h3, .p-tit__type01 h4, .p-tit__type01 h5, .p-tit__type01 h6, .p-tit__type01 p {
  font-family: 'Noto Serif JP', serif;
  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: 1em;
}

.p-tit__type01 big {
  display: block;
  font-size: 1.88889em;
  font-weight: bold;
}

.p-tit__type01 small {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 0.88889em;
  font-weight: bold;
  color: #1B46FA;
}

.p-tit__type02 {
  margin-bottom: 4em;
}

.p-tit__type02 h1, .p-tit__type02 h2, .p-tit__type02 h3, .p-tit__type02 h4, .p-tit__type02 h5, .p-tit__type02 h6, .p-tit__type02 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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5em;
}

.p-tit__type02 big {
  display: block;
  font-size: 1.66667em;
  font-weight: bold;
  color: #1B46FA;
}

.p-tit__type02 small {
  display: block;
  font-size: 0.88889em;
  font-weight: bold;
}

.p-tit__type02 b {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.66667em;
  font-weight: normal;
}

.p-tit__type02 em {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 0.88889em;
  font-weight: normal;
  color: #1B46FA;
}

.p-tit__type03 {
  margin-bottom: 4em;
}

.p-tit__type03 h1, .p-tit__type03 h2, .p-tit__type03 h3, .p-tit__type03 h4, .p-tit__type03 h5, .p-tit__type03 h6, .p-tit__type03 p {
  font-family: 'Noto Serif JP', serif;
}

.p-tit__type03 big {
  display: inline-block;
  font-size: 2.22222em;
  font-weight: bold;
}

.p-tit__type03 b {
  display: inline-block;
  font-size: 1.1em;
  font-weight: bold;
  color: #1B46FA;
  position: relative;
}

.p-tit__type03 b::after {
  display: inline-block;
  content: '';
  background: #1B46FA;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -0.5em;
  left: 0;
  right: 0;
  margin: auto;
}

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

.p-tit__type04 h1, .p-tit__type04 h2, .p-tit__type04 h3, .p-tit__type04 h4, .p-tit__type04 h5, .p-tit__type04 h6, .p-tit__type04 p {
  font-family: 'Noto Serif JP', serif;
}

.p-tit__type04 big {
  display: inline-block;
  font-size: 1.66667em;
  font-weight: bold;
}

.p-tit__type04 em {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 2.22222em;
  color: #1B46FA;
}

.p-tit__type05 h1, .p-tit__type05 h2, .p-tit__type05 h3, .p-tit__type05 h4, .p-tit__type05 h5, .p-tit__type05 h6, .p-tit__type05 p {
  font-family: 'Noto Serif JP', serif;
}

.p-tit__type05 big {
  display: inline-block;
  font-size: 1.55556em;
  font-weight: bold;
}

.p-tit__type06 h1, .p-tit__type06 h2, .p-tit__type06 h3, .p-tit__type06 h4, .p-tit__type06 h5, .p-tit__type06 h6, .p-tit__type06 p {
  font-family: 'Noto Serif JP', serif;
}

.p-tit__type06 big {
  display: inline-block;
  font-size: 1.44444em;
  font-weight: bold;
}

.p-tit__type07 h1, .p-tit__type07 h2, .p-tit__type07 h3, .p-tit__type07 h4, .p-tit__type07 h5, .p-tit__type07 h6, .p-tit__type07 p {
  font-family: 'Noto Serif JP', serif;
}

.p-tit__type07 big {
  display: inline-block;
  font-size: 1.33333em;
  font-weight: bold;
}

.p-tit__type08 h1, .p-tit__type08 h2, .p-tit__type08 h3, .p-tit__type08 h4, .p-tit__type08 h5, .p-tit__type08 h6, .p-tit__type08 p {
  font-family: 'Noto Serif JP', serif;
}

.p-tit__type08 big {
  display: inline-block;
  font-size: 1.22222em;
  font-weight: bold;
}

.p-tit__type09 h1, .p-tit__type09 h2, .p-tit__type09 h3, .p-tit__type09 h4, .p-tit__type09 h5, .p-tit__type09 h6, .p-tit__type09 p {
  font-family: 'Noto Serif JP', serif;
}

.p-tit__type09 big {
  display: inline-block;
  font-size: 1.11111em;
  font-weight: bold;
}

.p-tit__type10 h1, .p-tit__type10 h2, .p-tit__type10 h3, .p-tit__type10 h4, .p-tit__type10 h5, .p-tit__type10 h6, .p-tit__type10 p {
  font-family: 'Noto Serif JP', serif;
}

.p-tit__type10 big {
  display: inline-block;
  font-size: 1em;
  font-weight: bold;
}

@media screen and (max-width: 1440px) {
  .p-tit__extra01 big {
    font-size: 11.53846vw;
    letter-spacing: -0.05em;
  }
}

@media screen and (max-width: 768px) {
  .p-tit.is_deco-border-bottom-gry {
    padding-bottom: 1em;
  }
  .p-tit__extra01 big {
    font-size: 12.82051vw;
    letter-spacing: -0.05em;
  }
  .p-tit.is_letterspacing-pack big {
    letter-spacing: -0.1em;
  }
  .p-tit__type01 {
    margin-bottom: 2em;
  }
  .p-tit__type01 h1, .p-tit__type01 h2, .p-tit__type01 h3, .p-tit__type01 h4, .p-tit__type01 h5, .p-tit__type01 h6, .p-tit__type01 p {
    gap: 0.5em;
  }
  .p-tit__type01 big {
    font-size: 1.44444em;
  }
  .p-tit__type01 small {
    font-size: 0.77778em;
  }
  .p-tit__type02 {
    margin-bottom: 4em;
  }
  .p-tit__type02 h1, .p-tit__type02 h2, .p-tit__type02 h3, .p-tit__type02 h4, .p-tit__type02 h5, .p-tit__type02 h6, .p-tit__type02 p {
    gap: 0.5em;
  }
  .p-tit__type02 big {
    font-size: 1.33333em;
  }
  .p-tit__type02 small {
    font-size: 0.77778em;
  }
  .p-tit__type02 b {
    margin: 0 0.5em;
    font-size: 1.22222em;
  }
  .p-tit__type02 em {
    font-size: 0.77778em;
  }
  .p-tit__type03 {
    margin-bottom: 4em;
  }
  .p-tit__type03 big {
    font-size: 1.66667em;
  }
  .p-tit__type03 b {
    font-size: 1.1em;
  }
  .p-tit__type03 b::after {
    height: 2px;
    bottom: -0.5em;
  }
  .p-tit__type04 {
    margin-bottom: 2em;
  }
  .p-tit__type04 big {
    font-size: 1.44444em;
  }
  .p-tit__type04 em {
    font-size: 1.33333em;
  }
  .p-tit__type05 big {
    font-size: 1.33333em;
  }
  .p-tit__type06 big {
    font-size: 1.22222em;
  }
  .p-tit__type07 big {
    font-size: 1.11111em;
  }
  .p-tit__type08 big {
    font-size: 1em;
  }
  .p-tit__type09 big {
    font-size: 0.88889em;
  }
  .p-tit__type10 big {
    font-size: 0.77778em;
  }
}

/*
------------------------------------------------ */
.p-btnlink__type01 .p-btnlink__box {
  width: 100%;
}

.p-btnlink__type01 .p-btnlink__box ul {
  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: 50px;
}

.p-btnlink__type01 .p-btnlink__box ul li {
  width: 100%;
}

.p-btnlink__type01 .p-btnlink__box_item {
  width: 100%;
  height: 50px;
  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 #1B46FA;
}

.p-btnlink__type01.is_bgc-wht01-ble01 .p-btnlink__box_item {
  border: 1px solid #1B46FA;
}

.p-btnlink__type01.is_bgc-red01-wht01 .p-btnlink__box_item {
  border: 1px solid #E74C3C;
}

.p-btnlink__type01.is_size01-md01 .p-btnlink__box_item {
  height: 50px;
}

.p-btnlink__type01.is_size01-lg01 .p-btnlink__box_item {
  height: 80px;
}

.p-btnlink__type01.is_size01-xl01 .p-btnlink__box_item {
  height: 200px;
}

.p-btnlink__type01 .p-btnlink__box_item.is_border-none,
.p-btnlink__type01.is_border-none .p-btnlink__box_item {
  border: none;
}

.p-btnlink__type01 .p-btnlink__box_item p {
  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;
}

.p-btnlink__type01 .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: center;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
}

.p-btnlink__type01.is_bgc-wht01-ble01 .p-btnlink__box_item object {
  background: #ffffff;
}

.p-btnlink__type01.is_bgc-red01-wht01 .p-btnlink__box_item object {
  background: #E74C3C;
}

.p-btnlink__type01 .p-btnlink__box_item a,
.p-btnlink__type01 .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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1em;
  -webkit-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  position: relative;
  overflow: hidden;
  color: #1B46FA;
}

.p-btnlink__type01.is_bgc-wht01-ble01 .p-btnlink__box_item a,
.p-btnlink__type01.is_bgc-wht01-ble01 .p-btnlink__box_item span {
  color: #1B46FA;
}

.p-btnlink__type01.is_bgc-red01-wht01 .p-btnlink__box_item a,
.p-btnlink__type01.is_bgc-red01-wht01 .p-btnlink__box_item span {
  color: #ffffff;
}

.p-btnlink__type01 .p-btnlink__box_item a:hover,
a:hover .p-btnlink__type01 .p-btnlink__box_item a,
a:hover .p-btnlink__type01 .p-btnlink__box_item span {
  text-decoration: none;
  color: #ffffff;
  -webkit-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}

.p-btnlink__type01.is_bgc-wht01-ble01 .p-btnlink__box_item a:hover,
a:hover .p-btnlink__type01.is_bgc-wht01-ble01 .p-btnlink__box_item a,
a:hover .p-btnlink__type01.is_bgc-wht01-ble01 .p-btnlink__box_item span {
  color: #ffffff;
}

.p-btnlink__type01.is_bgc-red01-wht01 .p-btnlink__box_item a:hover,
a:hover .p-btnlink__type01.is_bgc-red01-wht01 .p-btnlink__box_item a,
a:hover .p-btnlink__type01.is_bgc-red01-wht01 .p-btnlink__box_item span {
  color: #E74C3C;
}

.p-btnlink__type01 .p-btnlink__box_item a::before,
a .p-btnlink__type01 .p-btnlink__box_item a::before,
a .p-btnlink__type01 .p-btnlink__box_item span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #1B46FA;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -o-transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.p-btnlink__type01.is_bgc-wht01-ble01 .p-btnlink__box_item a::before,
a .p-btnlink__type01.is_bgc-wht01-ble01 .p-btnlink__box_item a::before,
a .p-btnlink__type01.is_bgc-wht01-ble01 .p-btnlink__box_item span::before {
  background: #1B46FA;
}

.p-btnlink__type01.is_bgc-red01-wht01 .p-btnlink__box_item a::before,
a .p-btnlink__type01.is_bgc-red01-wht01 .p-btnlink__box_item a::before,
a .p-btnlink__type01.is_bgc-red01-wht01 .p-btnlink__box_item span::before {
  background: #ffffff;
}

.p-btnlink__type01 .p-btnlink__box_item a:hover::before,
a:hover .p-btnlink__type01 .p-btnlink__box_item a::before,
a:hover .p-btnlink__type01 .p-btnlink__box_item span::before {
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

.p-btnlink__type01 .p-btnlink__box_item a::after,
a .p-btnlink__type01 .p-btnlink__box_item a::after,
a .p-btnlink__type01 .p-btnlink__box_item span::after {
  content: '';
  width: 20px;
  height: 2px;
  background: #1B46FA;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  margin: auto;
  -webkit-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.p-btnlink__type01.is_bgc-wht01-ble01 .p-btnlink__box_item a::after,
a .p-btnlink__type01.is_bgc-wht01-ble01 .p-btnlink__box_item a::after,
a .p-btnlink__type01.is_bgc-wht01-ble01 .p-btnlink__box_item span::after {
  background: #1B46FA;
}

.p-btnlink__type01.is_bgc-red01-wht01 .p-btnlink__box_item a::after,
a .p-btnlink__type01.is_bgc-red01-wht01 .p-btnlink__box_item a::after,
a .p-btnlink__type01.is_bgc-red01-wht01 .p-btnlink__box_item span::after {
  background: #ffffff;
}

.p-btnlink__type01 .p-btnlink__box_item a:hover::after,
a:hover .p-btnlink__type01 .p-btnlink__box_item a::after,
a:hover .p-btnlink__type01 .p-btnlink__box_item span::after {
  background: #ffffff;
  -webkit-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.p-btnlink__type01.is_bgc-wht01-ble01 .p-btnlink__box_item a:hover::after,
a:hover .p-btnlink__type01.is_bgc-wht01-ble01 .p-btnlink__box_item a::after,
a:hover .p-btnlink__type01.is_bgc-wht01-ble01 .p-btnlink__box_item span::after {
  background: #ffffff;
}

.p-btnlink__type01.is_bgc-red01-wht01 .p-btnlink__box_item a:hover::after,
a:hover .p-btnlink__type01.is_bgc-red01-wht01 .p-btnlink__box_item a::after,
a:hover .p-btnlink__type01.is_bgc-red01-wht01 .p-btnlink__box_item span::after {
  background: #E74C3C;
}

.p-btnlink__type01 .p-btnlink__box_item big {
  font-family: 'Roboto', sans-serif;
  font-size: 0.77778em;
  z-index: 15;
}

.p-btnlink__type01.is_size01-md01 .p-btnlink__box_item big {
  font-size: 0.77778em;
}

.p-btnlink__type01.is_size01-lg01 .p-btnlink__box_item big {
  font-size: 0.88889em;
}

.p-btnlink__type01.is_size01-xl01 .p-btnlink__box_item big {
  font-size: 2.22222em;
}

.p-btnlink__type01 .p-btnlink__box_item small {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.66667em;
  line-height: 1.6;
  z-index: 15;
}

.p-btnlink__type01.is_size01-md01 .p-btnlink__box_item small {
  font-size: 0.66667em;
}

.p-btnlink__type01.is_size01-lg01 .p-btnlink__box_item small {
  font-size: 0.77778em;
}

.p-btnlink__type01.is_size01-xl01 .p-btnlink__box_item small {
  font-size: 1em;
}

@media screen and (max-width: 768px) {
  .p-btnlink__type01 .p-btnlink__box {
    width: 100%;
  }
  .p-btnlink__type01 .p-btnlink__box ul {
    width: 100%;
    gap: 7.69231vw;
  }
  .p-btnlink__type01 .p-btnlink__box ul li {
    width: 100%;
  }
  .p-btnlink__type01 .p-btnlink__box_item {
    width: 100%;
    height: 15.38462vw;
  }
  .p-btnlink__type01.is_size01-md01 .p-btnlink__box_item {
    height: 12.82051vw;
  }
  .p-btnlink__type01.is_size01-lg01 .p-btnlink__box_item {
    height: 20.51282vw;
  }
  .p-btnlink__type01.is_size01-xl01 .p-btnlink__box_item {
    height: 38.46154vw;
  }
  .p-btnlink__type01 .p-btnlink__box_item p {
    width: 100%;
    height: 100%;
  }
  .p-btnlink__type01 .p-btnlink__box_item object {
    width: 100%;
    height: 100%;
  }
  .p-btnlink__type01 .p-btnlink__box_item a,
  .p-btnlink__type01 .p-btnlink__box_item span {
    width: 100%;
    height: 100%;
    gap: 1em;
  }
  .p-btnlink__type01 .p-btnlink__box_item a::before,
  a .p-btnlink__type01 .p-btnlink__box_item a::before,
  a .p-btnlink__type01 .p-btnlink__box_item span::before {
    width: 100%;
    height: 100%;
  }
  .p-btnlink__type01 .p-btnlink__box_item a::after,
  a .p-btnlink__type01 .p-btnlink__box_item a::after,
  a .p-btnlink__type01 .p-btnlink__box_item span::after {
    width: 5.12821vw;
    height: 0.51282vw;
  }
  .p-btnlink__type01 .p-btnlink__box_item big {
    font-size: 0.77778em;
  }
  .p-btnlink__type01.is_size01-md01 .p-btnlink__box_item big {
    font-size: 0.77778em;
  }
  .p-btnlink__type01.is_size01-lg01 .p-btnlink__box_item big {
    font-size: 0.88889em;
  }
  .p-btnlink__type01.is_size01-xl01 .p-btnlink__box_item big {
    font-size: 2.22222em;
  }
  .p-btnlink__type01 .p-btnlink__box_item small {
    font-size: 0.66667em;
  }
  .p-btnlink__type01.is_size01-md01 .p-btnlink__box_item small {
    font-size: 0.66667em;
  }
  .p-btnlink__type01.is_size01-lg01 .p-btnlink__box_item small {
    font-size: 0.77778em;
  }
  .p-btnlink__type01.is_size01-xl01 .p-btnlink__box_item small {
    font-size: 1em;
  }
}

/*
------------------------------------------------ */
.p-breadcrumbslist__box {
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.p-breadcrumbslist__box ul li {
  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-breadcrumbslist__box ul li::after {
  display: inline-block;
  content: '／';
  color: #ffffff;
  margin-left: 0.5em;
  margin-right: 0.5em;
}

.p-breadcrumbslist__box ul li:last-of-type:after {
  display: none;
}

.p-breadcrumbslist__box_item a,
.p-breadcrumbslist__box_item span {
  color: #ffffff;
}

.p-breadcrumbslist__box_item big {
  font-size: 0.77778em;
}

@media screen and (max-width: 768px) {
  .p-breadcrumbslist .p-section__inner {
    padding: 0vw 5.12821vw;
  }
  .p-breadcrumbslist__box {
    width: 100%;
    height: 12.82051vw;
  }
  .p-breadcrumbslist__box ul {
    margin-top: -0.2em;
  }
  .p-breadcrumbslist__box ul li::after {
    content: '／';
    font-size: 0.66667em;
    margin-left: 0.2em;
    padding-left: 0.2em;
    margin-right: 0.2em;
    padding-right: 0.2em;
    margin-top: 0.3em;
  }
  .p-breadcrumbslist__box_item big {
    font-size: 0.66667em;
  }
}

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

.p-pageheading__type01 .p-section__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.p-pageheading__type01 .p-pageheading__bgi {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.p-pageheading__type01 .p-pageheading__bgi picture,
.p-pageheading__type01 .p-pageheading__bgi source,
.p-pageheading__type01 .p-pageheading__bgi img {
  width: auto;
  height: 700px;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-pageheading__type01 .p-pageheading__tit {
  margin-top: 600px;
  padding: 60px 0px 60px 0px;
  width: 100%;
  max-width: 1200px;
  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;
  background: #ffffff;
  z-index: 15;
}

.p-pageheading__type01 .p-pageheading__tit h1, .p-pageheading__type01 .p-pageheading__tit h2, .p-pageheading__type01 .p-pageheading__tit h3, .p-pageheading__type01 .p-pageheading__tit h4, .p-pageheading__type01 .p-pageheading__tit h5, .p-pageheading__type01 .p-pageheading__tit h6, .p-pageheading__type01 .p-pageheading__tit 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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1em;
}

.p-pageheading__type01 .p-pageheading__tit small {
  font-size: 1.33333em;
  color: #1B46FA;
  letter-spacing: 0.2em;
  /*margin-right: 1.0em;*/
}

.p-pageheading__type01 .p-pageheading__tit big {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.77778em;
  font-weight: bold;
  line-height: 1.6;
  /*letter-spacing: 0.2em;*/
}

.p-pageheading__type02 .p-section__inner {
  height: 100%;
  height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.p-pageheading__type02 .p-pageheading__bgi picture,
.p-pageheading__type02 .p-pageheading__bgi source,
.p-pageheading__type02 .p-pageheading__bgi img {
  width: auto;
  height: 350px;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-pageheading__type02 .p-pageheading__tit {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-pageheading__type02 .p-pageheading__tit h1, .p-pageheading__type02 .p-pageheading__tit h2, .p-pageheading__type02 .p-pageheading__tit h3, .p-pageheading__type02 .p-pageheading__tit h4, .p-pageheading__type02 .p-pageheading__tit h5, .p-pageheading__type02 .p-pageheading__tit h6, .p-pageheading__type02 .p-pageheading__tit p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5em;
}

.p-pageheading__type02 .p-pageheading__tit big {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.22222em;
  font-weight: bold;
  letter-spacing: 0.2em;
}

.p-pageheading__type02 .p-pageheading__tit big b {
  font-size: 1.1em;
  font-weight: bold;
  color: #1B46FA;
}

.p-pageheading__type02 .p-pageheading__tit small {
  font-size: 0.77778em;
  color: #1B46FA;
  letter-spacing: 0.2em;
  margin-right: 1.0em;
}

@media screen and (max-width: 768px) {
  .p-pageheading__type01 .p-section__inner {
    padding: 0vw 5.12821vw;
  }
  .p-pageheading__type01 .p-pageheading__bgi picture,
  .p-pageheading__type01 .p-pageheading__bgi source,
  .p-pageheading__type01 .p-pageheading__bgi img {
    width: auto;
    height: 76.92308vw;
  }
  .p-pageheading__type01 .p-pageheading__tit {
    margin-top: 66.66667vw;
    padding: 5.12821vw 0vw 5.12821vw 0vw;
    width: 100%;
    max-width: 100%;
  }
  .p-pageheading__type01 .p-pageheading__tit h1, .p-pageheading__type01 .p-pageheading__tit h2, .p-pageheading__type01 .p-pageheading__tit h3, .p-pageheading__type01 .p-pageheading__tit h4, .p-pageheading__type01 .p-pageheading__tit h5, .p-pageheading__type01 .p-pageheading__tit h6, .p-pageheading__type01 .p-pageheading__tit p {
    gap: 0.5em;
  }
  .p-pageheading__type01 .p-pageheading__tit small {
    font-size: 0.88889em;
  }
  .p-pageheading__type01 .p-pageheading__tit big {
    font-size: 1.33333em;
    line-height: 1.6;
  }
  .p-pageheading__type02 .p-section__inner {
    padding: 0vw 5.12821vw;
    height: 100%;
    height: 46.15385vw;
  }
  .p-pageheading__type02 .p-pageheading__bgi picture,
  .p-pageheading__type02 .p-pageheading__bgi source,
  .p-pageheading__type02 .p-pageheading__bgi img {
    height: 46.15385vw;
  }
  .p-pageheading__type02 .p-pageheading__tit {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }
  .p-pageheading__type02 .p-pageheading__tit h1, .p-pageheading__type02 .p-pageheading__tit h2, .p-pageheading__type02 .p-pageheading__tit h3, .p-pageheading__type02 .p-pageheading__tit h4, .p-pageheading__type02 .p-pageheading__tit h5, .p-pageheading__type02 .p-pageheading__tit h6, .p-pageheading__type02 .p-pageheading__tit p {
    gap: 0.5em;
  }
  .p-pageheading__type02 .p-pageheading__tit big {
    font-size: 1.33333em;
  }
  .p-pageheading__type02 .p-pageheading__tit big b {
    font-size: 1.1em;
  }
  .p-pageheading__type02 .p-pageheading__tit small {
    font-size: 0.66667em;
    letter-spacing: 0.2em;
    margin-right: 1.0em;
  }
}

/*
------------------------------------------------ */
.p-attlist__box {
  text-align: left;
}

.p-attlist__type01 .p-attlist__box ul li {
  margin-left: 1em;
  text-indent: -1em;
}

.p-attlist__box ul li big {
  font-size: 0.77778em;
}

/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
/*
------------------------------------------------ */
.p-tophero .p-bgc {
  height: calc( 100vh - 100px);
  position: relative;
  background: url(../img/index/tophero_bgi01_img01_pc.png) no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.p-tophero__box {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.p-tophero__box_mv video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100vh;
}

.p-tophero__box_kv {
  width: 100%;
  max-width: 1000vw;
  min-width: 1000vw;
  height: calc( 100vh - 100px);
  min-height: 42.2vw;
  pointer-events: none;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.p-tophero__box_kv--video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.p-tophero__box_tit {
  width: 100%;
  height: 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;
  position: relative;
  z-index: 15;
  margin-top: -2em;
}

.p-tophero__box_tit.is_pattern-type02 {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: -9em;
}

.p-tophero__box_tit h1,
.p-tophero__box_tit p {
  margin: 0 auto;
  padding: 0 2em;
  width: 100%;
  max-width: 1200px;
  text-align: left;
  -webkit-filter: drop-shadow(0em 0em 0.5em #2F3640);
  filter: drop-shadow(0em 0em 0.5em #2F3640);
}

.p-tophero__box_tit.is_pattern-type02 h1,
.p-tophero__box_tit.is_pattern-type02 p {
  -webkit-filter: drop-shadow(0em 0em 0.5em #ffffff);
  filter: drop-shadow(0em 0em 0.5em #ffffff);
}

.p-tophero__box_tit big {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 2.22222em;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.p-tophero__box_tit.is_pattern-type02 big {
  color: #1B46FA;
}

.p-tophero__box_tit sub {
  margin-top: 1em;
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.11111em;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.p-tophero__box_tit.is_pattern-type02 sub {
  color: #1B46FA;
}

.p-tophero__box_tit sub ruby rt {
  -webkit-transform: translateY(-0.5em);
  -ms-transform: translateY(-0.5em);
  transform: translateY(-0.5em);
}

.p-tophero__box_nav {
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 15;
}

.p-tophero__box_nav p::before {
  content: '';
  position: absolute;
  bottom: 0px;
  left: -39px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  -webkit-animation: tophero_box_nav_circlemove_pc 1.6s ease-in-out infinite, tophero_box_nav_cirlemovehide_pc 1.6s ease-out infinite;
  animation: tophero_box_nav_circlemove_pc 1.6s ease-in-out infinite, tophero_box_nav_cirlemovehide_pc 1.6s ease-out infinite;
}

@-webkit-keyframes tophero_box_nav_circlemove_pc {
  0% {
    bottom: 95px;
  }
  100% {
    bottom: -5px;
  }
}

@keyframes tophero_box_nav_circlemove_pc {
  0% {
    bottom: 95px;
  }
  100% {
    bottom: -5px;
  }
}

@-webkit-keyframes tophero_box_nav_cirlemovehide_pc {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

@keyframes tophero_box_nav_cirlemovehide_pc {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

.p-tophero__box_nav p::after {
  display: block;
  content: '';
  position: absolute;
  bottom: 0px;
  left: -35px;
  width: 1px;
  height: 100px;
  background: #fff;
}

.p-tophero__box_nav p big {
  position: absolute;
  left: -40px;
  bottom: 120px;
  color: #ffffff;
  font-size: 0.66667em;
  white-space: nowrap;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.p-tophero__box_news {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 15;
}

.p-tophero__box_news .p-topinformation {
  background: #ffffff;
}

@media screen and (max-width: 768px) {
  .p-tophero .p-bgc {
    height: calc( 100vh - 20.51282vw);
    background: url(../img/index/tophero_bgi01_img01_sp.png) no-repeat center center;
    background-size: cover;
    overflow: visible;
  }
  .p-tophero__box_kv {
    width: 100%;
    max-width: 1000vw;
    min-width: 1000vw;
    height: calc( 100vh - 20.51282vw);
    min-height: 42.2vw;
  }
  .p-tophero__box_tit {
    margin-top: -10.25641vw;
    padding: 0 5.12821vw;
  }
  .p-tophero__box_tit h1,
  .p-tophero__box_tit p {
    padding: 0 1em;
    width: 100%;
    max-width: 100%;
  }
  .p-tophero__box_tit big {
    font-size: 1.66667em;
    text-align: center;
  }
  .p-tophero__box_tit sub {
    margin-top: 1em;
    font-size: 0.77778em;
    text-align: center;
  }
  .p-tophero__box_nav p::before {
    bottom: -25.64103vw;
    left: -3.58974vw;
    width: 2.5641vw;
    height: 2.5641vw;
    -webkit-animation: tophero_box_nav_circlemove_sp 1.6s ease-in-out infinite, tophero_box_nav_cirlemovehide_sp 1.6s ease-out infinite;
    animation: tophero_box_nav_circlemove_sp 1.6s ease-in-out infinite, tophero_box_nav_cirlemovehide_sp 1.6s ease-out infinite;
  }
  @-webkit-keyframes tophero_box_nav_circlemove_sp {
    0% {
      bottom: 23.58974vw;
    }
    100% {
      bottom: -2.5641vw;
    }
  }
  @keyframes tophero_box_nav_circlemove_sp {
    0% {
      bottom: 23.58974vw;
    }
    100% {
      bottom: -2.5641vw;
    }
  }
  @-webkit-keyframes tophero_box_nav_cirlemovehide_sp {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 1;
    }
    80% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes tophero_box_nav_cirlemovehide_sp {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 1;
    }
    80% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  .p-tophero__box_nav p::after {
    bottom: 0vw;
    left: -2.5641vw;
    width: 0.25641vw;
    height: 25.64103vw;
  }
  .p-tophero__box_nav p big {
    left: -3.58974vw;
    bottom: 26.92308vw;
    font-size: 0.66667em;
  }
  .p-tophero__box_news {
    margin: 0 5.12821vw;
    width: calc( 100% - 10.25641vw);
    position: absolute;
    bottom: -5.12821vw;
    left: 0;
    -webkit-box-shadow: 0px 0px 1em rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 1em rgba(0, 0, 0, 0.1);
  }
}

/*
------------------------------------------------ */
.p-topinformation {
  width: 960px;
  height: 100px;
  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;
}

.p-topinformation .bx-wrapper {
  margin: 0;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  border: none;
  position: relative;
  width: calc( 100%);
  height: 100px;
}

.p-topinformation__tit {
  width: 240px;
}

.p-topinformation__tit big {
  font-size: 0.88889em;
  color: #1B46FA;
}

.p-topinformation__box {
  width: calc( 100% - 240px - 30px);
  height: 100px;
  overflow: hidden;
}

.p-topinformation__box ul li {
  width: 100%;
}

.p-topinformation__box_item {
  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;
  width: 100%;
  height: 100px;
}

.p-topinformation__box_item dl {
  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: 2em;
  text-align: left;
}

.p-topinformation__box_item dl dt big {
  font-size: 0.77778em;
}

.p-topinformation__box_item dl dd big {
  font-size: 0.77778em;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

@media screen and (max-width: 768px) {
  .p-topinformation {
    width: 100%;
    height: auto;
    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;
  }
  .p-topinformation .bx-wrapper {
    padding: 5.12821vw 5.12821vw;
    width: 100%;
    height: unset;
  }
  .p-topinformation__tit {
    padding: 5.12821vw 5.12821vw 0vw 5.12821vw;
    width: 100%;
  }
  .p-topinformation__tit big {
    font-size: 0.88889em;
  }
  .p-topinformation__box {
    width: 100%;
    height: auto;
  }
  .p-topinformation__box ul li {
    width: 100% !important;
  }
  .p-topinformation__box_item {
    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;
    width: 100%;
    height: 3em;
  }
  .p-topinformation__box_item object {
    width: 100% !important;
  }
  .p-topinformation__box_item a,
  .p-topinformation__box_item span {
    width: 100% !important;
  }
  .p-topinformation__box_item dl {
    width: 100% !important;
    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.1em;
    text-align: left;
  }
  .p-topinformation__box_item dl dt {
    width: 100% !important;
  }
  .p-topinformation__box_item dl dt big {
    width: 100% !important;
    font-size: 0.77778em;
  }
  .p-topinformation__box_item dl dd {
    width: 100% !important;
  }
  .p-topinformation__box_item dl dd big {
    width: 100% !important;
    display: inline-block;
    font-size: 0.77778em;
  }
}

/*
------------------------------------------------ */
.p-topindex__box {
  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;
}

.p-topindex__box_item {
  margin: 0 auto;
  padding: 280px 0px 100px 0px;
  width: 100%;
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 100px;
  position: relative;
}

.p-topindex__box_item:nth-of-type(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.p-topindex__box_item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-topindex__box_item::before {
  display: block;
  content: '';
  width: 960px;
  height: 700px;
  background: #E6ECF5;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  margin: auto;
}

.p-topindex__box_item:nth-of-type(odd)::before {
  -webkit-transform: translateX(-480px);
  -ms-transform: translateX(-480px);
  transform: translateX(-480px);
}

.p-topindex__box_item:nth-of-type(even)::before {
  -webkit-transform: translateX(480px);
  -ms-transform: translateX(480px);
  transform: translateX(480px);
}

.p-topindex__box_item--img {
  width: calc( 100% - 400px - 100px);
  z-index: 15;
}

.p-topindex__box_item--img-tit {
  position: absolute;
  top: 110px;
}

.p-topindex__box_item:nth-of-type(odd) .p-topindex__box_item--img-tit {
  right: 0px;
}

.p-topindex__box_item:nth-of-type(even) .p-topindex__box_item--img-tit {
  left: 0px;
}

.p-topindex__box_item--txt {
  width: 400px;
  z-index: 15;
}

.p-topindex__box_item--txt-tit {
  margin-bottom: 2em;
}

.p-topindex__box_item--txt-tit .p-tit {
  text-align: left;
}

.p-topindex__box_item--txt-txt {
  margin-bottom: 2em;
}

.p-topindex__box_item--txt-txt p {
  line-height: 2;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .p-topindex__box {
    padding: 10.25641vw 0vw;
    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;
  }
  .p-topindex__box_item {
    margin: 0 auto;
    padding: 5.12821vw 0vw;
    width: 100%;
    max-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: 25.64103vw;
    position: relative;
  }
  .p-topindex__box_item:nth-of-type(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .p-topindex__box_item:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .p-topindex__box_item::before {
    width: 76.92308vw;
    height: 97.4359vw;
    position: absolute;
    top: 0;
    bottom: unset;
    left: 0;
    right: 0;
    z-index: 0;
    margin: auto;
  }
  .p-topindex__box_item:nth-of-type(odd)::before {
    -webkit-transform: translateX(-10.25641vw) translateY(15.38462vw);
    -ms-transform: translateX(-10.25641vw) translateY(15.38462vw);
    transform: translateX(-10.25641vw) translateY(15.38462vw);
  }
  .p-topindex__box_item:nth-of-type(even)::before {
    -webkit-transform: translateX(10.25641vw) translateY(15.38462vw);
    -ms-transform: translateX(10.25641vw) translateY(15.38462vw);
    transform: translateX(10.25641vw) translateY(15.38462vw);
  }
  .p-topindex__box_item--img {
    width: calc( 100% + 20.51282vw);
    z-index: 15;
  }
  .p-topindex__box_item--img-tit {
    margin-bottom: 10.25641vw;
    position: relative;
    top: 0vw;
  }
  .p-topindex__box_item:nth-of-type(odd) .p-topindex__box_item--img-tit {
    right: 0vw;
  }
  .p-topindex__box_item:nth-of-type(even) .p-topindex__box_item--img-tit {
    left: 0vw;
  }
  .p-topindex__box_item:nth-of-type(odd) .p-topindex__box_item--img-tit .p-tit h1, .p-topindex__box_item:nth-of-type(odd) .p-topindex__box_item--img-tit .p-tit h2, .p-topindex__box_item:nth-of-type(odd) .p-topindex__box_item--img-tit .p-tit h3, .p-topindex__box_item:nth-of-type(odd) .p-topindex__box_item--img-tit .p-tit h4, .p-topindex__box_item:nth-of-type(odd) .p-topindex__box_item--img-tit .p-tit h5, .p-topindex__box_item:nth-of-type(odd) .p-topindex__box_item--img-tit .p-tit h6, .p-topindex__box_item:nth-of-type(odd) .p-topindex__box_item--img-tit .p-tit p {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .p-topindex__box_item:nth-of-type(even) .p-topindex__box_item--img-tit .p-tit h1, .p-topindex__box_item:nth-of-type(even) .p-topindex__box_item--img-tit .p-tit h2, .p-topindex__box_item:nth-of-type(even) .p-topindex__box_item--img-tit .p-tit h3, .p-topindex__box_item:nth-of-type(even) .p-topindex__box_item--img-tit .p-tit h4, .p-topindex__box_item:nth-of-type(even) .p-topindex__box_item--img-tit .p-tit h5, .p-topindex__box_item:nth-of-type(even) .p-topindex__box_item--img-tit .p-tit h6, .p-topindex__box_item:nth-of-type(even) .p-topindex__box_item--img-tit .p-tit p {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .p-topindex__box_item--txt {
    width: calc( 100%);
    z-index: 15;
  }
  .p-topindex__box_item--txt-tit {
    margin-bottom: 2em;
  }
  .p-topindex__box_item--txt-txt {
    margin-bottom: 2em;
  }
  .p-topindex__box_item--txt-txt p {
    line-height: 2;
    text-align: left;
  }
}

/*
------------------------------------------------ */
.p-columnlist .p-section__inner {
  padding: 0;
  max-width: 1200px;
  background: #ffffff;
}

.p-columnlist__bar {
  margin-bottom: -70px;
  width: 100%;
  height: 200px;
  background: #1B46FA;
}

.p-columnlist__bgc {
  width: 100%;
  height: 600px;
  background: #E6ECF5;
  position: absolute;
  bottom: -150px;
  left: 0;
  right: 0;
  z-index: 0;
  margin: auto;
}

.p-columnlist__tit {
  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: 100%;
  height: 180px;
}

.p-columnlist__tit .p-tit {
  margin: 0;
}

.p-columnlist__box .p-columnslide {
  margin: 0 -15px;
  padding: 0 15px;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 1230px) {
  .p-columnlist__box .p-columnslide {
    margin: 0 0px;
    padding: 0 30px;
  }
}

@media screen and (max-width: 768px) {
  .p-columnlist .p-section__inner {
    padding: 0 10.25641vw;
    max-width: 100%;
    background: none;
  }
  .p-columnlist__bar {
    margin-bottom: -17.94872vw;
    width: 100%;
    height: 30.76923vw;
  }
  .p-columnlist__bgc {
    margin: 0 auto;
    width: calc( 100% - 10.25641vw);
    height: 38.46154vw;
    bottom: -38.46154vw;
  }
  .p-columnlist__tit {
    margin: 0;
    width: 100%;
    height: 33.33333vw;
    background: #ffffff;
  }
  .p-columnlist__tit .p-tit {
    margin: 0;
  }
  .p-columnlist__box {
    margin: 0 -10.25641vw;
    width: calc( 100% + 20.51282vw);
  }
  .p-columnlist__box .p-columnslide {
    padding: 0 8.71795vw;
  }
}

/*
------------------------------------------------ */
.p-columnslide__box {
  padding-bottom: 50px;
}

.p-columnslide__box .swiper {
  padding-bottom: 100px;
}

.p-columnslide.is_bgc_clr01 .p-columnslide__box .swiper {
  padding-bottom: 0px;
}

.p-columnslide__box .swiper-pagination {
  bottom: 50px;
}

.p-columnslide__box .swiper-slide {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-columnslide__box .swiper-wrapper:has(> :nth-child(1):last-child) .swiper-slide {
  -webkit-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  transform: translate(100%, 0);
}

.p-columnslide__box .swiper-wrapper:has(> :nth-child(2):last-child) .swiper-slide {
  -webkit-transform: translate(50%, 0);
  -ms-transform: translate(50%, 0);
  transform: translate(50%, 0);
}

.p-columnslide__box .swiper-wrapper:has(> :nth-child(2)) .swiper-slide {
  -webkit-transform: translate(0%, 0);
  -ms-transform: translate(0%, 0);
  transform: translate(0%, 0);
}

.p-columnslide__box_item {
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0px 0px 1em rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 1em rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

.p-columnslide.is_bgc_clr01 .p-columnslide__box_item {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: none;
}

.p-columnslide__box_item a,
.p-columnslide__box_item span {
  display: block;
}

.p-columnslide__box_item a:hover {
  color: #ffffff;
}

.p-columnslide__box_item > object > a,
.p-columnslide__box_item > object > span {
  padding-bottom: 30px;
}

.p-columnslide__box_item--img {
  width: 100%;
  height: 300px;
  background: #1B46FA;
  overflow: hidden;
}

.p-columnslide__box_item--img p {
  width: 100%;
  height: 300px;
}

.p-columnslide__box_item--img picture,
.p-columnslide__box_item--img source,
.p-columnslide__box_item--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
}

.p-columnslide__box_item a:hover .p-columnslide__box_item--img picture,
.p-columnslide__box_item a:hover .p-columnslide__box_item--img source,
.p-columnslide__box_item a:hover .p-columnslide__box_item--img img {
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
  opacity: 0.7;
}

.p-columnslide__box_item--tit {
  padding: 30px;
}

.p-columnslide__box_item--tit p big {
  font-family: 'Noto Serif JP', serif;
  color: #2F3640;
  line-height: 1.2;
}

.p-columnslide__box_item--txt {
  padding: 30px;
}

.p-columnslide__box_item--txt p {
  text-align: left;
}

.p-columnslide__box_item--txt p big {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.77778em;
  color: #2F3640;
  line-height: 1.2;
}

.p-columnslide__box_item--pct {
  padding: 30px;
  width: 100%;
  height: 30px;
  overflow: hidden;
}

.p-columnslide__box_item--pct p {
  width: 100%;
  height: 30px;
}

.p-columnslide__box_item--pct picture,
.p-columnslide__box_item--pct source,
.p-columnslide__box_item--pct img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-columnslide__box_item--btn {
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  margin: auto;
}

.p-columnslide__box_item--btn .p-btn {
  margin: 0 auto;
  width: 180px;
}

@media screen and (max-width: 768px) {
  .p-columnslide__box {
    padding-bottom: 12.82051vw;
  }
  .p-columnslide__box .swiper {
    padding-bottom: 25.64103vw;
  }
  .p-columnslide.is_bgc_clr01 .p-columnslide__box .swiper {
    padding-bottom: 0vw;
  }
  .p-columnslide__box .swiper-pagination {
    bottom: 12.82051vw;
  }
  .p-columnslide__box .swiper-slide {
    padding: 0vw 2.5641vw;
  }
  .p-columnslide__box .swiper-wrapper:has(> :nth-child(1):last-child) .swiper-slide {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .p-columnslide__box .swiper-wrapper:has(> :nth-child(2):last-child) .swiper-slide {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .p-columnslide__box .swiper-wrapper:has(> :nth-child(2)) .swiper-slide {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .p-columnslide__box_item > object > a,
  .p-columnslide__box_item > object > span {
    padding-bottom: 7.69231vw;
  }
  .p-columnslide__box_item--img {
    width: 100%;
    height: 76.92308vw;
  }
  .p-columnslide__box_item--img p {
    width: 100%;
    height: 76.92308vw;
  }
  .p-columnslide__box_item--tit {
    padding: 7.69231vw;
  }
  .p-columnslide__box_item--txt {
    padding: 7.69231vw;
  }
  .p-columnslide__box_item--txt p big {
    font-size: 0.77778em;
  }
  .p-columnslide__box_item--pct {
    padding: 7.69231vw;
    width: 100%;
    height: 7.69231vw;
  }
  .p-columnslide__box_item--pct p {
    width: 100%;
    height: 7.69231vw;
  }
  .p-columnslide__box_item--btn {
    bottom: -6.41026vw;
  }
  .p-columnslide__box_item--btn .p-btn {
    width: 46.15385vw;
  }
}

/*
------------------------------------------------ */
.p-contentindex {
  margin-bottom: -100px;
}

.p-contentindex .p-bgc {
  padding: 80px 0px 160px 0px;
}

.p-contentindex .p-section__inner {
  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: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  gap: 60px;
}

.p-contentindex__tit .p-tit h1, .p-contentindex__tit .p-tit h2, .p-contentindex__tit .p-tit h3, .p-contentindex__tit .p-tit h4, .p-contentindex__tit .p-tit h5, .p-contentindex__tit .p-tit h6, .p-contentindex__tit .p-tit p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-contentindex__btn {
  margin: 0 auto;
  width: 100%;
  max-width: 585px;
}

.p-contentindex__btn .p-btn {
  -webkit-box-shadow: 0px 0px 1em rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 1em rgba(0, 0, 0, 0.5);
}

.p-contentindex__btn .p-btn .p-btnlink__box_item a,
.p-contentindex__btn .p-btn .p-btnlink__box_item span {
  color: #2F3640;
}

@media screen and (max-width: 768px) {
  .p-contentindex {
    margin-bottom: -25.64103vw;
  }
  .p-contentindex .p-bgc {
    padding: 20.51282vw 0vw 41.02564vw 0vw;
  }
  .p-contentindex .p-section__inner {
    padding: 0vw 5.12821vw;
    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: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 15.38462vw;
  }
  .p-contentindex__btn {
    width: 100%;
    max-width: 150vw;
  }
}

/*
------------------------------------------------ */
.p-entrybtn.is_translate-disabled {
  padding-top: 0px;
}

.p-entrybtn .p-section__inner {
  padding-top: 100px;
  padding-bottom: 100px;
  max-width: 1200px;
}

.p-entrybtn__btn {
  -webkit-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  transform: translateY(-100px);
}

.p-entrybtn.is_translate-disabled .p-entrybtn__btn {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

@media screen and (max-width: 768px) {
  .p-entrybtn {
    padding-top: 25.64103vw;
  }
  .p-entrybtn.is_translate-disabled {
    padding-top: 0vw;
  }
  .p-entrybtn .p-section__inner {
    padding: 10.25641vw 5.12821vw;
    max-width: 100%;
  }
  .p-entrybtn.is_translate-disabled .p-section__inner {
    padding: 10.25641vw 5.12821vw;
  }
  .p-entrybtn__btn {
    -webkit-transform: translateY(-25.64103vw);
    -ms-transform: translateY(-25.64103vw);
    transform: translateY(-25.64103vw);
  }
  .p-entrybtn.is_translate-disabled .p-entrybtn__btn {
    -webkit-transform: translateY(0vw);
    -ms-transform: translateY(0vw);
    transform: translateY(0vw);
  }
}

/*
------------------------------------------------ */
.p-columnindex .p-section__inner {
  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: 60px;
}

.p-columnindex__box {
  margin: 0 auto;
  padding: 60px 0px;
  width: 100%;
  max-width: 1200px;
  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: 60px;
  position: relative;
}

.p-columnindex__box::before {
  display: block;
  content: '';
  width: 1200px;
  height: calc( 100% - 120px);
  background: #E6ECF5;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  margin: auto;
}

.p-columnindex__box:nth-of-type(odd)::before {
  -webkit-transform: translateX(-600px) translateY(90px);
  -ms-transform: translateX(-600px) translateY(90px);
  transform: translateX(-600px) translateY(90px);
}

.p-columnindex__box:nth-of-type(even)::before {
  -webkit-transform: translateX(360px) translateY(90px);
  -ms-transform: translateX(360px) translateY(90px);
  transform: translateX(360px) translateY(90px);
}

.p-columnindex__box_tit {
  margin-bottom: 60px;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  z-index: 15;
}

.p-columnindex__box_tit.is_direction-reverse {
  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: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-columnindex__box_item {
  margin-bottom: 60px;
  background: #ffffff;
  width: 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-columnindex__box_item + .p-columnindex__box_tit {
  margin-top: 120px;
}

.p-columnindex__box_item.is_direction-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-columnindex__box_item--img {
  width: calc( 100% - 530px);
  height: auto;
  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;
  z-index: 15;
}

.p-columnindex__box_item--img-pct {
  width: 100%;
  height: auto;
  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-columnindex__box_item--img-pct p {
  width: 100%;
  height: auto;
  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-columnindex__box_item--img-pct picture,
.p-columnindex__box_item--img-pct source,
.p-columnindex__box_item--img-pct img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-columnindex__box_item--txt {
  padding: 60px;
  width: 530px;
  z-index: 15;
  background: #ffffff;
}

.p-columnindex__box_item--txt-tit {
  margin-bottom: 2em;
}

.p-columnindex__box_item--txt-tit .p-tit {
  text-align: center;
}

.p-columnindex__box_item--txt-tit .p-tit big {
  line-height: 1.2;
}

.p-columnindex__box_item--txt-txt {
  margin-bottom: 2em;
}

.p-columnindex__box_item--txt-txt p {
  line-height: 2;
  text-align: left;
}

.p-columnindex__box_item--txt-inf {
  margin-bottom: 2em;
}

.p-columnindex__box_item--txt-inf p {
  line-height: 2;
  text-align: left;
}

.p-columnindex__box_item--txt-inf p big {
  font-size: 0.77778em;
}

.p-columnindex__box_item--txt-inf p big b {
  font-size: 1.33333em;
  font-weight: bold;
}

.p-columnindex__box_item--txt-inf p small {
  font-size: 0.77778em;
}

.p-columnindex__box_item--txt-inf div {
  margin-bottom: 2em;
}

.p-columnindex__box_item--txt-inf div 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-columnindex__box_item--txt-inf div ul li {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .p-columnindex .p-section__inner {
    padding: 0vw 5.12821vw;
    gap: 0vw;
  }
  .p-columnindex__box {
    margin: 0 auto;
    padding: 5.12821vw 0vw;
    width: 100%;
    max-width: 100%;
    gap: 5.12821vw;
  }
  .p-columnindex__box::before {
    width: 50vw;
    height: calc( 100% - 25.64103vw);
  }
  .p-columnindex__box:nth-of-type(odd)::before {
    -webkit-transform: translateX(30.76923vw) translateY(0vw);
    -ms-transform: translateX(30.76923vw) translateY(0vw);
    transform: translateX(30.76923vw) translateY(0vw);
  }
  .p-columnindex__box:nth-of-type(even)::before {
    -webkit-transform: translateX(-30.76923vw) translateY(0vw);
    -ms-transform: translateX(-30.76923vw) translateY(0vw);
    transform: translateX(-30.76923vw) translateY(0vw);
  }
  .p-columnindex__box_tit {
    margin-bottom: 0;
    width: 100%;
  }
  .p-columnindex__box_item {
    margin-bottom: 15.38462vw;
    width: 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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-shadow: 0px 0px 1em rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 1em rgba(0, 0, 0, 0.1);
  }
  .p-columnindex__box_item + .p-columnindex__box_tit {
    margin-top: 30.76923vw;
  }
  .p-columnindex__box_item.is_direction-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .p-columnindex__box_item--img {
    width: 100%;
  }
  .p-columnindex__box_item--txt {
    padding: 5.12821vw;
    width: 100%;
  }
  .p-columnindex__box_item--txt-tit {
    margin-bottom: 1em;
  }
  .p-columnindex__box_item--txt-tit .p-tit {
    margin-bottom: 0em;
  }
  .p-columnindex__box_item--txt-tit .p-tit big {
    line-height: 1.2;
  }
  .p-columnindex__box_item--txt-txt {
    margin-bottom: 2em;
  }
  .p-columnindex__box_item--txt-txt p {
    line-height: 2;
  }
  .p-columnindex__box_item--txt-inf {
    margin-bottom: 2em;
  }
  .p-columnindex__box_item--txt-inf p {
    line-height: 2;
  }
  .p-columnindex__box_item--txt-inf p big {
    font-size: 0.77778em;
  }
  .p-columnindex__box_item--txt-inf p big b {
    font-size: 1.33333em;
  }
  .p-columnindex__box_item--txt-inf p small {
    font-size: 0.77778em;
  }
  .p-columnindex__box_item--txt-inf div {
    margin-bottom: 2em;
  }
  .p-columnindex__box_item--txt-inf div 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-columnindex__box_item--txt-inf div ul li {
    width: 100%;
  }
}

/*
------------------------------------------------ */
.p-leadtext .p-section__inner {
  padding-bottom: 100px;
}

.p-leadtext__txt {
  margin: 0 auto;
  max-width: 1200px;
}

.p-leadtext__txt p {
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .p-leadtext .p-section__inner {
    padding: 0vw 5.12821vw 10.25641vw 5.12821vw;
  }
  .p-leadtext__txt {
    margin: 0 auto;
    max-width: 100%;
  }
  .p-leadtext__txt p {
    line-height: 2;
  }
}

/*
------------------------------------------------ */
.p-memberlist .p-section {
  position: relative;
}

.p-memberlist .p-section__inner {
  padding-bottom: 80px;
}

.p-memberlist__bgc {
  width: 100%;
  height: 250px;
  background: #E6ECF5;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.p-memberlist__box {
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  z-index: 15;
}

.p-memberlist__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: 50px;
}

.p-memberlist__box ul li {
  width: 200px;
}

.p-memberlist__box_item a,
.p-memberlist__box_item span {
  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: 20px;
}

.p-memberlist__box_item--img {
  width: 200px;
  height: 200px;
  border-radius: 200px;
  overflow: hidden;
}

.p-memberlist__box_item--img picture,
.p-memberlist__box_item--img source,
.p-memberlist__box_item--img img {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-memberlist__box_item--tit 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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.p-memberlist__box_item--tit p + p {
  margin-top: 0.5em;
}

.p-memberlist__box_item--tit big {
  font-size: 1.11111em;
}

.p-memberlist__box_item--tit big b {
  font-size: 120%;
  font-weight: bold;
}

.p-memberlist__box_item--tit small {
  font-size: 0.66667em;
  line-height: 1.2;
}

.p-memberlist__box_item--tit big + small {
  font-size: 0.55556em;
  position: relative;
  top: -0.5em;
}

@media screen and (max-width: 768px) {
  .p-memberlist .p-section__inner {
    padding: 0vw 5.12821vw 10.25641vw 5.12821vw;
  }
  .p-memberlist__bgc {
    width: 100%;
    height: calc( 100% - 15.38462vw);
  }
  .p-memberlist__box {
    max-width: 100%;
  }
  .p-memberlist__box ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 7.69231vw;
  }
  .p-memberlist__box ul li {
    width: 38.46154vw;
  }
  .p-memberlist__box_item a,
  .p-memberlist__box_item span {
    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: 2.5641vw;
  }
  .p-memberlist__box_item--img {
    width: 38.46154vw;
    height: 38.46154vw;
    border-radius: 38.46154vw;
    overflow: hidden;
  }
  .p-memberlist__box_item--img picture,
  .p-memberlist__box_item--img source,
  .p-memberlist__box_item--img img {
    width: 38.46154vw;
    height: 38.46154vw;
  }
  .p-memberlist__box_item--tit 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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.5641vw;
  }
  .p-memberlist__box_item--tit big {
    font-size: 1.11111em;
  }
  .p-memberlist__box_item--tit small {
    font-size: 0.77778em;
  }
  .p-memberlist__box_item--tit big + small {
    font-size: 0.66667em;
  }
}

/*
------------------------------------------------ */
.p-talkarticle .p-section__inner {
  padding-top: 100px;
  padding-bottom: 120px;
}

.p-talkarticle__box {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  text-align: left;
}

.p-talkarticle__box_item {
  /*border-bottom: 1px solid $color_bdr01;*/
}

.p-talkarticle__box_item:first-of-type {
  /*border-top: 1px solid $color_bdr01;*/
}

.p-talkarticle__box_item + .p-talkarticle__box_item {
  margin-top: 80px;
}

.p-talkarticle__box_item:last-of-type {
  border-bottom: none;
}

.p-talkarticle__box_item--trigger {
  padding: 40px 0px;
}

.p-talkarticle__box_item--trigger a,
.p-talkarticle__box_item--trigger span {
  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: 20px;
}

.p-talkarticle__box_item--trigger.js_talkarticle_trigger a,
.p-talkarticle__box_item--trigger.js_talkarticle_trigger span {
  cursor: pointer;
}

.p-talkarticle__box_item--trigger big {
  width: calc( 100%);
  font-family: 'Noto Serif JP', serif;
  font-size: 1.66667em;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}

.p-talkarticle__box_item--trigger.js_talkarticle_trigger {
  width: calc( 100%);
}

.p-talkarticle__box_item--trigger .p-ic {
  display: none;
}

.p-talkarticle__box_item--trigger.js_talkarticle_trigger .p-ic {
  display: block;
  width: 80px;
  height: 80px;
  background: #F7F7F7;
  position: relative;
}

.p-talkarticle__box_item--trigger.js_talkarticle_trigger .p-ic::before {
  display: inline-block;
  content: '';
  width: 30px;
  height: 2px;
  background: #2F3640;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.p-talkarticle__box_item--trigger.js_talkarticle_trigger .p-ic::after {
  display: inline-block;
  content: '';
  width: 2px;
  height: 30px;
  background: #2F3640;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.is_talkarticle-open .p-talkarticle__box_item--trigger .p-ic::before,
.is_talkarticle-open .p-talkarticle__box_item--trigger .p-ic::after {
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.is_talkarticle-open .p-talkarticle__box_item--trigger .p-ic::before {
  opacity: 0;
}

.p-talkarticle__box_item--target.js_talkarticle_target {
  height: 0;
  overflow: hidden;
}

.is_talkarticle-open .p-talkarticle__box_item--target.js_talkarticle_target {
  height: auto;
  overflow: visible;
}

.p-talkarticle__box_item--sct {
  padding: 100px 0px 0px 0px;
  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: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
}

.p-talkarticle__box_item--sct + .p-talkarticle__box_item--sct {
  margin-top: 80px;
}

/*.p-talkarticle__box_item--sct:last-of-type {
  padding-top: px( 0 );
}*/
.p-talkarticle__box_item--sct.is_direction-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-talkarticle__box_item--sct::before {
  display: inline-block;
  content: '';
  width: 1200px;
  height: 100%;
  background: #E6ECF5;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 0;
}

.p-talkarticle__box_item--sct::before {
  -webkit-transform: translateX(-760px);
  -ms-transform: translateX(-760px);
  transform: translateX(-760px);
}

.p-talkarticle__box_item--sct.is_direction-reverse::before {
  -webkit-transform: translateX(760px);
  -ms-transform: translateX(760px);
  transform: translateX(760px);
}

/*.p-talkarticle__box_item--sct:last-of-type::before {
  margin: 0 -50vw;
  width: 200vw;
  height: calc( 100% );
  top: unset;
}*/
.p-talkarticle__box_item--sct.is_bgc-disabled::before {
  display: none;
}

.p-talkarticle__box_item--sct-img {
  width: calc( 100% - 600px);
  height: auto;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 15;
  gap: 40px;
}

.p-talkarticle__box_item--sct-img p {
  width: 100%;
  height: auto;
  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;
  -webkit-box-shadow: 0px 0px 1em rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 1em rgba(0, 0, 0, 0.1);
}

.p-talkarticle__box_item--sct-img picture,
.p-talkarticle__box_item--sct-img source,
.p-talkarticle__box_item--sct-img img {
  /*width: 100%;
  height: 100%;
  object-fit: cover;*/
}

.p-talkarticle__box_item--sct-txt {
  padding: 0px 80px 80px 80px;
  width: 100%;
  /*background: $color_wht01;*/
  z-index: 15;
}

.p-talkarticle__box_item:nth-of-type(odd) .p-talkarticle__box_item--sct-txt {
  padding: 0px 0px 80px 80px;
}

.p-talkarticle__box_item:nth-of-type(even) .p-talkarticle__box_item--sct-txt {
  padding: 0px 80px 80px 0px;
}

.p-talkarticle__box_item--sct-img + .p-talkarticle__box_item--sct-txt {
  width: 600px;
}

.p-talkarticle__box_item--sct-txt dl {
  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;
  gap: 2em 0em;
  z-index: 15;
}

.p-talkarticle__box_item--sct-txt dl dt {
  width: 7em;
}

.p-talkarticle__box_item--sct-txt dl dt p {
  font-size: 0.88889em;
  line-height: 2;
}

.p-talkarticle__box_item--sct-txt dl dt big {
  font-weight: bold;
}

.p-talkarticle__box_item--sct-txt dl dt big b {
  font-weight: bold;
}

.p-talkarticle__box_item--sct-txt dl dd {
  width: calc( 100% - 7em);
}

.p-talkarticle__box_item--sct-txt dl dd p {
  font-size: 0.88889em;
  line-height: 2;
}

.p-talkarticle__box_item--sct-txt div {
  margin: 1em 0;
}

.p-talkarticle__box_item--sct-txt div p {
  font-size: 0.88889em;
  line-height: 2;
}

.p-talkarticle__box_item--sct-txt div big {
  font-weight: bold;
}

.p-talkarticle__box_item--sct-txt div big b {
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .p-talkarticle .p-section__inner {
    padding: 10.25641vw 5.12821vw;
  }
  .p-talkarticle__box {
    margin: 0 auto;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }
  .p-talkarticle__box_item + .p-talkarticle__box_item {
    margin-top: 20.51282vw;
  }
  .p-talkarticle__box_item--trigger {
    padding: 5.12821vw 0vw;
  }
  .p-talkarticle__box_item--trigger a,
  .p-talkarticle__box_item--trigger span {
    gap: 2.5641vw;
  }
  .p-talkarticle__box_item--trigger big {
    width: calc( 100%);
    font-size: 1.11111em;
  }
  .p-talkarticle__box_item--trigger.js_talkarticle_trigger {
    width: calc( 100%);
  }
  .p-talkarticle__box_item--trigger.js_talkarticle_trigger .p-ic {
    width: 10.25641vw;
    height: 10.25641vw;
  }
  .p-talkarticle__box_item--trigger.js_talkarticle_trigger .p-ic::before {
    width: 5.12821vw;
    height: 0.51282vw;
  }
  .p-talkarticle__box_item--trigger.js_talkarticle_trigger .p-ic::after {
    width: 0.51282vw;
    height: 5.12821vw;
  }
  .p-talkarticle__box_item--sct {
    padding: 10.25641vw 0vw 0vw 0vw;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10.25641vw;
  }
  .p-talkarticle__box_item--sct + .p-talkarticle__box_item--sct {
    margin-top: 5.12821vw;
  }
  /*.p-talkarticle__box_item--sct:last-of-type {
    padding-top: vw( 0 );
  }*/
  .p-talkarticle__box_item--sct.is_direction-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .p-talkarticle__box_item--sct::before {
    width: 76.92308vw;
    height: 76.92308vw;
    bottom: unset;
  }
  .p-talkarticle__box_item--sct::before {
    -webkit-transform: translateX(-10.25641vw);
    -ms-transform: translateX(-10.25641vw);
    transform: translateX(-10.25641vw);
  }
  .p-talkarticle__box_item--sct.is_direction-reverse::before {
    -webkit-transform: translateX(10.25641vw);
    -ms-transform: translateX(10.25641vw);
    transform: translateX(10.25641vw);
  }
  /*.p-talkarticle__box_item--sct:last-of-type::before {
    margin: 0 vw( -40 );
    width: calc( 100% - 20.51282vw );
    height: calc( 100% );
    top: unset;
    display: none;
  }*/
  .p-talkarticle__box_item--sct-img {
    width: 100%;
    gap: 5.12821vw;
  }
  .p-talkarticle__box_item--sct-txt {
    padding: 5.12821vw 0vw;
    width: 100%;
    background: none;
  }
  .p-talkarticle__box_item:nth-of-type(odd) .p-talkarticle__box_item--sct-txt {
    padding: 5.12821vw 0vw;
  }
  .p-talkarticle__box_item:nth-of-type(even) .p-talkarticle__box_item--sct-txt {
    padding: 5.12821vw 0vw;
  }
  .p-talkarticle__box_item--sct-img + .p-talkarticle__box_item--sct-txt {
    width: 100%;
  }
  .p-talkarticle__box_item--sct-txt dl {
    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;
    gap: 0em;
  }
  .p-talkarticle__box_item--sct-txt dl dt {
    width: 100%;
  }
  .p-talkarticle__box_item--sct-txt dl dt p {
    font-size: 0.77778em;
    line-height: 2;
  }
  .p-talkarticle__box_item--sct-txt dl dd {
    width: calc( 100%);
  }
  .p-talkarticle__box_item--sct-txt dl dd p {
    font-size: 0.66667em;
  }
  .p-talkarticle__box_item--sct-txt dl dd + dt {
    margin-top: 1em;
  }
  .p-talkarticle__box_item--sct-txt div p {
    font-size: 0.88889em;
  }
}

/*
------------------------------------------------ */
.p-interviewheading .p-section__inner {
  padding: 0;
}

.p-interviewheading__box_item {
  width: 100%;
  height: 700px;
  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;
  background: #ffffff;
}

.p-interviewheading__box_item--img {
  width: calc( 100% - 920px);
  height: 700px;
  overflow: hidden;
}

.p-interviewheading__box_item--img p {
  width: 100%;
  height: 700px;
}

.p-interviewheading__box_item--img picture,
.p-interviewheading__box_item--img source,
.p-interviewheading__box_item--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-interviewheading__box_item--txt {
  padding: 60px 60px;
  width: 920px;
  text-align: left;
}

.p-interviewheading__box_item--txt-tit {
  margin-bottom: 2em;
}

.p-interviewheading__box_item--txt-tit em {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 1.44444em;
  line-height: 2;
  color: #1B46FA;
}

.p-interviewheading__box_item--txt-tit big {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.94444em;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.2em;
}

.p-interviewheading__box_item--txt-info {
  margin-bottom: 2em;
}

.p-interviewheading__box_item--txt-info 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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2em;
}

.p-interviewheading__box_item--txt-info ul li {
  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;
}

.p-interviewheading__box_item--txt-info p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0em 1em;
}

.p-interviewheading__box_item--txt-info picture + p,
.p-interviewheading__box_item--txt-info source + p,
.p-interviewheading__box_item--txt-info img + p {
  width: calc( 100% - 130px - 1em);
}

.p-interviewheading__box_item--txt-info p small {
  width: 100%;
  font-size: 0.77778em;
  line-height: 2;
  letter-spacing: 0.2em;
}

.p-interviewheading__box_item--txt-info p big {
  font-size: 0.88889em;
  line-height: 1.4;
  letter-spacing: 0.2em;
}

.p-interviewheading__box_item--txt-info p big b {
  font-size: 200%;
  font-weight: bold;
  letter-spacing: 0.2em;
}

.p-interviewheading__box_item--txt-info p sub {
  width: 100%;
  font-size: 0.77778em;
  line-height: 2;
  letter-spacing: 0.2em;
}

.p-interviewheading__box_item--txt-info picture,
.p-interviewheading__box_item--txt-info source,
.p-interviewheading__box_item--txt-info img {
  width: 130px;
  height: 130px;
  border-radius: 130px;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-interviewheading__box_item--txt-txt p big {
  font-size: 0.88889em;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .p-interviewheading .p-section__inner {
    padding: 0;
  }
  .p-interviewheading__box_item {
    width: 100%;
    height: auto;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .p-interviewheading__box_item--img {
    width: calc( 100%);
    height: 76.92308vw;
  }
  .p-interviewheading__box_item--img p {
    width: 100%;
    height: 76.92308vw;
  }
  .p-interviewheading__box_item--txt {
    padding: 5.12821vw 5.12821vw;
    width: 100%;
  }
  .p-interviewheading__box_item--txt-tit {
    margin-bottom: 2em;
  }
  .p-interviewheading__box_item--txt-tit em {
    font-size: 0.88889em;
  }
  .p-interviewheading__box_item--txt-tit big {
    font-size: 1.33333em;
    line-height: 1.6;
  }
  .p-interviewheading__box_item--txt-info {
    margin-bottom: 1em;
  }
  .p-interviewheading__box_item--txt-info 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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1em;
  }
  .p-interviewheading__box_item--txt-info ul li {
    width: 100%;
  }
  .p-interviewheading__box_item--txt-info p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0em 0.5em;
  }
  .p-interviewheading__box_item--txt-info p small {
    width: 100%;
    font-size: 0.77778em;
  }
  .p-interviewheading__box_item--txt-info p big {
    font-size: 0.77778em;
  }
  .p-interviewheading__box_item--txt-info p big b {
    font-size: 200%;
  }
  .p-interviewheading__box_item--txt-info p sub {
    font-size: 0.66667em;
  }
  .p-interviewheading__box_item--txt-txt p big {
    font-size: 0.88889em;
  }
}

/*
------------------------------------------------ */
.p-columnarticle {
  overflow: hidden;
}

.p-columnarticle__tit {
  margin-top: 100px;
  position: relative;
  z-index: 15;
}

.p-columnarticle__box {
  margin: 0 auto 160px auto;
  max-width: 1200px;
  position: relative;
}

.p-columnarticle__box::before {
  display: block;
  content: '';
  width: 1200px;
  height: calc( 100% + 200px);
  background: #E6ECF5;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  margin: auto;
}

.p-columnarticle__box:nth-of-type(odd)::before {
  -webkit-transform: translateX(-200px) translateY(50px);
  -ms-transform: translateX(-200px) translateY(50px);
  transform: translateX(-200px) translateY(50px);
}

.p-columnarticle__box:nth-of-type(even)::before {
  -webkit-transform: translateX(200px) translateY(50px);
  -ms-transform: translateX(200px) translateY(50px);
  transform: translateX(200px) translateY(50px);
}

.p-columnarticle__box_item {
  position: relative;
  z-index: 15;
}

.p-columnarticle__box_item--sct {
  margin: 100px 0px;
  -webkit-box-shadow: 0px 0px 1em rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 1em rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

.p-columnarticle__box_item--sct + .p-columnarticle__box_item--sct {
  margin-top: 80px;
}

.p-columnarticle__box_item--sct-txt {
  padding: 80px 80px 80px 80px;
  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: 40px;
}

.p-columnarticle__box_item--sct-txt-tit {
  width: 100%;
  text-align: left;
}

.p-columnarticle__box_item--sct-txt-tit .p-tit {
  margin-bottom: 0;
  line-height: 1.6;
}

.p-columnarticle__box_item--sct-txt-txt:not(.is_textalign-center) {
  width: 100%;
  text-align: left;
}

.p-columnarticle__box_item--sct-txt-txt p + p {
  margin-top: 1em;
}

.p-columnarticle__box_item--sct-txt-txt big {
  font-size: 0.88889em;
  line-height: 2;
}

.p-columnarticle__box_item--sct-txt-box {
  width: 100%;
}

.p-columnarticle__box_item--sct-txt-pct {
  width: 100%;
}

.p-columnarticle__box_item--sct-txt-img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-columnarticle__tit {
    margin-top: 10.25641vw;
  }
  .p-columnarticle__box {
    margin: 0 auto 25.64103vw auto;
    max-width: 100%;
  }
  .p-columnarticle__box::before {
    width: 100%;
    height: calc( 100% + 51.28205vw);
  }
  .p-columnarticle__box:nth-of-type(odd)::before {
    -webkit-transform: translateX(-10.25641vw) translateY(1.28205vw);
    -ms-transform: translateX(-10.25641vw) translateY(1.28205vw);
    transform: translateX(-10.25641vw) translateY(1.28205vw);
  }
  .p-columnarticle__box:nth-of-type(even)::before {
    -webkit-transform: translateX(10.25641vw) translateY(12.82051vw);
    -ms-transform: translateX(10.25641vw) translateY(12.82051vw);
    transform: translateX(10.25641vw) translateY(12.82051vw);
  }
  .p-columnarticle__box_item--sct {
    margin: 5.12821vw -5.12821vw;
  }
  .p-columnarticle__box_item--sct + .p-columnarticle__box_item--sct {
    margin-top: 5.12821vw;
  }
  .p-columnarticle__box_item--sct-txt {
    padding: 5.12821vw;
    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: 5.12821vw;
  }
  .p-columnarticle__box_item--sct-txt-tit {
    width: 100%;
  }
  .p-columnarticle__box_item--sct-txt-tit .p-tit {
    margin-bottom: 0;
    line-height: 1.6;
  }
  .p-columnarticle__box_item--sct-txt-txt {
    width: 100%;
  }
  .p-columnarticle__box_item--sct-txt-txt p + p {
    margin-top: 1em;
  }
  .p-columnarticle__box_item--sct-txt-txt big {
    font-size: 0.88889em;
    line-height: 2;
  }
  .p-columnarticle__box_item--sct-txt-box {
    width: 100%;
  }
  .p-columnarticle__box_item--sct-txt-pct {
    width: 100%;
  }
  .p-columnarticle__box_item--sct-txt-img {
    width: 100%;
  }
}

/*
------------------------------------------------ */
.p-infoarticle {
  overflow: hidden;
}

.p-columnarticle .p-infoarticle,
.p-talkarticle .p-infoarticle {
  overflow: visible;
}

.p-infoarticle .p-section__inner {
  padding-top: 100px;
  padding-bottom: 120px;
}

.p-infoarticle__tit {
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  z-index: 15;
}

.p-infoarticle__box {
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
}

.p-infoarticle__box::before {
  display: block;
  content: '';
  width: 1200px;
  height: calc( 100% + 200px);
  background: #E6ECF5;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  margin: auto;
}

.p-columnarticle .p-infoarticle__box::before,
.p-talkarticle .p-infoarticle__box::before {
  display: none;
}

.p-infoarticle__box:nth-of-type(odd)::before {
  -webkit-transform: translateX(-200px) translateY(0px);
  -ms-transform: translateX(-200px) translateY(0px);
  transform: translateX(-200px) translateY(0px);
}

.p-infoarticle__box:nth-of-type(even)::before {
  -webkit-transform: translateX(200px) translateY(100px);
  -ms-transform: translateX(200px) translateY(100px);
  transform: translateX(200px) translateY(100px);
}

.p-infoarticle__box_item {
  position: relative;
  z-index: 15;
}

.p-infoarticle__box_item--sct {
  margin: 50px 0px;
  -webkit-box-shadow: 0px 0px 1em rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 1em rgba(0, 0, 0, 0.1);
  background: #ffffff;
  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-columnarticle .p-infoarticle__box_item--sct,
.p-talkarticle .p-infoarticle__box_item--sct {
  margin: 0px 0px;
}

.p-infoarticle__box_item--sct.is_flexwrap-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-infoarticle__box_item--sct + .p-infoarticle__box_item--sct {
  margin-top: 80px;
}

.p-columnarticle .p-infoarticle__box_item--sct + .p-infoarticle__box_item--sct,
.p-talkarticle .p-infoarticle__box_item--sct + .p-infoarticle__box_item--sct {
  margin-top: 80px;
}

.p-infoarticle__box_item--sct-img {
  width: calc( 100% - 750px);
  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;
  overflow: hidden;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.p-infoarticle__box_item--sct-img p {
  width: 100%;
  height: 100%;
}

.p-infoarticle__box_item--sct-img picture,
.p-infoarticle__box_item--sct-img source,
.p-infoarticle__box_item--sct-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-infoarticle__box_item--sct-txt {
  padding: 40px 80px 80px 80px;
  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: 20px;
  text-align: left;
  width: 100%;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.p-infoarticle__box_item--sct.is_flexwrap-wrap .p-infoarticle__box_item--sct-txt {
  width: calc( 900px);
}

/*.p-infoarticle__box_item--sct-img + .p-infoarticle__box_item--sct-txt {
  width: calc( 100% - 300px );
}*/
.p-infoarticle__box_item--sct-txt-tit {
  width: 100%;
  text-align: left;
}

.p-infoarticle__box_item--sct-txt-tit .p-tit {
  margin-bottom: 0;
  line-height: 1.6;
}

.p-infoarticle__box_item--sct-txt-txt {
  width: 100%;
  text-align: left;
}

.p-infoarticle__box_item--sct-txt-txt big {
  font-size: 0.88889em;
  line-height: 2;
}

.p-infoarticle__box_item--sct-pct {
  padding: 40px 80px 40px 0px;
  width: 300px;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.p-infoarticle__box_item--sct-lnk {
  padding: 0px 80px 80px 80px;
  width: 100%;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.p-columnarticle .p-infoarticle__box_item--sct-lnk,
.p-talkarticle .p-infoarticle__box_item--sct-lnk {
  padding: 40px;
}

.p-infoarticle__box_item--sct-lnk ul {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 80px;
}

.p-columnarticle .p-infoarticle__box_item--sct-lnk ul,
.p-talkarticle .p-infoarticle__box_item--sct-lnk ul {
  gap: 40px;
}

.p-infoarticle__box_item--sct-lnk ul li {
  width: calc( ( 100% - 80px ) / 2);
}

.p-infoarticle__box_item--sct-lnk-item object {
  display: block;
}

.p-infoarticle__box_item--sct-lnk-item a,
.p-infoarticle__box_item--sct-lnk-item span {
  display: block;
}

.p-infoarticle__box_item--sct-lnk-item a:hover {
  color: #1B46FA;
  text-decoration: underline;
}

.p-infoarticle__box_item--sct-lnk-item 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: 20px;
}

.p-infoarticle__box_item--sct-lnk-item picture,
.p-infoarticle__box_item--sct-lnk-item source,
.p-infoarticle__box_item--sct-lnk-item img {
  width: 80px;
  height: 80px;
  max-width: 80px;
  max-height: 80px;
  border-radius: 80px;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.p-infoarticle__box_item--sct-lnk-item a:hover source,
.p-infoarticle__box_item--sct-lnk-item a:hover img {
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.p-infoarticle__box_item--sct-lnk-item big {
  font-size: 0.77778em;
  line-height: 1.6;
  text-align: left;
  width: calc( 100% - 100px);
}

@media screen and (max-width: 980px) {
  /*.p-infoarticle__box_item--sct {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
  }
  .p-infoarticle__box_item--sct-img {
    width: 100%;
    height: px(300);
  }
  .p-infoarticle__box_item--sct-txt {
    width: 100%;
  }*/
}

@media screen and (max-width: 768px) {
  .p-columnarticle .p-infoarticle,
  .p-talkarticle .p-infoarticle {
    margin: 0 -5.12821vw;
    width: calc( 100% + 10.25641vw);
    background: #ffffff;
    -webkit-box-shadow: 0px 0px 1em rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 1em rgba(0, 0, 0, 0.1);
  }
  .p-infoarticle .p-section__inner {
    padding: 10.25641vw 5.12821vw;
  }
  .p-infoarticle__tit {
    margin: 0 auto;
    max-width: 100%;
  }
  .p-infoarticle__box {
    margin: 0 auto;
    max-width: 100%;
  }
  .p-infoarticle__box::before {
    width: 76.92308vw;
    height: calc( 100% + 51.28205vw);
  }
  .p-infoarticle__box:nth-of-type(odd)::before {
    -webkit-transform: translateX(-10.25641vw) translateY(0vw);
    -ms-transform: translateX(-10.25641vw) translateY(0vw);
    transform: translateX(-10.25641vw) translateY(0vw);
  }
  .p-infoarticle__box:nth-of-type(even)::before {
    -webkit-transform: translateX(10.25641vw) translateY(25.64103vw);
    -ms-transform: translateX(10.25641vw) translateY(25.64103vw);
    transform: translateX(10.25641vw) translateY(25.64103vw);
  }
  .p-infoarticle__box_item--sct {
    margin: 5.12821vw 0vw;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .p-columnarticle .p-infoarticle__box_item--sct,
  .p-talkarticle .p-infoarticle__box_item--sct {
    margin: 0vw 0vw;
  }
  .p-infoarticle__box_item--sct + .p-infoarticle__box_item--sct {
    margin-top: 10.25641vw;
  }
  .p-columnarticle .p-infoarticle__box_item--sct + .p-infoarticle__box_item--sct,
  .p-talkarticle .p-infoarticle__box_item--sct + .p-infoarticle__box_item--sct {
    margin-top: 10.25641vw;
  }
  .p-infoarticle__box_item--sct-img {
    width: 100%;
    height: auto;
    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;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .p-infoarticle__box_item--sct-txt {
    padding: 5.12821vw;
    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: 5.12821vw;
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .p-infoarticle__box_item--sct.is_flexwrap-wrap .p-infoarticle__box_item--sct-txt {
    width: 100%;
  }
  /*.p-infoarticle__box_item--sct-img + .p-infoarticle__box_item--sct-txt {
    width: 100%;
  }*/
  .p-infoarticle__box_item--sct-txt-tit {
    width: 100%;
  }
  .p-infoarticle__box_item--sct-txt-txt {
    width: 100%;
  }
  .p-infoarticle__box_item--sct-txt-txt big {
    font-size: 0.88889em;
  }
  .p-infoarticle__box_item--sct-pct {
    padding: 5.12821vw;
    width: 100%;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .p-infoarticle__box_item--sct-lnk {
    padding: 0vw 5.12821vw 5.12821vw 5.12821vw;
    width: 100%;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .p-columnarticle .p-infoarticle__box_item--sct-lnk,
  .p-talkarticle .p-infoarticle__box_item--sct-lnk {
    padding: 5.12821vw;
  }
  .p-infoarticle__box_item--sct-lnk ul {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5.12821vw;
  }
  .p-columnarticle .p-infoarticle__box_item--sct-lnk ul,
  .p-talkarticle .p-infoarticle__box_item--sct-lnk ul {
    gap: 5.12821vw;
  }
  .p-infoarticle__box_item--sct-lnk ul li {
    width: calc( 100%);
  }
  .p-infoarticle__box_item--sct-lnk-item 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: 5.12821vw;
  }
  .p-infoarticle__box_item--sct-lnk-item picture,
  .p-infoarticle__box_item--sct-lnk-item source,
  .p-infoarticle__box_item--sct-lnk-item img {
    width: 20.51282vw;
    height: 20.51282vw;
    border-radius: 20.51282vw;
  }
  .p-infoarticle__box_item--sct-lnk-item big {
    font-size: 0.77778em;
    width: calc( 100% - 25.64103vw);
  }
}

/*
------------------------------------------------ */
.p-normalarticle {
  overflow: hidden;
}

.p-normalarticle .p-section__inner {
  padding-top: 120px;
  padding-bottom: 100px;
}

.p-normalarticle__tit {
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  z-index: 15;
  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;
}

.p-normalarticle__tit.is_direction-reverse {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.p-normalarticle__box {
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
}

.p-normalarticle__box::before {
  display: block;
  content: '';
  width: 1200px;
  height: calc( 100% + 200px);
  background: #E6ECF5;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  margin: auto;
}

.p-normalarticle__box:nth-of-type(odd)::before {
  -webkit-transform: translateX(-200px) translateY(0px);
  -ms-transform: translateX(-200px) translateY(0px);
  transform: translateX(-200px) translateY(0px);
}

.p-normalarticle__box:nth-of-type(even)::before {
  -webkit-transform: translateX(200px) translateY(100px);
  -ms-transform: translateX(200px) translateY(100px);
  transform: translateX(200px) translateY(100px);
}

.p-normalarticle__box.is_direction-reverse::before {
  -webkit-transform: translateX(-200px) translateY(100px);
  -ms-transform: translateX(-200px) translateY(100px);
  transform: translateX(-200px) translateY(100px);
}

.p-normalarticle__box_item {
  position: relative;
  z-index: 15;
}

.p-normalarticle__box_item--sct {
  margin: 50px 0px;
  padding: 80px 80px 80px 80px;
  -webkit-box-shadow: 0px 0px 1em rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 1em rgba(0, 0, 0, 0.1);
  background: #ffffff;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-normalarticle__box_item--sct + .p-normalarticle__box_item--sct {
  margin-top: 80px;
}

.p-normalarticle__box_item--tit {
  width: 100%;
}

.p-normalarticle__box_item--tit .p-tit {
  margin-bottom: 2em;
}

.p-normalarticle__box_item--att {
  margin-top: 1em;
}

@media screen and (max-width: 768px) {
  .p-normalarticle .p-section__inner {
    padding: 10.25641vw 5.12821vw;
  }
  .p-normalarticle__tit {
    margin: 0 -5.12821vw;
    max-width: calc( 100% + 10.25641vw);
    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;
  }
  .p-normalarticle__tit.is_direction-reverse {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .p-normalarticle__box {
    margin: 0 auto;
    max-width: 100%;
  }
  .p-normalarticle__box::before {
    width: 76.92308vw;
    height: calc( 100% + 51.28205vw);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    margin: auto;
  }
  .p-normalarticle__box:nth-of-type(odd)::before {
    -webkit-transform: translateX(-10.25641vw) translateY(0vw);
    -ms-transform: translateX(-10.25641vw) translateY(0vw);
    transform: translateX(-10.25641vw) translateY(0vw);
  }
  .p-normalarticle__box:nth-of-type(even)::before {
    -webkit-transform: translateX(10.25641vw) translateY(25.64103vw);
    -ms-transform: translateX(10.25641vw) translateY(25.64103vw);
    transform: translateX(10.25641vw) translateY(25.64103vw);
  }
  .p-normalarticle__box.is_direction-reverse::before {
    -webkit-transform: translateX(-10.25641vw) translateY(25.64103vw);
    -ms-transform: translateX(-10.25641vw) translateY(25.64103vw);
    transform: translateX(-10.25641vw) translateY(25.64103vw);
  }
  .p-normalarticle__box_item--sct {
    margin: 5.12821vw 0vw;
    padding: 5.12821vw;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .p-normalarticle__box_item--sct + .p-normalarticle__box_item--sct {
    margin-top: 10.25641vw;
  }
  .p-normalarticle__box_item--tit .p-tit {
    margin-bottom: 1em;
  }
}

/*
------------------------------------------------ */
.p-gridblock__box {
  width: 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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}

.p-gridblock__box_item {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid #E1E1E1;
}

.p-gridblock.is_div-01 .p-gridblock__box_item {
  width: calc( 100%);
}

.p-gridblock.is_div-02 .p-gridblock__box_item {
  width: calc( ( 100% - 30px ) / 2);
}

.p-gridblock.is_div-03 .p-gridblock__box_item {
  width: calc( ( 100% - 60px ) / 3);
}

.p-gridblock__box_item--head {
  padding: 1em;
  background: #1B46FA;
  color: #ffffff;
}

.p-gridblock__box_item--head .p-tit {
  font-size: 0.88889em;
  line-height: 1.6;
}

.p-gridblock__box_item--body {
  padding: 1em;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .p-gridblock__box {
    width: 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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5.12821vw;
  }
  .p-gridblock__box_item {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .p-gridblock.is_div-01 .p-gridblock__box_item {
    width: calc( 100%);
  }
  .p-gridblock.is_div-02 .p-gridblock__box_item {
    width: calc( 100%);
  }
  .p-gridblock.is_div-03 .p-gridblock__box_item {
    width: calc( 100%);
  }
  .p-gridblock__box_item--head {
    padding: 0.5em;
  }
  .p-gridblock__box_item--head .p-tit {
    font-size: 0.77778em;
  }
  .p-gridblock__box_item--body {
    padding: 1em;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

/*
------------------------------------------------ */
.p-bulletpointlist__box {
  padding: 2em 0em;
  text-align: left;
}

.p-bulletpointlist.is_liststyle-disc .p-bulletpointlist__box ul li {
  margin-left: 2em;
  list-style-type: disc;
  list-style-position: outside;
  color: #1B46FA;
}

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

@media screen and (max-width: 768px) {
  .p-bulletpointlist__box {
    padding: 1em 0em;
  }
  .p-bulletpointlist__box ul li + li {
    margin-top: 0.5em;
  }
  .p-bulletpointlist__box_item p big {
    line-height: 1.4;
  }
}

/*
------------------------------------------------ */
.p-voicelist__box {
  padding: 1em;
  text-align: left;
}

.p-voicelist__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: 25px;
}

.p-voicelist__box ul li {
  width: calc( ( 100% - 50px ) / 3);
}

.p-voicelist__box_item {
  padding: 1em 0em 1em 1em;
  border: 1px solid #E1E1E1;
}

.p-voicelist__box_item 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: 20px;
}

.p-voicelist__box_item picture,
.p-voicelist__box_item source,
.p-voicelist__box_item img {
  width: 60px;
}

.p-voicelist__box_item p big {
  width: calc( 100% - 80px);
  font-size: 0.88889em;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .p-voicelist__box {
    padding: 0em;
  }
  .p-voicelist__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: 3.84615vw;
  }
  .p-voicelist__box ul li {
    width: calc( 100%);
  }
  .p-voicelist__box_item p {
    gap: 5.12821vw;
  }
  .p-voicelist__box_item picture,
  .p-voicelist__box_item source,
  .p-voicelist__box_item img {
    width: 15.38462vw;
  }
  .p-voicelist__box_item p big {
    width: calc( 100% - 20.51282vw);
    line-height: 1.4;
  }
}

/*
------------------------------------------------ */
.p-messagearticle__box_item {
  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: 80px;
}

.p-messagearticle__box_item--img {
  width: calc( 250px);
}

.p-messagearticle__box_item--txt {
  width: calc( 100% - 250px - 80px);
  text-align: left;
}

.p-messagearticle__box_item--txt-tit {
  margin-bottom: 2em;
}

.p-messagearticle__box_item--txt-txt p {
  font-size: 0.88889em;
  line-height: 2;
}

.p-messagearticle__box_item--txt-txt p + p {
  margin-top: 0.5em;
}

.p-messagearticle__box_item--txt-txt p.is_textalign-right {
  margin-top: 2em;
}

@media screen and (max-width: 768px) {
  .p-messagearticle__box_item {
    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: 5.12821vw;
  }
  .p-messagearticle__box_item--img {
    width: 100%;
  }
  .p-messagearticle__box_item--txt {
    width: 100%;
  }
  .p-messagearticle__box_item--txt-tit {
    margin-bottom: 1em;
  }
  .p-messagearticle__box_item--txt-tit .p-tit {
    line-height: 1.6;
  }
  .p-messagearticle__box_item--txt-txt p {
    font-size: 0.88889em;
  }
  .p-messagearticle__box_item--txt-txt p + p {
    margin-top: 0.5em;
  }
}

/*
------------------------------------------------ */
.p-tableblock__box_item table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-bottom: 1px solid #E1E1E1;
  text-align: left;
}

.p-tableblock__box_item table tbody tr th {
  padding: 1em 0;
  border-top: 1px solid #E1E1E1;
  white-space: nowrap;
  vertical-align: top;
}

.p-tableblock__box_item table tbody tr th p {
  font-size: 0.88889em;
  font-weight: bold;
  line-height: 1.6;
}

.p-tableblock__box_item table tbody tr td {
  padding: 1em;
  border-top: 1px solid #E1E1E1;
  vertical-align: top;
}

.p-tableblock__box_item table tbody tr td p {
  font-size: 0.88889em;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .p-tableblock__box_item table {
    border-bottom: 1px solid #E1E1E1;
  }
  .p-tableblock__box_item table tbody tr th {
    display: block;
    padding: 0.5em 0;
    border-top: 1px solid #E1E1E1;
  }
  .p-tableblock__box_item table tbody tr th p {
    font-size: 0.77778em;
  }
  .p-tableblock__box_item table tbody tr td {
    display: block;
    padding: 0em 0em 0.5em 0em;
    border-top: none;
  }
  .p-tableblock__box_item table tbody tr td p {
    font-size: 0.77778em;
  }
}

/*
------------------------------------------------ */
.p-steplist__box ol {
  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: 30px;
}

.p-steplist__box ol li {
  width: 100%;
  position: relative;
}

.p-steplist__box ol li::after {
  display: inline-block;
  content: '';
  width: 0;
  height: 0;
  border-left: 0.4em solid transparent;
  border-right: 0.4em solid transparent;
  border-top: 0.5em solid #1B46FA;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
}

.p-steplist__box ol li:last-of-type::after {
  display: none;
}

.p-steplist__box_item {
  padding: 1em;
  border: 1px solid #E1E1E1;
  position: relative;
}

.p-steplist__box_item--head {
  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: 5em;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.p-steplist__box_item--head p big {
  font-family: 'Roboto', sans-serif;
  font-size: 0.88889em;
  font-weight: bold;
  color: #1B46FA;
}

.p-steplist__box_item--body 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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5em;
}

.p-steplist__box_item--body p big {
  font-family: 'Noto Serif JP', serif;
  font-size: 1em;
  font-weight: bold;
}

.p-steplist__box_item--body p small {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.88889em;
}

.p-steplist__box_item--body p sub {
  vertical-align: top;
}

@media screen and (max-width: 768px) {
  .p-steplist__box ol {
    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: 7.69231vw;
  }
  .p-steplist__box ol li::after {
    bottom: -5.12821vw;
  }
  .p-steplist__box_item {
    padding: 1.0em;
  }
  .p-steplist__box_item--head {
    margin-bottom: 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: 100%;
    position: relative;
  }
  .p-steplist__box_item--head p big {
    font-size: 0.77778em;
  }
  .p-steplist__box_item--body p big {
    font-size: 0.88889em;
  }
}

/*
------------------------------------------------ */
.p-columnanchornavi {
  position: relative;
  z-index: 15;
}

.p-columnanchornavi .p-section__inner {
  padding: 30px;
  max-width: 1200px;
}

.p-columnanchornavi__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: 60px;
}

.p-columnanchornavi__box ul li {
  width: calc( ( 100% - 60px ) / 2);
  display: block;
}

.p-columnanchornavi__box_item {
  display: block;
}

.p-columnanchornavi__box_item object {
  display: block;
}

.p-columnanchornavi__box_item a,
.p-columnanchornavi__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: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 30px;
  color: #ffffff;
}

.p-columnanchornavi__box_item--img {
  width: calc(160px);
}

.p-columnanchornavi__box_item--img p picture,
.p-columnanchornavi__box_item--img p source,
.p-columnanchornavi__box_item--img p img {
  display: block;
}

.p-columnanchornavi__box_item--txt {
  width: calc( 100% - 160px - 30px);
  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-columnanchornavi__box_item--txt p {
  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;
  gap: 1em;
}

.p-columnanchornavi__box_item--txt p big {
  font-family: 'Noto Serif JP', serif;
  line-height: 1.6;
  color: #ffffff;
  text-align: left;
}

.p-columnanchornavi__box_item a .p-columnanchornavi__box_item--txt p::after {
  display: inline-block;
  content: '';
  width: 0;
  height: 0;
  border-left: 0.8em solid transparent;
  border-right: 0.8em solid transparent;
  border-top: 0.8em solid #ffffff;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p-columnanchornavi .p-section__inner {
    padding: 7.69231vw;
    max-width: 100%;
  }
  .p-columnanchornavi__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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5.12821vw;
  }
  .p-columnanchornavi__box ul li {
    width: calc( 100%);
  }
  .p-columnanchornavi__box_item a,
  .p-columnanchornavi__box_item span {
    gap: 5.12821vw;
  }
  .p-columnanchornavi__box_item--img {
    width: calc(15.38462vw);
  }
  .p-columnanchornavi__box_item--txt {
    width: calc( 100% - 15.38462vw - 5.12821vw);
  }
  .p-columnanchornavi__box_item--txt p {
    width: 100%;
    gap: 1em;
  }
  .p-columnanchornavi__box_item--txt p big {
    font-size: 0.88889em;
  }
  .p-columnanchornavi__box_item a .p-columnanchornavi__box_item--txt p::after {
    font-size: 0.55556em;
  }
}

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