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

body {
  font-family: "Noto Sans JP", sans-serif;
}

p {
  line-height: 1.8;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
  }
}

input, textarea, select, button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  box-shadow: none;
  background: none;
  font: inherit;
  color: inherit;
}

table {
  border-collapse: collapse;
}

.wrapper {
  overflow: hidden;
}

.inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}
.inner.-l {
  max-width: 1440px;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

section {
  padding: 150px 0;
}

.sec_ttl {
  display: flex;
  align-items: flex-end;
  gap: 0 20px;
  margin-bottom: 40px;
}
.sec_ttl h2 {
  font-family: "Impact", sans-serif;
  font-size: 96px;
  line-height: 1;
}
.sec_ttl h2 span {
  color: #FF5D11;
}
.sec_ttl .jp {
  font-size: 20px;
  line-height: 1.9;
  font-weight: 900;
  letter-spacing: 0.3em;
}

.btn a {
  background: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 30px;
  padding: 30px;
  position: relative;
  z-index: 1;
}
.btn a span {
  position: relative;
  z-index: 2;
}
.btn a::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: #000;
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.btn a::after {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1/1;
  background: url(../img/arrow_right_lightgreen.svg) no-repeat center/contain;
}
.btn a:hover {
  opacity: 1;
  color: #fff;
}
.btn a:hover::before {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
header {
  background: rgba(255, 93, 17, 0.9);
  height: 85px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: none;
  width: 100%;
  height: 100%;
  padding: 0 40px;
}
header .inner h1 a {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Impact", sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: #fff;
}
header .inner h1 a span {
  color: #FFEE00;
  font-size: 20px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
}
header .inner nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
header .inner nav .txt {
  display: flex;
  align-items: center;
  gap: 40px;
}
header .inner nav .txt li a {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.1em;
  color: #fff;
}
header .inner nav .btns {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .inner nav .btns li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-family: "Barlow", sans-serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
  padding: 10px 20px;
}
header .inner nav .btns li a span {
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
header .inner nav .btns li.new {
  background: #FFEE00;
}
header .inner nav .btns li.mid {
  background: #00D736;
}

#top #mv {
  padding: 0;
  position: relative;
}
#top #mv h2 {
  text-align: center;
  font-size: 96px;
  font-weight: 900;
  line-height: 1.1;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
#top #mv h2 span.lightgreen {
  color: #00D736;
}
#top #mv h2 span.yellow {
  color: #FFEE00;
}
#top #concept {
  padding: 200px 0 150px;
  background: #FF5D11;
}
#top #concept .inner .message {
  font-size: min(3.4vw, 55px);
  font-weight: 900;
  color: #fff;
}
#top #concept .inner .message span {
  color: #FFEE00;
}
#top #business .inner .intro {
  max-width: 750px;
  color: #595959;
  font-size: 20px;
}
#top #business .inner .list {
  margin-top: 60px;
}
#top #business .inner .list .block {
  border-bottom: 1px solid #595959;
}
#top #business .inner .list .block a {
  display: flex;
  align-items: center;
  padding: 45px 30px;
}
#top #business .inner .list .block a .num {
  font-family: "Impact", sans-serif;
  font-size: 64px;
  flex-shrink: 0;
  width: 100px;
  margin-right: 30px;
}
#top #business .inner .list .block a .txt .en {
  color: #00D736;
  font-family: "Barlow", sans-serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
