@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;400;700&family=Noto+Sans+KR:wght@100;400;700&family=Roboto:wght@900&display=swap");
@-webkit-keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  15%, 45%, 75% {
    transform: translate3d(-3px, 0, 0);
  }
  30%, 60%, 90% {
    transform: translate3d(3px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  15%, 45%, 75% {
    transform: translate3d(-3px, 0, 0);
  }
  30%, 60%, 90% {
    transform: translate3d(3px, 0, 0);
  }
}
body {
  padding: 0;
  margin: 0;
  background-color: #E8E8E8;
  color: #292929;
  font-family: "Inter", "Noto Sans KR", sans-serif;
  font-size: 14px;
  letter-spacing: -0.2px;
  box-sizing: border-box;
}
body.hidden {
  overflow: hidden;
}

.blind {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
}

button {
  padding: 0;
  border: none;
  background-color: transparent;
  font-family: "Inter", "Noto Sans KR", sans-serif;
  color: #292929;
  letter-spacing: -0.2px;
  cursor: pointer;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

dl, dd {
  margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

a {
  color: #292929;
  text-decoration: none;
}

.container {
  display: flex;
  position: relative;
  overflow: hidden;
  max-width: 768px;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  margin: 0 auto;
  padding: 15px;
  background-color: #fff;
  flex-direction: column;
  box-sizing: border-box;
}

.no_result {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  color: #7F7F7F;
}

.border {
  border-top: 2px solid #292929;
}

.button {
  display: block;
  width: 100%;
  height: 40px;
  background-image: linear-gradient(to right, #E60012, #B70012);
  font-size: 16px;
  color: #fff;
  font-weight: bold;
}
.button:hover {
  background-image: linear-gradient(to right, #B70012, #B70012);
}
.button.disabled {
  background: #D5D5D5;
  cursor: not-allowed;
}
.button_gray {
  display: inline-block;
  padding: 2px 6px;
  border: 1px solid #D5D5D5;
  color: #7F7F7F;
  font-weight: bold;
}
.button_gray:hover {
  border-color: #515151;
  color: #515151;
}

.select {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: "Inter", "Noto Sans KR", sans-serif;
  color: #292929;
}
@-moz-document url-prefix() {
  .select {
    text-indent: -2px;
  }
}
.select option {
  padding: 0;
}
.select::-ms-expand {
  display: none;
}
.select_wrap {
  position: relative;
  width: 100%;
  height: 40px;
  border-bottom: 1px solid #D5D5D5;
}
.select_wrap:not(:last-of-type) {
  margin-bottom: 10px;
  margin-right: 10px;
}
.select_wrap::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  content: "";
}
.select_wrap.soccer .select {
  padding-left: 30px;
}
.select_wrap.soccer::before {
  background-image: url(../img/soccer.svg);
}
.select_wrap.location::before {
  background-image: url(../img/location.svg);
}
.select_wrap::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #292929;
  transform: translateY(-2px);
  content: "";
}
.select_button {
  display: block;
  width: 100%;
  height: 100%;
  text-align: left;
  font-family: "Inter", "Noto Sans KR", sans-serif;
  color: #292929;
  text-indent: 30px;
}
.select_button:focus {
  outline: -webkit-focus-ring-color auto 1px;
}

.input_text {
  display: block;
  width: 100%;
  height: 100%;
  padding-left: 30px;
  border: none;
  border-bottom: 1px solid #D5D5D5;
  box-sizing: border-box;
  font-family: "Inter", "Noto Sans KR", sans-serif;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
.input_text::-moz-placeholder {
  font-size: 14px;
  color: #ABABAB;
}
.input_text:-ms-input-placeholder {
  font-size: 14px;
  color: #ABABAB;
}
.input_text::placeholder {
  font-size: 14px;
  color: #ABABAB;
}
.input_text:focus {
  outline: none;
  border-color: #E60012;
}
.input_text:not(:last-of-type) {
  margin-bottom: 10px;
}
.wrong .input_text {
  color: #E60012;
  border-color: #E60012;
}

.input_text_label {
  display: block;
  position: relative;
  width: 100%;
  height: 40px;
}
.input_text_label:not(:last-of-type) {
  margin-bottom: 10px;
}
.input_text_label::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  content: "";
}
.input_text_label.user::before {
  background-image: url(../img/user.svg);
}
.input_text_label.email::before {
  background-image: url(../img/email.svg);
}
.input_text_label.password::before {
  background-image: url(../img/password.svg);
}
.input_text_wrong::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 16px;
  background-image: url(../img/x-mark.svg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  content: "";
  content: "";
}

.radio_wrap {
  display: flex;
  height: 40px;
  align-items: center;
}
.radio_wrap:not(:last-child) {
  margin-bottom: 10px;
}
.radio_label {
  cursor: pointer;
}
.radio_label:not(:last-of-type) {
  margin-right: 20px;
}
.radio_label.disabled {
  cursor: not-allowed;
}
.radio_label.disabled input[type=radio]:disabled ~ .radio_check {
  background-color: #f7c5b0;
  border-color: #f7c5b0;
}
.radio_label:hover .radio_check {
  border-color: #E60012;
}
.radio_label:active .radio_check {
  background-color: #f7c5b0;
}
.radio_label:active .radio_check:focus {
  outline: none;
  border: 1px solid #E60012;
  box-shadow: 0 0 0 2px #f7c5b0;
}
.radio_check {
  display: inline-block;
  margin-top: -2px;
  width: 16px;
  height: 16px;
  border: 1px solid #aaa;
  vertical-align: middle;
  border-radius: 50px;
}
.radio_check.small {
  width: 12px;
  height: 12px;
}
input[type=radio]:checked ~ .radio_check.small::after {
  width: 4px;
  height: 4px;
}

.radio_check.large {
  width: 20px;
  height: 20px;
}
input[type=radio]:checked ~ .radio_check.large::after {
  width: 11px;
  height: 11px;
}

.radio_check:focus {
  outline: none;
  border: 1px solid #E60012;
  box-shadow: 0 0 0 2px #f7c5b0;
}
.radio_check.hover {
  border-color: #E60012;
}
.radio_check.focus {
  border: 1px solid #E60012;
  box-shadow: 0 0 0 2px #f7c5b0;
}
input[type=radio]:focus ~ .radio_check {
  outline: none;
  border: 1px solid #E60012;
  box-shadow: 0 0 0 2px #f7c5b0;
}

input[type=radio]:checked ~ .radio_check {
  border-color: #E60012;
  background-color: #E60012;
  position: relative;
}
input[type=radio]:checked ~ .radio_check::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  content: "";
}

input[type=radio]:disabled ~ .radio_check:focus {
  box-shadow: none;
}

.checkbox_container {
  display: flex;
  height: 40px;
  border-bottom: 1px solid #D5D5D5;
  align-items: center;
}
.checkbox_container:not(:last-of-type) {
  margin-bottom: 10px;
}
.checkbox_wrap {
  flex: 1;
}
.checkbox_label {
  cursor: pointer;
}
.checkbox_label.disabled {
  cursor: not-allowed;
}
.checkbox_label.disabled input[type=checkbox]:disabled ~ .checkbox_check {
  background-color: #f7c5b0;
  border-color: #f7c5b0;
}
.checkbox_label:hover .checkbox_check {
  border-color: #E60012;
}
.checkbox_label:active .checkbox_check {
  background-color: #f7c5b0;
}
.checkbox_label:active .checkbox_check:focus {
  outline: none;
  border: 1px solid #E60012;
  box-shadow: 0 0 0 2px #f7c5b0;
}
.checkbox_check {
  display: inline-block;
  margin-top: -2px;
  width: 16px;
  height: 16px;
  border: 1px solid #aaa;
  vertical-align: middle;
}
.checkbox_check.small {
  width: 12px;
  height: 12px;
}
input[type=checkbox]:checked ~ .checkbox_check.small::after {
  width: 4px;
  height: 5px;
}

.checkbox_check.large {
  width: 20px;
  height: 20px;
}
.checkbox_check:focus {
  outline: none;
  border: 1px solid #E60012;
  box-shadow: 0 0 0 2px #f7c5b0;
}
.checkbox_check.hover {
  border-color: #E60012;
}
.checkbox_check.focus {
  border: 1px solid #E60012;
  box-shadow: 0 0 0 2px #f7c5b0;
}
input[type=checkbox]:focus ~ .checkbox_check {
  outline: none;
  border: 1px solid #E60012;
  box-shadow: 0 0 0 2px #f7c5b0;
}

input[type=checkbox]:checked ~ .checkbox_check {
  border-color: #E60012;
  background-color: #E60012;
  position: relative;
}
input[type=checkbox]:checked ~ .checkbox_check::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 7px;
  margin-top: -2px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  content: "";
}

input[type=checkbox]:disabled ~ .checkbox_check:focus {
  box-shadow: none;
}

.textarea {
  width: 100%;
  height: 200px;
  padding: 15px;
  border: 1px solid #D5D5D5;
  font-family: "inter_regular", "notosans_regular", sans-serif;
  resize: none;
  box-sizing: border-box;
}
.textarea_read {
  border: 1px solid #D5D5D5;
  padding: 15px;
  max-height: calc(100vh - 200px);
  height: 100%;
  overflow-y: auto;
}
.textarea_text {
  margin: 0;
}
.textarea_wrap {
  text-align: right;
}
.textarea_wrap:not(:last-child) {
  margin-bottom: 10px;
}
.textarea_guide_text {
  color: #ABABAB;
  font-size: 12px;
}
.textarea_terms_title {
  margin: 30px 0 5px 0;
  font-weight: bold;
  font-weight: normal;
}
.textarea_terms_title:first-child {
  margin-top: 0;
}
.textarea_terms_text {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #515151;
}

.guide_alert_layer {
  padding: 10px;
  border: 1px solid #E60012;
  box-sizing: border-box;
  transform-origin: center center;
  -webkit-animation-name: shake;
          animation-name: shake;
  -webkit-animation-duration: 0.9s;
          animation-duration: 0.9s;
}
.guide_alert_layer:not(:last-child) {
  margin-bottom: 10px;
}
.guide_alert_text {
  margin: 0;
  color: #E60012;
  font-weight: bold;
  text-align: center;
}

.main {
  display: flex;
  margin-top: 41px;
  margin-bottom: 45px;
  flex: 1;
  flex-direction: column;
}
.main.setting {
  margin-bottom: 0;
}

.component_wrap {
  display: flex;
}
.component_wrap .select_wrap {
  margin-bottom: 0;
}
.component_wrap:not(:last-of-type) {
  margin-bottom: 10px;
}

.check_all_wrap {
  flex: 1;
}
.checkbox_wrap {
  display: inline-block;
}
.checkbox_wrap:not(:last-of-type) {
  margin-right: 10px;
}

.loading_logo_wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 768px;
  width: calc(100% - 30px);
}
.loading_animation {
  margin: 10px 0;
  text-align: center;
}
.loading_animation svg path,
.loading_animation svg rect {
  fill: #E60012;
}

