@charset "UTF-8";
/*bootstrap対策*/
:is(h1, h2, h3, h4, h5, h6) {
  margin: 0;
  font-family: inherit;
  line-height: 1;
  color: inherit
}
:is(.dl, dt, dd, ul, ol, label, figure, figcaption, p) {
  margin: 0;
  padding: 0;
}
/****************************/
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*overflow-x: hidden;*/
  /*横スクロールが出るのを隠すため*/
}
html {
  font-size: 62.5%;
  /*font-size: 0.390625vw*/
  /*期値を10pxとする場合：10/2560*100=0.396（表示させたい文字サイズ÷width×100*/
  /*transform: rotate(0.03deg);*/
}
html {
  scroll-padding-top: 70px;
  /* 固定ヘッダの高さ分 */
}
body {
  color: #fff;
  font-size: 1.8rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  /*font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;*/
  line-height: 1;
  border-left: 2.6vw solid #000;
  /*5*/
  border-right: 2.6vw solid #000;
}

/*iphone対策*/
button {
  appearance: none;
  -webkit-appearance: none;
  color: #000;
}





/*汎用*/
.inner {
  width: 80%;
  max-width: 120rem;
  margin: auto;
}
[class^="title"] {
  display: grid;
  gap: 2rem;
  margin: 0 0 5rem;
}
[class^="title"] h3 {
  grid-row: 2;
  font-size: 2rem;
  font-weight: bold;
}
[class^="title"] p {
  font-size: 7rem;
  font-weight: 700;
  font-family: "Jost", sans-serif;

}
.titleA h3 {
  color: #fafc00;
}
.titleB h3 {
  color: #2a7092;
}
.titleB p {
  color: #000;
}
.buttonA {
  background: linear-gradient(130deg, #535b5e, #fefefe, #4a5154, #fefefe, #535b5e);
  padding: 0.1rem;
  width: fit-content;
  min-width: 23rem;
  height: 3.8rem;
  border-radius: 1.9rem;
  position: relative;
  line-height: 1 !important;
  font-size: 1.5rem;
}
.buttonA:hover {
  box-shadow: 0 0 0.5rem #fff inset;
  transition: 1s;
}
.buttonA :is(a, span) {
  color: #fff;
  width: 100%;
  height: inherit;
  display: grid;
  place-items: center;
  background: #0f1010;
  border-radius: 1.9rem;
  text-decoration: none;
  cursor: pointer;
}
.buttonA :is(a, span)::after {
  content: "➝";
  position: absolute;
  right: 1rem;
}
.buttonA:hover :is(a, span)::after {
  right: 0.5rem;
  transition: 1s;
}




/*header*/
#wrapper .header {
  background: rgba(0, 0, 0, 0.5);
}
.header {
  width: calc(100% - 4.16vw);
  /*8*/
  height: 11rem;
  position: fixed;
  left: 2.08vw;
  /*4*/
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.6875vw 0 16.14vw;
  /*9 31*/
}
.header .logo {
  width: fit-content;
}
.header .logo img {
  width: 100%;
}
.header .nav {
  width: 67%;
  min-width: 76rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
.header .nav .ul {
  display: flex;
  width: calc(100% - 7.8125vw);
  /*15*/
  justify-content: space-around;
}
.header .nav .li {
  list-style: none;
  font-size: 1.7rem;
  font-weight: 600;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  text-align: center;
}
.header .nav .li:first-of-type {
  display: none;
}
.header .nav .li a {
  color: #fff;
  display: grid;
  gap: 0.5rem;
}
.header.is-top .nav .li a {
  color: #000;
}
.header .nav .li a::before {
  content: "";
  font-size: 1.4rem;
  font-weight: 300;
  color: #bdbdbd;
}
.header .nav .li:nth-of-type(1) a::before {
  content: "TOP";
}
.header .nav .li:nth-of-type(2) a::before {
  content: "SERVICE";
}
.header .nav .li:nth-of-type(3) a::before {
  content: "RECRUIT";
}
.header .nav .li:nth-of-type(4) a::before {
  content: "WORKS";
}
.header .nav .li:nth-of-type(5) a::before {
  content: "BLOG";
}
.header .nav .li:nth-of-type(6) a::before {
  content: "PROFILE";
}
.header .nav .li:nth-of-type(7) a::before {
  content: "COMPANY";
}
.header .nav .contact {
  width: 7.8125vw;
  min-width: 9em;
  height: 3.8rem;
  border-radius: 1.9rem;
  position: relative;
  line-height: 1 !important;
  font-size: 1.3rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  background: linear-gradient(130deg, #535b5e, #fefefe, #4a5154, #fefefe, #535b5e);
  padding: 0.1rem;
}
.header .nav .contact a {
  color: #fff;
  width: 100%;
  height: inherit;
  display: grid;
  place-items: center;
  background: #0f1010;
  border-radius: 1.9rem;
  text-decoration: none;
}
/*-----ハンバーガーメニュー-----*/
.navToggle {
  display: none;
}









/*main*/
.main {
  position: relative;
}
/* 共通 */
.sidecar {
  width: 6.1rem;
  /*height: 17.6rem;*/
  height: 16rem;
  position: fixed;
  z-index: 2;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: transform;
  transition:
    transform 0.08s linear,
    opacity 0.3s ease;
}
/* 左 */
.sidecar-l {
  background-image: url(/system_panel/uploads/images/move_l.png);
  left: 2.6vw;
  top: 20rem;
}

/* 右 */
.sidecar-r {
  background-image: url(/system_panel/uploads/images/move_r.png);
  right: 2.6vw;
  bottom: 20rem;
}
.mainimg {
  width: 100%;
  height: 40rem;
  background: url(/system_panel/uploads/images/mainimg_bg.png) no-repeat center, linear-gradient(180deg, rgba(0, 0, 0, 1), rgba(101, 113, 123, 1));
}
.maintitle {
  display: flex;
  align-items: baseline;
  flex-direction: row-reverse;
  gap: 1rem;
  position: relative;
  width: fit-content;
  max-width: 120rem;
  top: 70%;
  left: 16.14vw;
  /*31*/
}
.maintitle h2 {
  color: #fafc00;
}
.maintitle p {
  font-size: 5rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: bold;
  color: #fff;
  line-height: 1.44;
}
.maintitle p::first-letter {
  color: #fafc00;
}
.mainimg h2 span {}


/*ブロマル用*/
:is(.blogdetail, .worksdetail, .worksdetail, .topicsdetail) .webgene-blog .webgene-item .cmt h4 {
  font-weight: bold;
  margin: 3rem 0;
  padding: .8rem 2rem;
  border-left: 5px solid #747e87;
  /*要変更*/
  background: #454d54;
  line-height: 1.5;
  min-height: 5rem;
  display: grid;
  align-items: center;
}

:is(.blogdetail, .worksdetail, .worksdetail, .topicsdetail) .webgene-blog .webgene-item .cmt h5 {
  font-weight: bold;
  font-size: clamp(1rem, 0.909rem + 0.3vw, 1.25rem);
  margin: 2rem 0 .5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #dadada;
  position: relative;
  line-height: 1.3;
}
:is(.blogdetail, .worksdetail, .worksdetail, .topicsdetail) .webgene-blog .webgene-item .cmt h3::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 20%;
  height: 3px;
  background-color: #192c56;
  /*要変更*/
  min-width: 50px;
}
.bottom {
  width: 100%;
}
.bottom .col2 {
  display: flex;
}
.bottom .col2 :is(.left, .right) {
  width: 50%;
}
.bottom .col2 :is(.left, .right)>p {
  line-height: 2.05;
  margin: 0 0 5rem;
}
.bottom .col2 .left {
  padding: 8rem 4.16vw 8rem 16.14vw;
  /*8 31*/
  background: url(/system_panel/uploads/images/bottom_l.jpg) no-repeat center rgba(20, 91, 91, 1);
  background-blend-mode: multiply;
  background-size: cover;
}
.bottom .col2 .right {
  padding: 8rem 16.14vw 8rem 4.16vw;
  /*31 8*/
  background: url(/system_panel/uploads/images/bottom_r.jpg) no-repeat center rgba(20, 91, 91, 1);
  background-blend-mode: multiply;
  background-size: cover;
}
.bottom .col2 :is(.left, .right) .buttonA {
  mix-blend-mode: exclusion;
}





/*footer*/
.footer {
  padding: 9rem 0 4rem;
  width: 100%;
  background: linear-gradient(180deg, rgba(8, 8, 4, 1) 75%, rgba(8, 8, 4, 0.8));
}
.footer .logo {
  margin: 0 0 5rem;
}
.footer .logo img {}
.footer .inner>p:not(.copyright) {
  line-height: 2.05;
  margin: 0 0 10rem;
}
.footer .inner .copyright {
  text-align: center;
}
.footer .inner .copyright a {
  color: inherit;
  text-decoration: none;
}



/*追加ライブラリ*/
/*スムーススクロール*/
html {
  /*scroll-behavior: smooth;※smoooothでの使用は不可*/
}





/*ページ遷移時のフェードイン効果*/
html {
  animation: fadein 3s forwards;
}
@keyframes fadein {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}





/*.headerSwitch.js用*/
/*「.scroll-nav」付与時のヘッダーデザイン */
.header.scroll-nav {
  background: rgba(0, 0, 0, 0.5);
}
/* 「.scroll-nav」付与時の.logo,.ul,aデザイン用*/
.header.scroll-nav :is(.logo, .ul .li a) {}





/*pagetopボタン用*/
.pagetop {
  position: fixed;
  bottom: 5rem;
  right: 10%;
  color: #fff;
  width: 5.3rem;
  height: 5.3rem;
  z-index: 4;
}
.pagetop a {
  width: inherit;
  height: inherit;
  display: inline-grid;
  place-items: center;
  color: #fff;
}





/*アコーディオン*/
.aco2 {
  display: none;
  /*初期状態で開いておく場合はinitialに変更*/
}
#wrapper .aco2 {
  display: initial;
  /*初期状態で開いておく場合はinitialに変更*/
}
.aco-open {
  position: relative;
}
.aco-open::after {
  /* 閉じている時 */
  content: "×";
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 5rem;
  color: #b6e0c2;
}
.aco-open.active::after {
  /* 開いている時 */
  content: "＋";
  font-size: 5rem;
  color: #b6e0c2;
  top: 1.5rem;
}





/*animate.css用*/
/*wow.js（animate.cssのスクロールのタイミングに発動させるライブラリ）用*/
.box {
  animation-fill-mode: forwards;
}

/*animate.cssの追加css*/
.animate__delay-1s {
  animation-delay: calc(var(--animate-delay)*0.5) !important;
}
.animate__delay-2s {
  animation-delay: calc(var(--animate-delay)*1) !important;
}
.animate__delay-3s {
  animation-delay: calc(var(--animate-delay)*1.5) !important;
}
.animate__delay-4s {
  animation-delay: calc(var(--animate-delay)*2) !important;
}
.animate__delay-5s {
  animation-delay: calc(var(--animate-delay)*2.5) !important;
}
.animate__delay-6s {
  animation-delay: calc(var(--animate-delay)*3) !important;
}
.animate__delay-7s {
  animation-delay: calc(var(--animate-delay)*3.5) !important;
}
.animate__delay-8s {
  animation-delay: calc(var(--animate-delay)*4) !important;
}
.animate__delay-9s {
  animation-delay: calc(var(--animate-delay)*4.5) !important;
}
.animate__delay-10s {
  animation-delay: calc(var(--animate-delay)*5) !important;
}