@charset "UTF-8";
/**
 * html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
 * Richard Clark (http://richclarkdesign.com)
 * http://cssreset.com
 */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #1f1f1f;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
  outline: none;
  border: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*--------------------------------------------------------------
印刷用
--------------------------------------------------------------*/
@media print {
  html {
    height: 100%;
  }

  body {
    width: 1280px;
    transform: scale(0.8);
    -moz-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform-origin: 0 0;
  }
  body .pagetop {
    display: none;
  }
}
/*--------------------------------------------------------------
htmlタグ指定
--------------------------------------------------------------*/
* {
  min-height: 0vw;
}

html {
  font-size: 62.5%;
  height: -webkit-fill-available;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  -webkit-text-size-adjust: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  overflow-x: hidden;
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.4rem;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5 {
  font-weight: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-weight: inherit;
}

ul, li {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: inherit;
}

a {
  cursor: pointer;
  color: currentColor;
}

/*------------------------------layout------------------------------*/
.wrapper, .content {
  position: relative;
}
.inner {
  width: calc(100% - 100px);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .inner {
    width: calc(100% - 44px);
  }
}

/*------------------------------header------------------------------*/
.header {
  position: relative;
  z-index: 1000;
  margin: 0 auto;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 31px 50px 0px;
}
.header__logo {
  position: relative;
  z-index: 1000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 26px;
  font-size: 1.4rem;
}

/*------------------------------footer------------------------------*/
.footer {
  margin-top: 100px;
  position: relative;
  z-index: 10;
  border-top: 5px solid #2ca0b5;
}
@media screen and (max-width: 1024px) {
  .footer {
    margin-top: 67px;
  }
}
.footer__inner {
  width: calc(100% - 100px);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 2em 0;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .footer__inner {
    width: calc(100% - 44px);
  }
}
.footer__inner .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.footer__inner .copy {
  margin-top: 10px;
  font-size: 1.2rem;
}

/*------------------------------project------------------------------*/
.c-link {
  color: #2ca0b5;
}
.c-link.icon {
  display: inline-flex;
  align-items: center;
}
.c-link.icon::after {
  content: "";
  display: block;
  width: 0.6em;
  height: 0.6em;
  border-top: 0.1em solid currentColor;
  border-right: 0.1em solid currentColor;
  margin-left: 0.2em;
  transform: rotate(45deg);
}

.contact-block {
  padding: 40px;
  background: white;
  border-radius: 40px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .contact-block {
    font-size: 1.4rem;
    padding: 40px 20px;
  }
}
.contact-block .name {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .contact-block .name {
    font-size: 1.6rem;
  }
}
.contact-block .mail {
  margin: 20px 0;
  color: #2ca0b5;
  font-size: 3rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .contact-block .mail {
    font-size: 2rem;
  }
}
.contact-block .mail svg {
  color: currentColor;
}
@media screen and (max-width: 1024px) {
  .contact-block .mail svg {
    width: 24px;
  }
}
.contact-block .terms {
  margin-top: 20px;
  font-size: 1.6rem;
  text-align: left;
  border-radius: 20px;
  border: 2px solid #a5d4e3;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .contact-block .terms {
    border-radius: 10px;
  }
}
.contact-block .terms .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 20px 30px;
}
@media screen and (max-width: 1024px) {
  .contact-block .terms .accordion-header {
    font-size: 1.4rem;
    padding: 10px 20px;
  }
}
.contact-block .terms .accordion-header .icon {
  position: relative;
  display: block;
  width: 1em;
  height: 1em;
}
.contact-block .terms .accordion-header .icon::before, .contact-block .terms .accordion-header .icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: opacity 0.4s ease;
}
.contact-block .terms .accordion-header .icon::after {
  transform: rotate(90deg);
}
.contact-block .terms .accordion-header.active .icon::after {
  opacity: 0;
}
.contact-block .terms .accordion-content {
  display: none;
  border-top: 2px solid #e5eff2;
  padding: 20px 30px;
}
@media screen and (max-width: 1024px) {
  .contact-block .terms .accordion-content {
    font-size: 1.2rem;
    padding: 10px 20px 20px;
  }
}

/*------------------------------title------------------------------*/
/*------------------------------button------------------------------*/
.c-button {
  width: min(600px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75em;
  padding: 1.5em 0.5em;
  border-radius: 9999px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: white;
  background-color: #2ca0b5;
  border: 2px solid #2ca0b5;
  transition: color ease 0.4s, background-color ease 0.4s;
}
.c-button.w300 {
  width: min(300px, 100%);
}
.c-button:hover {
  color: #2ca0b5;
  background-color: white;
}
.c-button .icon {
  fill: currentColor;
  stroke-width: 0;
}
@media screen and (max-width: 1024px) {
  .c-button {
    font-size: 2rem;
  }
}

.c-button-back {
  position: relative;
  width: min(300px, 100%);
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 500;
  color: #2ca0b5;
  border: 1px solid #b5cce3;
  border-radius: 9999px;
}
.c-button-back::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-top: 2px solid #2ca0b5;
  border-left: 2px solid #2ca0b5;
  transform: rotate(-45deg);
}