#top #business .inner .list .block a .txt h3 {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.6;
  margin-bottom: 20px;
  transition: 0.3s;
}
#top #business .inner .list .block a .txt .desc {
  color: #595959;
  font-size: 18px;
  transition: 0.3s;
}
#top #business .inner .list .block a .link {
  font-family: "Barlow", sans-serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: 0.3s;
  margin-left: 80px;
}
#top #business .inner .list .block a .link::after {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1/1;
  background: url(../img/arrow_right_black.svg);
}
#top #business .inner .list .block a:hover {
  background: #000;
  opacity: 1;
}
#top #business .inner .list .block a:hover .num {
  color: #FF5D11;
}
#top #business .inner .list .block a:hover .txt h3 {
  color: #fff;
}
#top #business .inner .list .block a:hover .txt .desc {
  color: #B9B9B9;
}
#top #business .inner .list .block a:hover .link {
  color: #FF5D11;
}
#top #business .inner .list .block a:hover .link::after {
  background-image: url(../img/arrow_right_orange.svg);
}
#top #top_message {
  padding: 0;
  background: #FF5D11;
}
#top #top_message .inner {
  max-width: none;
  width: 100%;
}
#top #top_message .inner .row {
  display: flex;
}
#top #top_message .inner .row figure {
  width: 50%;
  position: relative;
  margin: 0;
}
#top #top_message .inner .row figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top #top_message .inner .row figure::after {
  content: "";
  display: block;
  height: 100%;
  aspect-ratio: 223/750;
  background: url(../img/slanting_orange.svg) no-repeat top right/cover;
  position: absolute;
  bottom: 0;
  right: -1px;
}
#top #top_message .inner .row .txt {
  width: 50%;
  max-width: 660px;
  padding: 64px 0 64px 60px;
}
#top #top_message .inner .row .txt .sec_ttl {
  flex-direction: column;
  align-items: flex-start;
}
#top #top_message .inner .row .txt .sec_ttl h2 {
  color: #fff;
}
#top #top_message .inner .row .txt .sec_ttl h2 span {
  color: #000;
}
#top #top_message .inner .row .txt .main {
  color: #FFEE00;
  font-size: 36px;
  line-height: 1.6;
  font-weight: 900;
  margin-bottom: 30px;
}
#top #top_message .inner .row .txt .message {
  color: #fff;
  margin-bottom: 30px;
}
#top #top_message .inner .row .txt .btn {
  margin-top: 40px;
}
#top #numbers .inner .sec_ttl h2 span {
  color: #00D736;
}
#top #numbers .inner .list {
  display: flex;
  flex-wrap: wrap;
}
#top #numbers .inner .list .block {
  width: 50%;
  text-align: center;
  padding: 30px;
}
#top #numbers .inner .list .block .en {
  color: #FF5D11;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.3em;
  font-family: "Barlow", sans-serif;
  margin-bottom: 20px;
}
#top #numbers .inner .list .block .num {
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
}
#top #numbers .inner .list .block .num span {
  font-family: "Impact", sans-serif;
  font-size: 96px;
}
#top #numbers .inner .list .block .jp {
  margin-top: 20px;
  color: #595959;
  font-size: 20px;
  font-weight: 900;
}
#top #numbers .inner .list .block:nth-child(2n+1) {
  border-right: 1px solid #B9B9B9;
}
#top #numbers .inner .list .block:nth-child(n+3) {
  border-top: 1px solid #B9B9B9;
}
#top #numbers .inner .notice {
  margin-top: 50px;
  text-align: right;
  color: #595959;
}
#top #positions {
  background: #FF5D11;
}
#top #positions .inner {
  max-width: 1440px;
}
#top #positions .inner .sec_ttl {
  color: #fff;
}
#top #positions .inner .sec_ttl span {
  color: #FFEE00;
}
#top #positions .inner .sec_ttl .jp {
  color: #fff;
}
#top #positions .inner .list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 3.125%;
}
#top #positions .inner .list .card {
  width: 31.25%;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  padding: 45px 30px;
}
#top #positions .inner .list .card h3 {
  font-size: 24px;
  line-height: 1.6;
  font-weight: 900;
  margin-bottom: 20px;
}
#top #positions .inner .list .card .detail {
  color: #595959;
}
#top #positions .inner .list .card .btn {
  margin-top: 30px;
}
#top #positions .inner .list .card .btn a {
  width: 100%;
  background: #000;
  color: #fff;
  justify-content: space-between;
  padding: 15px;
  font-size: 16px;
}
#top #positions .inner .list .card .btn a::before {
  background: #FFEE00;
}
#top #positions .inner .list .card .btn a:hover {
  color: #000;
}
#top #environment .inner .sec_ttl span {
  color: #FFEE00;
}
#top #environment .inner .intro {
  max-width: 750px;
  color: #595959;
}
#top #environment .inner .tags {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#top #environment .inner .tags li {
  border: 1px solid #595959;
  border-left: 4px solid #FF5D11;
  padding: 15px;
  line-height: 1;
}
#top #environment .inner .imgs {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}
#top #environment .inner .imgs figure {
  width: 23.6%;
}
#top #environment .inner .btn {
  margin-top: 60px;
}
#top #environment .inner .btn a {
  margin: 0 0 0 auto;
  background: #FF5D11;
  color: #fff;
}
#top #environment .inner .btn a::before {
  background: #000;
}
#top #interview {
  background: #FF5D11;
}
#top #interview .inner .sec_ttl h2 {
  color: #fff;
}
#top #interview .interview_slider {
  margin-top: 120px;
  overflow: visible;
}
#top #interview .interview_slider .swiper-wrapper .swiper-slide {
  width: 360px;
  transition: transform 0.3s ease;
}
#top #interview .interview_slider .swiper-wrapper .swiper-slide a {
  display: block;
  background: #000;
}
#top #interview .interview_slider .swiper-wrapper .swiper-slide a figure {
  overflow: hidden;
  margin-bottom: 0;
}
#top #interview .interview_slider .swiper-wrapper .swiper-slide a figure img {
  width: 100%;
  aspect-ratio: 6/7;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
#top #interview .interview_slider .swiper-wrapper .swiper-slide a .txt {
  padding: 30px 25px 40px;
}
#top #interview .interview_slider .swiper-wrapper .swiper-slide a .txt .ttl {
  color: #FFEE00;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 900;
  margin-bottom: 15px;
  transition: 0.3s;
}
#top #interview .interview_slider .swiper-wrapper .swiper-slide a .txt .position {
  background: #fff;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
  padding: 0 10px;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.3s;
}
#top #interview .interview_slider .swiper-wrapper .swiper-slide a .txt .entry {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.8;
  color: #fff;
  transition: 0.3s;
}
#top #interview .interview_slider .swiper-wrapper .swiper-slide a .txt .link {
  margin-top: 30px;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}
