/* --------------------
   riskmanagement
-------------------- */
#riskmanagement{
  padding-bottom: 70px;
}

#riskmanagement .titlebox h2,
#riskmanagement .titlebox h3{
  font-weight: 600;
}
#riskmanagement .titlebox h3{
  margin-bottom: 40px;
  padding-bottom: 1.25em;
  margin-top: 0.25em;
  border-bottom: dotted 4px #6EB43B;
}
#riskmanagement .titlebox{ 
  text-align: center;
}

#riskmanagement .read .txs-42{
  line-height: 1.5;
  font-weight: 900;
  margin-bottom: 1em;
}
#riskmanagement .read .txs-42 > span{
  display: inline-block;
  white-space: nowrap;
}
#riskmanagement .read .txs-42 span span{
  position: relative;
  display: inline-block;
}
#riskmanagement .read .txs-42 span span:before{
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #6EB43B;
  display: block;
  position: absolute;
  top: -0.0125em;
  left: 0;
  right: 0;
  margin: auto;
}

#riskmanagement .read p{
  line-height: 2;
}

@media screen and (max-width: 1079px){
  #riskmanagement .read .txs-42{
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 768px){
}
@media screen and (min-width: 769px){
  #riskmanagement{
    padding-bottom: 100px;
  }
  #riskmanagement .read .txs-42{
    text-align: center;
  }
  #riskmanagement .read p{
    font-size: 1.25em;
  }
}
@media screen and (min-width: 1080px){
}

/* --------------------
   check
-------------------- */
#check{
  padding-bottom: 70px;
  position: relative;
}
#check .inner{
  padding: 7vw 5vw;
  border-radius: 20px;
  background-color: #F7F3EE;
}
#check .read{
  position: relative;
}
#check .read img{
  position: absolute;
  bottom: -60px;
  left: -50px;
}
#check .read h2{
  line-height: 1.5;
  position: relative;
  z-index: 2;
  font-weight: 700;
  text-align: center;
}

#check h3{
  margin-bottom: 30px;
  margin-top: 1em;
  color: #fff;
  padding: 0.45em 1em;
  background-color: #6EB43B;
  border-radius: 5em;
  font-weight: 700;
  text-align: center;
}
#check .item{
  padding: 0.5em 1em 0.5em 2em;
  position: relative;
  background-color: #fff;
  font-weight: 700;
  border-radius: 10px;
}
#check .item .check-icon{
  position: absolute;
  width: 1.5em;
  left: -4px;
  top: -4px;
}
#check .item+.item{
  margin-top: 10px;
}
#check p:last-child{
  margin-top: 1.5em;
  line-height: 2;
}
@media screen and (max-width: 1079px){
  #check .txs-32{
    font-size: 1.5rem;
  }
  #check .read img{
    width: 24vw;
  }
}
@media screen and (max-width: 768px){
  #check .read img{
    display: none;
  }
  #check .item{
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 769px){
  #check{
    padding-bottom: 100px;
  }
  #check .inner{
    padding:60px 50px 80px;
  }
  #check h3{
    margin-top: 2.25em;
    margin-bottom: 30px;
  }
  #check .item{
    padding: 1em 2em 1em 2.5em;
  }
  #check .item .check-icon{
    width: 2em;
  }
  #check p:last-child{
    margin-top: 2em;
    line-height: 2;
  }
}
@media screen and (min-width: 1080px){
  #check .inner{
    border-radius: 40px;
  }
}

/* --------------------
   handling
-------------------- */
@keyframes scrollSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
#handling{
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 100px;
  background-color: #F7F3EE;
  position: relative;
}
#handling .inner{
  text-align: center;
  margin: auto;
  max-width: 700px;
  background: linear-gradient(
    to right,
    rgba(247,243,238,0) 10%,
    rgba(247,243,238,1) 14%,
    rgba(247,243,238,1) 86%,
    rgba(247,243,238,0) 90%
  );
}
#handling h1{
  font-weight: 600;
  margin-bottom: 0.75em;
}
#handling ul{
  margin-bottom: 72px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6em;
  justify-content: center;
}
#handling ul li{
  padding: 0.125em 0.7em;
  color: #fff;
  border-radius: 1.5em;
  background-color: #6EB43B;
}
#handling a{
  color: #fff;
  background-color: #6EB43B;
}
#handling figure{
  top: 0;
  bottom: 0;
  margin: auto;
  align-items: center;
  position: absolute;
  display: flex;
  flex-wrap: nowrap;
  animation: scrollSlider 40s linear infinite;
  width: calc(200%); /* 画像を繰り返すために倍の幅 */
}
@media screen and (max-width: 1280px){}
@media screen and (min-width: 1281px){}
@media screen and (max-width: 768px){
  #handling{
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #handling ul{
    margin-bottom: 30px;
  }
  #handling figure{
  }
  #handling figure img{
    height: 60px;
    width: auto;
    max-width: none;
  }
}