@charset "UTF-8";

/* ==== color ========================== */
:root {
  --color-black: #000000;
  --color-white: #ffffff;

  --color-primary: #FEE800;

  --ja: "Noto Sans JP", sans-serif;
  --en: "Roboto Condensed", sans-serif;
  --header: 7rem;
  scroll-padding: var(--header);
}



/*================================================
 *  一般・共通設定
 ================================================*/
html {
  /* 1280>> 10px */
  font-size: clamp(1px, 0.78125vw, 100px);
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  background: var(--color-primary);
  color: var(--color-black);
  line-height: 1.8;
}



a {
  text-decoration: none;
  transition: all .4s;
}

a:hover {
  opacity: 1;
}

img {
  max-width: 100%;

  display: block;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}

/* タイトル */


@media screen and (max-width:767px) {
  html {
    font-size: 2.666vw;
  }

  body {
    font-size: 1.2rem;
  }
}

/*================================================
 *  preloader
 ================================================*/

#preloader {
  position: fixed;
  inset: 0;
  background: var(--color-primary);
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity .5s ease, visibility .5s ease;
}

#preloader.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#preloader .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.pre_logo {
  width: 50%;
  opacity: 1;
}


.pre_logo img {
  opacity: 1;
  transition: opacity .5s ease;
  transition-delay: .2s;
}

.pre_logo.is-hide img {
  opacity: 0;
}


.obi {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.obi::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  height: 100%;
  background: var(--color-black);
  transform: translate(-101%, 0);
}

.pre_logo.is-hide .obi::before {
  animation: mask-bg .8s cubic-bezier(0.8, 0, 0.170, 1);
}


@keyframes mask-bg {
  0% {
    transform: translate(-101%, 0)
  }

  40%,
  60% {
    transform: translate(0, 0%)
  }

  100% {
    transform: translate(100%, 0)
  }
}

.pre_catch {
  font-size: 4.8rem;
  font-weight: 900;
  font-style: italic;
  width: 100%;
  line-height: 1.6;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pre_logo .mask {
  width: fit-content;
  margin: 0 auto;
  white-space: nowrap;
}

.pre_catch span {
  height: 17rem;
  display: block;
  transition-delay: 1.6s;
  transition: width .8s ease;
}

.pre_logo.is-hide .mask span {
  width: 100%;
  display: block;
}

@media screen and (max-width:767px) {
  .pre_logo {
    width: 90%;

  }

  .pre_catch {
    font-size: 2.6rem;
  }

  .pre_catch span {
    height: 8.4rem;
  }
}

/*================================================
 *  header / ヘッダー
 ================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transform: translateY(-100%);
  transition: .4s;
  transition-delay: 2s;
}

.is-loaded header {
  transform: translateY(0%);
}

.nav_inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.nav_left {
  width: 25rem;
  position: relative;
  z-index: 202;
}

.nav_menu {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 2rem;
}

.nav_menu li a {
  font-weight: 700;
  font-style: italic;
  font-family: var(--en);
}

.nav_menu li a span {
  display: none;
  font-family: var(--ja);
}

.nav_menu .join a {
  display: block;
  background: var(--color-primary);
  padding: 1rem 2rem 1rem 3rem;
  line-height: 1;
}

.nav_menu .join a:hover {
  color: var(--color-white);
  background: var(--color-black);
}

.nav_menu .join a div {
  font-size: 2.8rem;
  position: relative;
  padding-right: 3rem;
}

.nav_menu .join a div::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/icon_arrow.webp);
  width: 2.7rem;
  height: 2.7rem;
  top: 50%;
  right: 0rem;
  transform: translateY(-50%);
}

.nav_menu .join a:hover div::before {
  animation: 1s cubic-bezier(0.86, 0, 0.07, 1) infinite button-arrow;
  background-image: url(../images/icon_arrow_w.webp);
}

.nav_menu .join a span {
  display: block;
  font-size: 1rem;
}

@keyframes button-arrow {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }

  29% {
    opacity: 0;
    -webkit-transform: translate(8px, -50%);
    transform: translate(8px, -50%);
  }

  30% {
    -webkit-transform: translate(-8px, -50%);
    transform: translate(-8px, -50%);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}

@media screen and (max-width:767px) {
  .nav_left {
    width: 22rem;
  }

  .hamburger {
    position: absolute;
    right: 0;
    top: 0;
    width: 5rem;
    height: 5rem;
    cursor: pointer;
    z-index: 300;
    transition: all .1s ease-out;
  }

  /* line open */
  .hamburger__line {
    position: absolute;
    left: 50%;
    width: 60%;
    height: 0.2rem;
    background-color: var(--color-black);
    transition: all .4s ease-out;
    transform: translateX(-50%);
  }

  .hamburger__line--1 {
    top: 35%;
  }

  .hamburger__line--2 {
    top: 50%;
  }

  .hamburger__line--3 {
    top: 65%;
  }

  /* line close */
  .open_nav .hamburger__line--1 {
    transform: translateX(-50%) rotate(35deg);
    top: 50%;
  }

  .open_nav .hamburger__line--2 {
    width: 0;
    left: 50%;
  }

  .open_nav .hamburger__line--3 {
    transform: translateX(-50%) rotate(-35deg);
    top: 50%;
  }

  /* ハンバーガーメニュー内 */
  nav.global__nav {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-primary);
    transition: all .3s ease-out;
    z-index: 200;
    overflow-y: scroll;
    padding: 8rem 2rem;
    opacity: 0;
    pointer-events: none;
  }

  /* 表示 */
  .open_nav .global__nav {
    opacity: 1;
    pointer-events: fill;
  }


  .nav_menu {
    display: block;
  }

  .nav_menu li {
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .nav_menu li a {
    font-size: 2.4rem;
  }

  .nav_menu .join a span,
  .nav_menu li a span {
    display: block;
    margin-top: 0;
    font-size: 1.2rem;
  }

  .nav_menu .join a span {
    margin-top: 0.5rem;
  }

  .nav_menu .join a {
    background: var(--color-black);
    color: var(--color-white);
    padding: 2rem 2rem;
  }

  .nav_menu .join a div::before {
    background-image: url(../images/icon_arrow_w.webp);
  }
}


