<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*-------------------------------------*/
/*	トップページ	*/
/*-------------------------------------*/
/*追尾ボタン*/
#fix_btn_block {
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 9999;
}

#fix_btn_block .bt_mv {
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 155px;
  height: 155px;
  border: 1px solid #DC000C;
  border-radius: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: absolute;
  right: 5%;
  bottom: 2%;
  /* animation: poyopoyo 2s ease-out infinite;
  opacity: 1;*/
}

#fix_btn_block .bt_mv span {
  color: #DC000C;
  display: inline-block;
  margin: 0 auto;
  font-weight: 500;
  line-height: 1.5;
}

#fix_btn_block .bt_mv span::after {
  content: "";
  width: 17px;
  height: 17px;
  background-image: url(../images/ico_arrow-thn.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  margin: 5px auto 0 auto;
}

@media screen and (max-width: 768px) {
  #fix_btn_block .bt_mv {
    font-size: 1.4rem;
    width: 110px;
    height: 110px;
    right: 5%;
    bottom: 30%;
  }
}
/*メインビジュアル*/
#main_wrap {
  width: 100%;
  height: 100vh;
  background-image: url(../images/index/main_img.webp);
  background-position: left center;
  background-size: cover;
  position: relative;
}

#main_wrap h2 {
  position: absolute;
  right: 4%;
  top: 150px;
  width: 40%;
  max-width: 580px;
}

#main_wrap .bt_mv {
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 155px;
  height: 155px;
  border: 1px solid #DC000C;
  border-radius: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  line-height: 1.5;
  position: absolute;
  right: 5%;
  bottom: 2%;
  /* animation: poyopoyo 2s ease-out infinite;
  opacity: 1;*/
}

#main_wrap .bt_mv span {
  color: #DC000C;
  display: inline-block;
  margin: 0 auto;
  font-weight: 500;
}

#main_wrap .bt_mv span::after {
  content: "";
  width: 17px;
  height: 17px;
  background-image: url(../images/ico_arrow-thn.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  margin: 5px auto 0 auto;
}

@-webkit-keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%, 70% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%, 70% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
#main_wrap h2 img {
  max-height: 600px;
  height: 100%;
}

@media screen and (max-width: 980px) {
  #main_wrap {
    width: 100%;
    height: 100vh;
    background-image: url(../images/index/main_img.webp);
    background-position: left 15% center;
    background-size: cover;
    position: relative;
  }
  #main_wrap h2 {
    position: absolute;
    right: 5%;
    top: auto;
    bottom: 80px;
    width: 37%;
  }
  #main_wrap .bt_mv {
    font-size: 1.3rem;
    width: 110px;
    height: 110px;
    left: 50%;
    right: auto;
    bottom: 0;
    -webkit-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
  }
}
@media screen and (max-width: 600px) {
  #main_wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 375/710;
    /*height: 100svh;*/
    background-image: url(../images/index/main_img_sp.webp);
    background-position: center bottom;
  }
  #main_wrap h2 {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 70px;
    width: 75%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  #main_wrap .bt_mv {
    left: auto;
    right: 10%;
    bottom: 0;
    -webkit-transform: translate(0%, 50%);
            transform: translate(0%, 50%);
  }
}
@media screen and (max-width: 768px) {
  /*
  #main_wrap .bt_mv {
    font-size: 1.4rem;
    width: 110px;
    height: 110px;
    right: 5%;
    bottom: 30%;
  }
    */
}
/*-------------------------------------*/
/*	top news*/
/*-------------------------------------*/
#news {
  background-color: #F0F0F0;
  padding: 55px 0;
}

#news .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

#news .inner h2 {
  width: 135px;
  font-family: "Noto Sans JP", serif;
  font-size: 2.2rem;
  font-weight: 600;
}

#news .inner h2 span {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

#news .inner dl {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-left: 1px solid #000;
  padding-left: 45px;
}

#news .inner dl a {
  display: block;
}

#news .inner dl a:hover {
  text-decoration: underline;
}

#news .inner dl dt {
  width: 125px;
  font-weight: 500;
  padding: 1em 0;
  letter-spacing: 0.1em;
}

#news .inner dl dd {
  width: calc(100% - 125px);
  padding: 1em 0 1em 10px;
}

