@charset "UTF-8";

/*呼び出し
.aaazzzzz {
	left: max(toVw(-71), -71px);
        width: min(toVw(370), 370px);

    @include mq(pc) {
        font-size: min(toVw(36), 36px);
    }
}
*/

/*呼び出し
.aaazzzzz {
    @include txt(24px, 400, $color-default-font, center);
    @include txt-option(2.25, 0.05em);
}*/

/*呼び出し
.aaazzzzz {
    @include mq(pc) {
        font-size: min(toVw(36), 36px);
    }
}*/

/*************** base ****************/

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

body:before {
  display: block;
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 100vh;
  background-color: #7EFFFF;
}

/*セクション幅*/

/*幅 色*/

/*.l-inner95 {
	border: 1px solid tan;
}
.l-inner75 {
	border: 1px solid #CE6646;
}
.l-inner86 {
	border: 1px solid #46CEA1;
}
	.l-inner87-in {
		border: 1px solid #468ACE;
}
.l-inner90 {
	border: 1px solid #42E9E9;
}
.l-inner95 {}
.l-inner97 {}
*/

.l-inner75 {
  width: 90%;
  margin: 0 auto;
}

.l-inner86 {
  width: 90%;
  margin: 0 auto;
}

.l-inner86 .l-inner87-in {
  width: 100%;
  margin: 0 auto;
}

.l-inner90 {
  width: 90%;
  margin: 0 auto;
}

.l-inner95 {
  width: 90%;
  margin: 0 auto;
}

.l-inner97 {
  width: 97%;
  margin: 0 auto;
}

/*改行*/

.br-pc {
  display: none;
}

/*************** breadcrumb ****************/

/*************** labels ****************/

.label-topicks {
  line-height: 1;
}

.label-topicks .elementor-icon-box-icon {
  line-height: 1;
}

/*下線つき見出し*/

.label1 {
  display: inline-block;
  position: relative;
}

.label1::before {
  display: inline-block;
  position: absolute;
  content: "";
  bottom: -20px;
  /*下線の上下の位置*/
  left: 50%;
  width: 60px;
  /*下線の幅*/
  height: 5px;
  /*下線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translate(-50%);
  /*位置の調整*/
  background-color: #3C6086;
  /*下線の色*/
}

.label2 {
  margin-bottom: 20px;
}

.label2 span {
  font-size: 16px;
  font-style: normal;
  line-height: 1;
  margin-left: 2em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/*----------------------------------*/

.marker {
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, transparent), color-stop(50%, #EFF4F8));
  background: linear-gradient(transparent 55%, #EFF4F8 50%);
}

/*サブヘッダー 左端から始まる帯び*/

.subpg-label__wrap {
  position: relative;
}

.subpg-label__wrapL {
  /*背景は左端からだけど、表示範囲はブラウザ幅に対して80％で表示*/
  position: absolute;
  background: #fff;
  padding: 20px 4em 20px 8%;
  font-family: purista-web, sans-serif;
  font-weight: 400;
  font-style: italic;
}

.subpg-label__wrapL h2 {
  margin: 0 !important;
  color: #3C6086;
  line-height: 1;
  font-size: 50px;
  font-family: purista-web, sans-serif;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.05em;
}

.subpg-label__wrapL h2 span {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-style: normal;
}

.renew .subpg-label__wrapL h2 {
  font-size: 50px;
}

.renew .subpg-label__wrapL h2 span {
  font-size: 14px;
}

/*--------------------------------------------------------------------------------------*/

/*Asahikawa Kuranuma Solar*/

.label3 {
  margin-bottom: 1em !important;
}

.label3 h2 {
  font-size: 26px !important;
}

.label3 h2 span {
  font-size: 14px !important;
  font-style: normal;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/*************** btn ****************/

/*先頭へ戻る*/

#scroll-to-top {
  position: fixed;
  z-index: 90;
  bottom: 0;
  right: 0;
  display: none;
  background-color: #111;
  color: #fff;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 50px;
  height: 50px;
  opacity: 0;
}

#scroll-to-top:hover {
  background: #3C6086;
}

#scroll-to-top.show {
  -webkit-animation: scrollButtonFadeIn 0.5s ease-in-out forwards;
          animation: scrollButtonFadeIn 0.5s ease-in-out forwards;
}

#scroll-to-top.hide {
  -webkit-animation: scrollButtonFadeOut 0.5s ease-in-out forwards;
          animation: scrollButtonFadeOut 0.5s ease-in-out forwards;
}

@-webkit-keyframes scrollButtonFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes scrollButtonFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes scrollButtonFadeOut {
  0% {
    opacity: 1;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes scrollButtonFadeOut {
  0% {
    opacity: 1;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* ボタン共通設定 */

.btn06 {
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  color: #fff;
  padding: 28px 100px 28px 100px;
  border: 1px solid #fff;
  border-radius: 50px;
  text-align: center;
  outline: none;
  /*背景の色と形状*/
  /*アニメーションの指定*/
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.btn06:hover {
  color: #fff;
}

/* 矢印が右に移動 */

.btnarrow1::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 44%;
  right: 40px;
  /*矢印の形状*/
  width: 13px;
  height: 13px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/*hoverした際の移動*/

.btnarrow1:hover::after {
  right: 45px;
}

/*再生可能エネルギー事業*/

.btn_arrow2 {
  text-decoration: none !important;
  color: #fff;
  font-size: 18px;
  line-height: 1.5555555556;
  margin-bottom: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  display: table;
  position: relative;
  padding: 12px 80px;
  margin: 0 auto;
  max-width: 362px;
  min-width: 15em;
  border-radius: 50px;
  border: 1px solid #fff;
  text-align: center;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.btn_arrow2::after {
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0.5em;
  height: 0.5em;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  content: "";
}

.btn_arrow2:hover {
  border: 1px solid #fff;
  background-color: #fff;
  color: #3C6086;
}

.report-list .elementor-icon-list-items dd,
.report-list .elementor-icon-list-items dl,
.report-list .elementor-icon-list-items dt,
.report-list .elementor-icon-list-items li,
.report-list .elementor-icon-list-items ol,
.report-list .elementor-icon-list-items ul {
  margin-bottom: 20px !important;
}

.report-list .elementor-icon-list-items {
  display: grid !important;
  grid-template-rows: repeat(auto-fit, 1fr) !important;
  grid-template-columns: repeat(2, 1fr);
  margin-right: inherit !important;
  margin-left: inherit !important;
}

.report-list .elementor-icon-list-items li {
  -webkit-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.8);
          box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.8);
}

.report-list .elementor-icon-list-items li a {
  text-decoration: none !important;
  color: #333;
  font-size: 16px;
  line-height: 1.875;
  margin-bottom: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  display: table;
  position: relative;
  padding: 12px 10px;
  margin: 0 auto;
  max-width: 176px;
  border: 1px solid #fff;
  text-align: center;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.report-list .elementor-icon-list-items li a::after {
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0.5em;
  height: 0.5em;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  content: "";
  -webkit-transition: right 0.2s ease-in-out;
  transition: right 0.2s ease-in-out;
}

.report-list .elementor-icon-list-items li a:hover {
  border: 1px solid #fff;
  background-color: #fff;
  color: #3C6086;
}

.report-list .elementor-icon-list-items li a:hover::after {
  right: 0.5em;
}

/*-----------------Elementorリセット---------------------*/

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
ul,
li,
img,
a {
  margin: 0;
  padding: 0;
  letter-spacing: 0.05em;
}

ul li {
  list-style: none;
}

.ib {
  display: inline-block;
}

footer#site-footer {
  max-width: none !important;
  padding: 0;
  background-clip: #fff;
  margin: 0;
}

.elementor-element-populated {
  padding: 0 !important;
}

/*-----------------/Elementor---------------------*/

/*********** フッター ***********/

/*フッタータイトル*/

.footer-contacttitle-wrap {
  padding-top: 60px;
  padding-bottom: 60px;
}

.midashi-01__en {
  text-align: center;
  color: #3C6086;
  font-family: purista-web, sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 36px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  line-height: 1;
}

.midashi-01__h2 {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
}

/*フッターメール電話*/

.footer-contact-mail,
.footer-contact-tel {
  background: rgb(60, 124, 134);
  background: -webkit-gradient(linear, left top, right top, from(rgb(60, 124, 134)), to(rgb(60, 96, 134)));
  background: linear-gradient(90deg, rgb(60, 124, 134) 0%, rgb(60, 96, 134) 100%);
  text-align: center;
  padding: 30px;
}

.footer-contact-mail__p,
.footer-contact-tel__p {
  color: #fff;
  margin-bottom: 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
}

.c-btn-ft-mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-btn-ft-mail a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: min(5.3125vw, 18px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  padding: 1em 1em;
  max-width: 320px;
  color: #fff;
  border-radius: 50vh;
  border: 1px solid #fff;
}

.c-btn-ft-mail a::after {
  margin-left: 2em;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-btn-ft-mail a:hover {
  text-decoration: none;
  color: #3C6086;
  background-color: #fff;
}

.c-btn-ft-mail a:hover::after {
  border-top: 2px solid #3C6086;
  border-right: 2px solid #3C6086;
}

.footer-contact-tel {
  background: rgb(63, 86, 88);
  background: -webkit-gradient(linear, left top, right top, from(rgb(63, 86, 88)), to(rgb(63, 75, 88)));
  background: linear-gradient(90deg, rgb(63, 86, 88) 0%, rgb(63, 75, 88) 100%);
}

.c-btn-ft-tel a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  line-height: 1;
  letter-spacing: 0;
  font-family: purista-web, sans-serif;
  font-weight: 400;
  font-size: min(11.71875vw, 44px);
}

.c-btn-ft-tel a:hover {
  color: #fff;
}

.c-btn-ft-tel a img {
  width: 26px;
  margin-right: 10px;
  vertical-align: middle;
}

.footer-contact-tel__p2 {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
}

/*フッターナビ*/

.footer-menu-wrap {
  background: #111;
  color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

.footer-menu-wrap .l-inner86 {
  position: relative;
  z-index: 1;
}

.footer-menu-wrap #js-footer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer-menu-wrap a {
  color: #fff;
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff));
  background-image: linear-gradient(90deg, #fff, #fff);
  /* 線の色 */
  background-repeat: no-repeat;
  background-position: left bottom;
  /* 線の起点を左・下に */
  background-size: 0 1px;
  /* 線の横幅を0、縦幅を1px */
  -webkit-transition: background-size 0.3s;
  transition: background-size 0.3s;
}

.footer-menu-wrap a:hover {
  color: #fff;
  background-size: 100% 1px;
  /* 線の横幅 */
}

.footer-menu-name {
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: min(7.8125vw, 26px);
  margin-bottom: 30px;
}

.footer-menu-area {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.footer-menu-area-L {
  margin-bottom: 50px;
  /*1281以上*/
}

.footer-menu-add {
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
}

.footer-menu-area-R {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0 40px;
  /*1281以上*/
}

.footer-menu-list {
  width: auto;
}

.footer-menu-list li {
  line-height: 2.7142857143;
  font-size: 16px;
}

.copy {
  margin: 0;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  line-height: 1.4;
}

/*************** footer ****************/

.footer-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
}

.footer-tel a {
  color: #fff;
  line-height: 1;
  font-size: 60px;
  font-family: purista-web, sans-serif;
  font-weight: 400;
}

.footer-tel a:hover {
  color: #fff;
}

.footer-tel::before {
  display: inline-block;
  content: "";
  width: 31px;
  height: 31px;
  background: url(../img/icon-tel.svg) no-repeat center/contain;
  margin-right: 1em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer-tel2 .elementor-button-icon svg {
  width: 31px;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  margin-right: 10px;
}

.footer-navbox .elementor-container {
  margin-right: 0;
}

/*************** section ****************/

.l-inner {
  max-width: 86%;
  margin: 0 auto;
}

.l-inner2 {
  max-width: 75%;
  margin: 0 auto;
}

.spacer {
  overflow: hidden;
}

.l-col__max {
  width: 100vw;
  height: 650px;
}

.sec-nav-lrw,
.sec-mv-lrw {
  max-width: 97%;
  margin: 0 auto;
}

.sec-topicks-bg {
  height: 140px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 255, 255)), to(rgba(154, 39, 238, 0)));
  background-image: linear-gradient(0deg, rgb(255, 255, 255), rgba(154, 39, 238, 0));
}

.sec-topicks-lrw {
  max-width: 94%;
  margin: 0 auto;
}

.sec-topicks-lrw__in {
  padding: 5px 1%;
}

.sec-service {
  max-width: 86%;
  margin: 0 auto;
}

.sec-nsdtoha {
  position: relative;
  z-index: 10;
}

.sec-nsdtoha .wp-caption-text {
  font-style: normal !important;
}

.contants-box-l {
  margin-right: -200px;
}

.xxxxx2 {
  margin-bottom: 100px;
}

/*************** table ****************/

.tablebox table td {
  font-size: 16px;
  border: none;
}

.tablebox table td:first-child {
  max-width: 212px;
  width: 22.0833333333% !important;
  min-width: 180px;
  vertical-align: middle;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  background: none;
  border-bottom: 1px solid #333 !important;
}

.tablebox table td:last-child {
  width: calc(100% - 212px) !important;
  line-height: 1.75;
  background: none;
  border-bottom: 1px solid #CDD6DD !important;
}

.tablebox table td p {
  margin: 0;
}

.tablebox table td legend {
  width: 100%;
}

.tablebox table td .must {
  float: right;
  clear: right;
  color: #fff;
  background: #3C6086;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  padding-right: 0.5em;
  padding-left: 0.5em;
  padding-bottom: 2px;
}

/*************** anime ****************/

/*.ttlen {
	    opacity: 0;
    -webkit-transform: rotateY(90deg);
    transform: rotateY(90deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    transition-property: all;
    transition-duration: 0.8s;
    transition-timing-function: ease;
}
.ttlen.scrolled {
	opacity: 1;
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
	transition-delay: 0.6s;
}
.ttlen .show {
}

*/

/*************** product ****************/

.sec-product-wrap {
  position: relative;
}

.sec-product-wrap::before {
  position: absolute;
  z-index: -1;
  content: "";
  background-color: #C2D1E2;
  width: 92.96875%;
  height: 84.126984127%;
  margin: auto;
}

.sec-product-wrap.tprecruit::before {
  background-color: #EFF4F8;
}

.sec-product-Lbg {
  width: 92.96875%;
  height: 5vw;
}

.sec-product-wrap .inner > .elementor-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.sec-product-Rimg {
  width: 90%;
  margin-right: 0;
  margin-left: auto;
}

.sec-product-Rimg img {
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-height: 540px;
}

.sec-product-Larea {
  position: relative;
  width: 90% !important;
  margin: 0 auto 1em;
}

.sec-product-Larea__box__ttlen {
  font-size: 36px;
  color: #fff;
  font-family: purista-web, sans-serif;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  margin-bottom: 0.5em;
  word-break: break-all;
}

.sec-product-Larea__box__ttlen.tprecruit {
  color: #3C6086;
}

.sec-product-Larea__box__ttl {
  font-size: 20px;
  width: 95%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 1em;
}

.sec-product-Larea__box__txt {
  font-size: 14px;
  width: 95%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8571428571;
}

.sec-product-Larea__box__btn {
  margin-top: 30px;
}

.sec-product-Larea__box__btn .btn02 {
  padding: 10px 38px;
  display: inline-block;
  text-decoration: none !important;
  background: #fff;
  border: 1px solid #fff;
  color: #3C6086;
  text-align: center;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.75;
}

.sec-product-Larea__box__btn .btn02:hover {
  background: #C2D1E2;
  border: 1px solid #fff;
  color: #fff;
}

.sec-product-Larea__box__btn .car .btn02 {
  padding: 10px 12px;
}

/*********** 月間レポート ***********/

ul.reports {
  display: grid;
  grid-template-rows: repeat(auto-fit, 1fr);
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 0;
}

li.report {
  -webkit-box-shadow: 2px 2px 0px 3px rgba(60, 96, 134, 0.8);
          box-shadow: 2px 2px 0px 3px rgba(60, 96, 134, 0.8);
  list-style-type: none;
}

li.report a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none !important;
  padding: 10px;
  color: #000;
}