.c-button-submit {
  position: relative;
  width: min(300px, 100%);
  height: 70px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  border: 1px solid #2ca0b5;
  background-color: #2ca0b5;
  border-radius: 15px;
  cursor: pointer;
  outline: 0;
  transition: background-color ease 0.4s, color ease 0.4s;
}
.c-button-submit .arrow {
  position: absolute;
  right: 33px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
  transition: transform ease 0.4s;
}
.c-button-submit .arrow path {
  fill: #2ca0b5;
}
.c-button-submit::after {
  content: "";
  width: 50px;
  height: 50px;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 100%;
  background-color: white;
  z-index: 1;
}
.c-button-submit:hover {
  color: #2ca0b5;
  background-color: white;
}
.c-button-submit:hover::after {
  background-color: #e7f0f7;
}

.c-table {
  margin: 80px auto 60px;
  line-height: 1.8;
  border: 2px solid white;
  border-radius: 40px;
  overflow: hidden;
}
h2 + .c-table {
  margin-top: 40px;
}

.c-table th, .c-table td {
  background-color: #f5fafa;
  vertical-align: middle;
  padding: 20px 30px;
}
.c-table tr:first-of-type th, .c-table tr:first-of-type td {
  padding-top: 30px;
}
.c-table tr:last-of-type th, .c-table tr:last-of-type td {
  padding-bottom: 30px;
}
.c-table th {
  width: 22%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  font-size: 1.8rem;
  border: 2px solid white;
}
.c-table td {
  border: 2px solid white;
}
@media screen and (max-width: 1024px) {
  .c-table {
    border-radius: 0;
  }
  .c-table tr, .c-table th, .c-table td {
    display: block;
    width: 100%;
  }
  .c-table th {
    font-size: 1.6rem;
    padding: 1em !important;
  }
  .c-table td {
    background: white;
    padding: 20px 0px 30px !important;
  }
}
.c-table .theme {
  font-size: 4rem;
}
@media screen and (max-width: 1024px) {
  .c-table .theme {
    font-size: 2.8rem;
    font-weight: 700;
  }
}
.c-table .schedule {
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .c-table .schedule {
    font-size: 1.6rem;
    font-weight: 700;
  }
}
.c-table .red {
  color: #d35f4a;
}