/*================================================
 *  section btn
 ================================================*/
section {
  position: relative;
  padding-bottom: 6rem;
}

.section {
  padding-top: 6rem;
}

.wrap_lg {
  width: 110rem;
  margin-right: auto;
  margin-left: auto;
}

.hd {
  margin-bottom: 2rem;
}

.hd .en {
  font-family: var(--en);
  font-size: 3.2rem;
  line-height: 1.6;
  font-weight: 700;
  display: block;
}

.hd .ja {
  font-size: 3.8rem;
  font-weight: 900;
  display: block;
  font-style: italic;
  line-height: 1.3;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}

.loop_swiper-r .swiper-wrapper,
.loop_swiper-l .swiper-wrapper {
  transition-timing-function: linear;
}

@media screen and (max-width:767px) {
  .wrap_lg {
    width: 34.5rem;
  }

  .hd .ja {
    font-size: 2.4rem;
  }

  section {
    padding-bottom: 4rem;
  }

  .section {
    padding-top: 4rem;
  }
}

/*================================================
* mainVisual
================================================*/

#mainVisual {
  /* overflow: clip; */
  padding-bottom: 0;
}

#mainVisual .mv_swiper .swiper-slide {
  height: 65.5rem;
}

#mainVisual .mv_swiper .swiper-slide img {
  overflow: hidden;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.mv_catch {
  position: absolute;
  width: 127.3rem;
  left: 0;
  bottom: -2rem;
  z-index: 2;
  overflow: hidden;
}

.mv_catch .mask {
  transition-delay: .6s;
}


.mv_catch .mask span,
.mv_catch .mask span img {
  height: 23.4rem;
}



@media screen and (max-width:767px) {
  #mainVisual .mv_swiper .swiper-slide {
    height: 35.8rem;
  }

  .mv_catch {
    position: absolute;
    width: 37.5rem;
    left: 0;
    bottom: -2rem;
    z-index: 2;
  }


  .mv_catch .mask span,
  .mv_catch .mask span img {
    height: 22rem;
  }
}


/*================================================
* message
================================================*/
#message {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

#message h2 {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 4rem;
}

#message h2 img {
  width: 20rem;
}

.message_txt p {
  font-size: 1.8rem;
  line-height: 2;
  opacity: .1;
}

.ms_img {
  position: absolute;
}

.ms_img01 {
  width: 21rem;
  top: 8rem;
  left: 61.4rem;
}

.ms_img02 {
  width: 40rem;
  top: 16rem;
  left: 87rem;
}

.ms_img03 {
  width: 15rem;
  top: 40rem;
  left: 69.5rem;
}

.ms_img04 {
  width: 68.7rem;
  top: 54rem;
  right: 0;
}

.message_txt-lg {
  width: 80rem;
  margin-top: 6rem;
  position: relative;
  z-index: 1;
  left: -3rem;
}

.message_txt-lg .mask span,
.message_txt-lg .mask span img {
  height: 34rem;
}

.clip_box {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 4rem;
}

.clip_box.mt0 {
  margin-top: 0;
}

.clip_over {
  position: absolute;
  inset: 0;
  color: var(--color-black);
  width: 100%;
  clip-path: inset(0 100% 0 0);
  height: 100%;
  opacity: 1 !important;
}

.clip_box.in_ani.on .clip_over {
  /* animation: reveal .4s cubic-bezier(0.13, 0.78, 0.38, 0.98) forwards; */
  animation: reveal .6s ease-out forwards;
  animation-delay: .8s;
}