#top #interview .interview_slider .swiper-wrapper .swiper-slide a .txt .link::after {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1/1;
  background: url(../img/arrow_right_white.svg) no-repeat center/contain;
}
#top #interview .interview_slider .swiper-wrapper .swiper-slide a:hover {
  opacity: 1;
  background: #fff;
}
#top #interview .interview_slider .swiper-wrapper .swiper-slide a:hover figure img {
  transform: scale(1.1);
}
#top #interview .interview_slider .swiper-wrapper .swiper-slide a:hover .txt .ttl {
  color: #FF5D11;
}
#top #interview .interview_slider .swiper-wrapper .swiper-slide a:hover .txt .position {
  background: #000;
  color: #fff;
}
#top #interview .interview_slider .swiper-wrapper .swiper-slide a:hover .txt .entry {
  color: #000;
}
#top #interview .interview_slider .swiper-wrapper .swiper-slide a:hover .txt .link {
  color: #FF5D11;
}
#top #interview .interview_slider .swiper-wrapper .swiper-slide a:hover .txt .link::after {
  background-image: url(../img/arrow_right_orange.svg);
}
#top #interview .interview_slider .swiper-wrapper .swiper-slide.swiper-slide-active {
  transform: scale(1.1);
  transform-origin: bottom center;
}
#top #interview .interview_slider .swiper-button-prev {
  width: 80px;
  height: auto;
  aspect-ratio: 1/1;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  justify-content: center;
  align-items: center;
  left: calc((100vw - 1280px) / 2);
}
#top #interview .interview_slider .swiper-button-prev svg {
  display: none;
}
#top #interview .interview_slider .swiper-button-prev::before {
  content: "";
  display: block;
  width: 32px;
  aspect-ratio: 1/1;
  background: url(../img/arrow_left_white.svg) no-repeat center/contain;
}
#top #interview .interview_slider .swiper-button-next {
  width: 80px;
  height: auto;
  aspect-ratio: 1/1;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  justify-content: center;
  align-items: center;
  right: calc((100vw - 1280px) / 2);
}
#top #interview .interview_slider .swiper-button-next::before {
  content: "";
  display: block;
  width: 32px;
  aspect-ratio: 1/1;
  background: url(../img/arrow_right_white.svg) no-repeat center/contain;
}
#top #interview .interview_slider .swiper-button-next svg {
  display: none;
}
#top #interview .btn {
  margin-top: 60px;
}
#top #interview .btn a {
  margin: 0 auto;
}
#top #faq .inner {
  display: flex;
  justify-content: space-between;
}
#top #faq .inner .ttl_btn {
  width: 300px;
}
#top #faq .inner .ttl_btn .sec_ttl {
  flex-direction: column;
  align-items: flex-start;
}
#top #faq .inner .ttl_btn .sec_ttl span.a {
  color: #00D736;
}
#top #faq .inner .ttl_btn .btn {
  margin-top: 60px;
}
#top #faq .inner .ttl_btn .btn a {
  background: #FF5D11;
  color: #fff;
}
#top #faq .inner .ttl_btn .btn a::before {
  background: #000;
}
#top #faq .inner .faq_list {
  width: calc(100% - 440px);
}

.faq_list .item {
  border-top: 1px solid #595959;
}
.faq_list .item .q {
  position: relative;
  cursor: pointer;
  padding: 30px 50px 30px 0;
}
.faq_list .item .q .row {
  display: flex;
  gap: 40px;
}
.faq_list .item .q .row .icon {
  color: #FF5D11;
  font-size: 28px;
  font-family: "Impact", sans-serif;
  line-height: 1;
  flex-shrink: 0;
}
.faq_list .item .q .row .txt {
  font-size: 20px;
  font-weight: 900;
}
.faq_list .item .q::after {
  content: "+";
  display: block;
  width: 32px;
  color: #FF5D11;
  font-size: 32px;
  line-height: 1;
  font-weight: 400;
  position: absolute;
  top: 30px;
  right: 0;
  text-align: center;
}
.faq_list .item .q.open::after {
  content: "-";
}
.faq_list .item .a {
  padding-bottom: 30px;
  display: none;
}
.faq_list .item .a .row {
  display: flex;
  gap: 40px;
}
.faq_list .item .a .row .icon {
  color: #00D736;
  font-size: 28px;
  font-family: "Impact", sans-serif;
  line-height: 1;
  flex-shrink: 0;
}
.faq_list .item .a .row .txt {
  color: #595959;
}
.faq_list .item:last-child {
  border-bottom: 1px solid #595959;
}/*# sourceMappingURL=style.css.map */