/* バレーボール　SVリーグ男子　移籍情報 */
/* 2026/08/31 */

.mod-team__select {
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .mod-team__select {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 768px) {
  .mod-team__select {
    padding: 0 16px;
  }
}
.mod-team__select::after {
  position: absolute;
  z-index: 1;
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  top: 50%;
  right: 70px;
  -webkit-transform: translateY(-48%) rotate(45deg);
  transform: translateY(-48%) rotate(45deg);
}
@media only screen and (max-width: 768px) {
  .mod-team__select::after {
    right: 40px;
  }
}

#mod-team__selectBox {
  width: 100%;
  height: auto;
  padding: 1.5rem;
}

@media only screen and (min-width: 1024px) {
  .mod-layout .mod-team .mod-team-title01 + .mod-team__list {
    margin-top: 28px;
  }
}

.mod-team__switch {
  display:flex;
  width:100%;
  justify-content: center;
}
.mod-team__switch-item {
  width: 50%;
  text-align: center;
}
.mod-team__switch-item span {
  display: block;
  padding: 1.5rem;
  border-radius: 2rem;
  background: #fff;
  border: solid 1px #2f51af;
  color: #2f51af;
  font-weight: 700;
  cursor: pointer;
}
.mod-team__switch-item.active span {
  background: #2f51af;
  color: #fff;
}
@media only screen and (min-width: 1024px) {
  .mod-team__switch-item span {
    margin: 0 40px;
  }
}
@media only screen and (max-width: 768px) {
  .mod-team__switch-item span {
    margin: 0 16px;
  }
}

.mod-notice-box {
  margin-top: 50px;
  padding: 0 40px;
  font-size: 90%;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  .mod-notice-box {
    margin-top: 30px;
    padding: 0 20px;
  }
}
.mod-notice-box p + p {
  margin-top: 1rem;
}

.mod-team-in.no-show,
.mod-team-out.no-show {
  display: none;
}
.mod-team-in.is-show,
.mod-team-out.is-show {
  display: block;
}

.mod-team__members {
  margin-top: 22px;
}
@media only screen and (min-width: 1024px) {
  .mod-team__members {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
}

.mod-team__member.no-show {
  display: none;
}
@media only screen and (max-width: 768px) {
  .mod-team__member + .mod-team__member {
    margin-top: 10px;
  }
}

.mod-team__member-wrap {
  display: flex;
  width: 100%;
}
.mod-team__member-img {
  width: 70px;
  margin-right: 10px;
}
.mod-team__member-img img {
  width: 100%;
  height: auto;
}
.mod-team__member-txt {
  width: calc(100% - 70px);
}
.mod-team__member-team {
  display: flex;
  align-items: center;
  width: 100%;
  border-top: solid 1px var(--f-mod-team-title01-border);
  font-size: 90%;
}
.mod-team__member-team .mod-team-title01__icon {
  display: block;
  width: 12%;
  height: auto;
  padding: 5px;
}
.mod-team__member-team .mod-team-title01__icon img {
  width: 100%;
  height: auto;
}
.mod-team__member-name {
  margin-bottom: 15px;
  padding-top: 5px;
  font-weight: 700;
  line-height: 1.1;
}
.mod-team__member-name a {
  color: #222;
}
.mod-team__member-name a:hover {
  text-decoration: underline;
}
.mod-team__member-info {
  font-size: 80%;
  line-height: 1.2;
}