#news .inner div {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  #news {
    background-color: #F0F0F0;
    padding: 40px 0;
  }
  #news .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #news .inner h2 {
    width: 100%;
    font-family: "Noto Sans JP", serif;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-inline: var(--padding-inner);
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
  }
  #news .inner dl {
    display: block;
    width: 100%;
    border-left: none;
    padding: 0 var(--padding-inner);
    margin-bottom: 40px;
  }
  #news .inner dl dt {
    width: 100%;
    font-weight: 500;
    padding: 1em 0;
    letter-spacing: 0.1em;
  }
  #news .inner dl dd {
    width: 100%;
    padding: 0em 0 1em;
    border-bottom: 1px dashed #707070;
    line-height: 1.6;
  }
  #news .inner div {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    padding-right: var(--padding-inner);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
/*-------------------------------------*/
/*	top about*/
/*-------------------------------------*/
#about {
  background-color: #DC000C;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

#about aside {
  color: rgba(0, 0, 0, 0.04);
  font-family: "Inter", sans-serif;
  font-size: 20rem;
  font-weight: 800;
  font-style: italic;
  position: absolute;
  z-index: -1;
  text-transform: uppercase;
  line-height: 1;
  top: 40px;
  left: 0;
}

#about h2 {
  font-family: "Inter", sans-serif;
  color: #FFFFFF;
  font-size: 10rem;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 60px;
}

#about h2 span {
  font-family: "Noto Sans JP", serif;
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 28px;
  padding: 0.3em 1em 0.3em 1em;
  font-weight: 600;
  vertical-align: middle;
  position: absolute;
  left: 0;
  bottom: -30px;
}

#about .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
}

#about .inner .about_l {
  width: 50%;
}

#about .inner .about_r {
  width: 41%;
}

.top_sld {
  line-height: 0;
  font-size: 0;
  height: 100%;
}

#about .slick-slide img {
  width: auto;
  height: 100%;
}

.slick-vertical .slick-slide {
  border: none;
}

#about h3 {
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.2;
  font-size: 5rem;
  margin-bottom: 40px;
  font-family: "Noto Sans JP", serif;
}

#about h3 span {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 32px;
}

#about h3 span img {
  vertical-align: baseline;
  margin-right: 10px;
}

#about .caption {
  font-weight: 600;
  line-height: 2.5;
  color: #FFFFFF;
  margin-bottom: 20px;
}

#about ul li {
  margin-bottom: 30px;
}

#about ul li:last-child {
  margin-bottom: 0;
}

#about ul li a {
  display: block;
  background-color: #FFFFFF;
  height: 120px;
  line-height: 120px;
  padding: 0 50px;
  position: relative;
  font-weight: 600;
  font-size: 3rem;
}

#about ul li a span {
  font-weight: 600;
  color: #DC000C;
}

#about ul li a::before {
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../images/ico_arrow-bld.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 45px;
  display: inline-block;
  height: 25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#about ul li a:hover:before {
  right: 40px;
}

@media screen and (max-width: 991px) {
  #about aside {
    font-size: 9rem;
    top: 40px;
    padding-inline: var(--padding-inner);
  }
  #about .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #about .inner .about_l {
    width: 100%;
    max-width: 700px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
  }
  #about .inner .about_r {
    width: 100%;
  }
  #about .inner .about_box_01 {
    padding-inline: var(--padding-inner);
  }
  .top_sld {
    line-height: 0;
    font-size: 0;
    height: 100%;
  }
  #about .slick-slide img {
    width: auto;
    height: 100%;
  }
  .slick-vertical .slick-slide {
    border: none;
  }
}
@media screen and (max-width: 767px) {
  #about h2 {
    font-size: 5rem;
    margin-bottom: 60px;
  }
  #about h2 span {
    font-size: 14px;
  }
  #about h3 {
    color: #FFFFFF;
    font-weight: 700;
    line-height: 1.5;
    font-size: 3.4rem;
    margin-bottom: 40px;
  }
  #about h3 span {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 23px;
  }
  #about h3 span img {
    vertical-align: baseline;
    margin-right: 10px;
  }
  #about .caption {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }
  #about ul li {
    margin-bottom: 20px;
  }
  #about ul li:last-child {
    margin-bottom: 0;
  }
  #about ul li a {
    height: 75px;
    line-height: 75px;
    padding: 0 50px 0 20px;
    font-size: 2rem;
  }
  #about ul li a span {
    font-weight: 600;
    color: #DC000C;
  }
  #about ul li a::before {
    content: "";
    width: 20px;
    height: 20px;
    top: 50%;
    right: 20px;
  }
  #about ul li a:hover:before {
    right: 15px;
  }
}
/*-------------------------------------*/
/*	top about02*/
/*-------------------------------------*/
#about02 {
  background-color: #F0F0F0;
  padding: 100px 0;
}

