@charset "UTF-8";

:root {
  --main-color: #e63200; /* hsl(13 100% 45%) */
  --main-color-translucent: rgba(230,50,0,0.1);
  --main-color-dark: hsl(13 100% 30%);
  --sub-color-dark: #ff7732;
  --sub-color-light: #ffcca5;

  --background-color: #fff;
  --background-color-light: #e0e1e2;
  --background-color-dark: #63696e;

  --text-color: #000;
  --text-color-light: #fff;
  --border-color: var(--background-color-dark);

  --gradation-color1: #e63200;
  --gradation-color1-rgb: 230,50,0;

  --gradation-color2: #ff7732;
  --gradation-color2-rgb: 255,119,50;

  --gradation-color3: #f5a700;
  --gradation-color3-rgb: 245,167,0;

  --gradation-color4: #2bcaec;
  --gradation-color4-rgb: 43,202,236;
}

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

@keyframes body_bg {
  0% {
    background-position: left top;
  }
  100% {
    background-position: right bottom;
  }
}

@keyframes top_scroll {
  0% {
    transform: translateY(0em);
  }
  40% {
  }
  60% {
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateY(4em);
    opacity: 0.2;
  }
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  text-decoration: none;
  color: #000;
  background-color: #ff9;
}

/* change colours to suit your needs */
mark {
  font-weight: bold;
  font-style: italic;
  color: #000;
  background-color: #ff9;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}

input, select {
  vertical-align: middle;
}

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
input, button, select, textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
}

textarea {
  resize: vertical;
}

input[type='checkbox'], input[type='radio'] {
  display: none;
}

input[type='submit'], input[type='button'], label, button, select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

* {
  box-sizing: border-box;
}

*::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: var(--text-color);
  background-color: #fff;
  font-feature-settings: "palt";
}

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

:where(.main, .information_detail_main) a:link {
  color: revert;
}

:where(.main, .information_detail_main) img {
  display: revert;
}

:where(.main, .information_detail_main) h1,
:where(.main, .information_detail_main) h2,
:where(.main, .information_detail_main) h3,
:where(.main, .information_detail_main) h4,
:where(.main, .information_detail_main) h5,
:where(.main, .information_detail_main) h6 {
  font-weight: bold;
}

:where(.main, .information_detail_main) table tr th {
  text-align: center;
  font-weight: bold;
}

:where(.main, .information_detail_main) dt,
:where(.main, .information_detail_main) dd,
:where(.main, .information_detail_main) li,
:where(.main, .information_detail_main) th,
:where(.main, .information_detail_main) td,
:where(.main, .information_detail_main) p {
  line-height: revert;
}




