@charset "UTF-8";
/*--◇全体--*/
/*色指定*/
:root {
  --main-color1:#fdfdfd;
  --main-color2:#242424;
  --main-color3:#0e78cf;
  --main-color4:#7c7c7c;
  --main-color5:#e4e4e4;
  --main-color6:#102d44;
  --main-color7:#5baaeb;
  --main-color8:#e0eaf1;
  --main-color9:#df6f24;
}

/*--変数設定--*/
/*横幅*/
/*ブレイクポイント設定*/
/*--mixin設定--*/
/*レスポンシブル*/
/*フォントサイズを調整*/
/*影*/
/*グラデーション*/
/*--その他--*/
/*文字の色デフォルト*/
main {
  overflow-x: hidden;
  background-color: var(--main-color1);
}
main div, main p {
  color: var(--main-color2);
}

/*スマホのみ表示するクラス*/
.sp-only {
  display: none;
}
@media screen and (max-width: 480px) {
  .sp-only {
    display: block;
  }
}

/*スマホのみ非表示のクラス*/
@media screen and (max-width: 480px) {
  .pc-only {
    display: none;
  }
}

/*画像ブロック中央寄せ*/
.img-center {
  text-align: center;
}

/*webボタン*/
div.ccm-page a.web-btn {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 230px;
  text-align: left;
  padding: 0.4em 0.7em 0.5em 0.7em;
  text-decoration: none;
  background-color: var(--main-color9);
  border: 2px solid var(--main-color9);
  transition: all 0.2s;
  padding-right: 1em;
  color: var(--main-color1);
}
@media screen and (max-width: 480px) {
  div.ccm-page a.web-btn {
    font-size: 0.9em;
  }
}
div.ccm-page a.web-btn::after {
  position: absolute;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  top: 50%;
  right: 0.9em;
  transition: all 0.2s;
  transform: translateY(-50%);
}
div.ccm-page a.web-btn:hover {
  color: var(--main-color9);
  background-color: transparent;
}
div.ccm-page a.web-btn:hover::after {
  color: var(--main-color9);
  right: 0.4em;
}

/*conctainerの幅調整*/
.container-width {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 3%;
}

.container-width-s {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 3%;
}

.bg-color {
  background-color: var(--main-color1);
  padding-top: 20px;
  padding-bottom: 20px;
}

/*カスタムクラス*/
.web-width {
  max-width: 1150px;
  margin: 0 auto;
}

.web-width-s {
  max-width: 950px;
  margin: 0 auto;
}

/*◇ヘッター*/
/*ロゴ*/
#header-logo {
  position: relative;
  z-index: 49;
}
@media screen and (max-width: 480px) {
  #header-logo {
    height: 65px;
  }
}
#header-logo a {
  position: absolute;
  top: 10px;
  left: 3%;
  max-height: 50px;
}
@media screen and (max-width: 480px) {
  #header-logo a {
    top: 50%;
    left: 1%;
    max-width: calc(98% - 220px);
    transform: translateY(-50%);
  }
}
#header-logo a img {
  max-height: inherit;
  transition: opacity 0.2s;
}
#header-logo a:hover img {
  opacity: 0.7;
}

/*グローバルナビ*/
#header-global-nav {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  z-index: 100;
  filter: drop-shadow(rgba(99, 99, 99, 0.2) 0px 2px 8px);
}
#header-global-nav a {
  position: relative;
  width: 120px;
  height: 65px;
  background-color: var(--main-color9);
}
#header-global-nav a .recruit {
  position: absolute;
  width: 120px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  color: var(--main-color1);
  text-align: center;
}

/*ハンバーガーメニュー*/
#openbtn4 {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  background: var(--main-color2);
  cursor: pointer;
  width: 100px;
  height: 65px;
  padding: 0 5px;
  padding-top: 38px;
}
#openbtn4 span {
  display: inline-block;
  transition: all 0.3s; /*アニメーションの設定*/
  position: absolute;
  left: 50%;
  height: 2px;
  background: var(--main-color1);
  width: 45%;
  transform: translateX(-50%);
}
#openbtn4 span:nth-of-type(1) {
  top: 13px;
}
#openbtn4 span:nth-of-type(2) {
  top: 21px;
}
#openbtn4 span:nth-of-type(3) {
  top: 30px;
}
#openbtn4.active span:nth-of-type(1) {
  top: 16px;
  transform: translateX(-50%) translateY(6px) rotate(-45deg);
  width: 30%;
}
#openbtn4.active span:nth-of-type(2) {
  opacity: 0;
}
#openbtn4.active span:nth-of-type(3) {
  top: 28px;
  transform: translateX(-50%) translateY(-6px) rotate(45deg);
  width: 30%;
}
#openbtn4 .menu {
  height: 22px;
  text-align: center;
  color: var(--main-color1);
}

