@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: #404040;
  font-size: 1.7rem;
  font-family: "Zen Old Mincho", serif;
  /*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: #404040;
}





/*汎用*/
.inner {
  width: 80%;
  max-width: 120rem;
  margin: auto;
}
.titleA {
  display: grid;
  gap: 1rem;
  margin: 0 0 5rem;
}
.titleA h3 {
  font-size: 3.7rem;
}
.titleA p {
  grid-row: 1/2;
  font-size: 1.9rem;
}
.buttonA {
  width: fit-content;
  min-height: 5.5rem;
  border-bottom: 0.1rem solid #404040;
}
.buttonA :is(a, span) {
  width: 100%;
  min-height: inherit;
  padding: 0 2.6vw 0 0;
  display: grid;
  align-items: center;
  position: relative;
  color: inherit;
  text-decoration: none;
}
.buttonA :is(a, span)::after {
  content: "➝";
  position: absolute;
  right: 0.5rem;
  top: calc(50% - 0.5em);
}
.buttonA :is(a, span):hover::after {
  right: 0;
  transition: 0.5s;
}




/*header*/
.header {
  width: 100%;
  height: 15rem;
  background: #fff;
  padding: 1rem 7.29vw 0;
  /*14*/
  display: flex;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 9;
}
.header .left {
  width: 30%;
  height: 14rem;
  display: flex;
  justify-content: end;
  gap: 1rem;
  align-items: center;
}
.header .left h1 {
  font-size: 2.3rem;
}
.header .left .logo {
  width: auto;
  max-width: 10rem;
}
.header .left .logo img {
  width: 100%;
}
.header .right {
  width: 70%;
  height: 14rem;
}
.header .right .nav {
  width: 67%;
  max-width: 78rem;
  height: inherit;
  display: flex;
  margin: 0 0 0 auto;
}
.header .right .nav>.ul {
  width: 67%;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.header .right .nav>.ul>.li {
  flex-grow: 1;
  list-style: none;
  font-size: 1.8rem;
  position: relative;
}
.header .right .nav>.ul>.li:first-of-type {
  display: none;
}
.header .right .nav>.ul>.li>p {
  height: inherit;
}
.header .right .nav>.ul>.li>p>a {
  color: inherit;
}
.header .right .nav>.ul>.li>.ul {
  display: none;
}
.header .right .nav>.ul>.li:hover .ul {
  display: block;
  position: absolute;
}
.header .right .nav>.ul>.li>.ul>.li {
  list-style: none;
  white-space: nowrap;
}
.header .right .nav>.ul>.li>.ul>.li a {
  color: inherit;
  width: 100%;
  padding: 1rem;
  display: block;
  border: 0.1rem solid #404040;
  background: #fff;
}
.header .right .nav .info {
  width: 33%;
  display: grid;
  align-content: center;
}
.header .right .nav .info .tel {
  width: 100%;
  font-size: 2.1rem;
  margin: 0 0 1rem;
}
.header .right .nav .info .tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: inherit;
}
.header .right .nav .info .tel a::before {
  content: "";
  background: url(/system_panel/uploads/images/icon_tel.png) no-repeat;
  width: 2.1rem;
  min-width: 2.1rem;
  aspect-ratio: 1/1;
  background-size: cover;
  display: inline-block;
}
.header .right .nav .info .contact {
  width: 100%;
  min-height: 3.3rem;
  background: #f0f1a2;
  overflow: hidden;
}
.header .right .nav .info .contact a {
  width: 100%;
  min-height: inherit;
  display: grid;
  align-items: center;
  text-align: center;
  color: inherit;
}



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





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



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









/*main*/
.maintitle {
  width: 100%;
  height: 20rem;
  background: linear-gradient(170deg, #faf4db 37%, #fffed8 63%, #efffd7);
  display: flex;
  align-items: center;
}
.maintitle h2 {
  font-size: 3.3rem;
  display: flex;
  align-items: center;
  gap: 2.08vw;
  /*4*/
}
.maintitle h2::before {
  content: "";
  width: 18.75vw;
  /*36*/
  height: 0.1rem;
  background: #404040;
  display: inline-block;
}

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






/*footer*/
.footer {
  width: 100%;
  position: relative;
  padding: 23rem 0 4rem 0;
  margin: 10rem 0 0;
}
.footer::before {
  content: "";
  width: 84.5%;
  height: 82%;
  background: #f6f7c9;
  border-radius: 0 10.4vw 0 0;
  /*20*/
  display: inline-block;
  position: absolute;
  left: 0;
  top: 18%;
  z-index: 1;
}
.footer::after {
  content: "";
  width: 36.5%;
  height: 100%;
  background: #f0f1a2;
  border-radius: 10.4vw 0 0 0;
  /*20*/
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
}
.footer .inner {
  position: relative;
  z-index: 2;
}
.footer .inner .free {
  width: fit-content;
  font-size: 3.7rem;
  color: #a87700;
  margin: 0 0 3.5rem;
  position: relative;
}
.footer .inner .free::after {
  content: "";
  background: url(/system_panel/uploads/images/welcome.png) no-repeat;
  width: 11rem;
  height: 3.5rem;
  background-size: cover;
  display: inline-block;
  position: absolute;
  right: -4rem;
  top: -3rem;
}
.footer .inner>p:not(.copyright) {
  margin: 0 0 5rem;
}
.footer .inner .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: fit-content;
  min-width: 48rem;
}

.footer .inner .info .tel {
  font-size: 2.1rem;
  margin: 0 0 1rem;
}
.footer .inner .info .tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: inherit;
}
.footer .inner .info .tel a::before {
  content: "";
  background: url(/system_panel/uploads/images/icon_tel2.png) no-repeat;
  width: 2.1rem;
  min-width: 2.1rem;
  aspect-ratio: 1/1;
  background-size: cover;
  display: inline-block;
}
.footer .inner .info .contact {
  width: fit-content;
  min-width: 22rem;
  min-height: 3.3rem;
  background: #bc9735;
  overflow: hidden;
}
.footer .inner .info .contact a {
  width: 100%;
  min-height: inherit;
  display: grid;
  align-items: center;
  text-align: center;
  color: #fff;
}
.footer .inner .flex {
  width: 70%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 5rem 0 4rem;
  padding: 5rem 0 0;
  border-top: 0.1rem solid #404040;
}
.footer .inner .flex .logo {
  width: fit-content;
}
.footer .inner .flex .logo img {
  width: 100%;
}
.footer .inner .copyright {
  margin: 9rem 0 0;
  text-align: right;
}
.footer .inner .copyright a {
  color: inherit;
}



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





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





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