@charset "UTF-8";
/*
	BASE
*******************************/
/*
font-family: "heisei-kaku-gothic-std"
*/
* {
  font-family: "heisei-kaku-gothic-std", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-feature-settings: "palt";
  line-height: 1;
}

.font_en {
  font-family: barlow-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
}

html {
  font-size: 62.5%;
  line-height: 1;
}
html body {
  font-size: 1.6rem;
  background-color: #FFFFFF;
  opacity: 0;
  pointer-events: none;
}
html body.menuopen {
  overflow: hidden;
}
html body img {
  backface-visibility: hidden;
  vertical-align: bottom;
  line-height: 0;
}
html body p, html body th, html body td, html body dt, html body dd, html body li, html body h1, html body h2, html body h3, html body h4, html body h5, html body h6, html body label {
  color: #282828;
}
html body a {
  color: #1d1d1d;
  text-decoration: none;
  outline: none;
  border: none;
}
html body a:hover {
  text-decoration: none;
}
html body a img {
  outline: none;
  border: none;
  backface-visibility: hidden;
}
html body area {
  border: none;
  outline: none;
}
html body * img {
  max-width: 100%;
  height: auto;
}
html body main {
  overflow: clip;
}
html.wf-active body {
  opacity: 1;
  pointer-events: all;
  transition-property: opacity;
  transition-duration: 1s;
}

:root {
  --color_def: #282828;
  --color_main: #2A4198;
  --color_def: #282828;
  --color_sub: #777777;
  --color_sub2:#CCCCCC;
  --color_sub3: #C2BFDE;
  --color_sub4: #F8F9FF;
  --slidemax: 3;
}

html body * :focus-visible {
  outline: red;
  border: 3px dotted #cc0000 !important;
}

.wrap {
  position: relative;
}
.wrap .contents {
  width: calc(100% - 160px);
  max-width: 1480px;
  margin: 0 auto;
}
.wrap .contents .btn {
  font-size: 1.8rem;
  color: #FFFFFF;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  width: 300px;
  height: 56px;
  display: grid;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  color: var(--color_ur1);
  border: 1px solid #000000;
  border-radius: 28px;
  box-shadow: 3px 3px 0 #000000;
}

.fancybox__content {
  aspect-ratio: 16/9 !important;
  width: 90vw !important;
  max-width: 960px !important;
  height: auto !important;
  padding: 0 !important;
}

/**recruit**/
#recruit .wrap {
  padding-top: 0;
}
#recruit .wrap .contents {
  border-bottom: 1px solid var(--color_sub);
  padding: 300px 0;
}
#recruit .wrap .contents h2 {
  font-size: 8.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: start;
  grid-column-gap: 0.15em;
}
#recruit .wrap .contents h2::before {
  content: "";
  width: 0.17em;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--color_main);
  transform: translateY(-0.2em);
}
#recruit .wrap .contents ul {
  font-size: 2.8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 6%;
  width: 66%;
  margin-left: auto;
}
#recruit .wrap .contents ul a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  grid-column-gap: 2em;
  border-bottom: 1px solid var(--color_def);
  padding-bottom: 1em;
}
#recruit .wrap .contents ul a .font_en {
  font-size: 1.6rem;
  color: var(--color_sub);
  font-weight: 500;
}
#recruit .wrap .contents ul a img {
  width: 0.33em;
}
/**animation**/
.animation {
  opacity: 0;
  transition-duration: 2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  /* .fade-in {

  } */
}
.animation.fade-left {
  transform: translateX(-50px);
}
.animation.fade-right {
  transform: translateX(50px);
}
.animation.fade-up {
  transform: translateY(50px);
}
.animation.bounce {
  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}
