@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

fieldset {
  border: 0;
}

body {
  line-height: 1.8;
}

body, dd, dl, dt, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, select, ul {
  margin: 0;
  padding: 0;
}

img {
  border: 0;
  vertical-align: top;
}

a {
  text-decoration: none;
}

em {
  font-style: normal;
}

ul li {
  list-style-type: none;
  list-style-image: none;
}

address {
  font-style: normal;
}

/* bg_movie
--------------------- */
.bg_movie {
  position: fixed;
  width: 100vw;
  height: 100vh; /* 画面いっぱい */
  overflow: hidden;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  .bg_movie {
    height: 100dvh;
  }
}
.bg_movie video {
  position: relative;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bg_movie::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background: #000;
}

/* area
--------------------- */
#area {
  position: relative;
}
#area #fv {
  position: relative;
  z-index: 2;
  height: 100vh;
}
@media screen and (max-width: 1200px) {
  #area #fv {
    height: 90rem;
  }
}
@media screen and (max-width: 768px) {
  #area #fv {
    height: 100dvh;
  }
}
#area #fv .deco {
  position: absolute;
  bottom: -2.6rem;
  right: 0;
  opacity: 0.9;
}
@media screen and (max-width: 768px) {
  #area #fv .deco {
    bottom: -0.9rem;
  }
}
@media screen and (max-width: 768px) {
  #area #fv .deco .deco_inner {
    padding-top: 8rem;
  }
}
#area #fv .deco .deco_inner .en01 {
  display: block;
  font-size: 5.1rem;
  line-height: 1;
  color: var(--green);
}
@media screen and (max-width: 768px) {
  #area #fv .deco .deco_inner .en01 {
    font-size: 1.72rem;
  }
}
#area #fv .deco .deco_inner .en02 {
  display: block;
  font-size: 13.8rem;
  line-height: 1;
  color: var(--green);
}
@media screen and (max-width: 768px) {
  #area #fv .deco .deco_inner .en02 {
    font-size: 4.8rem;
  }
}
#area #fv .title_sp {
  position: absolute;
  top: 32%;
  left: 5%;
}
#area #fv .title_sp h1 {
  font-size: 4.5rem;
  line-height: 6rem;
  margin-bottom: 1.2rem;
  color: var(--white);
}
#area #fv .title_sp .en {
  display: block;
  font-size: 1.2rem;
  line-height: 2.1rem;
  color: var(--white);
}
#area .title {
  position: sticky;
  top: 25rem;
  z-index: 5;
  margin-top: -72rem;
  padding-bottom: 38rem;
  pointer-events: none;
}
#area .title h1 {
  font-size: 6rem;
  line-height: 7.4rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.07em;
  color: var(--white);
}
#area .title .en {
  display: block;
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: var(--white);
}
#area #txt {
  position: relative;
  z-index: 2;
  padding-top: 15rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  #area #txt {
    padding-top: 7rem;
    margin-top: 0;
  }
}
#area #txt .box {
  position: relative;
  z-index: 5;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 12rem;
  margin-left: auto;
  margin-right: 15%;
}
@media screen and (max-width: 768px) {
  #area #txt .box {
    padding-bottom: 7rem;
    margin-left: 5%;
    margin-right: 5%;
  }
}
#area #txt .box p {
  font-size: 1.8rem;
  line-height: 4.4rem;
  margin-bottom: 4rem;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  #area #txt .box p {
    font-size: 1.6rem;
    line-height: 3.8rem;
    margin-bottom: 2.5rem;
  }
}
#area #txt .box .btn {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  #area #txt .box .btn {
    display: block;
    margin-top: 3.5rem;
  }
}
#area #txt .box .btn a {
  position: relative;
  display: block;
  color: var(--white);
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  border-radius: 3.5rem;
  padding: 1.9rem 13.6rem 1.8rem 2.8rem;
  background-color: var(--green);
  border: 1px solid var(--green);
  transition: var(--hover_ani_time);
}
@media screen and (max-width: 768px) {
  #area #txt .box .btn a {
    font-size: 1.3rem;
    border-radius: 3rem;
    padding: 1.2rem 8rem 1.1rem 2.2rem;
  }
}
#area #txt .box .btn a:hover {
  color: var(--green);
  background-color: var(--white);
  border: 1px solid var(--green);
}
#area #txt .box .btn a:hover::after {
  background: url("../img/btn_arrow_green.svg") no-repeat center/cover;
}
#area #txt .box .btn a::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  top: 50%;
  right: 2.8rem;
  transform: translateY(-50%);
  transition: var(--hover_ani_time);
  background: url("../img/btn_arrow_white.svg") no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  #area #txt .box .btn a::after {
    width: 1.7rem;
    height: 1.7rem;
    right: 2.2rem;
  }
}
#area #txt {
  /*文字の横スクロールアニメーション*/
}
#area #txt .page__marquee {
  position: relative;
  z-index: 5;
  display: flex;
  overflow: hidden;
  width: 100%;
}
#area #txt .page__marquee .marquee__item {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 10rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.4rem;
  padding-right: 20px;
  color: var(--light__green);
}
@media screen and (max-width: 768px) {
  #area #txt .page__marquee .marquee__item {
    font-size: 6rem;
  }
}
#area #txt .page__marquee .marquee__item:nth-child(odd) {
  animation: loop 30s -15s linear infinite;
}
@media screen and (max-width: 768px) {
  #area #txt .page__marquee .marquee__item:nth-child(odd) {
    animation: loop 20s -10s linear infinite;
  }
}
#area #txt .page__marquee .marquee__item:nth-child(even) {
  animation: loop2 30s linear infinite;
}
@media screen and (max-width: 768px) {
  #area #txt .page__marquee .marquee__item:nth-child(even) {
    animation: loop2 20s linear infinite;
  }
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
#area #txt::after {
  position: absolute;
  content: "";
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  filter: brightness(1.15);
  /* これがぼかしの本体 */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* サービス紹介
