@charset "UTF-8";

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #333;
  background: #fff;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  padding-top: 96px; /* ナビバーの高さ分の余白を確保 */
}

img {
  max-width: 100%;
}

a,
a:visited {
  color: inherit;
  border: medium none;
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

.show_pc {
  display: block;
}

.show_sp {
  display: none;
}

.wrapper {
  position: relative;
  width: 100%;
  min-height: 100%;
}

.logo {
  width: auto;
  height: 100px;
  display: inline-block; 
  vertical-align: middle; 
  position: relative;
  top: 24px;
}

@media (max-width: 768px) { 
  .logo {
    height: auto;
    max-height: 63px;
    width: auto;
    position: relative;
    top: 15px;
  }
}

@media (max-width: 450px) { 
  .logo {
    height: auto;
    max-height: 50px;
    width: auto;
    position: relative;
    top: 12px;
  }
}

@media (max-width: 375px) { 
  .logo {
    height: auto;
    max-height: 45px;
    width: auto;
    position: relative;
    top: 10px;
  }
}

.contents {
  margin: 0 auto;
  max-width: 1000px;
}

.contents_inner {
  margin: 0 auto;
  max-width: 960px;
}

@media screen and (max-width: 850px){
  body{
    padding-top: 84px;
  }
}

@media screen and (max-width: 768px) {
  body {
    min-width: 100%;
  }

  .show_pc {
    display: none;
  }
  .show_sp {
    display: block;
  }

  .contents {
    margin: 0 auto;
    width: 100%;
  }

  .contents_inner {
    width: 92%;
  }
}


/* navbar
---------------------------------------------------------------- */

.navbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: white;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  font-size: 20px;
  text-decoration: none;
  color: black;
  padding: 12px 8px;
  display: block;
  transition: background 0.3s, color 0.3s;
}

.nav-menu li a:hover {
  background-color: #f0f0f0;
  border-radius: 4px;
}

.nav-menu .contact-btn {
  background-color: #33b740;
  color: white !important;
  padding: 20px 20px;
  box-shadow: 0 2px 5px rgba(0, 123, 255, 0.4);
  transition: background-color 0.3s, box-shadow 0.3s;
  font-weight: bold;
}

.nav-menu .contact-btn-theme {
  background-color: #337AB7;
  color: white !important;
  padding: 20px 20px;
  box-shadow: 0 2px 5px rgba(0, 123, 255, 0.4);
  transition: background-color 0.3s, box-shadow 0.3s;
  font-weight: bold;
}

.nav-menu .contact-btn:hover {
  background-color: #137a1d;;
  box-shadow: 0 4px 10px rgba(0, 86, 179, 0.5);
}

.nav-menu .contact-btn-theme:hover {
  background-color: #245885;
  box-shadow: 0 4px 10px rgba(0, 86, 179, 0.5);
}

.navbar-cta {
  display: none;
  gap: 10px;
  align-items: center;
}

.navbar-cta .contact-btn {
  background-color: #33b740;
  color: white !important;
  padding: 12px 20px;
  box-shadow: 0 2px 5px rgba(0, 123, 255, 0.4);
  transition: background-color 0.3s, box-shadow 0.3s;
  font-weight: bold;
}

.navbar-cta .contact-btn-theme {
  background-color: #337AB7;
  color: white !important;
  padding: 20px 20px;
  box-shadow: 0 2px 5px rgba(0, 123, 255, 0.4);
  transition: background-color 0.3s, box-shadow 0.3s;
  font-weight: bold;
}

.navbar-cta .contact-btn:hover  {
  background-color: #137a1d;;
  box-shadow: 0 4px 10px rgba(0, 86, 179, 0.5);
}

.nav_logo {
  width: 300px;
  margin-right: auto; 
}

/* ハンバーガーアイコン */
.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 24px;
  cursor: pointer;
  margin-left: 10px;
}

.hamburger span {
  display: block;
  height: 3px;
  background: black;
  transition: 0.3s ease;
  border-radius: 1px;
}

.menu-toggle:checked + .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-toggle:checked + .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* モバイル対応 */
@media (max-width: 850px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .nav-menu li a {
    padding: 12px 20px;
  }

  .hamburger {
    display: flex;
  }

  /* チェックが入ってるときだけ表示 */
  .menu-toggle:checked + .hamburger + .nav-menu {
    display: flex;
  }

  .nav_logo {
    width: 250px;
  }

  .navbar-cta {
    display: flex;
  }

  .nav-menu .contact-btn .contact-btn-theme {
    padding: 12px 20px;
  }
}

@media (max-width: 540px) {
  .navbar-cta {
    display: none;
  }

}

/* main
---------------------------------------------------------------- */

