@charset "UTF-8";
/* ===============================================================

 project / event report detail

=============================================================== */
/* ======================
詳細ページ内共通 start
====================== */
.c-sentencebox {
  width: 100%;
  padding: 0 40px;
}

.c-sentencebox__inner {
  max-width: 800px;
  margin: 0 auto;
}

.c-sentence.-center {
  display: block;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.5em;
  text-align: center;
}

.c-sentence {
  max-width: 800px;
  width: 100%;
}

.c-sentence:last-child {
  margin-bottom: 0;
}

.c-report-button {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 345px;
  max-width: 100%;
  padding: 16px 26px;
  /* background: -webkit-gradient(linear, right top, left top, from(#4E5B73), to(#7283A3)); */
  /* background: linear-gradient(to left, #4E5B73, #7283A3); */
  background: var(--theme-color);
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

.c-report-button:after {
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.c-report-button i {
  display: none;
}

.c-report-button span {
  position: relative;
}

.c-report-button.-reversearrow:after {
  top: 50%;
  right: auto;
  left: 16px;
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}

.c-report-button.-hasicon:after {
  content: none;
}

.c-report-button.-hasicon i {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 12px;
  height: 12px;
  font-size: 0;
  line-height: 0;
}

.c-report-button.-hasicon i img {
  width: 100%;
}

.c-event_detail__cv {
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .c-report-button:hover {
    opacity: .5;
  }
}

@media screen and (max-width: 767px) {
  .c-sentencebox {
    padding: 0 4%;
  }
  .c-report-button {
    width: 100%;
  }
  .c-event_detail__cv {
    padding: 0 4%;
  }
}
