@charset "utf-8";
/* アイキャッチ
***************************************************************/
.iCatch .bg{
  background-image: url(../../files/img/voice/voice1.jpg);
}
@media all and (max-width:680px) {
  .iCatch .bg{
    background-image: url(../../files/img/voice/voice1_sp.jpg);
  }
}

/* ------------------------------
 カテゴリーメニュー
------------------------------ */
.voiceIndex .categoryBox {
	background: #d6e5eb;
}
.voiceIndex {
	margin-bottom: 100px !important;
}
.voiceIndex .categoryBox .text .title {
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}
.voiceIndex .categoryBox .text {
	position: relative;
}
.voiceIndex .categoryBox .text::after {
  content: "";
  background-image: url(../../files/img/common/arrow_r.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  transition: right 0.3s ease, background 0.3s ease;
}
.voiceIndex .categoryBox:hover .text::after {
  right: 15px;
}