--------------------- */
#service {
  background: url("../img/service_bg.webp");
}
#service .inner {
  position: relative;
  z-index: 5;
  background: var(--white);
  padding: 15rem 0;
  margin: 0 3rem;
}
@media screen and (max-width: 768px) {
  #service .inner {
    margin: 0 1.8rem;
    padding: 7rem 0;
  }
}
#service .inner .wrapper {
  width: 120rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #service .inner .wrapper {
    width: 90%;
  }
}
#service .inner .title .en {
  display: block;
  font-size: 4.4rem;
  line-height: 4.8rem;
  color: var(--green);
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  #service .inner .title .en {
    font-size: 2.8rem;
    line-height: 3rem;
    margin-bottom: 1.2rem;
  }
}
#service .inner .title .box {
  display: flex;
}
@media screen and (max-width: 768px) {
  #service .inner .title .box {
    display: block;
  }
}
#service .inner .title .box h2 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-right: 5rem;
}
@media screen and (max-width: 768px) {
  #service .inner .title .box h2 {
    font-size: 2.4rem;
    margin-right: 0;
    margin-bottom: 2.2rem;
  }
}
#service .inner .title .box p {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  #service .inner .title .box p {
    font-size: 1.5rem;
  }
}
#service .inner .list .row_reverse {
  flex-direction: row-reverse;
}
#service .inner .list .item {
  display: flex;
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  #service .inner .list .item {
    display: block;
    margin-top: 5.5rem;
  }
}
@media screen and (max-width: 768px) {
  #service .inner .list .item.start {
    margin-top: 4rem;
  }
}
#service .inner .list .item .item_pht {
  width: 60%;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #service .inner .list .item .item_pht {
    width: 100%;
  }
}
#service .inner .list .item .txt_box {
  width: 40%;
  margin: auto 0 auto 7rem;
}
@media screen and (max-width: 768px) {
  #service .inner .list .item .txt_box {
    width: 100%;
    margin: 2rem 0 0 0;
  }
}
#service .inner .list .item .txt_box .en {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
  color: #DDDDDD;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #service .inner .list .item .txt_box .en {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
  }
}
#service .inner .list .item .txt_box h3 {
  font-size: 2.8rem;
  line-height: 1.2;
  color: var(--green);
  margin-bottom: 4rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #service .inner .list .item .txt_box h3 {
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  #service .inner .list .item .txt_box .btn {
    display: block;
    margin-top: 2rem;
  }
}
#service .inner .list .item .txt_box .btn a {
  position: relative;
  display: block;
  color: var(--white);
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  border-radius: 3.5rem;
  padding: 1.9rem 13.6rem 1.8rem 2.8rem;
  background-color: var(--green);
  border: 1px solid var(--green);
  transition: var(--hover_ani_time);
}
@media screen and (max-width: 768px) {
  #service .inner .list .item .txt_box .btn a {
    font-size: 1.3rem;
    border-radius: 3rem;
    padding: 1.2rem 8rem 1.1rem 2.2rem;
  }
}
#service .inner .list .item .txt_box .btn a:hover {
  color: var(--green);
  background-color: var(--white);
  border: 1px solid var(--green);
}
#service .inner .list .item .txt_box .btn a:hover::after {
  background: url("../img/btn_arrow_green.svg") no-repeat center/cover;
}
#service .inner .list .item .txt_box .btn a::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  top: 50%;
  right: 2.8rem;
  transform: translateY(-50%);
  transition: var(--hover_ani_time);
  background: url("../img/btn_arrow_white.svg") no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  #service .inner .list .item .txt_box .btn a::after {
    width: 1.7rem;
    height: 1.7rem;
    right: 2.2rem;
  }
}

