@charset "utf-8";

:root {
  --main-color: #da752a;
  --sub-color: #172840;
  --darken-color: #080f18;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

img {
  vertical-align: middle;
}

h2, h3 {
  line-height: 1.3;
}

h4 {
  margin-bottom: 20px;
}

.heading {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 20px;
  margin-bottom: 20px;
}

h2 {
  font-family: "alternate-gothic-atf", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 4em;
  color: var(--sub-color);
  word-break: auto-phrase;
}

h2::first-letter {
  color: var(--main-color);
}

h3 {
  margin-bottom: 20px;
}

.heading::after {
  content: "";
  flex: 1;
  height: 5px;
  background-color: var(--sub-color);
}

body {
  color: var(--darken-color);
  background: #f2f2f2;
  line-height: 1.8;
  font-size: 16px;
}

header {
  position: sticky;
  top: 0;
  padding: 10px 0;
  margin: 20px 0;
  background: rgb(242, 242, 242, .8);
  backdrop-filter: blur(5px);
  z-index: 10;
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
  }
  .logo img {
    width: 300px;
  }
  .header-menu {
    font-family: "alternate-gothic-atf", sans-serif;
    font-size: 1.4em;
    line-height: 1;
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
    img {
      margin-bottom: 8px;
      width: 120px;
    }
  }
  a {
    color: #080f18;
    font-size: 1.1em;
  }
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  padding: 100px 10px;
  background: url(img/top-bg.png);
  background-size: cover;
  background-position: center;
  h2 {
    color: #f2f2f2;
    &:first-letter {
      color: #f2f2f2;
    }
  }
}

.menu-btn {
  color: #000;
  position: fixed;
  right: 10px;
  top: 11px;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  z-index: 20;
  transition: all .2s;
  display: none;

  span {
    content: "";
    display: block;
    height: 2px;
    width: 35px;
    background-color: var(--darken-color);
    position: absolute;

    &:before, &:after {
      content: "";
      display: block;
      height: 2px;
      width: 35px;
      background-color: var(--darken-color);
      position: absolute;
    }

    &:before {
      bottom: 12px;
    }

    &:after {
      top: 12px;
    }
  }
}

#menu-btn-check {
  display: none;

  &:checked ~ .menu-btn {
    color: var(--darken-color);
    background: #fff;

    span {
      background-color: rgba(255, 255, 255, 0);

      &::before {
        background: var(--darken-color);
        bottom: 0;
        transform: rotate(45deg);
      }

      &::after {
        background: var(--darken-color);
        top: 0;
        transform: rotate(-45deg);
      }
    }
  }
}

.menu-content {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 15;
  background: var(--main-color);
  transition: all .5s;

  ul {
    padding: 90px 0 0;

    li {
      border-bottom: solid 1px #fff;
      list-style: none;

      a {
        display: block;
        width: 100%;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        padding: 9px 15px 10px 10px;
        position: relative;

        &::before {
          content: "";
          width: 7px;
          height: 7px;
          border-top: solid 2px #fff;
          border-right: solid 2px #fff;
          transform: rotate(45deg);
          position: absolute;
          right: 20px;
          top: 18px;
        }
      }
    }

    ul {
      padding: 0 0 0 20px !important;
    }
  }
}

#menu-btn-check:checked ~ .menu-content {
  left: 0;
}


