@charset "UTF-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
/* リセット */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

li {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeSpeed;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-weight: 900;
  font-size: 22.78px;
  overflow-x: hidden;
  position: relative;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
#mouse-stalker {
  pointer-events: none;
  position: fixed;
  top: -10px;
  left: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: translate(0, 0);
  transition: transform 0.2s;
  transition-timing-function: ease-out;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  #mouse-stalker {
    display: none;
  }
}

header {
  position: fixed;
  z-index: 10;
  top: 15px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  background-color: transparent;
  transform: translateY(-200%);
  transition: 0.4s ease;
  transition-delay: 3s;
}
header.loated {
  transform: translateY(0%);
}
header .logo {
  width: 300px;
}
header .logo img {
  width: 100%;
}
header .entry {
  margin-right: 30px;
  height: 100%;
  width: 150px;
  font-size: 22.78px;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
  cursor: pointer;
  border: 3px solid rgba(232, 232, 0, 0.2);
  background-image: url(../img/menu_bg.svg);
  background-size: contain;
}
@media screen and (max-width: 767px) {
  header .entry {
    display: none;
  }
}
header .entry:hover {
  background-image: url(../img/noise_bg.gif);
  background-size: auto;
  color: #FFF;
}
header .hader___menu___v2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: 2rem;
}
@media screen and (max-width: 767px) {
  header .hader___menu___v2 {
    display: none;
  }
}
header .hader___menu___v2 a {
  color: #fff;
  font-weight: 900;
  margin-left: 3rem;
  letter-spacing: 0.2em;
  font-size: 16px;
  padding: 1em;
  transition: 0.2s ease;
}
header .hader___menu___v2 a:hover {
  background-color: #FFEF00;
  color: #333;
}
header .hader___menu___v2 a.white {
  color: #fff;
}
header .hader___menu___v2 a.black {
  color: #222;
}
header .hader___menu___v2 a.black.white {
  color: #fff;
}

#mv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
#mv #slide-wrapper {
  position: fixed;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 100%;
  gap: 8px;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: space-around;
  transform: scale(1.4) translateX(-35%) translateY(-50%);
  transition: 0.6s;
  filter: brightness(120%);
}
@media screen and (max-width: 767px) {
  #mv #slide-wrapper {
    transform: scale(2) translateX(-35%) translateY(-50%);
  }
}
#mv #slide-wrapper::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
  opacity: 0.1;
}
@media screen and (max-width: 767px) {
  #mv #slide-wrapper::after {
    background-image: none;
  }
}
#mv #slide-wrapper img {
  opacity: 0.9;
  transition: 0.6s;
}
#mv #slide-wrapper .slide-1, #mv #slide-wrapper .slide-3, #mv #slide-wrapper .slide-5 {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  width: 16%;
  animation: loop 20s linear infinite;
  animation-delay: 1.5s;
  filter: brightness(110%);
}
@media screen and (max-width: 767px) {
  #mv #slide-wrapper .slide-1, #mv #slide-wrapper .slide-3, #mv #slide-wrapper .slide-5 {
    animation-duration: 40s;
    filter: brightness(100%);
  }
}
#mv #slide-wrapper .slide-2 {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  width: 28%;
  animation: loop2 35s linear infinite;
  animation-delay: 1.5s;
  filter: brightness(110%);
}
@media screen and (max-width: 767px) {
  #mv #slide-wrapper .slide-2 {
    animation-duration: 40s;
    filter: brightness(100%);
  }
}
#mv #slide-wrapper .slide-4 {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  width: 22%;
  animation: loop2 38s linear infinite;
  animation-delay: 1.5s;
  filter: brightness(110%);
}
@media screen and (max-width: 767px) {
  #mv #slide-wrapper .slide-4 {
    animation-duration: 40s;
    filter: brightness(100%);
  }
}
#mv #slide-wrapper.dark {
  background-color: #262626;
  transition: 1s;
}
#mv #slide-wrapper.dark img {
  opacity: 0;
}
@keyframes loop {
  0% {
    transform: translateY(0%);
  }
  to {
    transform: translateY(-250%);
  }
}
@media screen and (max-width: 767px) {
  @keyframes loop {
    0% {
      transform: translateY(0%);
    }
    to {
      transform: translateY(-50%);
    }
  }
}
@keyframes loop2 {
  0% {
    transform: translateY(-250%);
  }
  to {
    transform: translateY(0%);
  }
}
@media screen and (max-width: 767px) {
  @keyframes loop2 {
    0% {
      transform: translateY(0%);
    }
    to {
      transform: translateY(50%);
    }
  }
}
#mv .mv___title {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  text-align: center;
  transition: 0.6s ease;
  transition-delay: 2.3s;
  opacity: 0;
}
#mv .mv___title.loated {
  opacity: 1;
  top: 50%;
}
@media screen and (max-width: 767px) {
  #mv .mv___title {
    top: 45%;
  }
  #mv .mv___title.loated {
    top: 45%;
  }
}
#mv .mv___title img {
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  #mv .mv___title img {
    width: 100%;
  }
}
#mv .mv___txt {
  position: absolute;
  top: 70%;
  left: 10%;
  display: inline-block;
  background-color: #1a1a1a;
  color: #fff;
  padding-left: 1em;
  padding-right: 1em;
  line-height: 2.5em;
  font-size: 28.33px;
  font-weight: 900;
  transition: 0.6s ease;
  transition-delay: 2.5s;
  opacity: 0;
}
#mv .mv___txt.loated {
  opacity: 1;
  top: 78%;
}
@media screen and (max-width: 767px) {
  #mv .mv___txt {
    font-size: 16px;
    top: 65%;
    left: 0%;
  }
  #mv .mv___txt.loated {
    top: 65%;
  }
}

.scroll-1 {
  display: block;
  position: relative;
  opacity: 0;
  transition: 0.6s ease-in-out;
}
.scroll-1.scrollin {
  opacity: 1;
}
.scroll-1.scrollin::after {
  content: "";
  position: absolute;
  z-index: 15;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #333;
  animation-name: title-line;
  animation-delay: 0s;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

@keyframes title-line {
  0% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 101%;
    width: 0%;
  }
}
.scroll-blur-in {
  display: block;
  position: relative;
  opacity: 0;
  filter: blur(30px) brightness(200%);
  transition: 0.6s ease-in-out;
}

#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  text-align: center;
  color: #fff;
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-rows: 1fr 1fr 1fr 1fr 1fr;
  background-color: #fff;
  background-size: auto;
  animation-fill-mode: forwards;
  animation-duration: 0.1s;
  animation-iteration-count: 1;
  animation-delay: 1.2s;
}
#splash.load {
  animation-name: open-b;
}
@keyframes open-b {
  0% {
    background-color: #fff;
    background-size: auto;
  }
  100% {
    background: transparent;
  }
}
#splash div.load {
  background-size: auto;
  background-color: #fff;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
  animation-iteration-count: 1;
  animation-name: open;
}
#splash .anime1 {
  animation-delay: 1.2s;
}
#splash .anime2 {
  animation-delay: 1.4s;
}
#splash .anime3 {
  animation-delay: 1.6s;
}
#splash .anime4 {
  animation-delay: 1.3s;
}
#splash .anime5 {
  animation-delay: 1.5s;
}
#splash .anime6 {
  animation-delay: 1.7s;
}
#splash .anime7 {
  animation-delay: 1.8s;
}
@keyframes open {
  0% {
    transform: matrix3d(0);
    -webkit-transform: matrix3d(0);
  }
  100% {
    transform: matrix3d(0, 0, 1, 0, 0, 1, 0, 0, -1, 0, 0, 0, 0, 0, 0, 1);
    -webkit-transform: matrix3d(0, 0, 1, 0, 0, 1, 0, 0, -1, 0, 0, 0, 0, 0, 0, 1);
  }
}

@keyframes purun {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  5% {
    transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  10% {
    transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  20% {
    transform: scale(0.8, 1.3) translate(0%, -10%);
  }
  30% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  50% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
#splash_logo span {
  color: #333;
  display: inline-block;
  animation: purun 1.4s linear 0s 1;
  font-size: 0.5em;
  animation-iteration-count: infinite;
}
#splash_logo span:nth-of-type(2) {
  animation-delay: 0.1s;
}
#splash_logo span:nth-of-type(3) {
  animation-delay: 0.2s;
}
#splash_logo span:nth-of-type(4) {
  animation-delay: 0.3s;
}
#splash_logo.loated {
  opacity: 1;
}
#splash_logo.loated::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #333;
  animation-name: title-line;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 680px;
  margin: auto;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  opacity: 0; /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: rgba(0, 0, 0, 0.9);
  /*動き*/
  transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  opacity: 1;
  z-index: 999;
  opacity: 1;
}
#g-nav.panelactive::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #333;
  animation-name: title-line;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#g-nav.panelactive #g-nav-list .close {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  top: 0;
  left: 0;
  z-index: 998;
}