li.report a::after {
  position: absolute;
  right: 7%;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #3B4043;
  border-right: 1px solid #3B4043;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

li.report a:hover::after {
  right: 4%;
}

/*************** トピックス ****************/

.topicks-section {
  position: relative;
  z-index: 1;
  margin-top: -60px;
}

.topicks-label {
  margin-left: 1em;
  width: 120px;
  height: 20px;
  border-bottom: 30px solid #EFF4F8;
  /* ボトム高さ */
  border-left: 10px solid transparent;
  /* 左側下辺の伸び */
  border-right: 10px solid transparent;
  /* 右側下辺の伸び */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.topicks-label p {
  padding-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #3C6086;
  line-height: 1;
  letter-spacing: 0;
  font-size: 20px;
  font-family: purista-web, sans-serif;
  font-weight: 400;
  font-style: italic;
}

.topicks-label p img {
  width: 12px;
  margin-right: 5px;
  vertical-align: middle;
}

.topicks-list {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  background: #EFF4F8;
}

.topicks-item {
  width: 90%;
  margin: 0 auto;
  list-style-type: none;
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-template-rows: auto;
  grid-template-areas: "time cat" "title title";
  gap: 0px 15px;
  place-items: baseline;
}

.topicks-list__time {
  grid-area: time;
  font-size: 12px;
  font-family: purista-web, sans-serif;
  font-weight: 400;
}

.topicks-list__cat {
  grid-area: cat;
}

.topicks-list__cat a {
  color: #333;
  font-size: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  background: #fff;
  letter-spacing: 0.05em;
  padding: 0 10px;
}

.topicks-list__ttl-link {
  grid-area: title;
}

.topicks-list__ttl {
  grid-column: 1/-1;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

/*****/

.topicks-more {
  margin-bottom: 30px;
}

.c-btn-topicks-more {
  text-align: right;
  font-size: 14px;
}

.c-btn-topicks-more a {
  color: #999;
  text-decoration: underline;
}

/*************** header ****************/

header {
  display: grid !important;
  grid-template-columns: 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 min(4.6875vw, 60px);
  height: 80px;
  position: fixed;
  z-index: 99;
  width: 100%;
  background-color: #fff;
}

.header__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.global__nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
}

.global__nav-item {
  list-style-type: none;
}

.global__nav-item:last-child {
  margin-left: 15px;
}

.global__nav-item:last-child a {
  position: relative;
  color: #fff;
  background: #3C6086;
  border-radius: 22px;
}

.global__nav-item:last-child a:hover {
  background: #3F4B58;
}

.global__nav-item:last-child a::after {
  display: none;
}

.global__nav-link {
  position: relative;
  font-size: min(1.25vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.87;
  letter-spacing: 0.05em;
  padding: 8px min(1.171875vw, 15px);
  color: #3B4043;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.current .global__nav-link::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  left: 0;
  width: 90%;
  height: 3px;
  background: #3C6086;
}

.sp-menu {
  display: none;
}

.sp-menu__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sp-menu__contact a:hover {
  opacity: 0.6;
}

a {
  text-decoration: none;
}

.hamburger {
  position: relative;
  top: 0px;
  width: 40px;
  height: 40px;
  position: relative;
  background: #3C6086;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 999;
}

.hamburger div {
  width: 26px;
  height: 3px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.hamburger div:nth-child(2) {
  top: 30%;
}

.hamburger div:nth-child(3) {
  top: 70%;
}

.hamburger.active div:nth-child(1) {
  opacity: 0;
}

.hamburger.active div:nth-child(2) {
  -webkit-transform: translate(-50%, 7px) rotate(-45deg);
          transform: translate(-50%, 7px) rotate(-45deg);
  background: #fff;
}

.hamburger.active div:nth-child(3) {
  -webkit-transform: translate(-50%, -10px) rotate(45deg);
          transform: translate(-50%, -10px) rotate(45deg);
  background: #fff;
}

/*************** 下層ページheader ****************/

.under-pg-header {
  background: gold;
  position: relative;
  height: 350px;
  padding-top: 350px;
  background: url(../img/info/inf-hd@2x.jpg) no-repeat center center/cover;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

/*サブヘッダー 左端から始まる帯び*/

.under-pg-label {
  position: absolute;
  bottom: 0;
  background: #fff;
  background: #f9f9f9;
  padding: 15px 4em 15px 7%;
  font-family: purista-web, sans-serif;
  font-weight: 600;
  font-style: italic;
}

.under-pg-label .under-pg-label__ttl {
  margin: 0;
  color: #3C6086;
  line-height: 1;
  font-size: min(7.8125vw, 40px);
  font-family: purista-web, sans-serif;
  font-weight: 400;
  font-style: italic;
}

.under-pg-label .under-pg-label__ttl span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  margin-left: 1em;
}

.under-pg-label.renewlabel .under-pg-label__ttl {
  font-size: min(7.03125vw, 40px);
}

.under-pg-label.renewlabel .under-pg-label__ttl span {
  font-size: 11px;
}

/*パンくず*/

.under-pg-bread {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #ccc;
  line-height: 1.5;
  font-size: 10px;
  margin-bottom: 30px;
}

/*************** animation ****************/

.vvv.active::after {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  /*アニメーション*/
  -webkit-animation: ani 2s forwards;
          animation: ani 2s forwards;
  will-change: transform;
  /*滑らかになる*/
}

/*fade*/

.js-fade {
  opacity: 0;
}

.fade-in {
  opacity: 1;
  -webkit-animation: fadeAni 0.8s forwards;
          animation: fadeAni 0.8s forwards;
}

@-webkit-keyframes fadeAni {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeAni {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/*fadeSlideL*/

.js-fadeSlideL {
  opacity: 0;
}

.fadeSlide-left {
  opacity: 1;
  -webkit-animation: fadeSlideL-Ani 0.8s forwards;
          animation: fadeSlideL-Ani 0.8s forwards;
}

@-webkit-keyframes fadeSlideL-Ani {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeSlideL-Ani {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

/*fadeSlideR*/

.js-fadeSlideR {
  opacity: 0;
}

.fadeSlide-right {
  opacity: 1;
  -webkit-animation: fadeSlideR-Ani 0.8s forwards;
          animation: fadeSlideR-Ani 0.8s forwards;
}

@-webkit-keyframes fadeSlideR-Ani {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeSlideR-Ani {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeAni {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.js-li22st li {
  opacity: 0;
}

/*テキスト*/

/*ブロック1*/

.js-elemt,
.topicks-list li,
.tiiki010203__list li,
.howto-nsd__p,
.sougyo__wrap__L,
.news-fb__Lnews,
.news-fb__Lfb,
.top-recruit__Larea__box p,
.ele-renew__Larea__box p,
.flow-list,
.info-post-single,
form {
  opacity: 0;
}

.js-elemt.__on,
.topicks-list .__on,
.tiiki010203__list .__on,
.howto-nsd__p.__on,
.sougyo__wrap__L.__on,
.news-fb__Lnews.__on,
.news-fb__Lfb.__on,
.ele-renew__Larea__box .__on,
.top-recruit__Larea__box .__on,
.flow-list.__on,
.info-post-single.__on,
form.__on {
  opacity: 1;
  -webkit-animation: fadeAni 0.8s forwards;
          animation: fadeAni 0.8s forwards;
}

@keyframes fadeAni {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/*ブロック2*/

.info-section article {
  opacity: 0;
}

.info-section .__on {
  opacity: 1;
  -webkit-animation: line-appear 0.8s forwards;
          animation: line-appear 0.8s forwards;
}

/*画像 カード 複数系*/

.js-elemt-list .js-elemt-item,
.js-set .--set,
.sougyo__wrap__R,
.top-recruit__Rarea-img,
.ele-renew__Rarea-img,
.under-pg-label,
.info-cate-archive__Rlist li,
.reports li {
  opacity: 0;
}

.js-elemt-list .__on,
.js-set .__on,
.sougyo__wrap__R.__on,
.top-recruit__Rarea-img.__on,
.ele-renew__Rarea-img.__on,
.under-pg-label.__on,
.info-cate-archive__Rlist .__on,
.reports .__on {
  opacity: 1;
  -webkit-animation: itemInTopUnd 0.8s forwards;
          animation: itemInTopUnd 0.8s forwards;
}

/*ブロック向け 弧を描くように下から上に*/

@-webkit-keyframes line-appear {
  0% {
    -webkit-transform: rotate(5deg) translate3D(0, 50%, 0);
            transform: rotate(5deg) translate3D(0, 50%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: rotate(0) translate3D(0, 0, 0);
            transform: rotate(0) translate3D(0, 0, 0);
    opacity: 1;
  }
}

@keyframes line-appear {
  0% {
    -webkit-transform: rotate(5deg) translate3D(0, 50%, 0);
            transform: rotate(5deg) translate3D(0, 50%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: rotate(0) translate3D(0, 0, 0);
            transform: rotate(0) translate3D(0, 0, 0);
    opacity: 1;
  }
}

/*画像やブロックに 弧を描くように下から上に*/

/*右上から下にきて上がる*/

@-webkit-keyframes itemInTopUnd {
  0% {
    opacity: 0;
    -webkit-transition: all 1.2s;
    transition: all 1.2s;
    -webkit-transform: translate3d(0, 100px, 0) rotate3d(1, 1, 0, 60deg);
            transform: translate3d(0, 100px, 0) rotate3d(1, 1, 0, 60deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate3d(1, 1, 0, 0deg);
            transform: translate3d(0, 0, 0) rotate3d(1, 1, 0, 0deg);
  }
}

@keyframes itemInTopUnd {
  0% {
    opacity: 0;
    -webkit-transition: all 1.2s;
    transition: all 1.2s;
    -webkit-transform: translate3d(0, 100px, 0) rotate3d(1, 1, 0, 60deg);
            transform: translate3d(0, 100px, 0) rotate3d(1, 1, 0, 60deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate3d(1, 1, 0, 0deg);
            transform: translate3d(0, 0, 0) rotate3d(1, 1, 0, 0deg);
  }
}

/*****************************/

/*************** post ****************/

.news-post-day li {
  margin: 0 !important;
}

.news-post-day li:nth-of-type(2) {
  font-size: 12px !important;
}

.news-post-day li .elementor-post-info__terms-list-item {
  color: #333;
  font-size: 12px !important;
  font-weight: 400 !important;
  background: #CCC;
  padding: 3px 12px;
  letter-spacing: 0.05em;
}

.news-post-day li .elementor-post-info__terms-list-item:hover {
  opacity: 0.6;
}

/*.news-post-nav {
	border-top: 1px solid #707070;
	padding-top: 50px;
	padding-bottom: 50px;
	.elementor-post-navigation__link {
		a {
			width: 140px !important;
			background: #EFF4F8;
			padding-left: 12px;
		}

	}
}*/

/**/

.news-post-nav {
  border-top: 1px solid #707070;
  padding-top: 50px;
  padding-bottom: 50px;
}

.news-post-nav .elementor-post-navigation__link {
  position: relative;
}

.news-post-nav .elementor-post-navigation__link a {
  padding-left: 12px;
  width: auto !important;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news-post-nav .elementor-post-navigation__link a::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  height: 100%;
  width: 128px;
  background: #EFF4F8;
  border: 1px solid #EFF4F8;
  display: inline-block;
}

.news-post-nav .elementor-post-navigation__link a:hover::before {
  opacity: 0.6;
}

/*************** メインビジュアル ****************/

.mv-section {
  background: #fff;
}

.mv-section .l-inner97 {
  height: 580px;
}

/*mv下境界グラデ topick背景*/

.mv-under-boundary {
  position: relative;
  z-index: 1;
  margin-top: -140px;
  height: 140px;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}

/*youtube*/

.display-pc {
  display: none !important;
}

.display-sp {
  display: inherit !important;
}

/* visual */

#visual {
  height: 580px;
  background-image: url(../img/visual.jpg);
  position: relative;
}

#visual .visual__inner {
  width: 100%;
  margin: 0 auto;
}

/*
#visual::after{
	content: "";
	width: 100%;
	height: 100px;
	background-image: url(../img/visual_bg.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% 100%;
	position: absolute;
	left: 0;
	bottom: 0;
}*/

#visual .copy {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  top: 300px;
  /*	left: 0%;
  	transform: translateX(50%);
  	transform: translateY(50%);*/
  z-index: 1;
}

#visual .copy h2 {
  margin: 0 !important;
  display: block !important;
}

#visual .video {
  width: 100%;
  height: 580px;
  background: url(../img/top/top-mv@2x.jpg) no-repeat center/cover;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  overflow: hidden;
}

/*色調
#visual .video::after{
  content: '';
  width: 100%;
  height: 100%;
  background-color: #10394b;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .3;
}*/

/*
#visual .video video{
  min-width: 100%;
  min-height: 600px;
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0%);
}
*/

.ele-renew__Rarea-img .video {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

/*************** index ****************/

/*ギャラリー*/

.gallery-section {
  background: gold;
  height: 110px;
}

/*------------------------------------------------------*/

/*↓*/

.sec-rec__wrap {
  position: relative;
  margin: 100px auto 0;
}

.sec-rec__wrap .elementor-container {
  max-width: none !important;
}

.sec-rec__wrap .elementor-element-populated {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sec-rec__wrapL {
  position: absolute;
  top: -15%;
  margin-right: 0;
  width: 85.9375% !important;
  height: 100%;
}

.sec-rec__wrapR {
  width: 64.453125% !important;
  margin-right: 0;
  margin-left: auto;
  overflow: hidden;
}

.sec-rec__wrapR img {
  max-height: 540px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.sec-rec__wrapL__ttl {
  margin-top: 7%;
}

.sec-rec__wrapL__ttl,
.sec-rec__wrapL__ttl2,
.sec-rec__wrapL__txt,
.sec-rec__wrapL__btn {
  width: 34% !important;
  margin-left: 7%;
}

.btn2 {
  text-align: center;
  display: block;
  color: #fff;
  border: 5px solid #fff;
  padding: 10px;
}

.btn2:hover {
  background: #FA6600;
}

/*↑*/

/*西山坂田電気とは*/

.howto-nsd-section {
  margin-top: -30px;
  position: relative;
  z-index: 10;
  margin-bottom: 30px;
}

.howto-nsd-section .l-inner86 {
  background: #fff;
  padding-top: 30px;
  padding-bottom: 30px;
}

.howto-nsd__ttl {
  text-align: center;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
}

.howto-nsd__ttl-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-bottom: 30px;
}

.howto-nsd__bun__box {
  background: #EFF4F8;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  margin-bottom: 60px;
}

.howto-nsd__p {
  text-align: center;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7142857143;
}

/*010203*/

.tiiki010203__list {
  margin-bottom: 60px;
}

.tiiki010203__item {
  text-align: center;
}

.tiiki010203__item .c-label1 {
  font-size: 16px;
}

.tiiki010203__no {
  margin: 0 auto;
  margin-bottom: 1em;
  width: 30vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tiiki010203__ttl {
  margin-bottom: 1em;
}

.tiiki010203__img {
  margin: 0 auto;
  margin-bottom: 10px;
  max-width: 500px;
}

.tiiki010203__caption {
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
}

/*創業3つの柱*/

.sougyo__wrap {
  margin-bottom: 30px;
}

.sougyo__wrap__ttl {
  margin-bottom: 0.5em;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
}

.sougyo__wrap__p1 {
  display: initial;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8;
}

.maker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #C2D1E2));
  background: linear-gradient(transparent 60%, #C2D1E2 60%);
}

.sougyo__wrap__p2 {
  margin-top: 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8333333333;
}

.sougyo__wrap__R {
  margin-bottom: 30px;
}

/*シェイプ*/

.circle__wrap .circle {
  display: grid;
  place-items: center;
  position: relative;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#48c6ef), to(#6f86d6));
  background-image: linear-gradient(to top, #48c6ef 0%, #6f86d6 100%);
  border-radius: 50%;
  padding-top: 50%;
  width: 50%;
  -webkit-animation-name: puyopuyo;
          animation-name: puyopuyo;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.circle__wrap p {
  position: absolute;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  left: 50%;
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: min(5vw, 14px);
  line-height: 1.7142857143;
}

.circle__wrap .ao {
  margin-left: 20%;
}

.circle__wrap .red {
  background-image: linear-gradient(-225deg, #FFE29F 0%, #FFA99F 48%, #FF719A 100%);
  margin-top: -10%;
  margin-left: 0;
  animation-direction: reverse;
}

.circle__wrap .yel {
  background-image: linear-gradient(60deg, #96deda 0%, #50c9c3 100%);
  margin-top: -50%;
  margin-left: 40%;
  -webkit-animation-name: puyopuyo2;
          animation-name: puyopuyo2;
}

@-webkit-keyframes puyopuyo {
  0% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }

  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }

  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }

  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }

  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }

  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }

  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }

  100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
}

@keyframes puyopuyo {
  0% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }

  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }

  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }

  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }

  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }

  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }

  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }

  100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
}

@-webkit-keyframes puyopuyo2 {
  0% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }

  20% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }

  58% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }

  80% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }

  106% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
}