#menu-panel {
  position: fixed;
  background-color: var(--main-color2);
  opacity: 0;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 50;
}
#menu-panel .box {
  padding: 150px 5% 50px 5%;
}
@media screen and (max-width: 480px) {
  #menu-panel .box {
    padding: 100px 5% 50px 5%;
  }
}
#menu-panel .box ul {
  font-size: 1.15em;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.6;
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}
#menu-panel .box ul li {
  border-bottom: 1px solid var(--main-color1);
}
#menu-panel .box ul li a {
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--main-color1);
  padding: 0.75em 1em;
  padding-right: 1.2em;
  transition: all 0.3s;
}
#menu-panel .box ul li a::after {
  position: absolute;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
#menu-panel .box ul li a:hover {
  background-color: #686868;
}
#menu-panel.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/*◇フッター*/
.footer-area {
  padding: 50px 3%;
}
.footer-area .flex-box {
  display: flex;
}
@media screen and (max-width: 800px) {
  .footer-area .flex-box {
    display: block;
  }
}
.footer-area .flex-box .company-box {
  width: 40%;
}
.footer-area .flex-box .company-box a img {
  max-width: 300px;
  transition: opacity 0.2s;
}
.footer-area .flex-box .company-box a:hover img {
  opacity: 0.7;
}
@media screen and (max-width: 800px) {
  .footer-area .flex-box .company-box {
    width: 100%;
    margin-bottom: 20px;
  }
}
.footer-area .flex-box .sitemap-box {
  width: 60%;
}
@media screen and (max-width: 800px) {
  .footer-area .flex-box .sitemap-box {
    width: 100%;
  }
}
.footer-area .flex-box .sitemap-box .h {
  max-width: 550px;
  font-size: 1.15em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  border-left: 8px solid;
  border-bottom: 1px solid;
  padding-left: 0.5em;
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif;
}
.footer-area .flex-box .sitemap-box ul {
  list-style: none;
  padding-left: 0;
  display: flex;
}
@media screen and (max-width: 480px) {
  .footer-area .flex-box .sitemap-box ul {
    flex-direction: column;
  }
}
.footer-area .flex-box .sitemap-box ul li {
  margin-right: 0.5em;
}
@media screen and (max-width: 480px) {
  .footer-area .flex-box .sitemap-box ul li {
    margin-bottom: 0.5em;
  }
}
.footer-area .flex-box .sitemap-box ul li a {
  padding: 0.4em 0.25em;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--main-color2);
  transition: all 0.2s;
}
.footer-area .flex-box .sitemap-box ul li a:hover {
  color: var(--main-color9);
}

/*見出し*/
div.ccm-page h2 {
  position: relative;
  padding: 0.2em 0.2em;
  border-bottom: 2px solid var(--main-color4);
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
div.ccm-page h2::before {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
  width: 20%;
  height: 2px;
  background-color: var(--main-color2);
}
div.ccm-page h3 {
  font-size: 1.4em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
div.ccm-page h4 {
  position: relative;
  font-size: 1.4em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  padding-left: 1em;
}
div.ccm-page h4::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 12px;
  height: 100%;
  background-color: var(--main-color6);
}

/*スタック（お問い合わせ）*/
.contact-stacks {
  width: 100%;
  filter: drop-shadow(rgba(99, 99, 99, 0.2) 0px 2px 8px);
}
.contact-stacks .flex-box {
  display: flex;
  max-width: 1150px;
  margin: 0 auto;
  border: 1px solid var(--main-color4);
}
@media screen and (max-width: 480px) {
  .contact-stacks .flex-box {
    display: block;
  }
}
.contact-stacks .flex-box .h-box {
  width: 250px;
  background-color: var(--main-color2);
  padding: 20px 10px 20px 30px;
}
@media screen and (max-width: 480px) {
  .contact-stacks .flex-box .h-box {
    width: 100%;
  }
}
.contact-stacks .flex-box .h-box .eng {
  font-size: 2.3em;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  font-family: "Roboto", sans-serif;
  color: var(--main-color1);
}
@media screen and (max-width: 480px) {
  .contact-stacks .flex-box .h-box .eng {
    font-size: 2.1em;
  }
}
.contact-stacks .flex-box .h-box .jp {
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--main-color1);
}
@media screen and (max-width: 480px) {
  .contact-stacks .flex-box .h-box .jp {
    font-size: 1.1em;
  }
}
.contact-stacks .flex-box .text-box {
  width: calc(100% - 250px);
  background-color: var(--main-color1);
  padding: 0 30px;
}
@media screen and (max-width: 480px) {
  .contact-stacks .flex-box .text-box {
    width: 100%;
  }
}
.contact-stacks .flex-box .text-box .box {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 0;
}
.contact-stacks .flex-box .text-box .box .bold {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 5px;
}
@media screen and (max-width: 480px) {
  .contact-stacks .flex-box .text-box .box .bold {
    font-size: 1.1em;
  }
}
.contact-stacks .flex-box .text-box .box .normal {
  margin-bottom: 8px;
}
@media screen and (max-width: 480px) {
  .contact-stacks .flex-box .text-box .box .normal {
    font-size: 0.9em;
  }
}
.contact-stacks .flex-box .text-box .box .flex-box2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.contact-stacks .flex-box .text-box .box .flex-box2 a {
  margin-right: 20px;
}
@media screen and (max-width: 800px) {
  .contact-stacks .flex-box .text-box .box .flex-box2 a {
    margin-bottom: 5px;
  }
}
.contact-stacks .flex-box .text-box .box .flex-box2 .tel {
  font-size: 1.5em;
  font-weight: 700;
}
@media screen and (max-width: 480px) {
  .contact-stacks .flex-box .text-box .box .flex-box2 .tel {
    font-size: 1.3em;
  }
}

