/* CSS Document */
.detail_box {
  padding: 80px 10px;
}

@media screen and (max-width: 768px) {
  .detail_box {
    padding: 40px 10px;
  }
}

.detail_box .detail_wrapper {
  background: #f9f9f9;
  border: solid 3px #d0d0d0;
  margin: 0 auto;
  max-width: 880px;
  width: 100%;
}

.detail_box .detail_inner {
  padding: 40px 0px;
  margin: 0 auto;
  max-width: 780px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .detail_box .detail_inner {
    padding: 20px;
  }
}

.detail_box .detail_title p {
  border-bottom: solid 4px #766cdb;
  color: #222;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .detail_box .detail_title p {
    font-size: 1.8rem;
  }
}

.detail_box .detail_list {
  margin-bottom: 40px;
}

.detail_box .detail_list li {
  background: #f1f1f1;
  border-bottom: solid 1px #fff;
}

.detail_box .detail_list dl {
  font-size: 0;
}

.detail_box .detail_list dl dt {
  background: #1e1c3c;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  font-size: 2rem;
  line-height: 1;
  padding: 15px 20px;
  text-align: left;
  max-width: 300px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .detail_box .detail_list dl dt {
    max-width: 100%;
    font-size: 1.4rem;
  }
}

.detail_box .detail_list dl dd {
  color: #222;
  display: inline-block;
  vertical-align: middle;
  font-size: 2rem;
  padding: 10px;
  line-height: 1.25;
  color: #000;
}

@media screen and (max-width: 768px) {
  .detail_box .detail_list dl dd {
    font-size: 1.6rem;
  }
}

.detail_box .detail_btn_box a {
  background: #004666;
  -webkit-box-shadow: 0 2px 0 #cccccc;
          box-shadow: 0 2px 0 #cccccc;
  border-radius: 100px;
  color: #fff;
  font-size: 2.5rem;
  display: block;
  line-height: 1;
  padding: 20px 10px;
  position: relative;
  text-align: center;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin: 0 auto;
  max-width: 640px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .detail_box .detail_btn_box a {
    font-size: 2rem;
  }
}

.detail_box .detail_btn_box a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 0;
  height: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 8px solid transparent;
  border-left: 8px solid #fff;
}

@media screen and (max-width: 768px) {
  .detail_box .detail_btn_box a::before {
    border: 6px solid transparent;
    border-left: 6px solid #fff;
  }
}

.detail_box .detail_btn_box a:hover {
  background: #5294cc;
  -webkit-box-shadow: 0 0px 0 #cccccc;
          box-shadow: 0 0px 0 #cccccc;
}

.detail_box .detail_btn_box a:hover::before {
  right: 5px;
}
