@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: #000;
  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;
}

/*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"] .flex {
  display: flex;
  align-items: center;
  gap: 1rem;
  grid-row: 1/2;
}
.titleA h3 {
  font-size: 3.3rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  line-height: 1.72;
}
.titleB {
  margin: 0 auto 5rem;
}
.titleB h3 {
  text-align: center;
}
.titleB .flex {
  justify-content: center;
}
[class^="title"] .flex p {
  font-size: 4.3rem;
  font-family: "Goldman", sans-serif;
  font-weight: 400;
  font-style: italic;
  color: #192c56;
}
.buttonA {
  width: fit-content;
  min-height: 3.4rem;
  background: #192c56;
  border-radius: 1.7rem;
  position: relative;
  overflow: hidden;
}
.buttonA::before {
  content: "";
  width: 100%;
  height: 100%;
  display: inline-block;
  background: #fff;
  position: absolute;
  left: -100%;
  z-index: 2;
}
.buttonA :is(a, span) {
  width: 100%;
  min-width: 18rem;
  min-height: inherit;
  display: grid;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 0 1em;
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 2;
}
.buttonA:hover::before {
  left: 0;
  transition: 0.5s;
}
.buttonA :is(a, span):hover {
  color: #192c56;
}
.logomark-svg {
  width: 2.6rem;
  height: 2.6rem;
}
.logomark-svg path {
  fill: #192c56;
}
/* 塗りを変更 */





/*header*/
.header {
  width: 100%;
  height: 9rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
  padding: 0 6.77vw 1rem;
  /*13*/
}
.header .flex {
  width: 100%;
  display: flex;
  align-items: end;
  gap: 1rem;
}
.header .flex .logo {
  width: fit-content;
  max-width: 28rem;
}
.header .flex .logo img {
  width: 100%;
}

.header .flex h1 {
  font-size: 1.5rem;
  color: #fff;
}
.header .nav {
  width: 100%;
  max-width: 62rem;
  display: grid;
  align-items: end;
}
.header .nav .ul {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.header .nav .li {
  list-style: none;
  font-size: 1.5rem;
  min-height: 3.4rem;
}
.header .nav .li p {
  min-height: inherit;
}
.header .nav .li a {
  min-height: inherit;
  display: grid;
  align-items: center;
  text-align: center;
  padding: 0 1em;
  color: #fff;
}
.header .nav .li:first-of-type {
  display: none;
}
.header .nav .li:last-of-type {
  width: fit-content;
  min-height: 3.4rem;
  background: #192c56;
  border-radius: 1.7rem;
  position: relative;
  overflow: hidden;
}
.header .nav .li:last-of-type::before {
  content: "";
  width: 100%;
  height: 100%;
  display: inline-block;
  background: #fff;
  position: absolute;
  left: -100%;
  z-index: 2;
}
.header .nav .li:last-of-type a {
  width: 100%;
  min-width: 18rem;
  min-height: inherit;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 0 1em;
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 2;
}
.header .nav .li:last-of-type:hover::before {
  left: 0;
  transition: 0.5s;
}
.header .nav .li:last-of-type a:hover {
  color: #192c56;
}







/*main*/
.main .tab {
  top: 22rem;
  right: 0;
  position: fixed;
  z-index: 9;
}
.main .tab :is(.contact, .line) {
  width: 4rem;
  height: fit-content;
  padding: 1em 0;
}
.main .tab :is(.contact, .line) a {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  gap: 1rem;
  writing-mode:vertical-rl;
}
.main .tab .contact {
  background: #fff;
  margin: 0 0 1rem;
}
.main .tab .contact:hover {
  box-shadow: 0 0 1rem rgba(25, 44, 86, 0.5) inset;
  transition: 0.5s;
}
.main .tab .contact a {
  color: #192c56;
  text-decoration: none;
}
.main .tab .contact a::before {
  content: "";
  background: url(/system_panel/uploads/images/icon_mail.png) no-repeat;
  width: 1.6rem;
  height: 1.2rem;
  display: inline-block;
}
.main .tab .line {
  background: #6ac660;
}
.main .tab .line:hover {
  box-shadow: 0 0 1rem rgba(255, 255, 255, 0.75) inset;
  transition: 0.5s;
}
.main .tab .line a {
  color: #fff;
  text-decoration: none;
}
.main .tab .line a::before {
  content: "";
  background: url(/system_panel/uploads/images/icon_line.png) no-repeat;
  width: 2.9rem;
  height: 2.8rem;
  display: inline-block;
}

.mainimg {
  width: 100%;
  height: 34rem;
  overflow: hidden;
  position: relative;
}
.mainimg .maintitle {
  display: grid;
  gap: 2rem;
  position: absolute;
  z-index: 2;
  left: 18.75vw;
  /*36*/
  bottom: 4rem;
}
.mainimg .maintitle h2 {
  grid-row: 2/3;
  font-size: 4.5rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: #fff;
}
.mainimg .maintitle p {
  font-size: 2rem;
  font-family: "Goldman", sans-serif;
  font-weight: 400;
  font-style: italic;
  color: #fff;
}
.mainimg .pic {
  width: 100%;
  height: inherit;
  position: absolute;
}
.mainimg .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bottom {
  padding: 10rem 0;
  background: url(/system_panel/uploads/images/bottom_bg.jpg) no-repeat top center;
  background-size: cover;
}
.bottom .inner .titleB * {
  color: #fff;
}
.bottom .inner .titleB .logomark-svg path {
  fill: #fff;
}
.bottom .inner>p {
  text-align: center;
  color: #fff;
  margin: 0 auto 20rem;
}
.bottom .inner .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.125vw;
  /*6*/
}
.bottom .inner .grid>div {
  width: 100%;
  min-height: 10rem;
  padding: 1rem;
  background: rgba(255, 2552, 255, 0.75);
  border-radius: 0.5rem;
  display: grid;
  gap: 1rem;
  align-content: center;
}
.bottom .inner .grid>div h4 {
  font-size: 1.9rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  text-align: center;
}
.bottom .inner .grid>div>p {
  font-size: 1.4rem;
  text-align: center;
}
.bottom .inner .grid .tel a {
  font-size: 3rem;
  font-family: "Goldman", sans-serif;
  color: inherit;
}
.bottom .inner .grid .mail .buttonA {
  margin: auto;
}
.bottom .inner .grid .mail a {
  display: flex;
  flex-direction: row-reverse;
  gap: 1rem;
}
.bottom .inner .grid .mail a::after {
  content: "";
  background: url(/system_panel/uploads/images/icon_mail2.png) no-repeat;
  width: 1.6rem;
  height: 1.2rem;
  display: inline-block;
}
.bottom .inner .grid .line .dl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.bottom .inner .grid .line .dt {
  font-size: 3rem;
  font-family: "Goldman", sans-serif;
  font-weight: 400;
}
.bottom .inner .grid .line .dt a {
  color: inherit;
}