#g-nav ul {
  display: none;
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#g-nav.panelactive ul {
  display: flex;
  justify-content: center;
  width: 90%;
  max-width: 1350px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  #g-nav.panelactive ul {
    flex-direction: column;
    align-items: center;
  }
}
#g-nav.panelactive ul li {
  width: 33%;
}
@media screen and (max-width: 767px) {
  #g-nav.panelactive ul li {
    width: 80%;
  }
}
#g-nav.panelactive ul li a {
  display: block;
  width: 100%;
  transition: 0.2s;
}
#g-nav.panelactive ul li a:hover {
  transform: scale(1.05);
  opacity: 0.8;
}
#g-nav.panelactive ul li a img {
  width: 100%;
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

#number_page_kaisya {
  background-image: url(../img/number/bg_cn.webp);
  background-size: cover;
  position: relative;
  padding-top: 10%;
  margin-bottom: 10%;
}
#number_page_kaisya::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.25);
  z-index: 1;
}
#number_page_kaisya img {
  position: relative;
  z-index: 2;
  width: 80%;
  margin: auto;
}
#number_page_kaisya img.transition {
  width: 100%;
}

#message {
  width: 90%;
  max-width: 1350px;
  margin: auto;
  margin-top: 10%;
  margin-bottom: 10%;
}
@media screen and (max-width: 767px) {
  #message {
    margin-top: 100px;
    padding-bottom: 100px;
  }
}
#message h2 {
  font-size: 16px;
}
#message h2::before {
  content: "●";
  color: #FFEF00;
}
@media screen and (max-width: 767px) {
  #message h2 {
    font-size: 12px;
  }
}
#message div {
  width: 100%;
}
#message div img {
  width: 100%;
}
#message div img.pc___only {
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #message div img.pc___only {
    display: none;
  }
}
#message div img.sp___only {
  display: none;
}
@media screen and (max-width: 767px) {
  #message div img.sp___only {
    display: block;
  }
}
#message p {
  display: inline-block;
  text-align: left;
  letter-spacing: 0.15em;
  line-height: 1.75em;
  margin-top: 5%;
  font-weight: 500;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  #message p {
    font-size: 16px;
    letter-spacing: 0.05em;
    margin-top: 10%;
  }
}
#message a {
  display: inline-block;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  font-weight: 900;
  line-height: 2em;
  margin-top: 5%;
  transition: 0.2s;
  background-image: url(../img/menu_bg.svg);
  background-size: cover;
}
#message a:hover {
  background-image: url(../img/noise_bg.gif);
  background-size: auto;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #message a {
    font-size: 12px;
    margin-top: 10%;
  }
}

#venue {
  width: 100%;
}
#venue .transition00 {
  position: relative;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  z-index: 5;
  width: 100%;
  height: 50vh;
}
#venue .transition00::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../img/transition/transition-00.webp);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
}
@media screen and (max-width: 767px) {
  #venue .transition00::before {
    background-attachment: unset;
  }
}
#venue .transition01 {
  width: 100%;
}
#venue .transition01 img {
  width: 100%;
}
#venue .transition01 .pc___only {
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #venue .transition01 .pc___only {
    display: none;
  }
}
#venue .transition01 .sp___only {
  display: none;
}
@media screen and (max-width: 767px) {
  #venue .transition01 .sp___only {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #venue .transition01 {
    margin-top: 0%;
  }
}
#venue .power {
  width: 90%;
  max-width: 1350px;
  margin: auto;
  margin-top: 5%;
}
@media screen and (max-width: 767px) {
  #venue .power {
    margin-top: 100px;
  }
}
#venue .power .pc___only {
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #venue .power .pc___only {
    display: none;
  }
}
#venue .power .sp___only {
  display: none;
}
@media screen and (max-width: 767px) {
  #venue .power .sp___only {
    display: block;
  }
}
#venue .venue-img {
  width: 100%;
}
#venue .venue-img img {
  width: 100%;
}
#venue .venue-txt {
  width: 90%;
  max-width: 1350px;
  font-weight: 200;
  margin: auto;
  margin-top: 5%;
}
#venue p {
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 2em;
  display: inline-block;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #venue p {
    font-size: 16px;
    margin-top: 1em;
  }
}
#venue .more {
  display: inline-block;
  background-image: url(../img/menu_bg.svg);
  background-size: cover;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  font-weight: 900;
  line-height: 2em;
  margin-top: 5%;
  transition: 0.2s;
}
#venue .more:hover {
  background-image: url(../img/noise_bg.gif);
  background-size: auto;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #venue .more {
    font-size: 12px;
    margin-top: 3em;
  }
}
#venue h2 {
  font-size: 16px;
  width: 90%;
  max-width: 1350px;
  margin: auto;
  margin-top: 10%;
  color: #fff;
}
#venue h2::before {
  content: "●";
  color: #FFEF00;
}
@media screen and (max-width: 767px) {
  #venue h2 {
    font-size: 12px;
    margin-top: 100px;
  }
}
#venue .map {
  width: 100%;
}
#venue .map .pc___only {
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #venue .map .pc___only {
    display: none;
  }
}
#venue .map .sp___only {
  display: none;
}
@media screen and (max-width: 767px) {
  #venue .map .sp___only {
    display: block;
  }
}
#venue nav {
  font-size: 16px;
  width: 90%;
  max-width: 1350px;
  margin: auto;
  line-height: 2em;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
}
@media screen and (max-width: 767px) {
  #venue nav {
    flex-direction: column;
    font-size: 12px;
  }
}
#venue nav div {
  margin-right: 5%;
}
#venue nav div a {
  color: #fff;
  font-weight: 100;
  display: block;
  transition: 0.2s;
}
#venue nav div a:hover {
  color: #FFEF00;
}

@media screen and (max-width: 767px) {
  #works {
    margin-top: 100px;
  }
}
#works h2 {
  font-size: 16px;
  width: 90%;
  max-width: 1350px;
  margin: auto;
  margin-top: 10%;
  color: #333;
}
#works h2::before {
  content: "●";
  color: #FFEF00;
}
@media screen and (max-width: 767px) {
  #works h2 {
    font-size: 12px;
  }
}
#works img {
  width: 50%;
  max-width: 600px;
}
@media screen and (max-width: 767px) {
  #works img {
    width: 80%;
  }
}
#works .links {
  display: block;
  font-size: 43px;
  width: 90%;
  max-width: 1350px;
  margin: auto;
  color: #333;
  border-top: 1px solid #333;
  padding-top: 1em;
  padding-bottom: 1em;
  position: relative;
  transition: 0.4s;
  transform-origin: top;
  position: relative;
}
@media screen and (max-width: 767px) {
  #works .links {
    font-size: 18.15px;
  }
}
#works .links:hover {
  padding-top: 2em;
  padding-bottom: 2em;
  padding-left: 2em;
  text-shadow: 3px 3px 1px rgba(0, 0, 0, 0.3);
  color: #fff;
}
#works .links:hover .detail {
  color: #fff;
}
#works .links.seminar ::after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  background-image: url(../img/asset/bg_01.webp);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0;
  transition: 0.2s;
}
#works .links.seminar:hover ::after {
  opacity: 1;
}
#works .links.concert ::after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  background-image: url(../img/asset/bg_02.webp);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0;
  transition: 0.2s;
}
#works .links.concert:hover ::after {
  opacity: 1;
}
#works .links.opening ::after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  background-image: url(../img/asset/bg_03.webp);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0;
  transition: 0.2s;
}
#works .links.opening:hover ::after {
  opacity: 1;
}
#works .links.gijutu ::after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  background-image: url(../img/asset/bg_04.webp);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0;
  transition: 0.2s;
}
#works .links.gijutu:hover ::after {
  opacity: 1;
}
#works .links::after {
  content: url(../img/asset/arrows.svg);
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 5%;
  min-width: 80px;
}
@media screen and (max-width: 767px) {
  #works .links::after {
    min-width: 40px;
    top: 60%;
  }
}
#works .links:last-of-type {
  border-bottom: 1px solid #333;
}
#works .links .number {
  color: #FFEF00;
  font-size: 16px;
  display: block;
}
#works .links .detail {
  margin-top: 2em;
  color: #B2B2B2;
  font-size: 16px;
  display: block;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #works .links .detail {
    font-size: 12px;
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #works .usage .slide {
    display: none;
  }
}
#works .usage-title {
  width: 90%;
  max-width: 1350px;
  margin: auto;
  font-size: 18.15px;
  font-weight: 500;
  text-align: left;
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  #works .usage-title {
    font-size: 12px;
    margin-top: 0em;
  }
}
#works .slide {
  width: 100%;
  margin-top: 2.5%;
}
#works .slide img {
  width: 250px;
  opacity: 0.2;
}
#works .work-flex-box {
  display: flex;
  justify-content: center;
  width: 100%;
  transform: translateY(-20%);
}
@media screen and (max-width: 767px) {
  #works .work-flex-box {
    transform: translateY(0);
    margin-top: 1em;
  }
}
#works .work-flex-box div {
  width: 100%;
  position: relative;
  transition: ease-out;
}
#works .work-flex-box div:nth-child(1) {
  transform: translateY(-20%);
}
@media screen and (max-width: 767px) {
  #works .work-flex-box div:nth-child(1) {
    transform: translateY(0);
  }
}
#works .work-flex-box div:nth-child(2) {
  transform: translateY(20%);
}
@media screen and (max-width: 767px) {
  #works .work-flex-box div:nth-child(2) {
    transform: translateY(0);
  }
}
#works .work-flex-box div:nth-child(3) {
  transform: translateY(-20%);
}
@media screen and (max-width: 767px) {
  #works .work-flex-box div:nth-child(3) {
    transform: translateY(0);
  }
}
#works .work-flex-box div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: none;
}
#works .work-flex-box div p {
  color: #fff;
  position: absolute;
  bottom: 1em;
  left: 1em;
  font-weight: 300;
  font-size: 16px;
}
#works .work-flex-box div p span {
  display: block;
  font-weight: 900;
  font-size: 22.78px;
}
@media screen and (max-width: 767px) {
  #works .work-flex-box div p {
    display: none;
  }
}
#works .work-txt {
  width: 90%;
  max-width: 1350px;
  margin: auto;
  text-align: left;
  font-size: 18.15px;
  font-weight: 700;
  line-height: 2.5em;
  letter-spacing: 0.075em;
  margin-top: 1em;
  margin-bottom: 4em;
  transform: translateY(-70%);
}
@media screen and (max-width: 767px) {
  #works .work-txt {
    font-size: 16px;
    transform: translateY(0%);
  }
}

