@charset "UTF-8";
/*bootstrap対策*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: inherit;
  line-height: 1;
  color: inherit
}
p {
  margin: 0;
}
dl,
ol,
.ul {
  margin: 0;
}
dt,
.dd {
  margin: 0;
}
label,
.figure {
  margin: 0;
  padding: 0;
}
/****************************/
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li,
a,
span,
address,
blockquote,
table,
tr,
th,
.td {
  /*transform: rotate(0.03deg);*/
}
*,
::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: #161717;
  font-size: 1.6rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  /*font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;*/
  line-height: 1;
  background: url(/system_panel/uploads/images/bghtml.png) top center repeat-x;
}

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






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




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





/*汎用*/
.inner {
  width: 80%;
  max-width: 120rem;
  margin: auto;
}
.titleA {
  width: fit-content;
  display: grid;
  gap: 1rem;
  margin: 0 0 5rem;
}
.titleA h3 {
  font-size: initial !important;
  font-weight: bold;
  line-height: 1 !important;
}
.titleA p {
  grid-row: 1/2;
  font-size: 7.5rem;
  font-family: "Jost", sans-serif;
  color: #c3d8e9;
  line-height: 1 !important;
}
.titleA p span {
  color: #3071b8;
}
.buttonA {
  width: fit-content;
  min-width: 20rem;
  height: 3.7rem;
  background: #1e4ca1;
  border-radius: 0.5rem;
  line-height: 1 !important;
}
.buttonA :is(a, span) {
  width: 100%;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: #e2eff8;
  display: flex;
  position: relative;
  padding: 0 2em;
}
.buttonA :is(a, span)::after {
  content: "";
  background: url(/system_panel/uploads/images/arrowA.png) no-repeat;
  width: 1.7rem;
  height: 1.7rem;
  display: inline-block;
  position: absolute;
  right: 1rem;
}