.top-img {
  text-align: center;
  background: url(img/top-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 70%;
  padding: 0 10px;
  img {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    max-width: 100%;
  }
}

.width {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

section {
  margin: 100px 0;
}

.flex-list {
  display: flex;
  justify-content: space-between;
  .box {
    display: block;
    background: #fff;
    color: var(--darken-color);
    width: 24%;
    .box-link {
      padding: 15px 20px;
    }
    .date {
      font-size: .8em;
    }
    .title {
      display: block;
      margin-top: 5px;
      font-size: 1.1em;
      font-weight: bold;
      line-height: 1.3;
    }
    img {
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
    }
  }
}
.coach-list {
  span {
    font-size: .8em;
  }
}
.column-3 {
  .box {
    width: 32%;
  }
}

.more-link, .more-link-right {
  line-height: 1;
  color: var(--sub-color);
  display: block;
  text-align: center;
  font-family: "alternate-gothic-atf", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.8em;
  margin-top: 30px;
}

.more-link img {
  margin-top: 5px;
}

.more-link-right {
  display: flex;
  justify-content: right;
  font-size: 1.4em;
  gap: 5px;
}

.white {
  color: #f2f2f2;
}

.about {
  color: #f2f2f2;
  background: url(img/about-bg.png);
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 100px 10px;
  line-height: 2;
  h2 {
    color: #f2f2f2;
  }
  h3 {
    font-size: 1.6em;
    margin: 50px 0;
    line-height: 1.8;
    word-break: auto-phrase;
  }
  p {
    margin: 50px 0;
  }
}

.category-box {
  background: #fff;
  display: flex;
  align-items: stretch;
  margin-bottom: 30px;
  .box-text {
    padding: 30px;
    flex: 1;
  }
  .thumb {
    width: 32%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
  }
}

.sponsor-list-wrap {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.sponsor-box {
  background: #fff;
  img {
    width: 100%;
  }
}

.gold {
  width: 48%;
}

.silver {
  width: 32%;
}

.adelante-sponsor {
  width: 24%;
}

.sponsor-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

article {
  margin: 100px 0;
  h2 {
    font-size: 2em;
    line-height: 1.3;
    font-family: Arial,GenJyuuGothicL,Hiragino Kaku Gothic ProN,Hiragino Sans,BIZ UDPGothic,Meiryo,sans-serif;
    letter-spacing: -2px;
  }
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  color: var(--sub-color);
  font-family: sans-serif;
}

.form-wrapper label {
  display: block;
  margin-bottom: 1.5em;
  font-weight: bold;
  color: var(--sub-color);
}

.form-wrapper input[type="text"],
.form-wrapper input[type="email"],
.form-wrapper select,
.form-wrapper textarea {
  width: 100%;
  padding: 0.75em 1em;
  font-size: 1em;
  border: 1px solid var(--sub-color);
  background-color: #fff;
  color: var(--darken-color);
  box-sizing: border-box;
}

.form-wrapper input[type="text"]:focus,
.form-wrapper input[type="email"]:focus,
.form-wrapper select:focus,
.form-wrapper textarea:focus {
  border-color: var(--main-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(218, 117, 42, 0.2);
}

.form-wrapper textarea {
  min-height: 150px;
  resize: vertical;
}

.form-wrapper input[type="submit"] {
  background-color: var(--main-color);
  color: #fff;
  border: none;
  padding: 0.8em 2em;
  font-size: 1em;
  cursor: pointer;
}

.form-wrapper input[type="submit"]:hover {
  background-color: #c5641d;
}

footer {
  padding: 100px 20px;
  color: #f2f2f2;
  background-color: var(--darken-color);
  text-align: center;
}

@media screen and (max-width: 900px) {
  h2 {
    font-size: 3em;
  }
  body {
    font-size: 14px;
  }
  header {
    text-align: center;
    margin: 0;
    padding: 8px 20px;
    .header-inner {
      display: block;
    }
    .logo img {
      width: 170px;
    }
    .header-menu {
      display: none;
    }
  }
  .top-img {
    margin-top: 20px;
  }
  .flex-list {
    flex-wrap: wrap;
    .box {
      width: 48%;
      margin-bottom: 20px;
      .box-link {
        padding: 10px;
      }
    }
  }
  .menu-btn {
    display: flex;
  }
  .about {
    h3 {
      font-size: 1.2em;
    }
    p {
      font-size: 1em;
    }
  }
  .category-box {
    flex-wrap: wrap;
    .box-text {
      width: 100%;
    }
    .thumb {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
  }
  .more-link, .more-link-right {
    font-size: 1.3em;
    img {
      width: 18px;
      height: 18px;
    }
  }
}