@charset "UTF-8";
@font-face {
  font-family: "Noto Sans JP";
  font-display: swap;
  src: url("../fonts/NotoSansJP-VariableFont_wght.woff2") format("woff2"), url("../fonts/NotoSansJP-VariableFont_wght.woff") format("woff"), url("../fonts/NotoSansJP-VariableFont_wght.eot") format("eot"), url("../fonts/NotoSansJP-VariableFont_wght.ttf") format("truetype");
}
/******* base style *******/
.w_base {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}

.contact-btn, .contact-btn-white {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  padding: 0.5em 1em;
  border-radius: 100vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.contact-btn {
  background: #348eee;
  color: white;
  border-bottom: solid 3px #2666aa;
}

.contact-btn-white {
  background: white;
  color: #348eee;
  border-bottom: solid 3px white;
}

.contact-btn:hover {
  opacity: 0.8;
}

.contact-btn-white:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

/******* base style end *******/
/******* loading *******/
/******* loading end *******/
/******* header *******/
header {
  position: fixed;
  z-index: 10000;
  width: 100%;
  top: 0;
}

.header-wrapper {
  border-radius: 100vh;
  max-width: 1400px;
  margin: auto;
  margin-top: 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.headerColorScroll {
  background: white;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.6rem 2em;
}

.hd-logo img {
  display: block;
  width: auto;
  height: 45px;
}

.gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.15em;
  font-weight: 500;
}
.gnav ul li {
  margin-right: 2em;
}
.gnav ul li a {
  color: #000;
  text-decoration: none;
}
.gnav ul li a:hover {
  text-decoration: underline;
}
.gnav ul li a.other-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.gnav ul li:last-child {
  margin-right: 0;
}
.gnav ul li.gnav-contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #348eee;
  color: white;
  padding: 0.5em 1em;
  border-radius: 100vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  -webkit-box-shadow: 1px 3px #2666aa;
          box-shadow: 1px 3px #2666aa;
}
.gnav ul li.gnav-tell {
  margin-right: 1.3em;
}
.gnav ul li.gnav-tell a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #ee8b34;
  color: white;
  padding: 0.5em 1em;
  border-radius: 100vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  -webkit-box-shadow: 1px 3px #bf6312;
          box-shadow: 1px 3px #bf6312;
}

header .gnav .gnav-contact .material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 40;
}
header .gnav .gnav-contact:hover {
  opacity: 0.9;
}

.hidden {
  display: none;
}

