@charset "UTF-8";
/* A Modern CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

ul[class], ol[class] {
  padding: 0;
}

body, h1, h2, h3, h4, p, ul[class], ol[class], figure, blockquote, dl, dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul[class], ol[class] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 839px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Hiragino Sans", "ヒラギノ角ゴ  ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  line-height: 2;
  color: #2c2e31;
  box-sizing: border-box;
}

.hero {
  background: #D5E8E2;
  padding: 80px 40px;
  text-align: center;
  margin-bottom: 40px;
}

.hero-inner {
  background: #ffffff;
  padding: 60px;
  max-width: 1120px;
  margin: 0 auto;
}

.hero-label {
  font-size: 20px;
  color: #2c2e31;
  margin-bottom: 8px;
}

.hero-title {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-title img {
  width: 100%;
  height: auto;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

.section {
  background: white;
  padding: 20px 0px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title-text {
  font-size: 26px;
  font-weight: 600;
  margin: 0 auto;
  padding-bottom: 14px;
  color: #2c2e31;
  border-bottom: 8px solid #D5E8E2;
}

.intro-text {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.requirements {
  margin-top: 40px;
}

.requirement-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  margin-bottom: 20px;
}

.requirement-label-text {
  display: inline-block;
  line-height: 1.4;
  margin-top: 10px;
  padding: 0 10px;
  background: #D5E8E2;
  font-weight: 600;
  color: #2c2e31;
  font-size: 20px;
}

.requirement-content {
  font-size: 16px;
  color: #2c2e31;
  margin-top: 6px;
}

.address {
  background: #E9F4F0;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 24px 32px;
  text-align: justify;
}

.download-button {
  display: block;
  box-sizing: content-box;
  width: auto;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
  background-color: #5DAD94;
  color: #ffffff;
  margin-top: 8px;
  margin-bottom: 20px;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}
.download-button:hover {
  opacity: 0.8;
}

.large-text {
  font-size: 24px;
}

.judges {
  width: 420px;
  margin: 0 auto;
}

.judge-name {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0px;
  color: #2c2e31;
}
.judge-name.big {
  font-size: 28px;
}

.judge-role {
  font-size: 16px;
  color: #2c2e31;
}
.judge-role.big {
  font-size: 20px;
}

.past-winners {
  font-size: 16px;
  line-height: 2;
  text-align: center;
  margin-bottom: 40px;
}

.schedule {
  background: #D5E8E2;
  margin: 40px 0 0;
  padding: 40px 0 160px;
}

.schedule-title {
  text-align: center;
  margin-bottom: 40px;
}

.schedule-title-text {
  font-size: 26px;
  font-weight: 600;
  margin: 0 auto;
  padding-bottom: 14px;
  color: #2c2e31;
  border-bottom: 8px solid #ffffff;
}

.schedule-box {
  background: white;
  padding: 40px 100px;
}

.schedule-item {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.schedule-item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 839px) {
  body {
    padding: 0px;
  }
  .hero {
    padding: 20px;
    margin-bottom: 20px;
  }
  .hero-inner {
    padding: 20px;
  }
  .hero-title {
    width: 80%;
  }
  .hero-title img {
    width: 100%;
  }
  .section {
    padding: 10px 20px;
  }
  .section-title {
    margin-bottom: 32px;
  }
  .section-title small {
    font-size: 14px;
  }
  .section-title-text {
    font-size: 20px;
    border-bottom: 5px solid #D5E8E2;
  }
  .intro-text {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .requirements {
    margin-top: 20px;
  }
  .requirement-item {
    grid-template-columns: 100px auto;
    gap: 20px;
  }
  .requirement-label-text {
    font-size: 18px;
  }
  .requirement-content {
    font-size: 14px;
    max-width: 100%;
    word-break: break-all;
  }
  .large-text {
    font-size: 20px;
  }
  .judges {
    width: 100%;
  }
  .judge-name {
    font-size: 16px;
  }
  .judge-role {
    font-size: 14px;
  }
  .judge-profile {
    font-size: 15px;
  }
  .past-winners {
    font-size: 15px;
  }
  .schedule-title-text {
    font-size: 20px;
  }
  .schedule-item {
    font-size: 15px;
  }
  .schedule-box {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 20px 20px;
  }
}
.address {
  background: #E9F4F0;
  box-sizing: border-box;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 10px 20px;
  text-align: justify;
}

.download-button {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  background-color: #5DAD94;
  color: #ffffff;
  margin-top: 8px;
  margin-bottom: 20px;
  padding: 10px 20px;
  border-radius: 6px;
  line-height: 1.4;
  text-decoration: none;
  font-weight: bold;
}
.download-button:hover {
  opacity: 0.8;
}/*# sourceMappingURL=style.css.map */