/* --------------------------
 * loading
-------------------------- */
#loading {
  background-color: #FFFFFF;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  transition: 2s ease all;
}
#loading.active {
  opacity: 0;
}

#bgCover {
  display: block;
  width: 100%;
  height: 100vh;
  background: rgb(255, 255, 255);
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  transition: all ease 1s;
  opacity: 1;
  transform: scale(1);
}
#bgCover .inner {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -640px;
  width: 1280px;
  height: 100%;
  background-image: url(../../assets/images/bg_img.png);
  background-position: center;
  background-size: 1280px 760px;
  background-repeat: repeat-y;
}
@media screen and (max-width: 767px) {
  #bgCover .inner {
    background-size: 640px 380px;
  }
}
#bgCover.fadeout {
  opacity: 0;
  transform: scale(2);
}

/* --------------------------
* mainVisual
-------------------------- */
#mainVisual {
  position: relative;
  display: block;
  width: 100%;
  height: 100vh;
}
#mainVisual .catchcopy {
  text-align: center;
  display: block;
  width: 346.5px;
  height: 34px;
  line-height: 1.3;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  #mainVisual .catchcopy {
    width: 290px;
    height: 29px;
  }
}
#mainVisual .mark {
  width: 50px;
  height: auto;
  display: block;
  position: absolute;
  opacity: 0;
  bottom: 0px;
  right: 72px;
  transition: 0.5s ease all;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  #mainVisual .mark {
    bottom: 15px;
    right: 30px;
    width: 40px;
  }
}
#mainVisual .scrl {
  height: 100px;
  width: 50px;
  z-index: 9;
  display: block;
  position: absolute;
  bottom: -100px;
  left: 50%;
  margin-left: -25px;
  transition: 0.5s 0.5s ease all;
}
@media screen and (max-width: 767px) {
  #mainVisual .scrl {
    height: 70px;
    bottom: -70px;
  }
}
#mainVisual .scrl a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
#mainVisual .scrl a span {
  height: 100%;
  position: absolute;
  bottom: 0px;
  left: 50%;
  margin-left: -0.5px;
  width: 1px;
  z-index: 100;
  overflow: hidden;
}
#mainVisual .scrl a span::before {
  content: "";
  height: 100%;
  background-color: #FFFFFF;
  position: absolute;
  top: 0px;
  left: 50%;
  margin-left: -0.5px;
  width: 1px;
  z-index: 100;
  animation: scrl 3s infinite;
}
#mainVisual.active .mark {
  opacity: 1;
  bottom: 72px;
}
@media screen and (max-width: 767px) {
  #mainVisual.active .mark {
    bottom: 30px;
  }
}
#mainVisual.active .scrl {
  bottom: 0px;
}

/* --------------------------
* content
-------------------------- */
#content {
  padding: 180px 0 0px;
}
@media screen and (max-width: 767px) {
  #content {
    padding: 50px 0 25px;
  }
}
#content .link {
  max-width: 720px;
  height: 130px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 1024px) {
  #content .link {
    height: 110px;
  }
}
@media screen and (max-width: 767px) {
  #content .link {
    height: auto;
    margin: 0 0 75px;
  }
}
#content .link a {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  background-color: #1E00FF;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.8;
  font-size: 2.4rem;
  padding-top: 30px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  #content .link a {
    font-size: 2.1rem;
    padding-top: 25px;
    line-height: 1.7;
  }
}
@media screen and (max-width: 767px) {
  #content .link a {
    font-size: 1.6rem;
    padding: 17px 0 15px;
    line-height: 1.5;
  }
}
#content .link a:hover {
  background-color: #000000;
}
#content .link a span {
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  #content .link a span {
    display: block;
    margin-left: 0px;
  }
}
#content .link a span.min {
  font-size: 1.6rem;
  display: block;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  #content .link a span.min {
    font-size: 1.3rem;
  }
}

/* --------------------------
* boxLink
-------------------------- */
.boxLink {
  margin-bottom: 100px;
  display: block;
}
@media screen and (max-width: 767px) {
  .boxLink {
    margin-bottom: 50px;
  }
}
.boxLink a {
  display: block;
  background-color: #000000;
  color: #FFFFFF;
  font-weight: 700;
  text-align: center;
  font-size: 2.1rem;
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  .boxLink a {
    font-size: 1.6rem;
    padding: 25px 0;
    line-height: 1.6;
  }
}
.boxLink a:hover {
  background-color: #333333;
}

/* --------------------------
* overview
-------------------------- */
#overview h2 {
  font-size: 4.8rem;
  margin-bottom: 15px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #overview h2 {
    font-size: 3.4rem;
    margin-bottom: 10px;
  }
}
#overview .subTitle {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #overview .subTitle {
    font-size: 1.6rem;
  }
}
#overview .period {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #overview .period {
    margin-bottom: 25px;
  }
}
#overview .period h3 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #overview .period h3 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
#overview .period p {
  font-size: 2.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #overview .period p {
    font-size: 1.6rem;
  }
}
#overview .period p br {
  display: none;
}
@media screen and (max-width: 1023px) {
  #overview .period p br {
    display: block;
  }
}
#overview .period .note {
  color: red;
  font-weight: bold;
  font-size: 1.6rem;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  #overview .period .note {
    font-size: 1.4rem;
  }
}
#overview .award {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  #overview .award {
    margin-bottom: 25px;
  }
}
#overview .award h3 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #overview .award h3 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
#overview .award h4 {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #overview .award h4 {
    font-size: 1.6rem;
  }
}
#overview .award p {
  margin-bottom: 15px;
  margin-top: 5px;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #overview .award p {
    font-size: 1.4rem;
  }
}

/* --------------------------
* committee
-------------------------- */
#committee .secTitle {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  #committee .secTitle {
    font-size: 2.6rem;
  }
}
#committee .secTitle span {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #committee .secTitle span {
    font-size: 1.1rem;
  }
}
#committee h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  #committee h2 {
    font-size: 2rem;
    margin-bottom: 24px;
  }
}
#committee ul {
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #committee ul {
    padding-bottom: 35px;
  }
}
#committee ul li {
  margin-bottom: 25px;
}
#committee ul li h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
  #committee ul li h3 {
    font-size: 1.6rem;
  }
}
#committee ul li:last-child {
  margin-bottom: 0;
}

/* --------------------------
* vision
-------------------------- */
#vision .secTitle {
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  #vision .secTitle {
    font-size: 3rem;
  }
}
#vision .textArea {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  #vision .textArea {
    margin-bottom: 40px;
  }
}

/* --------------------------
* sponsor
-------------------------- */
#sponsor {
  padding: 35px 0;
  font-size: 1.4rem;
  border-top: 1px solid #000000;
  background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  #sponsor {
    padding: 40px 35px 25px;
  }
}
#sponsor .item dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
#sponsor .item dl dt {
  width: 30%;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #sponsor .item dl dt {
    text-align: right;
    padding-right: 45px;
    width: 40%;
  }
}
#sponsor .item dl dd {
  width: 70%;
}
@media screen and (max-width: 767px) {
  #sponsor .item dl dd {
    width: 60%;
  }
}
#sponsor .item dl dd ul li {
  line-height: 3;
  text-align: right;
  display: block;
}
@media screen and (max-width: 767px) {
  #sponsor .item dl dd ul li {
    text-align: left;
  }
}
#sponsor .item dl dd ul li a:hover {
  opacity: 0.7;
}
#sponsor .item dl dd ul li a figure.ruinart {
  width: 45%;
}/*# sourceMappingURL=index.css.map */