@charset "UTF-8";
body {
  font-size: 16px;
  font-family: Roboto, "Noto Sans JP", sans-serif;
  color: #333;
  position: relative;
  z-index: 1;
}
body::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/bg001.jpg");
  background-size: cover;
  z-index: -2;
  -webkit-filter: blur(1px);
          filter: blur(1px);
  -webkit-transform: translateX(-30%);
          transform: translateX(-30%);
}
body::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(230, 0, 18, 0.5);
  background: -webkit-linear-gradient(260deg, #e60012 0%, #e60012 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0.25) 90%);
  background: linear-gradient(190deg, #e60012 0%, #e60012 0%, rgba(255, 255, 255, 0.5) 90%, rgba(255, 255, 255, 0.25) 100%);
  z-index: -1;
}

b,
strong,
.bold {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif;
}

.btn {
  display: table;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 2rem;
  text-transform: capitalize;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
  /* background: rgba(255, 255, 255, 0); */
  background: #e60012;
  color: #fff;
  border: 1px solid #e60012;
  line-height: 1;
}
.btn:hover {
  background: rgba(0, 0, 0, 0);
  color: #e60012;
  border: 1px solid #e60012;
}
.btn i.fas,
.btn i.far {
  margin: 0 -0.25rem 0 0.5rem;
}

.wrapper {
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  position: relative;
  z-index: 2;
}

.container {
  width: 100%;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: #0094d7;
}
a:not(.btn) {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
a:not(.btn):hover {
  color: #0094d7;
}

.main {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  position: relative;
  width: calc(100% - 500px);
  margin: 0 0 0 auto;
  min-width: 1050px;
  box-sizing: border-box;
}
.main::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.8) 30%, #fff 60%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 30%, #fff 60%);
  z-index: -1;
}

#global-header {
  width: 100%;
  margin: 0;
  padding: 5rem;
  box-sizing: border-box;
}
#global-header-logo {
  display: block;
}
#global-header-logo img {
  display: block;
  height: 100px;
  width: auto;
  margin: auto 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

#global-body {
  width: 100%;
  padding: 0 5rem;
  box-sizing: border-box;
}
#global-body .container {
  padding: 0 0 5rem;
  box-sizing: border-box;
}
#global-body .container .introduction {
  margin-top: -2rem;
  margin-bottom: 2rem;
}
#global-body .container .introduction p {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1rem;
  letter-spacing: -0.05em;
}
#global-body .container .introduction p:first-of-type {
  margin-top: 0;
}
#global-body .container ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -2.5rem;
  padding: 0 0 5rem;
}
#global-body .container ul li {
  display: block;
  border-top: 1px solid #e60012;
  width: calc(50% - 5rem);
  margin: 2.5rem;
  padding-top: 1rem;
}
#global-body .container ul li dl {
  display: block;
  position: relative;
}
#global-body .container ul li dl::before {
  display: block;
  content: "-";
  min-height: 1em;
  box-sizing: content-box;
  line-height: 1;
  color: #80caeb;
  border-radius: 0.25rem;
  text-indent: 0.5rem;
  letter-spacing: 0.5rem;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: normal;
  text-align: center;
  margin: 0 0 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid #80caeb;
}
#global-body .container ul li dl[data-status=open]::before {
  /* content: "受付中"; */
  content: attr(data-text-add)"開催中";
  color: #fff;
  background: #e60012;
  border-color: #e60012;
}
#global-body .container ul li dl[data-status=before]::before {
  /* content: "受付前"; */
  content: attr(data-text-add)"開催前";
  color: #e60012;
  background: rgba(255, 255, 255, 0);
  border-color: #e60012;
}
#global-body .container ul li dl[data-status=close]::before {
  /* content: "受付終了"; */
  content: attr(data-text-add)"開催終了";
  color: #fff;
  background: #faccd0;
  border-color: #faccd0;
}

#global-body .container ul li dl dt {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.2;
  margin: 1rem 0;
  letter-spacing: -0.05em;
}
#global-body .container ul li dl dt b {
  padding-right: 1rem;
  font-weight: 900;
}
#global-body .container ul li dl dt small {
  display: block;
  font-size: 1rem;
  margin: 0.5rem 0;
}
#global-body .container ul li dl dt img {
  max-width: 400px;
  display: block;
}
#global-body .container ul li dl dt small i {
  font-style: normal;
}
#global-body .container ul li dl dd {
  font-size: 0.9rem;
  font-weight: 400;
  padding-right: 1rem;
}
#global-body .container ul li dl dd + dd {
  margin-top: 1rem;
}

#global-footer {
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0 5rem 5rem;
  box-sizing: border-box;
  font-family: "Oswald", sans-serif;
}
#global-footer .copyright {
  display: block;
  text-align: right;
  font-size: 0.9rem;
  letter-spacing: 0.02rem;
}

@media screen and (max-width: 1200px) {
  .main {
    width: min(540px, 100%);
    min-width: 0;
  }
  .btn {
    width: 100%;
    line-height: 1.5;
    box-sizing: border-box;
  }
  #global-header {
    z-index: 1000;
    background: -webkit-linear-gradient(275deg, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0) 80%);
    background: linear-gradient(175deg, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0) 80%);
    padding: 2.5rem;
    pointer-events: none;
  }
  #global-header-logo {
    width: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
  }
  #global-header-logo > span:first-of-type::after {
    width: 25%;
    height: 1px;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transform: none;
            transform: none;
  }
  #global-header-logo > span:first-of-type img {
    height: 150px;
    margin-bottom: 1rem;
  }
  #global-header-logo img {
    height: 75px;
    width: auto;
    margin: 0 auto;
    -webkit-transform: none;
            transform: none;
  }
  #global-body {
    width: 100%;
    padding: 0 2.5rem;
  }
  #global-body .container {
    padding: 0 0 2.5rem;
    box-sizing: border-box;
  }
  #global-body .container .introduction {
    margin-top: 0;
  }
  #global-body .container ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    margin: 0;
    padding-bottom: 2.5rem;
  }
  #global-body .container ul li {
    width: 100%;
    margin: 1rem 0 2.5rem;
  }
  #global-footer {
    padding: 0 2.5rem 2.5rem;
  }
  #global-footer .copyright {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  wbr {
    display: block;
  }
  #global-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }
}