@charset "UTF-8";
/* 基本 */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  margin: 0;
  padding: 0;
}

body {
  font-size: 100%;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", "メイリオ", Meiryo, -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Osaka;
  font-weight: 400;
  font-feature-settings: "palt";
  color: #333;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: #333;
}

p {
  line-height: 170%;
}

/* 全体 --------------------------------------------------------- */
#app {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
#app #app main {
  flex-grow: 1;
}

/* 共通パーツ ----------------------------------------------------- */
.content-bg {
  background-color: #F6F6F6;
}

.list--disc {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style-type: disc;
  margin-left: 1.4em;
}

.table-type01, .table-type01--slim {
  width: 100%;
}
@media (max-width: 767px) {
  .table-type01 tr, .table-type01--slim tr {
    display: flex;
    flex-direction: column;
  }
}
.table-type01 th, .table-type01--slim th, .table-type01 td, .table-type01--slim td {
  padding: 32px;
  border-bottom: 1px solid #CCC;
  text-align: left;
}
@media (max-width: 767px) {
  .table-type01 th, .table-type01--slim th, .table-type01 td, .table-type01--slim td {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .table-type01 th, .table-type01--slim th {
    border: none;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .table-type01 td, .table-type01--slim td {
    padding-top: 24px;
  }
}

.table-type01--slim th, .table-type01--slim td {
  padding: 16px;
}
@media (max-width: 767px) {
  .table-type01--slim th {
    padding-bottom: 8px;
  }
}
@media (max-width: 767px) {
  .table-type01--slim td {
    padding-top: 0;
  }
}

.table-type02, .table-type02--slim {
  width: 100%;
}
.table-type02 th, .table-type02--slim th, .table-type02 td, .table-type02--slim td {
  padding: 32px;
  border-bottom: 1px solid #CCC;
  text-align: left;
}
@media (max-width: 767px) {
  .table-type02 th, .table-type02--slim th, .table-type02 td, .table-type02--slim td {
    padding: 24px 16px;
  }
}

.table-type02--slim th, .table-type02--slim td {
  padding: 16px;
}

.link--underline, .link--underline-w {
  position: relative;
}
.link--underline:hover:after, .link--underline-w:hover:after {
  content: "";
  position: absolute;
  bottom: -3px;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #222;
  margin-top: 4px;
  clip-path: inset(0 100% 0 0);
  animation: revealRight 0.3s ease-out forwards;
}

@keyframes revealRight {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
.link--underline-w:hover:after {
  background-color: #fff;
}

.link--opacity:hover {
  opacity: 0.5;
}

.btn--basic, .btn--recruit {
  background-color: rgb(34, 34, 34);
  box-shadow: 3px 3px 0px rgb(59, 155, 74);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 255px;
  width: fit-content;
  gap: 40px 42px;
  color: rgb(255, 255, 255);
  white-space: nowrap;
  padding: 13px 0 13px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn--basic span, .btn--recruit span {
  align-self: stretch;
  margin: auto 0;
}
.btn--basic::after, .btn--recruit::after {
  content: "";
  display: flex;
  aspect-ratio: 18/10;
  object-fit: contain;
  object-position: center;
  width: 61px;
  align-self: stretch;
  flex-shrink: 0;
  margin: auto 0;
  border-left: 1px solid #999;
  background: url("../img/arrow-r-w.svg") no-repeat center center;
  background-size: 16px;
  transition: all 0.3s ease;
}
.btn--basic:hover::after, .btn--recruit:hover::after {
  transform: translateX(3px);
}

.btn--recruit {
  background-color: #093BAB;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}
.btn--recruit:hover {
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.25);
}
.btn--recruit::after {
  border: none;
}

.btn--submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 255px;
  width: fit-content;
  gap: 40px 42px;
  color: rgb(255, 255, 255);
  background-color: #093BAB;
  border: 1px solid #093BAB;
  padding: 16px 24px;
  border-radius: 5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (max-width: 767px) {
  .btn--submit {
    min-width: initial;
    padding: 18px 40px;
  }
}
.btn--submit span {
  align-self: stretch;
  margin: auto 0;
}
.btn--submit:hover {
  background-color: #FFF;
  color: #093BAB;
}

.index-menu--content, .index-menu--content-recruit {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 40px 48px;
}
@media (max-width: 1365px) {
  .index-menu--content, .index-menu--content-recruit {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 16px 48px;
  }
}
.index-menu--content .item, .index-menu--content-recruit .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.index-menu--content .item::before, .index-menu--content-recruit .item::before {
  content: "";
  display: flex;
  align-self: stretch;
  flex-shrink: 0;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 22px;
  background: url("../img/arrow-r.svg") no-repeat center center;
  transition: all 0.3s ease;
}
.index-menu--content .item:hover::before, .index-menu--content-recruit .item:hover::before {
  transform: translateX(3px);
}
.index-menu--content .item a, .index-menu--content-recruit .item a {
  transition: all 0.3s ease;
}
.index-menu--content .item a:hover, .index-menu--content-recruit .item a:hover {
  color: #3B9B4A;
}

.index-menu--content-recruit .item::before {
  background: url("../img/arrow-r-b.svg") no-repeat center center;
}
.index-menu--content-recruit .item a:hover {
  color: #093BAB;
}

.heading--basic, .heading--recruit {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1023px) {
  .heading--basic, .heading--recruit {
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .heading--basic, .heading--recruit {
    gap: 8px;
  }
}
.heading--basic span, .heading--recruit span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 1.125rem;
  color: #3B9B4A;
}
@media (max-width: 1023px) {
  .heading--basic span, .heading--recruit span {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .heading--basic span, .heading--recruit span {
    font-size: 0.813rem;
  }
}
.heading--basic span::before, .heading--recruit span::before {
  content: "";
  display: flex;
  width: 20px;
  height: 20px;
  background: url("../img/mark.svg") no-repeat center center;
  background-size: contain;
}
@media (max-width: 767px) {
  .heading--basic span::before, .heading--recruit span::before {
    width: 12px;
    height: 12px;
  }
}
.heading--basic h3, .heading--recruit h3 {
  line-height: 100%;
  font-weight: 500;
  font-size: 3.375rem;
}
@media (max-width: 1023px) {
  .heading--basic h3, .heading--recruit h3 {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .heading--basic h3, .heading--recruit h3 {
    line-height: 1.4;
    font-size: 2.25rem;
  }
}

.heading--recruit span {
  gap: 12px;
  color: #093BAB;
}
.heading--recruit span::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 100px;
  background: #093BAB;
}
@media (max-width: 767px) {
  .heading--recruit span::before {
    width: 9px;
    height: 9px;
  }
}

.content-about {
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 180px;
}
@media (max-width: 1365px) {
  .content-about {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (max-width: 1023px) {
  .content-about {
    flex-direction: column;
    padding-bottom: 48px;
  }
}
@media (max-width: 767px) {
  .content-about {
    flex-direction: column;
    padding-right: 0;
    padding-left: 16px;
  }
}
.content-about img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  right: 0;
  max-width: 634px;
  max-height: 393px;
}
@media (max-width: 1365px) {
  .content-about img {
    max-width: 464px;
  }
}
@media (max-width: 1023px) {
  .content-about img {
    position: initial;
    max-height: 232px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .content-about img {
    max-height: 232px;
  }
}
.content-about .content__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .content-about .content__inner {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .content-about .content__inner {
    padding-right: 16px;
  }
}
.content-about .content__txt {
  max-width: 580px;
  width: 100%;
}
@media (max-width: 1365px) {
  .content-about .content__txt {
    max-width: 420px;
  }
}
@media (max-width: 1023px) {
  .content-about .content__txt {
    max-width: 100%;
  }
}
.content-about .content__txt h4 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}
.content-about .content__menu {
  max-width: 580px;
  width: 100%;
}
@media (max-width: 1365px) {
  .content-about .content__menu {
    max-width: 420px;
  }
}

.scroll--right {
  display: flex;
  overflow: hidden;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1023px) {
  .scroll--right {
    gap: 12px;
  }
}
.scroll--right ul {
  display: flex;
  animation: scroll-right 50s infinite linear 0.5s both;
  gap: 24px;
  align-items: center;
}
@media (max-width: 1023px) {
  .scroll--right ul {
    gap: 12px;
  }
}
.scroll--right ul li {
  width: 276px;
}
@media (max-width: 767px) {
  .scroll--right ul li {
    width: 122px;
  }
}
.scroll--right ul li img {
  width: 100%;
  display: block;
  aspect-ratio: 3/2;
  object-fit: cover;
}

@keyframes scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.scroll--left {
  display: flex;
  overflow: hidden;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1023px) {
  .scroll--left {
    gap: 12px;
  }
}
.scroll--left ul {
  display: flex;
  animation: scroll-left 50s infinite linear 0.5s both;
  gap: 24px;
  align-items: center;
}
@media (max-width: 1023px) {
  .scroll--left ul {
    gap: 12px;
  }
}
.scroll--left ul li {
  width: 276px;
}
@media (max-width: 767px) {
  .scroll--left ul li {
    width: 122px;
  }
}
.scroll--left ul li img {
  width: 100%;
  display: block;
  aspect-ratio: 3/2;
  object-fit: cover;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.mv_img {
  padding: 0;
  max-width: initial;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .mv_img {
    height: 60dvh;
  }
}
.mv_img picture {
  display: block;
  position: absolute;
  width: inherit;
  height: auto;
  opacity: 0;
  animation: slideAnime 24s linear infinite;
  width: 100%;
  height: 100%;
}
.mv_img img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.mv_img picture:nth-of-type(1) {
  animation-delay: 0s;
}
.mv_img picture:nth-of-type(2) {
  animation-delay: 6s;
}
.mv_img picture:nth-of-type(3) {
  animation-delay: 12s;
}
.mv_img picture:nth-of-type(4) {
  animation-delay: 18s;
}
@keyframes slideAnime {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  15% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

.mv_img--recruit picture {
  animation: slideAnimeRecruit 18s linear infinite;
}
.mv_img--recruit picture:nth-of-type(1) {
  animation-delay: 0s;
}
.mv_img--recruit picture:nth-of-type(2) {
  animation-delay: 6s;
}
.mv_img--recruit picture:nth-of-type(3) {
  animation-delay: 12s;
}
@keyframes slideAnimeRecruit {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  15% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

.index--base, .index--recruit {
  position: absolute;
  right: 24px;
  bottom: 8px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .index--base, .index--recruit {
    position: initial;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 16px 24px 16px;
    gap: 16px;
  }
}
.index--base-txt {
  font-weight: 500;
  font-size: 1.25rem;
  color: #222;
}
.index--base ul, .index--recruit ul {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1023px) {
  .index--base ul, .index--recruit ul {
    flex-wrap: wrap;
  }
}
.index--base ul li a, .index--recruit ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.875rem;
  color: #222;
  transition: all 0.3s ease;
}
.index--base ul li a::before, .index--recruit ul li a::before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  background: url(../img/arrow-r.svg) no-repeat center center;
  object-fit: contain;
  object-position: center;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.index--base ul li a:hover, .index--recruit ul li a:hover {
  color: #3B9B4A;
}
.index--base ul li a:hover::before, .index--recruit ul li a:hover::before {
  transform: rotate(90deg) translateX(2px);
}

.index--recruit ul li a::before {
  background-image: url(../img/arrow-r-b.svg);
}
.index--recruit ul li a:hover {
  color: #093BAB;
}

.content-imgtxt, .content-txtimg {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.content-imgtxt:last-of-type, .content-txtimg:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .content-imgtxt, .content-txtimg {
    flex-direction: column;
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .content-imgtxt, .content-txtimg {
    gap: 24px;
  }
}
.content-imgtxt img, .content-txtimg img {
  max-width: 420px;
  width: 100%;
}
@media (max-width: 1365px) {
  .content-imgtxt img, .content-txtimg img {
    max-width: 300px;
  }
}
@media (max-width: 1023px) {
  .content-imgtxt img, .content-txtimg img {
    max-width: 100%;
  }
}
@media (max-width: 1023px) {
  .content-imgtxt .content__txt, .content-txtimg .content__txt {
    width: 100%;
  }
}
.content-imgtxt .content__txt h4, .content-txtimg .content__txt h4 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}
.content-imgtxt .content__txt p, .content-txtimg .content__txt p {
  line-height: 180%;
}
.content-imgtxt .content__txt p:not(:last-of-type), .content-txtimg .content__txt p:not(:last-of-type) {
  padding-bottom: 32px;
}

.content-txtimg {
  flex-direction: row-reverse;
}
@media (max-width: 1023px) {
  .content-txtimg {
    flex-direction: column;
  }
}

.content-txt {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 48px;
}
.content-txt:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .content-txt {
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .content-txt {
    gap: 24px;
  }
}
@media (max-width: 1023px) {
  .content-txt .content__txt {
    width: 100%;
  }
}
.content-txt .content__txt h4 {
  margin-bottom: 0.75rem;
}
.content-txt .content__txt p {
  line-height: 1.6;
  font-size: 0.875rem;
}
.content-txt .content__txt p:not(:last-of-type) {
  padding-bottom: 32px;
}

.content-column2 {
  display: flex;
  gap: 80px;
  margin-bottom: 48px;
}
@media (max-width: 1023px) {
  .content-column2 {
    flex-direction: column;
  }
}
.content-column2 .column {
  width: 50%;
}
@media (max-width: 1023px) {
  .content-column2 .column {
    width: 100%;
  }
}
.content-column2 .column h4 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@property --rotate {
  syntax: "<angle>";
  initial-value: 90deg;
  inherits: false;
}
.btn--gradient {
  --border-radius: 8px;
  --border-size: 5px;
  --border-bg: radial-gradient(#00B1FF, #FFB4E6);
  --padding: 28px;
}
@media (max-width: 1023px) {
  .btn--gradient {
    --padding: 24px;
  }
}
.btn--gradient {
  position: relative;
  overflow: hidden;
  padding: calc(var(--padding) + var(--border-size));
  border-radius: var(--border-radius);
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 340px;
  font-weight: 500;
  font-size: 1.25rem;
  color: #FFF;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.25);
  z-index: 3;
  transition: all 0.3s ease;
}
@media (max-width: 1023px) {
  .btn--gradient {
    font-size: 1.125rem;
  }
}
.btn--gradient::before {
  content: "";
  display: block;
  width: 141.421356237%;
  padding-bottom: 141.421356237%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  z-index: -2;
  animation: spin 1.5s linear infinite;
  background: #00B1FF;
  background: linear-gradient(var(--rotate), rgb(0, 177, 255) 0%, rgb(255, 180, 230) 100%);
}
.btn--gradient::after {
  content: "";
  position: absolute;
  inset: var(--border-size);
  color: #FFF;
  background: linear-gradient(90deg, rgb(17, 17, 17) 0%, rgb(34, 34, 34) 100%);
  z-index: -1;
  border-radius: calc(var(--border-radius) - var(--border-size));
  transition: all 0.3s ease;
}
.btn--gradient:hover {
  color: #222;
}
.btn--gradient:hover::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.parallax {
  position: relative;
  height: 40dvh;
  overflow: hidden;
}
.parallax::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("../img/photo/parallax_01.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: transform;
}

.fade-in {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay--50ms {
  transition-delay: 50ms;
}

.delay--100ms {
  transition-delay: 100ms;
}

.delay--200ms {
  transition-delay: 200ms;
}

.delay--300ms {
  transition-delay: 300ms;
}

.delay--400ms {
  transition-delay: 400ms;
}

#js-header {
  position: fixed;
  top: 0;
  left: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
#js-header.header-hidden {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

#js-go-to-top {
  transition: opacity 0.4s ease, transform 0.4s ease;
}
#js-go-to-top.hide {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}/*# sourceMappingURL=style.css.map */