#members {
  width: 100vw;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  #members {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  #members .swiper-container {
    display: none;
  }
}
#members h2 {
  font-size: 16px;
  width: 90%;
  max-width: 1350px;
  margin: auto;
  margin-top: 10%;
  color: #333;
}
#members h2::before {
  content: "●";
  color: #FFEF00;
}
@media screen and (max-width: 767px) {
  #members h2 {
    font-size: 12px;
  }
}
#members img {
  width: 100%;
  max-width: 600px;
}
@media screen and (max-width: 767px) {
  #members img {
    max-width: 100%;
  }
}
#members .interview-flex {
  width: 90%;
  max-width: 1350px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  flex-wrap: wrap;
  margin-top: 2em;
}
#members .interview-flex a {
  display: block;
  width: 48%;
  margin-top: 3em;
  transition: 0.2s;
  overflow: hidden;
}
#members .interview-flex a:hover h3 {
  background-color: #fff;
  transition: 0.2s;
}
#members .interview-flex a:hover p {
  background-color: #fff;
  transition: 0.2s;
}
#members .interview-flex a:hover img {
  transform: scale(1.1);
}
#members .interview-flex a img {
  width: 100%;
  transition: 0.4s;
  position: relative;
  z-index: 1;
}
#members .interview-flex a h3 {
  font-size: 22.78px;
  position: relative;
  z-index: 2;
}
#members .interview-flex a p {
  font-size: 16px;
  font-weight: 500;
  color: #B2B2B2;
  position: relative;
  z-index: 2;
}
#members .slide {
  display: flex;
  overflow: hidden;
  gap: 1em;
  width: 100%;
  transform: translateY(45%);
  opacity: 0.1;
}
@media screen and (max-width: 767px) {
  #members .slide {
    display: none;
  }
}
#members .links-box {
  width: 90%;
  max-width: 1350px;
  margin: auto;
  text-align: center;
}
#members .links-box .links {
  display: inline-block;
  background-image: url(../img/menu_bg.svg);
  background-size: cover;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  font-size: 16px;
  width: 40%;
  font-weight: 900;
  line-height: 2em;
  margin-top: 2.5%;
  transition: 0.2s;
}
#members .links-box .links:hover {
  background-image: url(../img/noise_bg.gif);
  background-size: auto;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #members .links-box .links {
    font-size: 12px;
  }
}
#members .swiper {
  /* 共通部分 */
  /* 次へ矢印をカスタマイズ */
  /* 前へ矢印をカスタマイズ */
}
#members .swiper .title {
  font-size: 18.15px;
}
#members .swiper .new {
  display: inline-block;
  font-size: 16px;
  color: #333;
  background-color: #FFEF00;
  border: #FFEF00 1px solid;
  font-weight: 500;
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  padding-left: 1em;
  padding-right: 1em;
}
#members .swiper .carrer {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  background-color: #333;
  border: #FFEF00 1px solid;
  font-weight: 500;
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  padding-left: 1em;
  padding-right: 1em;
}
#members .swiper .nyusya {
  font-size: 14px;
  color: #B2B2B2;
  font-weight: 500;
}
#members .swiper .swiper-slide {
  transform: scale(0.8);
  filter: brightness(0.9);
}
#members .swiper .swiper-slide-prev, #members .swiper .swiper-slide-next {
  transform: scale(0.9);
}
#members .swiper .swiper-slide-active {
  filter: brightness(1);
  transform: scale(1);
}
#members .swiper .swiper-slide-active img {
  border: #FFEF00 2px solid;
}
#members .swiper .swiper-button-next,
#members .swiper .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
}
#members .swiper .swiper-button-next:hover,
#members .swiper .swiper-button-prev:hover {
  opacity: 0.5;
}
#members .swiper .swiper-button-next:after,
#members .swiper .swiper-button-prev:after {
  position: absolute;
  content: ""; /* 空指定してデフォルトの矢印を消す */
  width: 0;
  height: 0;
  border-style: solid;
  top: -50%;
}
#members .swiper .swiper-button-next {
  right: 40px;
  width: 40px;
  height: 30%;
  background-color: rgba(0, 0, 0, 0.8);
}
#members .swiper .swiper-button-next::after {
  border-width: 16px 0 16px 20px;
  border-color: transparent transparent transparent #fff;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
#members .swiper .swiper-button-prev {
  width: 40px;
  left: 40px;
  height: 30%;
  background-color: rgba(0, 0, 0, 0.8);
}
#members .swiper .swiper-button-prev::after {
  border-width: 16px 20px 16px 0;
  border-color: transparent #fff transparent transparent;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
#members .swiper .swiper-slide img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  #culutures {
    margin-top: 100px;
  }
}
#culutures h2 {
  font-size: 16px;
  width: 90%;
  max-width: 1350px;
  margin: auto;
  margin-top: 10%;
  color: #333;
}
#culutures h2::before {
  content: "●";
  color: #FFEF00;
}
@media screen and (max-width: 767px) {
  #culutures h2 {
    font-size: 12px;
  }
}
#culutures img {
  width: 50%;
  max-width: 600px;
}
@media screen and (max-width: 767px) {
  #culutures img {
    width: 80%;
  }
}
#culutures .team {
  width: 100%;
  min-height: 120vh;
  position: relative;
  z-index: 5;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
#culutures .team::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../img/transition/transition-02.webp);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}
@media screen and (max-width: 767px) {
  #culutures .team::before {
    background-attachment: unset;
  }
}
#culutures .team div {
  width: 90%;
  max-width: 1350px;
  margin: auto;
  padding-top: 10%;
}
#culutures .team div img {
  width: 100%;
  max-width: 600px;
}
#culutures .team div p {
  color: #fff;
  display: inline-block;
  letter-spacing: 0.1em;
  line-height: 2em;
  font-size: 16px;
  font-weight: 500;
}
#culutures .team div a {
  display: inline-block;
  background-image: url(../img/menu_bg.svg);
  background-size: cover;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  font-size: 16px;
  font-weight: 900;
  line-height: 2em;
  margin-top: 2.5%;
  transition: 0.2s;
}
#culutures .team div a:hover {
  background-image: url(../img/noise_bg.gif);
  background-size: auto;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #culutures .team div a {
    font-size: 12px;
  }
}

#links {
  padding-bottom: 10%;
  background-color: #fff;
}
#links .transition-img {
  width: 100%;
  transform: translateY(-50%);
  position: relative;
  z-index: 6;
}
#links .transition-img img {
  width: 100%;
}
#links .link-flex {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1350px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  #links .link-flex {
    flex-direction: column;
  }
}
#links .link-flex a {
  display: block;
  width: 30%;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  #links .link-flex a {
    width: 90%;
  }
}
#links .link-flex a:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