#about02 dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: relative;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#about02 dl dt {
  width: 55%;
  margin-left: -20px;
  margin-bottom: 60px;
  z-index: 1;
  position: relative;
}

#about02 dl dt img {
  -webkit-box-shadow: 10px 10px #DC000C;
          box-shadow: 10px 10px #DC000C;
}

#about02 dl dd {
  width: 50%;
  background-color: #FFFFFF;
  position: relative;
  padding: 60px 60px 20px 60px;
}

#about02 dl dd p {
  line-height: 2.5;
}

#about02 dl dd .about_fuki {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  #about02 {
    background-color: #FFFFFF;
    padding: 100px 0 60px 0;
  }
  #about02 dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #about02 dl dt {
    width: 90%;
    margin: 0 auto;
    z-index: 1;
    text-align: center;
  }
  #about02 dl dt img {
    -webkit-box-shadow: 7px 7px #DC000C;
            box-shadow: 7px 7px #DC000C;
  }
  #about02 dl dd {
    width: 100%;
    background-color: #F0F0F0;
    position: relative;
    padding: 60px 30px 40px 30px;
    margin-top: -30px;
  }
  #about02 dl dd p {
    font-size: 1.4rem;
  }
  #about02 dl dt .about_fuki {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
/*-------------------------------------*/
/*	top commercial */
/*-------------------------------------*/
#commercial {
  padding-block: 100px;
  background-color: #DC000C;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

#commercial aside {
  color: rgba(0, 0, 0, 0.04);
  font-family: "Inter", sans-serif;
  font-size: 20rem;
  font-weight: 800;
  font-style: italic;
  position: absolute;
  z-index: -1;
  text-transform: uppercase;
  line-height: 1;
  top: 40px;
  left: 0;
}

#commercial h2 {
  font-family: "Inter", sans-serif;
  color: #FFFFFF;
  font-size: 10rem;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 60px;
}

#commercial h2 span {
  font-family: "Noto Sans JP", serif;
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 28px;
  padding: 0.3em 1em 0.3em 1em;
  font-weight: 600;
  vertical-align: middle;
  position: absolute;
  left: 0;
  bottom: -30px;
}

#commercial .block_01 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#commercial .block_01 .block_youtube {
  aspect-ratio: 16/9;
}

#commercial .block_01 .block_youtube iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#commercial .block_01 .block_content_01 {
  padding-inline: 20px;
}

#commercial .block_01 .block_ttl_01 {
  font-size: 32px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
}

#commercial .block_01 .block_ttl_01 .sub {
  font-size: 26px;
  font-weight: bold;
}

.block_btnwrap_01 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 34px;
  margin-inline: auto;
}

@media screen and (max-width: 991px) {
  #commercial aside {
    font-size: 9rem;
    top: 40px;
    padding-inline: var(--padding-inner);
  }
}
@media screen and (max-width: 767px) {
  #commercial {
    padding-bottom: 80px;
  }
  #commercial h2 {
    font-size: 5rem;
    margin-bottom: 60px;
    padding-inline: var(--padding-inner);
  }
  #commercial h2 span {
    left: var(--padding-inner);
    font-size: 14px;
  }
  #commercial .block_01 {
    display: grid;
    grid-template-columns: 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-inline: 0;
  }
  #commercial .block_01 .block_youtube {
    max-width: 600px;
    width: 100%;
    margin-inline: auto;
  }
  #commercial .block_01 .block_ttl_01 {
    font-size: 26px;
    line-height: 1.5;
  }
  #commercial .block_01 .block_ttl_01 .sub {
    font-size: 20px;
  }
}
/*-------------------------------------*/
/*	top staff */
/*-------------------------------------*/
#staff {
  overflow: hidden;
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

#staff h2 {
  margin-bottom: 80px;
  line-height: 1;
}

#staff h2 span.en {
  font-family: "Inter", sans-serif;
  color: #FFFFFF;
  font-size: 10rem;
  font-weight: 800;
  font-style: italic;
  position: relative;
  text-transform: uppercase;
  background-color: #DC000C;
  display: inline-block;
  padding: 0 0.2em;
}