/* キャンペーンバナー */
div.campaign{
  background-color: #337ab7;background-image: radial-gradient(at 26% 77%, hsla(332, 85%, 66%, 1) 0, hsla(332, 85%, 66%, 0) 50%),radial-gradient(at 17% 93%, hsla(212, 89%, 63%, 1) 0, hsla(212, 89%, 63%, 0) 50%),radial-gradient(at 23% 10%, hsla(213, 90%, 67%, 1) 0, hsla(213, 90%, 67%, 0) 50%);
  text-align: center;
  padding: 1rem 0;
  color: #fff;
  font-weight: 900;
  box-shadow: inset 0 0 clamp(0rem, 2vw, 1rem) rgba(0, 0, 0, .3);
  margin: 0 0 clamp(0rem, 3vw, 2rem) 0;
}
div.campaign_line{ background: red; margin: 0 auto; max-width: 660px;}
.campaign_line p{font-size: 1.6rem; padding: 0.3rem 0;}
.campaign_copy{font-size: clamp(0.5rem, 4.4vw, 2.8rem); margin: 2.4rem 0;}
.cpBunner_p{background: #fff; color: #337AB7; margin: 0 0.1em; padding: 0 0.2em; border-radius: 0.3em;}
div.campaign_button{
  background: #33b740;
  font-size: 2rem;
  line-height: 1.4;
  padding: 0.3em 0 0.6em 0;
  margin: 0 auto;
  width: 65%;
  border-radius: 0.3em;
  box-shadow: 0 0 0.4em #fff;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.campaign_button:hover{
  background-color: #137a1d;
  box-shadow: 0 0 0.8em #fff;
}
div.campaign_cta{
  display: flex;
  justify-content: center;
}
div.cp_cta_button{
  background: #33b740;
  font-size: clamp(0rem, 4vw, 2rem);
  width: 20rem;
  padding: 1rem 0; margin: clamp(-1rem,-2vw,0rem) clamp(0rem,2vw,1rem) 0 clamp(0rem,2vw,1rem);
  border-radius: clamp(0rem, 1vw, 0.5rem);
  box-shadow: 0 0 0.4em #fff;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
div.cp_cta_button:hover{
  background-color: #137a1d;
  box-shadow: 0 0 0.8em #fff;
}

@media(max-width: 768px){
  div.campaign{padding: 3vw 0;}
  .campaign_line p{font-size: 5vw; padding: 1vw 0;}
  .campaign_copy{font-size: 4.8vw; margin: 4vw 0;}
  div.campaign_button{width: 70vw; font-size: 4.2vw;}
  div.cp_cta_button{width: 80vw;}
}

/*通常CTA*/
section.cta{
  margin: 20rem 0 6rem 0;
  height: 10rem;
  position: relative;
  background: #337AB7;
  box-shadow: inset 0 0 clamp(0rem, 2vw, 1rem) rgba(0, 0, 0, .3);
}
div.cta_wrap{
  max-width: 1000px;
  margin: 0 auto;
}
img.cta_robo_img{
  position: absolute;
  width: 24rem;
  top: -16rem;
  z-index: 1;
}
div.cta_text_shadow{filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, .1));}
div.cta_text{
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -17rem;
  left: 24rem;
  background: #fff;
  clip-path: ellipse(50% 30% at 50% 50%);
  height: 18rem;
  padding: 0 2rem;
  font-size: 1.2rem;
  line-height: 1.4;
}
.cta_text_triangle{
  position: absolute;
  height: 10rem; aspect-ratio: 1/2;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: #fff;
  transform: rotate(-80deg);
  top: -14rem; left: 20rem; 
}
div.cta_button{
  position: relative;
  z-index: 10;
}
div.cta_button_base{
  position: absolute;
  background: #33b740;
  border-radius: 1rem;
  width: clamp(0rem, 44vw, 28rem); height: 5rem;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 0.4em #fff;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.cta_button_base:hover{
  background-color: #137a1d;
  box-shadow: 0 0 0.8em #fff;
}
div.cta_catalog{
  left: 0; top: 2.5rem;
  margin: 0 0 0 clamp(0rem, 3vw, 2rem);
}
div.cta_contact{
  right: 0; top: 2.5rem;
  margin: 0 clamp(0rem, 3vw, 2rem) 0 0;
}
@media(max-width: 768px){
  section.cta{
    height: 32vw;
    margin: 56vw 0 20vw 0;
  }
  img.cta_robo_img{
    width: 50vw;
    top: -34vw;
  }
  div.cta_text{
    top: -52vw;
    left: 36vw;
    height: 40vw;
    padding: 0 6vw;
    font-size: 2.8vw;
  }
  .cta_text_triangle{
    height: 16vw;
    transform: rotate(-120deg);
    top: -32vw; left: 38vw; 
  }
  div.cta_button_base{
    width: 80vw; height: 8vw;
    font-size: 4.8vw;
  }
  div.cta_catalog{
    left: 9vw; top: 6vw; margin: 0;
  }
  div.cta_contact{
    left: 9vw; top: 18vw;
  }
}