#entry {
  width: 100%;
  background-color: #1a1a1a;
  background-image: url(https://magnet-s.biz-web.jp/recruit/img/entry_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 110vh;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  #entry {
    min-height: 10vh;
    padding-top: 10%;
    padding-bottom: 10%;
    background-size: cover;
  }
}
#entry::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../img/noise_bg.gif);
  background-size: auto;
  opacity: 0.5;
  z-index: 1;
}
#entry:hover p {
  color: #FFEF00;
}
#entry:hover nav {
  background-image: url(../img/noise_bg.gif);
  background-size: cover;
  color: #e8e500;
  transform: scale(1.05);
}
#entry a {
  display: block;
  padding-top: 10%;
  padding-bottom: 10%;
  width: 100%;
  position: relative;
  z-index: 2;
}
#entry a img {
  width: 60%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  #entry a img {
    width: 80%;
  }
}
#entry a p {
  color: #fff;
  font-weight: 500;
  text-align: center;
  font-size: 18.15px;
  width: 60%;
  margin: auto;
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  #entry a p {
    width: 80%;
    font-size: 16px;
    text-align: left;
    line-height: 2em;
  }
}
#entry a nav {
  background-color: #FFEF00;
  color: #1a1a1a;
  width: 200px;
  margin: auto;
  margin-top: 1em;
  font-size: 22.78px;
  padding: 0.5em;
  text-align: center;
  transition: 0.3s;
  transform: scale(1);
}

footer {
  background-color: #191919;
}
@media screen and (max-width: 767px) {
  footer {
    padding-bottom: 10%;
  }
}
footer .transition-img {
  width: 100%;
  transform: translateY(-100%);
}
footer .transition-img img {
  width: 100%;
  transform: translateY(10px);
}
footer .logo {
  width: 90%;
  max-width: 600px;
  margin-right: auto;
  transform: translateY(-50%);
  margin: auto;
  margin-bottom: 5%;
}
footer .logo img {
  width: 100%;
}
footer .footer-flex {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1350px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  footer .footer-flex {
    flex-direction: column;
  }
}
footer .footer-flex p {
  color: #fff;
  line-height: 3em;
}
@media screen and (max-width: 767px) {
  footer .footer-flex p {
    margin-top: 1em;
  }
}
footer .footer-flex a {
  display: block;
  color: #B2B2B2;
  font-size: 16px;
  line-height: 2em;
  padding-left: 1em;
  transition: 0.2s;
  font-weight: 100;
}
footer .footer-flex a:hover {
  color: #FFEF00;
}
footer .footer-flex .venue {
  flex: 1;
}
footer .footer-flex .menu {
  flex: 1;
}
footer .footer-flex .menu .corp-links {
  margin-top: 3em;
}
footer .footer-flex .menu .corp-links:last-of-type {
  margin-top: 0;
}
footer .footer-flex .menu .corp-links span {
  display: inline-block;
  transform: rotate(-45deg);
}
footer .c {
  display: block;
  width: 100%;
  background-color: #111;
  color: #fff;
  font-size: 16px;
  text-align: center;
  font-weight: 100;
  line-height: 2em;
  margin-top: 1em;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet::before, .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  transition: all 0.3s ease;
}

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

.swiper-container {
  width: 60%;
  margin: auto;
  height: 40vw;
  transition: opacity 0.6s ease;
}
.swiper-container.swiper-container-coverflow {
  padding-top: 2%;
}
.swiper-container.loading {
  opacity: 0;
  visibility: hidden;
}
.swiper-container:hover .swiper-button-prev,
.swiper-container:hover .swiper-button-next {
  visibility: initial;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  transition: 0.2s;
}
.swiper-slide:hover {
  opacity: 0.9;
}
.swiper-slide .entity-img {
  display: none;
}
.swiper-slide .content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 50%;
  padding-left: 5%;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}
.swiper-slide .content .members___prof {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
}
.swiper-slide .content .members___prof .catchcopy___1 {
  font-weight: 900;
  font-size: 3vw;
  display: inline-block;
  background-color: #000;
  padding: 0.5rem;
  color: #FFEF00;
}
.swiper-slide .content .members___prof .catchcopy___2 {
  font-weight: 500;
  font-size: 20px;
  display: inline-block;
  background-color: #000;
  padding: 0.5rem;
  padding-top: 0;
  color: #fff;
}
.swiper-slide .content .members___prof .recruitgenre {
  background-color: #fff;
  display: inline-block;
  padding: 0.5em;
  color: #333;
  font-size: 14px;
}
.swiper-slide .content .members___prof .syozoku {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.swiper-slide .content .title {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 10px;
}
.swiper-slide .content .caption {
  display: block;
  font-size: 16px;
  margin-top: 0.5em;
  line-height: 2em;
}
.swiper-slide .content .keireki {
  font-size: 16px;
  background-color: #FFEF00;
  color: #333;
  display: inline-block;
  padding-left: 0.5em;
  padding-right: 0.5em;
  line-height: 2em;
  text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
}

.swiper-button-prev {
  transform: translateX(0);
  opacity: 1;
}

.swiper-button-next {
  transform: translateX(0);
  opacity: 1;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 9px;
  position: relative;
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 0.4;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  border: 0px solid #fff;
  border-radius: 50%;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet:hover, .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  border-width: 1px;
}

@media (max-width: 1180px) {
  .swiper-slide .content .title {
    font-size: 25px;
  }
  .swiper-slide .content .caption {
    font-size: 12px;
  }
}
@media (max-width: 1023px) {
  .swiper-container {
    height: 40vw;
  }
  .swiper-container.swiper-container-coverflow {
    padding-top: 0;
  }
}
/* 共通部分 */
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 56%;
  transform: translateY(-50%);
  transition: 0.2s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 0.5;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  position: absolute;
  content: ""; /* 空指定してデフォルトの矢印を消す */
  width: 0;
  height: 0;
  border-style: solid;
  top: -50%;
}

/* 次へ矢印をカスタマイズ */
.swiper-button-next {
  right: -120px;
  width: 160px;
  height: 20%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: 0.2s;
}
.swiper-button-next:hover {
  opacity: 0.5;
}
.swiper-button-next::after {
  border-width: 16px 0 16px 20px;
  border-color: transparent transparent transparent #fff;
  left: 50%;
  top: 56%;
  transform: translateX(-50%) translateY(-50%);
}

/* 前へ矢印をカスタマイズ */
.swiper-button-prev {
  width: 160px;
  left: -120px;
  height: 20%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: 0.2s;
}
.swiper-button-prev:hover {
  opacity: 0.5;
}
.swiper-button-prev::after {
  border-width: 16px 20px 16px 0;
  border-color: transparent #fff transparent transparent;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.swiper-slide img {
  width: 100%;
  height: auto;
}

.under-message {
  background-image: url(../img/under-bg/message.webp);
}

.under-about {
  background-image: url(../img/under-bg/about.webp);
}

.under-number {
  background-image: url(../img/under-bg/about.webp);
}

.under-culuture {
  background-image: url(../img/under-bg/about.webp);
}

.under-interview {
  background-image: url(../img/under-bg/about.webp);
}

.under-faq {
  background-image: url(../img/under-bg/about.webp);
}

.under-hero {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0% 0%;
  margin-top: 80px;
  padding-bottom: 5%;
  padding-top: 5%;
  animation-name: under-bg;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes under-bg {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}
.under-hero div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.under-hero div img {
  width: 50%;
  transform: translateY(-100%);
  transition: 0.6s ease;
  transition-delay: 1.9s;
}
@media screen and (max-width: 767px) {
  .under-hero div img {
    width: 85%;
  }
}
.under-hero div img.loated {
  transform: translateY(0);
}
.under-hero div img.left, .under-hero div img.right {
  opacity: 0.3;
}
.under-hero div img.left {
  transition-delay: 1.8s;
}
.under-hero div img.right {
  transition-delay: 2s;
}

#under-contents-message {
  padding-top: 10%;
  padding-bottom: 10%;
}
#under-contents-message .power-box {
  width: 90%;
  max-width: 1350px;
  margin: auto;
}
#under-contents-message .power-box img {
  width: 100%;
  margin-top: 2em;
}
#under-contents-message .power-box .sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  #under-contents-message .power-box .sp_only {
    display: block;
  }
}
#under-contents-message .power-box .pc_only {
  display: block;
}
@media screen and (max-width: 767px) {
  #under-contents-message .power-box .pc_only {
    display: none;
  }
}
#under-contents-message .message {
  width: 90%;
  max-width: 1350px;
  margin: auto;
  margin-top: 3em;
  font-weight: 500;
  font-size: 18.15px;
  line-height: 2em;
  letter-spacing: 0.05em;
}
#under-contents-message .sonoda {
  width: 90%;
  max-width: 1350px;
  margin: auto;
  margin-top: 6em;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #under-contents-message .sonoda {
    flex-direction: column;
  }
}
#under-contents-message .sonoda img {
  width: 40%;
}
@media screen and (max-width: 767px) {
  #under-contents-message .sonoda img {
    width: 100%;
  }
}
#under-contents-message .sonoda p {
  width: 60%;
  padding-left: 2em;
  font-weight: 900;
  font-size: 22.78px;
  line-height: 3em;
}
@media screen and (max-width: 767px) {
  #under-contents-message .sonoda p {
    width: 100%;
    padding-left: 0;
  }
}
#under-contents-message .sonoda p span {
  display: block;
  line-height: 1.5em;
  font-weight: 500;
  font-size: 16px;
}

