@charset "UTF-8";
/*-----------------
  フォント
-----------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-family: 16px;
  line-height: 1.5em;
  color: #000;
}

/*-----------------
  共通
-----------------*/
h2 {
  font-size: 32px;
  font-weight: 700;
  color: #393172;
  line-height: 1.5em;
  text-align: center;
  margin-bottom: 20px;
}

h3 {
  font-size: 20px;
  font-weight: 700;
  color: #393172;
  background-color: #e0f1ff;
  border-radius: 3px;
  padding: 12px 15px;
  margin: 50px 0 20px;
}
h3::before {
  content: "◆";
  font-size: 1em;
  color: #393172;
  margin-right: 5px;
}

h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5em;
  padding: 0 15px;
  margin-bottom: 10px;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  padding: 0 15px;
  margin-bottom: 1em;
}

a {
  font-weight: 700;
  color: #393172;
  text-decoration: none;
  border-bottom: 1px solid #393172;
  transition: all 0.2s;
}
a:hover {
  color: #4f4a99;
  border-bottom-color: transparent;
}

.btn {
  font-size: 25px;
  font-weight: 700;
  width: 100%;
  max-width: 390px;
  border-radius: 10px;
  margin: 0 auto 50px;
  text-align: center;
}
.btn.white {
  background-color: #fff;
  border: 4px solid #393172;
  transition: all 0.2s;
}
.btn.white:hover {
  background-color: #f1f0ff;
}
.btn.white a {
  color: #393172;
  display: block;
  padding: 25px 10px;
  border: none;
}
.btn.white a:hover {
  color: #393172;
}
.btn.white a::after {
  content: "\f56d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.3em;
  padding-left: 10px;
}
.btn.purple {
  color: #fff;
  background-color: #393172;
  transition: all 0.2s;
}
.btn.purple:hover {
  background-color: #4f4a99;
}
.btn.purple a {
  display: block;
  padding: 25px 10px;
  border: none;
  color: #fff;
}
.btn.purple a:hover {
  color: #fff;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  h3 {
    font-size: 20px;
    padding: 10px 15px;
    margin: 30px 0 20px;
  }
  h4 {
    padding: 0 5px;
  }
  p {
    padding: 0 5px;
  }
  .btn {
    font-size: 20px;
    border-radius: 8px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/*-----------------
  メインビジュアル
-----------------*/
main {
  background-color: #91c4cb;
}
main .mv {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
main .pc {
  margin-bottom: -23px;
}

@media screen and (max-width: 767px) {
  main .mv .sp {
    margin-bottom: -18vw;
  }
}
/*-----------------
  コンテスト概要
-----------------*/
.overview {
  background-color: #fff;
  padding: 10px 15px 20px;
}
.overview .container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
.overview .title {
  margin: 25px 0;
}
.overview .period {
  margin: 0 auto 30px;
  width: 80%;
  max-width: 480px;
}
.overview p {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 20px;
}
.overview .sponsor {
  font-size: 20px;
  line-height: 40px;
  text-align: center;
}
.overview .logo {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
.overview .logo div {
  padding: 0 20px;
}
.overview .logo img {
  height: 85px;
}

@media screen and (max-width: 767px) {
  .overview {
    padding: 17vw 15px 20px;
  }
  .overview .period {
    width: 90%;
  }
  .overview .logo div {
    padding: 0 10px;
  }
  .overview .logo img {
    height: auto;
  }
}
/*-----------------
  募集要項
-----------------*/
.requirement {
  background-color: #dee0fc;
  background-image: linear-gradient(90deg, #ffffff 1px, transparent 1px), linear-gradient(#ffffff 1px, transparent 1px);
  background-position: 10px 10px;
  background-size: 20px 20px;
  padding: 90px 15px 40px;
}
.requirement .container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto 80px;
  padding: 50px 30px;
  background-color: #ffffff;
  border: 5px solid #393172;
  border-radius: 15px;
}
.requirement ul {
  padding: 0 15px;
  list-style: none;
}
.requirement li {
  margin-bottom: 5px;
  text-indent: -18px;
  padding-left: 18px;
}
.requirement li::before {
  content: "●";
  font-size: 1em;
  color: #000;
  margin-right: 3px;
}
.requirement .apply {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  margin-bottom: 10px;
}
.requirement .apply .app_icon {
  width: 18%;
  padding: 0 0 0 10px;
}
.requirement .apply .app_icon img {
  width: 100%;
}
.requirement .apply .app_text {
  width: 82%;
  padding: 10px 0 0;
}

@media screen and (max-width: 767px) {
  .requirement {
    padding: 50px 15px 30px;
  }
  .requirement .container {
    padding: 30px 15px;
  }
  .requirement ul {
    padding: 0 5px;
  }
  .requirement .apply {
    display: block;
  }
  .requirement .apply .app_icon {
    width: 45%;
    margin: 0 auto;
  }
  .requirement .apply .app_text {
    width: 100%;
  }
}
/*-----------------
  footer
-----------------*/
footer {
  width: 100%;
  background-color: #fff;
}
footer .container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 30px 15px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
}
footer .contact {
  background-color: #666666;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
footer .contact .btn.white {
  width: 100%;
  max-width: 280px;
  margin-bottom: 0;
  border: none;
  border-radius: 3px;
}
footer .contact .btn.white a {
  font-size: 18px;
  color: #251e1c;
  padding: 15px;
  border-radius: 3px;
}
footer .contact .btn.white a::after {
  content: none;
}
footer .contact .btn.white a:hover {
  background-color: #eee;
}
footer .copy .logo {
  width: 45%;
}
footer .copy .logo img {
  width: 100%;
  padding: 0 30px;
}

@media screen and (max-width: 767px) {
  footer .container {
    display: block;
  }
  footer .contact .btn.white {
    margin-top: 20px;
  }
  footer .contact .btn.white a {
    font-size: 18px;
    color: #202020;
    padding: 15px;
    border-radius: 3px;
  }
  footer .contact .btn.white a::after {
    content: none;
  }
  footer .contact .btn.white a:hover {
    background-color: #eee;
  }
  footer .copy .logo {
    width: 80%;
  }
  footer .copy .logo img {
    padding: 0 30px;
  }
}/*# sourceMappingURL=style.css.map */