@keyframes reveal {
  to {
    clip-path: inset(0 0 0 0);
  }

}



@media screen and (max-width:767px) {
  #message {
    padding-top: 8rem;
    padding-bottom: 21rem;
  }

  #message h2 {
    margin-bottom: 25rem;
  }


  .message_txt p {
    font-size: 1.6rem;
  }

  .clip_box {
    margin-top: 3.2rem;
  }

  .ms_img01 {
    width: 12rem;
    top: 17rem;
    left: 0;
  }

  .ms_img02 {
    width: 22.8rem;
    top: 21.6rem;
    left: auto;
    right: 0;
  }

  .ms_img03 {
    width: 8.5rem;
    top: 33.6rem;
    left: 4.6rem;
  }

  .ms_img04 {
    width: 34rem;
    top: auto;
    right: 0;
    bottom: 0;
  }

  .message_txt-lg {
    width: 37rem;
    margin-top: 2rem;
    left: -1.5rem;
  }

  .ms_img .delay10 {
    transition-delay: 0s;
  }

  .message_txt-lg .mask span,
  .message_txt-lg .mask span img {
    height: 16rem;
  }
}

/*================================================
* about
================================================*/
#about .hd .ja {
  font-size: 5rem;
}

#about p {
  margin-bottom: 2rem;
}

.about_slide .swiper-slide {
  width: 20rem;
  margin-right: 1rem;
}

.about_slide .swiper {
  margin-top: 1rem;
}

@media screen and (max-width:767px) {
  #about {
    padding-top: 4rem;
  }

  #about .hd .ja {
    font-size: 2.8rem;
  }
}

/*================================================
* giving
================================================*/
#giving {
  padding-bottom: 6rem;
}

#giving .wrap {
  width: calc(100% - 9rem);
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.giving_txt ul {
  margin: 4rem 0 2rem;
}

.giving_txt ul li {
  font-style: italic;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.8rem;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  margin-top: 1rem;
}

.giving_txt ul li span {
  font-family: var(--en);
  font-size: 2rem;
  font-feature-settings: normal;
}

.giving_img {
  width: 60rem;
}

@media screen and (max-width:767px) {
  #giving .wrap {
    width: 100%;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .giving_txt {
    width: 34.5rem;
    margin: 0 auto;
  }

  .giving_txt ul li {
    font-size: 1.6rem;
  }

  .giving_txt ul li span {
    font-size: 1.4rem;
    position: relative;
    top: 0.3rem;
  }

  .giving_img {
    width: 100%;
  }
}

/*================================================
* numbers
================================================*/
#numbers {
  padding-bottom: 4rem;
}

.num_col {
  display: flex;
  align-items: stretch;
  justify-content: start;
  gap: 1rem;
  margin-top: 1rem;
  font-weight: 700;
}

.num_col.clo2 .num_item {
  width: calc((100% - 1rem) / 2);
}

.num_col.middle .item03 {
  width: 72.6rem
}

.num_col.middle .item04 {
  width: 35.2rem
}

.num_item {
  padding: 2rem 0;
  background: rgb(255 255 255 / 40%);
}

.num_item h3 {
  font-size: 2.8rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 3rem;
}

.num_item p {
  text-align: center;
  margin-top: 1.5rem;
  font-weight: 500;
}

.num_item p strong {
  font-size: 2rem;
}

.num_line {
  display: flex;
  align-items: end;
  justify-content: center;
  line-height: 1;
}

.num_icon.w10 {
  width: 10rem;
  margin-right: 1rem;
}

.num_box {
  display: flex;
  align-items: end;
  justify-content: center;
}

.num.en {
  font-family: var(--en);
}

.num10 {
  font-size: 10rem;
  margin-left: -0.4rem;
}

.num8.mrl,
.num10.mrl {
  margin-right: -0.4rem;
}

.num8 {
  font-size: 8rem;
  margin-left: -0.2rem;
}

.num3 {
  font-size: 3rem;
}

.unit {
  font-size: 2.8rem;
  position: relative;
  top: -1.5rem;
}

.unit.f12 {
  font-size: 1.2rem;
}

.unit.f10 {
  font-size: 1rem;
  top: -0.5rem;
}

.unit.obi {
  background: var(--color-black);
  color: var(--color-white);
  width: fit-content;
  padding: 0.3rem 0.3rem;
  top: -3rem;
  margin-right: 0.3rem;
}

.unit.obi.f10 {
  top: -1rem;
}

/* box03 */
.num_item.item03 {
  padding-left: 1.8rem;
  padding-right: 1.8rem;
}

