@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
body#top {
  color: #F1F1F1;
  background: #333;
}

a {
  color: #F1F1F1;
}
a:hover {
  color: #F1F1F1;
}

#top .ttl-section {
  color: #FFF;
}
@media screen and (max-width: 768px) {
  #top .ttl-section {
    padding-top: 0;
    border-top: none;
  }
}

#top .header .logo a {
  opacity: 0;
  pointer-events: none;
}

#top .header .logo a.show {
  opacity: 1;
}

/* ローディング中はスクロール禁止 */
body.no-scroll {
  overflow: hidden;
}

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

/* --- アニメーション定義 --- */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px) scale(1.08);
            transform: translateY(20px) scale(1.08);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px) scale(1.08);
            transform: translateY(20px) scale(1.08);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* --- ローディング画面 --- */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111827;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden-load {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader {
  text-align: center;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}

.loading-text {
  color: #fff;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

/* --- メインビジュアル (ファーストビュー) --- */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.8;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
  color: #fff;
}

.hero-logo {
  margin: 0 auto 3rem auto;
  width: 34rem;
}
@media screen and (max-width: 768px) {
  .hero-logo {
    width: 26rem;
  }
}

.hero-title {
  font-size: 10rem;
  font-weight: 800;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  margin: 0 0 3rem 0;
}
@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 9rem;
  }
}

.hero-text {
  font-size: 2.7rem;
  line-height: 1.5;
}

/* --- アニメーション制御クラス --- */
.js-anim-target {
  opacity: 0;
}

.loaded .js-anim-target {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.loaded .delay-logo {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.loaded .delay-title {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.loaded .delay-text {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

#corporate {
  position: relative;
}
#corporate .corporate-img-grade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
#corporate .corporate-img-grade .corporate-img {
  width: 100%;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}
#corporate .corporate-img-grade .corporate-img::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1rem;
  width: 100%;
  height: 20rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(51, 51, 51, 0)), to(#333333));
  background-image: linear-gradient(rgba(51, 51, 51, 0), #333333);
}
#corporate .ttl-section {
  margin-top: 0;
  padding-top: 8rem;
}
@media screen and (max-width: 768px) {
  #corporate .ttl-section {
    padding-top: 6rem;
    margin-bottom: 18rem;
  }
}
#corporate .corporate-copy {
  width: 115%;
  margin-left: 5rem;
}
@media screen and (max-width: 900px) {
  #corporate .corporate-copy {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  #corporate .col-2-item:nth-child(2) {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 80%;
  }
}
#corporate .btn-same-width {
  margin-top: 5rem;
}
#corporate .btn-same-width a {
  text-align: center;
  width: 24rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  #corporate .btn-same-width a {
    display: block;
    width: 100%;
  }
}

#works {
  margin-bottom: 10rem;
}
#works .works-col {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  #works .works-col {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
#works .works-col:nth-child(even) {
  grid-template-columns: 2fr 1fr;
}
@media screen and (max-width: 768px) {
  #works .works-col:nth-child(even) {
    grid-template-columns: 1fr;
  }
}
#works .works-col:nth-child(even) div:first-child {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 768px) {
  #works .works-col:nth-child(even) div:first-child {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
#works .works-col h3,
#works .works-col h4,
#works .works-col p {
  margin-top: 0;
}
#works .copy img {
  width: 80%;
}
@media screen and (max-width: 768px) {
  #works .copy img {
    width: 65%;
  }
}
#works .case .case-ttl {
  font-size: 2.3rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
#works .case:nth-of-type(odd) div:last-child {
  padding-right: 10rem;
}
@media screen and (max-width: 768px) {
  #works .case:nth-of-type(odd) div:last-child {
    padding-right: 0;
  }
}
#works .case:nth-of-type(even) div:last-child {
  padding-left: 10rem;
}
@media screen and (max-width: 768px) {
  #works .case:nth-of-type(even) div:last-child {
    padding-left: 0;
  }
}

#recruit {
  position: relative;
}
#recruit .recruit-img-grade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
#recruit .recruit-img-grade .recruit-img {
  width: 100%;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}
#recruit .recruit-img-grade .recruit-img::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1rem;
  width: 100%;
  height: 20rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(51, 51, 51, 0)), to(#333333));
  background-image: linear-gradient(rgba(51, 51, 51, 0), #333333);
}
#recruit .ttl-section {
  margin-top: 0;
  padding-top: 8rem;
}
@media screen and (max-width: 768px) {
  #recruit .ttl-section {
    padding-top: 6rem;
    margin-bottom: 18rem;
  }
}
#recruit .recruit-copy {
  width: 40rem;
  margin-bottom: 15rem;
}
@media screen and (max-width: 768px) {
  #recruit .recruit-copy {
    width: 80%;
    margin-bottom: 5rem;
  }
}

#recruit-interview .interview-wrap {
  margin-bottom: 5rem;
}
#recruit-interview .interview-wrap .interview-img {
  position: relative;
}
#recruit-interview .interview-wrap .interview-txt {
  background-color: #133A79;
  margin-top: -12rem;
  padding: 3rem;
}
#recruit-interview .interview-wrap .interview-txt .interview-ttl {
  margin: 0 0 1.5rem 0;
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 700;
}
#recruit-interview .interview-wrap .interview-txt .interview-spec {
  margin: 0 0 1.5rem 0;
  line-height: 2;
}
#recruit-interview .interview-wrap .interview-txt .interview-btn {
  text-align: right;
  margin: 0 -2rem -2rem 0;
}
#recruit-interview .interview-wrap .interview-txt .interview-btn a {
  display: inline-block;
  position: relative;
  padding: 1rem 2rem 1rem 3.5rem;
}
#recruit-interview .interview-wrap .interview-txt .interview-btn a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 1rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 1.2rem;
  height: 1.2rem;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
}
#recruit-interview .interview-wrap .interview-txt .interview-btn a:hover {
  background-color: #438AFD;
}
#recruit-interview .interview-wrap .interview-number {
  position: absolute;
  top: 0;
  width: 12rem;
  height: 12rem;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
}
#recruit-interview .interview-wrap .interview-number span {
  display: block;
  font-size: 7.2rem;
  letter-spacing: -0.1;
}
#recruit-interview .interview-wrap:nth-child(even) .interview-img {
  margin-right: 25%;
}
#recruit-interview .interview-wrap:nth-child(even) .interview-img .interview-number {
  right: 0;
}
#recruit-interview .interview-wrap:nth-child(even) .interview-txt {
  margin-left: 30rem;
}
#recruit-interview .interview-wrap:nth-child(odd) .interview-img {
  margin-left: 25%;
}
#recruit-interview .interview-wrap:nth-child(odd) .interview-img .interview-number {
  left: 0;
}
#recruit-interview .interview-wrap:nth-child(odd) .interview-txt {
  margin-right: 30rem;
}
@media screen and (max-width: 768px) {
  #recruit-interview .interview-wrap {
    margin-bottom: 0;
  }
  #recruit-interview .interview-wrap .interview-img {
    width: 100%;
    margin: 0 !important;
  }
  #recruit-interview .interview-wrap .wrap {
    padding: 0;
  }
  #recruit-interview .interview-wrap .interview-txt {
    width: 100%;
    margin: 0 !important;
    padding: 3rem;
  }
  #recruit-interview .interview-wrap .interview-txt .interview-ttl {
    font-size: 2.7rem;
  }
}/*# sourceMappingURL=top.css.map */