/*◇アニメーション*/
.slide_img {
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

.slide_anime {
  animation: slide-animation 0.5s ease-in-out 0.2s 1 normal forwards;
}

@keyframes slide-animation {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
            clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
/*◇トップページ*/
/*メインビジュアル*/
#top-mv {
  position: relative;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 1025px) {
  #top-mv {
    height: 65vh;
    min-height: 480px;
  }
}
#top-mv .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: inherit;
  overflow: hidden;
  opacity: 0.15;
}
@media screen and (max-width: 480px) {
  #top-mv .bg-img {
    opacity: 0;
  }
}
#top-mv .bg-img > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: inherit;
  background-image: url("");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: grayscale(100%) contrast(75%);
  transform: scale(1.6);
}
#top-mv .bg-img > div.fadein {
  animation: FadeIn 0.8s forwards;
}
#top-mv .bg-img > div.fadeout {
  animation: FadeOut 0.8s forwards;
}
#top-mv .img-box {
  position: relative;
  width: 77%;
  height: inherit;
  min-height: inherit;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 480px) {
  #top-mv .img-box {
    width: 100%;
    margin: 0 auto 0 0;
  }
}
#top-mv .img-box > div {
  position: absolute;
  inset: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  background-image: url("");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#top-mv .img-box > div.fadein {
  animation: FadeIn 0.8s forwards;
}
#top-mv .img-box > div.fadeout {
  animation: FadeOut 0.8s forwards;
}
#top-mv .text-box {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 480px) {
  #top-mv .text-box {
    top: 55%;
    left: 3%;
  }
}
#top-mv .text-box .main {
  display: inline-block;
  font-size: 2.9em;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.35;
  color: var(--main-color1);
  background-color: var(--main-color9);
  padding: 0.25em 0.5em;
  margin-bottom: 20px;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
@media screen and (max-width: 800px) {
  #top-mv .text-box .main {
    font-size: 2.1em;
  }
}
@media screen and (max-width: 480px) {
  #top-mv .text-box .main {
    font-size: 1.8em;
  }
}
#top-mv .text-box .sub {
  font-size: 1.3em;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.35;
  color: var(--main-color9);
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0 -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}
@media screen and (max-width: 800px) {
  #top-mv .text-box .sub {
    font-size: 1.15em;
  }
}

@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes FadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*お知らせエリア*/
#top-news-wrap > .container {
  max-width: unset !important;
}
#top-news-wrap #top-news {
  position: relative;
  top: -50px;
  left: 5%;
  width: 100%;
  max-width: 1150px;
  border: 1px solid var(--main-color4);
  background-color: var(--main-color1);
  overflow: hidden;
}
@media screen and (max-width: 1025px) {
  #top-news-wrap #top-news {
    left: auto;
  }
}
#top-news-wrap #top-news .col-md-3 {
  background-color: var(--main-color2);
}
#top-news-wrap #top-news .col-md-3 .top-news-h {
  padding: 20px 10px 20px 30px;
}
#top-news-wrap #top-news .col-md-3 .top-news-h .eng {
  font-size: 2.3em;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  font-family: "Roboto", sans-serif;
  color: var(--main-color1);
}
@media screen and (max-width: 480px) {
  #top-news-wrap #top-news .col-md-3 .top-news-h .eng {
    font-size: 1.8em;
  }
}
#top-news-wrap #top-news .col-md-3 .top-news-h .jp {
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--main-color1);
}
@media screen and (max-width: 480px) {
  #top-news-wrap #top-news .col-md-3 .top-news-h .jp {
    font-size: 1.1em;
  }
}
#top-news-wrap #top-news .top-news-contents {
  padding: 15px 10px;
}
#top-news-wrap #top-news p {
  margin-bottom: 0.2em;
}