#under-contents-about {
  padding-top: 10%;
  padding-bottom: 10%;
}
#under-contents-about .about-content {
  text-align: center;
  font-weight: 500;
  font-size: 22.78px;
  line-height: 2em;
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1350px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  #under-contents-about .about-content {
    font-size: 16px;
    text-align: left;
  }
}
#under-contents-about .about-content span {
  font-size: 16px;
  color: #666;
  font-weight: 500;
  display: block;
}
@media screen and (max-width: 767px) {
  #under-contents-about .about-content span {
    font-size: 12px;
    color: 999;
  }
}
#under-contents-about .about-img {
  width: 100%;
  transform: translateY(-30%);
  position: relative;
  z-index: -1;
  animation: parallax-large-anim ease;
  animation-timeline: scroll();
}
@media screen and (max-width: 767px) {
  #under-contents-about .about-img {
    opacity: 0.3;
  }
}
@keyframes parallax-large-anim {
  from {
    transform: translateY(-30%);
  }
  to {
    transform: translateY(-100%);
  }
}
#under-contents-about .about-hall {
  width: 90%;
  max-width: 1350px;
  margin: auto;
  transform: translateY(-40%);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #under-contents-about .about-hall {
    transform: translateY(0%);
  }
}
#under-contents-about .about-hall h2 {
  font-size: 16px;
}
#under-contents-about .about-hall h2::before {
  content: "●";
  color: #FFEF00;
}
#under-contents-about .about-hall p {
  font-size: 18.15px;
  margin-top: 2em;
  line-height: 2em;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  #under-contents-about .about-hall p {
    font-size: 16px;
  }
}
#under-contents-about .consulting {
  width: 90%;
  margin: auto;
  max-width: 1350px;
  margin-top: 5%;
  text-align: center;
}
#under-contents-about .consulting .nigiwai {
  width: 100%;
}
#under-contents-about .consulting p {
  font-size: 18.15px;
  font-weight: 500;
  margin-top: 5em;
  line-height: 2em;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  #under-contents-about .consulting p {
    font-size: 16px;
    margin-top: 1em;
    text-align: left;
  }
}
#under-contents-about .consulting a {
  display: inline-block;
  background-color: #FFEF00;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  font-weight: 900;
  line-height: 2em;
  margin: auto;
  margin-top: 5%;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  #under-contents-about .consulting a {
    font-size: 16px;
  }
}
#under-contents-about .consulting a:hover {
  background-color: #333;
  color: #FFEF00;
}
#under-contents-about .consulting a span {
  transform: rotate(-45deg);
  display: inline-block;
}
#under-contents-about .right {
  width: 90%;
  margin-left: auto;
  height: 50vh;
  background-image: url(../img/venue/ssh.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  margin-top: 5%;
}
@media screen and (max-width: 767px) {
  #under-contents-about .right {
    background-attachment: unset;
  }
}
#under-contents-about .left {
  width: 90%;
  margin-right: auto;
  height: 50vh;
  background-image: url(../img/venue/omh.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  margin-top: 5%;
  margin-bottom: 10%;
}
@media screen and (max-width: 767px) {
  #under-contents-about .left {
    background-attachment: unset;
  }
}
#under-contents-about .entertainment {
  width: 90%;
  max-width: 1350px;
  margin: auto;
  margin-top: 5%;
}
#under-contents-about .entertainment img {
  width: 100%;
  margin-top: 3em;
}
#under-contents-about .entertainment p {
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.025em;
  font-size: 18.15px;
  margin-top: 2em;
}
#under-contents-about .entertainment p span {
  font-size: 16px;
  opacity: 0.8;
}
#under-contents-about .entertainment .flex_jisseki {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  #under-contents-about .entertainment .flex_jisseki {
    flex-direction: column;
  }
}
#under-contents-about .entertainment .flex_jisseki .txt {
  width: 20%;
}
@media screen and (max-width: 767px) {
  #under-contents-about .entertainment .flex_jisseki .txt {
    width: 100%;
  }
}
#under-contents-about .entertainment .flex_jisseki .txt span {
  font-size: 16px;
  opacity: 0.8;
  font-weight: 500;
}
#under-contents-about .entertainment .flex_jisseki .img {
  width: 80%;
}
@media screen and (max-width: 767px) {
  #under-contents-about .entertainment .flex_jisseki .img {
    width: 100%;
  }
}
#under-contents-about .accordion-area {
  width: 100%;
  /*アコーディオンタイトル*/
  /*アイコンの＋と×*/
  /*　closeというクラスがついたら形状変化　*/
  /*アコーディオンで現れるエリア*/
}
#under-contents-about .accordion-area section {
  word-wrap: 100%;
  margin-top: 2em;
}
#under-contents-about .accordion-area section h3 {
  width: 100%;
  background-color: #333;
  transition: 0.2s;
}
#under-contents-about .accordion-area section h3:hover {
  background-color: #666;
}
#under-contents-about .accordion-area section h3.close {
  background-color: #1a1a1a;
}
#under-contents-about .accordion-area section h3 img {
  width: 90%;
  max-width: 1350px;
  margin: auto;
}
#under-contents-about .accordion-area .title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  transition: all 0.5s ease;
}
@media screen and (max-width: 767px) {
  #under-contents-about .accordion-area .title {
    padding: 0;
  }
}
#under-contents-about .accordion-area .title::before,
#under-contents-about .accordion-area .title::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 4px;
  background-color: #fff;
}
#under-contents-about .accordion-area .title::before {
  top: 48%;
  right: 5%;
  transform: rotate(0deg);
}
#under-contents-about .accordion-area .title::after {
  top: 48%;
  right: 5%;
  transform: rotate(90deg);
}
#under-contents-about .accordion-area .title.close::before {
  transform: rotate(45deg);
}
#under-contents-about .accordion-area .title.close::after {
  transform: rotate(-45deg);
}
#under-contents-about .accordion-area .box {
  display: none; /*はじめは非表示*/
}
#under-contents-about .hospitality {
  width: 100%;
  background-color: #333;
  margin-top: 10%;
}
#under-contents-about .hospitality .transition {
  width: 100%;
  transform: translateY(-50%);
}
#under-contents-about .hospitality h2 {
  width: 90%;
  max-width: 1350px;
  margin: auto;
  text-align: center;
  margin-top: 5%;
}
#under-contents-about .hospitality p {
  color: #fff;
  font-weight: 500;
  font-size: 18.15px;
  width: 90%;
  max-width: 1350px;
  margin: auto;
  margin-top: 5em;
  letter-spacing: 0.025em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  #under-contents-about .hospitality p {
    margin-top: 2em;
    font-size: 16px;
  }
}
#under-contents-about .about-slider {
  transform: translateY(50%);
}
#under-contents-about .about-slider img {
  padding-left: 20px;
  padding-right: 20px;
}
#under-contents-about .about-flex {
  width: 90%;
  max-width: 1350px;
  margin: auto;
  margin-top: 5%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #under-contents-about .about-flex {
    flex-direction: column-reverse;
  }
}
#under-contents-about .about-flex p {
  font-weight: 500;
  font-size: 18.15px;
  line-height: 2em;
  width: 70%;
}
@media screen and (max-width: 767px) {
  #under-contents-about .about-flex p {
    width: 100%;
    font-size: 16px;
  }
}
#under-contents-about .about-flex img {
  width: 30%;
}
@media screen and (max-width: 767px) {
  #under-contents-about .about-flex img {
    width: 100%;
  }
}

.innner {
  width: 90%;
  max-width: 1350px;
  margin: auto;
  background-color: #fefefe;
  background-image: url(../img/bg.svg);
  padding-bottom: 10%;
}
.innner h2 {
  text-align: center;
  font-size: 43px;
  line-height: 4em;
}
@media screen and (max-width: 767px) {
  .innner h2 {
    font-size: 22.78px;
  }
}
.innner .main-img {
  width: 100%;
}
.innner .intro {
  margin-top: 2em;
  font-weight: 500;
  line-height: 2em;
  font-size: 18.15px;
  letter-spacing: 0.05em;
}
.innner .img-flex {
  display: flex;
  width: 100%;
  align-items: center;
  margin-top: 10%;
  margin-bottom: 10%;
}
.innner .img-flex img {
  width: 50%;
}
.innner .content {
  margin-top: 2em;
  font-weight: 900;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  font-size: 64.12px;
}
@media screen and (max-width: 767px) {
  .innner .content {
    font-size: 22.78px;
  }
}
.innner .content strong {
  display: block;
  font-size: 18.15px;
  line-height: 1.5em;
  color: #FFEF00;
}
.innner .content span {
  font-weight: 500;
  line-height: 1.5em;
  display: block;
  padding-left: 1em;
  font-size: 18.15px;
}
@media screen and (max-width: 767px) {
  .innner .content span {
    margin-top: 1em;
    padding-left: 0em;
  }
}
.innner .flow {
  background: #595959;
  color: #FFF;
  text-align: center;
  margin: 60px 10% 0;
  padding: 35px 0;
}
@media screen and (max-width: 767px) {
  .innner .flow {
    display: none;
  }
}
.innner .flow h3 {
  margin-top: 0;
}
.innner .flow h3 img {
  width: auto;
  height: 18px;
}
.innner .flow .subtit {
  margin-bottom: 40px;
}
.innner .flow .subtit::before, .innner .flow .subtit::after {
  content: "";
}
.innner .flow table {
  width: 100%;
  border: 0;
  margin: 0;
}
.innner .flow table th, .innner .flow table td {
  border: 0;
  padding: 0;
  width: auto;
}
.innner .flow table th {
  white-space: nowrap;
}
.innner .flow table.pc th {
  background: url(../img/about/bg_flow_th.png) bottom center no-repeat;
  background-size: auto 8px;
  font-size: 12px;
  padding-bottom: 18px;
}
.innner .flow table.pc td {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  text-align: center;
  vertical-align: top;
  padding-top: 5px;
}
.innner .flow table.pc td span {
  position: relative;
  writing-mode: vertical-lr;
  margin: 20px auto 0;
  white-space: nowrap;
  width: 1em;
  line-height: 1em;
  text-orientation: upright;
}
.innner .flow table.pc td span::before {
  content: "";
  position: absolute;
  background: #FFF;
  display: block;
  top: -20px;
  left: 7px;
  width: 1px;
  height: 15px;
}