@keyframes puyopuyo2 {
  0% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }

  20% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }

  58% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }

  80% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }

  106% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
}

/************************/

.sec-rec__wrap {
  position: relative;
  margin: 100px auto 0;
}

.sec-rec__wrap .elementor-container {
  max-width: none !important;
}

.sec-rec__wrap .elementor-element-populated {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sec-rec__wrapL {
  position: absolute;
  top: -15%;
  margin-right: 0;
  width: 85.9375% !important;
  height: 100%;
}

.sec-rec__wrapR {
  width: 64.453125% !important;
  margin-right: 0;
  margin-left: auto;
  overflow: hidden;
}

.sec-rec__wrapR img {
  max-height: 540px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.sec-rec__wrapL__ttl {
  margin-top: 7%;
}

.sec-rec__wrapL__ttl,
.sec-rec__wrapL__ttl2,
.sec-rec__wrapL__txt,
.sec-rec__wrapL__btn {
  width: 34% !important;
  margin-left: 7%;
}

.btn2 {
  text-align: center;
  display: block;
  color: #fff;
  border: 5px solid #fff;
  padding: 10px;
}

.btn2:hover {
  background: #FA6600;
}

/*************** service ****************/

.service-section {
  margin-bottom: 60px;
  background: url("../img/top/top-service-bg.svg") repeat;
  background-position: center min(42.96875vw, 200px);
  background-repeat: no-repeat;
  background-size: 370%;
  background-attachment: fixed;
}

/*電気工事業*/

.service-denki__wrap {
  margin-bottom: 90px;
}

.service-denki__L {
  margin-bottom: 30px;
}

/*見出し*/

.c-label1 {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 1.5em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: min(7.34375vw, 24px);
  position: relative;
}

.c-label1::before {
  display: inline-block;
  position: absolute;
  content: "";
  bottom: -20px;
  /*下線の上下の位置*/
  left: 50%;
  width: 60px;
  /*下線の幅*/
  height: 5px;
  /*下線の太さ*/
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  /*位置の調整*/
  background-color: #3C6086;
  /*下線の色*/
}

.service-section__p {
  margin-bottom: 2em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7142857143;
}

.service-section__p span {
  color: #3C6086;
  font-weight: 500;
}

/*ボタン*/

.c-btn1 {
  width: 80%;
  margin: 0 auto;
}

.c-btn1 a {
  cursor: pointer;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  padding: 0.5em 1em;
  text-align: center;
  color: #3C6086;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  display: block;
  border: 1px solid #3C6086;
  background: #fff;
  overflow: hidden;
  position: relative;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  z-index: 2;
}

.c-btn1 a::after {
  background: #3C6086;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  -webkit-transform: translateY(-50%) scale(0.1);
          transform: translateY(-50%) scale(0.1);
  -webkit-transition: opacity 0.5s, -webkit-transform 0s;
  transition: opacity 0.5s, -webkit-transform 0s;
  transition: opacity 0.5s, transform 0s;
  transition: opacity 0.5s, transform 0s, -webkit-transform 0s;
  -webkit-transition-delay: 0s, 0.4s;
          transition-delay: 0s, 0.4s;
}

.c-btn1 a:hover {
  color: #fff;
}

.c-btn1 a:hover::after {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1.1);
          transform: translateY(-50%) scale(1.1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.6s ease-in-out;
  transition: opacity 0.8s, -webkit-transform 0.6s ease-in-out;
  transition: opacity 0.8s, transform 0.6s ease-in-out;
  transition: opacity 0.8s, transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

.c-btn1xxx a {
  width: 80%;
  margin: 0 auto;
  padding: 0.5em 1em;
  border: 1px solid #3C6086;
  text-align: center;
  color: #3C6086;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.c-btn1xxx a::before {
  content: "";
  background-color: #3C6086;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 50%;
  /*中心に寄せる*/
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  /*中心に寄せる*/
  width: 0;
  height: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: -1;
}

.c-btn1xxx a::after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #3C6086;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.c-btn1xxx a:hover {
  color: #fff;
}

.c-btn1xxx a:hover::before {
  width: 100%;
}

/*再生可能エネルギー事業*/

.service-renew__L {
  margin-bottom: 30px;
}

.service-circle {
  position: relative;
  font-family: purista-web, sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 36px;
  color: #3C6086;
  text-align: center;
  z-index: 1;
}

.service-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: rgba(35, 96, 134, 0.1);
  z-index: -1;
  -webkit-animation: wave 5s linear infinite;
          animation: wave 5s linear infinite;
}

@-webkit-keyframes wave {
  0% {
    width: 0;
    height: 0;
    opacity: 0.5;
  }

  100% {
    width: 1000px;
    height: 1000px;
    opacity: 0;
  }
}

@keyframes wave {
  0% {
    width: 0;
    height: 0;
    opacity: 0.5;
  }

  100% {
    width: 1000px;
    height: 1000px;
    opacity: 0;
  }
}

/*************** 採用情報 ****************/

.top-recruit-section {
  margin-bottom: 60px;
}

.top-recruit__wrap {
  position: relative;
  /*.l-inner86 {
  	display: flex;
  	flex-wrap: wrap;
  flex-direction: column-reverse;
  		@include mq(pc) {//768以上
  			display: block;
  		}
  	}*/
}

.top-recruit__wrap::before {
  position: absolute;
  z-index: -1;
  height: 80%;
  content: "";
  background-color: #C2D1E2;
  width: 92.96875%;
  margin: auto;
}

.top-recruit__Larea-bg {
  width: 92.96875%;
  height: 30px;
}

.top-recruit__Rarea-img {
  width: 90%;
  margin-right: 0;
  margin-left: auto;
}

.top-recruit__Rarea-img img {
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-height: 400px;
}

.top-recruit__Larea {
  position: relative;
  width: 90%;
  margin: 0 auto 1em;
}

.top-recruit__Larea__ttlen {
  font-size: 36px;
  color: #fff;
  width: 90%;
  font-family: purista-web, sans-serif;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  margin-bottom: 0.2em;
  word-break: break-all;
}

.top-recruit__Larea__ttl {
  font-size: 20px;
  width: 90%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1em;
}

.top-recruit__Larea__txt {
  font-size: 14px;
  line-height: 1.7142857143;
  width: 90%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8571428571;
}

.top-recruit__Larea__btn {
  margin-top: 1em;
  margin-bottom: 2em;
  margin-left: 0;
  width: 80%;
}

.top-recruit__Larea__btn a {
  /*
padding: 1em 5em;
display: inline-block;
text-decoration: none !important;
background: #fff;
color: $color-blu;
text-align: center;
font-size: 16px;
line-height: 1;
@include font-purista-mi;
	@include mq(pc) {
		margin-top: 1em;
	font-size: 18px;
	}*/
}

/*************** top-newsfb-news ****************/

.news-fb-section {
  margin-bottom: 30px;
}

.news-fb-__ttlen {
  margin-bottom: 30px;
}

.news-fb-__ttlen.c-label2 {
  line-height: 1;
  color: #3C6086;
  font-family: purista-web, sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: min(8.28125vw, 36px);
}

.news-fb__Lnews,
.news-fb__Lfb {
  width: 100%;
}

.news-fb__Lnews {
  margin-bottom: 30px;
}

.news-fb__Lnews__item {
  display: grid;
  grid-template-columns: 80px auto auto;
  gap: 5px 15px;
  place-items: baseline;
  margin-bottom: 0.8em;
  padding-bottom: 0.8em;
  border-bottom: 1px solid #bbb;
}

.news-fb__Lnews__item a {
  color: #333;
}

time {
  font-size: 12px;
  font-family: purista-web, sans-serif;
  font-weight: 400;
}

.cat {
  font-size: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #333;
  background: #EFF4F8;
  letter-spacing: 0.05em;
  padding: 2px 15px;
}

.ttl {
  grid-column: 1/-1;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.news-fb__Lbtn {
  text-align: right;
}

.news-fb__Lbtn a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #999;
  text-decoration: underline;
}

.news-fb__Lbtn a:hover {
  text-decoration: none;
}

/*****************************************/

.news-post article {
  padding-bottom: 0.5em;
  border-bottom: 1px solid #C2D1E2;
}

.news-post .post-grid-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0 40px !important;
}