/*ブロマル用*/
: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;
  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;
}




/*footer*/
.footer {
  padding: 20rem 0 3rem;
  background: linear-gradient(0deg, rgba(25, 44, 86, 1) 90%, rgba(25, 44, 86, 0));
  margin: -7.5rem auto 0;
}
.footer .inner {
  position: relative;
}
.footer .inner .col2 {
  display: flex;
  margin: 0 auto 10rem;
}
.footer .inner .col2 :is(.left, .right) {
  width: 50%;
}
.footer .inner .col2 .left .logo {
  width: auto;
  max-width: 37rem;
  margin: 0 0 3rem;
}
.footer .inner .col2 .left .logo img {
  width: 100%;
}
.footer .inner .col2 .left>p {
  color: #fff;
  margin: 0 0 3rem;
}
.footer .inner .col2 .left .sns {
  display: flex;
  gap: 1rem;
}
.footer .inner .col2 .left .sns .icon {
  width: 3.9rem;
  height: 3.9rem;
  background: #30436c;
  border-radius: 50%;
}
.footer .inner .col2 .left .sns .icon a {
  width: 100%;
  height: 100%;
  display: grid;
  align-items: center;
  justify-content: center;
}
.footer .inner .col2 .right .col2 :is(.left,.right) .ul .li {
  list-style: none;
  margin: 0 0 3rem;
}
.footer .inner .col2 .right .col2 :is(.left,.right) .ul .li p a {
  color: #fff;
  text-decoration: underline;
}
.footer .inner .pagetop {
  background: initial;
  position: absolute;
  top: 0;
  right: 0;
}
.footer .inner .copyright {
  text-align: center;
  color: #fff;
}








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




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




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




/*pagetopボタン用*/




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




/*アコーディオン*/
.aco2 {
  display: none;
  /*初期状態で開いておく場合はinitialに変更*/
}
#wrapper .aco2 {
  display: initial;
  /*初期状態で開いておく場合はinitialに変更*/
}
.aco-open {
  position: relative;
}
.aco-open::after {
  /* 閉じている時 */
  content: "－";
  width: 3.4rem;
  height: 3.4rem;
  background: #fff;
  display: inline-grid;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 2rem;
  font-size: 2.4rem;
  color: #000;
}
.aco-open.active::after {
  /* 開いている時 */
  content: "＋";
  width: 3.4rem;
  height: 3.4rem;
  background: #fff;
  display: inline-grid;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  font-size: 2.4rem;
  color: #000;
  top: calc(50% - 0.5em);
}




/*========= 流れるテキスト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;
}