@font-face {
  font-family: Lato;
  src: url(../font/Lato-Regular.woff) format("woff");
  font-weight: normal;
}
@font-face {
  font-family: Lato;
  src: url(../font/Lato-Bold.woff) format("woff");
  font-weight: bold;
}
#other .award .award__list::before, #other .overview .c-accordion .c-accordion__item::before, #other .contact__area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10%;
  min-width: 52px;
  height: auto;
  background-color: #3BDB7966;
  clip-path: polygon(0 0, 100% 0, 55% 100%, 0% 100%);
  aspect-ratio: 3/1;
}
@media screen and (max-width: 900px) {
  #other .award .award__list::before, #other .overview .c-accordion .c-accordion__item::before, #other .contact__area::before {
    min-width: 40px;
  }
}

* {
  font-family: "Noto Sans JP", sans-serif;
}

.-flex {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 900px) {
  .-flex {
    display: block;
  }
}

.scroll {
  position: absolute;
  right: 80px;
  bottom: 70px;
  color: #F8E86C;
  font-size: 12px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transform-origin: top left;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 900px) {
  .scroll {
    right: 0;
    bottom: 20px;
    font-size: 6px;
  }
}
.scroll .scroll__inner {
  position: relative;
}
.scroll .scroll__inner::before {
  position: absolute;
  left: -2px;
  bottom: -45px;
  height: 240px;
  width: 1px;
  background-color: #F8E86C;
  content: "";
}
@media screen and (max-width: 900px) {
  .scroll .scroll__inner::before {
    bottom: -23px;
    height: 120px;
  }
}
.scroll .scroll__inner::after {
  position: absolute;
  left: -2px;
  bottom: -45px;
  height: 10px;
  width: 2px;
  background-color: rgba(255, 255, 255, 0.8);
  content: "";
  animation: scroll 3s infinite ease-out;
}
@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-230px);
  }
}
@media screen and (max-width: 900px) {
  .scroll .scroll__inner::after {
    bottom: -23px;
  }
  @keyframes scroll {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-110px);
    }
  }
}

.content {
  padding: 100px 0 250px;
  color: #FFF;
}
@media screen and (max-width: 900px) {
  .content {
    padding: 70px 0 200px;
  }
}

section {
  margin-bottom: 100px;
}
@media screen and (max-width: 900px) {
  section {
    margin-bottom: 40px;
  }
}
section:last-of-type {
  margin-bottom: 0;
}
section > div:last-of-type::before {
  content: "";
  position: absolute;
  bottom: -160px;
  left: 0;
  z-index: -1;
  width: 100px;
  height: 300px;
  margin: 0 calc(50% - 50vw);
  background: url(../images/future/bg_decoration-bottom.svg);
  background-size: cover;
  opacity: 0.8;
}
@media screen and (max-width: 900px) {
  section > div:last-of-type::before {
    bottom: -70px;
  }
}

article {
  position: relative;
  margin-top: 78px;
  padding-top: 0;
}
article::before {
  content: "";
  position: fixed;
  z-index: -10;
  width: 100vw;
  height: 100vh;
  background: url(../images/future/mv.jpg);
  background-position: center;
  background-size: cover;
}

.title__firstly {
  margin-bottom: 50px;
  font-size: 50px;
  font-weight: bold;
  text-shadow: 0 0 10px #3BDB79;
}
@media screen and (max-width: 900px) {
  .title__firstly {
    margin-bottom: 45px;
    font-size: 35px;
  }
}

.title__secondary {
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .title__secondary {
    margin-bottom: 25px;
    font-size: 19px;
  }
}

.title__tertiary {
  font-size: 15px;
  font-weight: bold;
}

