@charset "UTF-8";


#page_voice #mv_un{
  background: url(../images/unmv/img_mv_voice.png);
  background-size: cover;
}
#page_voice #mv_un .list_gray{
  justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  #page_voice #mv_un{
  background: url(../images/unmv/img_mv_voice_sp.png);
    background-size: cover;
    line-height: 1.4;
  }
  #page_voice #mv_un .list_gray{
      margin-top:10px;
  }
}

/* voice  */
.v_sec{
  padding:100px 0;
}
.voice_wrap{
  display: flex;
  flex-wrap: wrap;
  gap:40px;
  margin-bottom:0;
}

.voice_box{
  border-radius: 20px;
  max-width: 580px;
  background: #F1F8FE;
  padding:40px 30px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap:30px;
}
.voice_wrap .voice_box:nth-of-type(n+5){
  display: none;
  height: 0;
  visibility: hidden;
  transition: 1s;
}
.voice_wrap.open .voice_box:nth-of-type(n+5){
  display: grid;
  height: auto;
  visibility: visible;
  transition: 1s;
}
.voice_img{
  text-align: center;
  font-weight: bold;
  & img{
    margin-bottom:10px;
  }
  & p{
    margin-bottom: 0;
  }
}
.voice_img--ellipse{
  & img{
    height: 200px;
    border-radius: 50%;
  }
}
.voice_box {
  & h3{
    font-size: 24px;
    color:var(--c-blue01);
    margin-bottom:20px;
  }
  & p{
    line-height: 1.75;
    margin-bottom:20px;
  }
  & a{
    display: block;
    width: fit-content;
    margin-right:0;
    margin-left:auto;
    background: #fff;
    padding:5px 25px;
    border-radius: 30px;
    font-weight: bold;
  }
}
.bg_bl{
  background: #F1F8FE;
}
.bg_bl .voice_box {
  background: #fff;
}
.bg_bl .voice_box a{
  background: #F0F0F0;
}

.more{
  cursor: pointer;
  font-weight: bold;
  width: fit-content;
  margin: auto;
  text-align:center;
  margin-top:40px;
  padding-right:20px;
  font-size: 14px;
  position:relative;
  border-bottom:solid 1px #000;
}
.more::before,
.more::after {
  content: '';
  position: absolute;
  background: var(--c-blue01);
  transition: 0.3s;
  top: 0;
  bottom:0;
  margin: auto;
}
.more::before {
  right: 2px;
  width: 10px;
  height: 2px;
  transform: translateY(-50%);
  top:2px;
}
.more::after {
  right: 5px;
  width: 2px;
  height: 10px;
  transform: translateX(-50%);
}
.more.active::after {
  opacity: 0;
}

@media screen and (max-width: 1024px) {
  .v_sec {
    padding: 80px 0;
  }
  #voice{
    padding:80px 0;
  }
  #voice .sec_ttl {
      margin-bottom: 40px;
  }
  .voice_wrap {
    flex-direction: column;
    align-items: center;
  }
  .voice_wrap tr:first-of-type{
    display: none;
  }
  .voice_box {
    grid-template-columns: 1fr;
  }
  .voice_img{
    max-width: 200px;
    margin: auto;
    margin-bottom:0px;
  }
  .voice_box h3 {
      font-size: 20px;
      margin-bottom: 20px;
  }
  .voice_box a {
    font-size: 12px;
  }
}
/*  m_guide end*/