html.ccm-edit-mode #top-news-wrap #top-news {
  position: static;
  max-width: 1150px;
  margin: 0 auto;
}

/*テキストのアニメーション*/
.text-anime-area {
  height: 10px;
}
.text-anime-area .box {
  position: relative;
  width: 100%;
  height: 1px;
}
.text-anime-area .box .item {
  position: absolute;
  font-size: 9.5em;
  font-weight: 700;
  color: #c5c5c5;
  opacity: 0.3;
  width: -moz-max-content;
  width: max-content;
  pointer-events: none;
  white-space: nowrap;
  top: -30px;
  left: 100%;
  mix-blend-mode: multiply;
  font-family: "Archivo Narrow", sans-serif;
  z-index: 1;
}
.text-anime-area .box .item:first-child {
  animation: textAnime 40s linear 0s infinite normal none;
}
@media screen and (max-width: 480px) {
  .text-anime-area .box .item:first-child {
    animation: textAnime-sp 20s linear 0s infinite normal none;
  }
}
.text-anime-area .box .item:last-child {
  animation: textAnime 40s linear 20s infinite normal none;
}
@media screen and (max-width: 1025px) {
  .text-anime-area .box .item:last-child {
    display: none;
  }
}
.text-anime-area .box .item span {
  color: transparent;
  -webkit-text-stroke: 2px #c5c5c5;
}

@keyframes textAnime {
  0% {
    left: 100%;
  }
  100% {
    left: -150%;
  }
}
@keyframes textAnime-sp {
  0% {
    left: 100%;
  }
  100% {
    left: -350%;
  }
}
/*コンセプト*/
.top-concept {
  width: 100%;
  padding: 0 3%;
  padding-top: 50px;
}
.top-concept .flex-box {
  display: flex;
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .top-concept .flex-box {
    flex-direction: column;
  }
}
.top-concept .flex-box .img-box {
  width: 35%;
}
@media screen and (max-width: 480px) {
  .top-concept .flex-box .img-box {
    width: 100%;
  }
}
.top-concept .flex-box .text-box {
  width: 65%;
  padding: 100px 3% 230px 6%;
}
@media screen and (max-width: 1025px) {
  .top-concept .flex-box .text-box {
    padding: 100px 3% 230px 3%;
  }
}
@media screen and (max-width: 480px) {
  .top-concept .flex-box .text-box {
    width: 100%;
    padding: 50px 3% 150px 3%;
  }
}
.top-concept .flex-box .text-box .bold {
  color: var(--main-color4);
  font-size: 2em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
  .top-concept .flex-box .text-box .bold {
    font-size: 1.4em;
  }
}
.top-concept .flex-box .text-box .normal {
  font-size: 1.1em;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.65;
  margin-bottom: 80px;
}
@media screen and (max-width: 480px) {
  .top-concept .flex-box .text-box .normal {
    font-size: 0.9em;
    margin-bottom: 50px;
  }
}

/*仕切りの帯*/
.top-partition {
  position: static;
  width: 100%;
  height: 120px;
  background-color: var(--main-color2);
  pointer-events: none;
}
.top-partition .img-box {
  position: relative;
  top: -180px;
  right: 4%;
  text-align: right;
}
@media screen and (max-width: 480px) {
  .top-partition .img-box {
    top: -100px;
  }
}
.top-partition .img-box picture {
  margin-left: 4%;
}

