
/*! =================================
  menu
================================== */
.label-list__menu {
  display: flex;
  flex-wrap: wrap;
}
.label-list__menu-item {
  margin-right: 40px;
  margin-bottom: 15px;
}
.label-list__menu-link {
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  vertical-align: middle;
  text-decoration: none;
  font-size: 14px;
}
.label-list__menu-link:before,
.label-list__menu-link:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.label-list__menu-link._arrow:before {
  width: 14px;
  height: 14px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #323276;
}
.label-list__menu-link._arrow:after {
  left: 4px;
  bottom: 2px;
  width: 4px;
  height: 4px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
@media (max-width: 640px) {
  .label-list__menu {
    margin-bottom: 20px;
  }
  .label-list__menu-item {
    width: 50%;
    justify-content: space-between;
    margin-right: 0;
    margin-top: 15px;
    padding-right: 10px;
  }
  .label-list__menu-link {
    font-size: 14px;
  }
}
/*! =================================
  list
================================== */
.label-list__section {
  margin-bottom: 50px;
}
.label-list__section:last-child {
  margin-bottom: 80px;
}
.label-list__section .page-sub-title-wrap {
  margin-top: 10px;
}
.label-list__contents {
  position: relative;
  margin: -20px auto 0;
  padding: 0 20px;
  max-width: 1280px;
}
.label-list__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.label-list__item {
  display: flex;
  flex-direction: column;
  width: 49.2%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.label-list__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15px;
}
.label-list__detail {
  margin-right: 15px;
  width: calc(100% - 235px);
}
.label-list__right {
  width: 220px;
}
.label-list__right img {
  border: 1px solid #e0e0e0;
}
.label-list__right a img:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -moz-transition: opacity 0.3s linear 0s;
  -o-transition: opacity 0.3s linear 0s;
  -webkit-transition: opacity 0.3s linear;
  -webkit-transition-delay: 0s;
  transition: opacity 0.3s linear 0s;
}
.label-list__detail-tag {
  font-weight: bold;
  color: #fff;
  font-size: 11px;
  display: inline-block;
  background-color: #323276;
  padding: 4px 6px;
  margin-bottom: 8px;
}
.label-list__detail-name,
.label-list__detail-name a {
  font-weight: bold;
  color: #323276;
  font-size: 15px;
  line-height: 1.4;
}

.label-list__detail-name a:hover {
  opacity: 0.7;
  text-decoration: none;
}
.label-list__detail-catch {
  font-size: 13px;
  line-height: 1.4;
  margin-top: 8px;
}

/*simple*/
.label-list__list._simple .label-list__inner {
  margin-bottom: 0;
  align-items: center;
}
.label-list__list._simple .label-list__detail,
.label-list__list._simple .label-list__right {
  display: flex;
  align-items: center;
}
.label-list__list._simple .label-list__detail {
  flex-direction: column;
}
.label-list__list._simple .label-list__detail-item {
  width: 100%;
}
.label-list__list._simple .label-list__link._arrow {
  display: block;
  background-color: #e2e2ec40;
  text-align: center;
  border-radius: 4px;
  padding: 16px 0;
}
/*Btn*/
.label-list__btn {
  margin-top: auto;
  background-color: #e2e2ec40;
  border-radius: 4px;
  padding: 7px 0;
  display: flex;
}
.label-list__btn-item:nth-of-type(2) {
  border-left: 1px solid #32327620;
}
.label-list__btn-item {
  width: 100%;
  text-align: center;
}
.label-list__link {
  color: #323276;
  font-weight: bold;
  display: inline-block;
  width: 100%;
  padding: 10px 5px;
  vertical-align: middle;
  position: relative;
}
.label-list__link:hover {
  opacity: 0.7;
}
.label-list__link._blank:after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("/common/img/icon-newopen.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 4px;
  margin-top: -8px;
}
.label-list__link._arrow:after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #323276;
  border-right: 2px solid #323276;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: 6px;
  margin-bottom: 1px;
}
.label-list__link:hover {
  text-decoration: none;
  color: #323276;
}

@media (max-width: 960px) {
  .label-list__detail {
    margin-right: 15px;
    width: calc(100% - 185px);
  }
  .label-list__right {
    width: 170px;
  }
}
@media (max-width: 768px) {
  .label-list__contents {
    padding: 0;
    border-top: 1px solid #ccc;
  }
  .label-list__section:last-child {
    margin-bottom: 40px;
  }
  .label-list__list._simple .label-list__item:first-child {
    border-top: 0;
  }
  .label-list__item {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin-bottom: 0;
    border-radius: 0;
  }
}
@media (max-width: 640px) {
  .label-list__detail {
    margin-right: 15px;
    width: calc(100% - 135px);
  }
  .label-list__right {
    width: 120px;
  }
}