/* TOP2--------------------------------------------------- */
section.top2{
  margin: 0 auto;
  position: relative;
  max-width: 1000px;
  background-image: url(../images/top2.png);
  background-size: contain;
  aspect-ratio: 2;
  background-repeat: no-repeat;
  background-position: 50% 0;
  z-index: -1;
}
.topLogo{
  position: absolute;
  bottom: clamp(0.05rem, 8vw, 5rem);
  height: clamp(0.05rem, 8vw, 5rem);
}
.topCopy{
  text-shadow: 0 0 0.4em #fff;
}
.tc1{position: absolute; top: clamp(0.05rem, 9vw, 6rem); font-size: clamp(1rem, 21vw, 13rem); font-weight: 900;}
.tc2{position: absolute; font-size: clamp(0.05rem, 4.5vw, 3rem); top: clamp(1rem, 12vw, 7.5rem); left: clamp(1rem, 21vw, 13rem);}
.tc3{position: absolute; font-size: clamp(0.05rem, 4.5vw, 3rem); top: clamp(1rem, 18vw, 11.5rem); left: clamp(1rem, 25vw, 15rem);}
.tc4{position: absolute; font-size: clamp(0.05rem, 4.5vw, 3rem); top: clamp(1rem, 24.5vw, 15.5rem); left: clamp(1rem, 28vw, 17rem);}

.topWrap{position: relative;}
.lgwanTab{
  position: absolute; 
  clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
  background-color: #337AB7;
  height: clamp(0.05rem, 8vw, 5rem);
  aspect-ratio: 5/1;
  padding: clamp(0.05rem, 0.6vw, 0.3rem) 0 0 clamp(0.05rem, 3.2vw, 2em);
  font-weight: 900;
  color: #fff;
  z-index: 5;
  top: 0;
  left: 0;
}
.lgwanTab p{font-size: clamp(0.05rem, 1.3vw, 0.8em); line-height: 1.1;}
.lgwanTab2{font-size: 290%;}
.lgwanTab3{font-size: 110%;}

@media(max-width: 768px){
  section.top2{
    background-image: url(../images/top2_sp.png);
    max-width: 100vw;
    background-position: 0 0;
    aspect-ratio: 1;
  }
  .lgwanTab{
    top: 75vw;
    clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
    height: 20vw; aspect-ratio: 3.5/1;
    background-color: rgba(51, 122, 183, 0.8);
    padding: 1.8vw 0 0 4vw;
  }
  .lgwanTab p{font-size: 3vw;}
  .tc1{font-size: 30vw; top: 5vw; left: 9vw;}
  .tc2{font-size: 7vw; top: 40vw; left: 13.5vw;}
  .tc3{font-size: 7vw; top: 50vw; left: 10vw;}
  .tc4{font-size: 7vw; top: 60vw; left: 3vw;}
}

h2{
  font-size: clamp(1rem , 3.4vw, 2rem);
  line-height: 1.7em;
  margin: 1em 0 1em 0;
}
.h2Emph{
  position: relative;
  color: white;
  font-weight: 900;
  font-size: 160%;
  padding: 0 0.3em;
  margin: 0 0.3em 0 0.3em;
}
.h2Emph::before{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: red;
  transform: skew(20deg,0);
  content:'';
  z-index: -1;
}

h3{
  color: #337AB7;
  font-size: clamp(0.8rem, 4.5vw, 2.8rem);
  margin: 0 0 1em 0;
  line-height: 1.3em;
}

h4{
  color: #337AB7;
  font-size: clamp(0.5rem, 2.3vw, 1.4rem);
  line-height: 1.5em;
}

@media (max-width: 768px){
  h2{font-size: 4.2vw;}
  h4{font-size: 3.4vw;}
}

div.h4Box{
  margin: 2em auto;
}

.max1000{max-width: 1000px; margin: 0 auto;}