/*サービス*/
.midashi01 {
  text-align: center;
  padding: 80px 3% 50px 3%;
}
.midashi01 .eng {
  font-size: 2.5em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  font-family: "Roboto", sans-serif;
}
.midashi01 .jp {
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.service-box {
  padding: 0 10% 50px 10%;
}
@media screen and (max-width: 800px) {
  .service-box {
    padding: 0 5% 50px 5%;
  }
}
.service-box .img-box {
  width: 100%;
  height: 350px;
  background-image: url("");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1600px) {
  .service-box .img-box {
    height: 300px;
  }
}
@media screen and (max-width: 480px) {
  .service-box .img-box {
    height: 200px;
  }
}
.service-box .title {
  font-size: 1.35em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  max-width: 320px;
  padding: 1em 0.2em;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .service-box .title {
    font-size: 1.2em;
  }
}
.service-box .normal {
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .service-box .normal {
    font-size: 0.9em;
    margin-bottom: 30px;
  }
}

/*採用情報*/
.top-recruit {
  width: 100%;
  height: auto;
}
.top-recruit .flex-box {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
}
@media screen and (max-width: 480px) {
  .top-recruit .flex-box {
    display: block;
  }
}
.top-recruit .flex-box .item {
  width: 50%;
  height: auto;
}
@media screen and (max-width: 480px) {
  .top-recruit .flex-box .item {
    width: 100%;
  }
}
.top-recruit .flex-box .item.text-box {
  padding: 50px 0 80px 0;
  background-color: var(--main-color2);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1025px) {
  .top-recruit .flex-box .item.text-box {
    padding: 50px 20px 80px 20px;
  }
}
@media screen and (max-width: 480px) {
  .top-recruit .flex-box .item.text-box {
    padding-top: 30px;
  }
}
.top-recruit .flex-box .item.text-box > div {
  width: 100%;
  max-width: 500px;
  height: 420px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .top-recruit .flex-box .item.text-box > div {
    height: auto;
  }
}
.top-recruit .flex-box .item.text-box > div .info {
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--main-color1);
  padding: 20px 0;
}
@media screen and (max-width: 480px) {
  .top-recruit .flex-box .item.text-box > div .info {
    font-size: 0.9em;
    padding-top: 10px;
    padding-bottom: 20px;
  }
}
.top-recruit .flex-box .item.img-box > div {
  width: 100%;
  height: 600px;
  background-color: var(--main-color7);
  background-image: url("");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1025px) {
  .top-recruit .flex-box .item.img-box > div {
    background-position: 65% center;
  }
}
@media screen and (max-width: 480px) {
  .top-recruit .flex-box .item.img-box > div {
    height: 250px;
  }
}

/*◇サブページ*/
/*◇会社案内*/
/*大見出し*/
#sub-top-h {
  position: relative;
  padding: 130px 15% 150px 15%;
  background: linear-gradient(to top, #f1f1f1, #fff 30%);
  overflow: hidden;
}
@media screen and (max-width: 1025px) {
  #sub-top-h {
    padding: 100px 5% 200px 5%;
  }
}
@media screen and (max-width: 480px) {
  #sub-top-h {
    padding: 100px 5% 100px 5%;
  }
}
#sub-top-h .ashiba-3d-bg {
  position: absolute;
  top: 0;
  right: -20%;
  width: 100%;
  height: 400px;
  background-repeat: no-repeat;
  background-position: center right;
  opacity: 0.6;
  z-index: 0;
}
@media screen and (max-width: 1600px) {
  #sub-top-h .ashiba-3d-bg {
    right: -30%;
  }
}
@media screen and (max-width: 1025px) {
  #sub-top-h .ashiba-3d-bg {
    background-size: 75%;
  }
}
@media screen and (max-width: 480px) {
  #sub-top-h .ashiba-3d-bg {
    right: -35%;
    background-size: 100%;
    height: 270px;
  }
}
#sub-top-h .box {
  position: relative;
  z-index: 1;
}
#sub-top-h .box .eng {
  font-size: 4em;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  border-left: solid 10px var(--main-color9);
  padding-left: 15px;
  margin-bottom: 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  #sub-top-h .box .eng {
    font-size: 2.3em;
  }
}
#sub-top-h .box .jp {
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding-left: 25px;
}
@media screen and (max-width: 480px) {
  #sub-top-h .box .jp {
    font-size: 1.1em;
  }
}