.login_title {
  font-weight: bold;
}
.login_area {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}
.login_link {
  font-weight: bold;
  font-size: 13px;
  color: #515151;
}
.login_link:hover {
  text-decoration: underline;
}
.login_link_wrap {
  display: flex;
  width: 100%;
  margin-top: 10px;
}
.login_link_wrapper:first-child {
  flex: 1;
}

.popup_layer {
  position: fixed;
  left: 50%;
  bottom: -100%;
  max-width: 768px;
  width: 100%;
  z-index: 205;
  background-color: #fff;
  transform: translateX(-50%);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: all 0.2s;
}
.popup_layer.on {
  bottom: 0;
  opacity: 1;
}
.popup_wrapper {
  padding: 20px;
}
.popup_title {
  margin: 0 0 20px 0;
  padding-right: 20px;
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.popup_dimmed {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  z-index: 200;
  background-color: rgba(0, 0, 0, 0.65);
}
.popup_layer.on ~ .popup_dimmed {
  display: block;
}

.popup_close {
  display: block;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 15px;
  height: 15px;
}
.popup_close::before {
  display: block;
  position: absolute;
  right: 6px;
  top: 0;
  width: 2px;
  height: 15px;
  transform: rotate(-45deg);
  background-color: #515151;
  content: "";
}
.popup_close::after {
  display: block;
  position: absolute;
  right: 6px;
  top: 0;
  width: 2px;
  height: 15px;
  transform: rotate(45deg);
  background-color: #515151;
  content: "";
}

.menu_list {
  display: flex;
  position: fixed;
  left: 50%;
  bottom: 0;
  max-width: 768px;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}
.menu_item {
  flex: 1;
  font-size: 12px;
}
.menu_item_link {
  display: flex;
  width: 100%;
  height: 60px;
  justify-content: center;
  align-items: center;
}
.menu_item_link:hover {
  text-decoration: none;
}
.menu_item_text {
  text-align: center;
}
.menu_item_text::before {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 auto 5px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
}
.home .menu_item_text::before {
  background-image: url("../img/home.svg");
}

.active .home .menu_item_text::before {
  background-image: url("../img/home_fill.svg");
}

.favorite .menu_item_text::before {
  background-image: url("../img/favorite.svg");
}

.active .favorite .menu_item_text::before {
  background-image: url("../img/favorite_fill.svg");
}

.magnifier .menu_item_text::before {
  background-image: url("../img/magnifier.svg");
}

.active .magnifier .menu_item_text::before {
  background-image: url("../img/magnifier_fill.svg");
}

.user_plus .menu_item_text::before {
  background-image: url("../img/user_plus.svg");
}

.active .user_plus .menu_item_text::before {
  background-image: url("../img/user_plus_fill.svg");
}

.user .menu_item_text::before {
  background-image: url("../img/user.svg");
}

.active .user .menu_item_text::before {
  background-image: url("../img/user_fill.svg");
}

.header {
  display: flex;
  position: fixed;
  left: 50%;
  top: 0;
  max-width: 768px;
  width: 100%;
  height: 56px;
  padding: 15px;
  z-index: 100;
  background-color: #fff;
  transform: translateX(-50%);
  box-sizing: border-box;
  z-index: 200;
}
.header_team_wrap {
  position: relative;
  flex: 1;
}
.header_team_title {
  position: relative;
  font-weight: bold;
  font-size: 18px;
}
.header_team_title.none::after {
  display: none;
}
.header_team_title::after {
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  content: url(../img/triangle_bottom.svg);
}
.header_team_list {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  width: calc(100% + 22px);
  background-color: #fff;
  border: 1px solid #ABABAB;
}
.on .header_team_list {
  display: block;
}

.header_team_item:not(:last-child) {
  border-bottom: 1px solid #D5D5D5;
}
.header_team_item.active {
  font-weight: bold;
}
.header_team_link {
  display: flex;
  width: 100%;
  padding: 5px 10px;
  align-items: center;
  box-sizing: border-box;
}
.header_team_link:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
.header_team_logo_wrap {
  vertical-align: middle;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  border: 1px solid #D5D5D5;
  border-radius: 5px;
  background-color: #fff;
}
.header_team_logo_wrap img {
  width: 100%;
  height: 100%;
}
.header_team_text {
  flex: 1;
  line-height: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header_menu_link {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../img/menu.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.team_info {
  width: 100%;
  padding: 10px 0;
  border: 1px solid #D5D5D5;
  box-sizing: border-box;
}
.team_info_list {
  display: flex;
}
.team_info_item {
  display: inline-flex;
  width: 33.33%;
  padding: 0 10px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  word-break: break-all;
  box-sizing: border-box;
}
.team_info_item:not(:last-child) {
  position: relative;
}
.team_info_item:not(:last-child)::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #D5D5D5;
  transform: translateY(-50%);
  content: "";
}
.team_info_title {
  margin-top: 5px;
  font-size: 12px;
  font-weight: normal;
  color: #292929;
  text-align: center;
  order: 2;
}
.team_info_number {
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  color: #292929;
  text-align: center;
  order: 1;
}

.filter_wrap {
  position: static;
  background-color: #fff;
  margin-top: 20px;
}
.filter_wrap::after {
  display: block;
  clear: both;
  content: "";
}
.filter_wrap.sticky {
  position: fixed;
  left: 50%;
  top: 56px;
  max-width: 768px;
  width: 100%;
  margin-top: 0;
  z-index: 100;
  padding: 0 15px 10px;
  transform: translateX(-50%);
  box-sizing: border-box;
}
.filter_list {
  float: left;
  margin-left: -10px;
}
.filter_item {
  float: left;
}
.filter_item:not(:last-of-type) {
  position: relative;
}
.filter_item:not(:last-of-type)::before {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 10px;
  background-color: #292929;
  transform: translateY(-50%);
  content: "";
}
.filter_item::after {
  display: block;
  clear: both;
  content: "";
}
.filter_button {
  padding: 5px 10px;
  color: #7F7F7F;
}
.on .filter_button {
  position: relative;
  font-weight: bold;
  color: #292929;
  z-index: 1;
}
.on .filter_button::before {
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: calc(100% - 20px);
  height: 10px;
  z-index: -1;
  background-color: #f7c5b0;
  transform: translateX(-50%);
  content: "";
}

.filter_button_icon {
  float: right;
  width: 22px;
  height: 22px;
  background-image: url(../img/control_panel.svg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.team_list {
  margin: 10px 0;
  flex: 1;
}
.team_item:not(:last-child) {
  border-bottom: 1px solid #D5D5D5;
}
.team_link {
  display: flex;
  padding: 15px 0;
}
.team_logo_wrap {
  width: 100px;
  height: 100px;
  border: 1px solid #D5D5D5;
  box-sizing: border-box;
}
.team_logo_wrap img {
  width: 100%;
  height: 100%;
}
.team_contents {
  position: relative;
  margin-left: 10px;
  flex: 1;
}
.team_label_item {
  display: inline-block;
  background-color: #E60012;
  border: 1px solid #E60012;
  height: 18px;
  padding: 2px 5px;
  font-size: 12px;
  color: #fff;
  line-height: 12px;
  box-sizing: border-box;
}
.team_label_item.type_ing {
  background-color: #fff;
  border: 1px solid #7F7F7F;
  color: #7F7F7F;
}
.team_label_item.type_end {
  background-color: #7F7F7F;
  border: 1px solid #7F7F7F;
  color: #fff;
}
.team_name {
  font-size: 16px;
  font-weight: bold;
  font-weight: normal;
  color: #292929;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 24px;
  max-height: 48px;
}
.team_detail_item {
  display: inline-block;
  color: #515151;
  font-size: 12px;
}
.team_detail_item:not(:last-child) {
  position: relative;
  margin-right: 8px;
}
.team_detail_item:not(:last-child)::after {
  display: block;
  position: absolute;
  right: -6px;
  top: 50%;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #515151;
  transform: translateY(-50%);
  content: "";
}
.team_date_list {
  position: absolute;
  left: 0;
  bottom: 0;
}
.team_date_item {
  display: inline-block;
  color: #515151;
  font-size: 12px;
}
.team_date_item:first-child {
  font-weight: bold;
}

.plus_button {
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
  background-image: linear-gradient(to right, #E60012, #B70012);
  border-radius: 50%;
}
.plus_button::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  background-image: url(../img/plus.svg);
  fill: #fff;
  background-position: center center;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  transition: transform 0.2s;
  content: "";
}
.on .plus_button {
  background: #000;
}
.on .plus_button::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.plus_button_wrap {
  position: fixed;
  bottom: 75px;
  right: 15px;
  z-index: 201;
}
.plus_menu_list {
  position: absolute;
  right: -10px;
  bottom: 40px;
  width: 93px;
  opacity: 0;
  transition: all 0.2s;
}
.on .plus_menu_list {
  bottom: 55px;
  z-index: 200;
  opacity: 1;
}

.plus_menu_link {
  display: inline-block;
  padding: 5px 10px;
  color: #fff;
  height: 0;
  font-size: 0;
  box-sizing: border-box;
  opacity: 1;
}
.plus_menu_link:hover {
  opacity: 0.7;
}
.on .plus_menu_link {
  height: 100%;
  font-size: 16px;
}

.on ~ .dimmed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background-color: rgba(0, 0, 0, 0.65);
}

@media screen and (min-width: 768px) {
  .plus_button_wrap {
    right: calc(50% - 369px);
  }
}
.setting_title {
  position: relative;
  padding-left: 20px;
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
  content: "";
}
.setting_title.none {
  padding-left: 0;
}
.setting_title.none::before {
  display: none;
}
.setting_title::before {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url(../img/arrow_left.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: top;
  content: "";
}
.setting_sub_title {
  padding-bottom: 2px;
  border-bottom: 2px solid #515151;
  font-size: 16px;
  font-weight: normal;
  color: #292929;
  font-weight: bold;
}
.setting_list_container:not(:last-of-type) {
  margin-bottom: 30px;
}
.setting_item {
  display: flex;
  font-size: 14px;
  height: 40px;
  border-bottom: 1px solid #D5D5D5;
  align-items: center;
}
.setting_item_title {
  flex: 1;
}
.setting_item_contents {
  color: #ABABAB;
}
.setting_link {
  display: block;
  position: relative;
  width: 100%;
  height: 40px;
  padding: 10px 0;
  box-sizing: border-box;
}
.setting_link:hover {
  background-color: rgba(0, 0, 0, 0.01);
}
.setting_link::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  background-image: url(../img/arrow_right.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  content: "";
}
.setting_footer_container {
  margin: 0 -10px -10px;
}
.setting_footer_container::after {
  display: block;
  clear: both;
  content: "";
}
.setting_footer_wrap:first-of-type {
  float: left;
}
.setting_footer_wrap:last-of-type {
  float: right;
}
.setting_footer_item {
  padding: 10px;
  color: #ABABAB;
}
.setting_footer_item:hover {
  color: #292929;
  text-decoration: underline;
}
.setting_profile_wrap {
  text-align: center;
}
.setting_profile_name {
  position: relative;
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
}
.setting_profile_name_text {
  display: inline-block;
  max-width: calc(100% - 16px);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: top;
}
.setting_profile_name::after {
  display: inline-block;
  position: absolute;
  right: -20px;
  top: 50%;
  width: 14px;
  height: 14px;
  background-image: url(../img/arrow_right.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: translateY(-50%);
  content: "";
}
.setting_profile_list {
  margin-top: 10px;
}
.setting_profile_item {
  display: inline-block;
  font-size: 14px;
  color: #7F7F7F;
}
.setting_profile_item:not(:last-child) {
  position: relative;
  margin-right: 4px;
}
.setting_profile_item:not(:last-child)::after {
  display: block;
  position: absolute;
  right: -6px;
  top: 50%;
  width: 2px;
  height: 2px;
  background-color: #7F7F7F;
  border-radius: 50%;
  transform: translateY(-50%);
  content: "";
}
.setting_profile_item.email {
  display: block;
  word-break: break-all;
}
.setting_profile_item.email::after {
  display: none;
}
.setting_info_list {
  margin-top: 30px;
}
.setting_info_list.border {
  border-top: 2px solid #292929;
}
.setting_info_item {
  padding: 10px 0;
  border-bottom: 1px solid #D5D5D5;
  font-size: 14px;
  box-sizing: border-box;
}
.setting_info_item::after {
  display: block;
  clear: both;
  content: "";
}
.setting_info_item.disabled .setting_info_contents {
  color: #ABABAB;
}
.setting_info_title {
  float: left;
  font-weight: bold;
}
.setting_info_contents {
  position: relative;
  float: right;
  width: calc(100% - 100px);
  word-break: break-all;
  text-align: right;
}
.setting_info_contents[type=text] {
  border: none;
}
.setting_middle_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 30px);
  transform: translate(-50%, -50%);
}

.profile_img {
  width: 100%;
  height: 100%;
  background-image: url(../img/default_img.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid #D5D5D5;
  transition: all 0.2s;
}
.profile_img_upload_wrap:hover .profile_img {
  border-color: #7F7F7F;
}

.profile_img_wrap {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 30px auto 15px;
}
.profile_img_upload {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-image: linear-gradient(to right, #E60012, #B70012);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.2s;
}
.profile_img_upload::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background-image: url(../img/camera.svg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  content: "";
}
.profile_img_upload_wrap:hover .profile_img_upload {
  background-image: linear-gradient(to right, #B70012, #B70012);
}

.profile_img_upload_wrap {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  cursor: pointer;
}

.note_list {
  padding-left: 10px;
}
.note_item {
  position: relative;
  font-size: 14px;
  color: #7F7F7F;
}
.note_item:not(:last-child) {
  margin-bottom: 6px;
}
.note_item::before {
  display: block;
  position: absolute;
  top: 8px;
  left: -7px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #7F7F7F;
  content: "";
}

.board_button {
  display: block;
  width: 100%;
  font-size: 14px;
}
.board_item {
  border-bottom: 1px solid #D5D5D5;
}
.board_item:hover {
  background-color: rgba(0, 0, 0, 0.01);
}
.board_date {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  text-align: left;
  color: #7F7F7F;
}
.board_category {
  display: inline-block;
  line-height: 18px;
  vertical-align: top;
  color: #7F7F7F;
}
.board_title {
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 18px;
  max-height: 36px;
  text-align: left;
}
.on .board_title {
  overflow: initial;
  display: block;
  -webkit-line-clamp: initial;
  -webkit-box-orient: initial;
  line-height: 18px;
  max-height: none;
}

.board_title_text_wrap .board_title {
  display: inline-block;
  flex: 1;
  margin-left: 10px;
  overflow: initial;
  display: block;
  -webkit-line-clamp: initial;
  -webkit-box-orient: initial;
  line-height: 18px;
  max-height: none;
}

.board_title_wrap {
  padding: 15px 0;
  box-sizing: border-box;
}
.board_title_text_wrap {
  display: flex;
  text-align: left;
}
.board_contents {
  margin: 0;
  text-align: left;
}
.board_contents_wrap {
  display: none;
  padding: 10px;
  background-color: #E8E8E8;
  box-sizing: border-box;
}
.on .board_contents_wrap {
  display: block;
}

.board_category_list {
  overflow-y: auto;
  border-bottom: 1px solid #D5D5D5;
  white-space: nowrap;
}
.board_category_item {
  display: inline-block;
}
.board_category_button {
  padding: 15px;
}
.on .board_category_button {
  font-weight: bold;
  font-size: 16px;
}

.percentage {
  height: 100%;
  background-color: #E60012;
}
.percentage_wrap {
  width: 50%;
  height: 5px;
  border-radius: 50px;
  border: 1px solid #D5D5D5;
}
.center .percentage_wrap {
  margin-left: auto;
  margin-right: auto;
}

@media all and (max-width: 300px) {
  .percentage_wrap {
    width: 100%;
  }
}
.percentage_container {
  margin-top: 15px;
}
.detail_team_info .percentage_container {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.percentage_num {
  font-size: 14px;
  font-weight: bold;
  vertical-align: top;
}
.center .percentage_num_wrap {
  text-align: center;
}

@media all and (max-width: 300px) {
  .percentage_num_wrap {
    display: none;
  }
}
.percentage_num_wrap svg {
  width: 18px;
  height: 18px;
}

.detail_team_info {
  display: flex;
}
.detail_team_logo_wrap {
  width: 120px;
  height: 120px;
  border: 1px solid #D5D5D5;
  box-sizing: border-box;
}
.detail_team_logo_wrap img {
  width: 100%;
  height: 100%;
}
.detail_team_contents {
  position: relative;
  margin-left: 10px;
  flex: 1;
}
.detail_match_info {
  margin-top: 20px;
}
.detail_match_list ~ .button {
  margin-top: 30px;
}
.detail_match_item {
  display: flex;
}
.detail_match_item:not(:last-child) {
  margin-bottom: 5px;
}
.detail_match_title {
  margin-right: 10px;
  font-weight: bold;
}
.detail_match_content {
  flex: 1;
}
.detail_match_map {
  margin: 10px 0;
}
/*# sourceMappingURL=maps/style.css.map */