.under-content-information {
  width: 100%;
  margin: auto;
  /*エリアの表示非表示と形状*/
  /*areaにis-activeというクラスがついた時の形状*/
}
.under-content-information .tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .under-content-information .tab {
    justify-content: center;
    gap: 1em;
    margin: auto;
    width: 100%;
  }
}
.under-content-information .tab li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 35%;
}
@media screen and (max-width: 767px) {
  .under-content-information .tab li {
    width: 45%;
  }
}
.under-content-information .tab li.active .change_btn {
  background-color: #000;
}
.under-content-information .tab .change_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #262626;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.under-content-information .tab .change_btn img {
  width: 60%;
  max-width: 250px;
}
.under-content-information .tab .change_btn p {
  width: 20%;
  margin-left: 5%;
}
.under-content-information .tab .change_btn p svg {
  width: 2em;
}
@media screen and (max-width: 767px) {
  .under-content-information .tab .change_btn p svg {
    width: 1em;
  }
}
.under-content-information .area {
  display: none; /*はじめは非表示*/
  opacity: 0; /*透過0*/
  background: #000;
  color: #fff;
  padding: 50px 20px;
  padding-bottom: 10%;
}
@media screen and (max-width: 767px) {
  .under-content-information .area {
    padding: 0;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 0%;
  }
}
.under-content-information .area .info_wrapper {
  width: 80%;
  max-width: 1350px;
  margin: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 4em;
  padding-bottom: 4em;
  padding-left: 1em;
  padding-right: 1em;
  border-top: 1px solid #333;
}
.under-content-information .area .info_wrapper:first-of-type {
  border-top: none;
}
@media screen and (max-width: 767px) {
  .under-content-information .area .info_wrapper {
    display: block;
    padding-left: 0;
    width: 98%;
    padding-top: 1em;
    padding-bottom: 3em;
  }
}
.under-content-information .area .info_wrapper .title {
  font-size: 18.15px;
  font-weight: 900;
  width: 20%;
  min-width: 150px;
}
.under-content-information .area .info_wrapper .title span {
  display: block;
  font-size: 16px;
  color: #595959;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .under-content-information .area .info_wrapper .title {
    line-height: 3em;
  }
}
.under-content-information .area .info_wrapper .contents {
  font-size: 16px;
  font-weight: 400;
  padding-right: 40px;
  width: 70%;
  line-height: 2em;
}
.under-content-information .area .info_wrapper .contents span {
  display: block;
}
@media screen and (max-width: 767px) {
  .under-content-information .area .info_wrapper .contents {
    width: 100%;
    padding-right: 0;
  }
}
.under-content-information .area.is-active {
  display: block; /*表示*/
  animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  animation-duration: 0s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.under-content-information .selection-flow {
  padding: 2rem;
  padding-bottom: 10%;
  width: 90%;
  max-width: 1480px;
  margin: auto;
}
.under-content-information .selection-flow .title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.under-content-information .selection-flow .title span {
  color: #8c6a3c;
}
.under-content-information .selection-flow .cards {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: baseline;
  justify-content: space-between;
}
.under-content-information .selection-flow .card {
  background-color: #252220;
  color: white;
  padding: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  flex: 1 1 calc(25% - 1.5rem);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease;
  position: relative;
}
.under-content-information .selection-flow .card .number {
  font-size: 2.2rem;
  font-weight: bold;
  color: white;
}
.under-content-information .selection-flow .card .number span {
  margin-left: 2rem;
}
.under-content-information .selection-flow .card .heading {
  font-size: 1.4rem;
  margin-top: 0.5rem;
  font-weight: bold;
}
.under-content-information .selection-flow .card .text {
  font-size: 0.95rem;
  margin-top: 0.5rem;
  line-height: 1.6;
}
.under-content-information .selection-flow .card:hover {
  transform: translateY(-5px);
}
@media (max-width: 1024px) {
  .under-content-information .selection-flow .card {
    flex: 1 1 calc(50% - 1.5rem);
  }
}
@media (max-width: 600px) {
  .under-content-information .selection-flow .card {
    flex: 1 1 100%;
  }
}

.under-content-culuture h2 {
  max-width: 1350px;
  width: 90%;
  margin: auto;
  margin-top: 10%;
}
.under-content-culuture h2 img {
  width: 80%;
}
.under-content-culuture h2 .emp {
  width: 50%;
  position: relative;
  z-index: 1;
}
.under-content-culuture h2.second {
  transform: translateY(30%);
}
.under-content-culuture h2 span {
  font-size: 16px;
  width: 90%;
  max-width: 1350px;
  margin: auto;
  margin-top: 10%;
  color: #333;
}
.under-content-culuture h2 span::before {
  content: "●";
  color: #FFEF00;
}
.under-content-culuture .container {
  max-width: 1350px;
  width: 90%;
  margin: auto;
  margin-top: 10%;
}
.under-content-culuture .container .innner {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .under-content-culuture .container .innner {
    flex-direction: column;
  }
}
.under-content-culuture .container .innner .list {
  font-size: 22.78px;
  color: #e8e500;
  font-weight: 900;
  min-width: 120px;
}
.under-content-culuture .container .innner .list span {
  display: block;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .under-content-culuture .container .innner .list span {
    display: inline;
  }
}
.under-content-culuture .container .innner .title {
  font-size: 64.12px;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .under-content-culuture .container .innner .title {
    font-size: 18.15px;
    margin-top: 1em;
  }
}
.under-content-culuture .img-box {
  width: 100%;
  height: 50vh;
  background-image: url(../img/transition/philosophy.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media screen and (max-width: 767px) {
  .under-content-culuture .img-box {
    background-attachment: inherit;
  }
}
.under-content-culuture .img-box2 {
  width: 70%;
  height: 50vh;
  background-image: url(../img/transition/emplo.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media screen and (max-width: 767px) {
  .under-content-culuture .img-box2 {
    background-attachment: inherit;
    height: 30vh;
    width: 100%;
  }
}
.under-content-culuture .txt-box {
  max-width: 1350px;
  width: 90%;
  margin: auto;
  font-size: 18.15px;
  font-weight: 500;
  line-height: 1.5em;
  margin-top: 2em;
}
.under-content-culuture .transition {
  width: 100%;
  margin-top: 5%;
}
.under-content-culuture .transition img {
  width: 100%;
}

#load-container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#load-container div {
  width: 50%;
  height: 50vh;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: -1;
}
#load-container .innner-1 {
  background-image: url(../img/slide-people/sitei___slide-1.jpg);
  animation-name: innner-1-bg;
  animation-duration: 0.05s;
  animation-timing-function: ease;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
}
@keyframes innner-1-bg {
  0% {
    background-image: url(../img/slide-people/sitei___slide-1.jpg);
  }
  100% {
    background-image: none;
  }
}
#load-container .innner-1::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #333;
  position: absolute;
  top: 0;
  right: 0;
  animation-name: innner-1;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-iteration-count: 2;
  animation-fill-mode: forwards;
}
@keyframes innner-1 {
  0% {
    width: 100%;
  }
  50% {
    width: 0%;
  }
  100% {
    width: 0%;
  }
}
#load-container .innner-2 {
  background-image: url(../img/slide-people/sitei___slide-2.png);
  animation-name: innner-2-bg;
  animation-duration: 0.05s;
  animation-timing-function: ease;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
}
@keyframes innner-2-bg {
  0% {
    background-image: url(../img/slide-people/sitei___slide-2.png;);
  }
  100% {
    background-image: none;
  }
}
#load-container .innner-2::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #333;
  position: absolute;
  bottom: 0;
  right: 0;
  animation-name: innner-2;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-iteration-count: 2;
  animation-fill-mode: forwards;
}
@keyframes innner-2 {
  0% {
    height: 100%;
  }
  50% {
    height: 0%;
  }
  100% {
    height: 0%;
  }
}
#load-container .innner-3 {
  background-image: url(../img/slide-people/sitei___slide-3.jpg);
  animation-name: innner-3-bg;
  animation-duration: 0.05s;
  animation-timing-function: ease;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
}
@keyframes innner-3-bg {
  0% {
    background-image: url(../img/slide-people/sitei___slide-3.jpg);
  }
  100% {
    background-image: none;
  }
}
#load-container .innner-3::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #333;
  position: absolute;
  top: 0;
  right: 0;
  animation-name: innner-3;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-iteration-count: 2;
  animation-fill-mode: forwards;
}
@keyframes innner-3 {
  0% {
    height: 100%;
  }
  50% {
    height: 0%;
  }
  100% {
    height: 0%;
  }
}
#load-container .innner-4 {
  background-image: url(../img/slide-people/sitei___slide-4.jpg);
  animation-name: innner-4-bg;
  animation-duration: 0.05s;
  animation-timing-function: ease;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
}
@keyframes innner-4-bg {
  0% {
    background-image: url(../img/slide-people/sitei___slide-4.jpg);
  }
  100% {
    background-image: none;
  }
}
#load-container .innner-4::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #333;
  position: absolute;
  top: 0;
  left: 0;
  animation-name: innner-4;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-iteration-count: 2;
  animation-fill-mode: forwards;
}
@keyframes innner-4 {
  0% {
    width: 100%;
  }
  50% {
    width: 0%;
  }
  100% {
    width: 0%;
  }
}
@keyframes line-scale-pulse-out-rapid {
  0% {
    transform: scaley(1);
  }
  80% {
    transform: scaley(0.3);
  }
  90% {
    transform: scaley(1);
  }
}
.line-scale-pulse-out-rapid > div {
  background-color: DeepPink;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  animation-fill-mode: both;
  display: inline-block;
  vertical-align: middle;
  animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
}

