@charset "UTF-8";

.heading-arrow {
  position: relative;
  padding-left: 20px;
}
.heading-arrow::before {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 40%;
  left: 0;
  margin-top: -3px;
}

/* PC用 */
@media screen and (min-width: 768px) , print {
  /* コンテンツ */
  #content_area {
    line-height: 1.6em;
  }
  #content_area > section > h2 {
    display: inline-block;
    padding: 5px 15px;
    background-color: #DCDCDC;
    margin-bottom: 10px;
  }
  #content_area > section > #text-space {
    width: 100%;
    margin-right: 10px;
  }
  #content_area > section > #text-space > p {
    line-height: 1.6em;
  }
  #content_area > section > #text-space > #logo-bgwhite {
    text-align: center;
    margin: 20px 0;
  }
  #content_area > section > #text-space > p {
    display: inline-block;
    text-align: left;
  }
  #content_area > section > #text-space-right {
    width: auto;
    float: right;
    display: inline-block;
  }
}
 
/* 小さい画面用 */
@media screen and (max-width: 767px) {
  /* コンテンツ */
  #content_area {
    line-height: 1.6em;
  }
  
  #content_area > p, #content_area > section {
    margin: 0 10px;
    width: calc(100% -20px);
  }
  #content_area > section > #text-space {
    width: 100%;
  }
  #content_area > section > #text-space > p {
    line-height: 1.6em;
  }
  #content_area > section > #text-space > #logo-bgwhite {
    text-align: center;
    margin: 20px 0;
  }
  #content_area > section > #text-space > h3 {
    width: calc(100% - 20px);
    text-align: left;
  }
  #content_area > section > #text-space > h3 > p {
    display: inline-block;
    text-align: left;
  }
  #content_area > section > #text-space > h3 > br {
    display: inherit;
  }
}