.news-post .post-grid-thumbnail {
  width: 100%;
}

.news-post .post-grid-text-wrap {
  width: 100%;
}

.news-post .post-grid-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 !important;
  margin: 0 0 0.5em !important;
}

.news-post .post-date {
  color: #333 !important;
  font-family: purista-web, sans-serif !important;
  font-weight: 400 !important;
  font-size: 18px !important;
  line-height: 1 !important;
  margin-right: 1em;
}

.news-post .post-categories {
  padding-left: 1em;
  padding-right: 1em;
  background: #EFF4F8;
}

.news-post .post-categories a {
  text-decoration: none !important;
}

.news-post .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0 0 0.5em !important;
  padding: 0 !important;
}

.news-post .title a {
  text-decoration: none !important;
}

.news-post .title a:hover {
  opacity: 0.6;
}

.news-post .post-grid-excerpt p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/*.cate-col {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}*/

.cate-colL {
  width: 27.0833333333% !important;
}

.cate-colR {
  width: 72.9166666667% !important;
}

.cate-colR__btn dd,
.cate-colR__btn dl,
.cate-colR__btn dt,
.cate-colR__btn li,
.cate-colR__btn ol,
.cate-colR__btn ul {
  margin-top: inherit;
  margin-bottom: 30px;
}

.cate-colR__btn .btn-list1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 30px;
  padding: 0;
}

.cate-colR__btn .btn-list1 li {
  margin-top: inherit;
  margin-bottom: inherit;
  list-style: none !important;
}

.cate-colR__btn .btn-list1 li a {
  background: #FAFAFA;
  border: 1px solid #3F4B58;
  text-decoration: none;
  padding: 14px 42px;
  color: #333;
  font-size: 16px !important;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.cate-colR__btn .btn-list1 li a:hover {
  color: #fff;
  background: #3F4B58;
  border: 1px solid #fff;
}

/*============================
#facebook
============================*/

#facebook {
  max-width: 500px;
}

/*============================
#fb-root
============================*/

/*************** _info-single ****************/

.info-post-single .info-post-single__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin-top: 1em;
  margin-bottom: 1em;
  line-height: 1.75;
}

.info-post-single h1,
.info-post-single h2,
.info-post-single h3,
.info-post-single h4,
.info-post-single h5,
.info-post-single h6 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  line-height: 1.5 !important;
}

.info-post-single h1 {
  font-size: 22px !important;
}

.info-post-single h2 {
  font-size: 20px !important;
  padding: 0.3em 0.5em;
  border-left: 6px solid #0071B0;
}

.info-post-single h3 {
  font-size: 20px !important;
  background: #eee;
  padding: 0.5em 0;
  padding-left: 0.5em;
}

.info-post-single h4 {
  font-size: 18px !important;
  border: 1px solid #333;
  padding: 0.5em 0;
  padding-left: 0.5em;
}

.info-post-single h5 {
  font-size: 18px !important;
  border-bottom: 2px solid #333;
  padding: 0.5em 0 0.5em 0.5em;
}

.info-post-single h6 {
  font-size: 16px !important;
  padding: 10px 0.5em;
  padding-left: 0.5em;
  border-left: 3px solid #333;
}

.info-post-single p {
  line-height: 1.875;
  margin-bottom: 1em;
}

.info-post-single img {
  margin-bottom: 1em;
}

.info-post-single .info-post__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(1.171875vw, 15px);
  margin-bottom: 5px;
}

.info-post-single .info-post__meta time {
  font-family: purista-web, sans-serif;
  font-weight: 400;
  font-size: 12px;
}

.info-post-single .info-post__meta .cat {
  font-size: 10px;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #333;
  background: #EFF4F8;
  padding: 2px 15px;
}

/*ページャー*/

/*pagere*/

.post__pagination {
  margin-bottom: 50px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #999;
  padding-top: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.post__pagination__left a,
.post__pagination__right a {
  display: block;
  background: #EFF4F8;
  padding: 1em 2em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #333;
}

.post__pagination__left a:hover,
.post__pagination__right a:hover {
  color: #fff;
  background: #3C6086;
}

/*************** info-archive ****************/

/*hoverで流れるライン*/

.btn-right-line {
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, right top, from(#333), to(#333));
  background-image: linear-gradient(90deg, #333, #333);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  -webkit-transition: background-size 0.3s;
  transition: background-size 0.3s;
}

/*記事一覧*/

.info-post {
  display: grid;
  grid-template-columns: 102px auto;
  border-bottom: 1px solid #999;
  gap: min(3.125vw, 30px);
  padding: min(3.90625vw, 20px) 0;
  /*
      &:first-child {
          padding-top: 0;
          border-top: none;

          @include mq(pc) {
              padding-top: min(toVw(20), 20px);
              border-top: 1px solid #33333350;
          }
      }

      &:last-child {
          border-bottom: 1px solid #33333350;
      }*/
}

.info-post__Lthumb {
  margin: 0;
}

.info-post__Lthumb img {
  background: gold;
  width: 100%;
  height: auto;
  aspect-ratio: 193/129 !important;
  -o-object-fit: cover;
     object-fit: cover;
}

/*
.info-post__Lthumb {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 20px;
}

.info-post__Lthumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
/*
/**/

.info-post__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(1.171875vw, 15px);
  margin-bottom: 5px;
}

.info-post__meta time {
  color: #333;
  font-family: purista-web, sans-serif;
  font-weight: 400;
  font-size: min(4.6875vw, 20px);
}

.info-post__meta .cat {
  margin: 0;
  font-size: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #333;
  background: #EFF4F8;
  padding: 2px 15px;
}

.info-post__meta .cat a {
  color: #333;
}

h3.info-post__ttl {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px !important;
  line-height: 1.7142857143;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

h3.info-post__ttl a {
  color: #333;
}

/*ページャー*/

.info-post-pagination {
  margin-top: 30px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.info-post-pagination a {
  color: #333;
}

.info-post-pagination span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.info-post-pagination > * + * {
  margin-left: 12px;
}

.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 35px;
  height: 35px;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-weight: bold;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.page-numbers-Icon {
  width: 20px;
}

.page-numbers.current {
  pointer-events: none;
  background: #EFF4F8;
  color: #333;
}

.page-numbers:not(.current):hover {
  background: #EFF4F8;
  color: #333;
}

/*--カテゴリ--*/

.info-cate__wrap,
.info-archive__wrap {
  background: #3F4B58;
  padding: 20px 0;
}

.info-cate__wrap .l-inner75,
.info-archive__wrap .l-inner75 {
  display: grid;
  grid-template-columns: 20 0px auto;
  gap: min(3.90625vw, 50px);
  padding: min(3.90625vw, 20px) 0;
}

.info-cate-archive__L {
  padding-top: 0.2em;
  color: #fff;
  line-height: 1;
  font-family: purista-web, sans-serif;
  font-weight: 400;
  font-size: 26px;
}

.info-cate-archive__Rlist {
  display: grid;
  grid-template-rows: repeat(auto-fit, 1fr);
  grid-template-columns: repeat(4, 1fr);
  gap: min(2.34375vw, 30px);
}

.info-cate-archive__item a,
.aside-category-list a {
  color: #333;
  background: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.7em 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  list-style: 1;
}

.info-cate-archive__item a:hover,
.aside-category-list a:hover {
  background: #3C6086;
  color: #fff;
}

/*--アーカイブ--*/

.info-archive__wrap {
  background: #1F242A;
}

/*************** news-fb ****************/

.sec-news-fb .elementor-container {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.sec-news-fbL,
.sec-news-fbR {
  width: 47.7% !important;
}

.sec-news-fbL article {
  padding-bottom: 1em;
  border-bottom: 1px solid #C2D1E2;
}

.sec-news-fbL .post-grid-meta {
  padding: 0 !important;
  margin: 0 !important;
}

.sec-news-fbL .post-date {
  color: #333 !important;
  font-family: purista-web, sans-serif !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 1 !important;
  margin-right: 1em;
}

.sec-news-fbL .post-categories {
  padding-left: 1em;
  padding-right: 1em;
  background: #EFF4F8;
}

.sec-news-fbL .post-categories a {
  text-decoration: none !important;
}

.sec-news-fbL .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

.sec-news-fbL .title a {
  text-decoration: none !important;
}

.sec-news-fbL .title a:hover {
  opacity: 0.6;
}

/*************** newscat ****************/

.news-header {
  position: relative;
  background: beige;
  width: 100%;
  height: 400px;
  padding-top: 300px;
  background-image: url(../img/info/inf-hd@2x.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 70%;
  aspect-ratio: 128/32;
  margin: auto;
}

.news-post article {
  padding-bottom: 0.5em;
  border-bottom: 1px solid #C2D1E2;
}

.news-post .post-grid-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0 40px !important;
}

.news-post .post-grid-thumbnail {
  width: 100%;
}

.news-post .post-grid-text-wrap {
  width: 100%;
}

.news-post .post-grid-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 !important;
  margin: 0 0 0.5em !important;
}

.news-post .post-date {
  color: #333 !important;
  font-family: purista-web, sans-serif !important;
  font-weight: 400 !important;
  font-size: 18px !important;
  line-height: 1 !important;
  margin-right: 1em;
}

.news-post .post-categories {
  padding-left: 1em;
  padding-right: 1em;
  background: #EFF4F8;
}

.news-post .post-categories a {
  text-decoration: none !important;
}

.news-post .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0 0 0.5em !important;
  padding: 0 !important;
}

.news-post .title a {
  text-decoration: none !important;
}

.news-post .title a:hover {
  opacity: 0.6;
}

.news-post .post-grid-excerpt p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/*.cate-col {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}*/

.cate-colL {
  width: 27.0833333333% !important;
}

.cate-colR {
  width: 72.9166666667% !important;
}

.cate-colR__btn dd,
.cate-colR__btn dl,
.cate-colR__btn dt,
.cate-colR__btn li,
.cate-colR__btn ol,
.cate-colR__btn ul {
  margin-top: inherit;
  margin-bottom: 30px;
}

.cate-colR__btn .btn-list1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 30px;
  padding: 0;
}

.cate-colR__btn .btn-list1 li {
  margin-top: inherit;
  margin-bottom: inherit;
  list-style: none !important;
}

.cate-colR__btn .btn-list1 li a {
  background: #FAFAFA;
  border: 1px solid #3F4B58;
  text-decoration: none;
  padding: 14px 42px;
  color: #333;
  font-size: 16px !important;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.cate-colR__btn .btn-list1 li a:hover {
  color: #fff;
  background: #3F4B58;
  border: 1px solid #fff;
}

/*************** newspost ****************/

.news-post article {
  padding-bottom: 0.5em;
  border-bottom: 1px solid #C2D1E2;
}

.news-post .post-grid-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0 40px !important;
}

.news-post .post-grid-thumbnail {
  width: 100%;
}

.news-post .post-grid-text-wrap {
  width: 100%;
}

.news-post .post-grid-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 !important;
  margin: 0 0 0.5em !important;
}

.news-post .post-date {
  color: #333 !important;
  font-family: purista-web, sans-serif !important;
  font-weight: 400 !important;
  font-size: 18px !important;
  line-height: 1 !important;
  margin-right: 1em;
}

.news-post .post-categories {
  padding-left: 1em;
  padding-right: 1em;
  background: #EFF4F8;
}

.news-post .post-categories a {
  text-decoration: none !important;
}

.news-post .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0 0 0.5em !important;
  padding: 0 !important;
}