@media screen and (min-width: 1200px) {
  .sp-nav, .burger-wrapper {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  header .gnav {
    display: none;
  }
  .headerColorScroll {
    background-color: initial;
  }
  .sp-nav {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    height: 100vh;
    width: 100%;
    overflow: scroll;
    background-color: rgba(255, 255, 255, 0.93);
    z-index: 999;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .sp-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-top: 50px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 80vh;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .sp-nav ul li {
    text-align: center;
    font-size: 1.3em;
  }
  .sp-nav ul li a {
    display: block;
    width: 100%;
    text-align: center;
    color: #000;
    text-decoration: none;
  }
  .sp-nav .other-link {
    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;
  }
  .sp-nav li.gnav-tell a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: auto;
    background: #ee8b34;
    color: white;
    padding: 0.5em 1em;
    border-radius: 100vh;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    -webkit-box-shadow: 1px 3px #bf6312;
            box-shadow: 1px 3px #bf6312;
  }
  .sp-nav .gnav-contact a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: auto;
    background: #348eee;
    color: white;
    padding: 0.5em 1em;
    border-radius: 100vh;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    -webkit-box-shadow: 1px 3px #2666aa;
            box-shadow: 1px 3px #2666aa;
  }
  .spNavisActive {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .burger-wrapper {
    cursor: pointer;
    margin: auto;
    width: 40px;
    height: 32px;
    position: fixed;
    top: 10px;
    right: 20px;
    z-index: 1000;
  }
}
@media screen and (max-width: 1200px) and (min-width: 1280px) {
  .burger-wrapper {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .burger-wrapper .hamburger {
    background: black;
    width: 40px;
    height: 4px;
    position: relative;
    -webkit-transition: background 10ms 300ms ease;
    transition: background 10ms 300ms ease;
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
  }
  .burger-wrapper .hamburger:before, .burger-wrapper .hamburger:after {
    -webkit-transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
    position: absolute;
    background: black;
    width: 40px;
    height: 4px;
    content: "";
  }
  .burger-wrapper .hamburger:before {
    top: -12px;
  }
  .burger-wrapper .hamburger:after {
    top: 12px;
  }
  .menu-trigger:checked ~ .burger-wrapper .hamburger {
    background: transparent;
  }
  .menu-trigger:checked ~ .burger-wrapper .hamburger:after, .menu-trigger:checked ~ .burger-wrapper .hamburger:before {
    -webkit-transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
    top: 0;
  }
  .menu-trigger:checked ~ .burger-wrapper .hamburger:before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .menu-trigger:checked ~ .burger-wrapper .hamburger:after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
/******* header end *******/
/******* firstvisual *******/
.fv-wrapper {
  background-image: url(../images/bg-mainvisual.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 100px;
}
.fv-wrapper .slider {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 60px;
}
.fv-wrapper .slides {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  width: 100%;
}
.fv-wrapper .slide {
  min-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.fv-wrapper .slide img {
  width: 100%;
  display: block;
}

.nav-button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  width: 8vw;
  height: 8vw;
  min-width: 40px;
  min-height: 40px;
  max-width: 80px;
  max-height: 80px;
  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; /* 横中央揃え */
  cursor: pointer;
  font-size: 1.2em 3vw 2em;
  z-index: 10;
  border-radius: 50%;
  padding: 0;
}

.nav-button:hover {
  background-color: rgb(255, 255, 255);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/******* firstvisual end *******/
/******* onayami-inner *******/
.onayami-wrapper {
  background-color: #e1edf5;
}
.onayami-wrapper .onayami-inner {
  padding-top: 100px;
}
.onayami-wrapper .onayami-inner h2 {
  color: #202020;
  font-size: clamp(1rem, 3vw, 2rem);
  text-align: center;
  margin-bottom: 0.5em;
}
.onayami-wrapper .onayami-inner h2 span {
  color: #101d74;
  font-size: 1.5em;
  margin: 0 5px;
}
.onayami-wrapper .onayami-kaiketsu {
  padding: 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.onayami-wrapper .onayami-kaiketsu h3.onayami-kaiketsu-lead_sub {
  background-color: white;
  text-align: center;
  font-size: 1.2em;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.5em 1em;
}
.onayami-wrapper .onayami-kaiketsu p.onayami-kaiketsu-lead {
  color: #101d74;
  font-size: 2em;
  font-weight: 700;
  margin: 1em auto;
}
.onayami-wrapper .onayami-kaiketsu .onayami-kouka h3 {
  text-align: center;
  margin-bottom: 1rem;
}

.onayami-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.onayami-box .onayami-item {
  width: 30%;
}
.onayami-box .onayami-item p.onayami-p1 {
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 0.5em 0.5em;
  font-size: clamp(1em, 1.05vw, 1.3em);
  margin-bottom: 1rem;
  font-weight: 750;
}
.onayami-box .onayami-item p.onayami-p1 span {
  font-size: 1.15em;
  color: #101d74;
}
.onayami-box .onayami-item p.onayami-p2 {
  text-align: center;
}
.onayami-box .onayami-item p.onayami-p2::after {
  content: "》";
  font-size: 2em;
  display: block;
  text-align: center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.onayami-box .onayami-item p.onayami-solution {
  background: #101d74;
  color: #fff;
  font-size: 1.5em;
  font-weight: 800;
  position: relative;
  gap: 0.3rem;
  padding: 1rem calc(1rem + 50px);
  border-radius: 10px;
  text-align: center;
}
.onayami-box .onayami-item p.onayami-solution span {
  color: #fffb00;
  display: inline;
}
.onayami-box .onayami-item p.onayami-solution::before {
  content: "";
  display: block;
  position: absolute;
  left: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  aspect-ratio: 1/1;
  background-image: url(../images/kaiketsu-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.onayami-box .onayami-item figure {
  overflow: hidden;
  width: 80%;
  aspect-ratio: 1/1;
  border-radius: 100vh;
  margin: auto;
  margin-bottom: 1rem;
}
.onayami-box .onayami-item figure img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .onayami-kaiketsu {
    width: 100%;
    padding: 0 1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow-x: hidden;
  }
  .onayami-kaiketsu h3, .onayami-kaiketsu p {
    text-align: center;
    word-break: break-word;
  }
  .onayami-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 50px;
  }
  .onayami-box .onayami-item {
    width: 100%;
    max-width: 700px;
  }
  .onayami-box .onayami-syokuin {
    max-width: 300px;
  }
  .onayami-kouka img {
    width: 100%;
  }
}
/******* onayami-inner end *******/
/******* features-wrapper *******/
.features-wrapper {
  padding: 0 0 30px;
}
.features-wrapper h2 {
  color: #101d74;
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 1em;
  text-align: center;
}

.features-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 100px;
}
.features-box .feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 100px;
}
.features-box .feature-item-text {
  width: 45%;
  position: relative;
}
.features-box .feature-item-text h3 {
  font-size: clamp(1.2em, 1.9vw, 1.9rem);
  display: inline-block;
}
.features-box .feature-item-text p {
  margin-top: 3em;
  line-height: 2em;
}
.features-box .feature-item-image {
  width: 50%;
}
.features-box .feature-item-image img {
  width: 100%;
  height: auto;
}
.features-box .feature-item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.features-box .feature-item .feature-item-text::before {
  font-family: "Oxanium", serif;
  position: absolute;
  color: #348eee;
  font-size: 3em;
  top: -1.3em;
}
.features-box .feature-item:nth-child(1) .feature-item-text::before {
  content: "01";
}
.features-box .feature-item:nth-child(2) .feature-item-text::before {
  content: "02";
}
.features-box .feature-item:nth-child(3) .feature-item-text::before {
  content: "03";
}
.features-box .feature-item:nth-child(4) .feature-item-text::before {
  content: "04";
}
.features-box .ityped-cursor {
  font-size: 1.5rem;
  opacity: 1;
  -webkit-animation: blink 0.5s;
          animation: blink 0.5s;
  -webkit-animation-timing-function: steps(2, end);
          animation-timing-function: steps(2, end);
  -webkit-animation-iteration-count: 4;
          animation-iteration-count: 4;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes blink {
  100% {
    opacity: 0;
  }
}

@keyframes blink {
  100% {
    opacity: 0;
  }
}
@media screen and (max-width: 1200px) {
  .features-box .feature-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .features-box .feature-item-text {
    width: 100%;
    margin-bottom: 2em;
  }
  .features-box .feature-item-image {
    width: 100%;
    max-width: 700px;
  }
}
/******* features-inner end *******/
/******* demonstration-wrapper *******/
.demonstration-wrapper {
  text-align: center;
  margin-bottom: 100px;
}
.demonstration-wrapper .demonstration-inner {
  margin-bottom: 40px;
}
.demonstration-wrapper .demonstration-inner h2 {
  color: #4a90e2;
  font-size: 2em;
  margin-bottom: 20px;
}
.demonstration-wrapper .demonstration-inner p {
  margin-bottom: 40px;
  font-size: 1.2em;
}
.demonstration-wrapper .demonstrations-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.demonstration-wrapper .demonstrations-box .demonstration-box {
  text-align: center;
}
.demonstration-wrapper .demonstrations-box .demonstration-box img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.demonstration-wrapper .demonstrations-box .demonstration-box h4 {
  color: #4a90e2;
  margin-bottom: 10px;
  text-align: left;
}
.demonstration-wrapper .demonstrations-box .demonstration-box p {
  font-size: 0.9em;
  line-height: 1.6;
  text-align: left;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .demonstration-inner span {
    display: block;
  }
  .demonstrations-box {
    display: block !important; /* flexやgridを無効化 */
  }
  .demonstrations-box .demonstration-box {
    width: 100% !important;
    margin-bottom: 20px;
  }
}
/******* demonstration-wrapper end *******/
/******* jirei-wrapper *******/
.jirei-inner {
  margin-bottom: 30px;
}
.jirei-inner .jirei-text-box {
  position: relative;
  text-align: center;
}
.jirei-inner .jirei-text-box h2 {
  color: #101d74;
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 1em;
  padding-left: 1em;
  height: 3rem;
}

.swiper {
  width: 100%;
  overflow: visible;
  margin-bottom: 50px;
}

.card {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  position: relative;
  text-decoration: none !important;
}
.card:before {
  content: "";
  background: url(../images/link.png) center center/contain no-repeat;
  position: absolute;
  display: block;
  width: 20px;
  aspect-ratio: 1/1;
  top: 10px;
  right: 10px;
}

a {
  font-weight: bold;
  font-size: 1em;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.card img {
  width: 40%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 200px;
}

.card-text {
  padding: 20px;
  width: 60%;
}

.card-text h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.card-text p {
  font-size: 14px;
  color: #555;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  width: 50px; /* ボタンのサイズ */
  height: 50px;
  background: rgba(0, 0, 0, 0.6); /* 背景色（黒透明） */
  border-radius: 50%; /* 丸くする */
  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; /* 矢印の色 */
  font-size: 20px; /* 矢印のサイズ */
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.swiper-button-next {
  right: 10%;
}

.swiper-button-prev {
  left: 10%;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.8);
}

.swiper-button-next::before,
.swiper-button-prev::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.swiper-button-next::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); /* → 向き */
}

.swiper-button-prev::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg); /* ← 向き */
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .card img {
    width: 100%;
    height: auto;
  }
  .card-text {
    width: 100%;
  }
}
/******* jirei-wrapper end *******/
/******* onayami-inner *******/
.table-wrapper {
  padding: 100px 0;
}

.table-inner h2 {
  color: #101d74;
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 1em;
  text-align: center;
  margin-bottom: 3em;
}

.table-table {
  width: 100%;
  font-size: 1.1em;
  min-width: 800px;
}
.table-table tr {
  border-bottom: solid 1px #dbdbdb;
}
.table-table td, .table-table th {
  padding: 20px 0;
  text-align: center;
}
.table-table th:nth-child(4) {
  background: #101d74;
  border-radius: 20px 20px 0 0;
  color: white;
}
.table-table td:nth-child(4) {
  background: #d5eeff;
  font-weight: 800;
  color: #101d74;
}

/******* onayami-inner end *******/
/******* process-inner *******/
.process h2 {
  background-color: #003f8e;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  font-size: 1.5rem;
  font-weight: bold;
}

.process p {
  text-align: center;
  margin-top: 40px;
  color: #666;
}

.steps-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  padding: 40px 20px;
}

.step-box {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 280px;
          flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.step-box img {
  max-width: 100%;
  height: auto;
}

.step-title {
  color: #003f8e;
  font-size: 1.2rem;
  margin-top: 15px;
  font-weight: bold;
}

.step-number {
  color: #003f8e;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.step-description {
  font-size: 0.9rem;
  font-weight: bold;
  margin: 15px 0;
  line-height: 1.6;
}

.arrow {
  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;
}

.arrow img {
  width: 40px;
  height: auto;
}

@media (max-width: 768px) {
  .arrow {
    display: none; /* スマホ表示時は非表示に */
  }
}
@media (max-width: 768px) {
  .steps-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
/******* process-inner end *******/
/******* siryouseikyu-inner *******/
.siryouseikyu-wrapper {
  background-color: #101d74;
  padding: 100px 0;
  color: white;
}

.siryouseikyu-inner {
  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;
}
.siryouseikyu-inner .siryouseikyu-img {
  width: 40%;
  max-width: 560px;
}
.siryouseikyu-inner .siryouseikyu-img img {
  width: 100%;
  -webkit-box-shadow: 0px 1px 20px 5px #101d74;
          box-shadow: 0px 1px 20px 5px #101d74;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.siryouseikyu-inner .thumbFade_done img {
  -webkit-animation: thumbnail 4s forwards;
          animation: thumbnail 4s forwards;
}
.siryouseikyu-inner .siryouseikyu-text {
  width: 55%;
}
.siryouseikyu-inner .siryouseikyu-text p {
  text-align: center;
}
.siryouseikyu-inner .siryouseikyu-text h2 {
  text-align: center;
  font-size: clamp(1.3em, 2vw, 2em);
}
.siryouseikyu-inner .siryouseikyu-text ul {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  list-style: square;
}

@-webkit-keyframes thumbnail {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-box-shadow: 0px 1px 20px 5px #ffffff;
            box-shadow: 0px 1px 20px 5px #ffffff;
  }
}

@keyframes thumbnail {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-box-shadow: 0px 1px 20px 5px #ffffff;
            box-shadow: 0px 1px 20px 5px #ffffff;
  }
}
@media screen and (max-width: 1200px) {
  .siryouseikyu-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .siryouseikyu-inner .siryouseikyu-img {
    width: 100%;
    max-width: 500px;
  }
  .siryouseikyu-inner .siryouseikyu-text {
    width: 100%;
    margin-top: 50px;
  }
}
/******* siryouseikyu-inner end *******/
/******* movie-inner  *******/
section.movie-wrapper {
  padding: 100px 0;
  background-image: url(../images/movie-bg.jpg);
  background-size: cover;
  background-position: center;
}
section.movie-wrapper .movie-inner {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
section.movie-wrapper .movie-text {
  width: 45%;
}
section.movie-wrapper .movie-text p {
  text-align: center;
}
section.movie-wrapper .popup-youtube {
  width: 45%;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
section.movie-wrapper .popup-youtube:hover {
  scale: 1.05;
}
section.movie-wrapper .popup-youtube img {
  width: 100%;
}
section.movie-wrapper h2 {
  color: #101d74;
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  section.movie-wrapper .movie-text, section.movie-wrapper .popup-youtube {
    width: 100%;
  }
  section.movie-wrapper .movie-text {
    margin-bottom: 1.5em;
  }
}

/******* movie-inner end *******/
/******* install-inner *******/
.install-inner {
  border-left: solid 20px #101d74;
  padding: 100px 0 100px 50px;
}
.install-inner p.install-p {
  font-size: 1.2em;
}
.install-inner h2 {
  color: #101d74;
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 1em;
}
.install-inner div[class^=step] {
  margin: 100px 0;
}
.install-inner div[class^=step] p.step-icon {
  background-color: #101d74;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  aspect-ratio: 1/1;
  padding: 0.6em;
  color: white;
  font-weight: 700;
  border-radius: 100vh;
  font-size: 1.5em;
}
.install-inner div[class^=step] p.step-icon:before {
  content: "";
  width: 0px;
  height: 5px;
  background-color: #101d74;
  position: absolute;
  top: 50%;
  left: -50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 2s ease;
  transition: 2s ease;
}
.install-inner div[class^=step] p.step-border:before {
  width: 50px;
}
.install-inner div[class^=step] h3 {
  color: #101d74;
  margin: 1em 0;
  font-size: 1.5em;
}
.install-inner .step1 .step1-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.install-inner .step1 .step1-images figure img {
  height: 250px;
}
.install-inner .step1 .step1-images figure figcaption {
  text-align: center;
  margin-top: 1em;
}
.install-inner .step1 .step1-images figure.arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.install-inner .step2 .step2-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.install-inner .step2 .step2-images figure {
  width: 30%;
}
.install-inner .step2 .step2-images figure img {
  width: 100%;
}
.install-inner .step2 .step2-images figure figcaption {
  text-align: center;
  margin-top: 1em;
  border: solid 1px black;
  padding: 0.3em 0;
}
.install-inner .step2 .step2-images figure p {
  text-align: center;
  margin-top: 0.5em;
}
.install-inner .step3 figure {
  max-width: 1000px;
  width: 100%;
  margin: auto;
}
.install-inner .step3 figure img {
  width: 100%;
}
.install-inner .step3 figure figcaption {
  text-align: center;
  margin-top: 0.5em;
  font-size: 1.2em;
  font-weight: 700;
}

@media screen and (max-width: 1200px) {
  .install-inner .step1 .step1-images figure img {
    width: 100%;
    height: auto;
  }
  .install-inner .step2 .step2-images {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .install-inner .step2 .step2-images figure {
    width: 100%;
    max-width: 700px;
  }
}
/******* install-inner end*******/
/******* contact-inner *******/
.contact-wrapper {
  background-color: #e1edf5;
  padding: 100px 0;
}
.contact-wrapper h2 {
  color: #101d74;
  font-size: 2em;
  font-weight: 700;
  text-align: center;
}
.contact-wrapper p.contact-inner-lead-p1 {
  font-weight: 700;
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 1em;
}
.contact-wrapper p.contact-inner-lead-p2 {
  text-align: center;
}

.contact-form-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
}
.contact-form-area .contact-text {
  width: 40%;
}
.contact-form-area .contact-text img {
  width: 100%;
  border-radius: 20px;
}
.contact-form-area .contact-text h4 {
  color: #00839f;
  text-align: center;
  font-size: clamp(1em, 1.1vw, 1.5em);
  margin-top: 15px;
}
.contact-form-area .contact-text ul {
  display: block;
  list-style: "▶ ";
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  margin-top: 7px;
}
.contact-form-area .contact-text ul li {
  padding-left: 0.5em;
}
.contact-form-area .contact-text ul li::marker {
  font-size: 0.8em;
}
.contact-form-area .contact-form {
  width: 50%;
}
.contact-form-area #mailformpro {
  margin: 0;
  padding: 0;
  position: relative;
}
.contact-form-area #mailformpro input {
  font-size: 1.1em;
  padding: 1em;
}

@media screen and (max-width: 1200px) {
  .contact-form-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-form-area .contact-text, .contact-form-area .contact-form {
    width: 100%;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  .contact-form-area .contact-text ul {
    width: 100%;
    margin: 10px 0 0; /* 左右のmarginを0に */
    padding-left: 1em;
  }
  .contact-form-area .contact-text ul li {
    font-size: 14px; /* スマホで文字少し小さめ */
    line-height: 1.6; /* 読みやすい行間 */
  }
}
/* 進捗バーのコンテナ */
.progress-container {
  width: 100%;
  background-color: #f0f0f0;
  height: 15px;
  border-radius: 10px;
  overflow: hidden;
  position: absolute;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: translate(0%, 0px) rotate(90deg);
          transform: translate(0%, 0px) rotate(90deg);
  left: -20px;
}
@media screen and (max-width: 768px) {
  .progress-container {
    left: -10px;
  }
}

/* 進捗バー */
.progress-bar {
  width: 0%;
  height: 100%;
  background-color: #348eee;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}

/******* movie-inner end *******/
/*******information *******/
.infomation-wrapper {
  background: #101d74;
}
.infomation-wrapper .information-innner {
  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;
  padding: 50px 0;
}
.infomation-wrapper .information-box-1 {
  width: 20%;
}
.infomation-wrapper .information-box-2 {
  width: 60%;
}
.infomation-wrapper .information-box-3 {
  width: 100%;
}
.infomation-wrapper .information-box-1 figure img {
  width: 100%;
  max-width: 300px;
}
.infomation-wrapper .information-box-1 .jpx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin: 20px 0 30px;
}
.infomation-wrapper .information-box-1 .jpx img {
  width: 75px;
  height: auto;
}
.infomation-wrapper .information-box-1 .jpx small {
  color: white;
  display: block;
}
.infomation-wrapper .information-box-1 a {
  color: #fff;
  text-align: center;
  width: 100%;
  margin: 1em auto;
  border-radius: 100vh;
  border: solid 1px white;
  display: block;
  padding: 0.5em 0;
}
.infomation-wrapper .information-box-2 table {
  color: white;
  width: 100%;
}
.infomation-wrapper .information-box-2 table tr th {
  border-bottom: solid 1px white;
  margin-bottom: 1em;
}
.infomation-wrapper .information-box-2 table td {
  padding-top: 1em;
  vertical-align: baseline;
}
.infomation-wrapper .information-box-3 {
  background-color: white;
  padding: 30px 0;
  margin-top: 30px;
  border-radius: 10px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  width: 100%;
}
.infomation-wrapper .information-box-3 p.demo-intro {
  color: #101d74;
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
}
.infomation-wrapper .information-box-3 h3 {
  font-size: 1.5em;
  text-align: center;
  margin-bottom: 1em;
}
.infomation-wrapper .information-box-3 p.info-text {
  text-align: center;
  margin-bottom: 1em;
}
.infomation-wrapper .information-box-3 .demoroom {
  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;
}
.infomation-wrapper .information-box-3 .demoroom figure {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 45%;
          flex: 1 1 45%;
  width: 40%;
}
.infomation-wrapper .information-box-3 .demoroom figure img {
  width: 100%;
  height: auto;
}
.infomation-wrapper .information-box-3 .demoroom .demo-right {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 45%;
          flex: 1 1 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px; /* コンテンツ間スペース */
}
.infomation-wrapper .information-box-3 .demoroom .demo-right .link-group {
  margin: 20px;
}
.infomation-wrapper .information-box-3 .demoroom .demo-right .link-group a {
  display: inline-block;
  font-weight: bold;
  color: #007BFF;
  text-decoration: underline;
}
.infomation-wrapper .information-box-3 .demoroom .demo-right .link-group p {
  margin: 5px 0 0;
}
@media screen and (max-width: 768px) {
  .infomation-wrapper .information-box-3 .demoroom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .infomation-wrapper .information-box-3 .demoroom figure,
  .infomation-wrapper .information-box-3 .demoroom p {
    max-width: 100%;
    width: 90%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 1200px) {
  .infomation-wrapper .information-innner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .infomation-wrapper .information-box-1 {
    width: 100%;
  }
  .infomation-wrapper .information-box-2 {
    width: 100%;
  }
  .infomation-wrapper .information-box-3 {
    width: 100%;
  }
}
/*******information end*******/
/******* footer  *******/
.ft_contact_wrap {
  padding: 50px 0 69px 0;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(49, 129, 180, 0.3215686275)), to(rgba(49, 129, 180, 0.0901960784)));
  background: linear-gradient(rgba(49, 129, 180, 0.3215686275), rgba(49, 129, 180, 0.0901960784));
}

.ft_content h4 {
  color: #101d74;
  font-size: 1.5rem;
  width: 300px;
  text-align: center;
  margin: 0 auto 10px;
  padding-bottom: 0.5rem;
  border-bottom: solid 1px #101d74;
}
.ft_content p {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.ft_content .ft_content_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.ft_content .ft_content_box .ft_content_item {
  width: 45%;
  max-width: 500px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 0;
  border-radius: 10px;
}
.ft_content .ft_content_box .ft_content_item p {
  text-align: center;
  font-weight: bold;
}
.ft_content .ft_content_box .ft_content_item figure {
  width: 100%;
}
.ft_content .ft_content_box .ft_content_item figure img {
  display: block;
  width: auto;
  margin: auto;
}
.ft_content .ft_content_box .ft_content_item a[href^="tel:"] {
  font-size: 30px;
  color: #101d74;
  margin: auto;
}
.ft_content .ft_content_box .ft_content_item small {
  display: block;
  text-align: center;
  font-size: 1rem;
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  margin-bottom: 0;
  font-size: 10px;
  text-align: center;
  background-color: #101d74;
  font-size: 0.8rem;
}
footer ul {
  padding: 50px 0;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  list-style-type: none;
  min-height: 1.5em;
  max-width: 70%;
  width: 100%;
}
footer ul li a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
footer ul li a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .ft_contact_wrap {
    padding: 80px 0 50px 0;
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(49, 129, 180, 0.3215686275)), to(rgba(49, 129, 180, 0.0901960784)));
    background: linear-gradient(rgba(49, 129, 180, 0.3215686275), rgba(49, 129, 180, 0.0901960784));
  }
  .ft_content h4 {
    color: #101d74;
    font-size: 1.5rem;
    max-width: 300px;
    width: 90%;
    text-align: center;
    margin: 0 auto 10px;
    padding-bottom: 0.5rem;
    border-bottom: solid 1px #101d74;
  }
  .ft_content p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  .ft_content .ft_content_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .ft_content .ft_content_box .ft_content_item {
    width: 90%;
    max-width: 500px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 0;
    border-radius: 10px;
    margin-bottom: 2rem;
  }
  .ft_content .ft_content_box .ft_content_item p {
    text-align: center;
    font-weight: bold;
  }
  .ft_content .ft_content_box .ft_content_item figure {
    width: 100%;
  }
  .ft_content .ft_content_box .ft_content_item figure img {
    width: auto;
    margin: auto;
  }
  .ft_content .ft_content_box .ft_content_item a[href^="tel:"] {
    font-size: 30px;
    color: #101d74;
    margin: auto;
  }
  .ft_content .ft_content_box .ft_content_item small {
    display: block;
    text-align: center;
    font-size: 1rem;
  }
}
/******* footer end *******/
/******* thanks page  *******/
.thanks-wrapper {
  margin: 164px 0 100px 0;
}
.thanks-wrapper h1 {
  color: #101d74;
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 1em;
  text-align: center;
}
.thanks-wrapper .hearDL {
  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;
  border-radius: 100vh;
  max-width: 350px;
  width: 100%;
  padding: 0.5em 1em;
  margin: 30px auto;
  background: #348eee;
  -webkit-box-shadow: 1px 3px #2666aa;
          box-shadow: 1px 3px #2666aa;
  color: white;
  text-decoration: none;
  font-weight: 600;
  gap: 0.5rem;
}

/******* thanks page end *******/
/******* top AeyeBOX *******/
.banner-section {
  padding: 2rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.banner-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.banner-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(50% - 1rem);
          flex: 1 1 calc(50% - 1rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
}

.banner-item img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  -webkit-transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transition: transform 0.4s ease, box-shadow 0.4s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.banner-item:hover img {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.banner-button {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #2d3e8c;
  color: white;
  padding: 1rem;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
}

.banner-button:hover {
  background-color: #1f2d66;
}

@media screen and (max-width: 768px) {
  .banner-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
/**
#aeyebox{
  margin: 80px auto;

  img.aeyeboxlogo{
    display: block;
    margin: 50px auto 10px auto;
    width: 90%;
    max-width: 300px;
  }
  h2{
    text-align: center;
    margin-bottom: 30px;
    color: $accentColor;
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 1em;
    @include tablet_under(){
      font-size: 1em;
    }
  }
  a.aeyebox-bnr{
    display: block;
    img{
      width: 90%;
      max-width: 1080px;
      transition: 0.3s;
    }
  }
  a.aeyebox-bnr:hover{
    opacity: 0.7;
  }
}
**/
/******* top AeyeBOX end *******//*# sourceMappingURL=style-test.css.map */