.drone{
  max-width: 1100px;
  margin: 0 auto 0;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: content-box;
}
.drone-overview{
  width: 100%;
  padding: 30px 75px 40px;
  position: relative;
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-flow: row-reverse;
}
.drone-overview::before{
  content: "";
  position: absolute;
  filter: drop-shadow(0 0 12px rgba(0,0,0,.15));
  transform: translateZ(0);
  border-radius: 26px;
  background-color: #fff;
  display: block;
  top: 0;
  right: auto;
  left: 0;
  width: 80%;
  height: 100%;
}
.drone-overview-img{
  width: 410px;
  margin-top: 24px;
  display: block;
  position: relative;
}
.drone-overview-txt-wrapper{
  width: calc(100% - 410px);
  padding-left: 0;
  padding-right: 30px;
  position: relative;
}
.drone-overview-deco{
  display: block;
  height: 87px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%,-50%);
}
.drone-overview-ttl{
  font-size: 27px;
  font-weight: 800;
  line-height: 1.35em;
}
.drone-overview-list{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-flow: wrap;
  margin-top: 16px;
  gap: 6px;
}

.drone-overview-list li{
  font-size: 14px;
  line-height: 1;
  height: 28px;
  padding: 0 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
.drone-overview-list li:nth-child(1){
  background-color: #26dac1;
  color: #000;
}
.drone-overview-list li:nth-child(2){
  background-color: #bdf34f;
  color: #000;
}
.drone-overview-list li:nth-child(3){
  background-color: #d80c18;
  color: #fff;
}
.drone-overview-list li:nth-child(4){
  background-color: #fbb03b;
  color: #000;
}
.drone-overview-desc{
  font-size: 18px;
  line-height: 1.75em;
  margin: 16px 0 0;
}

.drone-overview-date{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.drone-overview-date + .drone-overview-date{
  margin-top: 8px;
}
.drone-overview-date li:nth-child(1){
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  padding: 8px 12px;
  font-weight: 600;
  background-color: #d3edf9;
}
.drone-overview-date.day2 li:nth-child(1){
  background-color: #e8f0c5;
}
.drone-overview-notes{
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.5em;
}










.drone-info{
  padding: 0 80px;
  margin-top: 42px;
}
.drone-info h2{
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}
.drone-info p{
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.8em;
}
.drone-info ul{
  margin-top: 12px;
  font-size: 15px;
}
.drone-info li{
  line-height: 1.8em;
  text-indent: -1em;
  padding-left: 1em;
}

.drone-border{
  border-top: 1px solid #000;
  border-bottom: none;
  margin: 48px 0;
}
.drone-btn-wrapper{
  text-align: center;
  margin-top: 24px;
}
.drone-btn-desc{
  font-size: 20px;
  line-height: 1.4em;
}
.drone-btn-notes{
  font-size: 17px;
  margin-top: 4px;
}
.drone-btn-container{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 70%;
  margin: 24px auto 0;
}
.drone-btn-link{
  width: 50%;
  display: block;
  transition: 0.3s;
  left: 0;
  position: relative;
}
.hover_ok .drone-btn-link:hover{
  left: 4px;
}
.drone-btn-link img{
  display: block;
  width: 100%;
}
.drone-acordion-wrapper{
  margin: 40px auto 0;
  width: 75%;
}
.drone-acordion{
  text-align: center;
  position: relative;
  background: #f2f2f2;
  font-size: 18px;
  line-height: 1;
  padding: 20px 0;
  cursor: pointer;
  width: 100%;
}
.drone-acordion-trg{
  position: absolute;
  display: block;
  height: 24px;
  width: 24px;
  background: #000;
  border-radius: 50%;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  transition: transform .3s ease;
}
.drone-acordion-trg.is-show{
  transform: translateY(-50%) rotate(45deg);
}
.drone-acordion-trg::before,
.drone-acordion-trg::after{
  content: "";
  display: block;
  width: 60%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.drone-acordion-trg::after{
  transform: translate(-50%,-50%) rotate(90deg);
}
.drone-acordion-body{
  line-height: 1.5em;
  border: 2px solid #f2f2f2;
  background-color: #fff;
  padding: 24px;
  display: none;
}
.drone-acordion-body p{
  font-size: 15px;
}
.drone-acordion-body dl{
  margin-top: 24px;
}
.drone-acordion-body dl dt{
  font-size: 16px;
  font-weight: 800;
}
.drone-acordion-body dl dd{
  font-size: 15px;
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 8px;
}
.drone-acordion-body dl dd a{
  text-decoration: underline;
}