/*パララックス*/
.parallax-area {
  position: relative;
  width: 100%;
  height: 300px;
  background-image: url("");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.parallax-area::after {
  position: absolute;
  content: "";
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-color: var(--main-color6);
  background-color: linear-gradient(20deg, #102d44, #1a486e);
  opacity: 0.3;
  z-index: 0;
}
.parallax-area .box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 950px;
  transform: translate(-50%, -50%);
  padding: 20px 0;
  z-index: 1;
}
.parallax-area .box .sub-catch-copy {
  padding: 70px 3% 90px 3%;
}
@media screen and (max-width: 480px) {
  .parallax-area .box .sub-catch-copy {
    padding: 40px 3%;
  }
}
.parallax-area .box .sub-catch-copy > div {
  max-width: 600px;
  margin: 0 auto;
  filter: drop-shadow(rgba(99, 99, 99, 0.2) 0px 2px 8px);
  font-size: 2em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.parallax-area .box .sub-catch-copy > div span {
  font-size: 1.2em;
  letter-spacing: 0.03em;
  font-weight: 700;
}
@media screen and (max-width: 480px) {
  .parallax-area .box .sub-catch-copy > div {
    font-size: 1.5em;
  }
}

/*中見出し*/
.sub-h {
  margin-bottom: 30px;
}
.sub-h .eng {
  font-size: 3em;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.5;
  font-family: "Roboto", sans-serif;
  color: var(--main-color9);
}
.sub-h .jp {
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
.sub-h.recruit .eng {
  text-align: center;
  font-size: 1.25em;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  .sub-h.recruit .eng {
    font-size: 1.1em;
  }
}
.sub-h.recruit .jp {
  text-align: center;
  font-size: 2.7em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  .sub-h.recruit .jp {
    font-size: 1.9em;
  }
}

/*表*/
table.table-th-color {
  border: none;
}
table.table-th-color tbody tr th, table.table-th-color tbody tr td {
  padding: 1.5em 1em;
  vertical-align: middle;
  border-top: 1px solid #afafaf;
}
@media screen and (max-width: 480px) {
  table.table-th-color tbody tr th, table.table-th-color tbody tr td {
    padding: 1em 0.5em;
    font-size: 0.9em;
    border-top: none;
  }
}
table.table-th-color tbody tr th {
  letter-spacing: 0.1em;
  background-color: var(--main-color5);
  width: 30%;
  max-width: 250px;
}
@media screen and (max-width: 480px) {
  table.table-th-color tbody tr th {
    width: 100%;
    max-width: none;
    display: block;
    border-top: 1px solid #afafaf;
  }
}
table.table-th-color tbody tr td {
  line-height: 1.6;
}
@media screen and (max-width: 480px) {
  table.table-th-color tbody tr td {
    width: 100%;
    display: block;
  }
}
table.table-th-color tbody tr:last-child th {
  border-bottom: 1px solid #afafaf;
}
@media screen and (max-width: 480px) {
  table.table-th-color tbody tr:last-child th {
    border-bottom: none;
  }
}
table.table-th-color tbody tr:last-child td {
  border-bottom: 1px solid #afafaf;
}

/*◇事業案内*/
/*強み*/
.strength {
  width: 100%;
  max-width: 950px;
  background-color: var(--main-color1);
  padding: 40px 20px 35px 20px;
  margin: 0 auto;
  filter: drop-shadow(rgba(99, 99, 99, 0.2) 0px 2px 8px);
}
.strength .flex-box {
  display: flex;
  margin-bottom: 25px;
}
@media screen and (max-width: 480px) {
  .strength .flex-box {
    display: block;
    border-bottom: 1px solid var(--main-color4);
  }
}
.strength .flex-box .item.num {
  width: 15%;
  font-family: "Roboto", sans-serif;
  text-align: center;
  border-right: 1px solid var(--main-color4);
  font-size: 4em;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 10px 20px;
}
@media screen and (max-width: 480px) {
  .strength .flex-box .item.num {
    width: 100%;
    font-size: 2em;
    padding: 10px 20px 0px 20px;
    border-right: none;
  }
  .strength .flex-box .item.num img {
    text-align: center;
    width: 110px;
  }
}
.strength .flex-box .item.text {
  width: 85%;
  padding: 10px 20px 10px 30px;
}
@media screen and (max-width: 480px) {
  .strength .flex-box .item.text {
    width: 100%;
    padding: 10px 10px;
  }
}
.strength .flex-box .item.text .bold {
  font-size: 1.2em;
  font-weight: 700;
  color: var(--main-color6);
  margin-bottom: 0.6em;
}
@media screen and (max-width: 480px) {
  .strength .flex-box .item.text .bold {
    font-size: 1.1em;
  }
}
@media screen and (max-width: 480px) {
  .strength .flex-box .item.text .normal {
    font-size: 0.9em;
  }
}

/*各事業区切り*/
.black-right-column {
  background: repeating-linear-gradient(to right, transparent 0%, transparent 50%, var(--main-color2) 50%, var(--main-color2) 100%);
}

.black-right-area {
  padding: 30px 40px 70px 40px;
  background-color: var(--main-color2);
}
@media screen and (max-width: 480px) {
  .black-right-area {
    padding: 30px 10px 70px 40px;
  }
}
.black-right-area .flex-box {
  display: flex;
}
@media screen and (max-width: 480px) {
  .black-right-area .flex-box {
    display: block;
  }
}
.black-right-area .flex-box .item {
  width: 50%;
}
@media screen and (max-width: 480px) {
  .black-right-area .flex-box .item {
    width: 100%;
  }
}
.black-right-area .flex-box .item.title .h {
  font-size: 2.6em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--main-color1);
  margin-bottom: 0.25em;
}
@media screen and (max-width: 480px) {
  .black-right-area .flex-box .item.title .h {
    font-size: 2em;
    margin-bottom: 0.8em;
  }
}
.black-right-area .flex-box .item.contents {
  padding-left: 5em;
  color: var(--main-color1);
}
@media screen and (max-width: 480px) {
  .black-right-area .flex-box .item.contents {
    padding-left: 0;
    font-size: 0.9em;
  }
}

/*施工までの流れ*/
.construction-flow {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
}
.construction-flow .flex-box {
  display: flex;
  background-color: var(--main-color1);
  padding: 20px;
  filter: drop-shadow(rgba(99, 99, 99, 0.2) 0px 2px 8px);
}
@media screen and (max-width: 480px) {
  .construction-flow .flex-box {
    display: block;
  }
}
.construction-flow .flex-box .item.num {
  width: 15%;
  min-width: 90px;
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-size: 4em;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 10px 0;
}
@media screen and (max-width: 480px) {
  .construction-flow .flex-box .item.num {
    width: 100%;
    font-size: 2.5em;
    padding: 10px 20px 0px 20px;
    border-right: none;
  }
}
.construction-flow .flex-box .item.text {
  width: 85%;
  padding: 0 0 0 20px;
}
@media screen and (max-width: 480px) {
  .construction-flow .flex-box .item.text {
    width: 100%;
    padding: 10px 10px;
  }
}
.construction-flow .flex-box .item.text .bold {
  font-size: 1.2em;
  font-weight: 700;
  color: var(--main-color6);
  margin-bottom: 0.6em;
}
@media screen and (max-width: 480px) {
  .construction-flow .flex-box .item.text .bold {
    font-size: 1.1em;
  }
}
.construction-flow .flex-box .item.text .normal span {
  font-size: 1.1em;
  font-weight: 700;
  padding: 0.1em 0;
}
@media screen and (max-width: 480px) {
  .construction-flow .flex-box .item.text .normal {
    font-size: 0.9em;
  }
}
.construction-flow .arrow {
  text-align: center;
  font-size: 2.2em;
  color: var(--main-color2);
  padding: 0.3em;
}

/*--◇お問い合わせページ--*/
/*フォーム*/
#web-form .form-control:focus {
  border-color: var(--main-color9);
  box-shadow: 0 0 0 0.25rem rgba(253, 124, 49, 0.5);
}
#web-form input[type=submit] {
  background-color: var(--main-color9);
  border-color: var(--main-color9);
}
#web-form input[type=submit]:focus {
  box-shadow: 0 0 0 0.25rem rgba(253, 124, 49, 0.5);
}