/* 拠点案内
--------------------- */
#map {
  position: relative;
  z-index: 1;
  margin-top: -10rem;
  padding: 15rem 0 6.6rem;
  background-color: var(--green);
}
@media screen and (max-width: 768px) {
  #map {
    margin-top: -4rem;
    padding: 21rem 0 7.7rem;
  }
}
#map .map {
  position: relative;
  z-index: 10;
}
#map .map .map__img {
  width: 70rem;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #map .map .map__img {
    width: 100%;
  }
}
#map .map .txt__box {
  position: absolute;
  top: 8rem;
  left: 0;
  width: 54.2rem;
}
@media screen and (max-width: 768px) {
  #map .map .txt__box {
    width: 63%;
    top: -11rem;
  }
}
#map .map .txt__box .title {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  #map .map .txt__box .title {
    margin-bottom: 2rem;
  }
}
#map .map .txt__box .title .en {
  font-size: 4.4rem;
  color: var(--white);
  line-height: 4.8rem;
}
@media screen and (max-width: 768px) {
  #map .map .txt__box .title .en {
    font-size: 2.8rem;
    line-height: 3rem;
  }
}
#map .map .txt__box .title .flex {
  align-items: center;
  justify-content: space-between;
}
#map .map .txt__box .title .flex h2 {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  #map .map .txt__box .title .flex h2 {
    font-size: 2rem;
  }
}
#map .map .txt__box p {
  font-size: 1.6rem;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  #map .map .txt__box p {
    font-size: 1.3rem;
    line-height: 2.3rem;
  }
}
#map {
  /*.map*/
}
#map .location__btn {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--white);
  border-radius: 0.5rem;
}
#map .location__btn__inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: 0.5rem;
}
#map .location__btn__inner a {
  position: relative;
  z-index: 5;
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.3rem 6.3rem 1rem 2rem;
  transition: var(--hover_ani_time);
  border: 2px solid var(--white);
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  #map .location__btn__inner a {
    padding: 1.1rem 3rem 0.6rem 1.2rem;
    width: 16.7rem;
  }
}
#map .location__btn__inner a:hover {
  background-color: var(--green);
}
#map .location__btn__inner a:hover::after {
  background: url("../img/btn_arrow_white.svg") no-repeat center/cover;
}
#map .location__btn__inner a:hover .title {
  color: var(--white);
}
#map .location__btn__inner a:hover p {
  color: var(--white);
}
#map .location__btn__inner a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  transition: var(--hover_ani_time);
  background: url("../img/btn_arrow_green.svg") no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  #map .location__btn__inner a::after {
    width: 1.7rem;
    height: 1.7rem;
    right: 1.3rem;
  }
}
#map .location__btn__inner a .title {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--green);
  margin-bottom: 0.4rem;
  transition: var(--hover_ani_time);
}
@media screen and (max-width: 768px) {
  #map .location__btn__inner a .title {
    font-size: 1.4rem;
    line-height: 1rem;
  }
}
#map .location__btn__inner a p {
  display: block;
  font-size: 1.4rem;
  transition: var(--hover_ani_time);
}
@media screen and (max-width: 768px) {
  #map .location__btn__inner a p {
    font-size: 1.1rem;
  }
}
#map .location__btn .white_circle {
  position: absolute;
  top: 13.5rem;
  right: -17rem;
  width: 11.5rem;
  height: 11.5rem;
  border-radius: 100%;
  border: 0.3rem solid var(--white);
}
@media screen and (max-width: 768px) {
  #map .location__btn .white_circle {
    width: 5rem;
    height: 5rem;
  }
}
#map .location__btn .white_line {
  position: absolute;
  top: -0.5rem;
  right: -3rem;
  transform: rotate(-32deg);
  width: 0.3rem;
  height: 17.2rem;
  background-color: var(--white);
}
#map {
  /*.location__btn*/
}
#map .osaka_btn {
  top: 37rem;
  left: 16rem;
}
@media screen and (max-width: 768px) {
  #map .osaka_btn {
    top: 32rem;
    left: 0rem;
  }
}
#map .osaka_btn .white_circle {
  top: 13.5rem;
  right: -17rem;
}
@media screen and (max-width: 768px) {
  #map .osaka_btn .white_circle {
    top: -8.5rem;
    right: 2.2rem;
  }
}
#map .osaka_btn .white_line {
  top: -0.65rem;
  right: -3rem;
  transform: rotate(-32deg);
  height: 17.2rem;
}
@media screen and (max-width: 768px) {
  #map .osaka_btn .white_line {
    top: -3.6rem;
    right: 4.4rem;
    transform: rotate(0deg);
    height: 7.2rem;
  }
}
#map {
  /*.osaka_btn*/
}
#map .tohoku_btn {
  top: 35rem;
  left: 86rem;
}
@media screen and (max-width: 768px) {
  #map .tohoku_btn {
    top: 6rem;
    left: 20.2rem;
  }
}
#map .tohoku_btn .white_circle {
  top: -5.5rem;
  right: 29rem;
}
@media screen and (max-width: 768px) {
  #map .tohoku_btn .white_circle {
    top: 8.5rem;
    right: 9.9rem;
  }
}
#map .tohoku_btn .white_line {
  top: -1rem;
  right: 25rem;
  height: 9.2rem;
  transform: rotate(-74deg);
}
@media screen and (max-width: 768px) {
  #map .tohoku_btn .white_line {
    top: 3.5rem;
    right: 11.5rem;
    transform: rotate(12deg);
    height: 5.2rem;
  }
}
#map {
  /*.tohoku_btn*/
}
#map .tokyo_btn {
  top: 54rem;
  left: 81rem;
}
@media screen and (max-width: 768px) {
  #map .tokyo_btn {
    top: 29.5rem;
    left: 20.2rem;
  }
}
#map .tokyo_btn .white_circle {
  top: -7.5rem;
  right: 29rem;
}
@media screen and (max-width: 768px) {
  #map .tokyo_btn .white_circle {
    top: -7.5rem;
    right: 11rem;
  }
}
#map .tokyo_btn .white_line {
  top: -2rem;
  right: 25.8rem;
  transform: rotate(-61deg);
  height: 8.2rem;
}
@media screen and (max-width: 768px) {
  #map .tokyo_btn .white_line {
    top: -2.9rem;
    right: 12.2rem;
    transform: rotate(-15deg);
    height: 6.2rem;
  }
}
#map {
  /*.tokyo_btn*/
}