@keyframes bounce {
  0% {
    opacity: 0;
    transform: translateY(100px) scaleY(0.9);
  }
  30% {
    opacity: 1;
    transform: translateY(-20px) scaleY(0.9);
  }
  50% {
    transform: translateY(10px) scaleY(0.95);
  }
  70% {
    transform: translateY(-5px) scaleY(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animation.delay-1 {
  transition-delay: 0.2s;
}
.animation.delay-2 {
  transition-delay: 0.4s;
}
.animation.delay-3 {
  transition-delay: 0.6s;
}
.animation.delay-4 {
  transition-delay: 0.8s;
}
.animation.delay-5 {
  transition-delay: 1s;
}
.animation.delay-6 {
  transition-delay: 1.2s;
}
.animation.delay-7 {
  transition-delay: 1.4s;
}
.animation.delay-8 {
  transition-delay: 1.6s;
}
.animation.delay-9 {
  transition-delay: 1.8s;
}
.animation.delay-10 {
  transition-delay: 2s;
}
.animation:hover.delay-1 {
  transition-delay: 0s;
}
.animation:hover.delay-2 {
  transition-delay: 0s;
}
.animation:hover.delay-3 {
  transition-delay: 0s;
}
.animation:hover.delay-4 {
  transition-delay: 0s;
}
.animation:hover.delay-5 {
  transition-delay: 0s;
}
.animation:hover.delay-6 {
  transition-delay: 0s;
}
.animation:hover.delay-7 {
  transition-delay: 0s;
}
.animation:hover.delay-8 {
  transition-delay: 0s;
}
.animation:hover.delay-9 {
  transition-delay: 0s;
}
.animation:hover.delay-10 {
  transition-delay: 0s;
}

.animation.show {
  opacity: 1;
  /* .fade-in {

  } */
}
.animation.show.fade-left {
  transform: translate(0, 0);
}
.animation.show.fade-right {
  transform: translate(0, 0);
}
.animation.show.fade-up {
  transform: translate(0, 0);
}
.animation.show.bounce {
  opacity: 0;
  animation: bounce 1s ease 2s 1 normal forwards;
}
.animation.show > .fade-left {
  opacity: 1;
  transform: translate(0, 0);
}
.animation.show > .fade-right {
  opacity: 1;
  transform: translate(0, 0);
}
.animation.show > .fade-up {
  opacity: 1;
  transform: translate(0, 0);
}
@media (hover: hover) {
  .wrap .contents .btn {
    transition: 0.3s;
  }
  .wrap .contents .btn:hover {
    box-shadow: 0 0 0 #000000;
    color: #FFFFFF;
    background-color: var(--color_ur1h);
  }
  /**recruit**/
  #recruit .wrap .contents ul li a {
    transition: 0.3s;
  }
  #recruit .wrap .contents ul li a > img {
    transition: 0.3s;
  }
  #recruit .wrap .contents ul li a:hover {
    opacity: 0.66;
  }
  #recruit .wrap .contents ul li a:hover > img {
    transform: translate(0.2em, -0.2em);
  }
}
@media screen and (max-width: 1500px) {
  .wrap {
    position: relative;
  }
  .wrap .contents {
    width: calc(100% - 100px);
  }
}
@media screen and (max-width: 1200px) {
  .wrap {
    position: relative;
  }
  .wrap .contents {
    width: calc(100% - 60px);
  }
  /**recruit**/
  #recruit .wrap .contents ul {
    font-size: 2.4rem;
  }
  .pcOnly3 {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .wrap {
    position: relative;
  }
  .wrap .contents {
    width: calc(100% - 40px);
  }
  /**recruit**/
  #recruit .wrap .contents {
    padding: 200px 0;
  }
  #recruit .wrap .contents h2 {
    font-size: 6rem;
  }
  #recruit .wrap .contents ul {
    font-size: 2rem;
    width: 70%;
  }
  .pcOnly2 {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .wrap .contents .btn {
    width: 290px;
    height: 56px;
  }
  /**recruit**/
  #recruit .wrap .contents {
    padding: 120px 0 60px;
  }
  #recruit .wrap .contents h2 {
    font-size: 5.2rem;
    margin-bottom: 1.25em;
  }
  #recruit .wrap .contents h2::before {
    width: 0.28em;
    transform: translateY(-0.25em);
  }
  #recruit .wrap .contents ul {
    font-size: 2.2rem;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    width: 100%;
    margin-left: auto;
  }
  #recruit .wrap .contents ul a {
    grid-column-gap: 1.5em;
  }
  #recruit .wrap .contents ul a .font_en {
    font-size: 1.4rem;
  }
  #recruit .wrap .contents ul a img {
    width: 0.5em;
  }
  .pcOnly {
    display: none !important;
  }
  .animation {
    opacity: 0;
    transition-duration: 2s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    /* .fade-in {

    } */
  }
  .animation.fade-left {
    transform: translateX(-50px);
  }
  .animation.fade-right {
    transform: translateX(50px);
  }
  .animation.fade-up {
    transform: translateY(50px);
  }
  .animation.delay-1 {
    transition-delay: 0s;
  }
  .animation.delay-2 {
    transition-delay: 0s;
  }
  .animation.delay-3 {
    transition-delay: 0s;
  }
  .animation.delay-4 {
    transition-delay: 0s;
  }
  .animation.delay-5 {
    transition-delay: 0s;
  }
  .animation.delay-6 {
    transition-delay: 0s;
  }
  .animation.delay-7 {
    transition-delay: 0s;
  }
  .animation.delay-8 {
    transition-delay: 0s;
  }
  .animation.delay-9 {
    transition-delay: 0s;
  }
  .animation.delay-10 {
    transition-delay: 0s;
  }
}
@media screen and (min-width: 1025px) {
  .tbOnly {
    display: none !important;
  }
}
@media screen and (min-width: 1201px) {
  .tbOnly2 {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .spOnly {
    display: none !important;
  }
}