/*--お問い合わせ--*/
.contact-box {
  width: 100%;
  max-width: 750px;
  height: auto;
  padding: 30px 20px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  border-top: solid 1px var(--main-color6);
  border-bottom: solid 1px var(--main-color6);
}
.contact-box .item {
  width: 50%;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact-box .item {
    width: 100%;
  }
}
.contact-box .item .h {
  text-align: center;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
@media screen and (max-width: 480px) {
  .contact-box .item .h {
    padding-bottom: 0.5em;
  }
}
.contact-box .item .num {
  font-family: "Roboto", sans-serif;
  font-size: 1.7em;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
@media screen and (max-width: 480px) {
  .contact-box .item .num {
    text-align: center;
  }
}
.contact-box .item .hour {
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
@media screen and (max-width: 480px) {
  .contact-box .item .hour {
    text-align: center;
  }
}

/*表*/
table.table-color {
  border: none;
}
table.table-color tbody tr th, table.table-color tbody tr td {
  padding: 0.8em 1em;
  vertical-align: middle;
  border-bottom: 2px solid var(--main-color1);
}
@media screen and (max-width: 480px) {
  table.table-color tbody tr th, table.table-color tbody tr td {
    padding: 0.5em 0.5em;
    font-size: 0.9em;
    border-top: none;
  }
}
table.table-color tbody tr th {
  letter-spacing: 0.1em;
  width: 30%;
  background-color: var(--main-color2);
  color: var(--main-color1);
  max-width: 250px;
}
@media screen and (max-width: 480px) {
  table.table-color tbody tr th {
    width: 100%;
    max-width: none;
    display: block;
  }
}
table.table-color tbody tr td {
  line-height: 1.6;
  background-color: var(--main-color5);
}
@media screen and (max-width: 480px) {
  table.table-color tbody tr td {
    width: 100%;
    display: block;
  }
}

/*◇採用情報*/
/*採用情報mv*/
#recruit-top {
  position: relative;
  overflow: hidden;
}
#recruit-top::before {
  position: absolute;
  content: "";
  inset: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  background-size: 10px 10px;
  background-position: 50% 50%;
  background-image: repeating-linear-gradient(90deg, var(--main-color6), var(--main-color6) 1px, transparent 1px, transparent 10px), repeating-linear-gradient(0deg, var(--main-color6), var(--main-color6) 1px, transparent 1px, transparent 10px);
  opacity: 0.06;
  z-index: 1;
}
#recruit-top::after {
  position: absolute;
  content: "";
  inset: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  background-color: var(--main-color3);
  opacity: 0.55;
  mix-blend-mode: multiply;
  z-index: 1;
}
#recruit-top picture img {
  transform: scale(1.2);
  animation: 1.3s recruit-mv 0.3s forwards ease-in-out;
}
#recruit-top .box {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 100%;
  max-width: 800px;
  transform: translate(-50%, -50%);
  z-index: 10;
  height: auto;
}
@media screen and (max-width: 480px) {
  #recruit-top .box {
    top: 48%;
  }
}
#recruit-top .box .handwritten {
  position: relative;
}
#recruit-top .box .handwritten img {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  animation: 0.45s slide-animation 2.3s forwards ease-in;
}
@media screen and (max-width: 480px) {
  #recruit-top .box .handwritten img {
    max-width: 220px;
  }
}