/* 会社情報 採用情報
--------------------- */
#company_recruit {
  position: relative;
  z-index: 1;
  padding-top: 10rem;
  background: var(--white);
}
@media screen and (max-width: 768px) {
  #company_recruit {
    padding-top: 5rem;
  }
}
#company_recruit::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  background: #2E2E2E;
}
@media screen and (max-width: 768px) {
  #company_recruit::after {
    height: 7rem;
  }
}
#company_recruit .common_inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #company_recruit .common_inner {
    display: block;
  }
}
#company_recruit .common_inner .item {
  width: calc((100% - 6rem) / 2);
  border-radius: 5px;
  height: 40rem;
}
@media screen and (max-width: 768px) {
  #company_recruit .common_inner .item {
    width: 100%;
    height: 24rem;
  }
}
@media screen and (max-width: 768px) {
  #company_recruit .common_inner .item:nth-of-type(1) {
    margin-bottom: 2.5rem;
  }
}
#company_recruit .common_inner .item:nth-of-type(1) a {
  background-size: 100% auto;
  background-position: center;
  background-image: url("../img/company_recruit_pht01.webp");
}
#company_recruit .common_inner .item:nth-of-type(1) a:hover {
  background-size: 110% auto;
}
#company_recruit .common_inner .item:nth-of-type(2) a {
  background-size: 100% auto;
  background-position: center;
  background-image: url("../img/company_recruit_pht02.webp");
}
#company_recruit .common_inner .item:nth-of-type(2) a:hover {
  background-size: 110% auto;
}
#company_recruit .common_inner .item a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 2.7rem 3rem 3rem 3rem;
  border-radius: 5px;
  transition: var(--hover_ani_time);
}
@media screen and (max-width: 768px) {
  #company_recruit .common_inner .item a {
    padding: 1.2rem 1.8rem 1.6rem 1.8rem;
  }
}
#company_recruit .common_inner .item a::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  opacity: 0.4;
  background: #000000;
}
#company_recruit .common_inner .item a:hover .txt_box {
  background: url("../img/btn_arrow_white.svg") no-repeat right 0 bottom/1.7rem;
}
#company_recruit .common_inner .item a .en {
  position: relative;
  z-index: 2;
  font-size: 1.6rem;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  #company_recruit .common_inner .item a .en {
    font-size: 1.3rem;
  }
}
#company_recruit .common_inner .item a .txt_box {
  position: relative;
  z-index: 2;
  transition: var(--hover_ani_time);
  background: url("../img/btn_arrow_white.svg") no-repeat right 0 bottom/2rem;
}
@media screen and (max-width: 768px) {
  #company_recruit .common_inner .item a .txt_box {
    background: url("../img/btn_arrow_white.svg") no-repeat right 0 bottom/1.8rem;
  }
}
#company_recruit .common_inner .item a .txt_box h2 {
  font-size: 2.4rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.4rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  #company_recruit .common_inner .item a .txt_box h2 {
    font-size: 2rem;
    margin-bottom: 1.6rem;
  }
}
#company_recruit .common_inner .item a .txt_box p {
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #company_recruit .common_inner .item a .txt_box p {
    font-size: 1.3rem;
    line-height: 1;
  }
}

/* 会社情報 採用情報
--------------------- */
#footer {
  position: relative;
  z-index: 2;
  margin-top: 0;
}/*# sourceMappingURL=style.css.map */