.num_item.item03 .inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.num_item.item03 .cnt {
  background-image: repeating-linear-gradient(180deg, #000000, #000000 2px, transparent 2px, transparent 4px);
  background-position: right top;
  background-repeat: repeat-y;
  background-size: 1px 100%;
  padding: 0.5rem 0;
}

.num_item.item03 .cnt:last-of-type {
  background-image: none;
}

.num_item.item03 h4 {
  text-align: center;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.num_item.item03 h4 img {
  width: 2.6rem;
}


.num_item.item03 .btm {
  margin-top: 2rem;
}

.num_item.item03 .cnt.cnt03 .btm {
  margin-top: 0rem;
}

.num_col.middle .box04 p {
  margin-top: 9rem;
}

@media screen and (max-width:767px) {
  .num_col {
    flex-wrap: wrap;
  }

  .num_col.clo2 .num_item {
    width: 100%;
  }

  .num_col.middle .box03 {
    width: 100%;
  }

  .num_col.middle .box04 {
    width: 100%;
  }

  .num_item h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }

  .num_icon.w10 {
    width: 6.5rem;
    margin-right: 0.5rem;
    position: relative;
    top: -1rem;
  }

  .num8 {
    margin: 0;
  }

  .num10 {
    font-size: 8rem;
    margin-left: -0.4rem;
  }

  .num8.mrl,
  .num10.mrl {
    margin-left: 0rem;
  }

  .unit {
    font-size: 1.8rem;
    position: relative;
    top: -1.5rem;
  }


  .num_item.item03 .inner {
    grid-template-columns: repeat(1, 1fr);
  }


  .num_item.item03 .cnt {
    background-image: repeating-linear-gradient(90deg, rgb(0 0 0 / 55%), rgb(0 0 0 / 55%), 2px, transparent 2px, transparent 4px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 1px;
    padding: 2rem 0;
  }

  .num_item.item03 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .num_item.item03 .cnt.cnt01 {
    padding-top: 0;
  }

  .num_col.middle .box04 p {
    margin-top: 1.5rem;
  }

  .num_item.item03 .btm {
    margin-top: 0rem;
  }

}

/*================================================
* honne
================================================*/
#honne .hd {
  margin-bottom: 1rem;
}

#honne .hd .ja {
  font-size: 2.8rem;
}

.honne_item {
  padding: 2rem 0;
  background: rgb(255 255 255 / 70%);
  font-weight: 700;
}

.honne_item.item01 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  padding: 4rem 0;
}

.honne_item.item01 h3 {
  font-size: 1.8rem;
  line-height: 1.3;
  text-align: left;
}

.honne_item.item01 h3 span {
  display: block;
  width: fit-content;
  font-size: 6.2rem;
  position: relative;
  z-index: 1;
}

.honne_item.item01 h3 span::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1rem;
  bottom: 0.6rem;
  left: 0;
  background: var(--color-primary);
  z-index: -1;
}

.honne_item.item01 p {
  font-size: 2.8rem;
  line-height: 1.6;
}

.hon_col {
  display: flex;
  align-items: stretch;
  justify-content: start;
  gap: 1rem;
  margin-top: 1rem;
  font-weight: 700;
}

.hon_col.col2 .honne_item {
  width: calc((100% - 1rem) / 2);
}

.honne_item h3 {
  text-align: center;
  font-size: 2.8rem;
}

.honne_item.item02 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.honne_item h4 img {
  width: auto;
  max-width: unset;
  height: 6.1rem;
}

.honne_item.item02 p {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
}

.item02_cntBox-col {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.5rem;
}


.honne_item.item03 {
  position: relative;
  height: 36rem;
}

.honne_item.item03 .fuki {
  position: absolute;
}


.honne_item.item03 .fuki01 {
  width: 24.7rem;
  top: 7rem;
  left: 4rem;
}

.honne_item.item03 .fuki02 {
  width: 21.6rem;
  top: 6.7rem;
  right: 3.5rem;
}

.honne_item.item03 .fuki03 {
  width: 20.6rem;
  top: 19rem;
  left: 1rem;
}

.honne_item.item03 .fuki04 {
  width: 29.3rem;
  top: 21.5rem;
  right: 2.6rem;
}

@media screen and (max-width:767px) {
  #honne .hd .ja {
    font-size: 2rem;
  }


  .honne_item.item01 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    padding: 3rem 0;
  }

  .honne_item.item01 h3 {
    font-size: 1.4rem;
    text-align: center;
  }

  .honne_item.item01 h3 span {
    font-size: 4.2rem;
    margin-top: 2rem;
  }

  .honne_item.item01 p {
    font-size: 2rem;
  }

  .item02_cntBox-col {
    gap: 0;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 0;
  }

  .hon_col {
    flex-wrap: wrap;
  }

  .hon_col.col2 .honne_item {
    width: 100%;
  }

  .honne_item h3 {
    font-size: 2.2rem;
  }


  .honne_item.item03 {
    height: 58rem;
  }

  .honne_item.item03 .fuki01 {
    top: 6rem;
    left: 1.2rem;
  }

  .honne_item.item03 .fuki02 {
    top: 17.5rem;
    right: 0.7rem;
  }

  .honne_item.item03 .fuki03 {
    top: 29.7rem;
    left: 0.5rem;
  }

  .honne_item.item03 .fuki04 {
    top: 44rem;
    right: 0.5rem;
  }
}