@keyframes recruit-mv {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/*メッセージ*/
.recruit-message {
  padding: 80px 3% 100px 3%;
  background-repeat: no-repeat;
  background-position: center bottom 5%;
  background-size: cover;
}
.recruit-message .box {
  max-width: 700px;
  margin: 0 auto;
}
.recruit-message .box .jp-bold {
  font-size: 2.75em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--main-color1);
}
@media screen and (max-width: 480px) {
  .recruit-message .box .jp-bold {
    font-size: 2em;
  }
}
.recruit-message .box .jp-bold span {
  display: inline-block;
}
.recruit-message .box .eng {
  font-size: 2.5em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 40px;
  color: var(--main-color6);
}
@media screen and (max-width: 480px) {
  .recruit-message .box .eng {
    font-size: 1.5em;
  }
}
.recruit-message .box .jp {
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 2;
  color: var(--main-color6);
}
@media screen and (max-width: 480px) {
  .recruit-message .box .jp {
    font-size: 1.05em;
  }
}

/*会社の魅力*/
.recruit-features {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
}
.recruit-features .flex-box {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .recruit-features .flex-box {
    display: block;
  }
}
.recruit-features .flex-box .item {
  width: calc(50% - 50px);
  background-color: var(--main-color1);
  padding: 20px 30px 30px 30px;
  margin-bottom: 30px;
  filter: drop-shadow(rgba(99, 99, 99, 0.2) 0px 2px 8px);
}
@media screen and (max-width: 480px) {
  .recruit-features .flex-box .item {
    width: 100%;
    display: block;
    padding: 10px 20px 20px 20px;
  }
}
.recruit-features .flex-box .item .num {
  min-width: 90px;
  font-family: "Roboto", sans-serif;
  text-align: center;
  padding-bottom: 10px;
  font-size: 3.7em;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .recruit-features .flex-box .item .num {
    width: 100%;
    font-size: 2.5em;
    padding: 10px 20px 0px 20px;
    border-right: none;
  }
}
@media screen and (max-width: 480px) {
  .recruit-features .flex-box .item .text {
    width: 100%;
    padding: 10px 10px;
  }
}
.recruit-features .flex-box .item .text .bold {
  text-align: center;
  font-size: 1.4em;
  font-weight: 700;
  color: var(--main-color9);
  margin-bottom: 0.4em;
}
@media screen and (max-width: 480px) {
  .recruit-features .flex-box .item .text .bold {
    font-size: 1.1em;
  }
}
.recruit-features .flex-box .item .text .normal span {
  font-size: 1.1em;
  font-weight: 700;
  padding: 0.1em 0;
}
@media screen and (max-width: 480px) {
  .recruit-features .flex-box .item .text .normal {
    font-size: 0.9em;
  }
}

/*よくある質問*/
#question .accordion-item {
  background-color: #f5f5f5;
}
#question .accordion-header button.accordion-button {
  font-size: 1.15em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: var(--main-color2);
  background-color: transparent;
}
@media screen and (max-width: 480px) {
  #question .accordion-header button.accordion-button {
    font-size: 1em;
  }
}
#question .accordion-header button.accordion-button.collapsed {
  background-color: var(--main-color1);
  color: var(--main-color4);
}
#question .accordion-header button.accordion-button:focus {
  border-color: var(--main-color4);
  box-shadow: none;
}
#question .accordion-header button.accordion-button::after {
  color: var(--main-color2);
}
#question .accordion-collapse {
  background-color: transparent;
}
@media screen and (max-width: 480px) {
  #question .accordion-collapse {
    font-size: 0.9em;
  }
}/*# sourceMappingURL=active.css.map */