@charset "utf-8";

/* =============================================
  style
============================================= */
.content-img{
  margin: 20px 0;
}
.dl{
  margin: 50px 0 0;
}
.pickup-list p{
  margin: 10px 0 0;
  font-size: 1.8rem;
  line-height: 1.5;
}
.pickup-list div > div{
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
.pickup-list img{
  width: 100px;
}
.dl a{
  display: inline-block;
  width: 100%;
  padding: 15px;
  margin: 30px auto;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  color: #333;
  color: var(--font-dark);
  text-align: center;text-decoration: none;
  border: 1px solid var(--nikken-red);
  border-radius: 30px;
  transition: all 0.2s ease;
}
.dl a:hover{
  opacity: 0.7;
}
.comingsoon-dl a{
  position: relative;
}
.comingsoon-dl a:hover{
  opacity: 1.0;
}
.comingsoon-dl a::before{
  position: absolute;
  top: -15px;
  left: -15px;
  z-index: 20;
  width: 10em;
  padding: 1px 0;
  font-weight: bold;
  color: #fff;
  content: 'Coming Soon!';
  background-color: var(--nikken-red);
  opacity: 0.8;
  transform:rotate(-5deg);
}
.dl-ico{
  margin-right: 10px;
  vertical-align: middle;
}
.commingsoon{
  opacity: 0.3;
}
.contact-us{
  margin-top: 30px;
}

/* ===========================================
	MediaQueries
=========================================== */

/* PC----------------------------- */
@media screen and (width >= 768px){
  .dl a{
    width: 500px;
    padding: 15px 30px;
  }
  .comingsoon-dl a::before{
    left: -20px;
  }
}