/*================================================
* culture
================================================*/
#culture .lead {
  margin-bottom: 2rem;
}

.culture_box {
  width: calc(100% - 9rem);
  margin-bottom: 4rem;
}

.culture_box.right {
  margin-left: auto;
}

.culture_box:last-of-type {
  margin-bottom: 0;
}

.culture_img {
  position: relative;
  margin-bottom: 2rem;
}

.culture_ttl {
  position: absolute;
  left: 9rem;
  bottom: 3rem;
  line-height: 1;
  font-weight: 700;
}

.culture_ttl .num {
  width: fit-content;
  background: var(--color-primary);
  font-family: var(--en);
  font-size: 1.6rem;
  padding: 0.5rem 0.6rem;
  margin-bottom: 0.5rem;
}

.culture_ttl h3 {
  width: fit-content;
  background: var(--color-primary);
  font-size: 2.8rem;
  padding: 0.8rem 1rem;
  font-weight: 900;
}


.culture_box .bg {
  width: calc(100% - 9rem);
  padding: 2rem;
  background: rgb(255 255 255 / 40%);
  margin-left: auto;
}

.culture_box .bg li {
  padding-left: 1em;
  position: relative;
}

.culture_box .bg li::before {
  position: absolute;
  content: "・";
  top: 0;
  left: 0;
}

@media screen and (max-width:767px) {
  .culture_box {
    width: 100%;
    margin-bottom: 2rem;
  }

  .culture_ttl {
    left: 1.5rem;
    bottom: 1.5rem;
  }

  .culture_ttl .num {
    font-size: 1.4rem;
    padding: 0.5rem 0.6rem;
  }

  .culture_ttl h3 {
    font-size: 2.2rem;
    padding: 0.8rem 0.8rem;
  }

  .culture_box .bg {
    width: 34.5rem;
    padding: 1rem;
    margin-right: auto;
  }
}

/*================================================
* interview
================================================*/
#interview .wrap {
  width: calc(100% - 9rem);
  margin-left: auto;
}

.itv_slide {
  position: relative;
  margin-top: 3rem;
  padding-bottom: 8rem;
}

.itv_swiper .swiper-slide {
  width: 46rem;
  cursor: pointer;
  margin-right: 2rem;
}

.itv_swiper .swiper-slide .nyusya {
  width: fit-content;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.4rem 0.4rem;
  line-height: 1;
  margin: 2rem 0 0.5rem;
}


.itv_swiper .swiper-slide .ttl {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4;
  padding-right: 6rem;
  position: relative;
  min-height: 6.2rem;
}

.itv_swiper .swiper-slide .ttl::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/modal_arrow.webp);
  width: 6rem;
  height: 6rem;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all .4s;
}

.itv_swiper .swiper-slide:hover .ttl::before {
  background-image: url(../images/modal_arrow_b.webp);
}

.itv_slide .swiper-button-prev,
.itv_slide .swiper-button-next {
  top: auto;
  bottom: 0;
  width: 4rem;
  height: 4rem;
  right: auto;
  left: 0;
  transition: all .4s;
}

.itv_slide .swiper-button-next {
  left: 8rem;
}

.itv_slide .swiper-button-prev::after,
.itv_slide .swiper-button-next::after {
  content: none;
}

.itv_slide .swiper-button-prev::before,
.itv_slide .swiper-button-next::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/slide_arrow.webp);
  width: 4rem;
  height: 4rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .4s;
}

.itv_slide .swiper-button-prev::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.modal_name {
  font-size: 1.8rem;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 2px solid var(--color-black);
  font-weight: 400;
}

.modal_name span {
  font-size: 1.2rem;
  margin-right: 0.5rem;
  font-weight: 400;
}

