/* ----------------------------------------------------------
General Settings
---------------------------------------------------------- */
.img-wrap {
  padding-top: 66.666666%;
  position: relative;
  margin-bottom: 5px;
}
.img-inner {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 10px;
}
/* ----------------------------------------------------------
Style for PCs
---------------------------------------------------------- */
@media screen and (min-width: 1025px) {
  /* Voice list */
  .voice-list {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
  }
  .voice-list li {
    width: 23%;
    height: auto;
    display: block;
    margin: 0 1% 2%;
  }
  .voice-list li a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 10px;
    text-decoration: none;
    transition: .4s all;
    border-radius: 10px;
  }
  .voice-list li a:hover {
    background-color: rgba(184, 175, 148, 0.2);
  }
  .voice-list li img {
    display: block;
  }
  .voice-list li a h3 {
    font-size: 14px;
    line-height: 1.5em;
    font-weight: 400;
    color: var(--color-black);
    margin: 0;
    order: 3;
    transition: .4s all;
    width: 100%;
  }
  .voice-list li a:hover h3 {
    color: var(--color-2nd);
  }
}
/* ----------------------------------------------------------
Style for iPad Pro
---------------------------------------------------------- */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  /* Voice list */
  .voice-list {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
  }
  .voice-list li {
    width: 23%;
    height: auto;
    display: block;
    margin: 0 1% 2%;
  }
  .voice-list li a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 10px;
    text-decoration: none;
    transition: .4s all;
    border-radius: 10px;
  }
  .voice-list li a:hover {
    background-color: rgba(184, 175, 148, 0.2);
  }
  .voice-list li img {
    display: block;
  }
  .voice-list li a h3 {
    font-size: 14px;
    line-height: 1.5em;
    font-weight: 400;
    color: var(--color-black);
    margin: 0;
    order: 3;
    transition: .4s all;
    width: 100%;
  }
  .voice-list li a:hover h3 {
    color: var(--color-2nd);
  }
}
/* ----------------------------------------------------------
Style for Smartphone
---------------------------------------------------------- */
@media screen and (max-width: 768px) {
  /* Voice list */
  .voice-list {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
  }
  .voice-list li {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 0 10px;

   border-bottom: 1px dotted var(--color-ccc);   
  }
  .voice-list li a {
    width: 100%;
    height: 100%;
    display: block;
      padding: 10px;
    text-decoration: none;
    transition: .4s all;
    border-radius: 10px;
  }
  .voice-list li a:hover {
    background-color: rgba(184, 175, 148, 0.2);
  }
    
    
    .voice-list li .voice-img{
        width: 30%;
        height: auto;
        float: left;
        margin: 0px 10px 10px 0;
    }
.img-wrap {
  margin-bottom: 0px;
}
    
  .voice-list li img {
    display: block;
  }
  .voice-list li a h3 {
    font-size: 14px;
    line-height: 1.5em;
    font-weight: 400;
    color: var(--color-black);
    margin: 0;
    order: 3;
    transition: .4s all;
    width: 100%;
  }
  .voice-list li a:hover h3 {
    color: var(--color-2nd);
  }
    
    
    
    
}