.button__area {
  margin-top: 60px;
}
.button__area .button__item {
  width: fit-content;
  margin: auto;
}
@media screen and (max-width: 900px) {
  .button__area .button__item {
    width: auto;
  }
}
.button__area .button__item > a {
  position: relative;
  margin-bottom: 30px;
  background-color: #000;
  width: 100%;
  height: 70px;
  min-width: 400px;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  border: solid 2px #3BDB79;
  box-shadow: 0px 4px 4px 0px #00000040 inset, 0px 0px 10px 0px #FFFFFF80;
  text-shadow: 0 0 10px #3BDB79;
  transition: border 0.5s;
}
@media screen and (max-width: 900px) {
  .button__area .button__item > a {
    min-width: auto;
    width: 90%;
    margin: auto;
  }
}
.button__area .button__item > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  transition: right 0.3s, border 0.5s;
  transform: rotate(45deg);
  border-top: solid 2px #3BDB79;
  border-right: solid 2px #3BDB79;
}
.button__area .button__item > a:hover {
  border: solid 2px #94FBBC;
  opacity: 1;
}
.button__area .button__item > a:hover::before {
  right: 15px;
  border-top: solid 2px #94FBBC;
  border-right: solid 2px #94FBBC;
}

.mainVisual {
  position: relative;
  width: 100vw;
  height: calc(100vh - 78px);
  text-align: center;
}
@media screen and (max-width: 900px) {
  .mainVisual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: calc(100vh - 76px);
    height: auto;
    padding: 80px 0;
  }
}
@media screen and (max-height: 700px) {
  .mainVisual {
    height: 100%;
    min-height: 600px;
    margin-bottom: 30px;
  }
}
.mainVisual .deadline {
  color: #FFF;
  margin: 20px 10px 0;
  font-size: 26px;
}
@media screen and (max-width: 900px) {
  .mainVisual .deadline {
    font-size: 18px;
  }
}

.mainVisual__wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 80%;
  height: fit-content;
  margin: auto;
}
@media screen and (max-width: 900px) {
  .mainVisual__wrapper {
    width: 100%;
    position: static;
  }
}

.mainVisual__logo {
  margin: auto;
  margin-bottom: 40px;
}
.mainVisual__logo img {
  width: 42%;
}
@media screen and (max-width: 900px) {
  .mainVisual__logo img {
    width: 70%;
  }
}

.mainVisual__catch {
  margin-bottom: 60px;
}
.mainVisual__catch img {
  width: 70%;
}
@media screen and (max-width: 900px) {
  .mainVisual__catch img {
    width: 90%;
    margin: auto;
  }
}

.mainVisual__button-text,
.entry__button-text {
  margin-bottom: 20px;
}
.mainVisual__button-text img,
.entry__button-text img {
  width: 28%;
}
@media screen and (max-width: 900px) {
  .mainVisual__button-text img,
.entry__button-text img {
    width: 80%;
  }
}

.mainVisual__button__wrap {
  margin: 0 10px;
}
@media screen and (max-width: 900px) {
  .mainVisual__button__wrap {
    width: 90%;
    margin: 0 auto;
  }
}

.annotation p,
.annotation small {
  display: block;
  margin-bottom: 15px;
}
.annotation p {
  font-size: 12px;
}
.annotation small {
  font-size: 11px;
}
.annotation small:last-of-type {
  margin-bottom: 0;
}