#staff h2 span.jp {
  font-family: "Noto Sans JP", serif;
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 28px;
  padding: 0.3em 1em 0.3em 1em;
  font-weight: 600;
  vertical-align: middle;
  position: absolute;
  left: 0;
  bottom: -30px;
}

#staff aside {
  color: rgba(0, 0, 0, 0.05);
  font-family: "Inter", sans-serif;
  font-size: 20rem;
  font-weight: 800;
  font-style: italic;
  position: absolute;
  z-index: -1;
  text-transform: uppercase;
  line-height: 1;
  top: 40px;
  left: 0;
}

.work_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 20px;
}

.work_list .staff_box {
  width: calc(33.3333333333% - 20px);
  margin-bottom: 60px;
}

.work_list .staff_box a {
  position: relative;
}

.work_list .staff_box h3 {
  color: #FFFFFF;
  font-size: 2.4rem;
  line-height: 1;
  position: absolute;
  left: 0;
  bottom: -18px;
}

.work_list .staff_box h3 span {
  font-weight: 600;
  background-color: #DC000C;
  display: inline-block;
  padding: 0.1em 1em;
  position: relative;
}

.work_list .staff_box h3 span::before {
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../images/ico_arrow_black.svg);
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.work_list .staff_box a:hover h3 span::before {
  right: -35px;
}

.work_list .staff_box.fuki {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

a.bt_staff {
  color: #FFFFFF;
  font-size: 2.4rem;
  line-height: 1;
}

a.bt_staff span {
  font-weight: 600;
  background-color: #DC000C;
  display: inline-block;
  padding: 0.1em 1em;
  position: relative;
}

a.bt_staff span::before {
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../images/ico_arrow_black.svg);
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 991px) {
  .work_list .staff_box {
    width: calc(50% - 20px);
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  #staff {
    padding: 80px 0;
  }
  .work_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .work_list .staff_box {
    max-width: 400px;
    width: 100%;
    margin: 0 auto 60px auto;
  }
  .work_list .staff_box h3 {
    color: #FFFFFF;
    font-size: 2rem;
    line-height: 1;
    position: absolute;
    left: 0;
    bottom: -10px;
  }
  #staff h2 {
    margin-bottom: 40px;
  }
  #staff h2 span.en {
    font-family: "Inter", sans-serif;
    color: #FFFFFF;
    font-size: 5rem;
    font-weight: 800;
    font-style: italic;
    position: relative;
    text-transform: uppercase;
    background-color: #DC000C;
    display: inline-block;
    padding: 0 0.2em;
  }
  #staff h2 span.en.word_01 {
    position: relative;
    padding-right: 1em;
  }
  #staff h2 span.en.word_02 {
    margin-top: 10px;
    margin-left: 2em;
  }
  #staff h2 span.jp {
    font-family: "Noto Sans JP", serif;
    display: inline-block;
    background-color: #000000;
    color: #FFFFFF;
    font-size: 14px;
    padding: 0.3em 1em 0.3em 1em;
    font-weight: 600;
    vertical-align: middle;
    position: absolute;
    left: auto;
    right: 0;
    bottom: auto;
    top: 50%;
    -webkit-transform: translate(80%, -50%);
            transform: translate(80%, -50%);
  }
  .work_list .staff_box .img_wrap {
    padding-right: 7px;
    padding-bottom: 7px;
  }
  .work_list .staff_box a img {
    -webkit-box-shadow: 7px 7px #DC000C;
            box-shadow: 7px 7px #DC000C;
  }
  #staff aside {
    left: 50%;
    font-size: 10rem;
    text-align: center;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
/*-------------------------------------*/
/*	トップ　ワークバランス   */
/*-------------------------------------*/
#env {
  background-color: #DC000C;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: 100px;
}

#env aside {
  color: rgba(255, 255, 255, 0.1);
  font-family: "Inter", sans-serif;
  font-size: 20rem;
  font-weight: 800;
  font-style: italic;
  position: absolute;
  z-index: -1;
  text-transform: uppercase;
  line-height: 1;
  bottom: 40px;
  left: 0;
}

#env_ttl {
  z-index: 2;
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}

#env_ttl .fuki_env {
  position: absolute;
  right: 0;
  bottom: 10px;
}

#env_ttl h2 {
  font-family: "Inter", sans-serif;
  color: #DC000C;
  font-size: 10rem;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  margin-bottom: -100px;
}