/*header*/
.header {
  width: 100%;
  height: 12rem;
  position: fixed;
  top:0;
  z-index: 9;
}
.header .inner {
  width: 100%;
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .inner .left {
  width: 22.5%;
}
.header .inner .left .logo {
  width: 100%;
}
.header .inner .left .logo img {
  width: auto;
}
.header .inner .right {
  width: calc(100% - 10rem);
}
.header .inner .right .nav {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header .inner .right .nav .ul .li {
  list-style: none;
}
.header .inner .right .nav .ul .li a {
  color: inherit;
}
.header .inner .right .nav>.ul {
  width: 75%;
  display: flex;
  justify-content: space-between;
}
.header .inner .right .nav>.ul>.li {
  flex-grow: 1;
  list-style: none;
  /*position: relative;*/
}
.header .inner .right .nav>.ul>.li:first-of-type {
  display: none;
}
.header .inner .right .nav>.ul>.li>.ul {
  display: none;
}
.header .inner .right .nav>.ul>.li:hover .ul {
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.5rem;
}
.header .inner .right .nav>.ul>.li>.ul>.li:not(:last-of-type) {
  border-bottom: 0.1rem dashed #ccc;
}
.header .inner .right .nav>.ul>.li>.ul>.li a {
  display: block;
  padding: 1rem;
}
.header .inner .right .nav .eng {
  width: 3.6rem;
  height: 3.6rem;
  border: 0.1rem solid #3e3a38;
  background: #fff;
}
.header .inner .right .nav .eng a {
  width: 100%;
  height: 100%;
  display: grid;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: inherit;
}
.header .inner .right .nav .contact {
  width: fit-content;
  min-width: 10em;
  height: 3.6rem;
  background: #043d96;
}
.header .inner .right .nav .contact a {
  width: 100%;
  height: inherit;
  color: #fff;
  display: grid;
  align-items: center;
  justify-content: center;
  padding: 0 2em;
}


/*-----ハンバーガーメニュー-----*/
.navToggle {
  display: none;
}




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




/*.headerSwitch用*/
/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
.header {}
.header.scroll-nav {}
/* 「scroll-navクラス」がヘッダーについたときに、ロゴとナビゲーションの文字を黒にする */
.header.scroll-nav :is(.logo, .ul .li a) {}





/*main*/
.maintitle {
  width: 100%;
  height: 18rem;
  position: relative;
      margin-top: 100px;
}
.maintitle h2 {
  font-size: 4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  color: #043d96;
  position: absolute;
  left: 18.75vw;
  /*36*/
  bottom: 3rem;
}
.maintitle .name{
  font-size: 10rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  background: linear-gradient(72deg, rgba(46, 106, 179, 1) 50%, rgba(226, 232, 154, 1));
  opacity: 0.5;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1 !important;
  /*color: #dbcfcf;*/
  white-space: pre;
  display: block;
  position: absolute;
  right: 0;
  z-index: 2;
}
.bottom {
  padding: 8rem 0;
  background-color: #fff;
}
.bottom .inner .col2 {
  width: 90%;
  max-width: 100rem;
  margin: auto;
  display: flex;
  align-items: end;
  gap: 2.6vw;
  /*5*/
}
.bottom .inner .col2 .left {
  width: 65%;
}
.bottom .inner .col2 .left>p {
  line-height: 2.18;
}
.bottom .inner .col2 .right {
  width: 35%;
}
.bottom .inner .col2 .right :is(.mail, .tel) {
  width: 100%;
  height: 5rem;
  border-radius: 0.5rem;
}
.bottom .inner .col2 .right :is(.mail, .tel) a {
  width: 100%;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  font-weight: bold;
}
.bottom .inner .col2 .right .mail {
  background: #1e4ca1;
  margin: 0 0 2rem;
}
.bottom .inner .col2 .right .mail a {
  color: #e1ecf5;
}
.bottom .inner .col2 .right .mail a::before {
  content: "";
  background: url(/system_panel/uploads/images/icon_mail.png) no-repeat;
  width: 1.6rem;
  height: 1.2rem;
  display: inline-block;
}
.bottom .inner .col2 .right .tel {
  background: #dde49c;
}
.bottom .inner .col2 .right .tel a {
  font-size: 2.1rem;
  color: inherit;
}
.bottom .inner .col2 .right .tel a::before {
  content: "";
  background: url(/system_panel/uploads/images/icon_tel.png) no-repeat;
  width: 1.6rem;
  height: 1.6rem;
  display: inline-block;
}





/*footer*/
.footer {
  width: 100%;
  padding: 7rem 0 4rem;
  background: #1e4ca1;
}
.footer .inner .col2 {
  width: 90%;
  max-width: 100rem;
  display: flex;
  gap: 2.6vw;
  /*5*/
  margin: 0 auto 6rem;
}
.footer .inner .col2 .left {
  width: 55%;
}
.footer .inner .col2 .left .logo {}
.footer .inner .col2 .left .logo img {}
.footer .inner .col2 .left p {
  color: #f5f9fd;
  line-height: 2.18;
  margin: 0 0 5rem;
}
.footer .inner .col2 .left .button {
  width: fit-content;
  min-width: 17.5rem;
  height: 4rem;
  background: #4481c3;
  border-radius: 0.5rem;
  line-height: 1;
}
.footer .inner .col2 .left .button a {
  width: 100%;
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: inherit;
}
.footer .inner .col2 .left .button a::before {
  content: "";
  background: url(/system_panel/uploads/images/icon_door.png) no-repeat;
  width: 1.7rem;
  height: 1.7rem;
  display: inline-block;
}
.footer .inner .col2 .right {
  width: 45%;
}
.footer .inner .col2 .right .nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.footer .inner .col2 .right .nav .ul .li {
  list-style: none;
}
.footer .inner .col2 .right .nav>.ul {
  display: grid;
  align-content: start;
  gap: 2.08vw;
  /*4*/
}
.footer .inner .col2 .right .nav>.ul>.li {
  font-size: 1.7rem;
  font-weight: bold;
}
.footer .inner .col2 .right .nav>.ul>.li>p>a {
  color: #f5f9fd;
}
.footer .inner .col2 .right .nav>.ul>.li>.ul {
  display: grid;
  gap: 1.08vw;
  /*2*/
  margin: 1em 0 0 1em;
}
.footer .inner .col2 .right .nav>.ul>.li>.ul>.li {
  font-size: 1.5rem;
}
.footer .inner .col2 .right .nav>.ul>.li>.ul>.li a {
  color: #cadbe9;
}
.footer .inner .copyright {
  color: #c3d8e9;
  text-align: right;
  padding: 1.5rem 5.2vw 0 0;
  border-top: 0.1rem solid #436cb9;
}



/*ブロマル用*/
:is(.blogdetail, .worksdetail, .casesdetail, .topicsdetail) .webgene-blog .webgene-item .cmt h2 {
  font-weight: bold;
  margin: 2.5rem 0 1rem;
  padding: .8rem 2rem;
  border-left: 5px solid #192c56;
  /*要変更*/
  background: #f4f4f4;
  line-height: 1.3;
}

:is(.blogdetail, .worksdetail, .casesdetail, .topicsdetail) .webgene-blog .webgene-item .cmt h3 {
  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, .casesdetail, .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;
}



/*マーキー*/
.marquee {
  font-size: 10rem;
  line-height: 1;
  width: 100%;
  height: 9.5rem;
  overflow: hidden;
  position: relative;
}
.marquee p {
  font-size: 10rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  background: linear-gradient(72deg, rgba(46, 106, 179, 1) 50%, rgba(226, 232, 154, 1));
  opacity: 0.5;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1 !important;
  /*color: #dbcfcf;*/
  white-space: pre;
  display: block;
  position: absolute;
  animation: marquee 10s linear infinite;/*7*/
  z-index: 2;
  /*animation-duration:2s;
  animation-timing-function:ease-in;
  animation-delay:1s;
  animation-iteration-count:3;
  animation-direction:alternate;
  animation-fill-mode:forwards;
  animation-play-state:running;*/
}
@keyframes marquee {
  0% {
    transform: translateX(110%);
  }
  100% {
    transform: translateX(-100%);
  }
}


/*アコーディオン*/
.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;
}




/*========= 流れるテキストslideAnime ===============*/
/*全共通*/
.slide-in {
  overflow: hidden;
  display: inline-block;
}
.slide-in_inner {
  display: inline-block;
}
/*左右のアニメーション*/
.leftAnime {
  opacity: 0;
  /*事前に透過0にして消しておく*/
}
.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}




/*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;
}