.line-scale-pulse-out-rapid > div:nth-child(2), .line-scale-pulse-out-rapid > div:nth-child(4) {
  animation-delay: -0.25s !important;
}

.line-scale-pulse-out-rapid > div:nth-child(1), .line-scale-pulse-out-rapid > div:nth-child(5) {
  animation-delay: 0s !important;
}

.under-content-interview {
  width: 90%;
  max-width: 1350px;
  margin: auto;
  margin-top: 10%;
}
.under-content-interview h2 {
  font-size: 16px;
  margin-top: 10%;
}
.under-content-interview h2::before {
  content: "●";
  color: #FFEF00;
}
.under-content-interview .title {
  width: 50%;
}
.under-content-interview .title img {
  width: 100%;
}
.under-content-interview .container {
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 2em;
}
.under-content-interview .container .inter-innner {
  width: 49%;
  position: relative;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .under-content-interview .container .inter-innner {
    width: 100%;
  }
}
.under-content-interview .container .inter-innner:hover {
  opacity: 0.7;
}
.under-content-interview .container .inter-innner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.under-content-interview .container .inter-innner span {
  position: absolute;
  bottom: 1%;
  left: 1%;
  font-size: 16px;
  color: #fff;
  z-index: 50;
}
.under-content-interview .container .inter-innner span strong {
  font-size: 35px;
}

.under-content-faq {
  /*アコーディオン全体*/
  /*アコーディオンタイトル*/
  /*アイコンの＋と×*/
  /*　closeというクラスがついたら形状変化　*/
  /*アコーディオンで現れるエリア*/
}
.under-content-faq h2 {
  font-size: 16px;
  width: 90%;
  max-width: 1350px;
  margin: 0 auto;
  margin-top: 10%;
}
.under-content-faq h2::before {
  content: "●";
  color: #FFEF00;
}
.under-content-faq .accordion-area {
  list-style: none;
  width: 90%;
  max-width: 1350px;
  margin: 0 auto;
}
.under-content-faq .accordion-area li {
  margin: 10px 0;
  transition: 0.3s;
}
.under-content-faq .accordion-area li:hover {
  background-color: rgba(192, 191, 191, 0.8);
}
.under-content-faq .accordion-area section {
  border: 1px solid #ccc;
}
.under-content-faq .title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 35px;
  padding: 3% 3% 3% 50px;
  transition: all 0.5s ease;
}
@media screen and (max-width: 767px) {
  .under-content-faq .title {
    font-size: 18.15px;
  }
}
.under-content-faq .title::before,
.under-content-faq .title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #333;
}
.under-content-faq .title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}
.under-content-faq .title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}
.under-content-faq .title.close::before {
  transform: rotate(45deg);
}
.under-content-faq .title.close::after {
  transform: rotate(-45deg);
}
.under-content-faq .box {
  display: none; /*はじめは非表示*/
  background: #f3f3f3;
  margin: 0 3% 3% 3%;
  padding: 3%;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .under-content-faq .box p {
    font-size: 16px;
  }
}

#interview-people {
  width: 100%;
  margin-bottom: 10%;
}
#interview-people .main-visual {
  width: 90%;
  margin: auto;
  margin-top: 10%;
}
#interview-people .main-visual img {
  width: 100%;
}
#interview-people .sub-visual {
  width: 90%;
  margin: auto;
  margin-top: 10%;
}
#interview-people .sub-visual img {
  width: 100%;
}
#interview-people .qa {
  width: 90%;
  max-width: 1350px;
  margin: auto;
  margin-top: 4em;
}
@media screen and (max-width: 767px) {
  #interview-people .qa {
    margin-top: 1em;
  }
}
#interview-people .qa span {
  font-weight: 500;
  font-size: 18.15px;
  padding-left: 15%;
  margin-top: 2em;
  display: block;
  line-height: 2em;
  letter-spacing: 0.05em;
  color: cadetblue;
}
@media screen and (max-width: 767px) {
  #interview-people .qa span {
    padding-left: 0%;
    line-height: 1.5em;
  }
}
#interview-people .qa p {
  font-weight: 900;
  font-size: 43px;
}
@media screen and (max-width: 767px) {
  #interview-people .qa p {
    font-size: 22.78px;
    margin-top: 2em;
  }
}
#interview-people .qa p span {
  font-size: 64.12px;
  padding-left: 0;
  display: inline;
  margin-right: 0.2em;
  font-weight: 900;
  color: #333;
}
@media screen and (max-width: 767px) {
  #interview-people .qa p span {
    font-size: 22.78px;
  }
}

#sp_entry {
  display: none;
}
@media screen and (max-width: 767px) {
  #sp_entry {
    display: block;
    position: fixed;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 999;
  }
  #sp_entry.none {
    display: none;
  }
}

.under-content-person {
  padding-top: 10%;
}
.under-content-person .read {
  width: 90%;
  max-width: 1350px;
  margin: auto;
  font-size: 28.33px;
  line-height: 2em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .under-content-person .read {
    font-size: 16px;
  }
}
.under-content-person .read span {
  font-weight: 900;
  font-size: 43px;
  line-height: 3em;
}
@media screen and (max-width: 767px) {
  .under-content-person .read span {
    font-size: 18.15px;
    line-height: 2em;
  }
}
.under-content-person .child:first-of-type {
  transform: translateY(-50px);
}

.sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: block;
  }
}

.pc_only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
}

#under-contents-number {
  width: 90%;
  margin: auto;
  max-width: 1350px;
  padding-bottom: 100px;
}
#under-contents-number div {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  #under-contents-number div {
    flex-direction: column;
  }
}
#under-contents-number div img {
  display: block;
  max-width: 890px;
  margin: auto;
  margin-top: 15%;
}
#under-contents-number div img.w-100 {
  width: 100%;
}
#under-contents-number div img.w-45 {
  width: 45%;
}
@media screen and (max-width: 767px) {
  #under-contents-number div img.w-45 {
    width: 100%;
  }
}

#policy {
  color: blue;
  transition: 0.2s;
}
#policy:hover {
  color: #FFEF00;
}

#formWrap {
  margin-top: 100px;
}
#formWrap form {
  margin-top: 50px;
}
#formWrap .entry-b {
  margin-top: 1em;
}
#formWrap .form-mast {
  color: #fff;
  background: red;
  font-size: 0.8em;
  padding-left: 0.5em;
  margin-left: 0.5em;
  padding-right: 0.5em;
}
#formWrap #submit {
  opacity: 1;
  background-color: #FFEF00;
  transition: 0.2s;
  cursor: pointer;
}
#formWrap #submit:hover {
  opacity: 0.5;
}

#scroll-box {
  border: 1px solid #ccc;
  padding: 1.5em;
  overflow-y: scroll;
  height: 300px;
}

/*========= ナビゲーションのためのCSS ===============*/
#menu___container {
  position: fixed;
  z-index: 999;
  top: 50%;
  right: -120%;
  width: 30vw;
  max-width: 520px;
  min-width: 420px;
  height: 100vh; /*ナビの高さ*/
  /*動き*/
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  #menu___container {
    min-width: 0;
  }
}

