@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: #3c3c3c;
  font-size: 1.6rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  /*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: #3c3c3c;
}





/*汎用*/
.inner {
  width: 80%;
  max-width: 120rem;
  margin: auto;
}
.titleA {
  display: grid;
  gap: 1rem;
  margin: 0 0 4rem;
}
.titleA h3 {
  font-size: 3.5rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.74;
  position: relative;
  z-index: 2;
}
.titleA h3 span {
  position: relative;
}
.titleA h3 span::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.4rem;
  background: #65a1d7;
  mix-blend-mode: color;
}
.titleA p {
  grid-row: 1/2;
  font-size: 2rem;
  font-family: "Jost", sans-serif;
  font-weight: normal;
  color: #004491;
}
.titleA p::before {
  content: "■";
  color: #65a1d7;
}
.buttonA {
  width: fit-content;
  height: 5rem;
  background: #65a1d7;
  border-radius: 25rem;
}
.buttonA :is(a, span) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 25rem;
  height: inherit;
  position: relative;
  color: #fff;
  text-decoration: none;
}
.buttonA :is(a, span)::after {
  content: "→";
  position: absolute;
  right: 2rem;
}
.buttonA :is(a, span):hover::after {
  right: 1rem;
  transition: 0.5s;
}
.fukidashi {
  width: fit-content;
  padding: 0 2em;
  height: 5.2rem;
  border-radius: 2.6rem;
  background: #004491;
  font-size: 2.5rem;
  color: #fff;
  display: grid;
  align-items: center;
  margin: 0 auto 2rem;
  position: relative;
}
.fukidashi::after {
  content: "";
  width: 1.6rem;
  height: 1.2rem;
  background: #004491;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -1.2rem;
  left: calc(50% - 0.8rem);
}













/*header*/
.header {
  width: 100%;
  height: 7rem;
  margin: auto;
  position: fixed;
  top: 0;
  z-index: 9;
}
.header .inner {
  display: flex;
  justify-content: space-between;
  padding: 3.5rem 0 0;
}
.header .inner .logo {
  width: 15rem;
  height: 13.5rem;
  border-radius: 1rem;
  background: #fff;
  display: grid;
  align-items: center;
  justify-content: center;
}

.header .inner .nav {
  width: 68%;
  max-width: 82rem;
}
.header .inner .nav>.ul {
  width: 100%;
  height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #fff;
  border-radius: 1rem;
  padding: 0 2.08vw 0 0;
  /*4*/
}
.header .inner .nav>.ul>.li {
  width: auto;
  height: inherit;
  list-style: none;
  flex-grow: 1;
  display: grid;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /*position: relative;*/
}
.header .inner .nav>.ul>.li:last-of-type {
  height: 4rem;
  border-radius: 0.5rem;
  background: #65a1d7;
  position: relative;
}
.header .inner .nav>.ul>.li:last-of-type a {
  color: #fff;
}
.header .inner .nav>.ul>.li:last-of-type a::after {
  content: "∨";
  position: absolute;
  right: 2rem;
  transform: scale(1, 0.5);
}
.header .inner .nav .ul .li a {
  display: grid;
  align-items: center;
  justify-content: center;
  color: inherit;
}
.header .inner .nav>.ul>.li>.ul {
  display: none;
}
.header .inner .nav>.ul>.li:hover>.ul {
  display: block;
  position: absolute;
  top: 10rem;
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
}
.header .inner .nav>.ul>.li>.ul>.li {
  list-style: none;
}
.header .inner .nav>.ul>.li>.ul>.li a {
  padding: 1rem 0;
  border-bottom: 0.1rem solid #3c3c3c;
}


