@charset "UTF-8";
/*Variable
－－－－－－－*/
/*
ブレークポイント

基本  1920px
ipad 1050px
sp   767px;

コンテンツ幅1000px

*/
.question {
  width: 100%;
}

.question p {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  line-height: 38px;
  position: relative;
  padding: 1.5em 0 0.5em;
  text-align: center;
}

.question p:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: "";
  border-radius: 3px;
  background: #c03939;
}

.answer-1 {
  width: 100%;
  margin-top: 20px;
  float: left;
  clear: both;
}

.answer-1 h3 {
  font-size: 16px;
  font-weight: bold;
  color: #c03939;
  margin: 10px 0;
}

.answer-1 .q1 {
  float: left;
  width: 30px;
}

.answer-1 p {
  float: left;
  width: 661px;
  width: 100%;
  /* 2018/01/18 add */
}

.answer-1 p img {
  float: right;
  margin-left: 30px;
  margin-top: 7px;
  margin-bottom: 10px;
  width: 310px;
  /* 2019/09/13 add */
}

.answer-2 {
  width: 661px;
  width: 100%;
  /* 2018/01/18 add */
  margin-top: 20px;
  float: left;
  clear: both;
}

.answer-2 h3 {
  font-size: 16px;
  font-weight: bold;
  color: #c03939;
  margin: 10px 0;
}

.answer-2 .q1 {
  float: left;
  width: 30px;
}

.answer-2 p {
  float: left;
  width: 661px;
  width: 100%;
  /* 2018/01/18 add */
}

.answer-2 p img {
  float: left;
  margin-top: 7px;
  margin-bottom: 10px;
  margin-right: 30px;
  width: 310px;
  /* 2019/09/13 add */
}

#agency-profile {
  float: left;
  width: 100%;
  /* 2018/01/18 add */
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #999;
}

#agency-profile-title {
  float: left;
}

#agency-profile-name {
  float: left;
  margin-top: 20px;
  margin-bottom: 15px;
  width: 662px;
  max-width: 100%;
}

#agency-profile-centents {
  float: left;
  width: 662px;
  width: 100%;
  /* 2018/01/18 add */
}

#agency-profile-centents-l {
  float: left;
  width: 305px;
  width: 50%;
  /* 2018/01/18 add */
}
@media screen and (max-width: 767px) {
  #agency-profile-centents-l {
    width: 100%;
  }
}

#agency-profile-centents-l p {
  float: left;
  width: 100%;
  /* 2018/01/18 add */
  clear: both;
  font-size: 13px;
  padding-right: 15px;
  line-height: 1.5;
}

#agency-profile-centents .information {
  float: right;
  width: 325px;
  width: 50%;
  border-left-width: 1px;
  border-left-style: dotted;
  border-left-color: #999;
  /* 2018/01/18 add */
}
@media screen and (max-width: 767px) {
  #agency-profile-centents .information {
    width: 100%;
    border: none;
  }
}
#agency-profile-centents .information > p {
  margin-bottom: 10px;
}

#agency-profile-centents .information p {
  font-size: 13px;
  line-height: 1.4;
}

.midashi {
  clear: both;
  font-size: 20px;
  padding: 10px 0px;
  color: #303030;
  font-weight: bold;
  margin: 30px 0px 10px 0px;
}
@media screen and (max-width: 767px) {
  .midashi {
    text-align: center;
  }
}

.midashi:before {
  content: "――";
  padding-right: 5px;
  font-size: 16px;
}

.midashi:after {
  content: "――";
  font-size: 16px;
  padding-left: 5px;
}

.child_pages {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.child_pages section {
  width: 24%;
}
@media screen and (max-width: 767px) {
  .child_pages section {
    width: 44%;
  }
}
.child_pages section p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding: 10px 0;
  font-weight: bold;
}

.voice-post-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .voice-post-list {
    gap: 20px 10px;
  }
}

.voice-post-list-item {
  width: calc(25% - 15px);
}
@media screen and (max-width: 767px) {
  .voice-post-list-item {
    width: calc(50% - 10px);
  }
}
.voice-post-list-item > a {
  position: relative;
}
.voice-post-list-item > a:hover {
  color: inherit;
  opacity: 1;
}
.voice-post-list-item > a:hover .voice-post-list-img img {
  transform: scale(1.1);
}

.voice-post-list-cat {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  justify-content: flex-end;
  z-index: 2;
}
.voice-post-list-cat li {
  display: block;
  padding: 4px 10px 5px 10px;
  text-align: center;
  line-height: 1;
  border: 1px solid #505050;
  background-color: #fff;
  color: #505050;
  border-radius: 5px;
  font-size: 14px;
}

.voice-post-list-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.voice-post-list-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 1/1;
  transition: 0.3s;
}

.voice-post-list-content {
  min-height: 78px;
  padding: 10px 10px 20px 10px;
  background-color: #f6f6f6;
}

.voice-post-list-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.5;
  font-weight: normal;
  font-size: 16px;
  color: #9F886E;
  font-weight: bold;
}

.voice-cat {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.voice-cat li a {
  display: block;
  padding: 4px 10px 5px 10px;
  text-align: center;
  line-height: 1;
  border: 1px solid #505050;
  color: #505050;
  border-radius: 5px;
}