#env_ttl h2 span {
  font-family: "Noto Sans JP", serif;
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 28px;
  padding: 0.3em 1em 0.3em 1em;
  font-weight: 600;
  vertical-align: middle;
  position: absolute;
  left: 0;
  bottom: -30px;
}

#env ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 20px 10px;
  margin-bottom: 60px;
}

#env ul li {
  background-color: #FFFFFF;
  padding: 30px 10px;
  text-align: center;
  font-size: 1.6rem;
}

#env ul li img {
  display: block;
  margin: 0 auto 15px;
}

#env ul li img.icon {
  width: 100%;
  aspect-ratio: 175/120;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}

a.bt_env {
  color: #DC000C;
  font-size: 2.4rem;
  line-height: 1;
}

a.bt_env span {
  font-weight: 600;
  background-color: #FFFFFF;
  display: inline-block;
  padding: 0.1em 1em;
  position: relative;
}

a.bt_env span::before {
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../images/ico_arrow_black.svg);
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 991px) {
  #env ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px 10px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  #env {
    margin-top: 50px;
  }
  #env .fuki_env {
    position: relative;
    right: auto;
    bottom: auto;
    display: block;
    margin: 0 auto 40px auto;
  }
  #env_ttl {
    padding-left: 20px;
  }
  #env_ttl h2 {
    font-size: 5rem;
    margin-bottom: -63px;
    padding-inline: var(--padding-inner);
  }
  #env_ttl h2 span {
    font-size: 14px;
    bottom: -10px;
  }
  #env aside {
    bottom: 0px;
    left: 50%;
    font-size: 9rem;
    line-height: 0.9;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  #env ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 10px;
    max-width: 500px;
    margin: 0 auto 60px auto;
    padding-inline: var(--padding-inner);
  }
  #env ul li {
    padding: 15px 20px;
    text-align: center;
    font-size: 1.4rem;
  }
}
/*-------------------------------------*/
/*	トップ　リクルート   */
/*-------------------------------------*/
#recruit {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#recruit h2 {
  position: relative;
  margin-bottom: 80px;
}

#recruit h2 span.en {
  font-family: "Inter", sans-serif;
  color: #FFFFFF;
  font-size: 10rem;
  font-weight: 800;
  font-style: italic;
  position: relative;
  text-transform: uppercase;
  background-color: #DC000C;
  display: inline-block;
  padding: 0 0.2em;
}

#recruit h2 span.jp {
  font-family: "Noto Sans JP", serif;
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 28px;
  padding: 0.3em 1em 0.3em 1em;
  font-weight: 600;
  vertical-align: middle;
  position: absolute;
  left: 0;
  bottom: -30px;
}

#recruit aside {
  color: rgba(0, 0, 0, 0.05);
  font-family: "Inter", sans-serif;
  font-size: 20rem;
  font-weight: 800;
  font-style: italic;
  position: absolute;
  z-index: -1;
  text-transform: uppercase;
  line-height: 1;
  top: 40px;
  left: 0;
}

#recruit ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#recruit ul li {
  width: 33.3333333333%;
  text-align: center;
  border-right: 3px solid #DC000C;
}

#recruit ul li:first-child {
  border-left: 3px solid #DC000C;
}

#recruit ul li a {
  display: block;
  position: relative;
  padding: 40px 20px;
}

#recruit ul li a span {
  font-weight: 600;
  font-size: 2.2rem;
  position: relative;
  padding-right: 30px;
}

#recruit ul li a span::after {
  content: url(../images/ico_arrow-bld.svg);
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#recruit ul li a:hover span::after {
  right: -5px;
}

#recruit ul li a img {
  display: block;
  margin: 0 auto 10px auto;
}

@media screen and (max-width: 768px) {
  #recruit h2 span.en {
    font-size: 5rem;
    padding-inline: var(--padding-inner);
  }
  #recruit h2 span.jp {
    font-size: 14px;
    left: var(--padding-inner);
    bottom: 0;
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%);
  }
  #recruit aside {
    font-size: 9rem;
    top: 0px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  #recruit ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
  }
  #recruit ul li {
    width: 100%;
    border-right: 0;
    border-bottom: 3px solid #DC000C;
  }
  #recruit ul li:first-child {
    border-left: none;
  }
  #recruit ul li:last-of-type {
    border-bottom: none;
  }
  #recruit ul li a img {
    width: 45%;
  }
  #recruit ul li a span {
    font-size: 1.8rem;
  }
}/*# sourceMappingURL=index.css.map */</pre></body></html>