.modal {
  position: fixed;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s ease, visibility .4s ease;
  z-index: 9999;
  overflow: scroll;
  background: rgba(0, 0, 0, .7);
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal_backdrop {
  position: absolute;
  width: 100%;
  height: auto;
  min-height: 100vh;
}

.modal_panel {
  position: relative;
  margin: 10vh auto 0;
  color: var(--color-white);
  padding-bottom: 10rem;
}

.modal.is-open .modal_panel {
  transform: translateY(0);
}

.modal_close {
  position: absolute;
  top: -1rem;
  right: -1rem;
  cursor: pointer;
  color: var(--color-white);
  font-size: 2rem;
}


.modal_body .m_ttl {
  font-size: 2.4rem;
  font-weight: 700;
  padding-right: 2rem;
}

.modal_body .modal_name {
  text-align: right;
  border-top: 1px solid var(--color-white);
  margin-bottom: 4rem;
}

.modal_cnt {
  font-weight: 500;
  line-height: 1.8;
}

.modal_clm {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 5rem;
}

.modal_clm.reverse {
  flex-direction: row-reverse;
}

.modal_clm,
.modal_noclm {
  margin-bottom: 4rem;
}

.modal_clm .modal_txt {
  width: 55rem;
}




.modal_txt p:not(:first-of-type) {
  margin-top: 2rem;
}

.modal_img {
  width: 50rem;
}

@media screen and (max-width:767px) {
  #interview .wrap {
    width: 36rem;
    margin-left: auto;
  }

  .itv_slide {
    padding-bottom: 6rem;
  }

  .itv_swiper .swiper-slide {
    width: 30rem;
  }



  .itv_swiper .swiper-slide .ttl {
    font-size: 1.8rem;
    padding-right: 4rem;
  }

  .itv_swiper .swiper-slide .ttl::before {
    width: 4rem;
    height: 4rem;
  }


  .modal_panel {
    margin-top: 8rem;
  }

  .modal_close {
    top: -6rem;
    right: 0rem;
    font-size: 3rem;
  }

  .modal_body .m_ttl {
    font-size: 2.2rem;
    padding-right: 1rem;
  }

  .modal_clm {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .modal_cnt {
    font-size: 1.4rem;
  }

  .modal_clm,
  .modal_noclm {
    margin-bottom: 2rem;
  }

  .modal_clm .modal_txt {
    width: 100%;
  }



  .modal_img {
    width: 100%;
  }
}

/*================================================
* join
================================================*/

#join {
  margin-top: 12rem;
  margin-bottom: -12rem;
  padding-bottom: 0;
}

#join .wrap {
  position: relative;
  top: -12rem;
  padding-bottom: 14rem;
}

.join_ttl {
  font-style: italic;
  width: fit-content;
  position: absolute;
  left: 9rem;
  bottom: 0;
  z-index: 1;
  background: var(--color-primary);
  line-height: 1;
  padding: 3rem 2rem 0 2rem;
}

.join_ttl .ja {
  font-weight: 900;
  font-size: 3.8rem;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}


.join_ttl .en {
  font-weight: 700;
  font-family: var(--en);
  font-size: 14rem;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}


@media screen and (max-width:767px) {

  #join {
    margin-top: 2rem;
    margin-bottom: -2rem;
  }

  #join .wrap {
    top: -2rem;
    padding-bottom: 5rem;
  }

  .join_ttl {
    left: 1.5rem;
    padding: 1.5rem 2rem 0 2rem;
  }

  .join_ttl .ja {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }


  .join_ttl .en {
    font-size: 7rem;
  }
}

/*================================================
* jobList
================================================*/
#job {
  padding-top: 4rem;
}

#job .wrap {
  width: 100rem;
  margin: 0 auto;
}

.jobList {
  /* border-bottom: 2px solid var(--color-black); */
}

.jobList li {
  border-bottom: 2px solid var(--color-black);
  margin-bottom: 2rem;
}

.jobList .label {
  font-size: 1.8rem;
  font-weight: 500;
  padding: 2rem 4rem 2rem 0;
  cursor: pointer;
  position: relative;
}

.jobList .label::before,
.jobList .label::after {
  position: absolute;
  content: "";
  width: 2rem;
  height: 2px;
  top: 50%;
  transform: translateY(50%);
  background: var(--color-black);
  right: 1rem;
  transition: all .4s;
}

.jobList .label::after {
  transform: translateY(50%) rotate(90deg);
}

.jobList .label.open::after {
  transform: translateY(50%) rotate(0deg);
}

.jobList .detail {
  display: none;
}

.jobItem {
  background: var(--color-black);
  color: var(--color-white);
  padding: 4rem 10rem;
}

.jobItem dl {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}


.jobItem dt {
  width: 18rem;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-white);
  font-weight: 500;
}

.jobItem dd {
  width: calc(100% - 18rem);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-bottom: 1px solid var(--color-white);
  font-weight: 500;
}

.jobItem .entryBtn {
  margin-top: 4rem;
}

.jobItem .entryBtn a {
  background: var(--color-primary);
  display: block;
  width: 41rem;
  margin: 0 auto;
  padding: 2rem 0 2rem 4rem;
  color: var(--color-black);
  line-height: 1;
  position: relative;
  border: 1px solid var(--color-primary);
}

.jobItem .entryBtn a .en {
  font-family: var(--en);
  font-size: 6rem;
  font-weight: 700;
  display: block;
  font-style: italic;
}

