@charset "utf-8";
/* CSS Document */
.under_mv{
  background: url(../../img/mv.png) no-repeat center;
  background-size: cover;
}
.article {
  
}

.map{
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}
.list{
  background: #eee;
  padding: 80px 0;
}
.list_inner{
  max-width: 1024px;
  width: 90%;
  margin: auto;
  background: #fff;
  padding: 50px 30px;
  display: flex;
  gap: 30px ;
  flex-wrap: wrap;
}
.list_card{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(50% - 15px);
  &[href=""]{
    pointer-events: none;
  }
}
.list_data{
  position: relative;
  &::after{
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--red);
    border-bottom: 2px solid var(--red);
    transform: rotate(-45deg);
    position: absolute;
    right: -20px;
    top: calc(50% - 4px);
  }
}
.list_card[href=""]{
  .list_data{
    &::after{
      display: none;
    }
  }
}
.list_name{
  font-weight: bold;
  text-decoration: underline;
  &::before{
    content: '■ ';
    color: var(--red);
  }
}
.list_card:hover,.list_card[href=""]{
  .list_name{text-decoration: none;}
}

.com_nav{
  margin-top: 90px;
}
@media screen and ( max-width: 1023px ) {
}
@media screen and ( max-width: 767px ) {
  .list{
    padding: 40px 0;
  }
  .list_inner{
    padding: 20px 5%;
  }
  .list_card{
    width: 100%;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap:10px;
  }
}