.button {
  font-family: sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  width: 100%;
  margin-inline: auto;
  padding: 20px;
  color: #FFF;
  background: #000000CC;
  transition: 0.5s;
  font-size: 18px;
  font-weight: bold;
  border: solid 2px #3BDB79;
  border-radius: 10px;
  box-shadow: 0px 0px 12px #FFFFFF80;
  text-shadow: 0px 0px 9px #3BDB79CC;
}
@media screen and (max-width: 900px) {
  .button {
    max-width: none;
    font-size: 19px;
  }
}
.button::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  transition: right 0.5s;
  transform: rotate(45deg);
  border-top: solid 2px #3BDB79;
  border-right: solid 2px #3BDB79;
  transition: 0.5s;
}
.button:hover {
  border: solid 2px #94FBBC;
  opacity: 1;
}
.button:hover::before {
  right: 15px;
  border-top: solid 2px #94FBBC;
  border-right: solid 2px #94FBBC;
}
.button.wide {
  padding: 20px;
  font-size: 30px;
}
@media screen and (max-width: 900px) {
  .button.wide {
    font-size: 27px;
  }
}
.button.wide::before {
  right: 20px;
  width: 15px;
  height: 15px;
  border-top: solid 2px #3BDB79;
  border-right: solid 2px #3BDB79;
}
.button.wide:hover::before {
  right: 15px;
  border-top: solid 2px #94FBBC;
  border-right: solid 2px #94FBBC;
}
.button.-disable {
  cursor: default;
  background: #666;
  pointer-events: none;
  border: solid 2px #AAA;
  text-shadow: none;
}
.button.-disable::before {
  border-top: solid 1px #AAA;
  border-right: solid 1px #AAA;
}
.button.-disable:hover::before {
  right: 20px;
}
.button.-soon {
  position: relative;
  pointer-events: none;
  box-shadow: 0px 4px 4px 0px #00000040 inset, 0px 0px 10px 0px #FFFFFF80;
}
@media screen and (max-width: 900px) {
  .button.-soon {
    min-width: auto;
    width: 90%;
    margin: auto auto 20px;
  }
}
.button.-soon::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #3E3E3ECC;
  border-radius: 8px;
  z-index: 1;
}

.entry__button__wrap {
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .entry__button__wrap {
    width: calc(100% - 40px);
    margin: 0 auto 20px;
  }
}

#mainContents,
#other {
  position: relative;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 900px) {
  #mainContents,
#other {
    width: 90%;
  }
}
#mainContents::before,
#other::before {
  content: "";
  position: absolute;
  top: -100px;
  z-index: -10;
  width: 100vw;
  height: calc(100% + 200px);
  margin: 0 calc(50% - 50vw);
  background: #00000080;
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 900px) {
  #mainContents::before,
#other::before {
    top: -70px;
    height: calc(100% + 120px);
    backdrop-filter: blur(5px);
  }
}

#other::before {
  height: calc(100% + 350px);
}
@media screen and (max-width: 900px) {
  #other::before {
    top: -60px;
  }
}
#other > div:last-of-type::before {
  bottom: -250px;
}

#mainContents::after {
  content: "";
  position: absolute;
  top: 0;
  top: -100px;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: calc(100% + 200px);
  margin: 0 calc(50% - 50vw);
  background: url(../images/future/bg_decoration.svg);
  background-size: cover;
  opacity: 0.8;
}
@media screen and (max-width: 900px) {
  #mainContents::after {
    top: -70px;
    height: calc(100% + 120px);
  }
}
#mainContents > div:last-of-type::before {
  bottom: -100px;
}
@media screen and (max-width: 900px) {
  #mainContents > div:last-of-type::before {
    bottom: -40px;
    width: 50px;
    height: 300px;
  }
}
#mainContents .overview {
  margin-bottom: 50px;
}
@media screen and (max-width: 900px) {
  #mainContents .overview {
    margin-bottom: 30px;
  }
}
#mainContents .overview .overview__text {
  font-size: 15px;
  line-height: 1.73;
}
@media screen and (max-width: 900px) {
  #mainContents .overview .overview__text {
    font-size: 13px;
  }
}
#mainContents .overview small {
  display: block;
  margin-top: 15px;
  font-size: 15px;
}
@media screen and (max-width: 900px) {
  #mainContents .overview small {
    font-size: 13px;
  }
}
#mainContents .overview small + small {
  margin-top: 0;
}
#mainContents .overview .overview__note {
  font-size: 12px;
}

#entry {
  position: relative;
  padding: calc(40px + 70px) 0 calc(25px + 70px);
  text-align: center;
}
#entry::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(to right, #CBB300, #CBB300, #CBA334, #E0D234, #AC620C);
}
#entry::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(to right, #CBB300, #CBB300, #CBA334, #E0D234, #E0D234);
}
#entry > div:last-of-type::before {
  content: none;
}
#entry .deadline {
  margin: 0 10px;
  font-size: 26px;
}
@media screen and (max-width: 900px) {
  #entry .deadline {
    font-size: 18px;
  }
}
#entry > small {
  display: block;
  margin-top: 10PX;
  font-size: 12px;
}