.theme{color: #337AB7;}
.red{color: red;}
.green{color: #33b740;}
.note{font-size: clamp(0.5rem, 1.6vw, 1rem);}
.x2{font-size: 200%;}
.x08{font-size: 80%;}
.x05{font-size: 50%;}
.emphasis{font-weight: 900;}
.underline{background: linear-gradient(to top, rgba(255,255,0,0.4) 0%, rgba(255,255,0,0.2) 30%, transparent 30%, transparent 100%);}

.origin_a{text-decoration: underline; color: #337AB7;}
.origin_a:hover{text-shadow: 0 0 2px #33b740}

.sec1margin{
  margin-top: -4rem;
}
@media(max-width:768px){
  .sec1margin{
    margin-top: 0rem;
  }
}

section.sectionWrap{
  text-align: center;
  margin: 0 0 8em 0;
}
div.contentWrap{
  text-align: center;
  margin: 0 1rem;
  padding: 2rem;
  background-color: #ECF6FF;
  border-radius: 1.5em;
}
div.contentCenter{
  margin: 0 auto;
  max-width: 960px;
}
@media (max-width: 768px){
  section.sectionWrap{margin: 0 0 16vw 0;}
  div.contentWrap{margin: 0 4vw; padding: 6vw 4vw; border-radius: 4vw;}
}


/* AI-OCR実例 */
div.ocrEx{text-align: left;}
div.ocrExRow{display: flex; margin: 0 0 2rem 0;}
div.ocrExRow_title{
  color: #337AB7;
  font-size: clamp(0.5rem, 3vw, 2rem);
  font-weight: 900;
  flex: 1;
  margin: auto 0;
}
div.ocrExRow_content{flex: 5;}
.ocrExRow_exp{
  color: #333;
  font-size: clamp(0.5rem, 2.4vw, 1.5rem);
  margin: 0.3rem 0 0 clamp(0.5rem, 20vw, 12rem);
}
.oER_exp_num{margin: 0.3rem 0 0 clamp(0.5rem, 13vw, 8rem);}
div.ocrExRow_num{display: flex;}
div.ocrExRow_num_inner{
  margin: 0 clamp(0.5rem, 6.2vw, 4rem) 0 0;
}



/* Sec3 */
div.sec3SubWrap{text-align: left; margin-top: clamp(0.5rem, 3.2vw, 2rem);}
.sec3SubWrap > p
{
  font-size: clamp(0.5rem, 3.2vw, 2rem);
  clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
  background-color: #337AB7;
  height: clamp(0.5rem, 4.8vw, 3rem);
  width: clamp(0.5rem, 22.4vw, 14rem);
  padding: clamp(0.05rem, 0.5vw, 0.3rem) 0 0 clamp(0.5rem, 3.2vw, 2rem);
  margin: 0 0 0 clamp(-2rem, -4vw, 0rem);
  color: #fff;
}
.sec3SubWrap > div{margin: 0 auto; text-align: center;}
.sec3pWrap{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: clamp(0.5rem, 9vw, 4.5rem); 
}
ul.sec3Now{display: flex; margin: clamp(0.1rem, 1.6vw, 1rem) 0; justify-content: center;}
.sec3Now img{height: clamp(0.1rem, 8vw, 5rem);}
li.sec3Now_li {
  position: relative;
  background: #fff;
  margin: 0 clamp(0.1rem, 2.5vw, 1.5rem); /* マージンを少し調整 */
  width: clamp(0.1rem, 16.5vw, 10rem);
  height: clamp(0.1rem, 16.8vw, 10rem);
  padding: clamp(0.05rem, 0.7vw, 0.5rem);
  border-radius: clamp(0.1rem, 1.6vw, 1rem);
}
.sec3Now_li::after {
  content: "";
  display: inline-block;
  background-color: #337AB7;
  width: clamp(0.1rem, 2vw, 1.2rem);
  height: clamp(0.1rem, 2vw, 1.2rem);
  position: absolute;
  top: 50%;
  right: -1.6rem; /* 右端からの固定距離 */
  transform: translateY(-50%); /* 縦方向の中央揃え */
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

img.sec3arrow{
  width: clamp(0rem, 48vw, 30rem);
  margin: 0 auto clamp(-6.8rem, -9.6vw, 0rem) auto;
}

ul.sec3Future{
  display: flex;
  margin: -2rem 0 clamp(0.1rem, 1.6vw, 1rem) 0;
  justify-content: center;
  height: clamp(0.1rem, 24vw, 16rem);
}
.sec3Future li.sec3Now_li{
  margin: clamp(0.5rem, 4.8vw, 3rem) clamp(0.1rem, 1.6vw, 1rem);
}
.sec3Now_li:last-of-type:after{ content: none;}
.sec3Now_li p{
  font-weight: 900;
  padding: 0.3rem;
  line-height: 1.2;
  font-size: clamp(0.1rem, 1.5vw, 1rem);
}
.sec3Now_li p.sec3_5_1{font-size: clamp(0.1rem, 1.1vw, 0.8rem); font-weight: 500;}
.sec3Now_li p.sec3_5_2{
  font-size: clamp(0.1rem, 1.1vw, 0.8rem);
  font-weight: 500;
  position: absolute;
  top: 2.9rem;
  right: 0;
}

div.sec3SubWrap2{margin: clamp(0.1rem, 9vw, 6rem) 0 0 0;}
.sec3SubWrap2 > p
{
  text-align: left;
  font-size: clamp(0.5rem, 3.2vw, 2rem);
  clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
  background-color: #337AB7;
  height: clamp(0.5rem, 4.8vw, 3rem);
  width: clamp(0.5rem, 22.4vw, 14rem);
  padding: clamp(0.05rem, 0.5vw, 0.3rem) 0 0 clamp(0.5rem, 3.2vw, 2rem);
  margin: 0 0 0 clamp(-2rem, -4vw, 0rem);
  color: #fff;
}
li.sec3Now_li_2{
  position: relative;
  background: #fff;
  margin: 0 clamp(0.1rem, 1.6vw, 1rem) 0 clamp(0.1rem, 1.6vw, 1rem);
  width: clamp(0.1rem, 48vw, 32rem);
  height: clamp(0.1rem, 24vw, 16rem);
  padding: clamp(0.05rem, 0.7vw, 0.5rem) clamp(0.05rem, 0.7vw, 0.5rem) 0 clamp(0.05rem, 0.7vw, 0.5rem);
  border-radius: 1rem;
}
.sec3Now_li_2::after{
  content: "";
  display: inline-block;
  background-color: #337AB7;
  width: clamp(0.1rem, 2vw, 1.2rem);
  height: clamp(0.1rem, 2vw, 1.2rem);
  position: absolute;
  top: 50%;
  right: -1.4em;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
div.sec3Future_title{
  color: #fff;
  background: #337AB7;
  padding: 0.8rem 0;
  font-weight: 900;
  font-size: clamp(0.5rem, 3vw, 2rem);
  margin: -0.5rem -0.5rem 0 -0.5rem;
  border-radius: 1rem 1rem 0 0;
}
.sec3Future img{height: clamp(0.1rem, 8vw, 5rem);}
ul.sec3Future_ul{
  display: flex;
  vertical-align: middle;
  margin: 0 clamp(0.1rem, 1.6vw, 1rem);
}
li.sec3Future_li{
  position: relative;
  margin: 0 clamp(0.1rem, 2vw, 1.2rem);
}
.sec3Future_li::after{
  content: "";
  display: inline-block;
  background-color: #337AB7;
  width: clamp(0.1rem, 2vw, 1.2rem);
  height: clamp(0.1rem, 2vw, 1.2rem);
  position: absolute;
  top: 50%;
  right: -1.7em;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.sec3Future_li:last-of-type:after{
  content: none;
}
img.sec3Future_img{
  height: clamp(0.1rem, 14.2vw, 9rem);
}
div.sec3Future_p_wrap{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: clamp(0.5rem, 2.4vw, 3.2rem); 
  font-weight: 900;
  font-size: clamp(0.1rem, 1.3vw, 1rem);
}

@media(max-width: 768px){
div.sec3SubWrap{margin-top: 8vw; position: relative;}
.sec3SubWrap > p{margin: 0 0 4vw clamp(-2rem, -4vw, 0rem);}
ul.sec3Now{display: block;}
li.sec3Now_li {
  position: relative;
  background: #fff;
  margin: 0 0 4vw 0;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 1.6vw
}
.sec3Now_li::after {width: 2vw; height: 4vw; top: 10vw; left: 30vw; transform: rotate(90deg);}
.sec3NowWrap{display: flex;}
.sec3pWrap{ display: flex; height: 10vw;}
.sec3Now_li p{font-weight: 900; font-size: 3.2vw;}
.sec3Now_li p.sec3_5_1{font-size: 2vw; position: absolute; right: -20vw; width: 22vw; top: 3.2vw;}
.sec3Now_li p.sec3_5_2{font-size: 2vw; position: absolute; top: 3.2vw; right: -26vw;}
ul.sec3Future{
  display: block;
  margin: 0;
  justify-content: center;
  height: clamp(0.1rem, 24vw, 16rem);
}
.sec3Future_img{
  height: 18vw !important; margin:1vw 0 3vw 0;
}
div.sec3Future_p_wrap{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: clamp(0.5rem, 2.4vw, 3.2rem); 
  font-weight: 900;
  font-size: 2.5vw;
}
li.sec3Future_li{
  position: relative;
  margin: 0 5vw;
}
.sec3Future_li::after{
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -6vw;
  height: 4vw;
}
div.sec3SubWrap2{height: 88vw;}
.sec3img{height: 8vw; margin: 1vw 0; width: 18vw;}
.sec3Now_li_2::after{width: 2vw; height: 4vw; top: 40vw; left: 30vw; transform: rotate(90deg);}
li.sec3Now_li_2{
  position: relative;
  background: #fff;
  margin: 0 clamp(0.1rem, 1.6vw, 1rem) 0 clamp(0.1rem, 1.6vw, 1rem);
  width: 80vw;
  height: 40vw;
  padding: clamp(0.05rem, 0.7vw, 0.5rem) clamp(0.05rem, 0.7vw, 0.5rem) 0 clamp(0.05rem, 0.7vw, 0.5rem);
  border-radius: 1rem;
}
div.sec3Future_title{
  padding: 0.8rem 0;
  font-weight: 900;
  font-size: 4.2vw;
  margin: -0.8vw -0.8vw 0 -0.8vw;
  border-radius: 1rem 1rem 0 0;
}
.sec3LiforSP{width: 80% !important;}
.sec3_BGforSP{
  position: absolute;
  height: 41.5vw;
  width: 86.5vw;
  background: #b9d5ee;
  top: 21vw;
  left: -1.5vw;
  border-radius: 2vw;
}
.BGforSP_arrow{
  position: absolute;
  top: 62vw;
  right: 4vw;
  height: 46vw;
}
}



/*コスト削減を実証済み*/
div.sec5Wrap{
  display: flex;
  background: #fff;
  padding: clamp(0.1rem, 1.1vw, 0.8rem);
  border-radius: clamp(0.1rem, 1.1vw, 0.8rem);
}
div.efficacyWrap{text-align: left; position: relative;}
.efficacyWrap img{width: 80%; margin: 4% 0 0 0;}
.efficacyDetail p{font-size: clamp(0.1rem, 1.8vw, 1.2rem); line-height: 1.4em; margin: 0 0 0 clamp(0.5rem, 6vw, 4rem);}
.efficacyDetail{position: relative;}
.efficacyDetail::before{
  content:"例";
  position: absolute;
  top: 0.1em;
  font-weight: 900;
  font-size: clamp(0.5rem, 3.2vw, 2rem);
  padding: clamp(0.05rem, 0.7vw, 0.5rem);
  border-right: solid clamp(0.05rem, 0.7vw, 0.5rem);
  color: #afc8dd;
}
.efficacyGoal{
  position: absolute;
  background: #33b740;
  color: #fff;
  border-radius: 50%;
  width: clamp(0.1rem, 9vw, 5.4rem);
  height: clamp(0.1rem, 9vw, 5.4rem);
  font-size: clamp(0.1rem, 1.7vw, 100%);
  padding: clamp(0.1rem, 1.5vw, 1rem) 0 0 0;
  text-align: center;
  top: 22%;
  right: 10%;
}
/* Sec5 モバイル対応 */
@media (max-width: 850px) {
  div.sec5Wrap{display: block;}
  div.efficacyWrap{text-align: center; position: relative; padding: 8vw 0;}
  .efficacyDetail{text-align: left; margin: 0 0 0 6vw;}
  .efficacyWrap img{width: 60%; margin: 4% 0 0 0;}
  .efficacyDetail p{font-size: 3vw;}
  .efficacyDetail::before{font-size: 5.8vw; left: -4vw;}
  .efficacyGoal{width: 16vw; height: 16vw; font-size: 3vw; padding: 3vw 0 0 0;}
}


/* GovCheckはここがちがう！ */
ul.point{display: flex;}
li.point_li{
  flex: 1;
  margin: 1em 0;
  padding: 1em 0;
  border-radius: 1em;
  line-height: 1.3em;
}
li.point_li:hover{box-shadow:0 0 1em rgba(0, 0, 0, .3);}
.pointImg{margin: 1.5em auto; height: clamp(2rem, 10vw, 6rem);}
div.pointShape{
  margin: 0 auto;
  height: 2em;
  aspect-ratio: 2;
  clip-path: polygon(50% 100%, 100% 0,0 0);
  background: linear-gradient(transparent, #337AB7, #337AB7, #337AB7) ;
}
@media (max-width: 768px) {
  ul.point{display: block;}
  li.point_li{margin: 3vw 0; padding: 3vw 0;}
  li.point_li > a{display: flex; justify-content: center; align-items: center; position: relative; height: 16vw;}
  li.point_li h4{text-align: left ;font-size: 4vw; position: absolute; left: 28vw;}
  .pointImg{margin: 0 4vw; height: 16vw; position: absolute; left: 2vw;}
  div.pointShape{transform: rotate(270deg); position: absolute; right: 6vw; height: 5vw;}
}


/* LGWANでもっとセキュアに */
.sec4Img{width: 80%; margin: 1em auto 2em auto;}
ul.h4Tools_ul{
  margin: 2em 5em;
  padding: 0.5em 0 1em 0;
  text-align: left;
  border: #337AB7 solid;
  color: #337AB7;
  font-size: clamp(0.5rem, 2.3vw, 1.4rem);
}
li.h4Tools_li{
  list-style: none;
  margin: 0 0 0 1em;
  padding: 0 0 0.8em 0;
}
.h4Tools_li::before{
  content: "";
  margin: 0.2em 0.2em 0 0;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: #337AB7;
  border-radius: 50%;
  position: relative;
  top: 0.15em;
}
li.h4Tools_li2{
  list-style: disc;
  margin: 0 0 0 4em;
}



/* 下部CTA */
div.cta2{
  background-color: #337ab7;background-image: radial-gradient(at 26% 77%, hsla(332, 85%, 66%, 1) 0, hsla(332, 85%, 66%, 0) 50%),radial-gradient(at 17% 93%, hsla(212, 89%, 63%, 1) 0, hsla(212, 89%, 63%, 0) 50%),radial-gradient(at 23% 10%, hsla(213, 90%, 67%, 1) 0, hsla(213, 90%, 67%, 0) 50%);
  height: 24rem;
  text-align: center;
  overflow: hidden;
  padding: 2rem 0;
  box-shadow: inset 0 0 clamp(0rem, 2vw, 1rem) rgba(0, 0, 0, .3);
}
.cta2Wrap{max-width: 1000px; margin: 0 auto; position: relative;}
.cta2 > h3{color: #fff; margin: 0;}
.cta2 img{position: absolute; height: 19rem; top: 0rem; left: 42rem;}
.cta2_buttonWrap{margin: 0 0 0 3rem; display: flex; height: 6rem; align-items: center;}
.cta2_button{
  background: #33b740;
  height: 3.6rem; width: 16rem;
  margin: 0 2rem;
  padding: 0.5rem 0 0 0;
  text-align: center;
  font-size: 2.2rem;
  color: #fff;
  border-radius: clamp( 0rem, 1vw, 0.5rem);
  box-shadow: 0 0 0.4em #fff;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.cta2_button:hover{
  background-color: #137a1d;
  box-shadow: 0 0 0.8em #fff;
}
.cta2_capWrap{text-align: left; padding: 2rem 0 0 clamp(0.5rem, 12vw, 8rem); font-size: 1.5rem; color: #e2e9f0;}
.cta2 ul {list-style: disc; padding: 0 0 1rem 8rem;}
.cta2 li {padding: 0 0 1rem 0;}
@media(max-width: 768px){
  div.cta2{height: 54vw; padding: 4vw 0;}
  .cta2_buttonWrap{margin: 0; height: 16vw;}
  .cta2_button{flex: 1; margin: 8vw 4vw 0 4vw; height: 10vw; width: 40vw; font-size: 5vw; padding: 2.2vw 0 0 0;}
  .cta2_capWrap{font-size: 4vw; padding: 4vw 0 0 8vw;}
  .cta2 ul{padding: 0 0 2vw 20vw;}
  .cta2 li{padding: 0 0 02vw 0;}
}



/* よくあるご質問 */
div.faqWrap{margin: 1rem 0 0 0; text-align: left;}
.faqWrap details{padding: 0 0 1rem 0; font-size: 1.4rem;}
.faqWrap summary{
  background-image: linear-gradient(90deg, #337ab7, #337ab7 1%, #eeeeee 2% 100%);
  padding: 1rem 4.5rem 1rem 2rem;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  list-style: none;/* デフォルトの矢印を非表示 */
}
.faqWrap summary::webkit-details-marker{display: none;}
.faqWrap summary::after{
  content: "";
  position: absolute;
  clip-path: polygon(0 45%, 45% 45%, 45% 0, 55% 0, 55% 45%, 100% 45%, 100% 55%, 55% 55%, 55% 100%, 45% 100%, 45% 55%, 0 55%);/*+マーク*/
  background: #969696;
  height: 2rem; aspect-ratio: 1/1;
  right: 2rem;
  transition: transform 0.4s ease;/* 回転のアニメーション制御 */
}
.faqWrap details:open > summary::after {transform: rotate(135deg);}
/* p要素のアニメーション定義 */
@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  to {
    opacity: 1;
    max-height: 500px; /* コンテンツの最大高さに合わせて調整 */
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.faqWrap p {
  line-height: 1.8;
  font-size: 80%;
  padding: 0 2rem;
  box-sizing: border-box;
  overflow: hidden;
}
 /* details[open]の中のp要素にアニメーションを適用 */
.faqWrap details[open] p {
  animation: slideDown 0.4s ease forwards;
}
@media( max-width:786px){
  div.faqWrap{margin: 2vw 0 0 0;}
  .faqWrap details{padding: 0 0 4vw 0; font-size: 3.2vw;}
  .faqWrap summary{padding: 3vw 0 3vw 3vw;}
  .faqWrap summary::after{height: 6vw; right: 6vw;}
}

/* 他サービスのお取引実績
---------------------------------------------------------------- */
#area04 {
  background: #ecf6ff;
  padding: 50px 0;
  text-align: center;
}

#area04 .area04_title {
  font-size: 38px;
  font-weight: 500;
  display: inline-block;
  position: relative;
}

#area04 .area04_title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border: 3px solid #33b740;
  width: 200px;
}

#area04 .area04_title span {
  color: #33b740;
  font-family: "Open Sans", sans-serif;
  font-size: 30px;
  font-weight: 800;
  display: block;
  text-align: center;
  padding-bottom: 10px;
}

#area04 p {
  font-size: 20px;
  line-height: 1.6;
  padding-top: 55px;
}

#area04 a {
  background: #337ab7;
  border-radius: 10px;
  color: #fff;
  display: inline-block;
  font-size: 24px;
  letter-spacing: 0.6px;
  padding: 22px 30px;
  text-decoration: underline;
  margin-top: 30px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#area04 a:hover {
  background: #81bbed;
}

@media screen and (max-width: 768px) {
  #area04 .area04_title {
    font-size: 28px;
  }

  #area04 .area04_title:after {
    bottom: -20px;
    width: 120px;
  }

  #area04 .area04_title span {
    font-size: 18px;
    padding-bottom: 10px;
  }

  #area04 p {
    font-size: 16px;
    padding-top: 45px;
    line-height: 1.8;
    letter-spacing: 1.2px;
  }

  #area04 a {
    border-radius: 8px;
    font-size: 18px;
    line-height: 1.4;
    padding: 18px 28px;
  }
}

@media screen and (max-width: 375px) {
  #area04 .area04_title {
    font-size: 26px;
  }
}