.news-post .title a {
  text-decoration: none !important;
}

.news-post .title a:hover {
  opacity: 0.6;
}

.news-post .post-grid-excerpt p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/*.cate-col {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}*/

.cate-colL {
  width: 27.0833333333% !important;
}

.cate-colR {
  width: 72.9166666667% !important;
}

.cate-colR__btn dd,
.cate-colR__btn dl,
.cate-colR__btn dt,
.cate-colR__btn li,
.cate-colR__btn ol,
.cate-colR__btn ul {
  margin-top: inherit;
  margin-bottom: 30px;
}

.cate-colR__btn .btn-list1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 30px;
  padding: 0;
}

.cate-colR__btn .btn-list1 li {
  margin-top: inherit;
  margin-bottom: inherit;
  list-style: none !important;
}

.cate-colR__btn .btn-list1 li a {
  background: #FAFAFA;
  border: 1px solid #3F4B58;
  text-decoration: none;
  padding: 14px 42px;
  color: #333;
  font-size: 16px !important;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.cate-colR__btn .btn-list1 li a:hover {
  color: #fff;
  background: #3F4B58;
  border: 1px solid #fff;
}

/*************** about ****************/

/*********アバウトトップ***********/

.sec-abouttop-wrap {
  margin-bottom: 40% !important;
  position: relative;
}

.sec-abouttop-wrap::before {
  position: absolute;
  z-index: -1;
  right: 5%;
  top: 70%;
  content: "";
  background-image: url(../img/about/abouto-sya.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 70%;
  aspect-ratio: 3/2;
  margin: auto;
}

.sec-abouttop-Rtxt {
  margin-left: 5%;
  font-size: 26px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.7;
  display: inline-block;
}

/*********メッセージ***********/

.sec-message-wrap {
  position: relative;
}

.sec-message-wrap::before {
  position: absolute;
  z-index: -1;
  content: "";
  background-image: url(/nsd1945/wp-content/themes/hello-theme-child-master/common/img/about/about-bg@2x.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 92.96875%;
  height: 100%;
  margin: auto;
}

.sec-message-Lbg {
  width: 92.96875%;
}

.sec-message-wrap .innerflex > .elementor-container {
  padding-bottom: 30px;
}

.ttlen-ttl {
  padding-top: 40px;
}

.ttlen-ttl {
  width: 90% !important;
}

.sec-message-ttlen {
  color: #3C6086;
  font-size: 36px;
  line-height: 1;
  font-family: purista-web, sans-serif;
  font-weight: 400;
  font-style: italic;
  width: 80%;
  padding: 0;
  margin-right: auto;
  margin-left: 5vw;
  margin-bottom: 0;
}

.sec-message-ttl {
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1;
  font-size: 20px;
  width: 80%;
  margin-right: auto;
  margin-left: 5vw;
}

.sec-message-Limg {
  width: 80%;
  margin-right: auto;
  margin-left: 5vw;
  margin-bottom: 1em;
}

.sec-message-Limg img {
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 500px;
  width: 100%;
}

.sec-message-Rarea {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.sec-message-Rarea__txt {
  font-size: 14px;
  letter-spacing: 0.05em;
  width: 90%;
  line-height: 1.8571428571;
}

.sec-message-Rarea__txt2,
.sec-message-Rarea__txt3 {
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: right;
  width: 90%;
}

.sec-message-Rarea__txt2 {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.sec-message-Rarea__txt3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
}

.sec-message-wrap.bgright::before {
  right: 0;
}

.sec-message-wrap.bgright .sec-message-ttlen {
  margin-left: 10vw;
}

.sec-message-wrap.bgright .sec-message-ttl {
  margin-left: 10vw;
}

.sec-message-wrap.bgright .innerflex > .elementor-container {
  margin-left: 10vw;
}

/*************** ele ****************/

.sec-ele__wrap {
  position: relative;
  margin: 100px auto 0;
}

.sec-ele__wrap .elementor-container {
  max-width: none !important;
}

.sec-ele__wrap .elementor-element-populated {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sec-ele__wrap .sec-msg__wrapL {
  position: absolute;
  z-index: -1;
  top: -15%;
  margin-right: 0;
  width: 85.9375% !important;
  height: 100%;
}

.sec-ele__wrap .sec-msg__wrapL.front {
  z-index: 10;
}

.sec-ele__wrap .sec-msg__wrapR {
  width: 64.453125% !important;
  margin-right: 0;
  margin-left: auto;
  overflow: hidden;
}

.sec-ele__wrap .sec-msg__wrapR img {
  max-height: 540px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.sec-ele__wrap .sec-msg__wrapL .ttlen {
  color: #333;
  font-size: 80px;
  line-height: 1;
  margin-top: 50px;
  margin-bottom: 0.5em;
  font-family: purista-web, sans-serif;
  font-weight: 400;
  font-style: italic;
  width: 100% !important;
  margin-left: 7%;
  text-align: left;
}

.sec-ele__wrap .sec-msg__wrapL .ttl {
  color: #3C6086;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  width: 32% !important;
  margin-left: 7%;
  text-align: left;
}

.sec-ele__wrap .sec-msg__wrapL .txt {
  color: #333;
  font-size: 16px;
  line-height: 1.875;
  margin-bottom: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  width: 32% !important;
  margin-left: 7%;
  text-align: left;
}

.sec-ele__wrap .sec-msg__wrapL .btn {
  background: #fff;
  color: #333;
  text-align: center;
  font-size: 18px;
  line-height: 1.5555555556;
  margin-bottom: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  width: 32% !important;
  margin-left: 7%;
  text-align: left;
}

/*不要不要不要*/

.sec-msg__wrap .wrapL__inner2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 85%;
  margin-left: 7%;
}

.sec-msg__wrap .wrapL__inner2 .wrapL__inner2L {
  width: 25.4545454545%;
}

.sec-msg__wrap .wrapL__inner2 .wrapL__inner2L img {
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec-msg__wrap .wrapL__inner2 .wrapL__inner2R {
  width: 69.0909090909%;
}

.sec-msg__wrap .wrapL__inner2 p {
  color: #333;
  font-size: 16px;
  line-height: 2.5;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.sec-msg__wrap .wrapL__inner2 .msg2 {
  margin-top: 2em;
  text-align: right;
  font-size: 18px;
  line-height: 1;
}

.sec-msg__wrap .wrapL__inner2 .msg3 {
  margin-bottom: 2em;
  text-align: right;
  font-size: 24px;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

/*************** flow ****************/

.flow-list {
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.flow-list:before {
  content: "";
  background: #c5c5c5;
  width: 2px;
  height: 84%;
  position: absolute;
  left: 9px;
  top: 10px;
  z-index: -1;
}

.flow-list li {
  list-style: none !important;
  position: relative;
  margin-bottom: 33px;
}

.flow-list li:last-child {
  margin-bottom: 0;
}

.flow-list li .no {
  display: none;
  position: absolute;
  font-size: 28px;
  left: -1.5em;
  top: -0.5em;
}

.flow-list li .flow-circle {
  margin-top: 0.6em;
  font-size: 22px;
  color: #333;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #3C6086;
}

.flow-list li .ttl-txt {
  width: calc(100% - 20px);
  padding-left: 25px;
  margin-top: -25px;
  gap: 0 2em;
}

.flow-list li .ttl-txt .ttl {
  width: 180px;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 1.4em;
}

.flow-list li .ttl-txt .txt {
  font-size: 14px;
  line-height: 1.8em;
}

.flow-list li .ttl-txt .txt a {
  color: blue;
  text-decoration: underline;
}

/*************** renew ****************/

.solardata-section {
  margin-bottom: 60px;
}

.solardata-section .solardata__ttl {
  text-align: center;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
}

.solardata-section .solardata__ttlp {
  text-align: center;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 30px;
}

.solardata-section .footer-contact-mail--tel-wrap {
  color: #fff;
}

.solardata-section .solardata__footer-contact__ttl {
  margin: 0;
  font-size: 20px;
}

.solardata-section .solardata__footer-contact__ttlp {
  margin: 0;
  font-size: 14px;
  margin-bottom: 1em;
}

.solardata-section .c-btn-ft-mail a {
  padding: 0.5em 1.5em;
  font-size: 16px;
}

.solardata-btn.c-btn1 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.solardata-btn.c-btn1 a {
  color: #fff;
  font-size: 16px;
  padding: 1.5em;
  background: #3C6086;
}

.solardata-btn.c-btn1 a::after {
  background: #fff;
}

.solardata-btn.c-btn1 a:hover {
  color: #3C6086;
}

/*************** 採用情報 ****************/

.elementor-element.elementor-element-f5a897c > div,
.elementor-element-a76e2fa > div {
  padding-top: 2em !important;
  padding-bottom: 2em !important;
}

/*---------------------------------*/

.ele-renew-section {
  margin-bottom: 60px;
}

.ele-renew__wrap {
  position: relative;
  /*.l-inner86 {
  	display: flex;
  	flex-wrap: wrap;
  flex-direction: column-reverse;
  		@include mq(pc) {//768以上
  			display: block;
  		}
  	}*/
}

.ele-renew__wrap::before {
  position: absolute;
  z-index: -1;
  height: 80%;
  content: "";
  background-color: #C2D1E2;
  width: 92.96875%;
  margin: auto;
}

.ele-renew__Larea-bg {
  width: 92.96875%;
  height: 30px;
}

.ele-renew__Rarea-img {
  width: 90%;
  margin-right: 0;
  margin-left: auto;
}

.ele-renew__Rarea-img img {
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-height: 400px;
}

.ele-renew__Larea {
  position: relative;
  width: 90%;
  margin: 0 auto 1em;
}

.ele-renew__Larea__ttlen {
  font-size: min(10.625vw, 36px);
  color: #fff;
  width: 90%;
  font-family: purista-web, sans-serif;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  margin-bottom: 0.2em;
  word-break: break-all;
}

.ele-renew__Larea__ttl {
  font-size: 20px;
  width: 90%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1em;
}

.ele-renew__Larea__txt {
  font-size: 14px;
  line-height: 1.7142857143;
  width: 90%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8571428571;
}

.ele-renew__Larea__btn {
  margin-top: 1em;
  margin-bottom: 2em;
  margin-left: 0;
  width: 80%;
}

.ele-renew__Larea__btn a {
  /*
padding: 1em 5em;
display: inline-block;
text-decoration: none !important;
background: #fff;
color: $color-blu;
text-align: center;
font-size: 16px;
line-height: 1;
@include font-purista-mi;
	@include mq(pc) {
		margin-top: 1em;
	font-size: 18px;
	}*/
}

/*************** recruit ****************/

section.elementor-section.elementor-inner-section.elementor-element.elementor-element-9b27cb0.elementor-section-full_width.l-inner {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

/*------------------------------------*/

.recruit-label-aside {
  margin-bottom: 30px;
}

.recruit-label {
  margin: 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 2;
}

.recruit-banner__box {
  margin-bottom: 60px;
}

.recruit-banner {
  text-align: center;
  margin-bottom: 10px;
}

.recruit-banner__caption {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5714285714;
}

.recruit-banner__caption p {
  margin: 0;
}

/*********先輩***********/

.sp-none {
  display: none;
}

.sec-senpai-wrap {
  position: relative;
}

.sec-senpai-wrap::before {
  position: absolute;
  z-index: -1;
  content: "";
  background-color: #EFF4F8;
  width: 92.96875% !important;
  height: 110%;
  margin: auto;
}

.sec-senpai-Lbg {
  width: 92.96875% !important;
}

.sec-senpai-Limg {
  width: 80%;
  margin-top: 5vw;
  margin-right: auto;
  margin-left: 5vw;
  margin-bottom: 1em;
}

.sec-senpai-Limg img {
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 500px;
  width: 100%;
}

.sec-senpai-Rarea {
  position: relative;
  width: 90%;
  margin: 0 auto 2em;
}

.sec-senpai-Rarea__box__ttl {
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  width: 90%;
  margin-bottom: 0.5em;
}

.sec-senpai-Rarea__box__day-name {
  margin-bottom: 0.5em;
}

.sec-senpai-Rarea__box__day {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.sec-senpai-Rarea__box__name {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.sec-senpai-Rarea__box__txt {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8571428571;
  width: 90%;
}

.sec-senpai-wrap.right::before {
  right: 0;
}

.sec-senpai-wrap.right .sec-senpai-Limg {
  margin-left: 12vw;
}

.sec-senpai-wrap.right .sec-senpai-Rarea__box__ttl {
  margin-left: 6vw;
  width: 92%;
}

.sec-senpai-wrap.right .sec-senpai-Rarea__box__day-name {
  margin-left: 6vw;
}

.sec-senpai-wrap.right .sec-senpai-Rarea__box__txt {
  margin-left: 6vw;
  width: 92%;
}

/*************** contact ****************/

ul.privacy__list {
  height: 160px;
  overflow-y: scroll;
  border: 1px solid #cdcdcd;
  background: #fff;
  margin-top: 20px;
  padding: 20px;
}

ul.privacy__list li {
  list-style: none;
}

ul.privacy__list li p {
  margin: 0 !important;
}

.box_check {
  margin: 1.5em auto;
  padding: 0;
  line-height: 3;
  background: #ddd;
}

.box_check label {
  display: inline-block;
}

.box_check label span {
  margin-left: 0.3em;
}

.box_check input[type=checkbox] {
  display: inline-block;
  color: #555;
  clear: none;
  cursor: pointer;
  line-height: 0;
  height: 1.2em;
  margin: -3px 0 0 0;
  outline: 0;
  padding: 0;
  border-radius: 0.2em;
  text-align: center;
  vertical-align: middle;
  width: 1.4em;
  min-width: 1.4em;
}

.nsdcontact table {
  margin-bottom: 2.5em;
}

.nsdcontact table td:first-child {
  max-width: 280px;
  width: 29.1666666667% !important;
  min-width: 220px;
}

.nsdcontact table td:last-child {
  width: calc(100% - 280px) !important;
}

.nsdcontact .wpcf7-list-item-label {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.nsdcontact .form__item input[type=radio] {
  display: none;
}

.nsdcontact .form__item .wpcf7-list-item-label {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
}

.nsdcontact .form__item .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #231815;
  border-radius: 50%;
  content: "";
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}

.nsdcontact .form__item .wpcf7-list-item-label::after {
  background: #3C6086;
  border-radius: 50%;
  content: "";
  display: block;
  height: 10px;
  left: 8px;
  margin-top: -5px;
  opacity: 0;
  position: absolute;
  top: 50%;
  width: 10px;
}

.nsdcontact .form__item input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.nsdcontact .submit__box {
  text-align: center;
  margin-top: 30px;
}

.nsdcontact .submit__box input {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 16px;
  line-height: 2.3;
  width: 280px;
  padding: 5px;
  color: #fff !important;
  cursor: pointer;
  border: 1px solid #3C6086 !important;
  background: #3C6086 !important;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 50px;
}

.nsdcontact .submit__box input:hover {
  background: #fff !important;
  color: #3C6086 !important;
}

.nsdcontact .submit__box input[type=submit] {
  -webkit-appearance: none;
}

#wpcf7cpcnf table th,
#wpcf7cpcnf table td {
  font-size: 16px;
  border: none;
}

#wpcf7cpcnf table th:first-child,
#wpcf7cpcnf table td:first-child {
  max-width: 212px;
  width: 22.0833333333% !important;
  min-width: 180px;
  text-align: left;
  vertical-align: middle;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  background: none;
  border-bottom: 1px solid #333;
}

#wpcf7cpcnf table th:last-child,
#wpcf7cpcnf table td:last-child {
  width: calc(100% - 212px) !important;
  line-height: 1.75;
  background: none;
  border-bottom: 1px solid #CDD6DD;
}

#wpcf7cpcnf table th p,
#wpcf7cpcnf table td p {
  margin: 0;
}

.wpcf7cp-btns button {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 16px;
  line-height: 2.3;
  background: #fff;
  padding: 5px 1em;
  color: #3C6086;
  cursor: pointer;
  border: 1px solid #3C6086;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 50px;
}

.wpcf7cp-btns button:first-child {
  margin-bottom: 0;
}

.wpcf7cp-btns button:hover {
  background: #3C6086;
  color: #fff;
}

.confirm-area {
  width: 30%;
  margin-top: 0;
}

.confirm-area-r {
  width: 70%;
}

.back__btn {
  background: #ccc !important;
  width: 220px !important;
  border: 1px solid #333 !important;
}

input.back__btn:hover {
  color: #333 !important;
  opacity: 0.8;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

@media only screen and (min-width: 360px) {
  .flow-list:before {
    height: 86%;
  }
}

@media screen and (min-width: 480px) {
  .sec-senpai-Rarea__box__day-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .sec-senpai-Rarea__box__day {
    margin-right: 5em;
  }
}

@media print, screen and (min-width: 540px) {
  .label3 h2 {
    font-size: 36px !important;
  }

  .label3 h2 span {
    font-size: 16px !important;
  }

  .brsp2 {
    display: none;
  }
}

@media screen and (min-width: 540px) {
  .sec-product-Larea {
    width: 86% !important;
  }

  .sec-product-Larea__box__btn .btn02 {
    padding: 10px 48px;
  }

  .sec-product-Larea__box__btn .car .btn02 {
    padding: 10px 28px;
  }

  ul.reports {
    grid-template-columns: repeat(3, 1fr);
  }

  .mv-section .l-inner97 {
    height: 580px;
  }

  .display-pc {
    display: inherit !important;
  }

  .display-sp {
    display: none !important;
  }

  #visual {
    height: 580px;
  }

  #visual .copy {
    top: 200px;
  }

  #visual .video {
    width: 100%;
    height: 580px !important;
  }

  .ele-renew__Rarea-img .video {
    width: 100%;
    height: 450px !important;
  }

  .news-post .post-grid-thumbnail {
    width: 36%;
  }

  .news-post .post-grid-text-wrap {
    width: 57%;
  }

  .news-post .post-date {
    font-size: 22px !important;
  }

  .news-post .post-grid-thumbnail {
    width: 36%;
  }

  .news-post .post-grid-text-wrap {
    width: 57%;
  }

  .news-post .post-date {
    font-size: 22px !important;
  }

  .news-post .post-grid-thumbnail {
    width: 36%;
  }

  .news-post .post-grid-text-wrap {
    width: 57%;
  }

  .news-post .post-date {
    font-size: 22px !important;
  }

  .sec-abouttop-wrap {
    margin-bottom: 100px !important;
  }

  .sec-abouttop-wrap::before {
    width: 65.0909090909%;
    top: 0;
    right: 7%;
  }

  .sec-abouttop-Rtxt {
    margin-top: 20%;
    margin-left: 7%;
  }

  .sec-message-ttlen {
    font-size: 46px;
  }

  .sec-message-ttl {
    font-size: 22px;
  }
}

@media only screen and (min-width: 540px) {
  .flow-list:before {
    height: 87%;
  }
}

@media print, screen and (min-width: 640px) {
  .report-list .elementor-icon-list-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 720px) {
  ul.reports {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (min-width: 767px) {
  .sec-product-wrap::before {
    height: 100%;
  }

  .sec-product-Larea__box__ttlen {
    font-size: 60px;
  }

  .sec-product-Larea__box__ttl {
    font-size: 24px;
    width: 33.203125% !important;
  }

  .sec-product-Larea__box__txt {
    margin-bottom: 0;
    width: 37.109375% !important;
    font-size: 16px;
    line-height: 1.875;
  }

  .sec-product-Larea__box__btn .btn02 {
    padding: 10px 68px;
    margin-top: 0;
  }

  .sec-abouttop-Rtxt {
    font-size: 36px;
  }

  .sec-message-wrap .innerflex > .elementor-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 90%;
    margin: auto;
  }

  .sec-message-wrap .innerflex > .elementor-container {
    padding-bottom: 40px;
  }

  .sec-message-ttlen {
    font-size: 60px;
  }

  .sec-message-ttl {
    font-size: 24px;
  }

  .sec-message-Limg {
    width: 27% !important;
    margin-left: 0;
  }

  .sec-message-Limg img {
    max-width: 600px;
  }

  .sec-message-Rarea {
    width: 64% !important;
  }

  .sec-message-Rarea__txt {
    font-size: 16px;
    line-height: 2;
  }

  .sec-message-Rarea__txt2 {
    font-size: 18px;
  }

  .sec-message-Rarea__txt3 {
    font-size: 22px;
  }

  .sec-senpai-wrap .innerflex > .elementor-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 5vw;
  }

  .sec-senpai-Limg {
    width: 31.25% !important;
    margin-right: 0;
    height: auto;
  }

  .sec-senpai-Rarea {
    margin-right: 0;
    margin-left: 0;
    margin-top: 5vw;
    width: 50.78125% !important;
  }

  .sec-senpai-Rarea__box__ttl {
    font-size: 22px;
    line-height: 1.4545454545;
  }

  .sec-senpai-Rarea__box__day-name {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 90%;
  }

  .sec-senpai-Rarea__box__day {
    font-size: 16px;
    margin-right: 0;
  }

  .sec-senpai-Rarea__box__name {
    font-size: 18px;
  }

  .sec-senpai-Rarea__box__txt {
    line-height: 1.875;
    font-size: 16px;
  }

  .sec-senpai-wrap.right .innerflex > .elementor-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .sec-senpai-wrap.right .sec-senpai-Limg {
    width: 31.25% !important;
    margin-left: 0;
    margin-right: 7vw;
  }

  .sec-senpai-wrap.right .sec-senpai-Rarea {
    margin-right: 0;
    margin-left: 0;
    width: 50.78125% !important;
  }
}

@media screen and (min-width:768px) {
  .l-inner75 {
    width: 75%;
  }

  .l-inner86 {
    width: 86%;
  }

  .l-inner86 .l-inner87-in {
    width: 87%;
  }

  .l-inner95 {
    width: 95%;
  }

  .br-mb {
    display: none;
  }

  .br-pc {
    display: block;
  }

  #scroll-to-top {
    width: 80px;
    height: 80px;
  }

  .footer-contacttitle-wrap {
    padding-top: min(7.03125vw, 90px);
    padding-bottom: min(7.03125vw, 90px);
  }

  .midashi-01__en {
    font-size: min(4.6875vw, 50px);
    margin-bottom: min(2.34375vw, 30px);
  }

  .midashi-01__h2 {
    font-size: 16px;
  }

  .footer-contact-mail--tel-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .footer-contact-mail,
  .footer-contact-tel {
    width: 50%;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .footer-contact-mail__p,
  .footer-contact-tel__p {
    font-size: 24px;
  }

  .c-btn-ft-mail a {
    font-size: min(2.5vw, 24px);
  }

  .c-btn-ft-mail a {
    padding: 1em 2em;
    max-width: 420px;
  }

  .c-btn-ft-tel a {
    font-size: min(4.6875vw, 60px);
  }

  .c-btn-ft-tel a img {
    margin-right: min(1.5625vw, 20px);
    width: min(2.421875vw, 31px);
  }

  .footer-menu-wrap {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .footer-menu-name {
    font-size: min(2.8125vw, 36px);
    margin-bottom: 60px;
  }

  .footer-menu-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .footer-menu-area-L {
    width: 100%;
  }

  .copy {
    font-size: 14px;
    height: 80px;
  }

  ul.reports {
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
  }

  .topicks-section {
    margin-top: -140px;
  }

  .topicks-label {
    width: 170px;
    height: 40px;
    border-bottom: 40px solid #EFF4F8;
    /* ボトム高さ */
  }

  .topicks-label p {
    font-size: 24px;
  }

  .topicks-label p img {
    width: 17px;
    margin-right: 10px;
  }

  .topicks-list {
    padding-left: 30px;
    padding-right: 30px;
  }

  .topicks-item {
    width: 100%;
    border-bottom: 1px dotted #ccc;
    margin-bottom: 0;
  }

  .topicks-item:last-child {
    border-bottom: none;
  }

  .topicks-list__time {
    grid-area: auto;
    font-size: 14px;
  }

  .topicks-list__cat {
    grid-area: auto;
  }

  .topicks-list__cat a {
    padding: 2px 15px;
  }

  .topicks-list__ttl-link {
    grid-area: auto;
  }

  .under-pg-header {
    height: 470px;
    padding-top: 470px;
  }

  .under-pg-label {
    padding: 20px 4em 20px 7%;
  }

  .under-pg-label .under-pg-label__ttl {
    font-size: 50px;
  }

  .under-pg-label .under-pg-label__ttl span {
    font-size: 16px;
  }

  .under-pg-bread {
    font-size: 12px;
    margin-bottom: 60px;
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .gallery-section {
    height: 280px;
  }

  .howto-nsd-section {
    margin-top: -90px;
    margin-bottom: 90px;
  }

  .howto-nsd-section .l-inner86 {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .howto-nsd__ttl {
    font-size: 16px;
  }

  .howto-nsd__bun__box {
    padding-top: 2em;
    padding-bottom: 2em;
    margin-bottom: 90px;
  }

  .howto-nsd__p {
    font-size: 16px;
    line-height: 1.875;
  }

  .tiiki010203__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: min(3.90625vw, 50px);
  }

  .tiiki010203__item .c-label1 {
    font-size: min(2.34375vw, 24px);
  }

  .tiiki010203__no {
    width: min(11.71875vw, 90px);
    margin: 0 auto;
    margin-bottom: 1em;
  }

  .tiiki010203__caption {
    font-size: min(1.5625vw, 16px);
  }

  .sougyo__wrap {
    margin-bottom: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .sougyo__wrap__L,
  .sougyo__wrap__R {
    width: 47%;
  }

  .sougyo__wrap__ttl {
    margin-bottom: 0.5em;
    font-size: 36px;
  }

  .sougyo__wrap__p1 {
    font-size: 24px;
    line-height: 1.5;
  }

  .sougyo__wrap__p2 {
    font-size: 16px;
    line-height: 1.875;
  }

  .sougyo__wrap__R {
    margin-bottom: 0;
  }

  .hasira__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .circle__wrap p {
    font-size: min(1.5625vw, 20px);
    line-height: 1.625;
  }

  .service-section {
    background-size: 100%;
    margin-bottom: 90px;
    background-position: center min(4.6875vw, 90px);
    background-attachment: inherit;
  }

  .service-denki__wrap,
  .service-renew__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: min(6.25vw, 80px);
  }

  .service-denki__wrap {
    margin-bottom: 120px;
  }

  .service-denki__L {
    margin-bottom: 0;
    width: min(42.96875vw, 650px);
  }

  .service-denki__R {
    width: min(35.9375vw, 360px);
  }

  .c-label1 {
    margin-bottom: 2em;
  }

  .service-section__p {
    font-size: 16px;
    line-height: 1.875;
  }

  .c-btn1 a {
    font-size: 18px;
  }

  .service-renew__R {
    width: min(36.71875vw, 370px);
  }

  .service-renew__L {
    margin-bottom: 0;
    width: min(35.9375vw, 460px);
  }

  .service-circle {
    font-size: 50px;
  }

  .top-recruit-section {
    margin-bottom: 90px;
  }

  .top-recruit__wrap::before {
    height: 90%;
  }

  .top-recruit__Larea-bg {
    height: 60px;
  }

  .top-recruit__Rarea-img {
    width: min(54.6875vw, 700px);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  .top-recruit__Rarea-img img {
    height: 40vw;
  }

  .top-recruit__Larea__ttlen {
    font-size: min(4.6875vw, 60px);
    width: 40%;
  }

  .top-recruit__Larea__ttl {
    font-size: 24px;
    width: 40%;
  }

  .top-recruit__Larea__txt {
    font-size: 16px;
    margin-bottom: 0;
    width: min(42.96875vw, 550px);
    line-height: 1.875;
  }

  .top-recruit__Larea__btn {
    width: 30%;
  }

  .news-fb-section {
    margin-bottom: 60px;
  }

  .news-fb-__ttlen.c-label2 {
    font-size: 50px;
  }

  .news-fb__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: min(3.90625vw, 50px);
  }

  .news-fb__Lnews {
    margin-bottom: 0;
  }

  time {
    font-size: 14px;
  }

  .news-fb__Lbtn a {
    font-size: 14px;
  }

  .info-post-single .info-post-single__ttl {
    font-size: min(1.875vw, 24px);
    line-height: 1.6666666667;
  }

  .info-post-single h1 {
    font-size: min(1.875vw, 24px) !important;
  }

  .info-post-single h2 {
    padding: 0.3em 1em;
    font-size: min(1.875vw, 24px) !important;
  }

  .info-post-single h3 {
    padding-left: 1em;
    font-size: min(1.875vw, 24px) !important;
  }

  .info-post-single h4 {
    padding-left: 1em;
    font-size: min(1.5625vw, 20px) !important;
  }

  .info-post-single h5 {
    padding: 0.5em 0 0.5em 1em;
    font-size: min(1.5625vw, 20px) !important;
  }

  .info-post-single h6 {
    padding-left: 1em;
    font-size: min(1.40625vw, 18px) !important;
  }

  .info-post-single .ha2a6 {
    font-size: min(1.40625vw, 18px);
  }

  .info-post-single .info-post__meta {
    gap: min(0.9375vw, 12px);
    margin-bottom: 0.5em;
  }

  .info-post-single .info-post__meta time {
    font-size: min(3.59375vw, 26px);
    line-height: 1;
  }

  .info-post-single .info-post__meta .cat {
    font-size: 12px;
  }

  .post__pagination {
    padding-top: 60px;
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .post__pagination__left a,
  .post__pagination__right a {
    font-size: 16px;
  }

  .info-post {
    grid-template-columns: min(15.625vw, 200px) auto;
  }

  .info-post__meta {
    gap: min(0.9375vw, 12px);
    margin-bottom: 0.5em;
  }

  .info-post__meta time {
    font-size: 24px;
    line-height: 1;
  }

  .info-post__meta .cat {
    font-size: 12px;
  }

  h3.info-post__ttl {
    font-size: 18px !important;
    line-height: 1.6666666667;
  }

  .info-post-pagination {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .info-cate__wrap,
  .info-archive__wrap {
    padding: 30px 0;
  }

  .info-cate__wrap .l-inner75,
  .info-archive__wrap .l-inner75 {
    grid-template-columns: min(15.625vw, 200px) auto;
  }

  .info-cate-archive__L {
    font-size: min(2.8125vw, 36px);
  }

  .info-cate-archive__item a,
  .aside-category-list a {
    font-size: 16px;
  }

  .solardata-section {
    margin-bottom: 90px;
  }

  .solardata-section .solardata__ttl {
    font-size: min(2.8125vw, 36px);
  }

  .solardata-section .solardata__ttlp {
    margin-bottom: 60px;
    font-size: 16px;
  }

  .solardata-section .solardata__footer-contact__ttl {
    margin-bottom: 0;
    font-size: 24px;
  }

  .solardata-section .solardata__footer-contact__ttlp {
    margin-bottom: 1em;
    font-size: 16px;
  }

  .solardata-section .c-btn-ft-mail a {
    font-size: 18px;
    padding: 0.5em 3em;
  }

  .solardata-btn.c-btn1 {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .ele-renew-section {
    margin-bottom: 90px;
  }

  .ele-renew__wrap::before {
    height: 90%;
  }

  .ele-renew__Larea-bg {
    height: 60px;
  }

  .ele-renew__Rarea-img {
    width: min(54.6875vw, 700px);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  .ele-renew__Rarea-img img {
    height: 40vw;
  }

  .ele-renew__Larea__ttlen {
    font-size: min(4.6875vw, 60px);
    width: 40%;
  }

  .ele-renew__Larea__ttl {
    font-size: 24px;
    width: 40%;
  }

  .ele-renew__Larea__txt {
    font-size: 16px;
    margin-bottom: 0;
    width: min(35.15625vw, 550px);
    line-height: 1.875;
  }

  .ele-renew__Larea__btn {
    width: 30%;
  }

  .recruit-label-aside {
    margin-bottom: 60px;
  }

  .recruit-label {
    font-size: min(1.875vw, 24px);
    line-height: 1.9166666667;
  }

  .recruit-banner__box {
    margin-bottom: 90px;
  }

  .recruit-banner__caption {
    font-size: 16px;
    line-height: 1.875;
  }
}

@media screen and (min-width: 768px) {
  .sec-product-wrap .inner > .elementor-container {
    display: block;
  }

  .sec-product-Rimg {
    width: 56.640625% !important;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  .sec-product-Rimg img {
    height: 40vw;
  }

  .sec-product-Larea {
    height: 0;
    -webkit-transform: translateY(-40vw);
            transform: translateY(-40vw);
  }

  .topicks-item {
    grid-template-rows: none;
    grid-template-areas: none;
    grid-template-columns: 80px auto 1fr;
    gap: 25px;
  }

  .topicks-list__ttl {
    line-height: 3;
  }

  .top-recruit__Larea {
    height: 0;
  }

  .news-post article {
    padding-bottom: 1em;
  }

  .news-post .post-grid-thumbnail {
    width: 242px;
  }

  .news-post .post-grid-text-wrap {
    width: calc(100% - 282px);
  }

  .news-post .post-date {
    font-size: 26px !important;
  }

  .news-post article {
    padding-bottom: 1em;
  }

  .news-post .post-grid-thumbnail {
    width: 242px;
  }

  .news-post .post-grid-text-wrap {
    width: calc(100% - 282px);
  }

  .news-post .post-date {
    font-size: 26px !important;
  }

  .news-post article {
    padding-bottom: 1em;
  }

  .news-post .post-grid-thumbnail {
    width: 242px;
  }

  .news-post .post-grid-text-wrap {
    width: calc(100% - 282px);
  }

  .news-post .post-date {
    font-size: 26px !important;
  }

  .ele-renew__Larea {
    height: 0;
  }
}

@media print, screen and (min-width: 860px) {
  .report-list .elementor-icon-list-items {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media print, screen and (min-width: 1024px) {
  .label3 h2 {
    font-size: 44px !important;
  }
}

@media screen and (min-width: 1024px) {
  .footer-menu-area-L {
    width: 50%;
  }

  .footer-menu-area-R {
    width: 50%;
  }

  .sec-product-wrap::before {
    height: 84.126984127%;
  }

  .sec-product-Rimg {
    width: 64.453125% !important;
  }

  .sec-product-Larea__box__ttlen {
    font-size: 80px;
  }

  .sec-product-Larea__box__ttl {
    width: 25.390625% !important;
  }

  .sec-product-Larea__box__txt {
    width: 29.296875% !important;
  }

  .sec-product-Larea__box__btn .btn02 {
    margin-bottom: 0;
    padding: 10px 78px;
    font-size: 18px;
    line-height: 1.5555555556;
  }

  .sec-abouttop-Rtxt {
    font-size: 46px;
  }

  .sec-message-Rarea__txt3 {
    font-size: 24px;
  }
}

@media only screen and (min-width: 1024px) {
  .flow-list li .ttl-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .flow-list li .ttl-txt .txt {
    font-size: 16px;
    width: calc(100% - 210px - 10px);
  }
}

@media print, screen and (min-width: 1280px) {
  .report-list .elementor-icon-list-items {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media screen and (min-width: 1280px) {
  .sec-abouttop-wrap::before {
    height: 600px;
  }

  .sec-abouttop-Rtxt {
    margin-top: 350px;
  }

  .sec-senpai-Rarea__box__ttl {
    font-size: 36px;
    line-height: 1.5555555556;
  }

  .sec-senpai-wrap.right .sec-senpai-Rarea__box__ttl {
    margin-left: 5vw;
  }

  .sec-senpai-wrap.right .sec-senpai-Rarea__box__day-name {
    margin-left: 5vw;
  }

  .sec-senpai-wrap.right .sec-senpai-Rarea__box__txt {
    margin-left: 5vw;
  }
}

@media only screen and (min-width: 1280px) {
  .flow-list li .ttl-txt .txt {
    font-size: 16px;
    width: calc(100% - 210px - 10px);
  }
}

@media screen and (min-width: 1380px) {
  .sec-product-Larea {
    -webkit-transform: translateY(-550px);
            transform: translateY(-550px);
  }
}

@media print, screen and (min-width: 1520px) {
  .report-list .elementor-icon-list-items {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media only screen and (min-width: 1680px) {
  .flow-list:before {
    height: 90%;
  }
}

@media print, screen and (min-width: 1760px) {
  .report-list .elementor-icon-list-items {
    grid-template-columns: repeat(7, 1fr);
  }
}

@media screen and (min-width: 1800px) {
  .sec-senpai-wrap.right .sec-senpai-Rarea {
    width: 46.875% !important;
  }
}

@media print, screen and (min-width: 2000px) {
  .report-list .elementor-icon-list-items {
    grid-template-columns: repeat(8, 1fr);
  }
}

@media screen and (min-width: 10240px) {
  .sec-senpai-Rarea__box__ttl {
    font-size: 28px;
    line-height: 1.6428571429;
  }
}

@media print, screen and (max-width: 1024px) {
  .l-inner {
    max-width: 90%;
  }

  .l-inner2 {
    max-width: 90%;
  }

  .brsp {
    display: none;
  }

  .l-col__max {
    height: 200px;
  }

  .sec-rec__wrap {
    margin: 300px auto 0;
  }

  .sec-rec__wrapL {
    width: 90% !important;
    top: -400px;
  }

  .sec-rec__wrapR {
    width: 80.56640625% !important;
  }

  .sec-rec__wrapL__ttl {
    margin-top: 5%;
  }

  .sec-rec__wrapL__ttl,
  .sec-rec__wrapL__ttl2,
  .sec-rec__wrapL__txt,
  .sec-rec__wrapL__btn {
    margin-left: 5%;
    width: 100% !important;
  }

  .sec-rec__wrap {
    margin: 300px auto 0;
  }

  .sec-rec__wrapL {
    width: 90% !important;
    top: -400px;
  }

  .sec-rec__wrapR {
    width: 80.56640625% !important;
  }

  .sec-rec__wrapL__ttl {
    margin-top: 5%;
  }

  .sec-rec__wrapL__ttl,
  .sec-rec__wrapL__ttl2,
  .sec-rec__wrapL__txt,
  .sec-rec__wrapL__btn {
    margin-left: 5%;
    width: 100% !important;
  }

  .sec-ele__wrap {
    margin: 300px auto 0;
  }

  .sec-ele__wrap .sec-msg__wrapL {
    width: 90% !important;
    top: -400px;
  }

  .sec-ele__wrap .sec-msg__wrapR {
    width: 80.56640625% !important;
  }

  .sec-ele__wrap .sec-msg__wrapL .ttlen {
    margin-left: 5%;
    width: 100% !important;
  }

  .sec-ele__wrap .sec-msg__wrapL .ttl {
    margin-left: 5%;
    width: 100% !important;
  }

  .sec-ele__wrap .sec-msg__wrapL .txt {
    width: 90% !important;
    margin-left: 5%;
  }

  .sec-ele__wrap .sec-msg__wrapL .btn {
    width: 90% !important;
    margin-left: 5%;
  }

  .sec-msg__wrap .wrapL__inner2 {
    margin-left: 5%;
    width: 100% !important;
  }
}

@media screen and (max-width: 1024px) {
  .contants-box-l {
    margin-left: 0px;
    margin-right: 0px;
    max-width: 100vw;
  }

  header {
    gap: 100%;
    height: 60px;
  }

  .global__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }

  .global__nav.slide {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #3C6086;
  }

  .global__nav.slide .global__nav-item .global__nav-link {
    display: block;
    font-size: 18px;
    padding: 5px;
  }

  .global__nav.slide .global__nav-item .global__nav-link:hover {
    color: #ccc !important;
  }

  .global__nav-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .global__nav-item:last-child {
    margin-left: 0;
  }

  .global__nav-item:last-child a:hover {
    background: #3C6086;
  }

  .global__nav-link {
    font-size: 16px;
    color: #fff;
  }

  .sp-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 14px;
  }
}

@media print, screen and (max-width: 768px) {
  .subpg-label__wrapL {
    padding: 15px 4em 15px 8%;
  }

  .subpg-label__wrapL h2 {
    font-size: 40px;
  }

  .renew .subpg-label__wrapL {
    margin-top: 20px;
  }

  .renew .subpg-label__wrapL h2 {
    font-size: 40px;
  }

  .footer-tel a {
    font-size: 40px;
  }

  .footer-tel2 .elementor-button-icon svg {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }

  .sec-service {
    max-width: 90%;
  }

  .xxxxx2 {
    margin-bottom: 60px;
  }

  .tablebox table td {
    display: block;
    width: 100% !important;
    border-bottom: none;
  }

  .tablebox table td:first-child {
    width: 100% !important;
    border-bottom: none !important;
    padding-bottom: 0;
  }

  .tablebox table td:last-child {
    width: 100% !important;
    border-bottom: 1px solid #333 !important;
    padding-top: 0;
  }

  .sec-rec__wrapL {
    width: 90% !important;
    top: -350px;
  }

  .sec-rec__wrapR {
    width: 90% !important;
  }

  .sec-rec__wrapL {
    width: 90% !important;
    top: -350px;
  }

  .sec-rec__wrapR {
    width: 90% !important;
  }

  .news-post .post-grid-inner {
    gap: 0 30px !important;
  }

  .cate-colL {
    width: 260px !important;
  }

  .cate-colR {
    width: 700px !important;
  }

  .cate-colR__btn dd,
  .cate-colR__btn dl,
  .cate-colR__btn dt,
  .cate-colR__btn li,
  .cate-colR__btn ol,
  .cate-colR__btn ul {
    margin-bottom: 20px;
  }

  .cate-colR__btn .btn-list1 {
    gap: 20px;
  }

  .sec-news-fb .elementor-container {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .sec-news-fbL,
  .sec-news-fbR {
    width: 100% !important;
  }

  .news-post .post-grid-inner {
    gap: 0 30px !important;
  }

  .cate-colL {
    width: 260px !important;
  }

  .cate-colR {
    width: 700px !important;
  }

  .cate-colR__btn dd,
  .cate-colR__btn dl,
  .cate-colR__btn dt,
  .cate-colR__btn li,
  .cate-colR__btn ol,
  .cate-colR__btn ul {
    margin-bottom: 20px;
  }

  .cate-colR__btn .btn-list1 {
    gap: 20px;
  }

  .news-post .post-grid-inner {
    gap: 0 30px !important;
  }

  .cate-colL {
    width: 260px !important;
  }

  .cate-colR {
    width: 700px !important;
  }

  .cate-colR__btn dd,
  .cate-colR__btn dl,
  .cate-colR__btn dt,
  .cate-colR__btn li,
  .cate-colR__btn ol,
  .cate-colR__btn ul {
    margin-bottom: 20px;
  }

  .cate-colR__btn .btn-list1 {
    gap: 20px;
  }

  .sec-ele__wrap .sec-msg__wrapL {
    width: 90% !important;
    top: -350px;
  }

  .sec-ele__wrap .sec-msg__wrapR {
    width: 90% !important;
  }

  .sec-ele__wrap .sec-msg__wrapL .ttlen {
    font-size: 60px;
    margin-top: 60px;
  }

  .sec-ele__wrap .sec-msg__wrapL .ttl {
    font-size: 22px;
  }

  .sec-msg__wrap .wrapL__inner2 .wrapL__inner2L {
    max-width: 350px;
    width: 100% !important;
    margin: 0 auto 40px;
  }

  .sec-msg__wrap .wrapL__inner2 .wrapL__inner2R {
    max-width: 90%;
    width: 100% !important;
  }

  .sec-msg__wrap .wrapL__inner2 p {
    line-height: 1.875;
  }

  ul.privacy__list {
    margin-top: 1%;
    padding: 3%;
  }

  .nsdcontact table td:first-child {
    max-width: none;
    width: 100% !important;
  }

  .nsdcontact table td:last-child {
    width: 100% !important;
  }

  #wpcf7cpcnf table th,
  #wpcf7cpcnf table td {
    display: block;
    width: 100% !important;
    border-bottom: none;
  }

  #wpcf7cpcnf table th:first-child,
  #wpcf7cpcnf table td:first-child {
    width: 100% !important;
    border-bottom: none;
    padding-bottom: 0;
  }

  #wpcf7cpcnf table th:last-child,
  #wpcf7cpcnf table td:last-child {
    width: 100% !important;
    border-bottom: 1px solid #333;
    padding-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .tablebox table td .must {
    font-size: 12px;
    padding-bottom: 1px;
  }
}

@media screen and (max-width:767px) {
  .mv-section .l-inner97 {
    width: 100%;
    margin: 0 auto;
    margin-top: -60px;
  }

  .tiiki010203__item {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 766px) {
  .sec-message-wrap.bgright .sec-message-ttlen {
    margin-left: 14vw;
  }

  .sec-message-wrap.bgright .sec-message-ttl {
    margin-left: 14vw;
  }

  .sec-message-wrap.bgright .sec-message-Limg {
    width: 90%;
  }

  .sec-message-wrap.bgright .sec-message-Rarea .sec-message-Rarea__txt,
  .sec-message-wrap.bgright .sec-message-Rarea .sec-message-Rarea__txt2,
  .sec-message-wrap.bgright .sec-message-Rarea .sec-message-Rarea__txt3 {
    width: 100%;
  }
}

@media all and (max-width: 640px) {
  /*
  #visual::after{
  	height: 30px;
  	background-image: url(../img/visual_bg_sp.png);
  }
  #visual .copy{
  	transform: translateY(50%) translateX(-50%);
  	left: 50%;
  	top: calc(50% + 40px);
  }*/
}

@media print, screen and (max-width: 600px) {
  .renew .subpg-label__wrapL {
    margin-top: 30px;
  }

  .renew .subpg-label__wrapL h2 {
    font-size: 30px;
  }
}

@media print, screen and (max-width: 540px) {
  .tablebox table td {
    font-size: 14px;
  }

  .news-post-day li .elementor-post-info__terms-list-item {
    font-size: 10px;
  }

  .sec-rec__wrap .elementor-element-populated {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .sec-rec__wrapL {
    width: 95% !important;
    height: auto;
  }

  .sec-rec__wrapR {
    width: 95% !important;
  }

  .sec-rec__wrapL__btn {
    margin-bottom: 30px;
  }

  .sec-rec__wrap .elementor-element-populated {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .sec-rec__wrapL {
    width: 95% !important;
    height: auto;
  }

  .sec-rec__wrapR {
    width: 95% !important;
  }

  .sec-rec__wrapL__btn {
    margin-bottom: 30px;
  }

  .sec-news-fbL,
  .sec-news-fbR {
    width: 100% !important;
  }

  .sec-ele__wrap .elementor-element-populated {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .sec-ele__wrap .sec-msg__wrapR {
    width: 95% !important;
  }

  #wpcf7cpcnf table th,
  #wpcf7cpcnf table td {
    font-size: 14px;
  }
}

@media print, screen and (max-width: 480px) {
  .subpg-label__wrap {
    margin-top: 11px;
  }

  .subpg-label__wrapL {
    padding: 10px 2em 10px 8%;
  }

  .subpg-label__wrapL h2 {
    font-size: 30px;
  }

  .subpg-label__wrapL h2 span {
    font-size: 14px;
  }

  .renew .subpg-label__wrapL {
    margin-top: 40px;
  }

  .renew .subpg-label__wrapL {
    padding: 10px 1em 10px 5%;
  }

  .renew .subpg-label__wrapL h2 {
    font-size: 20px;
  }

  .renew .subpg-label__wrapL h2 span {
    font-size: 12px;
  }

  .btn_arrow2 {
    line-height: 1.7142857143;
    font-size: 16px;
  }

  .report-list .elementor-icon-list-items li a {
    line-height: 1.7142857143;
    font-size: 14px;
  }

  .footer-tel a {
    font-size: 27px;
  }

  .l-inner {
    max-width: 95%;
  }

  .l-inner2 {
    max-width: 95%;
  }

  .under-pg-label {
    padding: 10px 2em 10px 7%;
  }

  .under-pg-label.renewlabel {
    padding: 10px 1em 10px 6%;
  }

  .news-post .post-grid-inner {
    gap: 0 20px !important;
  }

  .cate-colL {
    width: 100% !important;
  }

  .cate-colR {
    width: 100% !important;
  }

  .cate-colR__btn .btn-list1 li a {
    font-size: 14px;
  }

  .news-post .post-grid-inner {
    gap: 0 20px !important;
  }

  .cate-colL {
    width: 100% !important;
  }

  .cate-colR {
    width: 100% !important;
  }

  .cate-colR__btn .btn-list1 li a {
    font-size: 14px;
  }

  .news-post .post-grid-inner {
    gap: 0 20px !important;
  }

  .cate-colL {
    width: 100% !important;
  }

  .cate-colR {
    width: 100% !important;
  }

  .cate-colR__btn .btn-list1 li a {
    font-size: 14px;
  }

  .sec-ele__wrap .sec-msg__wrapL .ttlen {
    font-size: 36px;
    margin-top: 40px;
    text-align: center;
  }

  .sec-ele__wrap .sec-msg__wrapL .ttl {
    font-size: 20px;
    text-align: center;
  }

  .sec-ele__wrap .sec-msg__wrapL .txt {
    line-height: 1.7142857143;
    font-size: 14px;
  }

  .sec-ele__wrap .sec-msg__wrapL .btn {
    line-height: 1.7142857143;
    font-size: 16px;
  }

  .sec-msg__wrap .wrapL__inner2 .wrapL__inner2L {
    width: 90% !important;
    margin: 0 5% 40px;
  }

  .sec-msg__wrap .wrapL__inner2 p {
    font-size: 14px;
  }

  .sec-msg__wrap .wrapL__inner2 .msg2 {
    text-align: center;
  }

  .sec-msg__wrap .wrapL__inner2 .msg3 {
    text-align: center;
  }
}

@media screen and (max-width: 375px) {
  .header__inner > a {
    width: 60%;
  }
}

@media screen and (max-width: 340px) {
  .footer-tel2 .elementor-button-text {
    font-size: 37px !important;
  }

  .ft-logo h2 {
    font-size: 27px !important;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1024px) {
  ul.privacy__list {
    padding: 4%;
  }
}

@media (hover: hover) {
  .global__nav-link:hover::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #3C6086;
  }

  .info-post .btn-right-line:hover,
  .topicks-item .btn-right-line:hover,
  .news-fb__Lnews__list .btn-right-line:hover {
    background-size: 100% 1px;
  }
}
/*# sourceMappingURL=style.css.map */