#other::after {
  content: "";
  position: absolute;
  top: 0;
  top: -100px;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: calc(100% + 200px);
  margin: 0 calc(50% - 50vw);
  background: url(../images/future/bg_decoration.svg);
  background-position: top;
  background-size: cover;
}
@media screen and (max-width: 900px) {
  #other::after {
    top: -40px;
    height: calc(100% + 80px);
    background-size: contain;
  }
}
@media screen and (max-width: 900px) {
  #other .note__textarea {
    font-size: 14px;
  }
}
#other .note__textarea small {
  display: block;
  margin-top: 20px;
  font-size: 12px;
}
#other .contact__area {
  position: relative;
  justify-content: flex-start;
  margin: 60px 0;
  padding: 40px;
  border: solid 1px #3BDB7966;
}
@media screen and (max-width: 900px) {
  #other .contact__area {
    margin: 25px 0;
    padding: 20px;
  }
}
#other .contact__title {
  flex-basis: 30%;
}
@media screen and (max-width: 900px) {
  #other .contact__title {
    margin-right: 0;
    margin-bottom: 20px;
    font-size: 20px;
  }
}
#other .contact__main {
  flex-basis: 70%;
}
#other .contact__main .email-img {
  margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
  #other .contact__main .email-img {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 900px) {
  #other .contact__text {
    font-size: 12px;
  }
}
#other .footer__banner {
  max-width: 450px;
  margin: auto;
  margin-bottom: 160px;
}
#other .ceremony {
  margin-bottom: 160px;
}
@media screen and (max-width: 900px) {
  #other .ceremony {
    margin-bottom: 120px;
  }
}
#other .ceremony .ceremony__item {
  margin-bottom: 60px;
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
  font-size: 15px;
}
@media screen and (max-width: 900px) {
  #other .ceremony .ceremony__item {
    flex-direction: column-reverse;
    gap: 20px;
    margin-bottom: 50px;
    font-size: 13px;
  }
}
#other .ceremony .ceremony__item > dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  #other .ceremony .ceremony__item > dl {
    flex-direction: column;
  }
}
#other .ceremony .ceremony__item dt {
  width: 20%;
  padding: 25px 0;
  border-bottom: solid 1px #464646;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  #other .ceremony .ceremony__item dt {
    border-bottom: none;
    padding-top: 0;
    padding-bottom: 10px;
    width: 100%;
  }
}
#other .ceremony .ceremony__item dt:first-of-type {
  padding-top: 0;
}
#other .ceremony .ceremony__item dt:last-of-type {
  border-bottom: 0;
}
#other .ceremony .ceremony__item dd {
  width: 80%;
  padding: 25px 0;
  border-bottom: solid 1px #464646;
}
@media screen and (max-width: 900px) {
  #other .ceremony .ceremony__item dd {
    padding-top: 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
    width: 100%;
  }
}
#other .ceremony .ceremony__item dd:first-of-type {
  padding-top: 0;
}
#other .ceremony .ceremony__item dd:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}
@media screen and (max-width: 900px) {
  #other .ceremony .ceremony__item dd:last-of-type {
    margin-bottom: 0;
  }
}
#other .ceremony .ceremony__text {
  flex-shrink: 0;
  flex-basis: 50%;
  font-size: 15px;
  line-height: 1.73;
}
#other .ceremony .ceremony__img {
  flex-basis: 50%;
}
#other .ceremony .ceremony__link__text {
  position: relative;
  width: fit-content;
  margin: 20px auto 40px;
  padding-left: 25px;
  font-weight: bold;
}
#other .ceremony .ceremony__link__text::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  height: 12px;
  margin: auto;
  border-top: 12px solid #3BDB79;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  font-size: 15px;
}
@media screen and (max-width: 900px) {
  #other .ceremony .ceremony__link__text {
    margin-bottom: 20px;
  }
}
#other .ceremony .ceremony__link__list {
  display: flex;
  flex-wrap: wrap;
  max-width: 600px;
  margin: auto;
  gap: 30px;
}
@media screen and (max-width: 900px) {
  #other .ceremony .ceremony__link__list {
    gap: 15px;
  }
}
#other .ceremony .ceremony__link__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% / 3 - 20px);
  height: 60px;
  background-color: #FFF;
  border-radius: 6px;
}
@media screen and (max-width: 900px) {
  #other .ceremony .ceremony__link__item {
    width: calc(100% / 2 - 8px);
  }
}
#other .ceremony .ceremony__link__item > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100%;
  padding: 10px;
}
#other .overview {
  margin-bottom: 160px;
}
@media screen and (max-width: 900px) {
  #other .overview {
    margin-bottom: 120px;
  }
}
#other .overview .c-accordion {
  margin-top: 40px;
}
@media screen and (max-width: 900px) {
  #other .overview .c-accordion {
    margin-top: 20px;
  }
}
#other .overview .c-accordion .c-accordion__item {
  position: relative;
  margin-bottom: 30px;
  background-color: #000;
}
#other .overview .c-accordion .c-accordion__item:last-of-type {
  margin-bottom: 0;
}
#other .overview .c-accordion .c-accordion__item::before {
  width: 3%;
}
#other .overview .c-accordion .c-accordion__title {
  position: relative;
  padding: 21px 40px;
  padding-right: 100px;
  cursor: pointer;
}
@media screen and (max-width: 900px) {
  #other .overview .c-accordion .c-accordion__title {
    display: flex;
    align-items: center;
    width: 100%;
    height: 62px;
    padding: 0 20px;
    padding-right: 90px;
    justify-self: flex-start;
  }
}
#other .overview .c-accordion .c-accordion__title::before, #other .overview .c-accordion .c-accordion__title::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 6px;
  width: 12px;
  height: 2px;
  background-color: #3BDB79;
  transition: opacity 0.3s;
  transform: translateY(-50%);
}
@media screen and (max-width: 900px) {
  #other .overview .c-accordion .c-accordion__title::before, #other .overview .c-accordion .c-accordion__title::after {
    width: 20px;
    right: 20px;
  }
}
#other .overview .c-accordion .c-accordion__title::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s;
}
#other .overview .c-accordion .c-accordion__title h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 900px) {
  #other .overview .c-accordion .c-accordion__title h3 {
    font-size: 15px;
    line-height: 24px;
  }
}
#other .overview .c-accordion .c-accordion__title span {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  width: 24px;
  height: 24px;
  border-radius: 2px;
  transition: border-radius 0.1s;
}
@media screen and (max-width: 900px) {
  #other .overview .c-accordion .c-accordion__title span {
    width: 24px;
    height: 24px;
  }
}
#other .overview .c-accordion .c-accordion__contents {
  overflow: hidden;
  height: 0;
  padding: 0 40px;
  transition: padding 0.3s;
  line-height: 1.73;
  font-size: 15px;
}
@media screen and (max-width: 900px) {
  #other .overview .c-accordion .c-accordion__contents {
    padding: 0 20px;
    font-size: 13px;
    line-height: 1.3;
  }
}
#other .overview .c-accordion .c-accordion__item.is-show .c-accordion__title::before {
  opacity: 0;
}
#other .overview .c-accordion .c-accordion__item.is-show .c-accordion__title::after {
  transform: translateY(-50%) rotate(180deg);
}
#other .overview .c-accordion .c-accordion__item.is-show .c-accordion__contents {
  height: auto;
  padding: 40px;
  border-top: solid 1px #3BDB7966;
}
@media screen and (max-width: 900px) {
  #other .overview .c-accordion .c-accordion__item.is-show .c-accordion__contents {
    padding: 20px;
  }
}
#other .overview .c-accordion .c-accordion__item.is-show .c-accordion__contents .text__normal {
  font-size: 15px;
  line-height: calc(25 / 15);
}
#other .overview .c-accordion .c-accordion__item.is-show .c-accordion__contents .text__normal + .text__normal {
  margin-top: 30px;
}
#other .overview .c-accordion .c-accordion__item.is-show .c-accordion__contents .text__normal + .title__tertiary {
  margin-top: 30px;
}
#other .overview .c-accordion .c-accordion__item.is-show .c-accordion__contents .text__normal + .c-ol {
  margin-top: 30px;
}
#other .overview .c-accordion .c-accordion__item.is-show .c-accordion__contents .title__tertiary + .text__normal {
  margin-top: 15px;
}
#other .overview .c-accordion .c-accordion__item.is-show .c-accordion__contents .c-ol .c-li {
  list-style: auto;
  margin-left: 1em;
  margin-bottom: 10px;
  line-height: calc(22 / 13);
}
#other .overview .c-accordion .c-accordion__item.is-show .c-accordion__contents .c-ol + .text__normal {
  margin-top: 30px;
}
#other .overview .c-accordion .c-accordion__item.is-show .c-accordion__contents small {
  display: block;
  margin-top: 15px;
  font-size: 12px;
  line-height: calc(18 / 12);
}
#other .overview .c-ul .c-li {
  position: relative;
  counter-increment: number;
  margin-bottom: 10px;
  padding-left: 25px;
  line-height: calc(22 / 13);
}
@media screen and (max-width: 900px) {
  #other .overview .c-ul .c-li {
    padding-left: 20px;
  }
}
#other .overview .c-ul .c-li:before {
  position: absolute;
  top: 0;
  left: 0;
  content: counter(number) ".";
}
#other .overview .c-ul .c-li:last-child {
  margin-bottom: 0;
}
#other .award .award__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  position: relative;
  padding: 60px;
  background-color: #000;
}
@media screen and (max-width: 900px) {
  #other .award .award__list {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 20px;
  }
}
#other .award .award__list::after {
  content: "";
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 10%, black 50%, black 100%);
}
@media screen and (max-width: 900px) {
  #other .award .award__list::after {
    height: 90px;
  }
}
#other .award .award__item {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 900px) {
  #other .award .award__item.is-pc {
    display: none;
  }
}
#other .award .award__title {
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: solid 1px #3BDB7977;
  color: #fff;
  font-size: 18px;
}
#other .award .award__img {
  order: -1;
  margin-bottom: 20px;
}
#other .award .award__detail {
  font-size: 15px;
}
#other .award .award__detail > div {
  margin-bottom: 20px;
}
#other .award .award__detail > div:last-child {
  margin-bottom: 0;
}
#other .award .award__detail dt {
  margin-bottom: 10px;
  color: #A3A3A3;
}