.jobItem .entryBtn a .ja {
  font-size: 1.8rem;
  font-weight: 500;
  display: block;
}

.jobItem .entryBtn a::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/icon_arrow.webp);
  width: 5rem;
  height: 5rem;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
}

.jobItem .entryBtn a:hover {
  background: var(--color-black);
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.jobItem .entryBtn a:hover::before {
  animation: 1s cubic-bezier(0.86, 0, 0.07, 1) infinite button-arrow;
  background-image: url(../images/icon_arrow_w.webp);
}


@media screen and (max-width:767px) {
  #job {
    padding-bottom: 10rem;
  }

  #job .wrap {
    width: 34.5rem;
  }

  .jobItem .entryBtn {
    margin-top: 2rem;
  }

  .jobItem .entryBtn a {
    width: 31.5rem;
    padding: 2rem 0 2rem 3rem;
  }

  .jobItem .entryBtn a .en {
    font-size: 4.2rem;
  }

  .jobItem .entryBtn a .ja {
    font-size: 1.2rem;
  }

  .jobItem .entryBtn a::before {

    width: 3.4rem;
    height: 3.4rem;
    right: 2rem;
  }




  .jobList .label {
    font-size: 1.6rem;
    padding: 2rem 4rem 2rem 0;
  }

  .jobList .label::before,
  .jobList .label::after {
    width: 1.6rem;
    height: 2px;
  }

  .jobItem {
    padding: 3rem 1.5rem;
  }

  .jobItem dt {
    width: 10rem;
    font-size: 1.4rem;
  }

  .jobItem dd {
    width: calc(100% - 10rem);
    font-size: 1.4rem;
  }
}



/*================================================
* price
================================================*/

@media screen and (max-width:767px) {}

/*================================================
* access
================================================*/


@media screen and (max-width:767px) {}



/*================================================
 *  footer
 ================================================*/
footer {
  background: var(--color-black);
  padding: 8rem 0 24rem;
  color: var(--color-white);
  position: relative;
  overflow: clip;
}

.ft_catch {
  position: absolute;
  width: 90rem;
  bottom: -1rem;
  right: -3rem;
}

.ft_inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.ft_logo {
  width: 28.4rem;
}

.ft_left p {
  font-size: 1.2rem;
  font-weight: 500;
}

.ft_right ul {
  font-style: italic;
  font-family: var(--en);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: end;
  margin-bottom: 4rem;
}

.ft_right .copy {
  font-size: 12px;
  text-align: right;
  font-weight: 400;
}

@media screen and (max-width:767px) {
  footer {
    padding: 8rem 0 28rem;
  }

  .ft_catch {
    width: 37.5rem;
    bottom: -1rem;
    right: auto;
    left: -0.5rem;
  }


  .ft_inner {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }

  .ft_left p {
    margin: 2rem 0;
  }

  .ft_right ul {
    display: block;
    border: none;
  }

  .ft_right ul li {
    margin-bottom: 1rem;
  }
}

/*================================================
* ani
================================================*/
.mask span {
  display: block;
  width: 0;
  overflow: hidden;
  transition: width .8s ease;
  transition-delay: 1s;
}

.on .mask span {
  width: 100%;
  display: block;
}

.mask span img {
  display: block;
  width: auto;
  max-width: unset;
}

/* zoom */
.zoom,
.zoom-d {
  overflow: hidden;
  display: block;
}

.zoom img,
.zoom-d img {
  width: 100%;
  display: block;
  opacity: 0;
  transform: scale(1.1);
  transition: all .8s ease .2s;
}

.zoom-d img {
  transition: all .8s ease .6s;
}

.zoom.on img,
.zoom-d.on img {
  opacity: 1;
  transform: scale(1);
}