/*アクティブクラスがついたら位置を0に*/
#menu___container.panelactive {
  right: 1%;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  #menu___container.panelactive {
    right: 70%;
  }
}
#menu___container.panelactive #menu___bg {
  background-color: #000;
  opacity: 0.4;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: -15px;
  left: 0;
  z-index: 90;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

/*ナビゲーションの縦スクロール*/
#menu___container.panelactive #menu___item {
  position: fixed;
  z-index: 999;
  width: 30vw;
  max-width: 520px;
  min-width: 420px;
  height: 95vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(56, 56, 56, 0.8);
  border: 3px solid rgba(232, 232, 0, 0.2);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-radius: 45px;
  top: 0;
}
@media screen and (max-width: 767px) {
  #menu___container.panelactive #menu___item {
    min-width: 0;
    width: 100%;
  }
}

/*ナビゲーション*/
#menu___container ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  left: 5%;
  top: 5%;
  margin-top: 2%;
  width: 90%;
}

/*リストのレイアウト設定*/
#menu___container li {
  list-style: none;
  text-align: left;
  font-size: 16px;
  color: #fff;
}
#menu___container li.menu___close {
  border-bottom: 1px solid rgba(232, 232, 0, 0.8);
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  width: 100%;
}
#menu___container li.menu___index {
  font-weight: bold;
  font-size: 22.78px;
  line-height: 2em;
  margin-top: 1.5em;
  padding-left: 0;
}
#menu___container li.menu___index:first-of-type {
  margin-top: 0;
}
#menu___container li.menu___index img {
  width: 60%;
}

#menu___container li a {
  padding-left: 2em;
  color: #fff;
  text-decoration: none;
  line-height: 2em;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: normal;
  transition: 0.2s ease;
  opacity: 0.7;
}
#menu___container li a:hover {
  opacity: 1;
}

/*========= ボタンのためのCSS ===============*/
.menu___btn {
  display: none;
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 0px;
  right: 255px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-image: url(../img/menu_bg.svg);
  background-size: cover;
  mix-blend-mode: difference;
  border-radius: 40px;
  border: 3px solid rgba(232, 232, 0, 0.2);
}
.menu___btn:hover span:nth-of-type(1) {
  transform: translateX(2px);
}
.menu___btn:hover span:nth-of-type(2) {
  transform: translateX(-2px);
}
.menu___btn:hover {
  background-color: rgba(43, 41, 41, 0.8);
}
@media screen and (max-width: 767px) {
  .menu___btn {
    top: 40px;
    display: block;
    right: 20px;
  }
}

/*×に変化*/
.menu___btn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 12px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  width: 45%;
}

.menu___btn span:nth-of-type(1) {
  top: 18px;
  transform: translateX(-2px);
  transition: 0.2s;
}

.menu___btn span:nth-of-type(2) {
  top: 25px;
  transform: translateX(2px);
  transition: 0.2s;
}

.menu___btn span:nth-of-type(3) {
  top: 31px;
}

.menu___btn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.menu___btn.active span:nth-of-type(2) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.menu___btn.active {
  opacity: 0;
}

#members___blocks {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #members___blocks {
    display: none;
  }
}
#members___blocks .m___container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1480px;
  margin: auto;
}
#members___blocks .m___container a {
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 2%;
  height: 50vh;
  min-height: 580px;
  position: relative;
  background-color: #fff;
  border: 1px solid #ddd;
  transition: 0.4s;
}
#members___blocks .m___container a::before {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../img/noise_bg.gif);
  background-size: auto;
  opacity: 0.2;
  transition: 0.3s;
}
#members___blocks .m___container a div {
  width: 80%;
  height: 80%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
#members___blocks .m___container a img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
#members___blocks .m___container a:hover {
  background-color: transparent;
}
#members___blocks .m___container a:hover::before {
  opacity: 1;
}
#members___blocks .m___container a:hover p span {
  background-color: #fff;
  color: #111;
}
#members___blocks .m___container a:hover div img {
  transform: scale(1.05);
  opacity: 0.9;
  filter: brightness(110%);
}
#members___blocks .m___container a:hover ul {
  color: #fff;
}
#members___blocks .m___container a p {
  position: absolute;
  bottom: 25%;
  left: 20px;
  color: #fff;
}
#members___blocks .m___container a p span {
  display: inline-block;
  background-color: #111;
  font-size: 14px;
  font-weight: 500;
  padding: 0.5em;
  margin-top: 0.5em;
  letter-spacing: 0.1em;
}
#members___blocks .m___container a ul {
  font-size: 13px;
  color: #666;
  font-weight: 500;
  text-align: left;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1em;
  line-height: 2em;
}
#members___blocks .m___container a ul li {
  display: inline-block;
  margin-left: 1em;
}

#noiseCanvas {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -1;
  opacity: 1;
}

.culture___conatiner {
  background-color: #000;
  padding-top: 20%;
  padding-bottom: 20%;
}
.culture___conatiner .culture_venue {
  width: 90%;
  max-width: 1480px;
  margin: auto;
}
.culture___conatiner .culture_venue .pack {
  font-size: 35px;
  font-weight: 900;
  color: #fff;
  line-height: 3em;
}
.culture___conatiner .culture_venue .pack p {
  font-size: 16px;
  letter-spacing: 0.2em;
  line-height: 2em;
  font-weight: 500;
}
.culture___conatiner .c___kaijou_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin: auto;
  gap: 2rem;
  margin-top: 5%;
}
@media screen and (max-width: 767px) {
  .culture___conatiner .c___kaijou_flex {
    display: block;
    width: 95%;
  }
}
.culture___conatiner .c___kaijou_flex .card {
  width: 23%;
}
@media screen and (max-width: 767px) {
  .culture___conatiner .c___kaijou_flex .card {
    width: 100%;
    margin-top: 10%;
    line-height: 2em;
  }
}
.culture___conatiner .c___kaijou_flex .card div {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .culture___conatiner .c___kaijou_flex .card div {
    height: 300px;
    align-items: flex-start;
  }
}
.culture___conatiner .c___kaijou_flex .card div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
  border-radius: 16px;
  transition: opacity 0.25s ease;
}
.culture___conatiner .c___kaijou_flex .card p {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
}
.culture___conatiner .c___kaijou_flex .card p span {
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1em;
}
.culture___conatiner .fk {
  width: 90%;
  max-width: 1480px;
  margin: auto;
  color: #fff;
  margin-top: 10%;
}
.culture___conatiner .fk h3 {
  font-size: 35px;
  font-weight: 900;
  color: #fff;
  line-height: 3em;
}
.culture___conatiner .fk .fk_container {
  width: 100%;
}
.culture___conatiner .fk .fk_container .pk {
  display: flex;
  padding-top: 4em;
  padding-bottom: 4em;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .culture___conatiner .fk .fk_container .pk {
    display: block;
    padding-left: 0;
    padding-top: 1em;
    padding-bottom: 1em;
  }
}
.culture___conatiner .fk .fk_container .pk .name {
  width: 30%;
  padding-left: 10%;
  font-size: 22.78px;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .culture___conatiner .fk .fk_container .pk .name {
    padding-left: 0;
    font-size: 35px;
    line-height: 3em;
    width: 100%;
  }
}
.culture___conatiner .fk .fk_container .pk .point {
  width: 70%;
  padding-left: 20%;
  font-weight: 500;
  line-height: 2.5em;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  .culture___conatiner .fk .fk_container .pk .point {
    padding-left: 1em;
    line-height: 2.5em;
    font-weight: 300;
    font-size: 16px;
    width: 100%;
  }
}
.culture___conatiner .fk .fk_container .pk .point span {
  display: block;
}

.work___genre {
  width: 100%;
  padding-top: 10%;
  padding-bottom: 10%;
}
.work___genre .work___wrap {
  width: 90%;
  max-width: 1480px;
  margin: auto;
}
.work___genre .work___wrap a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #fbfbfb;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 60px;
  padding-bottom: 60px;
  border: 1px solid #c4c4c4;
  transition: 0.2s ease;
}
.work___genre .work___wrap a:hover {
  background-color: #ebebeb;
}
.work___genre .work___wrap a:hover img {
  transform: scale(1.05);
}
.work___genre .work___wrap a .title {
  font-size: 35px;
  font-weight: 900;
  width: 30%;
  min-width: 150px;
}
.work___genre .work___wrap a .title span {
  display: block;
  font-size: 16px;
  color: #595959;
  line-height: 2em;
}
.work___genre .work___wrap a .main {
  font-size: 16px;
  font-weight: 400;
  padding-right: 40px;
  width: 40%;
  line-height: 2em;
}
.work___genre .work___wrap a div {
  width: 30%;
  height: 250px;
  overflow: hidden;
}
.work___genre .work___wrap a div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s ease;
}/*# sourceMappingURL=magnet-s.css.map */