#wrap {
  width: 100%;
  max-width: 100%;
  padding: 0;
  }
  #header {
  display: none;
  }

.group_match .title {
  background: #2C2C2C;
  color: #fff;
  align-items: center;
  padding: 25px 20px;
  box-sizing: border-box;
}
.group_match .title h2 {
  font-size: 50px;
  flex: 1;
  letter-spacing: -2px;
  align-items: center;
}
.group_match .title_close {
  width: 80px;
  height: 50px;
  border-radius: 5px;
  background-color: #34A853;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
}
.group_match .contents {
  padding: 20px;
  gap: 20px;
  box-sizing: border-box;
}
.group_match .basic {
  width: 340px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.group_match .basic h4 {
  background: rgb(255, 192, 0);
  color: #fff;
  padding: 20px;
  font-size: 20px;
  box-sizing: border-box;
}
.group_match .list {
  height: calc(100vh - 295px);
  padding: 10px 15px;
  overflow-y: auto;
  box-sizing: border-box;
}
.group_match .list .item {
  margin: 10px 0;
}
.group_match .list .item span {
  display: inline-block;
  width: 100%;
  padding: 10px;
  gap: 5px;
  color: var(--sub_text_02);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-sizing: border-box;
}
.group_match .list .item.teamBlue span {
  border-radius: 7px;
  border-left: 5px solid #1D51D9;
  background: #FFF;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
}
.group_match .list .item.teamRed span {
  border-radius: 7px;
  border-left: 5px solid #EA4335;
  background: #FFF;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
}
.group_match .group_list {
  flex: 1;
  width: 100%;
  gap: 10px;
}
.group_match .group_list .box {
  width: calc(25% - 8px);
  border-radius: 10px 10px 0 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
  overflow: hidden;
}
.group_match .group_list .box h4 {
  position: relative;
  background: rgb(255, 192, 0);
  color: #fff;
  padding: 20px;
  font-size: 20px;
  box-sizing: border-box;
}
.group_match .group_list .box h4 strong {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
}
.group_match .group_list .box h4 .toggle_btn {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 65px);
  height: 100%;
}
.group_match .group_list .box h4 .toggle input {
  display: none;
}
.group_match .group_list .box h4 .toggle input + label {
  position: relative;
  display: block;
  width: 30px;
  height: 16px;
  background: #b9b9b9;
  border-radius: 30px;
  transition: all .3s;
  box-sizing: border-box;
}
.group_match .group_list .box h4 .toggle input + label:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 3px;
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  transition: all .3s;
}
.group_match .group_list .box h4 .toggle input:checked + label {
  background-color: #ff4f4f;
}
.group_match .group_list .box h4 .toggle input:checked + label:before {
  left: 16px;
}
.group_match .group_list .box .list {
  border: 2px solid rgb(255, 192, 0);
  box-sizing: border-box;
}

.btn_form button {
	float:right;
	margin-top:10px;
	margin-right:10px;
	width: 200px;
	height: 63px;
	border-radius: 5px;
	background: #34A853;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
}


@media screen and (max-width: 1640px){
}
@media screen and (max-width: 1480px){
}
@media screen and (max-width: 1280px) {
  .group_match .title h2 {
    font-size: 40px;
  }

  .group_match .basic {
    width: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .group_match .title {
    padding: 13px 15px;
  }
  .group_match .title h2 {
    font-size: 26px;
  }
  .group_match .title_close {
    width: 65px;
    height: 40px;
    font-size: 20px;
  }

  .group_match .contents {
    align-items: start;
  }
  .group_match .list {
    height: calc(100vh - 157px);
  }
  .group_match .basic h4 {
    padding: 15px;
    font-size: 16px;
  }
  .group_match .list .item span {
    font-size: 14px;
  }
  .group_match .group_list .box h4 {
    padding: 15px;
  }
  .group_match .group_list .box h4 strong {
    font-size: 16px;
  }
  .group_match .group_list .box h4 .toggle_btn {
    display: block;
  }
  .group_match .group_list .box h4 strong:after {
    content: '';
    display: inline-block;
    vertical-align: 0px;
    width: 16px;
    height: 16px;
    background: url("../images/ico-minus.svg")no-repeat 50% 50% / 100%;
    margin-left: 10px;
  }
  .group_match .group_list .box.fold h4 strong:after {
    background-image: url("../images/ico-plus.svg");
  }
  .group_match .group_list .box {
    width: 100%;
  }
  .group_match .group_list .box .list {
    height: auto;
    max-height: 500px;
  }
  .group_match .group_list .box.fold .list {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .group_match .contents {
    gap: 10px;
    padding: 15px;
  }
  
  .btn_form button {
		flex: 1;
	}
}
@media screen and (max-width: 480px) {
  .group_match .basic {
    width: 160px;
  }
}
@media screen and (max-width: 380px) {
  .group_match .basic {
    width: 120px;
  }
  .group_match .group_list {
    width: calc(100% - 140px);
  }
  .group_match .group_list .box h4 strong:after {
    width: 13px;
    height: 13px;
    margin-left: 5px;
  }
}