@charset "utf-8";
/* CSS Document */
.howto_box{
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 46px) clamp(20px, 4vw, 46px);
  background: #FFFFFF;
  border-radius: 10px;
}

.howto_box .section03_title_wrap{
        justify-content: flex-start;
}

.howto_box .section03_title_wrap .entitle1{
  margin: 0;
}

.howto_box .section03_title_wrap .section03_title{
  margin: 0;
}

.howto_box .howto_list{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.howto_box .howto_item{
  align-items: center;
    justify-content: flex-start;
  gap: 10px;
  padding: 18px 22px;
  background: #EFEFEF;
  border-radius: 10px;
}

.howto_box .howto_item p{
  margin: 0;
  line-height: 1.7;
}

.howto_box .howto_case{
  position: relative;
  min-width: 74px;
  margin: 0;
  padding-right: 20px;
  letter-spacing: 0.08em;
  opacity: 0.95;
  flex-shrink: 0;
}

.howto_box .howto_case::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  width: 10px;
  height: 1px;
  background: #33CBBB;
  transform: translateY(-50%);
}
.howto_box .howto_label{

  flex-shrink: 0;
}

.howto_box .howto_text{
 font-weight: 400;
}

@media screen and (max-width: 900px){
  .howto_box .howto_item{
    flex-wrap: wrap;
    gap: 6px 12px;
  }

  .howto_box .howto_case{
    min-width: auto;
    width: 100%;
  }
    .howto_box .howto_case::after{
  right:auto;
left: clamp(56px, 5vw, 70px);
}
    
}

@media screen and (max-width: 576px){
  .howto_box{
    padding: 20px 16px;
    border-radius: 10px;
  }

  .howto_box .section03_title_wrap{
    flex-wrap: wrap;
    gap: 6px 10px;
    margin-bottom: 18px;
  }

  .howto_box .howto_item{
    padding: 14px 14px;
  }

  .howto_box .howto_case{
    width: 100%;
  }

  .howto_box .howto_label,
  .howto_box .howto_text{
    width: 100%;
  }
}

/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