/*main*/
.mainimg {
  width: 100%;
  height: 38rem;
  border-radius: 0 0 3.38vw 3.38vw;
  /*6.5*/
  overflow: hidden;
  position: relative;
}
.mainimg .maintitle {
  display: grid;
  gap: 1rem;
  position: absolute;
  bottom: 3rem;
  left: 18.75vw;
  /*36*/
  z-index: 2;
}
.mainimg .maintitle h2 {
  width: fit-content;
  border-radius: 0.5rem;
  font-size: 3.5rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #fff;
  background: #004491;
  line-height: 1.74;
  padding: 0 1em;
}
.mainimg .maintitle p {
  grid-row: 1/2;
  font-size: 8rem;
  font-weight: normal;
  font-family: "Jost", sans-serif;
  color: rgba(255, 255, 255, 0.5);
}
.mainimg .pic {
  width: 100%;
  height: inherit;
}
.mainimg .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.main>h3 {
  font-size: 8rem;
  font-family: "Jost", sans-serif;
  font-weight: normal;
  text-align: center;
  position: relative;
  z-index: 2;
  margin: 0 auto -0.5em;
}
.main>h3 .orange {
  color: #ed9c3d;
}
.main>h3 .sky {
  color: #65a1d7;
}
.main>h3 .cream {
  color: #facb85;
}
.main>h3 .blue {
  color: #1a5099;
}
.bottom {
  background: linear-gradient(135deg, #f5f1e8, #e5eff8 50%);
  border-radius: 3.38vw;
  /*6.5*/
  padding: 8rem 0 6rem;
}
.bottom .inner .col2 {
  display: flex;
  gap: 3.125vw;
  /*6*/
}
.bottom .inner .col2 .left {
  width: 50%;
}
.bottom .inner .col2 .right {
  width: 50%;
}
.bottom .inner .col2 :is(.left, .right) {
  background: #fff;
  border-radius: 2rem;
  padding: clamp(2rem, 1.5625vw, 3rem);
}
.right.hiro_footer {
    width: 100% !important;
}
.bottom .inner .col2 :is(.left, .right) .titleA {
  margin: 0 auto 2.5rem;
}
.bottom .inner .col2 :is(.left, .right) .titleA h3 {
  text-align: center;
}
.bottom .inner .col2 :is(.left, .right) .titleA p {
  text-align: center;
}
.bottom .inner .col2 :is(.left, .right) p {
  text-align: center;
}
.bottom .inner .col2 :is(.left, .right) .tel {
  font-size: 3.5rem;
  font-family: "Jost", sans-serif;
  margin: 0 auto 1rem;
}
.bottom .inner .col2 :is(.left, .right) .tel a {
  color: #004491;
}
.bottom .inner .col2 .buttonA {
  margin: auto;
  background: #eba12a;
}





/*footer*/
.footer {
  padding: 3rem 0 0;
}
.footer .inner .col2 {
  display: flex;
}
.footer .inner .col2 .left {
  width: 50%;
}
.footer .inner .col2 .left .logo {
  width: 12rem;
  height: 12rem;
  background: #f7f1e8;
  border-radius: 0.5rem;
  display: grid;
  align-items: center;
  justify-content: center;
  margin: 0 0 2.5rem;
}
.footer .inner .col2 .left>p {
  line-height: 1.84;
}
.footer .inner .col2 .right {
  width: 50%;
}
.footer .inner .col2 .right .nav {
  display: flex;
  justify-content: space-between;
}
.footer .inner .col2 .right .nav .li {
  list-style: none;
  line-height: 3;
}
.footer .inner .col2 .right .nav .li p::before {
  content: ">";
  display: inline-block;
  transform: scale(0.5, 1);
  margin: 0 0.5em 0 0;
}
.footer .inner .col2 .right .nav .li p a {
  color: inherit;
}
.footer .copyright {
  width: 100%;
  height: 4rem;
  background: #65a1d7;
  display: flex;
  align-items: center;
  color: #fff;
  margin: 3rem 0 0;
}







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




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




/*-----ハンバーガーメニュー-----*/
.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;
}
.pagetop a img {
  width: 100%;
}




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





/*main*/


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


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