.inner {
  width: 92%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.inner_large {
  width: 100%;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
}

.inner_small {
  width: 92%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.inner_min {
  width: 92%;
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.blank {
  position: relative;
}

.blank::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 1em;
  height: 1em;
  margin: auto;
  content: "";
  transform: translateX(180%);
  background-image: url(../images/jp/common/blank.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media (min-width: 769px) {
  .pc_none {
    display: none !important;
  }
}

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

.main {
  overflow: hidden;
  width: 100vw;
}

.main > section {
  margin-top: 160px;
}

@media screen and (max-width: 768px) {
  .main > section {
    margin-top: 15vw;
  }
}

.section_title {
  position: relative;
  width: 100%;
  height: 30vw;
  min-height: 360px;
  max-height: 480px;
  margin-bottom: 96px;
  background-repeat: no-repeat;
  background-size: cover;
}

.section_title a {
  position: absolute;
  width: 40%;
  min-width: 600px;
  max-width: 800px;
  padding: 0.3em 0.5em 2.5em;
  font-size: 57.6px;
  transition: 0.6s;
  text-decoration: none;
  letter-spacing: 0.05em;
  color: #fff;
  background: linear-gradient(123.97deg, var(--gradation-color1) 0%, var(--gradation-color2) 25%, var(--gradation-color3) 55%, var(--gradation-color4) 85%);;
  background-position: 0 0;
  background-size: 140%;
}

@media screen and (max-width: 768px) {
  .section_title a {
    width: 93vw;
    min-width: auto;
    max-width: none;
    padding-top: 2em;
    padding-bottom: 4em;
    font-size: 9.5vw;
  }
}

.section_title a:hover {
  background-position: 99%;
}

.section_title strong {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .section_title strong {
    display: block;
    margin-bottom: 0.75em;
    font-size: 1.1em;
    line-height: 1;
  }
}

.section_title em {
  display: block;
  font-size: 0.3em;
  font-weight: normal;
  font-style: normal;
}

@media screen and (max-width: 768px) {
  .section_title em {
    font-size: 0.4em;
  }
}

.section_title span {
  position: absolute;
  right: 1em;
  bottom: 1em;
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 0.25em;
  font-weight: normal;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .section_title span {
    font-size: 0.35em;
  }
}

.section_title span::after {
  display: block;
  width: 3em;
  height: 1px;
  margin-left: 0.5em;
  content: "";
  background-color: #fff;
}

.section_title span::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 0.6em;
  height: 1px;
  margin: auto;
  content: "";
  transform: rotate(45deg);
  transform-origin: right;
  background-color: #fff;
}

.section_title-top {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.section_title-top h2,
.section_title-top h3 {
  position: absolute;
  right: 15vw;
}

.section_title-top strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 5em;
  font-weight: 300;
  text-transform: uppercase;
  color: inherit;
}

.section_title-top em {
  font-size: 1em;
  font-weight: normal;
  font-style: normal;
  line-height: 2.2;
}

.section_title-top img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: right center;
}

.more_button {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.3em 0.75em 0.3em 0.75em;
  font-size: 57.6px;
  transition: 0.6s;
  transform: translate(20%, -30%);
  text-decoration: none;
  letter-spacing: 0.05em;
  color: #fff;
  background-position: 0 0;
  background-size: 140%;
}

.more_button:visited,
.more_button:link {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .more_button {
    width: 4.15em;
    min-width: auto;
    max-width: none;
    padding: 0.4em 0;
    padding-left: 1em;
    font-size: 10.45vw;
    transform: none;
  }
}

.more_button::before, .more_button::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  transition: 0.3s;
}

.more_button::before {
  background: var(--main-color);
}

.more_button::after {
  opacity: 0;
  background: linear-gradient(123.97deg, var(--gradation-color1) 0%, var(--gradation-color2) 25%, var(--gradation-color3) 55%, var(--gradation-color4) 85%);;
}

.more_button:hover {
  background-position: 99%;
}

.more_button:hover::before {
  opacity: 0;
}

.more_button:hover::after {
  opacity: 1;
}

.more_button span {
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 0.25em;
  font-weight: normal;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .more_button span {
    font-size: 0.35em;
  }
}

.more_button span::after {
  display: block;
  width: 3em;
  height: 1px;
  margin-left: 0.5em;
  content: "";
  background-color: #fff;
}

.more_button span::before {
  position: absolute;
  top: 0;
  right: 3em;
  bottom: 0;
  display: block;
  width: 0.6em;
  height: 1px;
  margin: auto;
  content: "";
  transform: rotate(45deg);
  transform-origin: right;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .more_button span::before {
    right: 2em;
  }
}

@keyframes scroll_left_01 {
  0% {
    transform: scaleX(0);
    transform-origin: top left;
  }
  100% {
    transform: scaleX(1);
    transform-origin: top left;
  }
}

@keyframes scroll_left_02 {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

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

.anime_left h2,
.anime_left h3,
.anime_left a,
.anime_left p {
  z-index: 11;
  opacity: 0;
}

.anime_left .anime_left_image {
  position: relative;
  z-index: 10;
  opacity: 1;
}

.anime_left .anime_left_image::after {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #fff;
}

.anime_left.view h2,
.anime_left.view h3,
.anime_left.view a,
.anime_left.view p {
  animation-name: scroll_left_03;
  animation-duration: 0.6s;
  animation-delay: 0.75s;
  animation-fill-mode: forwards;
}

.anime_left.view .anime_left_image {
  animation-name: scroll_left_01;
  animation-duration: 0.6s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}

.anime_left.view .anime_left_image::after {
  animation-name: scroll_left_02;
  animation-duration: 0.6s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
}

@keyframes scroll_fade_01 {
  0% {
    transform: translateY(20%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.anime_fade_js {
  opacity: 0;
}

.anime_fade.view {
  animation-name: scroll_fade_01;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}

.anime_wrapper {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  perspective: 100px;
}

.anime_inner {
  position: relative;
  min-height: 100vh;
  transform-style: preserve-3d;
}

.anime_part {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .9;
}

.anime_part i, .anime_part b {
  display: block;
  width: 14px;
  border-radius: 28px;
  background: #e2c2e6;
}

.anime_part i {
  height: 14px;
  margin-bottom: 14px;
}

.anime_part b {
  position: relative;
  height: 70px;
}

@keyframes cueue_00 {
  60% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

.cueue_00 {
  transform: scale(4);
  animation-name: cueue_00;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: .5s;
  animation-fill-mode: forwards;
}

@keyframes cueue_01-1 {
  100% {
    left: 46%;
  }
}

@keyframes cueue_01-2 {
  100% {
    left: 42%;
  }
}

@keyframes cueue_01-3 {
  100% {
    left: 38%;
  }
}

@keyframes cueue_01-4 {
  100% {
    left: 34%;
  }
}

@keyframes cueue_01-5 {
  100% {
    left: 30%;
  }
}

@keyframes cueue_01-6 {
  100% {
    left: 26%;
  }
}

@keyframes cueue_01-7 {
  100% {
    left: 22%;
  }
}

@keyframes cueue_01-8 {
  100% {
    left: 18%;
  }
}

@keyframes cueue_01-9 {
  100% {
    left: 14%;
  }
}

@keyframes cueue_01-10 {
  100% {
    left: 10%;
  }
}

@keyframes cueue_01-11 {
  100% {
    left: 6%;
  }
}

@keyframes cueue_01-12 {
  100% {
    left: 2%;
  }
}

@keyframes cueue_01-13 {
  100% {
    left: -2%;
  }
}

@keyframes cueue_01-14 {
  100% {
    left: -6%;
  }
}

@keyframes cueue_01-15 {
  100% {
    left: -10%;
  }
}

@keyframes cueue_01-16 {
  100% {
    left: -14%;
  }
}

@keyframes cueue_01-17 {
  100% {
    left: -18%;
  }
}

@keyframes cueue_01-18 {
  100% {
    left: -22%;
  }
}

@keyframes cueue_01-19 {
  100% {
    left: -26%;
  }
}

@keyframes cueue_01-20 {
  100% {
    left: -30%;
  }
}

@keyframes cueue_01-21 {
  100% {
    left: -34%;
  }
}

@keyframes cueue_01-22 {
  100% {
    left: -38%;
  }
}

@keyframes cueue_01-23 {
  100% {
    left: -42%;
  }
}

@keyframes cueue_01-24 {
  100% {
    left: -46%;
  }
}

@keyframes cueue_01-25 {
  100% {
    left: -50%;
  }
}

@keyframes cueue_01-26 {
  100% {
    left: -54%;
  }
}

@keyframes cueue_01-27 {
  100% {
    left: -58%;
  }
}

@keyframes cueue_01-28 {
  100% {
    left: -62%;
  }
}

@keyframes cueue_01-29 {
  100% {
    left: -66%;
  }
}

@keyframes cueue_01-30 {
  100% {
    left: -70%;
  }
}

@keyframes cueue_01-31 {
  100% {
    left: -74%;
  }
}

@keyframes cueue_01-32 {
  100% {
    left: -78%;
  }
}

@keyframes cueue_01-33 {
  100% {
    left: -82%;
  }
}

@keyframes cueue_01-34 {
  100% {
    left: -86%;
  }
}

@keyframes cueue_01-35 {
  100% {
    left: -90%;
  }
}

@keyframes cueue_01-36 {
  100% {
    left: -94%;
  }
}

@keyframes cueue_01-37 {
  100% {
    left: -98%;
  }
}

@keyframes cueue_01-38 {
  100% {
    left: -102%;
  }
}

@keyframes cueue_01-39 {
  100% {
    left: -106%;
  }
}

@keyframes cueue_01-40 {
  100% {
    left: -110%;
  }
}

@keyframes cueue_01-41 {
  100% {
    left: 54%;
  }
}

@keyframes cueue_01-42 {
  100% {
    left: 58%;
  }
}

@keyframes cueue_01-43 {
  100% {
    left: 62%;
  }
}

@keyframes cueue_01-44 {
  100% {
    left: 66%;
  }
}

@keyframes cueue_01-45 {
  100% {
    left: 70%;
  }
}

@keyframes cueue_01-46 {
  100% {
    left: 74%;
  }
}

@keyframes cueue_01-47 {
  100% {
    left: 78%;
  }
}

@keyframes cueue_01-48 {
  100% {
    left: 82%;
  }
}

@keyframes cueue_01-49 {
  100% {
    left: 86%;
  }
}

@keyframes cueue_01-50 {
  100% {
    left: 90%;
  }
}

@keyframes cueue_01-51 {
  100% {
    left: 94%;
  }
}

@keyframes cueue_01-52 {
  100% {
    left: 98%;
  }
}

@keyframes cueue_01-53 {
  100% {
    left: 102%;
  }
}

@keyframes cueue_01-54 {
  100% {
    left: 106%;
  }
}

@keyframes cueue_01-55 {
  100% {
    left: 110%;
  }
}

@keyframes cueue_01-56 {
  100% {
    left: 114%;
  }
}

@keyframes cueue_01-57 {
  100% {
    left: 118%;
  }
}

@keyframes cueue_01-58 {
  100% {
    left: 122%;
  }
}

@keyframes cueue_01-59 {
  100% {
    left: 126%;
  }
}

@keyframes cueue_01-60 {
  100% {
    left: 130%;
  }
}

@keyframes cueue_01-61 {
  100% {
    left: 134%;
  }
}

@keyframes cueue_01-62 {
  100% {
    left: 138%;
  }
}

@keyframes cueue_01-63 {
  100% {
    left: 142%;
  }
}

@keyframes cueue_01-64 {
  100% {
    left: 146%;
  }
}

@keyframes cueue_01-65 {
  100% {
    left: 150%;
  }
}

@keyframes cueue_01-66 {
  100% {
    left: 154%;
  }
}

@keyframes cueue_01-67 {
  100% {
    left: 158%;
  }
}

@keyframes cueue_01-68 {
  100% {
    left: 162%;
  }
}

@keyframes cueue_01-69 {
  100% {
    left: 166%;
  }
}

@keyframes cueue_01-70 {
  100% {
    left: 170%;
  }
}

@keyframes cueue_01-71 {
  100% {
    left: 174%;
  }
}

@keyframes cueue_01-72 {
  100% {
    left: 178%;
  }
}

@keyframes cueue_01-73 {
  100% {
    left: 182%;
  }
}

@keyframes cueue_01-74 {
  100% {
    left: 186%;
  }
}

@keyframes cueue_01-75 {
  100% {
    left: 190%;
  }
}

@keyframes cueue_01-76 {
  100% {
    left: 194%;
  }
}

@keyframes cueue_01-77 {
  100% {
    left: 198%;
  }
}

@keyframes cueue_01-78 {
  100% {
    left: 202%;
  }
}

@keyframes cueue_01-79 {
  100% {
    left: 206%;
  }
}

@keyframes cueue_01-80 {
  100% {
    left: 210%;
  }
}

.cueue_01:nth-of-type(1) {
  animation-name: cueue_01-1;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(2) {
  animation-name: cueue_01-2;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(3) {
  animation-name: cueue_01-3;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(4) {
  animation-name: cueue_01-4;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(5) {
  animation-name: cueue_01-5;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(6) {
  animation-name: cueue_01-6;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(7) {
  animation-name: cueue_01-7;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(8) {
  animation-name: cueue_01-8;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(9) {
  animation-name: cueue_01-9;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(10) {
  animation-name: cueue_01-10;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(11) {
  animation-name: cueue_01-11;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(12) {
  animation-name: cueue_01-12;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(13) {
  animation-name: cueue_01-13;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(14) {
  animation-name: cueue_01-14;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(15) {
  animation-name: cueue_01-15;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(16) {
  animation-name: cueue_01-16;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(17) {
  animation-name: cueue_01-17;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(18) {
  animation-name: cueue_01-18;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(19) {
  animation-name: cueue_01-19;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(20) {
  animation-name: cueue_01-20;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(21) {
  animation-name: cueue_01-21;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(22) {
  animation-name: cueue_01-22;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(23) {
  animation-name: cueue_01-23;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(24) {
  animation-name: cueue_01-24;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(25) {
  animation-name: cueue_01-25;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(26) {
  animation-name: cueue_01-26;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(27) {
  animation-name: cueue_01-27;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(28) {
  animation-name: cueue_01-28;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(29) {
  animation-name: cueue_01-29;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(30) {
  animation-name: cueue_01-30;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(31) {
  animation-name: cueue_01-31;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(32) {
  animation-name: cueue_01-32;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(33) {
  animation-name: cueue_01-33;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(34) {
  animation-name: cueue_01-34;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(35) {
  animation-name: cueue_01-35;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(36) {
  animation-name: cueue_01-36;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(37) {
  animation-name: cueue_01-37;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(38) {
  animation-name: cueue_01-38;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(39) {
  animation-name: cueue_01-39;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(40) {
  animation-name: cueue_01-40;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(41) {
  animation-name: cueue_01-41;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(42) {
  animation-name: cueue_01-42;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(43) {
  animation-name: cueue_01-43;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(44) {
  animation-name: cueue_01-44;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(45) {
  animation-name: cueue_01-45;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(46) {
  animation-name: cueue_01-46;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(47) {
  animation-name: cueue_01-47;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(48) {
  animation-name: cueue_01-48;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(49) {
  animation-name: cueue_01-49;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(50) {
  animation-name: cueue_01-50;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(51) {
  animation-name: cueue_01-51;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(52) {
  animation-name: cueue_01-52;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(53) {
  animation-name: cueue_01-53;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(54) {
  animation-name: cueue_01-54;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(55) {
  animation-name: cueue_01-55;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(56) {
  animation-name: cueue_01-56;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(57) {
  animation-name: cueue_01-57;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(58) {
  animation-name: cueue_01-58;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(59) {
  animation-name: cueue_01-59;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(60) {
  animation-name: cueue_01-60;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(61) {
  animation-name: cueue_01-61;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(62) {
  animation-name: cueue_01-62;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(63) {
  animation-name: cueue_01-63;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(64) {
  animation-name: cueue_01-64;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(65) {
  animation-name: cueue_01-65;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(66) {
  animation-name: cueue_01-66;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(67) {
  animation-name: cueue_01-67;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(68) {
  animation-name: cueue_01-68;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(69) {
  animation-name: cueue_01-69;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(70) {
  animation-name: cueue_01-70;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(71) {
  animation-name: cueue_01-71;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(72) {
  animation-name: cueue_01-72;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(73) {
  animation-name: cueue_01-73;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(74) {
  animation-name: cueue_01-74;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(75) {
  animation-name: cueue_01-75;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(76) {
  animation-name: cueue_01-76;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(77) {
  animation-name: cueue_01-77;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(78) {
  animation-name: cueue_01-78;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(79) {
  animation-name: cueue_01-79;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.cueue_01:nth-of-type(80) {
  animation-name: cueue_01-80;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
}

.anime_part .cueue_02 {
  animation-duration: 0.4s;
  animation-timing-function: ease;
  animation-delay: 1.65s;
  animation-fill-mode: forwards;
}

.anime_part .cueue_02b {
  animation-duration: 0.4s;
  animation-timing-function: ease;
  animation-delay: 1.65s;
  animation-fill-mode: forwards;
}

@keyframes cueue_02-a-1 {
  100% {
    height: 315px;
  }
}

@keyframes cueue_02-b-1 {
  100% {
    transform: translateY(0px);
  }
}

.anime_part:nth-of-type(1) .cueue_02 {
  animation-name: cueue_02-a-1;
}

.anime_part:nth-of-type(1) .cueue_02b {
  animation-name: cueue_02-b-1;
}

@keyframes cueue_02-a-2 {
  100% {
    height: 525px;
  }
}

@keyframes cueue_02-b-2 {
  100% {
    transform: translateY(70px);
  }
}

.anime_part:nth-of-type(2) .cueue_02 {
  animation-name: cueue_02-a-2;
}

.anime_part:nth-of-type(2) .cueue_02b {
  animation-name: cueue_02-b-2;
}

@keyframes cueue_02-a-3 {
  100% {
    height: 315px;
  }
}

@keyframes cueue_02-b-3 {
  100% {
    transform: translateY(140px);
  }
}

.anime_part:nth-of-type(3) .cueue_02 {
  animation-name: cueue_02-a-3;
}

.anime_part:nth-of-type(3) .cueue_02b {
  animation-name: cueue_02-b-3;
}

@keyframes cueue_02-a-4 {
  100% {
    height: 525px;
  }
}

@keyframes cueue_02-b-4 {
  100% {
    transform: translateY(210px);
  }
}

.anime_part:nth-of-type(4) .cueue_02 {
  animation-name: cueue_02-a-4;
}

.anime_part:nth-of-type(4) .cueue_02b {
  animation-name: cueue_02-b-4;
}

@keyframes cueue_02-a-5 {
  100% {
    height: 385px;
  }
}

@keyframes cueue_02-b-5 {
  100% {
    transform: translateY(-70px);
  }
}

.anime_part:nth-of-type(5) .cueue_02 {
  animation-name: cueue_02-a-5;
}

.anime_part:nth-of-type(5) .cueue_02b {
  animation-name: cueue_02-b-5;
}

@keyframes cueue_02-a-6 {
  100% {
    height: 175px;
  }
}

@keyframes cueue_02-b-6 {
  100% {
    transform: translateY(0px);
  }
}

.anime_part:nth-of-type(6) .cueue_02 {
  animation-name: cueue_02-a-6;
}

.anime_part:nth-of-type(6) .cueue_02b {
  animation-name: cueue_02-b-6;
}

@keyframes cueue_02-a-7 {
  100% {
    height: 385px;
  }
}

@keyframes cueue_02-b-7 {
  100% {
    transform: translateY(70px);
  }
}

.anime_part:nth-of-type(7) .cueue_02 {
  animation-name: cueue_02-a-7;
}

.anime_part:nth-of-type(7) .cueue_02b {
  animation-name: cueue_02-b-7;
}

@keyframes cueue_02-a-8 {
  100% {
    height: 595px;
  }
}

@keyframes cueue_02-b-8 {
  100% {
    transform: translateY(140px);
  }
}

.anime_part:nth-of-type(8) .cueue_02 {
  animation-name: cueue_02-a-8;
}

.anime_part:nth-of-type(8) .cueue_02b {
  animation-name: cueue_02-b-8;
}

@keyframes cueue_02-a-9 {
  100% {
    height: 385px;
  }
}

@keyframes cueue_02-b-9 {
  100% {
    transform: translateY(210px);
  }
}

.anime_part:nth-of-type(9) .cueue_02 {
  animation-name: cueue_02-a-9;
}

.anime_part:nth-of-type(9) .cueue_02b {
  animation-name: cueue_02-b-9;
}

@keyframes cueue_02-a-10 {
  100% {
    height: 245px;
  }
}

@keyframes cueue_02-b-10 {
  100% {
    transform: translateY(-70px);
  }
}

.anime_part:nth-of-type(10) .cueue_02 {
  animation-name: cueue_02-a-10;
}

.anime_part:nth-of-type(10) .cueue_02b {
  animation-name: cueue_02-b-10;
}

@keyframes cueue_02-a-11 {
  100% {
    height: 455px;
  }
}

@keyframes cueue_02-b-11 {
  100% {
    transform: translateY(0px);
  }
}

.anime_part:nth-of-type(11) .cueue_02 {
  animation-name: cueue_02-a-11;
}

.anime_part:nth-of-type(11) .cueue_02b {
  animation-name: cueue_02-b-11;
}

@keyframes cueue_02-a-12 {
  100% {
    height: 245px;
  }
}

@keyframes cueue_02-b-12 {
  100% {
    transform: translateY(70px);
  }
}

.anime_part:nth-of-type(12) .cueue_02 {
  animation-name: cueue_02-a-12;
}

.anime_part:nth-of-type(12) .cueue_02b {
  animation-name: cueue_02-b-12;
}

@keyframes cueue_02-a-13 {
  100% {
    height: 455px;
  }
}

@keyframes cueue_02-b-13 {
  100% {
    transform: translateY(140px);
  }
}

.anime_part:nth-of-type(13) .cueue_02 {
  animation-name: cueue_02-a-13;
}

.anime_part:nth-of-type(13) .cueue_02b {
  animation-name: cueue_02-b-13;
}

@keyframes cueue_02-a-14 {
  100% {
    height: 665px;
  }
}

@keyframes cueue_02-b-14 {
  100% {
    transform: translateY(210px);
  }
}

.anime_part:nth-of-type(14) .cueue_02 {
  animation-name: cueue_02-a-14;
}

.anime_part:nth-of-type(14) .cueue_02b {
  animation-name: cueue_02-b-14;
}

@keyframes cueue_02-a-15 {
  100% {
    height: 105px;
  }
}

@keyframes cueue_02-b-15 {
  100% {
    transform: translateY(-70px);
  }
}

.anime_part:nth-of-type(15) .cueue_02 {
  animation-name: cueue_02-a-15;
}

.anime_part:nth-of-type(15) .cueue_02b {
  animation-name: cueue_02-b-15;
}

@keyframes cueue_02-a-16 {
  100% {
    height: 315px;
  }
}

@keyframes cueue_02-b-16 {
  100% {
    transform: translateY(0px);
  }
}

.anime_part:nth-of-type(16) .cueue_02 {
  animation-name: cueue_02-a-16;
}

.anime_part:nth-of-type(16) .cueue_02b {
  animation-name: cueue_02-b-16;
}

@keyframes cueue_02-a-17 {
  100% {
    height: 525px;
  }
}

@keyframes cueue_02-b-17 {
  100% {
    transform: translateY(70px);
  }
}

.anime_part:nth-of-type(17) .cueue_02 {
  animation-name: cueue_02-a-17;
}

.anime_part:nth-of-type(17) .cueue_02b {
  animation-name: cueue_02-b-17;
}

@keyframes cueue_02-a-18 {
  100% {
    height: 315px;
  }
}

@keyframes cueue_02-b-18 {
  100% {
    transform: translateY(140px);
  }
}

.anime_part:nth-of-type(18) .cueue_02 {
  animation-name: cueue_02-a-18;
}

.anime_part:nth-of-type(18) .cueue_02b {
  animation-name: cueue_02-b-18;
}

@keyframes cueue_02-a-19 {
  100% {
    height: 525px;
  }
}

@keyframes cueue_02-b-19 {
  100% {
    transform: translateY(210px);
  }
}

.anime_part:nth-of-type(19) .cueue_02 {
  animation-name: cueue_02-a-19;
}

.anime_part:nth-of-type(19) .cueue_02b {
  animation-name: cueue_02-b-19;
}

@keyframes cueue_02-a-20 {
  100% {
    height: 385px;
  }
}

@keyframes cueue_02-b-20 {
  100% {
    transform: translateY(-70px);
  }
}

.anime_part:nth-of-type(20) .cueue_02 {
  animation-name: cueue_02-a-20;
}

.anime_part:nth-of-type(20) .cueue_02b {
  animation-name: cueue_02-b-20;
}

@keyframes cueue_02-a-21 {
  100% {
    height: 175px;
  }
}

@keyframes cueue_02-b-21 {
  100% {
    transform: translateY(0px);
  }
}

.anime_part:nth-of-type(21) .cueue_02 {
  animation-name: cueue_02-a-21;
}

.anime_part:nth-of-type(21) .cueue_02b {
  animation-name: cueue_02-b-21;
}

@keyframes cueue_02-a-22 {
  100% {
    height: 385px;
  }
}

@keyframes cueue_02-b-22 {
  100% {
    transform: translateY(70px);
  }
}

.anime_part:nth-of-type(22) .cueue_02 {
  animation-name: cueue_02-a-22;
}

.anime_part:nth-of-type(22) .cueue_02b {
  animation-name: cueue_02-b-22;
}

@keyframes cueue_02-a-23 {
  100% {
    height: 595px;
  }
}

@keyframes cueue_02-b-23 {
  100% {
    transform: translateY(140px);
  }
}

.anime_part:nth-of-type(23) .cueue_02 {
  animation-name: cueue_02-a-23;
}

.anime_part:nth-of-type(23) .cueue_02b {
  animation-name: cueue_02-b-23;
}

@keyframes cueue_02-a-24 {
  100% {
    height: 385px;
  }
}

@keyframes cueue_02-b-24 {
  100% {
    transform: translateY(210px);
  }
}

.anime_part:nth-of-type(24) .cueue_02 {
  animation-name: cueue_02-a-24;
}

.anime_part:nth-of-type(24) .cueue_02b {
  animation-name: cueue_02-b-24;
}

@keyframes cueue_02-a-25 {
  100% {
    height: 245px;
  }
}

@keyframes cueue_02-b-25 {
  100% {
    transform: translateY(-70px);
  }
}

.anime_part:nth-of-type(25) .cueue_02 {
  animation-name: cueue_02-a-25;
}

.anime_part:nth-of-type(25) .cueue_02b {
  animation-name: cueue_02-b-25;
}

@keyframes cueue_02-a-26 {
  100% {
    height: 455px;
  }
}

@keyframes cueue_02-b-26 {
  100% {
    transform: translateY(0px);
  }
}

.anime_part:nth-of-type(26) .cueue_02 {
  animation-name: cueue_02-a-26;
}

.anime_part:nth-of-type(26) .cueue_02b {
  animation-name: cueue_02-b-26;
}

@keyframes cueue_02-a-27 {
  100% {
    height: 245px;
  }
}

@keyframes cueue_02-b-27 {
  100% {
    transform: translateY(70px);
  }
}

.anime_part:nth-of-type(27) .cueue_02 {
  animation-name: cueue_02-a-27;
}

.anime_part:nth-of-type(27) .cueue_02b {
  animation-name: cueue_02-b-27;
}

@keyframes cueue_02-a-28 {
  100% {
    height: 455px;
  }
}

@keyframes cueue_02-b-28 {
  100% {
    transform: translateY(140px);
  }
}

.anime_part:nth-of-type(28) .cueue_02 {
  animation-name: cueue_02-a-28;
}

.anime_part:nth-of-type(28) .cueue_02b {
  animation-name: cueue_02-b-28;
}

@keyframes cueue_02-a-29 {
  100% {
    height: 665px;
  }
}

@keyframes cueue_02-b-29 {
  100% {
    transform: translateY(210px);
  }
}

.anime_part:nth-of-type(29) .cueue_02 {
  animation-name: cueue_02-a-29;
}

.anime_part:nth-of-type(29) .cueue_02b {
  animation-name: cueue_02-b-29;
}

@keyframes cueue_02-a-30 {
  100% {
    height: 105px;
  }
}

@keyframes cueue_02-b-30 {
  100% {
    transform: translateY(-70px);
  }
}

.anime_part:nth-of-type(30) .cueue_02 {
  animation-name: cueue_02-a-30;
}

.anime_part:nth-of-type(30) .cueue_02b {
  animation-name: cueue_02-b-30;
}

@keyframes cueue_02-a-31 {
  100% {
    height: 315px;
  }
}

@keyframes cueue_02-b-31 {
  100% {
    transform: translateY(0px);
  }
}

.anime_part:nth-of-type(31) .cueue_02 {
  animation-name: cueue_02-a-31;
}

.anime_part:nth-of-type(31) .cueue_02b {
  animation-name: cueue_02-b-31;
}

@keyframes cueue_02-a-32 {
  100% {
    height: 525px;
  }
}

@keyframes cueue_02-b-32 {
  100% {
    transform: translateY(70px);
  }
}

.anime_part:nth-of-type(32) .cueue_02 {
  animation-name: cueue_02-a-32;
}

.anime_part:nth-of-type(32) .cueue_02b {
  animation-name: cueue_02-b-32;
}

@keyframes cueue_02-a-33 {
  100% {
    height: 315px;
  }
}

@keyframes cueue_02-b-33 {
  100% {
    transform: translateY(140px);
  }
}

.anime_part:nth-of-type(33) .cueue_02 {
  animation-name: cueue_02-a-33;
}

.anime_part:nth-of-type(33) .cueue_02b {
  animation-name: cueue_02-b-33;
}

@keyframes cueue_02-a-34 {
  100% {
    height: 525px;
  }
}

@keyframes cueue_02-b-34 {
  100% {
    transform: translateY(210px);
  }
}

.anime_part:nth-of-type(34) .cueue_02 {
  animation-name: cueue_02-a-34;
}

.anime_part:nth-of-type(34) .cueue_02b {
  animation-name: cueue_02-b-34;
}

@keyframes cueue_02-a-35 {
  100% {
    height: 385px;
  }
}

@keyframes cueue_02-b-35 {
  100% {
    transform: translateY(-70px);
  }
}

.anime_part:nth-of-type(35) .cueue_02 {
  animation-name: cueue_02-a-35;
}

.anime_part:nth-of-type(35) .cueue_02b {
  animation-name: cueue_02-b-35;
}

@keyframes cueue_02-a-36 {
  100% {
    height: 175px;
  }
}

@keyframes cueue_02-b-36 {
  100% {
    transform: translateY(0px);
  }
}

.anime_part:nth-of-type(36) .cueue_02 {
  animation-name: cueue_02-a-36;
}

.anime_part:nth-of-type(36) .cueue_02b {
  animation-name: cueue_02-b-36;
}

@keyframes cueue_02-a-37 {
  100% {
    height: 385px;
  }
}

@keyframes cueue_02-b-37 {
  100% {
    transform: translateY(70px);
  }
}

.anime_part:nth-of-type(37) .cueue_02 {
  animation-name: cueue_02-a-37;
}

.anime_part:nth-of-type(37) .cueue_02b {
  animation-name: cueue_02-b-37;
}

@keyframes cueue_02-a-38 {
  100% {
    height: 595px;
  }
}

@keyframes cueue_02-b-38 {
  100% {
    transform: translateY(140px);
  }
}

.anime_part:nth-of-type(38) .cueue_02 {
  animation-name: cueue_02-a-38;
}

.anime_part:nth-of-type(38) .cueue_02b {
  animation-name: cueue_02-b-38;
}

@keyframes cueue_02-a-39 {
  100% {
    height: 385px;
  }
}

@keyframes cueue_02-b-39 {
  100% {
    transform: translateY(210px);
  }
}

.anime_part:nth-of-type(39) .cueue_02 {
  animation-name: cueue_02-a-39;
}

.anime_part:nth-of-type(39) .cueue_02b {
  animation-name: cueue_02-b-39;
}

@keyframes cueue_02-a-40 {
  100% {
    height: 245px;
  }
}

@keyframes cueue_02-b-40 {
  100% {
    transform: translateY(-70px);
  }
}

.anime_part:nth-of-type(40) .cueue_02 {
  animation-name: cueue_02-a-40;
}

.anime_part:nth-of-type(40) .cueue_02b {
  animation-name: cueue_02-b-40;
}

@keyframes cueue_02-a-41 {
  100% {
    height: 455px;
  }
}

@keyframes cueue_02-b-41 {
  100% {
    transform: translateY(0px);
  }
}

.anime_part:nth-of-type(41) .cueue_02 {
  animation-name: cueue_02-a-41;
}

.anime_part:nth-of-type(41) .cueue_02b {
  animation-name: cueue_02-b-41;
}

@keyframes cueue_02-a-42 {
  100% {
    height: 245px;
  }
}

@keyframes cueue_02-b-42 {
  100% {
    transform: translateY(70px);
  }
}

.anime_part:nth-of-type(42) .cueue_02 {
  animation-name: cueue_02-a-42;
}

.anime_part:nth-of-type(42) .cueue_02b {
  animation-name: cueue_02-b-42;
}

@keyframes cueue_02-a-43 {
  100% {
    height: 455px;
  }
}

@keyframes cueue_02-b-43 {
  100% {
    transform: translateY(140px);
  }
}

.anime_part:nth-of-type(43) .cueue_02 {
  animation-name: cueue_02-a-43;
}

.anime_part:nth-of-type(43) .cueue_02b {
  animation-name: cueue_02-b-43;
}

@keyframes cueue_02-a-44 {
  100% {
    height: 665px;
  }
}

@keyframes cueue_02-b-44 {
  100% {
    transform: translateY(210px);
  }
}

.anime_part:nth-of-type(44) .cueue_02 {
  animation-name: cueue_02-a-44;
}

.anime_part:nth-of-type(44) .cueue_02b {
  animation-name: cueue_02-b-44;
}

@keyframes cueue_02-a-45 {
  100% {
    height: 105px;
  }
}

@keyframes cueue_02-b-45 {
  100% {
    transform: translateY(-70px);
  }
}

.anime_part:nth-of-type(45) .cueue_02 {
  animation-name: cueue_02-a-45;
}

.anime_part:nth-of-type(45) .cueue_02b {
  animation-name: cueue_02-b-45;
}

@keyframes cueue_02-a-46 {
  100% {
    height: 315px;
  }
}

@keyframes cueue_02-b-46 {
  100% {
    transform: translateY(0px);
  }
}

.anime_part:nth-of-type(46) .cueue_02 {
  animation-name: cueue_02-a-46;
}

.anime_part:nth-of-type(46) .cueue_02b {
  animation-name: cueue_02-b-46;
}

@keyframes cueue_02-a-47 {
  100% {
    height: 525px;
  }
}

@keyframes cueue_02-b-47 {
  100% {
    transform: translateY(70px);
  }
}

.anime_part:nth-of-type(47) .cueue_02 {
  animation-name: cueue_02-a-47;
}

.anime_part:nth-of-type(47) .cueue_02b {
  animation-name: cueue_02-b-47;
}

@keyframes cueue_02-a-48 {
  100% {
    height: 315px;
  }
}

@keyframes cueue_02-b-48 {
  100% {
    transform: translateY(140px);
  }
}

.anime_part:nth-of-type(48) .cueue_02 {
  animation-name: cueue_02-a-48;
}

.anime_part:nth-of-type(48) .cueue_02b {
  animation-name: cueue_02-b-48;
}

@keyframes cueue_02-a-49 {
  100% {
    height: 525px;
  }
}

@keyframes cueue_02-b-49 {
  100% {
    transform: translateY(210px);
  }
}

.anime_part:nth-of-type(49) .cueue_02 {
  animation-name: cueue_02-a-49;
}

.anime_part:nth-of-type(49) .cueue_02b {
  animation-name: cueue_02-b-49;
}

@keyframes cueue_02-a-50 {
  100% {
    height: 385px;
  }
}

@keyframes cueue_02-b-50 {
  100% {
    transform: translateY(-70px);
  }
}

.anime_part:nth-of-type(50) .cueue_02 {
  animation-name: cueue_02-a-50;
}

.anime_part:nth-of-type(50) .cueue_02b {
  animation-name: cueue_02-b-50;
}

@keyframes cueue_02-a-51 {
  100% {
    height: 175px;
  }
}

@keyframes cueue_02-b-51 {
  100% {
    transform: translateY(0px);
  }
}

.anime_part:nth-of-type(51) .cueue_02 {
  animation-name: cueue_02-a-51;
}

.anime_part:nth-of-type(51) .cueue_02b {
  animation-name: cueue_02-b-51;
}

@keyframes cueue_02-a-52 {
  100% {
    height: 385px;
  }
}

@keyframes cueue_02-b-52 {
  100% {
    transform: translateY(70px);
  }
}

.anime_part:nth-of-type(52) .cueue_02 {
  animation-name: cueue_02-a-52;
}

.anime_part:nth-of-type(52) .cueue_02b {
  animation-name: cueue_02-b-52;
}

@keyframes cueue_02-a-53 {
  100% {
    height: 595px;
  }
}

@keyframes cueue_02-b-53 {
  100% {
    transform: translateY(140px);
  }
}

.anime_part:nth-of-type(53) .cueue_02 {
  animation-name: cueue_02-a-53;
}

.anime_part:nth-of-type(53) .cueue_02b {
  animation-name: cueue_02-b-53;
}

@keyframes cueue_02-a-54 {
  100% {
    height: 385px;
  }
}

@keyframes cueue_02-b-54 {
  100% {
    transform: translateY(210px);
  }
}

.anime_part:nth-of-type(54) .cueue_02 {
  animation-name: cueue_02-a-54;
}

.anime_part:nth-of-type(54) .cueue_02b {
  animation-name: cueue_02-b-54;
}

@keyframes cueue_02-a-55 {
  100% {
    height: 245px;
  }
}

@keyframes cueue_02-b-55 {
  100% {
    transform: translateY(-70px);
  }
}

.anime_part:nth-of-type(55) .cueue_02 {
  animation-name: cueue_02-a-55;
}

.anime_part:nth-of-type(55) .cueue_02b {
  animation-name: cueue_02-b-55;
}

@keyframes cueue_02-a-56 {
  100% {
    height: 455px;
  }
}

@keyframes cueue_02-b-56 {
  100% {
    transform: translateY(0px);
  }
}

.anime_part:nth-of-type(56) .cueue_02 {
  animation-name: cueue_02-a-56;
}

.anime_part:nth-of-type(56) .cueue_02b {
  animation-name: cueue_02-b-56;
}

@keyframes cueue_02-a-57 {
  100% {
    height: 245px;
  }
}

@keyframes cueue_02-b-57 {
  100% {
    transform: translateY(70px);
  }
}

.anime_part:nth-of-type(57) .cueue_02 {
  animation-name: cueue_02-a-57;
}

.anime_part:nth-of-type(57) .cueue_02b {
  animation-name: cueue_02-b-57;
}

@keyframes cueue_02-a-58 {
  100% {
    height: 455px;
  }
}

@keyframes cueue_02-b-58 {
  100% {
    transform: translateY(140px);
  }
}

.anime_part:nth-of-type(58) .cueue_02 {
  animation-name: cueue_02-a-58;
}

.anime_part:nth-of-type(58) .cueue_02b {
  animation-name: cueue_02-b-58;
}

@keyframes cueue_02-a-59 {
  100% {
    height: 665px;
  }
}

@keyframes cueue_02-b-59 {
  100% {
    transform: translateY(210px);
  }
}

.anime_part:nth-of-type(59) .cueue_02 {
  animation-name: cueue_02-a-59;
}

.anime_part:nth-of-type(59) .cueue_02b {
  animation-name: cueue_02-b-59;
}

@keyframes cueue_02-a-60 {
  100% {
    height: 105px;
  }
}

@keyframes cueue_02-b-60 {
  100% {
    transform: translateY(-70px);
  }
}

.anime_part:nth-of-type(60) .cueue_02 {
  animation-name: cueue_02-a-60;
}

.anime_part:nth-of-type(60) .cueue_02b {
  animation-name: cueue_02-b-60;
}

@keyframes cueue_02-a-61 {
  100% {
    height: 315px;
  }
}

@keyframes cueue_02-b-61 {
  100% {
    transform: translateY(0px);
  }
}

.anime_part:nth-of-type(61) .cueue_02 {
  animation-name: cueue_02-a-61;
}

.anime_part:nth-of-type(61) .cueue_02b {
  animation-name: cueue_02-b-61;
}

@keyframes cueue_02-a-62 {
  100% {
    height: 525px;
  }
}

@keyframes cueue_02-b-62 {
  100% {
    transform: translateY(70px);
  }
}

.anime_part:nth-of-type(62) .cueue_02 {
  animation-name: cueue_02-a-62;
}

.anime_part:nth-of-type(62) .cueue_02b {
  animation-name: cueue_02-b-62;
}

@keyframes cueue_02-a-63 {
  100% {
    height: 315px;
  }
}

@keyframes cueue_02-b-63 {
  100% {
    transform: translateY(140px);
  }
}

.anime_part:nth-of-type(63) .cueue_02 {
  animation-name: cueue_02-a-63;
}

.anime_part:nth-of-type(63) .cueue_02b {
  animation-name: cueue_02-b-63;
}

@keyframes cueue_02-a-64 {
  100% {
    height: 525px;
  }
}

@keyframes cueue_02-b-64 {
  100% {
    transform: translateY(210px);
  }
}

.anime_part:nth-of-type(64) .cueue_02 {
  animation-name: cueue_02-a-64;
}

.anime_part:nth-of-type(64) .cueue_02b {
  animation-name: cueue_02-b-64;
}

@keyframes cueue_02-a-65 {
  100% {
    height: 385px;
  }
}

@keyframes cueue_02-b-65 {
  100% {
    transform: translateY(-70px);
  }
}

.anime_part:nth-of-type(65) .cueue_02 {
  animation-name: cueue_02-a-65;
}

.anime_part:nth-of-type(65) .cueue_02b {
  animation-name: cueue_02-b-65;
}

@keyframes cueue_02-a-66 {
  100% {
    height: 175px;
  }
}

@keyframes cueue_02-b-66 {
  100% {
    transform: translateY(0px);
  }
}

.anime_part:nth-of-type(66) .cueue_02 {
  animation-name: cueue_02-a-66;
}

.anime_part:nth-of-type(66) .cueue_02b {
  animation-name: cueue_02-b-66;
}

@keyframes cueue_02-a-67 {
  100% {
    height: 385px;
  }
}

@keyframes cueue_02-b-67 {
  100% {
    transform: translateY(70px);
  }
}

.anime_part:nth-of-type(67) .cueue_02 {
  animation-name: cueue_02-a-67;
}

.anime_part:nth-of-type(67) .cueue_02b {
  animation-name: cueue_02-b-67;
}

@keyframes cueue_02-a-68 {
  100% {
    height: 595px;
  }
}

@keyframes cueue_02-b-68 {
  100% {
    transform: translateY(140px);
  }
}

.anime_part:nth-of-type(68) .cueue_02 {
  animation-name: cueue_02-a-68;
}

.anime_part:nth-of-type(68) .cueue_02b {
  animation-name: cueue_02-b-68;
}

@keyframes cueue_02-a-69 {
  100% {
    height: 385px;
  }
}

@keyframes cueue_02-b-69 {
  100% {
    transform: translateY(210px);
  }
}

.anime_part:nth-of-type(69) .cueue_02 {
  animation-name: cueue_02-a-69;
}

.anime_part:nth-of-type(69) .cueue_02b {
  animation-name: cueue_02-b-69;
}

@keyframes cueue_02-a-70 {
  100% {
    height: 245px;
  }
}

@keyframes cueue_02-b-70 {
  100% {
    transform: translateY(-70px);
  }
}

.anime_part:nth-of-type(70) .cueue_02 {
  animation-name: cueue_02-a-70;
}

.anime_part:nth-of-type(70) .cueue_02b {
  animation-name: cueue_02-b-70;
}

@keyframes cueue_02-a-71 {
  100% {
    height: 455px;
  }
}

@keyframes cueue_02-b-71 {
  100% {
    transform: translateY(0px);
  }
}

.anime_part:nth-of-type(71) .cueue_02 {
  animation-name: cueue_02-a-71;
}

.anime_part:nth-of-type(71) .cueue_02b {
  animation-name: cueue_02-b-71;
}

@keyframes cueue_02-a-72 {
  100% {
    height: 245px;
  }
}

@keyframes cueue_02-b-72 {
  100% {
    transform: translateY(70px);
  }
}

.anime_part:nth-of-type(72) .cueue_02 {
  animation-name: cueue_02-a-72;
}

.anime_part:nth-of-type(72) .cueue_02b {
  animation-name: cueue_02-b-72;
}

@keyframes cueue_02-a-73 {
  100% {
    height: 455px;
  }
}

@keyframes cueue_02-b-73 {
  100% {
    transform: translateY(140px);
  }
}

.anime_part:nth-of-type(73) .cueue_02 {
  animation-name: cueue_02-a-73;
}

.anime_part:nth-of-type(73) .cueue_02b {
  animation-name: cueue_02-b-73;
}

@keyframes cueue_02-a-74 {
  100% {
    height: 665px;
  }
}

@keyframes cueue_02-b-74 {
  100% {
    transform: translateY(210px);
  }
}

.anime_part:nth-of-type(74) .cueue_02 {
  animation-name: cueue_02-a-74;
}

.anime_part:nth-of-type(74) .cueue_02b {
  animation-name: cueue_02-b-74;
}

@keyframes cueue_02-a-75 {
  100% {
    height: 105px;
  }
}

@keyframes cueue_02-b-75 {
  100% {
    transform: translateY(-70px);
  }
}

.anime_part:nth-of-type(75) .cueue_02 {
  animation-name: cueue_02-a-75;
}

.anime_part:nth-of-type(75) .cueue_02b {
  animation-name: cueue_02-b-75;
}

@keyframes cueue_02-a-76 {
  100% {
    height: 315px;
  }
}

@keyframes cueue_02-b-76 {
  100% {
    transform: translateY(0px);
  }
}

.anime_part:nth-of-type(76) .cueue_02 {
  animation-name: cueue_02-a-76;
}

.anime_part:nth-of-type(76) .cueue_02b {
  animation-name: cueue_02-b-76;
}

@keyframes cueue_02-a-77 {
  100% {
    height: 525px;
  }
}

@keyframes cueue_02-b-77 {
  100% {
    transform: translateY(70px);
  }
}

.anime_part:nth-of-type(77) .cueue_02 {
  animation-name: cueue_02-a-77;
}

.anime_part:nth-of-type(77) .cueue_02b {
  animation-name: cueue_02-b-77;
}

@keyframes cueue_02-a-78 {
  100% {
    height: 315px;
  }
}

@keyframes cueue_02-b-78 {
  100% {
    transform: translateY(140px);
  }
}

.anime_part:nth-of-type(78) .cueue_02 {
  animation-name: cueue_02-a-78;
}

.anime_part:nth-of-type(78) .cueue_02b {
  animation-name: cueue_02-b-78;
}

@keyframes cueue_02-a-79 {
  100% {
    height: 525px;
  }
}

@keyframes cueue_02-b-79 {
  100% {
    transform: translateY(210px);
  }
}

.anime_part:nth-of-type(79) .cueue_02 {
  animation-name: cueue_02-a-79;
}

.anime_part:nth-of-type(79) .cueue_02b {
  animation-name: cueue_02-b-79;
}

@keyframes cueue_02-a-80 {
  100% {
    height: 385px;
  }
}

@keyframes cueue_02-b-80 {
  100% {
    transform: translateY(-70px);
  }
}

.anime_part:nth-of-type(80) .cueue_02 {
  animation-name: cueue_02-a-80;
}

.anime_part:nth-of-type(80) .cueue_02b {
  animation-name: cueue_02-b-80;
}

@keyframes cueue_02-a-81 {
  100% {
    height: 175px;
  }
}

@keyframes cueue_02-b-81 {
  100% {
    transform: translateY(0px);
  }
}

.anime_part:nth-of-type(81) .cueue_02 {
  animation-name: cueue_02-a-81;
}

.anime_part:nth-of-type(81) .cueue_02b {
  animation-name: cueue_02-b-81;
}

@keyframes cueue_03 {
  40% {
    top: -100%;
    transform: scale(0.8) rotateX(1deg) translateY(-4%);
  }
  100% {
    top: -60%;
    transform: scale(0.3) rotateX(3deg) translateY(-6%);
  }
}

.cueue_03 {
  animation-name: cueue_03;
  animation-duration: 0.4s;
  animation-timing-function: linear;
  animation-delay: 2.05s;
  animation-fill-mode: forwards;
}

@keyframes palse {
  0% {
    transform: scale(1, 1);
  }
  70% {
    transform: scale(1, 0.8);
  }
  90% {
    transform: scale(1, 1.4);
  }
  100% {
    transform: scale(1, 1);
  }
}

.cueue_04 {
  animation-name: palse;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-fill-mode: backwards;
}

.anime_part:nth-of-type(0) .cueue_04 {
  animation-delay: 2.245s;
}

.anime_part:nth-of-type(1) .cueue_04 {
  animation-delay: 2.321s;
}

.anime_part:nth-of-type(2) .cueue_04 {
  animation-delay: 2.255s;
}

.anime_part:nth-of-type(3) .cueue_04 {
  animation-delay: 2.539s;
}

.anime_part:nth-of-type(4) .cueue_04 {
  animation-delay: 2.253s;
}

.anime_part:nth-of-type(5) .cueue_04 {
  animation-delay: 2.265s;
}

.anime_part:nth-of-type(6) .cueue_04 {
  animation-delay: 2.299s;
}

.anime_part:nth-of-type(7) .cueue_04 {
  animation-delay: 2.357s;
}

.anime_part:nth-of-type(8) .cueue_04 {
  animation-delay: 2.597s;
}

.anime_part:nth-of-type(9) .cueue_04 {
  animation-delay: 2.398s;
}

.anime_part:nth-of-type(10) .cueue_04 {
  animation-delay: 2.335s;
}

.anime_part:nth-of-type(11) .cueue_04 {
  animation-delay: 3.213s;
}

.anime_part:nth-of-type(12) .cueue_04 {
  animation-delay: 2.473s;
}

.anime_part:nth-of-type(13) .cueue_04 {
  animation-delay: 3.194s;
}

.anime_part:nth-of-type(14) .cueue_04 {
  animation-delay: 3.589s;
}

.anime_part:nth-of-type(15) .cueue_04 {
  animation-delay: 2.275s;
}

.anime_part:nth-of-type(16) .cueue_04 {
  animation-delay: 3.429s;
}

.anime_part:nth-of-type(17) .cueue_04 {
  animation-delay: 3.01s;
}

.anime_part:nth-of-type(18) .cueue_04 {
  animation-delay: 2.821s;
}

.anime_part:nth-of-type(19) .cueue_04 {
  animation-delay: 2.758s;
}

.anime_part:nth-of-type(20) .cueue_04 {
  animation-delay: 3.285s;
}

.anime_part:nth-of-type(21) .cueue_04 {
  animation-delay: 3.715s;
}

.anime_part:nth-of-type(22) .cueue_04 {
  animation-delay: 4.401s;
}

.anime_part:nth-of-type(23) .cueue_04 {
  animation-delay: 3.487s;
}

.anime_part:nth-of-type(24) .cueue_04 {
  animation-delay: 2.893s;
}

.anime_part:nth-of-type(25) .cueue_04 {
  animation-delay: 2.97s;
}

.anime_part:nth-of-type(26) .cueue_04 {
  animation-delay: 2.895s;
}

.anime_part:nth-of-type(27) .cueue_04 {
  animation-delay: 3.001s;
}

.anime_part:nth-of-type(28) .cueue_04 {
  animation-delay: 2.357s;
}

.anime_part:nth-of-type(29) .cueue_04 {
  animation-delay: 2.709s;
}

.anime_part:nth-of-type(30) .cueue_04 {
  animation-delay: 4.945s;
}

.anime_part:nth-of-type(31) .cueue_04 {
  animation-delay: 4.198s;
}

.anime_part:nth-of-type(32) .cueue_04 {
  animation-delay: 2.693s;
}

.anime_part:nth-of-type(33) .cueue_04 {
  animation-delay: 3.664s;
}

.anime_part:nth-of-type(34) .cueue_04 {
  animation-delay: 5.305s;
}

.anime_part:nth-of-type(35) .cueue_04 {
  animation-delay: 5.29s;
}

.anime_part:nth-of-type(36) .cueue_04 {
  animation-delay: 3.937s;
}

.anime_part:nth-of-type(37) .cueue_04 {
  animation-delay: 3.133s;
}

.anime_part:nth-of-type(38) .cueue_04 {
  animation-delay: 3.005s;
}

.anime_part:nth-of-type(39) .cueue_04 {
  animation-delay: 3.181s;
}

.anime_part:nth-of-type(40) .cueue_04 {
  animation-delay: 5.405s;
}

.anime_part:nth-of-type(41) .cueue_04 {
  animation-delay: 3.926s;
}

.anime_part:nth-of-type(42) .cueue_04 {
  animation-delay: 2.413s;
}

.anime_part:nth-of-type(43) .cueue_04 {
  animation-delay: 5.685s;
}

.anime_part:nth-of-type(44) .cueue_04 {
  animation-delay: 2.861s;
}

.anime_part:nth-of-type(45) .cueue_04 {
  animation-delay: 4.135s;
}

.anime_part:nth-of-type(46) .cueue_04 {
  animation-delay: 6.109s;
}

.anime_part:nth-of-type(47) .cueue_04 {
  animation-delay: 2.433s;
}

.anime_part:nth-of-type(48) .cueue_04 {
  animation-delay: 5.893s;
}

.anime_part:nth-of-type(49) .cueue_04 {
  animation-delay: 3.96s;
}

.anime_part:nth-of-type(50) .cueue_04 {
  animation-delay: 4.045s;
}

.anime_part:nth-of-type(51) .cueue_04 {
  animation-delay: 4.285s;
}

.anime_part:nth-of-type(52) .cueue_04 {
  animation-delay: 5.989s;
}

.anime_part:nth-of-type(53) .cueue_04 {
  animation-delay: 5.478s;
}

.anime_part:nth-of-type(54) .cueue_04 {
  animation-delay: 6.241s;
}

.anime_part:nth-of-type(55) .cueue_04 {
  animation-delay: 5.71s;
}

.anime_part:nth-of-type(56) .cueue_04 {
  animation-delay: 2.917s;
}

.anime_part:nth-of-type(57) .cueue_04 {
  animation-delay: 6.748s;
}

.anime_part:nth-of-type(58) .cueue_04 {
  animation-delay: 6.943s;
}

.anime_part:nth-of-type(59) .cueue_04 {
  animation-delay: 6.906s;
}

.anime_part:nth-of-type(60) .cueue_04 {
  animation-delay: 4.585s;
}

.anime_part:nth-of-type(61) .cueue_04 {
  animation-delay: 2.977s;
}

.anime_part:nth-of-type(62) .cueue_04 {
  animation-delay: 2.865s;
}

.anime_part:nth-of-type(63) .cueue_04 {
  animation-delay: 2.812s;
}

.anime_part:nth-of-type(64) .cueue_04 {
  animation-delay: 5.829s;
}

.anime_part:nth-of-type(65) .cueue_04 {
  animation-delay: 8.42s;
}

.anime_part:nth-of-type(66) .cueue_04 {
  animation-delay: 3.433s;
}

.anime_part:nth-of-type(67) .cueue_04 {
  animation-delay: 5.528s;
}

.anime_part:nth-of-type(68) .cueue_04 {
  animation-delay: 6.393s;
}

.anime_part:nth-of-type(69) .cueue_04 {
  animation-delay: 5.005s;
}

.anime_part:nth-of-type(70) .cueue_04 {
  animation-delay: 6.725s;
}

.anime_part:nth-of-type(71) .cueue_04 {
  animation-delay: 4.801s;
}

.anime_part:nth-of-type(72) .cueue_04 {
  animation-delay: 6.205s;
}

.anime_part:nth-of-type(73) .cueue_04 {
  animation-delay: 4.8s;
}

.anime_part:nth-of-type(74) .cueue_04 {
  animation-delay: 3.059s;
}

.anime_part:nth-of-type(75) .cueue_04 {
  animation-delay: 9.22s;
}

.anime_part:nth-of-type(76) .cueue_04 {
  animation-delay: 7.565s;
}

.anime_part:nth-of-type(77) .cueue_04 {
  animation-delay: 9.252s;
}

.anime_part:nth-of-type(78) .cueue_04 {
  animation-delay: 8.173s;
}

.anime_part:nth-of-type(79) .cueue_04 {
  animation-delay: 7.696s;
}

.anime_part:nth-of-type(80) .cueue_04 {
  animation-delay: 4.085s;
}

.anime_part:nth-of-type(81) .cueue_04 {
  animation-delay: 5.323s;
}

.subpage {
  padding-top: 140px;
}

.subpage .header h1 {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 1.2em;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .subpage .header h1 {
    font-size: 7vw;
  }
}

.subpage .header h1::after {
  display: block;
  width: 2em;
  height: 4px;
  content: "";
  background: linear-gradient(123.97deg, var(--gradation-color1) 0%, var(--gradation-color2) 25%, var(--gradation-color3) 55%, var(--gradation-color4) 85%);;
}

@media screen and (max-width: 768px) {
  .subpage .header h1::after {
    width: 1.75em;
    width: 1.5em;
    height: 1.5vw;
    height: 4px;
  }
}

.subpage .header span {
  display: block;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .subpage .header span {
    font-size: 4.3vw;
  }
}

.subpage .main {
  max-width: 1024px;
  margin: auto;
}

.subpage .main h2 {
  position: relative;
  margin-bottom: 2em;
  font-size: 20px;
  line-height: 1.9;
  color: var(--main-color);
  border-bottom: 1px solid #e6e6e6;
}

@media screen and (max-width: 768px) {
  .subpage .main h2 {
    padding-bottom: 0.5em;
    font-size: 4.8vw;
  }
}

.subpage .main h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 3.5em;
  height: 1px;
  content: "";
  background-color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .subpage .main h2::after {
    width: 2.5em;
  }
}

.subpage .main .content {
  margin-top: 40px;
  padding: 0 24px;
  border: 1px solid #e6e6e6;
  border-right: 0;
  border-left: 0;
}

@media screen and (max-width: 768px) {
  .subpage .main .content {
    padding-right: 0;
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .subpage .main .content ul {
    padding-left: 1.5em;
  }
}

.subpage .main .content ul.list-style-none {
  padding-left: 1.75em;
}

.subpage .main .inner > .content:first-of-type {
  border-top: 0;
}

.subpage .main .inner > .content:not(:last-of-type) {
  border-bottom: 0;
}

.subpage .main .inner section .content {
  border: 0;
}

@media screen and (max-width: 768px) {
  .subpage .main .inner section .content {
    width: 80vw;
    margin-right: auto;
    margin-left: auto;
  }
}

.subpage .main .inner section .content p {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .subpage .main .inner section .content p + h4 {
    margin-top: 2em;
  }
}

.subpage .main h3 {
  margin: 40px 0;
  font-size: 20px;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 768px) {
  .subpage .main h3 {
    font-size: 4.6vw;
  }
}

.subpage .main h4 {
  margin: 0.5em 0;
  font-size: inherit;
  font-size: 16px;
  font-weight: bold;
}

.subpage .main h4:first-child {
  margin-top: 0;
}

.subpage .main p {
  margin: 40px 0;
  line-height: 2.1;
  text-align: justify;
  letter-spacing: 0.12em;
}

@media screen and (max-width: 768px) {
  .subpage .main p {
    font-size: 4.3vw;
  }
}
/* text-align: right to left; by yaza */
.subpage .main .right {
  text-align: Left;
}

.subpage .main dl {
  display: flex;
  line-height: 2.2;
}

@media screen and (max-width: 768px) {
  .subpage .main dl {
    flex-direction: column;
    font-size: 4vw;
    line-height: 1.9;
  }
}

.subpage .main dl dt {
  width: 15%;
}

@media screen and (max-width: 768px) {
  .subpage .main dl dt {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .subpage .main dl dd {
    width: 100%;
    padding-left: 5%;
  }
}

.subpage .main dl dd ul {
  padding-left: 1.5em;
}

.subpage .main dl dd p + ul {
  margin-top: -40px;
}

.subpage .main table {
  width: 100%;
  margin-bottom: 2em;
  table-layout: fixed;
  line-height: 2.1;
}

@media screen and (max-width: 768px) {
  .subpage .main table {
    font-size: 3.6vw;
  }
}

.subpage .main table th,
.subpage .main table td {
  padding: 1.5em 2em;
  border: 1px solid #e6e6e6;
}

@media screen and (max-width: 768px) {
  .subpage .main table th,
  .subpage .main table td {
    padding: 1.5em 0.75em;
  }
}

.subpage .main table th:first-child,
.subpage .main table td:first-child {
  border-left: 0;
}

.subpage .main table th:last-child,
.subpage .main table td:last-child {
  border-right: 0;
}

.subpage .main table th {
  position: relative;
}

@media screen and (max-width: 768px) {
  .subpage .main table th:first-of-type {
    padding-left: 0.5em;
  }
  .subpage .main table th:first-of-type::before {
    right: auto;
    width: calc(100% - 8px);
  }
  .subpage .main table th:last-of-type {
    padding-right: 0.5em;
  }
  .subpage .main table th:last-of-type::before {
    left: auto;
    width: calc(100% - 8px);
  }
}

.subpage .main table th::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  margin: auto;
  content: "";
  background-color: #e6e6e6;
}

.subpage .main table td {
  text-align: justify;
}

.subpage .main .table_type02 {
  table-layout: auto;
}

@media screen and (max-width: 768px) {
  .subpage .main .table_type02 {
    display: block;
  }
}

.subpage .main .table_type02 th {
  width: 30%;
}

.subpage .main .table_type02 th::before {
  right: auto;
  width: calc(100% - 8px);
}

@media screen and (max-width: 768px) {
  .subpage .main .table_type02 th::before {
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
  }
}

@media screen and (max-width: 768px) {
  .subpage .main .table_type02 th,
  .subpage .main .table_type02 td {
    display: block;
    width: 100%;
    border: 0;
  }
}

.subpage .main .table_type02 tr {
  border-top: 1px solid #e6e6e6;
}

.subpage .main .table_type02 tr:last-of-type {
  border-bottom: 1px solid #e6e6e6;
}

.subpage .main ol {
  padding-left: 1.5em;
}

.subpage .main a {
  display: block;
}

@media screen and (max-width: 768px) {
  .subpage .main a + h4 {
    margin-top: 2em;
  }
}

.access_nav {
  position: relative;
  /* position: sticky;
  z-index: 100; 
  top: 120px; */
  top: 0;
  width: 100vw;
  /* margin-top: 100px; 
  margin-bottom: -80px;*/
  background-color: #f4f4f4;
  box-shadow: 0 6px 3px rgba(0, 0, 0, 0.075), 0 2px 2px rgba(0, 0, 0, 0.05);
}

.access_nav .inner {
  position: relative;
  top: -6px;
}

@media screen and (max-width: 768px) {
  .access_nav {
    top: 13vw;
    width: 100%;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .access_nav .inner {
    width: 100%;
  }
}

.access_nav ul {
  display: flex;
}

.access_nav li {
  flex: 1;
  text-align: center;
  border-right: 1px solid #ddd;
}

.access_nav li:first-child {
  border-left: 1px solid #ddd;
}

.access_nav li a {
  position: relative;
  display: flex !important;
  align-items: center;
  flex-direction: column;
  padding: 1.5em 0 0.75em;
  transition: 0.3s;
  text-decoration: none;
  color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .access_nav li a {
    font-size: 3vw;
  }
}

.access_nav li a::after {
  display: block;
  width: 0;
  height: 0;
  margin-top: 0.5em;
  content: "";
  border: 6px solid;
  border-right: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid transparent;
}

.access_nav li a:hover {
  opacity: 0.4;
  background-color: #fff;
}

.access_nav li a .map_button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5em 0 0 !important;
}

.access_nav li a .map_button::after {
  transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .access_nav li a .map_button::after {
    border-width: 1px;
  }
}

.access_bg {
  margin-bottom: -160px;
  padding-bottom: 160px;
  background-color: #f4f4f4;
}

.access .main .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.access .main .content {
  width: 48%;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .access .main .content {
    width: 100%;
    padding: 0 6%;
  }
}

.access .main .access_tokyo {
  display: flex;
  width: 100%;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .access .main .access_tokyo {
    flex-direction: column;
  }
}

.access .main .access_tokyo > * {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .access .main .access_tokyo > * {
    width: 100%;
  }
}

.access .main .inner_left {
  padding: 0 24px;
}

.nowrap {
  white-space: nowrap !important;
}

@media screen and (max-width: 768px) {
  .nowrap {
    white-space: normal !important;
  }
}

.access .main .inner_right {
  display: flex;
  align-items: flex-end;
}

.access .main .inner_right .map_link {
  margin: 0;
}

.access .main .access_develop {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding: 0 24px 40px;
}

@media screen and (max-width: 768px) {
  .access .main .access_develop {
    flex-direction: column;
  }
}

.access .main .access_develop > * {
  width: 48%;
}

@media screen and (max-width: 768px) {
  .access .main .access_develop > * {
    width: 100%;
  }
}

.access .main .access_develop .inner_full {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .access .main .access_develop .inner_left {
    padding: 0;
  }
}

.access .main .access_develop h3 {
  width: 100%;
}

.access .main .content {
  border: 0 !important;
}

.access .main h2 {
  width: 100%;
  margin-top: -240px;
  padding-top: 240px;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .access .main h2 {
    margin-top: -40vw;
    padding-top: 40vw;
  }
}

.access .main h3 {
  margin-bottom: -1.5em;
}

.access .main p {
  margin-bottom: 0.5em;
}

@media screen and (max-width: 768px) {
  .access .main p a {
    display: inline;
    color: #00b8ee;
  }
}

.access a.map_link {
  position: relative;
  display: inline-block;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 40px;
  padding: 1em 2em 1em 3em;
  line-height: 1;
  text-decoration: none;
  color: inherit;
  border: 1px solid;
}

.access a.map_link::before {
  position: absolute;
  top: 4px;
  bottom: 0;
  left: 1.75em;
  display: block;
  width: 11px;
  height: 17px;
  margin: auto;
  content: "";
  background-image: url(../images/jp/access/map.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.access a.map_link:hover {
  color: #fff;
  background-color: #333;
}

.access a.map_link:hover::before {
  background-image: url(../images/jp/access/map_hover.svg);
}

a.map_link::after {
  content: none;
}

.access a.map_link p {
  margin-top: 0;
  margin-bottom: 0;
}

.access p.map_button {
  position: relative;
  overflow: hidden;
  width: 1em;
  height: 1em;
  margin-left: 1em !important;
  white-space: nowrap;
  /*  文字飛ばし  */
  text-indent: 100%;
  /*  ボタン  */
  border: 1px solid;
  border-radius: 100px;
  background-color: #00b8ee;
}

.access .map_button::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -0.1em;
  display: block;
  width: 0.4em;
  height: 0.4em;
  margin: auto;
  content: "";
  transform: rotate(-45deg);
  color: #fff;
  border: 2px solid;
  border-top: 0;
  border-left: 0;
}

.access .map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.access .inner .content section.content_small {
  padding-top: 40px;
}

.ismsList_image {
  max-width: 150px;
  margin-top: 40px;
}

.faq_nav {
  position: sticky;
  z-index: 100;
  top: 120px;
  width: 100vw;
  margin-top: 40px;
  margin-bottom: -80px;
  background-color: var(--background-color-light);
  box-shadow: 0 6px 3px rgba(0, 0, 0, 0.075), 0 2px 2px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 768px) {
  .faq_nav {
    top: 13vw;
    width: 100%;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .faq_nav .inner {
    width: 100%;
  }
}

.faq_nav ul {
  display: flex;
}

.faq_nav li {
  position: relative;
  flex: 1;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .faq_nav li {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.faq_nav li.active::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  content: "";
  background-color: var(--main-color);
}

.faq_nav li.active a {
  font-weight: bold;
  color: var(--main-color);
}

.faq_nav li a {
  position: relative;
  display: flex !important;
  align-items: center;
  flex-direction: column;
  padding: 1.5em 0;
  transition: 0.3s;
  text-decoration: none;
  color: #333;
}

@media screen and (max-width: 768px) {
  .faq_nav li a {
    font-size: 3vw;
  }
}

.faq_nav li a:hover {
  opacity: 0.4;
  background-color: #fff;
}

.faq_nav li a .map_button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5em 0 0 !important;
}

.faq_nav li a .map_button::after {
  transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .faq_nav li a .map_button::after {
    border-width: 1px;
  }
}

.faq_bg {
  margin-top: 80px;
  padding: 60px 0 160px;
  background-color: #f0f8f8;
}

@media screen and (max-width: 768px) {
  .faq_bg {
    margin-top: 0;
  }
}

.faq_bg + .breadcrumb {
  margin-top: 0;
}

.faq_group {
  overflow: hidden;
  height: 0;
}

.faq_group .faq_list {
  transition: opacity 0.6s;
  opacity: 0;
}

.faq_group.active {
  height: auto;
}

.faq_group.active .faq_list {
  opacity: 1;
}

.faq_list {
  width: 92%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  counter-increment: faq;
}

.faq_list + .faq_list {
  margin-top: 20px;
}

.faq_q {
  position: relative;
  padding: 1.25em 0;
  padding-left: 140px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .faq_q {
    padding-right: 3em;
    padding-left: 1em;
    font-size: 5vw;
  }
}

.faq_q:hover {
  opacity: 0.5;
}

@media screen and (max-width: 768px) {
  .faq_q:hover {
    opacity: 1;
  }
}

.faq_q::before {
  position: absolute;
  left: 70px;
  content: "Q." counter(faq);
  counter-increment: hoge;
  transform: translateX(-50%);
  color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .faq_q::before {
    position: static;
    display: block;
    transform: none;
  }
}

.faq_q::after {
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  display: block;
  width: 1em;
  height: 1em;
  margin: auto;
  font-size: 40px;
  content: "";
  background-image: url(../images/jp/faq/faq_arrow_on.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .faq_q::after {
    right: 0.5em;
    font-size: 1.4em;
  }
}

.active > .faq_q::after {
  background-image: url(../images/jp/faq/faq_arrow_off.svg);
}

.faq_a {
  overflow: hidden;
  height: 0;
  line-height: 2.2;
  transition: opacity 0.6s;
  text-align: justify;
  word-break: break-all;
  opacity: 0;
}

.active > .faq_a {
  height: auto;
  margin: 1em 1em 3em 140px;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .active > .faq_a {
    margin-left: 1em;
  }
}

.information_nav {
  top: 120px;
}

@media screen and (max-width: 768px) {
  .information_nav {
    top: 13vw;
  }
}

.information_bg .information_news {
  margin: 80px 0;
  padding: 40px;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .information_bg .information_news {
    margin: 10vw 0;
    padding: 5vw 0;
  }
}

.information_bg .information_news .news_inner {
  overflow-y: scroll;
  height: 200px;
}

@media screen and (max-width: 768px) {
  .information_bg .information_news .news_inner {
    height: 60vw;
  }
}

.information_bg .information_news dl {
  align-items: flex-start;
}

.information_bg .information_news dl:last-of-type {
  margin-bottom: 0;
}

.information_bg .information_news dt {
  margin: 0 2em;
}

@media screen and (max-width: 768px) {
  .information_bg .information_news dt {
    margin: 0.5em 0 0;
  }
}

.information_bg .information_news .label {
  width: 150px;
  min-width: 150px;
  text-align: center;
  color: var(--main-color);
  background-color: var(--background-color-light);
}

.information_bg .information_link {
  justify-content: flex-start;
  width: 102%;
}

@media screen and (max-width: 768px) {
  .information_bg .information_link {
    justify-content: space-between;
    width: 100%;
    margin-left: 0;
  }
}

.information_bg .information_link a {
  justify-content: space-between;
  width: 23%;
  margin: 0;
  margin-right: 2%;
  margin-bottom: 30px;
  transition: 0.3s;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .information_bg .information_link a {
    width: 48%;
    margin-right: 0;
  }
}

.information_bg .information_link_text {
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .information_bg .information_link_text {
    padding: 4vw;
  }
}

.information_bg .information_link .label {
  display: inline-block;
  width: auto;
  margin-bottom: 0.75em;
  padding: 0 1em;
  color: var(--main-color);
  border-radius: 10em;
  background-color: var(--background-color-light);
}

.information_bg .information_link time {
  margin-bottom: 0.75em;
}

.information_bg .information_link.news a {
  display: none !important;
}

.information_bg .information_link.news a.information_cat-news {
  display: flex !important;
}

.information_bg .information_link.release a {
  display: none !important;
}

.information_bg .information_link.release a.information_cat-release {
  display: flex !important;
}

.information_bg .information_link.event a {
  display: none !important;
}

.information_bg .information_link.event a.information_cat-event {
  display: flex !important;
}

.information_bg .information_link.ir a {
  display: none !important;
}

.information_bg .information_link.ir a.information_cat-ir {
  display: flex !important;
}

.information_bg .information_link.all a {
  display: flex !important;
}

.information_detail .header {
  width: 90%;
  max-width: 1024px;
  margin-right: auto;
  margin-bottom: 120px;
  margin-left: auto;
}

.information_detail .header a {
  position: relative;
  display: flex;
  align-items: center;
  transition: 0.3s;
  text-decoration: none;
  text-transform: uppercase;
  color: #333;
}

.information_detail .header a:hover {
  opacity: 0.5;
}

.information_detail .header a::before {
  display: block;
  width: 3em;
  height: 10px;
  margin-right: 0.5em;
  margin-left: 0;
  content: "";
  background-image: url(../images/jp/information/InformationDetail/prev_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.information_detail_main {
  width: 90%;
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  display: block;
}

.information_detail_time {
  letter-spacing: 0.15em;
}

.information_detail_copy {
  margin: 1.5em 0 4em;
  font-size: 20px;
  font-weight: bold;
  line-height: 2.2;
  color: var(--main-color);
}

.information_detail_title {
  margin-bottom: 1em;
  font-size: 16px;
}

.information_detail_text {
  margin-bottom: 4em;
  line-height: 2;
  text-align: justify;
  letter-spacing: 0.125em;
}

.information_detail_text a {
  transition: 0.3s;
  color: #00b8ee;
}

.information_detail_text a:hover {
  opacity: 0.6;
}

.information_detail_title2 {
  margin-bottom: 3em;
  padding-bottom: 0.5em;
  font-size: 14px;
  letter-spacing: 0.15em;
  border-bottom: 1px solid #e6e6e6;
}

.information_detail_about dl {
  display: flex;
  padding-bottom: 0.75em;
  font-size: 14px;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 768px) {
  .information_detail_about dl {
    flex-direction: column;
  }
}

.information_detail_about dt {
  min-width: 15%;
  font-weight: bold;
  color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .information_detail_about dt {
    width: 100%;
  }
}

.information_detail_about dd {
  width: 85%;
}

@media screen and (max-width: 768px) {
  .information_detail_about dd {
    width: 100%;
  }
}

.information_detail_site {
  margin-top: 2em;
  font-size: 14px;
  line-height: 2.4;
}

.information_detail_site strong {
  font-weight: bold;
  color: var(--main-color);
}

.information_detail_site a {
  transition: 0.3s;
  color: #00b8ee;
}

@media screen and (max-width: 768px) {
  .information_detail_site a {
    display: block;
  }
}

.information_detail_site a:hover {
  opacity: 0.6;
}

.information_detail_press {
  max-width: 488px;
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
  padding: 7% 0;
  font-size: 14px;
  line-height: 2;
  text-align: center;
  border: 2px solid var(--main-color);
}

.information_detail_press strong {
  display: block;
  margin-bottom: 1em;
  font-size: 16px;
  font-weight: bold;
  color: var(--main-color);
}

.information_detail_press a {
  display: block;
  transition: 0.3s;
  color: #00b8ee;
}

.information_detail_press a:hover {
  opacity: 0.6;
}

.information_detail_button .more_button {
  padding-top: 0.45em;
  padding-bottom: 0.45em;
}

@media screen and (max-width: 768px) {
  .information_detail_button .more_button {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .information_detail_button.thx_form .more_button {
    width: 70%;
  }
}

@media screen and (max-width: 768px) {
  .information_detail_button span {
    font-size: 0.3em;
  }
}

.information_detail_button span::before {
  position: static;
  width: 4em;
  height: 10px;
  margin-right: 2em;
  transform: none;
  background-color: transparent;
  background-image: url(../images/jp/information/InformationDetail/prev_arrow-white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .information_detail_button span::before {
    width: 3em;
    margin-right: 1em;
  }
}

.information_detail_button span::after {
  content: none;
}

.breadcrumb {
  margin-top: 160px;
}

.header_btn_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .header_btn_sp {
    display: block;
  }
  .header_btn_sp ._priority {
    position: relative;
    position: fixed;
    top: 3vw;
    left: 52%;
    display: inline-block;
    margin: 0;
    padding: .25em 1.75em;
    font-family: "Montserrat", sans-serif;
    font-size: 3.75vw;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff;
    background-color: var(--main-color);
  }
}
@media screen and (min-width: 769px) and (max-width: 1040px) {
  .header_logo {
    top: 0 !important;
  }
}

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

.header_nav {
  position: fixed;
  z-index: 999;
  top: 0;
  overflow: hidden;
  width: 100%;
  transition: 0.6s;
}
@media screen and (min-width: 560px) and (max-width: 768px) {
  .header_nav {
    display: flex;
    align-items: center;
    height: 14vw;
  }
}

.header_nav.fixed {
  background-color: #fff;
}

.header_nav .inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: none;
}

@media screen and (min-width: 769px) {
  .header_nav_pc {
    margin: 1.75em 2.5vw 1.75em 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .header_nav_pc {
    display: none;
  }
}
.header_nav_pc > ul {
  display: flex;
  align-items: center;
  font-size: 16px;
}
.header_nav_pc > ul > li {
  color: var(--text-color);
  font-size: 16px;
  margin: 0 2.5vw 0 0;
}
.header_nav_pc > ul > li:last-of-type {
  margin-right: 0;
}
.header_nav_pc > ul > li > a, .header_nav_pc > ul > li > p {
  position: relative;
  display: inline-block;
  padding: .25em .5em;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  transition: 0.3s;
  text-decoration: none;
  text-transform: uppercase;
  color: inherit;
}

.header_nav_pc > ul > li > a::before, .header_nav_pc > ul > li > p::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: auto;
  content: attr(data-inverted);
  transition: 0.3s;
  text-align: center;
  opacity: 0;
  background: linear-gradient(115.35deg, var(--gradation-color1) 0%, var(--gradation-color2) 25%, var(--gradation-color3) 50%, var(--gradation-color4) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header_nav_pc > ul > li > a::after, .header_nav_pc > ul > li > p::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 0%;
  height: 2px;
  content: '';
  transition: 0.3s;
  background: linear-gradient(115.35deg, var(--gradation-color1) 0%, var(--gradation-color2) 25%, var(--gradation-color3) 50%, var(--gradation-color4) 90%);
}

.header_nav_pc > ul > li > a:hover, .header_nav_pc > ul > li > p:hover {
  color: transparent;
  cursor: pointer;
}

.header_nav_pc > ul > li > a:hover::before, .header_nav_pc > ul > li > p:hover::before {
  opacity: 1;
}
.header_nav_pc > ul > li > a:hover::after, .header_nav_pc > ul > li > p:hover::after {
  width: 100%;
}
.header_nav_pc > ul > li nav.nav-inner {
  height: 0;
  opacity: 0;
  transition: visiblity 0.8s, opacity 0.8s;
  visibility: hidden;
  width: 0;
}
.header_nav_pc > ul > li.selected > a, .header_nav_pc > ul > li.selected > p {
  color: transparent;
}
.header_nav_pc > ul > li.selected > a::before, .header_nav_pc > ul > li.selected > p::before {
  opacity: 1;
}
.header_nav_pc > ul > li.selected > a::after, .header_nav_pc > ul > li.selected > p::after {
  width: 100%;
}
.header_nav_pc > ul > li.selected .nav-outer {
  padding-top: 27.5px;
  position: absolute;
  right: 0;
  width: 100%;
}
.header_nav_pc > ul > li.selected nav.nav-inner {
  background-color: #dfe9f0;
  height: auto;
  opacity: 1;
  padding: 40px 0;
  visibility: visible;
  width: 100%;
}
.header_nav_pc > ul > li.selected nav.nav-inner > ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 1040px) {
  .header_nav_pc > ul > li.selected nav.nav-inner > ul {
    margin: 0 80px 0 auto;
    width: calc(75% - 80px);
  }
}
@media screen and (min-width: 769px) and (max-width: 1040px) {
  .header_nav_pc > ul > li.selected nav.nav-inner > ul {
    margin: 0 2em 0 auto;
  }
}
.header_nav_pc > ul > li.selected nav.nav-inner > ul.nav-inner_news {
  justify-content: flex-end;
}
.header_nav_pc > ul > li.selected nav.nav-inner > ul.nav-inner_news > li:last-of-type {
  margin-right: 0;
}
.header_nav_pc > ul > li.selected nav.nav-inner > ul.nav-inner_service {
  justify-content: flex-end;
}
@media screen and (min-width: 1040px) {
  .header_nav_pc > ul > li.selected nav.nav-inner > ul.nav-inner_service {
    width: calc(20em + 2% + 12em + 1em + 16em);
  }
}
@media screen and (min-width: 769px) and (max-width: 1040px) {
  .header_nav_pc > ul > li.selected nav.nav-inner > ul.nav-inner_service {
    width: calc(15em + 2% + 12em + 1em + 16em);
  }
}
.header_nav_pc > ul > li.selected nav.nav-inner > ul.nav-inner_service > li {
  margin-right: 2%;
}
.header_nav_pc > ul > li.selected nav.nav-inner > ul.nav-inner_service > li:first-of-type {
  margin-bottom: 0.75em;
  margin-right: 0;
}
.header_nav_pc > ul > li.selected nav.nav-inner > ul.nav-inner_service > li:nth-of-type(3) {
  margin-right: 1em;
}
.header_nav_pc > ul > li.selected nav.nav-inner > ul.nav-inner_service > li:nth-of-type(4) {
  margin-right: 0;
  margin-top: 0;
}
.header_nav_pc > ul > li.selected nav.nav-inner > ul.nav-inner_service > li:not(:first-of-type) a {
  border-bottom: none;
}
@media screen and (min-width: 1040px) {
  .header_nav_pc > ul > li.selected nav.nav-inner > ul.nav-inner_service > li:first-of-type {
    width: calc(20em + 2% + 12em + 1em + 16em);
  }
  .header_nav_pc > ul > li.selected nav.nav-inner > ul.nav-inner_service > li:nth-of-type(2) {
    width: 20em;
  }
}
@media screen and (min-width: 769px) and (max-width: 1040px) {
  .header_nav_pc > ul > li.selected nav.nav-inner > ul.nav-inner_service > li:first-of-type {
    width: calc(15em + 2% + 12em + 1em + 16em);
  }
  .header_nav_pc > ul > li.selected nav.nav-inner > ul.nav-inner_service > li:nth-of-type(2) {
    width: 15em;
  }
}
.header_nav_pc > ul > li.selected nav.nav-inner > ul.nav-inner_service > li:nth-of-type(3) {
  margin-right: 1em;
  width: 12em;
}
.header_nav_pc > ul > li.selected nav.nav-inner > ul.nav-inner_service > li._priority {
  width: 16em;
}
.header_nav_pc > ul > li.selected nav.nav-inner > ul.nav-inner_company {
  justify-content: flex-start;
}
@media screen and (min-width: 1040px) {
  .header_nav_pc > ul > li.selected nav.nav-inner > ul.nav-inner_company {
    max-width: calc(680px + 2em);
  }
  .header_nav_pc > ul > li.selected nav.nav-inner > ul.nav-inner_company > li {
    margin-right: 2%;
    max-width: 226.666666667px;
    width: 32%;
  }
  .header_nav_pc > ul > li.selected nav.nav-inner > ul.nav-inner_company > li:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1040px) {
  .header_nav_pc > ul > li.selected nav.nav-inner > ul.nav-inner_company {
    margin: 0 2em 0 auto;
    max-width: calc(630px + 2em);
  }
  .header_nav_pc > ul > li.selected nav.nav-inner > ul.nav-inner_company > li {
    margin-right: 1em;
    max-width: 210px;
    width: 32%;
  }
  .header_nav_pc > ul > li.selected nav.nav-inner > ul.nav-inner_company > li:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 1040px) {
  .header_nav_pc > ul > li.selected nav.nav-inner > ul:not(.nav-inner_service) > li:nth-of-type(3n) {
    margin-right: 0;
  }
}
.header_nav_pc > ul > li.selected nav.nav-inner > ul > li {
  font-size: 14px;
  margin-right: 4%;
}
@media screen and (min-width: 1040px) {
  .header_nav_pc > ul > li.selected nav.nav-inner > ul > li:nth-last-of-type(-n+3) {
    margin-top: 24px;
  }
  .header_nav_pc > ul > li.selected nav.nav-inner > ul > li:nth-of-type(-n+3) {
    margin-top: 0;
  }
}
.header_nav_pc > ul > li.selected nav.nav-inner > ul > li a {
  border-bottom: 2px solid #ddd;
  color: var(--text-color);
  display: flex;
  align-items: center;
  font-weight: bold;
  padding: 6px 10px 6px 0;
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.header_nav_pc > ul > li.selected nav.nav-inner > ul > li a::after {
  background-color: var(--text-color);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='x,y'><path d='M6.3 6.5L4 4.2L4.7 3.5L7.7 6.5L4.7 9.5L4 8.8L6.3 6.5Z' /></svg>");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  content: "";
  display: inline-block;
  height: 14px;
  margin-left: 0.5em;
  min-width: 10px;
  width: 10px;
}
.header_nav_pc > ul > li.selected nav.nav-inner > ul > li a:hover {
  color: var(--main-color);
}
.header_nav_pc > ul > li.selected nav.nav-inner > ul > li._priority a {
  background-color: var(--main-color);
  border-radius: 6px;
  color: #fff;
  justify-content: center;
  overflow: hidden;
  padding: 0.5em 1.3em;
}
.header_nav_pc > ul > li.selected nav.nav-inner > ul > li._priority a span {
  z-index: 1;
}
.header_nav_pc > ul > li.selected nav.nav-inner > ul > li._priority a span.svg-blank {
  display: flex;
  align-items: center;
}
.header_nav_pc > ul > li.selected nav.nav-inner > ul > li._priority a span.svg-blank::after {
  background-color: #fff;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='x,y'><path d='M2.5 11C2.225 11 1.98958 10.9021 1.79375 10.7063C1.59792 10.5104 1.5 10.275 1.5 10V3C1.5 2.725 1.59792 2.48958 1.79375 2.29375C1.98958 2.09792 2.225 2 2.5 2H6V3H2.5V10H9.5V6.5H10.5V10C10.5 10.275 10.4021 10.5104 10.2063 10.7063C10.0104 10.9021 9.775 11 9.5 11H2.5ZM4.85 8.35L4.15 7.65L8.8 3H7V2H10.5V5.5H9.5V3.7L4.85 8.35Z' /></svg>");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  content: "";
  display: inline-block;
  height: 14px;
  margin-left: 0.5em;
  min-width: 14px;
  width: 14px;
}
.header_nav_pc > ul > li.selected nav.nav-inner > ul > li._priority a::before {
  background: linear-gradient(115.35deg, var(--gradation-color1) 0%, var(--gradation-color2) 25%, var(--gradation-color3) 50%, var(--gradation-color4) 90%);
  bottom: 0;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: 0.3s;
  width: 100%;
}
.header_nav_pc > ul > li.selected nav.nav-inner > ul > li._priority a::after {
  content: none;
}
.header_nav_pc > ul > li.selected nav.nav-inner > ul > li._priority a:hover {
  color: #fff;
  text-decoration: none;
}

.header_nav_pc > ul > li.selected nav.nav-inner > ul > li._priority a:hover::before {
  opacity: 1;
}

.header_nav_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .header_nav_sp {
    position: fixed;
    z-index: 998;
    top: 0;
    right: 0;
    display: block;
    overflow-y: scroll;
    width: 100vw;
    height: 100vh;
    padding: 20vw 5vw 20vw;
    transition: 0.3s ease-out;
    transform: translateX(100%);
    background-color: #fff;
  }
  .header_nav_sp.show {
    transform: translateX(0%);
  }
  .header_nav_sp > ul._top {
    flex-direction: column;
  }
  .header_nav_sp > ul._top > li {
    width: auto;
    padding: .75em 0em .75em 1em;
    font-family: "Montserrat", sans-serif;
    font-size: 5.5vw;
    font-weight: 700;
    transition: 0.3s;
    text-decoration: none;
    letter-spacing: .05em;
    text-transform: uppercase;
    border-top: 1px solid #ddd;
  }
  .header_nav_sp > ul._top > li:last-of-type {
    margin-bottom: 3em;
    border-bottom: 1px solid #ddd;
  }
  .header_nav_sp > ul._top > li > a {
    position: relative;
    display: block;
    color: transparent;
    background: linear-gradient(90deg, var(--gradation-color1) 0%, var(--gradation-color2) 15%, var(--gradation-color3) 40%, var(--gradation-color4) 60%);;
    -webkit-background-clip: text;
    background-clip: text;
  }
  .header_nav_sp > ul._top > li > a::before, .header_nav_sp > ul._top > li > a::after {
    position: absolute;
    top: 0;
    right: 1em;
    bottom: 0;
    display: block;
    width: .75em;
    height: 1px;
    margin: auto;
    content: '';
    background-color: #333;
  }
  .header_nav_sp > ul._top > li._accordion > a {
    pointer-events: none;
  }
  .header_nav_sp > ul._top > li._accordion > a::after {
    transition: 0.3s;
    transform: rotate(90deg);
  }
  .header_nav_sp > ul._top > li.show._accordion > a::after {
    transform: rotate(0deg);
    opacity: 0;
  }
  .header_nav_sp > ul._top > li._link a::before, .header_nav_sp > ul._top > li._link a::after {
    right: .85em;
  }
  .header_nav_sp > ul._top > li._link a::before {
    width: 1em;
  }
  .header_nav_sp > ul._top > li._link a::after {
    width: .35em;
    transform: rotate(45deg);
    transform-origin: right;
  }
  .header_nav_sp > ul._top > li._show > ul {
    height: auto;
    margin-top: .75em;
    padding: 2vw 0 0;
    opacity: 1;
    border-top: 1px solid #ddd;
  }
  .header_nav_sp > ul._top > li ul {
    overflow: hidden;
    height: 0;
    margin: 0;
    padding: 0;
    transition: 0.3s;
    opacity: 0;
  }
  .header_nav_sp > ul._top > li ul li {
    margin: 1.5em 0;
    font-size: 3.5vw;
  }
  .header_nav_sp > ul._top > li ul a {
    position: relative;
    display: block;
    font-weight: normal;
    text-decoration: none;
    color: #333;
  }
  .header_nav_sp > ul._top > li ul a::before, .header_nav_sp > ul._top > li ul a::after {
    position: absolute;
    top: 0;
    right: .85em;
    bottom: 0;
    display: block;
    width: .75em;
    height: 1px;
    margin: auto;
    font-size: 5.5vw;
    content: '';
    background-color: #333;
  }
  .header_nav_sp > ul._top > li ul a span.svg-blank {
    display: flex;
    align-items: center;
  }
  .header_nav_sp > ul._top > li ul a span.svg-blank::after {
    background-color: var(--text-color);
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='x,y'><path d='M2.5 11C2.225 11 1.98958 10.9021 1.79375 10.7063C1.59792 10.5104 1.5 10.275 1.5 10V3C1.5 2.725 1.59792 2.48958 1.79375 2.29375C1.98958 2.09792 2.225 2 2.5 2H6V3H2.5V10H9.5V6.5H10.5V10C10.5 10.275 10.4021 10.5104 10.2063 10.7063C10.0104 10.9021 9.775 11 9.5 11H2.5ZM4.85 8.35L4.15 7.65L8.8 3H7V2H10.5V5.5H9.5V3.7L4.85 8.35Z' /></svg>");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    content: "";
    display: inline-block;
    height: 14px;
    margin-left: 0.5em;
    min-width: 14px;
    width: 14px;
  }
  .header_nav_sp > ul._top > li ul a::before {
    width: 1em;
  }
  .header_nav_sp > ul._top > li ul a::after {
    width: .35em;
    transform: rotate(45deg);
    transform-origin: right;
  }
  .header_nav_sp > ul._bottom {
    padding-left: 5.5vw;
  }
  .header_nav_sp > ul._bottom a {
    display: block;
    margin-bottom: 1.25em;
    font-size: 4vw;
    text-decoration: none;
    color: #333;
  }
}

.header_logo {
  display: flex;
  align-items: center;
  margin-left: 2.5vw;
}

@media screen and (max-width: 768px) {
  .header_logo {
    width: 30vw;
    padding: 1vw 0;
  }
  .header_logo object {
    width: 100%;
  }
}

.header_logo a {
  display: flex;
  align-items: center;
}

.header_logo a object {
  pointer-events: none;
}

/*ハンバーガーボタン*/
.navButton {
  position: absolute;
  z-index: 9999;
  top: 3vw;
  right: 4vw;
  display: none;
  width: 2em;
  height: 2.2em;
  padding: 0;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s ease-in-out;
  text-decoration: none;
  color: #333;
  border: none;
  border-radius: 50%;
  outline: none;
  background-color: transparent;
  filter: drop-shadow(0 0 2rem transparent);
  -webkit-appearance: none;
  appearance: none;
}

@media screen and (max-width: 768px) {
  .navButton {
    display: block;
  }
}

.navButton_line {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: inherit;
  white-space: nowrap;
  text-indent: 200%;
  border-top: #333 solid;
}

.navButton:before, .navButton:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 0;
  content: '';
  transition: inherit;
  border-top: #333 solid;
}

.navButton::before {
  top: .25em;
}

.navButton::after {
  bottom: .25em;
}

#js-navButton[aria-expanded='true'] {
  z-index: 99999;
}

#js-navButton[aria-expanded='true'] .navButton_line {
  border-top: 0 solid transparent;
}

#js-navButton[aria-expanded='true']::before, #js-navButton[aria-expanded='true']::after {
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(-45deg);
  background-color: #f9d8ae;
}

#js-navButton[aria-expanded='true']::before {
  transform: rotate(45deg);
}

#js-navButton[aria-expanded='true'] + .header_logo {
  visibility: hidden;
}

@media screen and (max-width: 768px) {
  #js-navButton[aria-expanded='true'] + .header_logo {
    visibility: visible;
  }
}

_::-webkit-full-page-media, _:future, :root .header_nav_pc ul a::before {
  display: block;
  margin-top: 4px;
}

_::-webkit-full-page-media, _:future, :root .service {
  background-attachment: scroll;
}

.modaal-wrapper .modaal-close {
  top: auto;
  bottom: 20px;
}

.footer_contact {
  position: relative;
  position: relative;
  display: flex;
  overflow-x: hidden;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 0;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .footer_contact {
    padding: 11.25vw 0;
    background-position: center;
    background-size: 300vw;
  }
}

.footer_contact::before {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  width: 500vw;
  height: 110vh;
  content: '';
  opacity: .9;
  background: linear-gradient(127.59deg, var(--gradation-color1) 0%, var(--gradation-color2) 22.58%, var(--gradation-color3) 49.96%, var(--gradation-color4) 98.4%);
}

.top .footer_contact::before {
  background: transparent;
}

.footer_contact::before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  opacity: .8;
}

@media screen and (max-width: 768px) {
  .footer_contact .more_button {
    width: 51.5vw;
  }
}

.footer_contact * {
  z-index: 1;
}

.footer_contact p {
  font-size: 17.6px;
  line-height: 2;
  text-align: center;
  letter-spacing: .15em;
}

.footer_other {
  margin-bottom: -160px;
  padding: 80px 0;
  opacity: .7;
  background: linear-gradient(123.97deg, var(--gradation-color1) 0%, var(--gradation-color2) 35%, var(--gradation-color3) 70%, var(--gradation-color4) 100%);
}

@media screen and (max-width: 768px) {
  .footer_other {
    margin-bottom: -20vw;
  }
}

.footer_other nav {
  width: 92%;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .footer_other nav {
    width: 70%;
  }
}

.footer_other nav ul {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .footer_other nav ul {
    flex-direction: column;
  }
}

.footer_other nav ul li {
  position: relative;
}

.footer_other nav ul li a {
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
}

.footer_other nav ul li a::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  opacity: .8;
  background: linear-gradient(134.87deg, var(--gradation-color1) 0%, var(--gradation-color2) 35%, var(--gradation-color3) 70%, var(--gradation-color4) 100%);
}

@media screen and (max-width: 768px) {
  .footer_other nav ul li + li {
    margin-top: 3vw;
  }
}

.footer_other nav ul li p {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5em;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .footer_other nav ul li p {
    font-size: 5vw;
  }
}

.footer_other nav ul li .message_link {
  padding: 1em 1em;
}

@media screen and (max-width: 768px) {
  .footer_other nav ul li .message_link {
    font-size: 3.2vw;
  }
}

.footer_other nav ul li .message_link::before {
  right: 1em;
}

.footer_other nav ul li .message_link::after {
  width: 3.5em;
}

.breadcrumb {
  width: 100%;
  background-color: var(--background-color-light);
}

@media screen and (max-width: 768px) {
  .breadcrumb {
    margin-top: 20vw;
  }
}

.breadcrumb .inner {
  display: flex;
  padding: 1.5em 0;
  font-size: 12.96px;
}

.breadcrumb li {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 1.5em;
  text-transform: uppercase;
}

.breadcrumb li:not(:last-of-type)::after {
  position: absolute;
  top: 0;
  right: .6em;
  bottom: 0;
  display: block;
  width: .5em;
  height: .5em;
  margin: auto;
  content: '';
  transform: rotate(-45deg);
  border: 1px solid #b3b3b3;
  border-top: 0;
  border-left: 0;
}

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

/*
.footer {
  padding-top: 80px;
  background-color: var(--background-color-light);
}

@media screen and (max-width: 768px) {
  .footer {
    padding-top: 0;
  }
}
*/

.footer_logo {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .footer_logo {
    justify-content: center;
    width: 45vw;
    margin: auto;
    padding: 15vw 0;
  }
  .footer_logo object {
    width: 100%;
  }
}

.footer_logo a {
  display: inline-block;
}

.footer_logo object {
  pointer-events: none;
}

.footer_logo address {
  font-size: 14.4px;
  font-style: normal;
  letter-spacing: .05em;
}

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

.footer_nav {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .footer_nav {
    flex-direction: column;
  }
}

.footer_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 70%;
  margin: 40px 0 0;
}

@media screen and (max-width: 768px) {
  .footer_list {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}

.footer_item {
  width: 30%;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .footer_item {
    width: 100%;
    margin: 0;
  }
  .footer_item ul {
    overflow: hidden;
    height: 0;
    padding: 0;
    transition: 0.3s;
    opacity: 0;
    border-top: 1px solid #ccc;
    background-color: #fff;
  }
  .footer_item._show ul {
    height: auto;
    padding: .75em 1.5em;
    opacity: 1;
  }
  .footer_item._show h3 a::before {
    transform: rotate(0deg);
  }
}

@media screen and (max-width: 768px) {
  .footer_item:last-child h3 {
    border-bottom: 1px solid #ccc;
  }
}

.footer_item h3 {
  position: relative;
  margin-bottom: .75em;
  font-family: "Montserrat", sans-serif;
  font-size: 19.2px;
  font-weight: 700;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .footer_item h3 {
    margin: 0;
    padding: .75em 1.5em;
    font-size: 4.5vw;
    border-top: 1px solid #ccc;
    border-right: 0;
    border-left: 0;
  }
}

.footer_item h3 a {
  position: relative;
  display: block;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
  .footer_item h3 a {
    pointer-events: none;
  }
}

.footer_item h3 a span {
  transition: 0.3s;
}

.footer_item h3 a span:hover {
  background: linear-gradient(115.35deg, var(--gradation-color1) 0%, var(--gradation-color2) 25%, var(--gradation-color3) 50%, var(--gradation-color4) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer_item h3 a span:hover::before, .footer_item h3 a span:hover::after {
  background: linear-gradient(115.35deg, var(--gradation-color1) 0%, var(--gradation-color2) 25%, var(--gradation-color3) 50%, var(--gradation-color4) 90%);
}

.footer_item h3 a::after {
  display: block;
  width: 3em;
  height: 1px;
  margin-left: .5em;
  content: '';
  transition: 0.3s;
  background-color: #333;
}

.footer_item h3 a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: .4em;
  height: 1px;
  margin: auto;
  content: '';
  transition: 0.3s;
  transform: rotate(45deg);
  transform-origin: right;
  background-color: #333;
}

@media screen and (max-width: 768px) {
  .footer_item h3 a::before {
    transform: rotate(90deg);
    transform-origin: center;
  }
}

@media screen and (max-width: 768px) {
  .footer_item h3 a::before, .footer_item h3 a::after {
    position: absolute;
    top: 0;
    right: .5em;
    bottom: 0;
    width: .75em;
    margin: auto;
  }
}

.footer_item h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  content: '';
  background: linear-gradient(to left, #FFDCC1 0%, #FF9F84 100%);
}

@media screen and (max-width: 768px) {
  .footer_item h3::before {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .footer_item._link a {
    pointer-events: all;
  }
}

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

@media screen and (max-width: 768px) {
  .footer_item .footer_link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1em 0;
  }
  .footer_item .footer_link::after {
    display: block;
    width: 1em;
    height: 1px;
    margin-right: .5em;
    content: '';
    background-color: #333;
  }
  .footer_item .footer_link::before {
    position: absolute;
    top: 0;
    right: .5em;
    bottom: 0;
    display: block;
    width: .4em;
    height: 1px;
    margin: auto;
    content: '';
    transform: rotate(45deg);
    transform-origin: right;
    background-color: #333;
  }
}

@media screen and (max-width: 768px) {
  .footer_item._link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer_item._link::after {
    position: absolute;
    top: 0;
    right: 8.5vw;
    bottom: 0;
    display: block;
    width: 1em;
    height: 1px;
    margin: auto;
    content: '';
    background-color: #333;
  }
  .footer_item._link::before {
    position: absolute;
    top: 0;
    right: 8.5vw;
    bottom: 0;
    display: block;
    width: .4em;
    height: 1px;
    margin: auto;
    content: '';
    transform: rotate(45deg);
    transform-origin: right;
    background-color: #333;
  }
  .footer_item._link h3 {
    width: 100%;
  }
  .footer_item._link h3 a::before, .footer_item._link h3 a::after {
    display: none;
  }
}

.footer_link {
  font-size: 14.4px;
  font-weight: normal;
  transition: 0.3s;
}

.footer_link:hover {
  color: var(--main-color);
}

.footer_info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 20%;
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .footer_info {
    width: 100%;
    margin-top: 15vw;
  }
}

.footer_info li {
  margin-bottom: 1em;
  line-height: 1.5;
  letter-spacing: .05em;
}

@media screen and (max-width: 768px) {
  .footer_info li {
    margin-bottom: 1.5em;
  }
}

.footer_info a {
  font-size: 14.4px;
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
}

.footer_info a:hover {
  color: var(--main-color);
}

.footer_info a.blank::after {
  top: auto;
  bottom: .25em;
}

.footer_copyright {
  position: relative;
  margin-top: 120px;
  padding: 2em 0;
  font-size: 14.4px;
  color: #fff;
  background-color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .footer_copyright {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    background-color: transparent;
  }
}

.footer_copyright .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .footer_copyright .inner {
    flex-direction: column;
  }
}

.footer_copyright ul {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .footer_copyright ul {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    margin-bottom: 15vw;
    color: #333;
  }
}

.footer_copyright ul li {
  margin-right: 3em;
}

@media screen and (max-width: 768px) {
  .footer_copyright ul li {
    margin-bottom: 1.5em;
    line-height: 1.5;
    letter-spacing: .05em;
  }
}

.footer_copyright ul a {
  text-decoration: none;
  text-transform: uppercase;
  color: inherit;
}

.footer_copyright ul a:hover {
  color: var(--main-color);
}

.footer_copyright small {
  font-size: .8em;
}

@media screen and (max-width: 768px) {
  .footer_copyright small {
    display: flex;
    justify-content: center;
    width: 100vw;
    margin-left: 0;
    padding: 1.5em 0;
    font-size: 3vw;
    font-size: 2.75vw;
    text-align: center;
    white-space: nowrap;
    background-color: var(--main-color);
  }
  .footer_copyright small span {
    display: block;
    margin: auto;
    transform: scale(0.8);
    text-align: center;
  }
}

.top_scroll {
  border: none;
  outline: none;
  background: none;
  -webkit-appearance: none;
  appearance: none;
}

.top_scroll {
  position: absolute;
  top: -28.8px;
  right: 0;
  cursor: pointer;
  transition: 0.3s;
  transform: translateY(-120%);
}

@media screen and (max-width: 768px) {
  .top_scroll {
    top: auto;
    right: calc(50% - 50vw);
    bottom: 12.65vw;
    transform: translateY(0%);
  }
}

.top_scroll:hover {
  opacity: .6;
}

.top_scroll::before {
  position: absolute;
  top: -.2em;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: .3em;
  height: .3em;
  margin: auto;
  transform: rotate(45deg);
  border: 2px solid #fff;
  border-right: 0;
  border-bottom: 0;
}

.top_scroll::after {
  position: absolute;
  top: .2em;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 2px;
  height: .5em;
  margin: auto;
  background-color: #fff;
}

._button-main {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 40px;
  padding: 1em 2.5em;
  font-family: "Montserrat", sans-serif;
  transition: 0.6s;
  text-decoration: none;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(123.97deg, var(--gradation-color1) 0%, var(--gradation-color2) 25%, var(--gradation-color3) 55%, var(--gradation-color4) 85%);;
  background: #333;
  background-position: 0 0;
  background-size: 140%;
}

._button-main:hover {
  background: linear-gradient(123.97deg, var(--gradation-color1) 0%, var(--gradation-color2) 25%, var(--gradation-color3) 55%, var(--gradation-color4) 85%);;
  background-position: 99%;
}

._button-main::after {
  display: block;
  width: 3em;
  height: 1px;
  margin-left: .5em;
  content: '';
  background-color: #fff;
}

._button-main::before {
  position: absolute;
  top: 0;
  right: 2.5em;
  bottom: 0;
  display: block;
  width: .6em;
  height: 1px;
  margin: auto;
  content: '';
  transform: rotate(45deg);
  transform-origin: right;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .subpage .inquiry_thx_text {
    width: 90%;
    margin: auto;
    text-align: justify !important;
  }
}

.subpage .inquiry_thx_text strong {
  font-size: 21.6px;
  font-weight: normal;
  line-height: 2.4;
}

@media screen and (max-width: 768px) {
  .subpage .inquiry_thx_text strong {
    display: block;
    margin-bottom: .5em;
    line-height: 1.75;
    text-align: center;
  }
}

.subpage .inquiry_form {
  width: 90%;
  max-width: 560px;
  margin-top: 120px;
  margin-right: auto;
  margin-left: auto;
}

.subpage .inquiry_form > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.subpage .inquiry_form > div + div {
  margin-top: 40px;
}

.subpage .inquiry_form > div .form_half {
  width: 49%;
}

.subpage .inquiry_form > div._required._error, .subpage .inquiry_form > div .form_half._required._error, .subpage .inquiry_form > div .tel_input._error {
  position: relative;
}

.subpage .inquiry_form > div._required._error select, .subpage .inquiry_form > div._required._error input[type='text'], .subpage .inquiry_form > div._required._error input[type='email'], .subpage .inquiry_form > div._required._error textarea, .subpage .inquiry_form > div .form_half._required._error select, .subpage .inquiry_form > div .form_half._required._error input[type='text'], .subpage .inquiry_form > div .form_half._required._error input[type='email'], .subpage .inquiry_form > div .form_half._required._error textarea, .subpage .inquiry_form > div .tel_input._error select, .subpage .inquiry_form > div .tel_input._error input[type='text'], .subpage .inquiry_form > div .tel_input._error input[type='email'], .subpage .inquiry_form > div .tel_input._error textarea {
  border: 2px solid #41a1d7;
}

.subpage .inquiry_form > div._required._error::after, .subpage .inquiry_form > div .form_half._required._error::after, .subpage .inquiry_form > div .tel_input._error::after {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 12px;
  content: attr(data-error);
  transform: translateY(100%);
  color: #41a1d7;
}

.subpage .inquiry_form > div._required._error input[type='checkbox'], .subpage .inquiry_form > div .form_half._required._error input[type='checkbox'], .subpage .inquiry_form > div .tel_input._error input[type='checkbox'] {
  border-color: #41a1d7 !important;
}

.subpage .inquiry_form > div .tel_input._error ~ p {
  display: none;
  width: 100%;
  margin: 0;
}

.subpage .inquiry_form > div .tel_input._error ~ p::after {
  font-size: 12px;
  content: attr(data-error);
  color: #41a1d7;
}

.subpage .inquiry_form > div .tel_input.tel1._error ~ .tel_error1 {
  display: block;
}

.subpage .inquiry_form > div .tel_input.tel2._error ~ .tel_error2 {
  display: block;
}

.subpage .inquiry_form > div .tel_input.tel3._error ~ .tel_error3 {
  display: block;
}

.subpage .inquiry_form > div.form_policy._error::after {
  display: block;
  width: 100%;
  text-align: center;
}

.subpage .inquiry_form label {
  width: 100%;
  margin-bottom: .75em;
  font-weight: 700;
  line-height: 1;
}

.subpage .inquiry_form ._required > label::after {
  margin-left: .75em;
  padding: 0 .25em;
  font-size: 12px;
  font-weight: normal;
  content: '必須';
  color: #00b8ee;
  border: 1px solid;
}

.subpage .inquiry_form select, .subpage .inquiry_form input[type='text'], .subpage .inquiry_form input[type='email'], .subpage .inquiry_form textarea {
  box-sizing: border-box;
  width: 100%;
  padding: .75em 1.25em;
  font-size: 16px;
  border: 2px solid var(--background-color-light);
  border-radius: 5px;
  background-color: var(--background-color-light);
}

.subpage .inquiry_form select::placeholder, .subpage .inquiry_form input[type='text']::placeholder, .subpage .inquiry_form input[type='email']::placeholder, .subpage .inquiry_form textarea::placeholder {
  color: #b3b3b3;
}

.subpage .inquiry_form select:focus, .subpage .inquiry_form input[type='text']:focus, .subpage .inquiry_form input[type='email']:focus, .subpage .inquiry_form textarea:focus {
  border: 2px solid #ccc;
}

.subpage .inquiry_form .form_genre .genre_wrapper {
  position: relative;
  display: block;
  width: 100%;
}

.subpage .inquiry_form .form_genre .genre_wrapper::after {
  position: absolute;
  top: 3px;
  right: 1em;
  bottom: 0;
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  content: '';
  border: 5px solid transparent;
  border-top-color: #101010;
}

.subpage .inquiry_form .form_name input, .subpage .inquiry_form .form_kana input {
  width: 100%;
}

.subpage .inquiry_form .form_tel {
  align-items: center;
  justify-content: flex-start;
}

.subpage .inquiry_form .form_tel span {
  position: relative;
  display: flex;
  align-items: center;
  width: 24%;
}

@media screen and (max-width: 768px) {
  .subpage .inquiry_form .form_tel span {
    width: 25%; /*30%⇒25%に変更*/
  }
}

.subpage .inquiry_form .form_tel span:last-of-type::after {
  content: none;
}

.subpage .inquiry_form .form_tel div {
  width: 16px;
  height: 1px;
  margin: 0 8px;
  content: '';
  background-color: #333;
}

.subpage .inquiry_form .form_tel input {
  text-align: center;
}

.subpage .inquiry_form .form_mail span {
  display: block;
  margin-top: 40px;
  margin-bottom: 1em;
  font-size: 14.4px;
  line-height: 1;
  word-wrap: break-word;
  height: 100%;  /*  0412 内藤追加  */
}

.subpage .inquiry_form .form_content textarea {
  height: 250px;
}

.subpage .inquiry_form .form_policy .div_policy {
  display: block;
  overflow-y: scroll;
  width: 100%;
  height: 330px;
  padding: 0 2em;
  font-size: 14.4px;
  border: 1px solid #999;
}

@media screen and (max-width: 768px) {
  .subpage .inquiry_form .form_policy .div_policy p {
    font-size: 3.5vw;
  }
}

.subpage .inquiry_form .form_policy .policy_check {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
}

.subpage .inquiry_form .form_policy .policy_check span {
  display: block;
  width: 100%;
  margin-bottom: 40px;
  text-align: center;
}

.subpage .inquiry_form .form_policy .policy_check input[type='checkbox'] {
  display: flex;
  align-items: center;
  width: 1em;
  height: 1em;
  border: 2px solid #999;
}

.subpage .inquiry_form .form_policy .policy_check input[type='checkbox']:checked::before {
  content: '✔';
}

.subpage .inquiry_form .form_policy .policy_check label {
  width: auto;
}

.subpage .inquiry_form .form_confirm {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.subpage .inquiry_form .form_confirm .confirm_button {
  color: inherit;
}

.subpage .inquiry_form .form_confirm.form_conversion {
  justify-content: space-between;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .subpage .inquiry_form .form_confirm.form_conversion {
    align-items: center;
    flex-direction: column;
  }
}

.subpage .inquiry_form .form_confirm.form_conversion ._button-main {
  width: 45%;
}

@media screen and (max-width: 768px) {
  .subpage .inquiry_form .form_confirm.form_conversion ._button-main {
    width: 70%;
  }
}

.subpage .inquiry_form .form_confirm.form_conversion ._button-return {
  flex-direction: row-reverse;
  justify-content: flex-end;
  background: #999;
}

.subpage .inquiry_form .form_confirm.form_conversion ._button-return::before {
  right: auto;
  left: 2.5em;
  transform: rotate(135deg);
}

.subpage .inquiry_form .form_confirm.form_conversion ._button-return:hover {
  background: #b9b9b9;
}

.thx_form .more_button {
  position: relative;
  right: auto;
  bottom: auto;
  transform: none;
}
/*
@media screen and (max-width: 768px) {
  .thx_form .more_button {
    width: 60%;
  }
}*/

.company .main .table_type02 {
  margin-top: 120px;
  margin-bottom: 80px;
}

.company .main .table_type02 th, .company .main .table_type02 td {
  border-right: 0 !important;
  border-left: 0 !important;
}

.company .main .table_type02 th {
  color: var(--main-color);
}

.company .main .table_type02 td {
  vertical-align: middle;
}

.company .main .table_type02 td .box + .box {
  margin-top: 30px;
}

.company .main .table_type02 td strong {
  display: block;
  color: var(--main-color);
}

.company .main .table_type02 td em {
  display: block;
  font-weight: 700;
  font-style: normal;
}

.company .main .table_type02 td p {
  margin: .5em 0;
}

@media screen and (max-width: 768px) {
  .company .main .table_type02 td p img {
    display: block;
    margin: auto;
  }
}

.company .main .table_type02 td p + em {
  margin-top: 2em;
}

.company .main .table_type02 td a {
  position: relative;
  display: inline-block;
  margin-right: 2em;
  text-decoration: none;
  color: #00b8ee;
}

.company .main .table_type02 td a::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: -1.5em;
  bottom: 0;
  display: block;
  width: 1em;
  height: 1em;
  margin: auto;
  content: '';
  border-radius: 1em;
  background-color: #00b8ee;
}

.company .main .table_type02 td a::after {
  position: absolute;
  z-index: 3;
  top: 0;
  right: -1.1em;
  bottom: 0;
  display: block;
  width: .4em;
  height: .4em;
  margin: auto;
  content: '';
  transform: rotate(-45deg);
  border: 1px solid #fff;
  border-top: 0;
  border-left: 0;
}

.company .main .table_type02 td img {
  max-width: 120px;
}

.company .main .table_type02 td dl {
  display: flex;
}

@media screen and (max-width: 768px) {
  .company .main .table_type02 td dl {
    flex-wrap: wrap;
  }
}

.company .main .table_type02 td dl dt {
  width: 16%;
}

@media screen and (max-width: 768px) {
  .company .main .table_type02 td dl dt {
    width: 100%;
  }
}

.company .main .table_type02 td dl dt::after {
  margin-left: .25em;
  content: '：';
}

.company .main .table_type02 td dl dd {
  width: 84%;
}

@media screen and (max-width: 768px) {
  .company .main .table_type02 td dl dd {
    width: 100%;
  }
}

.company .main .table_type02 td ol ul {
  padding-left: 0;
}

.company .main .table_type02 td ul {
  padding-left: 1.5em;
  list-style-type: disc;
}

.mission_page, .message_page {
  background: linear-gradient(90deg, #d0d6e7 0%, #f9eef3 100%);
}

.mission_page .wrapper, .message_page .wrapper {
  width: 92%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.mV_main {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: flex-start;
  justify-content: center;
  height: 800px;
  min-height: 90vh;
  max-height: 110vh;
}

@media screen and (max-width: 768px) {
  .mV_main {
    justify-content: flex-start;
    height: auto;
    min-height: auto;
    max-height: none;
    padding-top: 14vw;
    background: #fff;
  }
}

.mV_main h1 {
  position: absolute;
  bottom: 100px;
  margin: auto;
  font-size: 36px;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: bold;
  line-height: 2em;
  transform: translateX(-70%);
  letter-spacing: .22em;
  color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .mV_main h1 {
    margin-top: 6em;
    margin-left: 1em;
    font-size: 5vw;
    line-height: 2.2;
    transform: none;
  }
}

.mV_main .mission_title-sp {
  position: absolute;
  top: 140px;
}

@media screen and (max-width: 768px) {
  .mV_main .mission_title-sp {
    position: absolute;
    top: 25vw;
    display: block;
    width: 100%;
    text-align: center;
  }
  .mV_main .mission_title-sp .section_message_title {
    margin-bottom: .75em;
  }
}

.mV_main picture {
  height: 100%;
}

.mV_photo {
  width: 100vw;
  height: auto;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .mV_photo {
    height: auto;
  }
}

.mV_sub {
  display: flex;
  margin-top: 3em;
}

@media screen and (max-width: 768px) {
  .mV_sub {
    flex-direction: column;
  }
}

.mV_sub .mV_subTitle {
  width: 25%;
}

@media screen and (max-width: 768px) {
  .mV_sub .mV_subTitle {
    width: 100%;
    margin-bottom: .75em;
    padding-bottom: .75em;
    text-align: center;
    border-bottom: 1px solid #ccc;
  }
}

.mV_subText {
  width: 75%;
  padding-left: 2em;
  border-left: 1px solid #ccc;
}

@media screen and (max-width: 768px) {
  .mV_subText {
    width: 100%;
    padding-left: 0;
    font-size: 13px;
    line-height: 1.9;
    border-left: 0;
  }
}

.mV_subTitle_name {
  font-size: 20px;
  font-weight: bold;
}

/*メイン*/
.mission_page .section {
  position: relative;
}

@media screen and (max-width: 768px) {
  .mission_page .section {
    margin-top: 30vw;
  }
}

.mission_page .image_container {
  position: absolute;
  z-index: -1;
  top: 0;
  width: 74vw;
}

@media screen and (max-width: 768px) {
  .mission_page .image_container {
    overflow: hidden;
    width: 100vw;
    height: 75vw;
  }
  .mission_page .image_container::before {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    display: block;
    width: 100vw;
    height: 10vw;
    content: '';
    background-color: #fff;
  }
}

.mission_page .image_container.b {
  position: absolute;
  left: 0;
  width: 100%;
}

.mission_page .container_photo {
  width: 100%;
  height: auto;
  max-height: 800px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .mission_page .container_photo {
    position: relative;
    z-index: 2;
    width: 96vw;
    height: 115%;
  }
}

@media screen and (max-width: 768px) {
  .mission_page .container_photo.b {
    display: block;
    width: 90vw;
    height: 100%;
    margin: auto;
  }
}

.mission_page .text_container {
  display: flex;
  justify-content: flex-end;
  padding-top: 10vw;
}

@media screen and (max-width: 768px) {
  .mission_page .text_container {
    padding-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .mission_page .text_container.b {
    width: 100%;
  }
}

.mission_page .text_container.b .box {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 44%;
  min-width: 600px;
}

@media screen and (max-width: 768px) {
  .mission_page .text_container.b .box {
    width: 100%;
    min-width: auto;
  }
}

.mission_page .box {
  width: 55%;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .mission_page .box {
    width: 100%;
  }
}

.mission_page .container_title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: .17em;
  color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .mission_page .container_title {
    width: 92vw;
    margin: auto;
    font-size: 6.3vw;
    transform: translateY(-80%);
  }
}

.mission_page .container_title.b {
  text-align: center;
}

.mission_page .container_text {
  width: 35vw;
  min-width: 600px;
  margin-top: 3vw;
  padding: 3vw 3vw;
  line-height: 2.3;
  text-align: justify;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .mission_page .container_text {
    width: 100%;
    min-width: auto;
    margin-top: 55vw;
    padding: 2em 1.5em;
    font-size: 4vw;
  }
}

.mission_page .container_text .b {
  width: 100%;
  min-width: auto;
}

.mission_page .content_right .text_container {
  justify-content: flex-start;
}

.mission_page .content_right .image_container {
  right: 0;
}

@media screen and (max-width: 768px) {
  .mission_page .content_right .container_photo {
    display: block;
    height: 100%;
    margin-left: auto;
  }
}

.mission_page .content_right .box {
  margin-left: 0;
}

@media screen and (max-width: 768px) {
  .mission_page .content_right .wrapper {
    width: 100%;
  }
}

/*MESSAGE*/
@media screen and (max-width: 768px) {
  .message_innovation .image_container {
    display: flex;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .message_innovation .container_photo {
    height: 98vw;
    object-position: left;
  }
}

@media screen and (max-width: 768px) {
  .section_message {
    width: 100vw !important;
    margin: auto;
  }
}

.section_message_title {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 1.2em;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .section_message_title {
    font-size: 7vw;
  }
}

.section_message_title::after {
  display: block;
  width: 2em;
  height: 4px;
  content: '';
  background: linear-gradient(123.97deg, rgba(var(--gradation-color1-rgb), 0.8) 0%, rgba(var(--gradation-color2-rgb), 0.8) 25%, rgba(var(--gradation-color3-rgb), 0.8) 55%, rgba(var(--gradation-color4-rgb), 0.8) 85%);
}

@media screen and (max-width: 768px) {
  .section_message_title::after {
    width: 1.5em;
    height: 4px;
  }
}

.message_container {
  position: relative;
  display: flex;
}

.message_container + .message_container {
  margin-top: 120px;
}

@media screen and (max-width: 768px) {
  .message_container + .message_container {
    margin-top: 70vw;
  }
}

.message_container .mark {
  z-index: 1;
  top: 0;
}

.image_container.c {
  position: relative;
  right: auto;
  left: auto;
  width: 70%;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .image_container.c {
    overflow: visible;
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .container_photo.c {
    width: 100vw;
    height: auto;
    margin-left: calc(50% - 50vw);
  }
}

.text_container.c {
  position: absolute;
  top: 50px;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 170px;
  padding-top: 4%;
  padding-bottom: 8%;
}

.text_container.c {
  overflow-x: hidden;
  width: 54%;
  padding-top: 4.5em;
  padding-right: 2em;
  padding-bottom: 1em;
  padding-left: 2.5em;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .text_container.c {
    top: auto;
    bottom: 0;
    width: 85%;
    margin-bottom: 0;
    padding-top: 10vw;
    padding-bottom: 10vw;
    transform: translateY(90%);
  }
}

.text_container.c > * {
  z-index: 1;
}

.text_container.c::before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  display: block;
  width: 150%;
  height: 100%;
  content: '';
  transition: 0.3s;
  background: linear-gradient(123.97deg, rgba(var(--gradation-color1-rgb), 0.8) 0%, rgba(var(--gradation-color2-rgb), 0.8) 15%, rgba(var(--gradation-color3-rgb), 0.8) 35%, rgba(var(--gradation-color4-rgb), 0.8) 65%);
}

.text_container.c:hover::before {
  transform: translateX(-30%);
}

.text_container.c h2 {
  font-size: 20px;
  line-height: 2.3em;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .text_container.c h2 {
    margin-bottom: 1em;
    font-size: 4vw;
    font-weight: normal;
  }
}

.container_text.c {
  padding-top: 0;
  padding-right: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #fff;
  background-color: transparent;
}

@media screen and (max-width: 768px) {
  .container_text.c {
    margin-top: 0;
    padding-bottom: 0;
    font-size: 3.2vw;
  }
}

.mark {
  position: absolute;
  top: -50px;
  left: 0;
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  letter-spacing: .2em;
  color: #333;
}

@media screen and (max-width: 768px) {
  .mark {
    top: 0;
    left: 2vw;
    font-size: 3vw;
    transform: translateY(-160%);
  }
}

.mark::after {
  position: absolute;
  top: .8em;
  right: -30%;
  display: block;
  width: 90%;
  height: 1px;
  content: '';
  transform: rotate(-45deg);
  transform-origin: right top;
  background-color: #333;
}

.message_link {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding: 1em 2em;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
}

.message_link::before {
  position: absolute;
  top: 0;
  right: 2em;
  bottom: 0;
  width: .75em;
  height: 1px;
  margin: auto;
  content: '';
  transform: rotate(45deg);
  transform-origin: right top;
  background-color: #fff;
}

.message_link::after {
  display: block;
  width: 4em;
  height: 1px;
  margin-left: .5em;
  content: '';
  background-color: #fff;
}

.message_container:nth-of-type(even) .text_container.c {
  right: 0;
  left: auto;
}

.message_container:nth-of-type(even) .image_container.c {
  margin-left: 0;
}

.message_container:nth-of-type(even) .mark {
  right: 0;
  left: auto;
  transform: translateX(-30%) translateY(0%);
}

@media screen and (max-width: 768px) {
  .message_container:nth-of-type(even) .mark {
    transform: translateX(-30%) translateY(-160%);
  }
}

.mission_page .section:last-of-type {
  margin-top: 160px;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .mission_page .section:last-of-type {
    margin-top: 20vw;
    margin-bottom: 62vw;
  }
}

/*メインビジュアル*/
.message_page {
  background: none;
  background-color: #fff;
}

.message_page .mV_container {
  margin-top: 90px;
  padding-top: 70px;
}

@media screen and (max-width: 768px) {
  .message_page .mV_container {
    margin-top: 0;
    padding-top: 60vw;
  }
}

.message_page .mV_main {
  position: relative;
  display: block;
  overflow: visible;
  height: auto;
  min-height: auto;
  max-height: none;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .message_page .mV_main {
    padding-top: 0;
  }
}

.message_page .mV_main_photo {
  display: flex;
  justify-content: center;
}

.message_page .mV_main_photo .wrapper {
  position: absolute;
}

.message_page .mV_main_title {
  position: absolute;
  top: 0;
  left: 13%;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
  width: 50vw;
  margin-bottom: 1em;
  transform: translate(-30%, -160%);
}

@media screen and (max-width: 768px) {
  .message_page .mV_main_title {
    position: static;
    width: 100%;
    transform: translateY(-150%);
  }
}

.message_page .mV_main_title h2 {
  white-space: nowrap;
}

.message_page .mV_photo {
  width: 100%;
  height: auto;
}

.message_page .mV_photo img {
  width: 100%;
}

.message_page .mV_container .mark {
  position: relative;
  top: 0;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .message_page .mV_container .mark {
    position: absolute;
    z-index: -1;
    font-size: 3.8vw;
    color: #666;
  }
}

.message_page .mV_container .mark::after {
  top: .5em;
}

@media screen and (max-width: 768px) {
  .message_page .mV_container .mark::after {
    width: 200%;
    background-color: #666;
  }
}

.message_page .mV_container h2 {
  margin-left: 3em;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .message_page .mV_container h2 {
    display: flex;
    justify-content: center;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    font-size: 4.8vw;
    text-shadow: 2px 0px 1px white, -2px 0px 1px white, 0px 2px 1px white, 0px -2px 1px white;
  }
}

.message_page .mV_photo_text {
  position: absolute;
  top: 13.5vw;
  left: 13%;
  min-width: 40vw;
  padding: 1.6em;
  font-size: 2.15vw;
  font-weight: bold;
  line-height: 2em;
  transform: translateX(-40%);
  letter-spacing: .15em;
  color: #fff;
  background: linear-gradient(123.97deg, rgba(var(--gradation-color1-rgb), 0.8) 0%, rgba(var(--gradation-color2-rgb), 0.8) 25%, rgba(var(--gradation-color3-rgb), 0.8) 55%, rgba(var(--gradation-color4-rgb), 0.8) 85%);
}

@media screen and (max-width: 768px) {
  .message_page .mV_photo_text {
    left: 0;
    width: 56vw;
    margin-left: calc(50% - 50vw);
    font-size: 4vw;
    transform: none;
  }
}

@media screen and (max-width: 768px) {
  .message_page .mV_subTitle_text {
    font-size: 3.4vw;
  }
}

@media screen and (max-width: 768px) {
  .message_page .mV_subTitle_name {
    font-size: 5.2vw;
  }
}

.message_page02 .mV_photo_text {
  right: 0;
  left: auto;
  transform: none;
}

/*メイン*/
.message_page .section.m01 {
  display: flex;
  justify-content: space-between;
  margin-top: 160px;
}

@media screen and (max-width: 768px) {
  .message_page .section.m01 {
    position: relative;
    flex-direction: column;
    margin-top: 35vw;
  }
}

@media screen and (max-width: 768px) {
  .message_page .section.m01:nth-of-type(odd) .container_photo.m01 {
    margin-left: 0;
  }
}

.message_page .section.m01:nth-of-type(even) {
  flex-direction: row-reverse;
}

.message_page .section.m01:nth-of-type(even) .container_photo.m01 {
  margin-right: -20%;
}

.message_page .image_container.m01 {
  width: 48%;
  /*    transform: translateX(-10%);*/
}

@media screen and (max-width: 768px) {
  .message_page .image_container.m01 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}

.message_page .image_container.m01 img {
  width: 100%;
}

.message_page .container_photo.m01 {
  width: 120%;
  max-width: none;
  height: auto;
}

.message_page .text_container.m01 {
  width: 48%;
}

@media screen and (max-width: 768px) {
  .message_page .text_container.m01 {
    position: relative;
    z-index: 2;
    width: 100%;
  }
}

.message_page .container_title.m01 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.9;
  color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .message_page .container_title.m01 {
    font-size: 6.4vw;
    line-height: 1.75;
    transform: translateY(-77%);
  }
}

.message_page .container_text.m01 {
  margin-top: 2em;
  line-height: 2.1em;
}

@media screen and (max-width: 768px) {
  .message_page .container_text.m01 {
    margin-top: 60vw;
  }
}

.message_other {
  position: relative;
  overflow: hidden;
  margin-top: 160px;
  padding: 80px 0;
  background: linear-gradient(95deg, #FFCFC1 0%, #FFE0D1 35%, #FFF0E5 70%, #F1FADA 100%);
}

@media screen and (max-width: 768px) {
  .message_other {
    margin-top: 20vw;
    padding: 20vw 0px 80vw;
  }
}

.message_other::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  width: 500vw;
  height: 100%;
  transform: translateX(-50%);
  animation-name: top_body_gra;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  opacity: .9;
  background: linear-gradient(127.59deg, var(--gradation-color1) 0%, var(--gradation-color2) 24%, var(--gradation-color3) 49%, var(--gradation-color3) 51%, var(--gradation-color2) 76%, var(--gradation-color1) 100%);
}

.message_other .wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .message_other .wrapper {
    width: 100%;
  }
}

.message_other .message_container {
  width: 100%;
}

.message_other .message_container:first-child {
  flex-direction: row-reverse;
}

.message_other .message_container:first-child .mark {
  right: auto;
  left: 0;
  transform: none;
}

.message_other .message_container:first-child .text_container {
  right: auto;
  left: 0;
}

.message_other .image_container.c {
  z-index: 1;
  margin-left: 0;
}

.message_other .image_container.c img {
  width: 100%;
}

.message_other .text_container.c {
  z-index: 2;
  right: 0;
  left: auto;
  width: 45%;
  padding-bottom: 5em;
}

@media screen and (max-width: 768px) {
  .message_other .text_container.c {
    width: 90%;
    padding-bottom: 10vw;
  }
}

.message_other .container_text p {
  padding-top: 2em;
  padding-left: 5em;
}

@media screen and (max-width: 768px) {
  .message_other .container_text p {
    padding-top: 0;
  }
}

.message_other .mark {
  z-index: 5;
  right: 0;
  left: auto;
  transform: translateX(-30%);
}

@media screen and (max-width: 768px) {
  .message_other .mark {
    transform: translate(-40%, -160%);
  }
}

@keyframes recruit_mv_slide {
  0% {
    opacity: 0;
    background-position: 0 0;
  }
  1% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    background-position: -1000vw 0;
  }
}

body.recruit {
  margin-bottom: 0;
}

.recruit_mv {
  position: relative;
  overflow: hidden;
  height: 80vh;
  min-height: 700px;
}

@media screen and (max-width: 768px) {
  .recruit_mv {
    width: 100%;
    height: 86vw;
    min-height: auto;
    margin-top: 15vw;
  }
}

.recruit_mv h1 {
  position: relative;
  z-index: 2;
  height: 100%;
}

.recruit_mv h1 .gra_text {
  position: absolute;
  right: 0;
  bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 115px;
  line-height: 1;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .recruit_mv h1 .gra_text {
    font-size: 11vw;
  }
}

.recruit_mv h1 .gra_text span {
  display: block;
}

.recruit_mv h1 .gra_text span:not(:last-child) {
  margin-bottom: .2em;
}

.recruit_mv_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  max-width: none;
  height: 100%;
  animation: recruit_mv_slide 180s infinite linear;
  background-image: url(../images/jp/recruit/recruit_main-pc.png);
  background-repeat: repeat-x;
}

@media screen and (max-width: 768px) {
  .recruit_mv_image {
    width: 100%;
    height: 100%;
    animation: none;
    background-image: url(../images/jp/recruit/recruit_main-sp.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
}

.recruit_cv {
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 40px;
  visibility: hidden;
  transition: 0.3s;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .recruit_cv {
    bottom: 0;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
    padding: 3vw 4vw;
    background-color: #fff;
  }
}

.recruit_cv.view {
  visibility: visible;
  opacity: 1;
}

.recruit_cv .button_area {
  justify-content: flex-start;
  width: auto;
  height: auto;
}

@media screen and (max-width: 768px) {
  .recruit_cv .button_area {
    justify-content: center;
    width: 47.5%;
    margin: 0;
  }
}

.recruit_cv .button_area + .button_area {
  margin-top: .75em;
}

@media screen and (max-width: 768px) {
  .recruit_cv .button_area + .button_area {
    margin-top: 0;
  }
}

.recruit_cv .button_area .more_button {
  position: static;
  padding: .3em .25em .3em .25em;
}

@media screen and (max-width: 768px) {
  .recruit_cv .button_area .more_button {
    width: auto;
  }
}

.recruit_cv .button_area .more_button::before, .recruit_cv .button_area .more_button::after {
  border-radius: 5px 0 0 5px;
}

@media screen and (max-width: 768px) {
  .recruit_cv .button_area .more_button::before, .recruit_cv .button_area .more_button::after {
    border-radius: 0;
  }
}

@media screen and (max-width: 768px) {
  .recruit_cv .button_area .more_button span {
    position: relative;
  }
}

.recruit_cv .button_area .more_button span::before, .recruit_cv .button_area .more_button span::after {
  content: none;
}

@media screen and (max-width: 768px) {
  .recruit_cv .button_area .more_button span::before, .recruit_cv .button_area .more_button span::after {
    content: '';
  }
}

.recruit_cv .button_area .more_button span::before {
  right: 0;
  left: auto;
}

.recruit_cv .button_area .more_button span::after {
  width: 2em;
}

.recruit_message {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-top: 160px;
  padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .recruit_message {
    margin-top: 15vw;
    padding-bottom: 0;
  }
}

.recruit_site {
  padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .recruit_site {
    padding-bottom: 10vw;
  }
}

.recruit_site .inner {
  margin-top: -120px;
  padding-top: 120px;
}

.recruit_site h2 {
  margin-top: 3em;
  padding: 1em 4% 1.8em;
  font-size: 24px;
  line-height: 1;
  color: #fff;
  background: linear-gradient(90deg, var(--gradation-color1) 0%, var(--gradation-color2) 25%, var(--gradation-color3) 50%, var(--gradation-color4) 90%);
}

@media screen and (max-width: 768px) {
  .recruit_site h2 {
    margin-top: 15vw;
    padding: 1em 1em;
    font-size: 5.25vw;
  }
}

.recruit_site_list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  transform: translateY(-24px);
}

@media screen and (max-width: 768px) {
  .recruit_site_list {
    padding-bottom: 15vw;
    transform: none;
  }
}

.recruit_site_list li {
  width: 20%;
  margin: 0 0 0 4%;
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
  .recruit_site_list li {
    width: 42%;
    margin: 7.5vw 4%;
    font-size: 4vw;
  }
}

.recruit_site_list li:hover {
  opacity: .7;
}

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

.recruit_site_list a[target='_blank'] h3::after {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: .5em;
  content: '';
  vertical-align: middle;
  background-image: url(../images/jp/recruit/blank_blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .recruit_site_list a[target='_blank'] h3 br {
    display: none;
  }
}

.recruit_site_list h3 {
  min-height: 5em;
  margin-top: 1.25em;
  color: var(--main-color);
}

.recruit_site_list img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .recruit .footer_contact p {
    font-size: 4vw;
  }
}

.gra_text {
  font-weight: bold;
  background: linear-gradient(115.35deg, var(--gradation-color1) 0%, var(--gradation-color2) 25%, var(--gradation-color3) 50%, var(--gradation-color4) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 768px) {
  .gra_text {
    background: linear-gradient(90deg, var(--gradation-color1) 0%, var(--gradation-color2) 25%, var(--gradation-color3) 50%, var(--gradation-color4) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.recruit_message p {
  width: 62%;
  margin: auto;
  font-size: 26px;
  line-height: 2.1;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .recruit_message p {
    width: 90%;
    font-size: 4.6vw;
  }
}

body.group {
  display: block;
  margin: 0;
  padding: 0;
}

.group .header .mv {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 70vh;
  min-height: 600px;
  margin-bottom: 120px;
  color: #fff;
}

.group .header .mv::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 110vh;
  height: calc(var(--vh, 1vh) * 110);
  content: '';
  animation-name: top_body_gra;
  animation-duration: 70s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: normal;
  background: linear-gradient(127.59deg, var(--gradation-color1) 0%, var(--gradation-color2) 24%, var(--gradation-color3) 49%, var(--gradation-color3) 51%, var(--gradation-color2) 76%, var(--gradation-color1) 100%);
  background-size: 5000vw;
}

@media screen and (max-width: 768px) {
  .group .header .mv::before {
    animation-duration: 20s;
    background-size: 4000vw;
  }
}

.group .header .mv.isAndroid::before {
  animation-duration: 50s;
  background-size: 5000vw;
}

.group .header .mv_inner {
  position: relative;
  width: 52vw;
  max-width: 800px;
  margin: auto;
  padding-top: 5vw;
}

@media screen and (max-width: 768px) {
  .group .header .mv_inner {
    width: 90%;
  }
}

.group .header .mv_copy {
  font-family: "Montserrat", sans-serif;
  font-size: 76px;
  font-weight: bold;
  line-height: 1.35;
  letter-spacing: .1em;
}

@media screen and (max-width: 768px) {
  .group .header .mv_copy {
    font-size: 9.2vw;
    line-height: 1.4;
  }
}

.group .header .mv_copy span {
  font-size: inherit;
  font-weight: bold;
  line-height: inherit;
  white-space: nowrap;
}

.group .header .mv_copy span.first_line {
  text-align: left;
  text-transform: uppercase;
}

.group .header .mv_copy span.second_line {
  text-align: right;
  text-transform: uppercase;
}

.group .header .mv_copy span.last_line {
  font-weight: 300;
  text-align: left;
}

.group .header .mv_text {
  margin-top: 1.5em;
  line-height: 2.4;
}

.group .header .mv .alpha {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  transform: translateX(-120%);
}

.group .header .mv .alpha canvas {
  width: 450%;
  max-width: 2400px;
  transform: translateX(-30%) translateY(-25%);
}

.group .header .mv .alpha #group_buffer-canvas_sphere {
  transform: rotateY(90deg);
}

@media screen and (max-width: 768px) {
  .group .header .mv .alpha #group_buffer-canvas_sphere {
    transform: rotateY(90deg) translateX(-30%) translateY(-25%);
  }
}

.group .header h1 {
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .group .header h1 {
    font-size: 4.8vw;
  }
}

.group .header h1::after {
  width: 5em;
  height: 3px;
  margin-top: 1em;
}

.group .header span {
  line-height: 2.4;
}

@media screen and (max-width: 768px) {
  .group .header span {
    font-size: 3.8vw;
  }
}

.group_title {
  display: flex;
  justify-content: center;
  max-width: 300px;
  margin-top: 120px;
  margin-right: auto;
  margin-left: auto;
  border: 0 !important;
}

.group_title::after {
  content: none !important;
}

.group_list {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 1115px;
  padding: 0 8% 15%;
  list-style: none;
  background-image: url(../images/jp/group/group_list_bg.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .group_list {
    padding-right: 4%;
    padding-left: 4%;
  }
}

.group_item {
  position: relative;
  width: 23.5%;
  padding: 5% 2% 8%;
  border-radius: 20px 20px 0 0;
  background: #f0f8f8;
  background: linear-gradient(0deg, rgba(240, 248, 248, 0.5) 0%, #f0f8f8 26.65%, #f0f8f8 100%);
}

@media screen and (max-width: 768px) {
  .group_item {
    border-radius: 8px 8px 0 0;
  }
}

.group_item::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 50%;
  height: 0;
  padding-bottom: 50%;
  content: '';
  transform: translateX(-50%) translateY(50%);
  background-image: url(../images/jp/group/group_arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .group_item::after {
    width: 60%;
    padding-bottom: 60%;
  }
}

.group_menu {
  display: flex;
  flex-direction: column;
}

.group_icon {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100% !important;
  margin-bottom: 1.5em;
  border-bottom: 1px solid rgba(0, 47, 124, 0.1);
}

.group_icon img {
  width: auto;
  height: 50px;
}

@media screen and (max-width: 768px) {
  .group_icon img {
    height: 7vw;
  }
}

.group_icon p {
  margin: 1em 0 1.5em !important;
  font-weight: bold;
  line-height: 1.6 !important;
  text-align: center !important;
  color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .group_icon p {
    font-size: 2.4vw !important;
  }
}

.group_company {
  position: relative;
  width: 100%;
  height: 0;
  margin: 6% auto;
  padding-bottom: 24%;
}

.group_company a {
  display: block;
  transition: 0.3s;
}

.group_company a:hover {
  opacity: .5;
}

.group_company img {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  max-width: 90%;
  height: 100%;
  transform: translateX(-50%);
  object-fit: contain;
}

.group_name {
  position: absolute;
  bottom: 1em;
  left: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 12%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .group_name {
    bottom: .3em;
  }
}

.group_name a {
  transition: 0.3s;
  text-decoration: none;
}

.group_name a:hover {
  opacity: .5;
}

.group_name img {
  width: 100%;
}

.group_name p {
  margin: .5em 0 0 !important;
  font-weight: bold;
  line-height: 1.6 !important;
  text-align: center !important;
  color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .group_name p {
    font-size: 2vw !important;
  }
}

@media screen and (max-width: 768px) {
  .group_part {
    width: 90%;
    margin-top: 30vw !important;
    margin-right: auto;
    margin-left: auto;
  }
}

.group_part_title {
  text-align: center;
  text-transform: uppercase;
  color: #333 !important;
  border: 0 !important;
}

.group_part_title::after {
  content: none !important;
}

.group_section {
  padding-bottom: 5%;
  border-bottom: 1px solid #e6e6e6;
}

.group_section + .group_section {
  margin-top: 100px;
}

.group_section_title {
  display: flex;
  align-items: center;
  width: 100%;
  height: 4.25em;
  padding: 0 2em;
  animation-name: group_body_gra;
  animation-duration: 100s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: normal;
  color: #fff;
  background: linear-gradient(127.59deg, var(--gradation-color1) 0%, var(--gradation-color2) 24%, var(--gradation-color3) 49%, var(--gradation-color3) 51%, var(--gradation-color2) 76%, var(--gradation-color1) 100%);
  background-size: 5000vw;
}

@media screen and (max-width: 768px) {
  .group_section_title {
    animation-duration: 50s;
  }
}

@media screen and (max-width: 768px) {
  .group_section_title {
    margin-bottom: 1em !important;
    padding: .75em 1.25em;
    font-size: 4vw !important;
  }
}

@keyframes group_body_gra {
  0% {
    background-position: left;
  }
  100% {
    background-position: right;
  }
}

.group_section_icon {
  display: block;
  width: auto;
  height: 3em;
  margin-right: 1em;
  margin-left: -.5em;
  line-height: 1;
}

.group_section_text {
  font-weight: bold;
  line-height: 2;
  letter-spacing: .15em !important;
  color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .group_section_text {
    font-size: 3.8vw !important;
  }
}

.group_section .group_box {
  position: relative;
  padding: 4%;
  padding-bottom: 0;
  border-top: 1px solid #e6e6e6;
}

@media screen and (max-width: 768px) {
  .group_section .group_box {
    padding-top: 10vw;
    padding-bottom: 20vw;
  }
}

.group_section .group_box_title {
  font-size: 20px !important;
}

@media screen and (max-width: 768px) {
  .group_section .group_box_title {
    font-size: 4.4vw !important;
  }
}

.group_section .group_box_desc {
  margin-top: 0 !important;
}

@media screen and (max-width: 768px) {
  .group_section .group_box_desc {
    margin-bottom: 1em !important;
    font-size: 3.8vw !important;
  }
}

.group_section .group_box_address p {
  margin: 0;
  font-style: normal;
}

@media screen and (max-width: 768px) {
  .group_section .group_box_address p {
    font-size: 3.4vw !important;
  }
}

.group_section .group_box .more_button {
  transform: none;
}

@media screen and (max-width: 768px) {
  .group_section .group_box .more_button {
    font-size: 9vw;
  }
}

@media screen and (max-width: 768px) {
  .group_section .group_box .more_button span::before {
    right: .9em;
  }
  .group_section .group_box .more_button span::after {
    width: 2em;
  }
}

.group_section .group_box .more_button span img {
  width: 1.2em;
  margin-right: .5em;
  margin-left: .5em;
}

.group_section .group_box + .group_box {
  margin-top: 5%;
}

@media screen and (max-width: 768px) {
  .group_section .group_box + .group_box {
    margin-top: 10vw;
  }
}

@media screen and (max-width: 768px) {
  .ost_group {
    width: 60vw;
    margin-right: auto;
    margin-left: auto;
  }
}

.mix-multiply {
  mix-blend-mode: multiply;
}

body.business {
  display: block;
  margin: 0;
  padding: 0;
}

.business .header .mv {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 70vh;
  min-height: 600px;
  margin-bottom: 120px;
  color: #fff;
  background-image: url(../images/jp/business/business_mv_bg.jpg);
  background-repeat: no-repeat;
  background-position: center bottom 10%;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .business .header .mv {
    margin-bottom: 20vw;
  }
}

.business .header .mv::before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: '';
}

.business .header .mv_inner {
  position: relative;
  width: 70vw;
  max-width: 860px;
  margin: auto;
  padding-top: 5vw;
}

@media screen and (max-width: 768px) {
  .business .header .mv_inner {
    width: 90%;
  }
}

.business .header .mv_copy {
  font-family: "Montserrat", sans-serif;
  font-size: 76px;
  font-weight: bold;
  line-height: 1.15;
  letter-spacing: .1em;
  background: linear-gradient(115.35deg, var(--gradation-color1) 0%, var(--gradation-color2) 25%, var(--gradation-color3) 50%, var(--gradation-color4) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 768px) {
  .business .header .mv_copy {
    font-size: 9.2vw;
    line-height: 1.4;
  }
}

.business .header .mv_copy span {
  display: block;
  font-size: inherit;
  font-weight: bold;
  line-height: inherit;
  white-space: nowrap;
}

.business .header .mv_copy span.first_line {
  text-align: left;
  text-transform: uppercase;
}

.business .header .mv_copy span.second_line {
  text-align: right;
  text-transform: uppercase;
}

.business .header .mv_copy span.last_line {
  font-weight: 300;
  text-align: left;
}

.business .header .mv_text {
  margin-top: 1.5em;
  line-height: 2.4;
}

@media screen and (max-width: 768px) {
  .business .header .mv_text {
    font-size: 3.8vw;
  }
}

.business .header .mv .alpha {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  transform: translateX(-120%);
}

.business .header .mv .alpha canvas {
  width: 450%;
  max-width: 2400px;
}

.business_image {
  position: relative;
  width: 100vw;
  height: 24vw;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .business_image {
    height: 50vw;
  }
}

.business_image::before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  display: block;
  width: 90%;
  height: 100%;
  content: '';
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .business_image::before {
    background-position: center;
  }
}

.business_image::after {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  width: 90%;
  height: 100%;
  content: '';
  opacity: .2;
  background: linear-gradient(125.96deg, var(--gradation-color1) 0%, var(--gradation-color2) 35%, var(--gradation-color3) 70%, var(--gradation-color4) 100%);;
}

.business_title {
  position: relative;
  z-index: 3;
  max-width: 1024px;
  margin: auto;
  font-family: "Montserrat", sans-serif;
  font-size: 76px;
  line-height: 1;
  transform: translateY(-40%) translateX(0.5em);
  white-space: nowrap;
  border: 0 !important;
}

@media screen and (max-width: 768px) {
  .business_title {
    font-size: 8.0vw;
  }
}

.business_title strong {
  position: relative;
  font-size: 1.6em;
  background: linear-gradient(115.35deg, var(--gradation-color1) 0%, var(--gradation-color2) 25%, var(--gradation-color3) 50%, var(--gradation-color4) 90%);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 99% 76%;
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

.business_title strong::before {
  position: absolute;
  z-index: 10;
  top: -2px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #fff;
}

.business_title::after {
  content: none !important;
}

.business_title span {
  font-size: .65em;
}

.business_section {
  padding-bottom: 5%;
}

.business_section + .business_section {
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .business_section + .business_section {
    margin: 20vw 0;
  }
}

.business_section.human_resources .business_image::before {
  left: 10%;
  background-image: url(../images/jp/business/business_human.jpg);
}

.business_section.human_resources .business_image::after {
  left: 10%;
}

.business_section.innovation_resources .business_image::before {
  left: 0%;
  background-image: url(../images/jp/business/business_innovation.jpg);
}

.business_section.innovation_resources .business_image::after {
  left: 0%;
}

@media screen and (max-width: 768px) {
  .business_section.innovation_resources .business_box {
    padding-right: 10%;
    padding-left: 2%;
  }
}

@media screen and (max-width: 768px) {
  .business_section.innovation_resources .more_button {
    right: auto;
    left: 4%;
  }
}

.business_section_title {
  padding: 1.25em 2em;
  color: #fff;
  background: #0b308c;
  background: linear-gradient(90deg, var(--gradation-color1) 0%, var(--gradation-color2) 35%, var(--gradation-color3) 70%, var(--gradation-color4) 100%);
}

.business_section_text {
  font-weight: bold;
  line-height: 2;
  letter-spacing: .15em !important;
  color: var(--main-color);
}

.business_section .business_box {
  position: relative;
  max-width: 1024px;
  margin: auto;
  padding: 4%;
  padding-bottom: 0;
}

@media screen and (max-width: 768px) {
  .business_section .business_box {
    padding-right: 0;
    padding-bottom: 20vw;
    padding-left: 10%;
  }
}

.business_section .business_box_title {
  margin-bottom: 1em;
  font-size: 24px !important;
  letter-spacing: .15em;
  color: var(--main-color);
}

.business_section .business_box_desc {
  width: 80%;
  margin-top: 0 !important;
  line-height: 2;
  letter-spacing: .15em;
}

@media screen and (max-width: 768px) {
  .business_section .business_box_desc {
    width: 100%;
    font-size: 3.8vw;
  }
}

.business_section .business_box_address p {
  margin: 0;
  font-style: normal;
}

.business_section .business_box .more_button {
  transform: none;
}

@media screen and (max-width: 768px) {
  .business_section .business_box .more_button {
    transform: translateY(0%) translateX(-6%);
  }
}

.business_section .business_box .more_button span img {
  width: 1.2em;
  margin-right: .5em;
  margin-left: .5em;
}

.business_section .business_box + .business_box {
  margin-top: 5%;
}

.business_footer::before {
  width: 100vw;
  content: '';
  animation-name: top_body_gra;
  animation-duration: 35s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  opacity: 1;
  background: linear-gradient(127.59deg, var(--gradation-color1) 0%, var(--gradation-color2) 24%, var(--gradation-color3) 49%, var(--gradation-color3) 51%, var(--gradation-color2) 76%, var(--gradation-color1) 100%);
  background-size: 1000vw;
}

@media screen and (max-width: 768px) {
  .business_footer_copy {
    font-size: 3.8vw !important;
  }
}

.business_footer_icon {
  max-width: 224px;
  margin-top: 60px;
}

.business_footer_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 1024px;
  margin: 28px auto 0;
  list-style: none;
}

.business_footer_item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12%;
  height: 65px;
  margin: .25%;
  border-radius: 5px;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .business_footer_item {
    width: 23%;
    height: 15vw;
    margin: .5%;
  }
}

.business_footer_item a {
  display: flex;
  align-items: center;
  width: 90%;
  padding: 15px 5px;
  transition: 0.3s;
}

.business_footer_item a:hover {
  opacity: .5;
}

.business_footer_image {
  width: 95%;
  height: auto;
  max-height: 35px;
  padding: 0;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .business_footer_image {
    max-height: 7vw;
  }
}

.business_footer .more_button span::after {
  width: 3.8em;
}

.business_footer + .breadcrumb {
  margin-top: 0;
}

.business_header {
  position: relative;
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .business_header {
    margin-top: 25vw;
    margin-bottom: 60vw;
  }
}

.business_heading {
  display: flex;
  align-items: center;
  margin-top: 14vw;
  margin-bottom: 1.25em;
  padding-left: 4em;
  font-size: 24px;
  font-weight: normal;
  letter-spacing: .15em;
  color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .business_heading {
    padding-left: 5vw;
    font-size: 4vw;
    letter-spacing: .03em;
  }
}

.business_heading::before {
  display: block;
  width: 3.5em;
  height: 1px;
  margin-right: .5em;
  content: '';
  background-color: var(--main-color);
}

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

.business_block {
  display: flex;
  align-items: center;
}

.business_block p {
  position: absolute;
  z-index: 3;
  right: 0;
  display: flex;
  align-items: center;
  width: 60vw;
  height: 68%;
  margin: auto;
  padding-left: 2em;
  font-size: 36px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: .15em;
  color: #fff;
  background: linear-gradient(112.54deg, rgba(var(--gradation-color1-rgb), 0.8) 0%, rgba(var(--gradation-color2-rgb), 0.8) 35%, rgba(var(--gradation-color3-rgb), 0.8) 70%, rgba(var(--gradation-color4-rgb), 0.8) 100%);
}

@media screen and (max-width: 768px) {
  .business_block p {
    bottom: 0;
    width: 90vw;
    height: 75%;
    font-size: 4.7vw;
    transform: translateY(80%);
  }
}

.business_block img {
  display: block;
  width: 100%;
  height: auto;
}

.business_block .image_box {
  position: relative;
  z-index: 1;
  width: 72vw;
}

@media screen and (max-width: 768px) {
  .business_block .image_box {
    width: 100vw;
  }
}

.business_block .image_box::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  opacity: .2;
  background: linear-gradient(125.96deg, var(--gradation-color1) 0%, var(--gradation-color2) 35%, var(--gradation-color3) 70%, var(--gradation-color4) 100%);;
}

.business_maincopy {
  text-align: center;
}

.business_maincopy .copy {
  margin-bottom: 1em;
  font-size: 36px;
  font-weight: bold;
  line-height: 2.25;
}

@media screen and (max-width: 768px) {
  .business_maincopy .copy {
    font-size: 5.2vw;
  }
}

.business_maincopy .text {
  margin-bottom: 160px;
  line-height: 2.625;
}

@media screen and (max-width: 768px) {
  .business_maincopy .text {
    margin: 6vw 0;
    font-size: 3.8vw;
  }
}

.business_maincopy .copy-sub {
  font-size: 24px;
  font-weight: bold;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .business_maincopy .copy-sub {
    margin-top: 15vw;
    font-size: 5.2vw;
  }
}

.business_maincopy .button_area {
  justify-content: space-between;
  width: 90%;
  max-width: 1024px;
  height: auto;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .business_maincopy .button_area {
    flex-direction: column;
  }
}

.business_maincopy .button_area a {
  display: block;
  width: 48%;
}

@media screen and (max-width: 768px) {
  .business_maincopy .button_area a {
    width: 90%;
    margin-bottom: 5vw;
  }
}

.business_maincopy .button_area a img {
  width: 100%;
}

.business_maincopy .image_logos {
  margin-top: -120px;
}

.business_ir .left {
  align-items: flex-start !important;
  justify-content: flex-start !important;
  text-align: left !important;
}

@media screen and (max-width: 768px) {
  .business_ir .left {
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
}

.business_ir_section {
  padding: 120px 0;
  background-color: #f0f8f8;
}

@media screen and (max-width: 768px) {
  .business_ir_section {
    padding: 20vw 0;
  }
}

.business_ir_section_title {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 24px;
  text-align: center;
  color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .business_ir_section_title {
    font-size: 6vw;
  }
}

.business_ir_section_title::after {
  display: block;
  width: 4em;
  height: 3px;
  margin-top: 1em;
  content: '';
  background: linear-gradient(123.97deg, var(--gradation-color1) 0%, var(--gradation-color2) 25%, var(--gradation-color3) 55%, var(--gradation-color4) 85%);;
}

@media screen and (max-width: 768px) {
  .business_ir_section_title::after {
    width: 2em;
    height: .75vw;
    margin-right: auto;
    margin-left: auto;
  }
}

.business_ir_section_title span {
  display: block;
}

.business_ir_section_title-sub {
  margin-bottom: .5em;
  font-size: 20px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .business_ir_section_title-sub {
    font-size: 4.6vw;
  }
  .business_ir_section_title-sub.left {
    text-align: left !important;
  }
}

.business_ir_section_labelarea {
  display: flex;
  justify-content: space-between;
  width: 93%;
  margin: 40px auto 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .business_ir_section_labelarea {
    flex-direction: column;
  }
}

.business_ir_section_label {
  flex: 1;
  margin-right: 3%;
  padding: 2em 0;
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(var(--gradation-color1-rgb), 0.2) 0%, rgba(var(--gradation-color2-rgb), 0.2) 35%, rgba(var(--gradation-color3-rgb), 0.2) 70%, rgba(var(--gradation-color4-rgb), 0.2) 100%);
  
}

@media screen and (max-width: 768px) {
  .business_ir_section_label {
    margin-right: 0;
    margin-bottom: 3vw;
  }
}

.business_ir_section_label:last-child {
  margin-right: 0;
}

.business_ir_section_label_title {
  margin-bottom: .5em;
  font-weight: bold;
  color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .business_ir_section_label_title {
    margin-bottom: 0;
    font-size: 4.5vw;
  }
}

@media screen and (max-width: 768px) {
  .business_ir_section_label p {
    margin-top: .75em;
    font-size: 3.8vw;
  }
}

.business_ir_section_text {
  text-align: center;
}

.business_ir_section_imagebox {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .business_ir_section_imagebox {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
}

.business_ir_section + .business_ir_section {
  margin-top: 40px;
}

.business_ir_content {
  max-width: 1024px;
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .business_ir_content {
    width: 92vw;
    margin-top: 15vw;
  }
}

.business_ir_icon_list {
  display: flex;
  flex-wrap: wrap;
  padding: 3% 0;
  list-style: none;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .business_ir_icon_list {
    justify-content: space-between;
    padding: 8% 4% 0;
  }
}

.business_ir_icon_item {
  width: 20%;
  margin-left: 4%;
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
  .business_ir_icon_item {
    width: 47%;
    margin: 0 0 8%;
  }
}

.business_ir_icon_item:hover {
  opacity: .5;
}

.business_ir_icon_item a {
  display: block;
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
}

.business_ir_icon_item a:hover {
  opacity: .5;
}

.business_ir_icon_item h4 {
  margin-top: 1em;
}

@media screen and (max-width: 768px) {
  .business_ir_icon_item h4 {
    font-size: 3.8vw;
  }
}

@media screen and (max-width: 768px) {
  .business_ir_icon_item p {
    font-size: 3.4vw;
  }
}

.business_ir_icon_image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 0;
  padding-bottom: 48%;
  border: 1px solid #e6e6e6;
}

.business_ir_icon_image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10%;
  object-fit: contain;
}

.business_ir_case {
  max-width: 1024px;
  margin-top: 0 !important;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
}

.business_ir_case .business_ir_section_title {
  margin-bottom: 80px;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: normal;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #333;
}

@media screen and (max-width: 768px) {
  .business_ir_case .business_ir_section_title {
    font-size: 9vw;
  }
}

.business_ir_case .business_ir_section_title::after {
  width: 1.25em;
  height: 4px;
  margin-top: 0;
}

.business_ir_case_section {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .business_ir_case_section {
    flex-direction: column;
    width: 90%;
    margin: 0 3.5% 40vw 6.5% !important;
  }
}

.business_ir_case_section + .business_ir_case_section {
  margin: 200px 0;
}

.business_ir_case_section h3 {
  width: 32%;
  font-weight: normal;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .business_ir_case_section h3 {
    width: 100%;
    margin-bottom: 10vw;
  }
}

@media screen and (max-width: 768px) {
  .business_ir_case_section h3 img {
    display: block;
    width: 20vw;
    margin: auto;
  }
}

.business_ir_case_section h3 p {
  margin-top: 1em;
  margin-bottom: 2.5em;
  font-size: 24px;
  line-height: 2.2;
}

@media screen and (max-width: 768px) {
  .business_ir_case_section h3 p {
    margin-bottom: 1em;
    font-size: 4.8vw;
    text-align: center;
  }
}

.business_ir_case_section h3 span {
  display: block;
  margin-bottom: .5em;
  font-size: 14px;
}

.business_ir_case_section h3 span.name {
  font-weight: bold;
}

.business_ir_case_content {
  position: relative;
  width: 62%;
}

@media screen and (max-width: 768px) {
  .business_ir_case_content {
    width: 100%;
  }
}

.business_ir_case_content * {
  position: relative;
  z-index: 1;
}

.business_ir_case_content::before {
  position: absolute;
  z-index: 0;
  top: 60px;
  right: 8%;
  display: block;
  width: 120%;
  height: 100%;
  content: '';
  opacity: .3;
  background: linear-gradient(135deg, var(--gradation-color1) 0%, var(--gradation-color2) 35%, var(--gradation-color3) 70%, var(--gradation-color4) 100%);
}

@media screen and (max-width: 768px) {
  .business_ir_case_content::before {
    right: 5%;
  }
}

.business_ir_case_content img {
  display: block;
  width: 90%;
  margin-left: auto;
}

.business_ir_case_content h4 {
  width: 80%;
  margin-top: 3.5em;
  margin-bottom: 1.75em;
  padding-bottom: .5em;
  color: var(--main-color);
  border-bottom: 1px solid;
}

@media screen and (max-width: 768px) {
  .business_ir_case_content h4 {
    width: 90%;
  }
}

.business_ir_case_content p {
  width: 80%;
  line-height: 2.2;
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .business_ir_case_content p {
    width: 90%;
    font-size: 3.6vw;
  }
}

.business_ir .breadcrumb {
  margin-top: 0;
}

.business_vision {
  max-width: 1024px;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
}

.business_vision .business_ir_section_title {
  font-size: 20px;
  letter-spacing: .15em;
  color: #333;
}

.business_vision .business_ir_section_text {
  margin-top: 2em;
  line-height: 2;
  letter-spacing: .15em;
}

@media screen and (max-width: 768px) {
  .business_vision .business_ir_section_text {
    font-size: 3.8vw;
  }
}

.business_vision .table_area {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .business_vision .table_area {
    position: relative;
    overflow-y: hidden;
    width: 100vw;
    height: 120vw;
  }
  .business_vision .table_area img {
    display: block;
    width: auto;
    max-width: none;
    height: 100%;
  }
}

.business_vision .table_scroll {
  width: 30vw;
  margin-top: 2vw;
  margin-right: 3vw;
  margin-left: auto;
}

.business_vision .business_ir_section_title-sub {
  margin-top: 120px;
  margin-bottom: 3em;
  line-height: 2;
}

.business_vision .business_ir_custom {
  display: flex;
  justify-content: space-between;
  max-width: 856px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .business_vision .business_ir_custom {
    align-items: center;
    flex-direction: column;
    width: 90%;
  }
}

.business_vision .business_ir_custom_separate {
  margin-top: 7%;
}

@media screen and (max-width: 768px) {
  .business_vision .business_ir_custom_separate {
    margin-bottom: 7%;
  }
}

.business_vision_title {
  display: block;
}

.business_vision_title span {
  display: inline;
  color: var(--main-color);
}

.business_column {
  display: flex;
  justify-content: space-between;
  max-width: 1024px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .business_column {
    flex-direction: column;
    width: 90%;
    margin-top: 20vw !important;
  }
}

.business_column:nth-of-type(odd) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .business_column:nth-of-type(odd) {
    flex-direction: column;
  }
}

.business_column_box {
  width: 48%;
}

@media screen and (max-width: 768px) {
  .business_column_box {
    width: 100%;
  }
}

.business_column_box h2 {
  display: block;
  margin-bottom: 1.5em;
  font-size: 20px;
  line-height: 2;
  letter-spacing: .1em;
  color: #333;
}

@media screen and (max-width: 768px) {
  .business_column_box h2 {
    font-size: 4.8vw;
  }
}

.business_column_box h2 span {
  display: inline;
  color: var(--main-color);
}

.business_column_box p {
  line-height: 2;
  text-align: justify;
  letter-spacing: .15em;
}

@media screen and (max-width: 768px) {
  .business_column_box p {
    font-size: 3.8vw;
  }
}

@media screen and (max-width: 768px) {
  .business_column_box + .business_column_box {
    margin-top: 5vw;
  }
}

.banner_area-sss {
  display: flex;
  justify-content: center;
  margin-top: 120px;
}

@media screen and (max-width: 768px) {
  .banner_area-sss {
    width: 90%;
    margin-top: 20vw;
    margin-right: auto;
    margin-left: auto;
  }
}

.banner_area-sss a {
  transition: 0.3s;
}

.banner_area-sss a:hover {
  opacity: .7;
}

.cp_mission_header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  min-height: 800px;
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .cp_mission_header {
    width: 90%;
    height: auto;
    margin-top: 25vw;
    padding-bottom: 25vw;
  }
}

.cp_mission_header_title {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  text-align: center;
  color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .cp_mission_header_title {
    font-size: 5vw;
  }
}

.cp_mission_header_copy {
  margin-top: clamp(40px, 10vh, 120px);
  font-size: 44px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  background: linear-gradient(115.35deg, var(--gradation-color1) 0%, var(--gradation-color2) 25%, var(--gradation-color3) 50%, var(--gradation-color4) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}
/*# Added for company title */
.cp_mission_header_copy {
  margin-top: clamp($margin-default * 0.5, 10vh, $margin-default * 1.5);
  font-size: 44px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  background: linear-gradient(115.35deg, var(--gradation-color1) 0%, var(--gradation-color2) 25%, var(--gradation-color3) 50%, var(--gradation-color4) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/*# Added for company title */
.cp_company_header_copy {
/*   color:white;
  margin-top: clamp($margin-default * 0.5, 10vh, $margin-default * 1.5);
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  background: linear-gradient(115.35deg, var(--gradation-color1) 0%, var(--gradation-color2) 25%, var(--gradation-color3) 50%, var(--gradation-color4) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; */
}
.company_header_title1 {
  color: var(--main-color);
  font-size: 24px!important;
}
.company_header_title2 {
  color: var(--text-color);
  font-size: 22px!important;
  font-weight: bold!important;
}

.company_header_inline_title2 {
  display: inline;
}

.company_header_title3 {
  font-size: 16px;
  display: inline;
  background: linear-gradient(115.35deg, var(--gradation-color1) 0%, var(--gradation-color2) 25%, var(--gradation-color3) 50%, var(--gradation-color4) 90%);
  line-height: 5;
  letter-spacing: 0.02em;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}
@media screen and (max-width: 768px) {
  .cp_mission_header_copy {
    margin-top: 10vw;
    margin-bottom: 0.5em;
  }
}
@media screen and (max-width: 768px) {
.company_header_title3 {
  font-size: 16px;
  display: block;
  font-size: 16px;
  margin-block-start: 24px;
  margin-block-end: 0px;
  margin-inline-start: 45px;
  margin-inline-end: 45px;
 }
}
@media screen and (max-width: 768px) {
.company_header_inline_title2 {
  display: block;
 }
}
@media screen and (max-width: 768px) {
.company_header_title2 {
  color: var(--text-color);
  font-size: 18px!important;
  font-weight: normal!important;
 }
}

@media screen and (max-width: 768px) {
.company_header_title1 {
  color: var(--main-color);
  font-size: 24px!important;
  font-family: "Montserrat", sans-serif;
 }
}

@media screen and (max-width: 768px) {
  .cp_mission_header_copy {
    margin-top: 10vw;
    margin-bottom: 0.5em;
  }
}
.cp_mission_header_sub {
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .cp_mission_header_sub {
    margin-bottom: 10vw;
  }
}

.cp_mission_header_text {
  margin-top: 2em;
}

@media screen and (max-width: 768px) {
  .cp_mission_header_text {
    margin-top: 1.5em;
    font-size: 3.8vw;
  }
}

.cp_mission_section {
  position: relative;
  margin-top: 0 !important;
  padding: 120px 0;
  color: #fff;
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

.cp_mission_section.view {
  animation-duration: 0.8s;
  animation-delay: 0.2s;
}

.cp_mission_section.view .view {
  animation-delay: 0.7s;
}

.cp_mission_section_title {
  margin-bottom: 2em;
  font-size: 25.6px;
}

@media screen and (max-width: 768px) {
  .cp_mission_section_title {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    font-size: 5.1vw;
  }
}

@media screen and (max-width: 768px) {
  .cp_mission_section_text {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    font-size: 3.8vw;
    line-height: 2.2;
  }
}

.cp_mission_bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background: linear-gradient(127.59deg, var(--gradation-color1) 0%, var(--gradation-color2) 24%, var(--gradation-color3) 49%, var(--gradation-color3) 51%, var(--gradation-color2) 76%, var(--gradation-color1) 100%);
  background-size: 1000vw;
  animation-name: cp_bg_gra;
  animation-duration: 35s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.cp_mission_02 .cp_mission_bg {
  animation-name: cp_bg_gra2;
}

@keyframes cp_bg_gra {
  0% {
    background-position: left;
  }
  100% {
    background-position: right;
  }
}

@keyframes cp_bg_gra2 {
  0% {
    background-position: right;
  }
  100% {
    background-position: left;
  }
}

@media screen and (max-width: 768px) {
  .cp_mission_bg {
    animation-duration: 40s;
  }
}

@keyframes top_body_gra {
  0% {
    background-position: left;
  }
  100% {
    background-position: right;
  }
}

@keyframes top_body_gra2 {
  0% {
    transform: scale(2);
  }
  50% {
    transform: scale(5);
  }
  100% {
    transform: scale(2);
  }
}

body.top {
  position: relative;
  overflow-x: hidden;
}

body.top::before {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 110vh;
  height: calc(var(--vh, 1vh) * 110);
  content: "";
  animation-name: top_body_gra;
  animation-duration: 35s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  background: linear-gradient(127.59deg, var(--gradation-color1) 0%, var(--gradation-color2) 24%, var(--gradation-color3) 49%, var(--gradation-color3) 51%, var(--gradation-color2) 76%, var(--gradation-color1) 100%);
  background-size: 1000vw;
}

body.top2 {
  background-color: #f0f0f0;
}

.top .header {
  position: relative;
  z-index: 1;
}

.banner_area {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: 84%;
  margin-top: 100px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .banner_area {
    flex-wrap: wrap;
  }
}

.banner_area a {
  transition: 0.3s;
  max-width: 380px;
  width: 100%;
}

.banner_area a:hover {
  opacity: 0.5;
}

.banner_area a:nth-child(1) {
  margin-right: 5em;
}

@media screen and (max-width: 768px) {
  .banner_area a:nth-child(1) {
    margin-right: 0;
    margin-bottom: 10%;
  }
}

.banner_image {
  max-width: 100%;
}
/* wave video display*/
.wave {
  position: absolute;
  top: calc(var(--vh, 1vh) * 36);
  left: 0px;
  overflow: hidden;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .wave canvas {
    transform: translateX(-50%);
  }
}

.wave #buffer-canvas_wave {
  position: absolute;
  visibility: hidden;
}

@keyframes top_title {
  0% {
    height: 0;
    opacity: 0;
  }
  100% {
    height: 300px;
    opacity: 1;
  }
}

.main_visual__wrap {
  display: none;
  margin-bottom: 8vh;
}

.main_visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  min-height: 700px;
  padding-left: 5%;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .main_visual {
    overflow: hidden;
    width: 84vw;
    min-height: auto;
    padding-left: 0;
  }
}

@media (min-width: 560px) and (max-width: 768px) {
  .main_visual {
    height: auto;
  }
}

.main_visual h1 {
  z-index: 10;
  margin-bottom: 0.5em;
  font-size: 62.4px;
  line-height: 1.4;
  animation-duration: 1s;
  animation-delay: 2.5s;
  animation-iteration-count: 1;
  letter-spacing: 0;
  animation-fill-mode: forwards;
}

@media screen and (max-width: 768px) {
  .main_visual h1 {
    font-size: 9.5vw;
    text-align: justify;
  }
}

.main_visual h1 span {
  display: block;
  margin-top: 1em;
  font-size: 0.35em;
  text-align: left;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 768px) {
  .main_visual h1 span {
    font-size: 0.5em;
  }
}

.main_visual p {
  margin: 0.5em 0;
  line-height: 2.2;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .main_visual p {
    margin-top: 3em;
  }
}

.main_visual .anime_wrapper {
  position: absolute;
  z-index: 0;
  top: -20%;
  right: 0;
  left: 0;
  width: 100%;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .main_visual .anime_wrapper {
    left: -100vw;
    width: 300vw;
  }
}

.main_visual .scroll {
  position: absolute;
  z-index: 99;
  right: 0;
  bottom: 4em;
  left: 0;
  width: 100px;
  margin: auto;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .main_visual .scroll {
    bottom: 5em;
    font-size: 3vw;
  }
}

@media (min-width: 560px) and (max-width: 768px) {
  .main_visual .scroll {
    display: none;
  }
}

.main_visual .scroll::before {
  position: absolute;
  right: 0;
  bottom: calc(var(--vh, 1vh) * 16);
  left: 0;
  display: block;
  width: 1px;
  height: 4em;
  margin: auto;
  content: "";
  transform: translateY(100%);
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .main_visual .scroll::before {
    bottom: calc(var(--vh, 1vh) * 8);
  }
}

.main_visual .scroll::after {
  position: absolute;
  right: 0;
  bottom: calc(var(--vh, 1vh) * 16);
  left: 0;
  width: 5px;
  height: 5px;
  margin: auto;
  content: "";
  animation-name: top_scroll;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: normal;
  border-radius: 100px;
  background-color: #fff;
  animation-fill-mode: forwards;
}

@media screen and (max-width: 768px) {
  .main_visual .scroll::after {
    bottom: calc(var(--vh, 1vh) * 8);
  }
}

.information {
  max-width: 1200px;
  padding: 4% 5%;
  background-color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .information {
    padding: 8% 4%;
  }
}

.information.inner {
  margin-top: 100px;
}

.information h2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.1em;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .information h2 {
    padding-bottom: 0.3em;
    font-size: 7vw;
  }
}

.information h2 strong {
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .information h2 strong {
    font-size: 6vw;
  }
}

.information h2 a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14.4px;
  font-weight: normal;
  transition: 0.3s;
  text-decoration: none;
  letter-spacing: 0;
  color: #333;
}

@media screen and (max-width: 768px) {
  .information h2 a {
    font-size: 0.5em;
    font-weight: normal;
  }
}

.information h2 a::after {
  display: block;
  width: 3em;
  height: 1px;
  margin-left: 0.5em;
  content: "";
  transition: 0.3s;
  background-color: #333;
}

.information h2 a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 0.6em;
  height: 1px;
  margin: auto;
  content: "";
  transition: 0.3s;
  transform: rotate(45deg);
  transform-origin: right;
  background-color: #333;
}

.information h2 a:hover {
  color: var(--main-color);
}

.information h2 a:hover::before, .information h2 a:hover::after {
  background-color: var(--main-color);
}

.information h2::before {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  background: linear-gradient(to left, #FFDCC1 0%, #FF9F84 100%);
  
}

@media screen and (max-width: 768px) {
  .information h2::before {
    height: 2px;
  }
}

.information_news {
  margin: 60px 0;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .information_news {
    margin-top: 7.5vw;
    margin-bottom: 0;
    font-size: 4vw;
    line-height: 1.8;
    text-align: justify;
    letter-spacing: 0.05em;
  }
}

.information_news dl {
  display: flex;
  margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
  .information_news dl {
    position: relative;
    flex-direction: column;
    padding-right: 1em;
    padding-bottom: 1em;
    padding-left: 1em;
  }
  .information_news dl::after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    content: "";
    background: linear-gradient(to left, #FFDCC1 0%, #FF9F84 100%);
  }
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  .information_news dl::after {
    height: 1px;
    background: #fff;
  }
}

.information_news dt {
  margin-right: 2em;
  color: var(--main-color);
}

.information_news dd a {
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
}

.information_news dd a:hover {
  color: var(--main-color);
}

.information_link {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .information_link {
    width: 108%;
    margin-left: -4%;
  }
}

.information_link a {
  display: flex !important;
  flex-direction: column-reverse;
  margin: 0 24px;
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
}

@media screen and (max-width: 768px) {
  .information_link a {
    width: 60%;
    margin: 0 2.5vw 8vw;
    background-color: transparent;
  }
}

.information_link a:hover {
  background-color: #fff;
}

.information_link .slick-prev::before,
.information_link .slick-next::before {
  display: block;
  width: 1em;
  height: 1em;
  font-family: inherit;
  font-size: 14.4px;
  content: "";
  transform: rotate(-45deg);
  color: var(--main-color);
  border: 2px solid;
}

.information_link .slick-prev:hover::before,
.information_link .slick-next:hover::before {
  color: #7caeff;
}

.information_link .slick-prev::before {
  border-right: 0;
  border-bottom: 0;
}

.information_link .slick-next::before {
  border-top: 0;
  border-left: 0;
}

.information_link_text {
  display: flex;
  flex-direction: column-reverse;
  padding: 1em 1.5em 2.5em;
  font-size: 16px;
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
  .information_link_text {
    padding: 0.5em 0;
    font-size: 3.75vw;
  }
}

.information_link_text time {
  color: var(--main-color);
}

.information_link_text h3 {
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .information_link_text h3 {
    font-size: 14px;
    text-align: justify;
    word-break: break-all;
  }
}
.information_list_title{
margin-bottom: auto !important;
}
.information_link_img {
  position: relative;
  height: 0;
  padding-bottom: 55%;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .information_link_img {
    padding-bottom: 55%;
  }
}

.information_link_img img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .information_link_img img {
    object-fit: contain;
  }
}

.movie {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: 500px;
  margin: 160px 0;
}

@media screen and (max-width: 768px) {
  .movie {
    margin: 8vw 0;
  }
}

.movie_video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

@media screen and (max-width: 1170px) {
  .movie_video {
    padding-bottom: 42.8%;
  }
}

@media screen and (max-width: 768px) {
  .movie_video {
    padding-bottom: 43%;
  }
}

.movie_video::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 1170px) {
  .movie_video::after {
    padding-bottom: 42.8%;
  }
}

@media screen and (max-width: 768px) {
  .movie_video::after {
    padding-bottom: 0;
  }
}

.movie_video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.movie_link {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  transition: 0.3s;
}

.movie_link .circle {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin: auto;
  transition: 0.3s;
  border: 4px solid #fff;
  border-radius: 100%;
}

@media screen and (max-width: 768px) {
  .movie_link .circle {
    border-width: 2px;
    width: 14vw;
    height: 14vw;
    bottom: 20%;
  }
  .movie_link .circle::before {
    transform: translateX(2vw);
    border: 2.5vw solid transparent;
    border-left: 4vw solid #fff;
  }
}

.movie_link .circle::before {
  display: block;
  width: 0;
  height: 0;
  content: "";
  transition: 0.3s;
  transform: translateX(8px);
  border: 10px solid transparent;
  border-left: 20px solid #fff;
}

.movie_link .circle:hover {
  border-width: 48px;
}

@media screen and (max-width: 768px) {
  .movie_link .circle:hover {
    border-width: 7vw;
  }
}

.movie_link .circle:hover::before {
  border-left-color: #333;
}

.movie_link:hover {
  opacity: 0.8;
}

.movie_link:hover .movie_button_hover {
  width: 96px;
  height: 96px;
}

.movie_text {
  position: absolute;
  z-index: 2;
  bottom: 150px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--main-color);
  color: #fff;
}

@media screen and (max-width: 768px) {
  .movie_text {
    bottom: 25%;
    margin-top: 0;
    font-size: 3vw;
  }
}

@media screen and (max-width: 768px) {
  .modaal-inner-wrapper {
    padding-right: 0;
    padding-left: 0;
  }
}

.modaal-video-wrap {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .modaal-video-wrap {
    margin: auto;
    width: 100%;
  }
}

@keyframes mission_bg {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

.mission {
  position: relative;
  padding-bottom: 16vw;
}

.mission.view::before {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: calc(1024px + (50vw - 512px));
  min-width: 80vw;
  max-width: 90vw;
  height: 85%;
  content: "";
  transform: scaleX(0);
  transform-origin: top right;
  animation-name: mission_bg;
  animation-duration: 0.6s;
  animation-delay: 1.05s;
  opacity: 0.5;
  background-color: #1147a8;
  animation-fill-mode: forwards;
}

@media screen and (max-width: 768px) {
  .mission.view::before {
    width: 100vw;
  }
}

.mission_main {
  width: 85vw;
}

@media screen and (max-width: 768px) {
  .mission_main {
    flex-direction: column-reverse;
    width: 100vw;
  }
}

@media screen and (max-width: 768px) {
  .mission_main h2 {
    position: relative;
    z-index: 1;
    right: auto;
    width: 90%;
    margin-left: -10vw;
    padding: 5vw 10vw 32vw;
    background-color: rgba(255, 255, 255, 0.9);
  }
}

.mission_main h2.section_title-mission {
  right: 4vw;
}

.mission_main strong {
  color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .mission_main strong {
    font-size: 11.875vw;
  }
}

.mission_main .section_image {
  width: 85vw;
}

@media screen and (max-width: 768px) {
  .mission_main .section_image {
    width: 100vw;
  }
}

.mission_main img {
  max-height: 500px;
}

@media screen and (max-width: 768px) {
  .mission_main img {
    height: 64vw;
    object-position: left center;
  }
}

@media screen and (max-width: 768px) {
  .mission_main .more_button {
    transform: translate(-10%, -70%);
  }
}

.mission_message {
  display: flex;
  justify-content: flex-end;
  max-width: 48.5vw;
  margin-top: 80px;
  margin-right: 6vw;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .mission_message {
    align-items: flex-start;
    flex-direction: column-reverse;
    width: 92%;
    max-width: none;
    margin: 10vw auto 0;
  }
}

.mission_message h3 {
  position: absolute;
  right: auto;
  bottom: 0;
  left: 0;
  padding: 1em 15em 3.5em 2.5em;
  transform: translate(-20%, 60%);
  background-color: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 768px) {
  .mission_message h3 {
    position: static;
    width: 80vw;
    margin-right: 0;
    margin-left: auto;
    padding: 0;
    padding: 10vw 9vw 34vw;
    transform: translateY(-14%);
  }
}

.mission_message h3 strong {
  font-size: 2.2em;
  color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .mission_message h3 strong {
    font-size: 28.8px;
  }
}

@media screen and (max-width: 768px) {
  .mission_message h3 .more_button {
    right: auto;
    bottom: auto;
    margin-top: 0.75em;
  }
}

@media screen and (max-width: 768px) {
  .mission_message img {
    width: 86vw;
  }
}

.mission_link {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 94%;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .mission_link {
    flex-direction: column;
    width: 92%;
  }
}

.mission_link a {
  position: relative;
  display: block;
  width: 48%;
  height: 0;
  padding-bottom: 30%;
}

@media screen and (max-width: 768px) {
  .mission_link a {
    width: 100%;
    margin-bottom: 15vw;
    padding-bottom: 80%;
  }
}

.mission_link a:hover span {
  background-position: 99%;
}

.mission_link a img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mission_link a span {
  position: absolute;
  right: -1em;
  bottom: 3em;
  display: block;
  display: flex;
  align-items: center;
  padding: 1.5em 2em;
  font-family: "Montserrat", sans-serif;
  font-size: 14.4px;
  transition: 0.3s;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(123.97deg, var(--gradation-color1) 0%, var(--gradation-color2) 25%, var(--gradation-color3) 55%, var(--gradation-color4) 85%);;
  background-position: 0 0;
  background-size: 140%;
}

.mission_link a span::after {
  display: block;
  width: 3em;
  height: 1px;
  margin-left: 0.5em;
  content: "";
  background-color: #fff;
}

.mission_link a span::before {
  position: absolute;
  top: 0;
  right: 2em;
  bottom: 0;
  display: block;
  width: 0.6em;
  height: 1px;
  margin: auto;
  content: "";
  transform: rotate(45deg);
  transform-origin: right;
  background-color: #fff;
}

.mission_link a:nth-child(odd) {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .mission_link a:nth-child(odd) {
    margin-top: 0;
  }
}

.business,
.group {
  display: flex;
  justify-content: space-between;
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .business,
  .group {
    position: relative;
    padding: 0;
  }
}

.business.inner,
.group.inner {
  max-width: 800px;
}

@media screen and (max-width: 768px) {
  .business.inner,
  .group.inner {
    flex-direction: column-reverse;
  }
}

.business .alpha,
.group .alpha {
  position: relative;
  z-index: 0;
  width: 60%;
}

@media screen and (max-width: 768px) {
  .business .alpha,
  .group .alpha {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 80%;
    margin: auto;
  }
}

.business .alpha__wrap,
.group .alpha__wrap {
  position: absolute;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .business .alpha__wrap,
  .group .alpha__wrap {
    position: relative;
  }
}

.business .section_title-top,
.group .section_title-top {
  z-index: 1;
  min-width: 40%;
}

@media screen and (max-width: 768px) {
  .business .section_title-top,
  .group .section_title-top {
    z-index: 10;
    width: 90%;
    margin: auto;
  }
}

.business .section_title-top h2,
.group .section_title-top h2 {
  position: relative;
  right: auto;
  left: auto;
}

.business .section_title-top strong,
.business .section_title-top em,
.group .section_title-top strong,
.group .section_title-top em {
  display: block;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .business .section_title-top strong,
  .group .section_title-top strong {
    font-size: 2.75em;
  }
}

.business .section_title-top a,
.group .section_title-top a {
  right: auto;
  transform: translateY(150%);
}

.business {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .business {
    padding-top: 100vw;
  }
}

.business .alpha #buffer-canvas_face {
  position: absolute;
  visibility: hidden;
}

.business .alpha #output-canvas_face {
  visibility: hidden;
  transition: all 0.5s ease;
  transform: translateX(-40%) translateY(-20%);
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .business .alpha #output-canvas_face {
    width: 180vw;
    transform: translateX(-32%) translateY(0%);
  }
}

.business .alpha #output-canvas_face.-isVisible {
  visibility: visible;
  opacity: 1;
}

.group {
  margin-bottom: 400px;
  padding-top: 200px;
}

@media screen and (max-width: 768px) {
  .group.inner {
    margin-top: 70vw;
    margin-bottom: 40vw;
  }
}

.group .alpha {
  margin-left: auto;
}

.group .alpha #buffer-canvas_sphere {
  position: absolute;
  visibility: hidden;
}

.group .alpha #output-canvas_sphere {
  visibility: hidden;
  transition: all 0.5s ease;
  transform: translateX(-26%) translateY(-22%);
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .group .alpha #output-canvas_sphere {
    width: 160vw;
    transform: translateX(-27%) translateY(-30vw);
  }
}

.group .alpha #output-canvas_sphere.-isVisible {
  visibility: visible;
  opacity: 1;
}

.recruit {
  position: relative;
  margin-bottom: 80px;
}

.recruit_image {
  width: 85vw;
}

@media screen and (max-width: 768px) {
  .recruit_image {
    width: 100vw;
  }
}

.recruit_main {
  width: 85vw;
}

@media screen and (max-width: 768px) {
  .recruit_main {
    align-items: flex-start;
    flex-direction: column-reverse;
    width: 100vw;
  }
}

.recruit_main h2 {
  right: 10vw;
  color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .recruit_main h2 {
    position: relative;
    right: auto;
    width: 88vw;
    padding: 10vw 9vw 34vw;
    background-color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .recruit_main h2 strong {
    font-size: 9.5vw;
    color: var(--main-color);
  }
}

@media screen and (max-width: 768px) {
  .recruit_main h2 em {
    color: #333;
  }
}

.recruit_main img {
  max-height: 500px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .recruit_main img {
    height: 64vw;
    object-position: left center;
  }
}

@media screen and (max-width: 768px) {
  .recruit_main .more_button {
    transform: translate(-10%, -80%);
  }
}

.service {
  padding: 160px 0;
  font-size: 16px;
  color: #fff;
  background-image: url(../images/jp/top/service_bg);
  background-attachment: fixed;
  background-position: bottom center;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .service {
    padding: 15vw 8vw;
  }
}

.service h2 {
  position: relative;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 5em;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: inherit;
}

@media screen and (max-width: 768px) {
  .service h2 {
    font-size: 9.5vw;
    line-height: 1.4;
  }
}

.service h2::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

.service hr {
  display: block;
  width: 100px;
  height: 1px;
  margin: 40px auto;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .service hr {
    width: 15vw;
    height: 2px;
    margin: 12vw auto;
  }
}

.service h3 {
  margin-bottom: 40px;
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .service h3 {
    font-size: 4.9vw;
    line-height: 1.75;
  }
}

.service p {
  margin-bottom: 40px;
  line-height: 2;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .service p {
    text-align: justify;
  }
}

.service .service_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 756px;
  margin: auto;
  list-style-type: none;
}

.service .service_list li {
  width: 30%;
  margin-right: 5%;
}

@media screen and (max-width: 768px) {
  .service .service_list li {
    width: 45%;
    margin-right: 0;
  }
}

.service .service_list li:nth-child(3n) {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .service .service_list li:nth-child(2n + 1) {
    margin-right: 10%;
  }
}

@media screen and (max-width: 768px) {
  .service .service_list li:last-child {
    margin-right: 0;
  }
}

.service .service_list a {
  text-decoration: none;
  color: inherit;
}

.service .service_list p {
  margin-top: 0.75em;
  font-size: 14.4px;
  line-height: 1.6;
  text-align: center;
}

.button_area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 100px;
  margin: auto;
}

.button_area .more_button {
  right: auto;
  bottom: auto;
  transform: none;
}

#offscreen-video_sphere,
#offscreen-video_face {
  position: absolute;
  visibility: hidden;
  overflow: hidden;
  width: 1080px;
  height: 608px;
  transform: rotateY(90deg);
}

#offscreen-video_wave {
  position: absolute;
  visibility: hidden;
  overflow: hidden;
  width: 1920px;
  height: 1080px;
  transform: rotateY(90deg);
}

.buffer-canvas {
  transform: rotateY(90deg);
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 56.25%;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .wave canvas {
    transform: scale(0.33) !important;
  }
}

@media (min-width: 560px) and (max-width: 768px) {
  .wave canvas {
    transform: scale(0.4) !important;
  }
}

.ie_only {
  display: none !important;
}

@media all and (-ms-high-contrast: none) {
  img {
    height: auto;
  }
  .ie_only {
    display: block !important;
  }
  .header_nav_pc ul a:hover {
    color: #999;
  }
  .header_nav_pc ul a::before, .header_nav_pc ul a::after {
    content: none;
  }
  .banner_image {
    width: 100%;
  }
  .cp_mission_header_copy {
    background: none;
  }
  .business .header .mv_copy {
    background: none;
  }
  .business_title {
    background: none !important;
  }
  .image_logos {
    display: none;
  }
  .image_logos.ie_only {
    margin: auto;
  }
  .business_ir_icon_image img {
    font-family: 'object-fit: contain;';
  }
  .group_title img {
    width: 300px;
    height: auto;
  }
  .group_list {
    margin: auto;
  }
  .group_part, .table_type02 {
    width: 1024px !important;
    margin: auto;
  }
  .gra_text {
    background: none !important;
  }
  .more_button {
    position: relative;
  }
  .top .more_button {
    position: absolute;
  }
  .top .service .more_button, .top .footer_contact .more_button {
    position: relative;
  }
  .top .information_link a {
    height: 340px;
  }
  .top .information_link_img {
    height: 140px;
  }
  .top .information_link_img img {
    height: auto;
  }
  .footer_item h3 a::before, .footer_item h3 a::after {
    display: none !important;
    background: none !important;
  }
  .footer_item h3 a:hover {
    opacity: .5;
    background: none !important;
  }
  .footer_item h3 a:hover::before, .footer_item h3 a:hover::after {
    display: none !important;
    background: none !important;
  }
  .mV_main .mission_title-sp {
    right: 0;
    left: 0;
  }
  .mV_photo {
    height: auto !important;
  }
  .mV_main h1 {
    right: 40% !important;
  }
  .mV_main h1 {
    right: 40% !important;
  }
  .mission_page .text_container {
    justify-content: flex-start;
  }
  .message_page .mV_photo_text {
    right: 140%;
    left: auto;
  }
  .message_page .mV_main_title {
    right: 130%;
    left: auto;
  }
  .message_page02 .mV_photo_text {
    right: 110%;
  }
  .business_section .business_box .more_button, .group_section .group_box .more_button {
    position: absolute;
  }
  .information_link_text h3 {
    width: 100%;
  }
  .business_block {
    align-items: flex-start;
  }
  .business_block p {
    top: 150px;
    right: 100px;
    width: 800px;
    height: 400px;
  }
  .business .header .mv_inner, .group .header .mv_inner {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
  }
  .business_footer_image {
    font-family: 'object-fit: contain;';
  }
  .section_title-top img {
    font-family: 'object-fit: cover;';
  }
  .main_visual {
    height: 900px;
  }
  .movie_video video {
    height: auto;
  }
  .movie_text {
    display: none;
  }
  .main_visual .scroll::before {
    position: relative;
  }
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0;
  pointer-events: none;
}
/*# sourceMappingURL=style.css.map */



/**
 * 202507 暫定対応
 * 本来、common.cssに反映したい内容
 */

header:not(.header) {
  padding: 0 24px;
}

.header,
.header.hide {
  position: static;
  top: 0;
  padding: 0;
  transform: none;
}

header:first-of-type,
.footer,
.footer__top-address dl dt {
  font-feature-settings: normal;
  letter-spacing: 0;
}

.footer__top-address dl dt {
  letter-spacing: -0.01em;
}

.footer__media-logo__text,
.footer.gray .footer__top-navi--item ul li a {
  font-size: 14px;
}


#wrapper {
  padding-top: 0;
}