section.contact_phone{/* 電話番号 */
  text-align: center;
  margin: -3rem 0 3rem 0;
}
div.phone_flex{
  display: flex;
  justify-content: center;
  margin: 1rem 0;

}
div.phone_img{
  position: relative;
  content: "";
  width: 4rem; height: 4rem;
  background: #33b740;
  clip-path: circle(50% at 50% 50%);
  margin: 0 1rem 0 0;
}
div.phone_img > img{
  position: absolute;
  top: 0.7rem; left: 0.5rem;
  width: 3rem;
}
.phone_num{
  font-size: 2.8rem;
}
.phone_num > div{
  font-size: 30%;
  margin: 0.3rem 0 0 0;
}
@media screen and (max-width: 768px) {
  section.contact_phone{margin: -12vw 0 10vw 0;}
  section.contact_phone > div{font-size: 3vw;}
  div.phone_flex{margin: 3vw 0;}
  div.phone_img{width: 12vw; height: 12vw; margin: 0 3vw 0 0;}
  div.phone_img > img{top: 2vw; left: 1.6vw; width: 8.8vw;}
  .phone_num{font-size: 7.2vw;}
}

/* 資料請求フォーム
---------------------------------------------------------------- */
.area_title {
  font-size: 47px;
  font-weight: 700;
  height: 130px;
  margin-top: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2px;
  letter-spacing: 1px;
}