/* zoom */
/* fadeUp */
.fadeUp {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.on .fadeUp {
  opacity: 1;
  transform: translateY(0px);
}

.bain img {
  opacity: 0;
  transform: scale(0) translateY(1rem) rotate(20deg);
  will-change: opacity, transform;
  transition: .8s cubic-bezier(0.34, 1.63, 0.64, 1);
}

.on .bain img {
  opacity: 1;
  transform: scale(1) translateY(0) rotate(0);
}

.delay02 {
  transition-delay: .2s !important;
}

.delay03 {
  transition-delay: .3s !important;
}

.delay04 {
  transition-delay: .4s !important;
}

.delay10 {
  transition-delay: 1s !important;
}

@media screen and (max-width:767px) {}

/*================================================
* 
================================================*/
/* data_list_box */
.data_list_box {
  display: flex;
  align-items: flex-end;
}

.data_list_suu {
  display: flex;
  font-weight: 600;
  line-height: 1;
  overflow: hidden;
  font-family: var(--roboto);
  letter-spacing: -1px;
}

.data_list_suu span {
  display: block;
}

.num10 {
  height: 10rem;
}

.num8 {
  height: 8rem;
}


.data_list_suu>span {
  transform: translate(0px, 100%);
  transition: transform 1.1s cubic-bezier(0.43, 0.05, 0.17, 1);
}

.data_list_suu>span span {
  display: block;
}

.data_list_suu.num10>span,
.data_list_suu.num10>span span {
  height: 4rem;
}

.data_list_suu .data_list_suu0 {
  transform: translate(0px, 0%);
}

.in_ani.on .data_list_suu .data_list_suu1 {
  transform: translate(0px, 0%);
}

.in_ani.on .data_list_suu .data_list_suu3 {
  transform: translate(0px, -200%);
}

.in_ani.on .data_list_suu .data_list_suu6 {
  transform: translate(0px, -500%);
}

.in_ani.on .data_list_suu .data_list_suu9 {
  transform: translate(0px, -800%);
}

.in_ani.on .data_list_suu .data_list_suu12 {
  transform: translate(0px, -1100%);
}

@media screen and (max-width:767px) {
  .num10 {
    height: 8rem;
  }


}

/*================================================
* 
================================================*/

body.is-modal-open {
  overflow: hidden;
}

#content-wrapper {
  transition: all 1s 0s ease;
}

body.is-modal-open #content-wrapper {
  filter: blur(30px);
}

@media screen and (max-width:767px) {}


/*================================================
* form
================================================*/
#form .ttl {
  padding: 10rem 0 4rem;
}


.formArea {
  width: 80%;
  margin: 0 auto;
  background: rgb(255 255 255 / 30%);
  padding: 3rem 3rem 6rem;
}

.formTable {
  display: flex;
  align-items: stretch;
  justify-content: start;
  flex-wrap: wrap;

}

.formTable dt {
  width: 30%;
  font-size: 18px;
  font-weight: 700;
  padding-left: 1rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-black);
}

.formTable sup {
  background: var(--color-black);
  color: var(--color-white);
  font-size: 12px;
  padding: 2px 5px 3px;
  border-radius: 5px;
  margin-left: 5px;
}

.formTable dd {
  width: 70%;
  font-size: 16px;
  padding-bottom: 2rem;
  padding-left: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-black);
}

.formTable dd input,
.formTable dd select {
  display: block;
  width: 100%;
  height: 60px;
  background: var(--color-white);
  padding: 1rem;
  font-size: 14px;
}

/* .formTable .kibou {
  position: relative;
}

.formTable .kibou::before {
  position: absolute;
  content: "▼";
  top: 26px;
  right: 1rem;
  font-size: 12px;
  z-index: 1;
  line-height: 1;
  pointer-events: none;
} */

.formTable dd input[type="file"] {
  background: transparent;
}

.formTable dd label:has(input[type="radio"]) {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
}

.formTable dd input[type="radio"] {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.formTable span.wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
  margin: 0;
}

.formTable span.wpcf7-form-control.wpcf7-radio {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.formArea .policy {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  margin: 3rem 0;
}

.formArea .policy p {
  font-weight: 600;
}

.formArea .policy a {
  text-decoration: underline;
}

.formArea .submit-btn {
  display: block;
  color: var(--color-white);
  padding: 2rem 8rem 2rem 6rem;
  line-height: 1;
  background: var(--color-black);
  margin: 0 auto;
  font-weight: 700;
  font-size: 18px;
}

.formArea .submit {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.formArea .submit::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/icon_arrow_w.webp);
  width: 2.7rem;
  height: 2.7rem;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}


.formArea .submit:hover::before {
  animation: 1s cubic-bezier(0.86, 0, 0.07, 1) infinite button-arrow;
}




.formArea .wpcf7-spinner {
  position: absolute;
}

@media screen and (max-width:767px) {
  #form .ttl {
    padding: 10rem 0 2rem;
  }

  .formArea {
    width: 100%;
    margin: 0 auto;
    background: rgb(255 255 255 / 30%);
    padding: 2rem 2rem 6rem;
  }



  .formTable dt {
    width: 100%;
    font-size: 16px;
    padding-left: 0;
    padding-bottom: 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid transparent;
  }

  .formTable sup {
    background: var(--color-black);
    color: var(--color-white);
    font-size: 10px;
    padding: 2px 5px 3px;
    border-radius: 5px;
    margin-left: 5px;
  }

  .formTable dd {
    width: 100%;
    font-size: 14px;
    padding-bottom: 2rem;
    padding-left: 0;
    margin-bottom: 3rem;
  }



  .formTable .kibou span.wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
    width: calc((100% - 10px) / 2);
  }

  .formTable dd input {
    height: 50px;
    padding: 0.5rem 1rem;
    font-size: 14px;
  }

  .formArea .policy {
    font-size: 16px;
    margin: 1rem 0 3rem;
  }
}