@charset "utf-8";

#hikitori{}

#hikitori .inner{
  width: 1000px;
}
@media (max-width: 768px){
  
  #hikitori .inner{
    width: 100%;
  }
  
}
.hikitri_flow{ 
  width: 1000px;
  max-width: 100%;
}

.hikitri_flow .item{
  display:flex;
  border:1px solid #DDD;
  margin-bottom:30px;
  align-items:stretch;
}

.hikitri_flow .item:nth-child(even){ flex-direction:row-reverse; }

.hikitri_flow .item .detail{
  /*padding:1.5vw 2.0vw;*/
  padding:20px 10px;
  margin-left: 0;
  width:56%; 
}

#main1c .hikitri_flow .item h3{
  margin-bottom:1em;
  font-size:26px;
  line-height:1.5em;
  padding:0;
  text-indent: 0;
  color:#d64547;
  font-weight:700;
  background: none;
  text-align: left;
}

.hikitri_flow .item .step{
  display:inline-block;
  margin:-1px 0.5em 0 0;
  padding:0.5em 1em 0.4em 1em;
  line-height: 1.1em;
  border-radius:8px;
  background:linear-gradient(
    to bottom,
    #f64d31,
    #d2444b
  );
  color:#fff;
  font-size:18px;
  font-weight:700;
}

.hikitri_flow .item .txt p{
  font-size:16px;
}

.hikitri_flow .item .pic{
  width:44%;
  overflow:hidden;
}

.hikitri_flow .item .pic img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

@media (max-width: 768px){
  
  .hikitri_flow .item{
    flex-wrap:wrap;
  }

  .hikitri_flow .item .detail,
  .hikitri_flow .item .pic{
    width: 100%;
  }

  .hikitri_flow .item .step{
    display:block;
    margin: auto;
    width: 160px;
    font-size: 16px;
    text-align: center;
    margin-bottom: 1em;
  }

  #main1c .hikitri_flow .item h3{
    font-size: 20px;
    text-align: center;
  }
}

/* 上部ボックス　*/
.info-boxes{
  display: flex;
  gap: 30px;
  margin: 30px auto;
  max-width: 1100px;
  align-items: stretch;
}

.info-box{
  flex: 1;
  border: 3px solid #d2444b;
  text-align: center;
  box-sizing: border-box;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.info-title{
  font-size: 18px;
  font-weight: 700;
  background: #d2444b;
  margin: 0;
  color: #fff;
  padding: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;

}

.info-box .txt{
  flex: 1;
  padding: 0.8em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-height: 130px;
}
.info-box p{
  margin: 0 0 0.5em 0;
  font-size: 16px;
  line-height: 1.7;
  color:  #d2444b;
}
.info-box .note{ 
  font-size: 13px;
  color: #333;
  text-align: left;
}

@media (max-width: 768px){
  .info-boxes{
    display: block;
  }
  .info-box{    
    margin-bottom: 1em;
  }
  .info-box .txt{
    min-height:auto;
  }  

}




/* CTA */
.cta-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  padding:40px;
  background:#fff;
  border-radius:10px;
  box-shadow:0 7px 10px rgba(0,0,0, 0.06);
  margin-bottom: 30px;
}

.cta-tel{
  flex:1;
}

.cta-tel .label{
  font-size:15px;
  color:#333;
  margin-bottom:10px;
}

.cta-tel .tel-number{
  display:block;
  text-decoration:none;
  color:#333;
  font-size:43px;
  font-weight:700;
  line-height:1.1;
}

.cta-tel .time{
  margin-top:8px;
  color:#333;
  font-size:14px;
}
.cta-web{
  /*flex:0 0 420px;*/
}

.cta-web a{
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:1.6em 4em ;　
  text-decoration:none;
  color:#fff;
  border-radius:18px;
  overflow:hidden;
  
  min-height: 90px;

  background:linear-gradient(
    135deg,
    #22d06e,
    #00b55c
  );

  box-shadow:
    0 10px 25px rgba(0,181,92,.35),
    inset 0 1px 0 rgba(255,255,255,.3);

  transition:.3s;
}

.cta-web a:hover{
  transform:translateY(-4px);
}

.cta-web .sub{
  font-size:14px;
  letter-spacing:.1em;
  opacity:.9;
}

.cta-web .main{
  font-size:32px;
  line-height:1.2;
  font-weight:700;
}

.cta-web .arrow{
  position:absolute;
  right:20px;
  top:50%;
  transform:translateY(-50%);
  font-size:28px;
}

@media (max-width:768px){

    .cta-box{
      flex-direction:column;
      padding:25px;
      text-align:center;
      gap:10px;
    }

    .cta-tel .tel-number{
      font-size:26px;
    }

    .cta-web{
      width:100%;
      flex:auto;
    }

    .cta-web a{ 
      min-height:auto;
      padding:1.6em 1.5em ;
    }

    .cta-web .main{
      font-size: 5.5vw;
    }
    .cta-web .arrow{
      right:10px;
      font-size: 5.5vw;
    }  


    .cta-tel .label{font-size:14px; }
    .cta-tel .time{font-size:13px; }  
  
}

  

/* 対応エリア地図　 */
.map_area{
	width:1000px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .map_area{
    position: relative;
    width: 100%;
    padding: calc(315 / 560 * 100%) 0 0;
  }
  .map_area iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
  
