@charset "utf-8";

.invisible-style{
  display: none!important;
}

html { scroll-behavior: smooth;}

.accent {
  font-family: "Noto Sans JP", sans-serif;
}

body{
  font-size:16px;
  font-family: "Kiwi Maru", serif;
  color:#000000;
  font-weight: 400;
  background-color: #FFFFF5;
  word-break: auto-phrase;
}

img{
  display:block;
}


h1,h2,h3,h4,h5{
  margin:0;
  font-weight:400;
}

p{
  margin:0;
  line-height:2;  
  font-weight: 400;
}

a p{
  line-height:1.5;  
}

.sp{
  display:none;
}

a{
  color:#6A6A6A;
  cursor: pointer;
  transition:0.3s;
}

a:hover{
  color: #000000;
  text-decoration:none;
}


a p{
  line-height:1;
}



.btn{
  display:flex;
  padding:0.5rem 1rem 0.5rem 2.5rem;
  align-items:center;
  border:2px solid #B4B4B4;
  border-radius:30px;
  margin:0 auto;
  width: fit-content;
  background:#fff;
  gap:2.5rem;
  font-size:clamp(1rem, 0.909rem + 0.3vw, 1.25rem);
}


.btn img{
  width:30px !important;
}

.btn:hover{
  color:#fff;
  background:#F8B62A;
  border:2px solid #F8B62A;
}

img{
  width:100%;
  object-fit: contain;
}

h1{
  font-size: clamp(1.5rem, 1.136rem + 1.21vw, 2.5rem);
}

.container{
  padding:0 !important;
  max-width: 1920px;
  width: 70%;
  margin:0 auto;
}

.row{
  margin:0;
}

.slider-wrap{
  overflow: hidden;
  margin-bottom: 3rem;
}

.autoplay-slider {
  display: flex;
  min-width: 100%;
  gap: 1rem;
  width: min-content;
  animation: 30s linear 0s infinite sliderAnimation;
}

.autoplay-slide {
  height: auto;
  width: 400px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  margin: 0 10px;
  position: relative;
}

@keyframes sliderAnimation{
  100% {
    transform: translateX(-50%);
  }
}


.lower-fv{
  padding:2rem 5% 2rem calc(15% + 130px); 
  position:relative;
  background:#fff;
}

.lower-fv img{
  width:100px;
  position:absolute;
  left:5%;
  opacity: 0;
}

.lower-fv img.fadeUp{
  animation-name: carLowerFv;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

@keyframes carLowerFv{
  from {
    opacity: 0;
    left:5%;
  }

  to {
    opacity: 1;
    left:15%;
  }
}

.lower-fv h1{
  font-size:clamp(1.5rem, 1.136rem + 1.21vw, 2.5rem);
  color:#F39F14;
}

.pankuzu{
  display: flex;
  padding: 7.5rem 0 3rem 2.5%;
  gap: 1rem;
  flex-wrap: wrap;
  color:#F8B629;
  background:#FFFFF5;
}

.pankuzu a{
  color:#F8B629;
  position: relative;
}

.pankuzu a:hover{
  text-decoration:underline;
}

.pankuzu a::before{
  content:">";
  position: absolute;
  right: -14px;
  top: 0px;
  line-height: 1;
}

.pankuzu p{
  line-height:1;
}

.yellow-bg{
  background:#FFF4A8;
  padding:3rem 0 2.5rem;
}

.base-bg{
  padding:2rem 0 7.5rem;
}

strong{
  font-weight:normal;
  display: inline-block;
}


.lower-title{
  margin:0 0 2rem;
}

.lower-title.center{
  text-align:center;
}

.lower-title h2{
  font-size:16px;
}

.lower-title p{
  color:#F39F14;
  font-weight:bold;
  font-size:clamp(1.25rem, 0.795rem + 1.52vw, 2.5rem);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
}



.news-main .webgene-blog article:first-child > a{
  border-top: 1px solid #B4B4B4;
}

.news-main .webgene-blog article > a{
  border-bottom: 1px solid #B4B4B4;
  padding: 2rem 2rem 2rem 0;
  display:flex;
  justify-content: space-between;
  position: relative;
}

.news-main .webgene-blog article > a::before{
  content:">";
  position:absolute;
  color:#F8B62A;
  right:0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 20px;
  font-weight: bold;
}


.news-main  .newsTextWrap{
  width:100%;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.news-main .webgene-blog article > a:hover{
  opacity:0.7;
}


.news-main .webgene-blog article .newsItemTit{
  font-size:1rem;
  line-height: 1.5;
  width:calc(100% - 4rem - 250px);
  font-weight:500;
  position: relative;
}

.news-main .webgene-blog article .newsItemTit::before{
  content:"";
  position:absolute;
  width:2px;
  height:24px;
  background:#F8B62A;
  left:-2rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.newsItemText{
  display:flex;
  gap: 2.5rem;
  align-items: center;
  color:#F39F14;
  width: 250px;
}

.newsItemCate{
  color:#fff !important;
  padding: 10px 1.5rem;
  display: block;
  border-radius:30px;
  background-color:#F39F14;
}



@media screen and (max-width: 1600px) {
  .container{
    width:80%;
  }
  .newsItemText {
    gap: 1rem;
    width: 200px;
  }
  .news-main .webgene-blog article .newsItemTit{
    width: calc(100% - 4rem - 200px);
  }
}

@media screen and (max-width: 1024px) {
  .lower-fv {
    padding: 2rem 5% 2rem calc(7.5% + 100px);
  }
  .lower-fv img{
    width:80px;
  }
  .lower-fv img.fadeUp{
    animation-name: carLowerFv2;
    animation-duration: 1s;
    animation-fill-mode: forwards;
  }
  @keyframes carLowerFv2{
    from {
      opacity: 0;
      left:0%;
    }

    to {
      opacity: 1;
      left:7.5%;
    }
  }
}

@media screen and (max-width: 767px) {
  .pankuzu{
    padding: 5.5rem 0 1rem 2.5%;
  }
  .lower-fv {
    padding: 2rem 5% 2rem calc(10% + 50px);
  }
  .lower-fv img{
    width:50px;
  }
  .lower-fv img.fadeUp{
    animation-name: carLowerFv3;
    animation-duration: 1s;
    animation-fill-mode: forwards;
  }
  @keyframes carLowerFv3{
    from {
      opacity: 0;
      left:0%;
    }

    to {
      opacity: 1;
      left:7%;
    }
  }
  .sp{
    display:block;
  }
  .pc{
    display:none;
  }
  body{
    font-size:14px;
  }
  .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto{
    padding:0;
  }
  .base-bg {
    padding: 2rem 0 4.5rem;
  }
  .news-main .newsTextWrap{
    align-items: flex-start;
    gap: 0.5rem;
    flex-direction: column;
  }
  .news-main .webgene-blog article .newsItemTit{
    width:100%;
    font-size: 14px;
  }
  .news-main .webgene-blog article .newsItemTit::before{
    display:none;
  }
  .news-main .webgene-blog article > a{
    padding: 1rem 1rem 1rem 0;
  }
  .top-news .newsItemText {
    gap: 0.5rem;
    width: 100%;
  }
  .newsItemCate {
    padding: 8px 1rem;
  }
}