#area05 {
  padding: 80px 0;
}

#area05 .area_title.contact {
  background: url(../images/area05_title_bg.png) no-repeat top center;
  background-size: contain;
  height: 91px;
  font-size: 38px;
  margin-top: 0;
}

#area05 .area_title.catalog {
  background: url(../images/area05_title_bg_catalog.png) no-repeat top center;
  background-size: contain;
  height: 126px;
  font-size: 38px;
  margin-top: 0;
  padding-bottom: 30px; 
}

.page-description {
    text-align: center;
    width: 100%;
    font-size: 1.25em;
    margin: 24px auto 0 auto;
    line-height: 1.7;
    color: #222;
    max-width: 600px;
}

/* 2カラムレイアウト */
#area05 .contact-flex {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
#area05 .contact-right {
  padding-top: 50px;
    flex: 1 1 320px;
    min-width: 300px;
}
#area05 .contact-left {
  padding-top: 50px;
    flex: 1 1 320px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 青っぽい四角 */
.blue-info-box {
  background: #e6f2fb;
  border-radius: 12px;
  padding: 28px 24px 20px 24px;
  max-width: 400px;
  margin: 24px auto 0 auto;
  box-shadow: 0 2px 8px rgba(0,114,188,0.08);
}

.blue-info-title {
  border-left: 4px solid #0072bc;
  background: #f4faff;
  color: #0072bc;
  font-weight: bold;
  font-size: 1.12em;
  padding: 0.5em 0.8em;
  margin-bottom: 1em;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.blue-info-list {
  list-style: disc inside;
  color: #222;
  font-size: 1em;
  padding-left: 1em;
  margin: 0;
}

.blue-info-list li {
  margin-bottom: 0.7em;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  #area05 {
    padding: 50px 0;
  }

  #area05 .area_title {
    height: 61px;
    font-size: 28px;
  }

  #area05 .contact_box {
    padding-top: 30px;
  }

  .contact-flex {
      flex-direction: column;
  }
  .contact-left, .contact-right {
      min-width: unset;
  }
}

@media screen and (max-width: 375px) {
  #area05 .area_title {
    font-size: 23px;
  }
}

/* footer
---------------------------------- */
footer .contents {
  width: 100%;
}

footer .footer_top {
  background: #0b5b13;
  text-align: center;
  padding: 48px 0;
}

footer .footer_nav {
  display: flex;
  justify-content: center;
  gap: 40px;
}

footer .footer_nav a {
  color: #fff;
  text-decoration: underline;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

footer .footer_nav a:hover {
  opacity: 0.7;
}

footer .footer_bottom {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px 0;
}

footer .copy {
  font-size: 13px;
}

@media screen and (max-width: 768px) {
  footer .footer_nav {
    flex-direction: column;
    gap: 30px;
  }

  footer .footer_bottom {
    flex-direction: column;
    padding: 40px 0 100px;
  }
}