article .logo {
  width: 610px;
  margin: auto;
  margin-top: 30px;
}
@media screen and (max-width: 900px) {
  article .logo {
    width: 80%;
    margin-top: 6vw;
  }
}
article .page {
  width: 1000px;
  margin: 50px auto;
  padding: 50px;
  background-color: #FFF;
}
@media screen and (max-width: 900px) {
  article .page {
    width: 90%;
    padding: 7vw;
    margin-top: 5vw;
  }
}
article .page section h2 {
  margin: 50px 0 30px;
  padding: 0 0 15px;
  color: #333;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border-bottom: 1px dotted #333;
}
@media screen and (max-width: 900px) {
  article .page section h2 {
    margin: 10vw 0 6vw;
    padding: 0 0 3vw;
    font-size: 4.5vw;
  }
}
article .page section p.body {
  font-size: 16px;
  line-height: 25px;
}
@media screen and (max-width: 900px) {
  article .page section p.body {
    font-size: 3.2vw;
  }
}
article .page section p.body b {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  article .page section p.body b {
    font-size: 3.5vw;
  }
}
article .page section:first-of-type {
  margin-top: 0;
}
article .page section:first-of-type h2 {
  margin-top: 0;
}
article .image80 {
  width: 80%;
  margin: 30px auto;
}

.is-sp {
  display: none;
}
@media screen and (max-width: 900px) {
  .is-sp {
    display: block;
  }
}

@media screen and (max-width: 900px) {
  .is-pc {
    display: none;
  }
}