/*------------------------------form------------------------------*/
.c-form {
  margin-top: 30px;
}
.c-form dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #EAEAEA;
}
@media screen and (max-width: 1024px) {
  .c-form dl {
    flex-direction: column;
    align-items: flex-start;
    background-color: inherit;
  }
}
.c-form dl + dl {
  margin-top: 20px;
}
.c-form dl dt, .c-form dl dd {
  padding: 30px;
}
@media screen and (max-width: 1024px) {
  .c-form dl dt, .c-form dl dd {
    padding: 0;
  }
}
.c-form dl dt {
  flex-shrink: 0;
  width: 290px;
}
@media screen and (max-width: 1024px) {
  .c-form dl dt {
    width: 100%;
  }
}
.c-form dl dt label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px 26px;
}
.c-form dl dt .required {
  flex-shrink: 0;
  display: block;
  color: #2ca0b5;
}
@media screen and (max-width: 1024px) {
  .c-form dl dt .required {
    font-size: 1.2rem;
  }
}
.c-form dl dd {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .c-form dl dd {
    margin-top: 10px;
  }
}
.c-form dl dd::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: calc(100% - 40px);
  background-color: white;
}
@media screen and (max-width: 1024px) {
  .c-form dl dd::before {
    display: none;
  }
}
.c-form input, .c-form select, .c-form textarea {
  font-size: 1.6rem;
  line-height: 1;
}
.c-form__text, .c-form__textarea {
  width: min(600px, 100%);
  padding: 18px;
  border-radius: 10px;
  background-color: white;
  font-size: 16px;
  outline: 0;
  border: 0;
}
@media screen and (max-width: 1024px) {
  .c-form__text, .c-form__textarea {
    background-color: #EAEAEA;
  }
}
.c-form__textarea {
  width: 100%;
  height: 200px;
  line-height: 1.5;
}
.c-form__select {
  width: min(300px, 20vw);
  position: relative;
  font-size: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.c-form__select::after {
  content: "";
  position: absolute;
  right: 17px;
  top: calc(50% - 6px);
  width: 8px;
  height: 8px;
  border-bottom: 1px solid black;
  border-right: 1px solid black;
  transform: rotate(45deg);
}
.c-form__select select {
  color: #333;
  width: 100%;
  padding: 16px 18px;
  background-color: #EAEAEA;
  border-radius: 10px;
}
.c-form__select.small {
  width: min(250px, 17vw);
}
.c-form input[type=checkbox] {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: clamp(5px, 0.8vw, 10px);
  background-color: #EAEAEA;
  margin-right: 5px;
}
.c-form input[type=checkbox]:checked {
  position: relative;
  border-color: #333;
  background-color: #333;
}
.c-form input[type=checkbox]:checked::before {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 10px;
  width: 9px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
.c-form .radio-group {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}
.c-form .radio-group .col-6 {
  width: 50%;
}
.c-form .radio-group .col-4 {
  width: 33.333%;
}
.c-form .radio-group .col-3 {
  width: 25%;
}
.c-form input[type=radio] {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: white;
  margin-right: 5px;
}
.c-form input[type=radio]:checked {
  position: relative;
  border-color: #333;
  background-color: #333;
}
.c-form input[type=radio]:checked::before {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 10px;
  width: 9px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
.c-form__submit {
  margin-top: 50px;
}

[data-target] {
  transition: transform 0.8s ease 0.2s, opacity 0.8s ease 0.2s, background-color 0.2s, color 0.2s;
  opacity: 0;
}
[data-target].action {
  opacity: 1;
}
[data-target][data-slideup] {
  transform: translateY(1.56vw) scale(1);
}
[data-target][data-slideup].action {
  transform: translateY(0);
}
[data-target][data-slidedown] {
  transform: translateY(-1.56vw) scale(1);
}
[data-target][data-slidedown].action {
  transform: translateY(0);
}
[data-target][data-slideleft] {
  transform: translateX(1.56vw) scale(1);
}
[data-target][data-slideleft].action {
  transform: translateX(0);
}
[data-target][data-slideright] {
  transform: translateX(-1.56vw) scale(1);
}
[data-target][data-slideright].action {
  transform: translateX(0);
}

[data-lazy] {
  opacity: 0;
}
[data-lazy].action {
  transition: opacity 0.4s ease;
  opacity: 1;
}

[data-dummy] {
  color: tomato;
}

/*--------------------------------------------------------------
共通 class
--------------------------------------------------------------*/
/* settings */
.pc-hidden {
  display: none;
}
@media screen and (max-width: 1024px) {
  .pc-hidden {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .sp-hidden {
    display: none !important;
  }
}

/* text-align */
body .tac {
  text-align: center;
}
body .tal {
  text-align: left;
}
body .tar {
  text-align: right;
}

/* width % */
.w10 {
  width: 10%;
}

.w20 {
  width: 20%;
}

.w30 {
  width: 30%;
}

.w40 {
  width: 40%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

/* spacer xs,sm,md,lg,xl */
body .mt-0 {
  margin-top: 0px;
}
body .mb-0 {
  margin-bottom: 0px;
}
body .mr-0 {
  margin-right: 0px;
}
body .ml-0 {
  margin-left: 0px;
}

body .mt-10 {
  margin-top: 10px;
}
body .mb-10 {
  margin-bottom: 10px;
}
body .mr-10 {
  margin-right: 10px;
}
body .ml-10 {
  margin-left: 10px;
}

body .mt-20 {
  margin-top: 20px;
}
body .mb-20 {
  margin-bottom: 20px;
}
body .mr-20 {
  margin-right: 20px;
}
body .ml-20 {
  margin-left: 20px;
}

body .mt-sm {
  margin-top: clamp(20px, 3vw, 40px);
}
body .mb-sm {
  margin-bottom: clamp(20px, 3vw, 40px);
}
body .mr-sm {
  margin-right: clamp(20px, 3vw, 40px);
}
body .ml-sm {
  margin-left: clamp(20px, 3vw, 40px);
}

body .mt-md {
  margin-top: clamp(30px, 5vw, 60px);
}
body .mb-md {
  margin-bottom: clamp(30px, 5vw, 60px);
}
body .mr-md {
  margin-right: clamp(30px, 5vw, 60px);
}
body .ml-md {
  margin-left: clamp(30px, 5vw, 60px);
}

body .mt-lg {
  margin-top: clamp(60px, 6.66vw, 80px);
}
body .mb-lg {
  margin-bottom: clamp(60px, 6.66vw, 80px);
}
body .mr-lg {
  margin-right: clamp(60px, 6.66vw, 80px);
}
body .ml-lg {
  margin-left: clamp(60px, 6.66vw, 80px);
}

body .mt-xl {
  margin-top: clamp(80px, 8.33vw, 100px);
}
body .mb-xl {
  margin-bottom: clamp(80px, 8.33vw, 100px);
}
body .mr-xl {
  margin-right: clamp(80px, 8.33vw, 100px);
}
body .ml-xl {
  margin-left: clamp(80px, 8.33vw, 100px);
}

/*--------------------------------------------------------------
indexのみ
--------------------------------------------------------------*/
h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 4rem;
  line-height: 1.3;
  color: #2ca0b5;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  h2 {
    font-size: 2.2rem;
  }
}

.section {
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  .section {
    margin-top: 70px;
  }
}
.section.is-bg {
  padding: 100px 0;
  background: #f5fafa;
}
@media screen and (max-width: 1024px) {
  .section.is-bg {
    padding: 70px 0;
  }
}

.outline h3 {
  margin: 20px auto;
  width: 140px;
  padding: 2px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  line-height: 1.3;
  text-align: center;
  color: white;
  background: #2e636c;
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .outline h3 {
    width: 120px;
    font-size: 1.6rem;
  }
}
.outline h3:not(:first-of-type) {
  margin-top: 40px;
}
.outline p {
  line-height: 1.8;
}
.outline .schedule {
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .outline .schedule {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .outline img {
    width: min(300px, 100%);
  }
}

.caution {
  font-size: 1.4rem;
  line-height: 1.8;
}

.caution-list {
  font-size: 1.4rem;
  line-height: 1.8;
}
.caution-list li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 3px;
}
.caution-list li::before {
  content: "※";
}
.caution-list.is-center li {
  justify-content: center;
}

.award {
  margin-top: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .award {
    flex-wrap: wrap;
  }
}
.award li {
  flex: 1;
  background: white;
  border: 2px solid;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .award li {
    flex: auto;
    width: calc(50% - 20px);
  }
}
.award .block {
  position: relative;
}
.award .block.banner-gp::before {
  content: "グランプリ";
  position: absolute;
  top: -14px;
  left: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 30px;
  font-size: 1.3rem;
  color: white;
  background: #2e636c;
  border-radius: 5px;
  transform: rotate(-4deg);
}
.award .block.banner-gp::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 5px 0 5px;
  border-color: #2e636c transparent transparent transparent;
  display: block;
  position: absolute;
  top: 17px;
  left: 20px;
  transform: rotate(-4deg);
}
.award .block.banner-gp2::before {
  content: "準グランプリ";
  position: absolute;
  top: -14px;
  left: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 30px;
  font-size: 1.3rem;
  color: white;
  background: #2e636c;
  border-radius: 5px;
  transform: rotate(-4deg);
}
.award .block.banner-gp2::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 5px 0 5px;
  border-color: #2e636c transparent transparent transparent;
  display: block;
  position: absolute;
  top: 17px;
  left: 20px;
  transform: rotate(-4deg);
}
.award .block .win {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  position: absolute;
  top: -5px;
  right: -5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: currentColor;
  border-radius: 50%;
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .award .block .win {
    font-size: 1.8rem;
    width: 44px;
    height: 44px;
  }
}
.award .block .win p {
  color: white;
}
.award .block .win span {
  font-size: 1.4rem;
  margin-bottom: -3px;
  margin-left: 2px;
}
.award h3 {
  padding: 30px 0;
  font-size: 3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .award h3 {
    font-size: 2rem;
    padding: 30px 0 20px;
  }
}
.award .text {
  font-weight: 700;
  text-align: center;
  color: #333;
  border-top: 1px solid #eee;
  padding: 20px 10px;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .award .text {
    font-size: 1.6rem;
  }
}
.award .color1 {
  color: #c7a728;
}
.award .color2 {
  color: #9ea1a1;
}
.award .color3 {
  color: #925b3a;
}
.award .color4 {
  color: #43a9cf;
}

.result p {
  line-height: 1.8;
}
.result .list {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .result .list {
    margin-bottom: 30px;
  }
}
.result .list li {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .result .list li {
    margin-top: 30px;
  }
}
.result .list .title {
  font-size: 2rem;
  font-weight: bold;
  padding: 10px;
  border-bottom: 3px solid;
}
@media screen and (max-width: 1024px) {
  .result .list .title {
    font-size: 1.6rem;
    padding: 5px;
  }
}
.result .list .color1 {
  background: #e6cd6c;
  border-bottom-color: #c7a728;
}
.result .list .color2 {
  background: #cfd1d1;
  border-bottom-color: #9ea1a1;
}
.result .list .color3 {
  background: #d0a68d;
  border-bottom-color: #925b3a;
}
.result .list .color4 {
  background: #95d3ea;
  border-bottom-color: #43a9cf;
}
.result .list img {
  margin-top: 30px;
  width: min(1000px, 100%);
  max-height: 1000px;
  object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .result .list img {
    margin-top: 20px;
    max-height: 500px;
  }
}

/*# sourceMappingURL=index.css.map */
