@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;800;900&family=Shippori+Mincho:wght@500;600;700;800&display=swap");

:root {
  --blue: #043a8b;
  --navy: #082048;
  --light-blue: #f2f7fd;
  --light-beige: #fef8ec;
  --brown: #8c6239;
  --orange: #f15a24;
  --header-height: 72px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: #182844;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  font-feature-settings: "palt";
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}


html {
  scroll-behavior: smooth;
}


/*--------------------トップへ戻る-------*/
html {
  scroll-behavior: smooth;
}

.page-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #005bac;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 20px rgb(0 0 0 / 18%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.page-top.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.page-top:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

@media (max-width: 767px) {
  .page-top {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
    font-size: 12px;
  }
}

/*--------------------ここまで--------------------トップへ戻る-------------------------------------------------*/
.pc-only {
  display: none;
}

.dsp-pc {
  display: none;
}

.dsp-sp {
  display: block;
}

.kaigyo {
  display: inline-block;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgb(4 58 139 / 9%);
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 4px 20px rgb(8 32 72 / 6%);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  width: min(100%, var(--container));
  height: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

.site-header__logo {
  display: inline-flex;
  width: min(46vw, 260px);
  min-width: 0;
}

.brand-image {
  width: min(100%, 635px);
  height: auto;
}

.brand-image--compact {
  width: 100%;
}

.brand-image--compact.dsp-sp {
  max-width: 130px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
}

.brand__mark {
  position: relative;
  display: block;
  width: 34px;
  height: 27px;
  flex: 0 0 auto;
  border: 3px solid currentcolor;
  border-radius: 50% 50% 42% 42%;
}

.brand__rotor {
  position: absolute;
  top: -8px;
  width: 21px;
  height: 2px;
  border-radius: 100%;
  background: currentcolor;
}

.brand__rotor::after {
  position: absolute;
  top: 1px;
  left: 50%;
  width: 2px;
  height: 8px;
  background: currentcolor;
  content: "";
}

.brand__rotor--left {
  left: -6px;
}

.brand__rotor--right {
  right: -6px;
}

.brand__body {
  position: absolute;
  inset: 5px;
  display: grid;
  place-items: center;
  font-size: 10px;
}

.brand__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1;
}

.brand__jp {
  overflow: hidden;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.brand__en {
  display: none;
}

.menu-button {
  display: grid;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 11px 9px;
  place-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 10px;
  background: currentcolor;
  transition: transform 0.25s ease,
    opacity 0.25s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.global-nav {
  position: fixed;
  z-index: 999;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  padding: 36px 28px 390px;
  background: rgb(255 255 255 / 90%);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s;
}

.global-nav.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.global-nav a {
  padding: 16px 4px;
  border-bottom: 1px solid #d6e2f1;
  color: var(--navy);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.site-header__cta {
  display: block;
  margin-left: 3px;
}

.apply-button {
  padding: 12px 34px 14px;
  border: 2px solid rgb(255 255 255 / 70%);
  border-radius: 999px;
  background: linear-gradient(135deg, #f19724, #f15a24);
  box-shadow: 0 10px 25px rgb(241 90 36 / 25%);
  color: #fff;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  transition: transform 1s ease,
    box-shadow 0.4s ease,
    filter 0.4s ease;
}

.btn-smltxt {
  display: block;
  font-size: 16px;
  font-weight: normal;
}

.apply-button:hover {
  box-shadow: 0 10px 15px rgb(241 90 36 / 35%);
  filter: saturate(1.08);
  transform: translateY(-2px);
}

.apply-button:focus-visible {
  outline: 3px solid #ffcf91;
  outline-offset: 3px;
}

.apply-button--small {
  min-width: 84px;
  min-height: 38px;
  padding: 5px 13px 7px;
  border: 0;
  box-shadow: none;
  font-size: 14px !important;
}

main {
  padding-top: var(--header-height);
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  isolation: isolate;
}

.hero__scenery {
  position: absolute;
  z-index: -3;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.hero__panel {
  min-height: 100%;
  background-position: center;
  background-size: cover;
}

.hero__panel--spring {
  background-image: url("../images/mv-spring.webp");
}

.hero__panel--summer {
  display: block;
  background-image: url("../images/mv-summer.webp");
}

.hero__panel--autumn {
  background-image: url("../images/mv-autumn.webp");
}

.hero__panel--winter {
  background-image: url("../images/mv-winter.webp");
}

.hero__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(0deg, rgb(8 32 72 / 25%));
}

.hero__content {
  display: flex;
  width: min(100% - 32px, 680px);
  min-height: 680px;
  margin: 0 auto;
  padding: 54px 0 38px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  text-shadow: 0 3px 18px rgb(8 32 72 / 55%);
}

.hero__logo {
  width: min(100%, 635px);
  margin: 0;
}

.hero__logo .brand-image {
  width: 100%;
}

.hero__eyebrow {
  margin: 0 0 8px;
  font-family: serif;
  font-size: clamp(17px, 5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero__title {
  margin: 0;
  font-size: clamp(43px, 13.4vw, 80px);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.98;
}

.hero__title>span {
  display: block;
}

.hero__title-last {
  white-space: nowrap;
}

.hero__title b {
  display: inline-block;
  margin-left: 4px;
  padding: 1px 5px 4px 7px;
  border: 2px solid currentcolor;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.54em;
  letter-spacing: -0.05em;
  line-height: 1;
  vertical-align: 0.18em;
}

.hero__english {
  order: -1;
  height: 0;
  margin: 0;
  overflow: hidden;
}

.hero__lead {
  margin: 24px 0 16px;
  font-size: clamp(16px, 3.7vw, 18px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.hero__deadline {
  display: flex;
  margin: 0 0 18px;
  align-items: stretch;
  overflow: hidden;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 24px rgb(8 32 72 / 22%);
  color: var(--navy);
  text-shadow: none;
}

.hero__deadline span {
  display: flex;
  align-items: center;
  padding: 7px 12px;
  background: var(--navy);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding-inline: 18px;
}

.hero__deadline strong {
  padding: 7px 13px 8px;
  font-size: 20px;
  letter-spacing: 0.02em;
  padding-inline: 18px;
}

.merits {
  background: var(--navy);
  color: #fff;
}

.merits__inner {
  display: grid;
  width: min(100%, var(--container));
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
}

.merit {
  position: relative;
  padding: 30px 14px 32px;
  text-align: center;
}

.merit:nth-child(odd)::after {
  position: absolute;
  top: 24%;
  right: 0;
  width: 1px;
  height: 58%;
  background: rgb(255 255 255 / 26%);
  content: "";
}

.merit__icon {
  width: 76px;
  height: auto;
  margin: 0 auto 10px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
}

.merit h2 {
  margin: 0;
  font-family: serif;
  font-size: 20px;
  font-weight: 700;
}

.merit p {
  margin: 5px auto 0;
  color: rgb(255 255 255 / 82%);
  line-height: 1.75;
}

.section-container {
  width: min(calc(100% - 36px), var(--container));
  margin: 0 auto;
}

.intro {
  padding: 82px 0 88px;
  text-align: center;
}

.intro h2 {
  margin: 0;
  color: var(--blue);
  font-family: serif;
  font-size: clamp(25px, 6vw, 35px);
  font-weight: 700;
  line-height: 1.55;
}

.intro p {
  margin: 24px auto 0;
  font-size: 15px;
  line-height: 2.1;
}

.section-block {
  padding: 74px 0 86px;
}

.section-block--blue {
  background: var(--light-blue);
}

.section-title {
  display: flex;
  margin: 0 0 48px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--blue);
  font-family: serif;
  font-size: clamp(25px, 7vw, 40px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
}

.section-title::before,
.section-title::after {
  width: clamp(34px, 9vw, 70px);
  height: 1px;
  background: var(--blue);
  content: "";
}

.purpose__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 14px;
}

.purpose-card {
  text-align: center;
}

.purpose-card__icon {
  width: 96px;
  height: auto;
  margin: 0 auto 12px;
  object-fit: contain;
  background: transparent;
}

.purpose-card__icon--green {
  background: #e1f2ed;
  color: #008d69;
}

.purpose-card__icon--purple {
  background: #eee9fb;
  color: #6547b4;
}

.purpose-card__icon--orange {
  background: #fff0db;
  color: #f0901f;
}

.purpose-card h3 {
  margin: 0;
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
}

.purpose-card p {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.75;
}

.theme__layout {
  display: grid;
  gap: 34px;
}

.theme__copy {
  align-self: center;
}

.theme__copy h3 {
  margin: 0;
  color: var(--blue);
  font-family: serif;
  font-size: clamp(25px, 8vw, 40px);
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.theme__copy p {
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 2.2;
}

.theme__image {
  width: 100%;
  min-height: 250px;
  object-fit: cover;
}

.requirements,
.schedule,
.faq,
.places {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.requirements__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.requirement-card {
  padding: 24px 12px 22px;
  border: 1px solid #d8e3f0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 20px rgb(8 32 72 / 5%);
  text-align: center;
  padding-inline: 16px;
}

.requirement-card:last-child {
  grid-column: 1 / -1;
}

.requirement-card__icon {
  width: 76px;
  height: auto;
  margin: 0 auto 12px;
  object-fit: contain;
  background: transparent;
}

.requirement-card h3 {
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #b9c9df;
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
}

.requirement-card p {
  margin: 9px 0 0;
  font-size: 14px;
  line-height: 1.7;
}

.requirement-card__main {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.criteria-layout {
  display: grid;
  margin-top: 30px;
  gap: 16px;
}

.info-panel {
  overflow: hidden;
  border: 1px solid #bcd0e9;
  border-radius: 10px;
  background: var(--light-blue);
}

.info-panel h3 {
  margin: 0;
  padding: 12px 18px 5px;
  color: var(--blue);
  font-family: serif;
  font-size: 21px;
  font-weight: 700;
  text-align: center;
}

.recommendation ul {
  display: grid;
  margin: 0;
  padding: 8px 20px 23px;
  gap: 10px;
  list-style: none;
}

.recommendation li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 20px;
  line-height: 1.55;
}

.recommendation li img {
  width: 22px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.judging-points {
  background: #fff;
}

.judging-points__grid {
  display: grid;
  padding: 4px 14px 20px;
  grid-template-columns: 1fr;
  gap: 14px;
}

.judging-point {
  display: grid;
  align-items: center;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 9px;
  color: var(--blue);
}

.judging-point__icon {
  width: 54px;
  height: auto;
  object-fit: contain;
  background: transparent;
}

.judging-point__icon--green {
  background: #15986f;
}

.judging-point__icon--purple {
  background: #6247b7;
}

.judging-point__icon--orange {
  background: #f09113;
}

.judging-point strong {
  font-size: 20px;
  line-height: 1.55;
}

.subsection-title {
  margin: 0 0 10px;
  color: var(--blue);
  font-family: serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.judges {
  margin-top: 60px;
}

.judges__list {
  display: grid;
  gap: 14px;
}

.judge-card {
  overflow: hidden;
  border: 1px solid #5f91cc;
  border-radius: 8px;
  background: var(--light-blue);
  box-shadow: 0 5px 16px rgb(8 32 72 / 4%);
}

.judge-card__head {
  position: relative;
  display: flex;
  width: 100%;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin: 0;
  padding: 20px 52px 16px 18px;
  border: none;
  border-bottom: 1px solid #1762c6;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.judge-card__head:focus-visible,
.faq-item summary:focus-visible {
  outline: 3px solid #73a9e7;
  outline-offset: -3px;
}

.judge-card__role {
  color: #53657c;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.judge-card__head strong {
  color: #172338;
  font-family: serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.judge-card__company {
  display: inline;
  width: 100%;
  color: #3e4b60;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.judge-card__toggle {
  position: absolute;
  top: 20px;
  right: 18px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.judge-card[data-open="true"] .judge-card__toggle {
  transform: rotate(225deg);
}

.judge-card__clip {
  position: relative;
  max-height: 340px;
  overflow: hidden;
  padding: 0 18px 82px;
  transition: max-height 0.3s ease;
}

.judge-card[data-open="true"] .judge-card__clip {
  max-height: 3000px;
  overflow: visible;
  padding-bottom: 24px;
}

.judge-card__clip::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 118px;
  background: linear-gradient(to top, #f2f7fd 0%, rgb(242 247 253 / 88%) 42%, rgb(242 247 253 / 0%) 100%);
  content: "";
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.judge-card[data-open="true"] .judge-card__clip::after {
  opacity: 0;
  visibility: hidden;
}

.judge-card__more-wrap {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 17px;
  left: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.judge-card[data-open="true"] .judge-card__more-wrap {
  position: static;
  margin-top: 18px;
}

.judge-card__more {
  display: inline-flex;
  min-width: 124px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 6px 26px 7px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 7px 16px rgb(4 58 139 / 16%);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  cursor: pointer;
  pointer-events: auto;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.judge-card__more:hover {
  background: #0b4ba8;
}

.judge-card__more:focus-visible {
  outline: 3px solid #73a9e7;
  outline-offset: 3px;
}

.judge-card__more:active {
  transform: translateY(1px);
}

.judge-card__section {
  padding: 22px 0;
  border-top: 1px dotted #9bb7d7;
}

.judge-card__section h4,
.judge-card__links h4 {
  margin: 0 0 6px;
  color: var(--blue);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.judge-card__section p,
.judge-card__section li {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.judge-card__section p+p {
  margin-top: 7px;
}

.judge-card__section ul {
  margin: 0;
  padding-left: 1.2em;
}

.judge-card__links {
  display: grid;
  border-top: 1px dotted #9bb7d7;
}

.judge-card__links>div {
  display: grid;
  padding: 22px 0;
  border-bottom: 1px dotted #b1c2d8;
}

.judge-card__links a {
  overflow-wrap: anywhere;
  color: #53657c;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.awards {
  margin-top: 62px;
}

.awards__box {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: 28px 18px;
  border: 1px solid #b99a62;
  border-radius: 9px;
  background: var(--light-beige);
  gap: 22px;
  grid-template-columns: minmax(0, 1fr);
}

.awards__trophy {
  z-index: 1;
  width: min(100%, 190px);
  height: auto;
  margin: 0;
  object-fit: contain;
  max-width: 170px;
}

.awards__ribbon {
  position: absolute;
  z-index: 0;
  top: 0px;
  right: 0;
  width: 88px;
  height: 88px;
  object-fit: fill;
  pointer-events: none;
  left: 0px;
}

.awards__list {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.award-row {
  display: block;
  padding: 14px 0;
  align-items: center;
  grid-template-columns: 40px minmax(0, 1fr);
  border-bottom: 1px dotted #8c6239;
  gap: 2px 12px;
  grid-template-areas: "medal title"
    "medal copy";
}

.award-row img {
  margin: 0 auto 10px;
}

.award-row__medal {
  width: 40px;
  height: auto;
  grid-row: span 2;
  object-fit: contain;
  grid-area: medal;
}

.award-row strong {
  color: #a37a00;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  grid-area: title;
  line-height: 1.4;
}

.award-row p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  grid-area: copy;
}

.awards__list small {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
}

.award-txt {
  font-size: 18px;
}

.award-txt a {
  text-decoration: underline;
  color: #005bac;
}

.award-txt span {
  display: block;
  padding-left: 1.6em;
  text-indent: -1.1em;

}

.schedule {
  padding-top: 20px;
}

.schedule__steps {
  display: flex;
  grid-template-columns: minmax(0, 1fr);
  gap: 5px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.schedule-step {
  position: relative;
  display: flex;
  min-height: auto;
  padding: 0;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #79a5d6;
  border-radius: 8px;
  background: var(--light-blue);
  text-align: center;
  width: 100%;
  flex: 1 1 100px;
  min-width: 100px;
}

.schedule-step__date {
  color: #405b80;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
}

.schedule-step__icon {
  width: auto;
  height: 58px;
  object-fit: contain;
}

.schedule-step strong {
  color: var(--blue);
  font-size: 17px;
}

.schedule-step__arrow {
  display: grid;
  height: auto;
  place-items: center;
  color: var(--blue);
  font-size: 20px;
  line-height: 1;
  flex: 0 0 20px;
  width: 20px;
  transform: rotate(90deg);
}

.section-apply {
  display: flex;
  margin-top: 54px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.section-apply p {
  margin: 0 0 -3px;
  color: #fff;
  font-size: 16px;
  pointer-events: none;
  transform: translateY(31px);
  z-index: 1;
}

/*.section-apply .apply-button {
  padding-top: 24px;
}*/

.faq__inner {
  width: min(calc(100% - 28px), 1080px);
}

.faq__list {
  display: grid;
  gap: 13px;
}

.faq-item {
  overflow: hidden;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 5px 18px rgb(8 32 72 / 7%);
}

.faq-item summary {
  position: relative;
  display: grid;
  min-height: 64px;
  padding: 14px 50px 14px 14px;
  align-items: center;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 9px;
  color: var(--blue);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item__mark {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.faq-item__mark--answer {
  border: 1px solid #b8c9de;
  background: #fff;
  color: var(--blue);
}

.faq-item__toggle {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-item__toggle {
  transform: translateY(-30%) rotate(225deg);
}

.faq-item__answer {
  display: grid;
  padding: 8px 14px 18px;
  align-items: start;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 9px;
  border-top: 1px solid #eff3f8;
}

.faq-item__answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
}

.places__heading {
  padding: 62px 0 58px;
  background: var(--navy);
}

.section-title--light {
  margin: 0;
  color: #fff;
}

.section-title--light::before,
.section-title--light::after {
  background: rgb(255 255 255 / 78%);
}

.places__body {
  padding: 54px 0 84px;
  position: relative;
  z-index: 1;
}

.places__intro {
  display: grid;
  gap: 28px;
}

.places__intro>p {
  margin: 0;
  align-self: center;
  font-size: 16px;
  line-height: 2.05;
}

.places__intro img {
  width: 100%;
  min-height: 250px;
  object-fit: cover;
  border-radius: 10px;

}

.places__list {
  display: grid;
  margin-top: 56px;
  gap: 48px;
}

.place-row {
  display: grid;
  gap: 23px;
}

.place-row__copy {
  align-self: center;
}

.place-row__area {
  margin: 0 0 7px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 700;
}

.place-row h3 {
  margin: 0;
  color: var(--blue);
  font-family: serif;
  font-size: clamp(25px, 6.7vw, 28px);
  line-height: 1.45;
}

.place-row__copy>p:last-child {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.95;
}

.place-row img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  border-radius: 10px;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 430px;
  padding: 80px 18px 72px;
  place-items: end center;
  overflow: hidden;
  background: linear-gradient(0deg, rgb(242 247 253 / 8%), rgb(255 255 255 / 92%) 64%),
    url("../images/ftr_bgimg@2x.webp") center bottom / cover no-repeat;
  margin-top: -70px;
}

.final-cta__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--blue);
  text-align: center;
}

.final-cta__inner>p {
  margin: 0 0 18px;
  font-family: serif;
  font-size: clamp(25px, 6vw, 36px);
  font-weight: 700;
  line-height: 1.55;
}

.final-cta__inner>span {
  z-index: 1;
  margin-bottom: -4px;
  color: #fff;
  font-size: 14px;
  transform: translateY(29px);
}

.final-cta .apply-button {
  padding-top: 23px;
}

.site-footer {
  padding: 45px 18px 20px;
  background: var(--navy);
  color: #fff;
}

.site-footer__inner {
  display: grid;
  width: min(100%, var(--container));
  margin: 0 auto;
  gap: 30px;
}

.site-footer__inner p {
  margin: 0;
  color: rgb(255 255 255 / 82%);
  font-size: 16px;
  line-height: 1.8;
}

.site-footer__inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
}

.site-footer__inner nav a {
  padding: 0 11px;
  border-right: 1px solid rgb(255 255 255 / 34%);
  font-size: 16px;
  line-height: 1.5;
}

.site-footer__inner nav a:first-child {
  padding-left: 0;
}

.site-footer__copyright {
  width: min(100%, var(--container));
  margin: 36px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgb(255 255 255 / 35%);
  color: rgb(255 255 255 / 65%);
  font-size: 10px !important;
  text-align: left;
}

.judge-card__section,
.judge-card__links {
  font-size: 16px;
}

.award-row p,
.awards__list small,
.schedule-step__date,
.faq-item summary,
.faq-item__answer p {
  font-size: 16px;
}

.awards__visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 160px;
}

.judge-card__profile-section {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-top: 22px;
  padding-bottom: 22px;
  text-align: justify;
  flex-direction: column-reverse;
}

.judge-card__profile-body {
  flex: 1;
  min-width: 0;
}

.judge-card__profile-body h4 {
  margin: 0 0 6px;
  color: var(--blue);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.judge-card__profile-body p,
.judge-card__profile-body li {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.judge-card__profile-body p+p {
  margin-top: 7px;
}

.judge-card__profile-image {
  flex-shrink: 0;
  width: 120px;
  height: auto;
  align-self: flex-start;
  object-fit: contain;
  object-position: center top;
  margin: 0 auto;
}

.schedule-step__date,
.schedule-step__year,
.schedule-step__month {
  font-size: 16px;
}

.apply-button--small,
.merit p,
.purpose-card p,
.requirement-card p,
.recommendation li,
.judging-point strong,
.award-row p,
.awards__list small,
.schedule-step__date,
.section-apply p,
.final-cta__inner>span,
.site-footer__inner p,
.site-footer__inner nav a,
.site-footer__copyright,
.faq-item summary,
.faq-item__answer p,
.place-row__copy>p:last-child {
  font-size: 16px;
}

.global-nav a,
.merit h2,
.info-panel h3,
.subsection-title,
.judge-card__head strong,
.award-row strong {
  font-family: "Noto Sans JP", sans-serif;
}

.hero__lead,
.intro p,
.theme__copy p,
.faq-item summary,
.faq-item__answer p,
.places__intro>p,
.place-row__copy>p:last-child {
  font-size: 16px;
}

.apply-button--small,
.merit p,
.purpose-card p,
.requirement-card p,
.recommendation li,
.judging-point strong,
.award-row p,
.awards__list small,
.schedule-step__date,
.section-apply p,
.final-cta__inner>span,
.site-footer__inner p,
.site-footer__inner nav a,
.site-footer__copyright {
  font-size: 16px;
}

.awards__box::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 88px;
  height: 88px;
  background: url("../images/award_ribbon@2x.webp") right bottom / 100% auto no-repeat;
  content: "";
  pointer-events: none;
  transform: rotate(180deg);
}

.award-row--gold strong {
  color: #c89100;
}

.award-row--silver strong {
  color: #555;
}

.award-row--bronze strong {
  color: #75441c;
}

.schedule-step__year {
  font-size: 16px;
}

.schedule-step__month {
  font-size: 20px;
}

.theme__image,
.judge-card__profile-image,
.places__body {
  border-radius: 10px;
}

/* 自前動画用(theme__imageと同じ扱い) */
.theme__video {
  width: 100%;
  max-width: 742px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
}

.section-apply-terms {
  text-align: center;
  margin: 1em auto;
  text-decoration: underline;
}

/* 応募規約ページ */
.spacer {
  height: 100px;
}

.terms-main {
  padding-top: var(--header-height);
}

.terms-header {
  display: grid;
  width: 100%;
  height: 200px;
  place-items: center;
  background:
    var(--terms-title-image, url("../images/place_minami-aizu-all@2x.webp")) center / cover no-repeat;
  color: #fff;
  text-align: center;
}

.terms-header__inner {
  display: grid;
  height: 100%;
  align-content: center;
  justify-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
}

.terms-header__eyebrow {
  margin: 0 0 4px;
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.terms-header h1 {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(22px, 6vw, 35px);
  font-weight: 800;
  line-height: 1.25;
}

.terms-header p:not(.terms-header__eyebrow):not(.terms-header__date) {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.7;
}

.terms-header__date {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.terms-section {
  padding: 48px 0 72px;
}


.terms-article h2 {
  color: var(--blue);
  border-top: 1px dotted var(--blue);
  padding-top: 1em;
  line-height: 1.3;
}

.terms-article span {
  margin-right: 10px;
}

.terms-number-list {
  padding-inline-start: 20px;
}

#article-15 {
  scroll-margin-top: 80px;
}

.requirement-card p span {
  display: inline-block;
}

@media (min-width: 0px) and (max-width: 767px) {

  .intro p,
  .purpose p,
  .merit p,
  .theme p,
  .requirements p,
  .awards p,
  .awards small,
  .places .places__intro p,
  .place-row__copy>p:last-child,
  .terms-article p,
  .terms-article li {
    font-size: 14px !important;
  }
}

@media (min-width: 500px) {
  .dsp-sp {
    display: none;
  }

  .dsp-pc {
    display: block;
  }

  .judging-points__grid {
    display: grid;
    padding: 4px 14px 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .schedule__steps {
    display: flex;
    grid-template-columns: minmax(0, 1fr);
    column-gap: 8px;
    row-gap: 25px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }

  .schedule-step__arrow {
    display: grid;
    height: auto;
    place-items: center;
    color: var(--blue);
    font-size: 20px;
    line-height: 1;
    transform: none;
    flex: 0 0 20px;
    width: 20px;
  }

  .schedule-step__date {
    color: #405b80;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25em;
    flex-direction: column;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .schedule-step {
    padding: 15px 0;
  }

  .award-row {
    display: grid;
  }

  .award-row img {
    margin: auto;
  }
}

@media (min-width: 768px) {
  :root {
    --header-height: 82px;
  }

  .pc-only {
    display: initial;
  }

  .site-header__inner {
    padding: 0 24px;
  }

  .brand__en {
    display: block;
    margin-top: 4px;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.025em;
  }

  .site-header__cta {
    margin-left: 10px;
  }

  .apply-button--small {
    min-width: 116px;
    min-height: 42px;
    padding: 6px 22px 8px;
    font-size: 16px !important;
  }

  .hero {
    min-height: 760px;
  }

  .hero__scenery {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
  }

  .hero__content {
    min-height: 760px;
    padding-top: 64px;
  }

  .hero__title {
    font-size: 84px;
  }

  .hero__lead {
    font-size: 18px;
  }

  .merits__inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .merit {
    padding: 38px 24px 42px;
  }

  .merit:not(:last-child)::after {
    position: absolute;
    top: 24%;
    right: 0;
    width: 1px;
    height: 58%;
    background: rgb(255 255 255 / 26%);
    content: "";
  }

  .intro p,
  .purpose p,
  .merit p,
  .theme p,
  .requirements p,
  .awards p,
  .awards small,
  .places .places__intro p,
  .places .place-row p {
    font-size: 16px;
  }

  .purpose__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }

  .purpose-card__icon {
    width: 116px;
    height: 116px;
  }

  .purpose-card h3 {
    font-size: 22px;
  }

  .purpose-card p {
    font-size: 15px;
  }

  .theme__layout {
    grid-template-columns: 0.9fr 1.6fr;
    gap: 64px;
  }

  .theme__image {
    min-height: 430px;
  }

  .requirements__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .requirement-card:last-child {
    grid-column: auto;
  }

  .criteria-layout {
    grid-template-columns: 1fr 1.35fr;
    gap: 20px;
  }

  .recommendation li {
    font-size: 16px;
  }

  .judge-card__head {
    padding: 22px 60px 18px 32px;
  }

  .judge-card__company {
    width: auto;
  }

  .judge-card__toggle {
    top: 26px;
    right: 28px;
  }

  .judge-card__clip {
    max-height: 230px;
    padding: 0 32px 78px;
  }

  .judge-card__links {
    grid-template-columns: 1fr 1fr;
  }

  .judge-card__links>div {
    padding-right: 20px;
  }

  .awards__box {
    padding: 38px 48px;
    align-items: center;
    grid-template-columns: 200px minmax(0, 1fr);
  }

  .award-row {
    grid-template-columns: 48px minmax(180px, 0.8fr) minmax(0, 1fr);
    grid-template-areas: "medal title copy";
  }

  .award-row__medal {
    grid-row: auto;
    width: 48px;
    height: 52px;
  }

  .award-row strong {
    font-size: 24px;
  }

  .faq-item summary {
    min-height: 72px;
    padding-inline: 22px 60px;
    grid-template-columns: 31px minmax(0, 1fr);
    font-size: 17px;
  }

  .faq-item__answer {
    padding: 13px 22px 22px;
    grid-template-columns: 31px minmax(0, 1fr);
  }

  .places__intro,
  .place-row {
    align-items: center;
    grid-template-columns: 0.8fr 1.45fr;
    gap: 54px;
  }

  .places__intro img {
    min-height: 340px;
  }

  .place-row img {
    min-height: 310px;
  }

  .site-footer__inner {
    align-items: end;
    grid-template-columns: 1fr auto;
  }

  .judge-card__profile-section {
    flex-direction: row;
    gap: 24px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .awards__trophy {
    max-width: 220px;
    width: min(100%, 200px);
  }

  .schedule-step {
    flex-basis: 175px;
  }

  .schedule-step {
    position: relative;
    display: flex;
    min-height: 168px;
    padding: 15px 12px 17px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #79a5d6;
    border-radius: 8px;
    background: var(--light-blue);
    text-align: center;
    width: min(100%, 190px);
    flex: 1 1 100px;
  }

  .awards__visual {
    min-height: 210px;
  }

  .site-header__logo {
    width: 450px;
  }

  .subsection-title {
    margin: 0 0 20px;
    color: var(--blue);
    font-family: serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

}

@media (min-width: 1024px) {
  :root {
    --header-height: 90px;
  }

  .site-header__inner {
    padding: 0 28px;
  }

  .site-header__logo {
    width: 450px;
  }

  .brand__mark {
    width: 54px;
    height: 42px;
  }

  .brand__jp {
    font-size: 21px;
  }

  .global-nav a {
    position: relative;
    padding: 10px 13px;
    border: 0;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    transition: 0.5s;
  }

  .global-nav a:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -1px;
    width: 1px;
    height: 13px;
    background: #bec8d6;
    content: "";
    transform: translateY(-50%);
  }

  .global-nav a:hover {
    color: var(--orange);
  }

  .hero {
    min-height: 790px;
  }

  .hero__content {
    min-height: 790px;
  }

  .hero__logo {
    width: 635px;
  }

  .hero__title {
    font-size: 91px;
  }

  .hero__deadline span {
    font-size: 24px;
  }

  .hero__deadline strong {
    font-size: 28px;
  }

  .apply-button {
    min-width: 380px;
    min-height: 72px;
    font-size: 32px;
  }

  .apply-button--small {
    min-width: 124px;
    min-height: 44px;
    font-size: 16px;
  }

  .intro {
    padding: 100px 0 108px;
  }

  .intro p {
    font-size: 20px;
  }

  .section-block {
    padding: 94px 0 112px;
  }

  /*.section-title {
    margin-bottom: 62px;
  }*/

  .merit__icon {
    width: 104px;
    height: 104px;
  }

  .purpose-card__icon {
    width: 145px;
    height: 145px;
  }

  .theme__layout {
    grid-template-columns: minmax(0, 405px) minmax(0, 775px);
    padding: 0;
  }

  .theme__image {
    width: 775px;
    min-height: 0;
    aspect-ratio: 1672 / 941;
  }

  .requirements__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .requirement-card {
    min-height: 270px;
    padding: 28px 16px 24px;
  }

  .requirement-card__icon {
    width: 112px;
    height: 112px;
  }

  .requirement-card h3 {
    font-size: 24px;
  }

  .requirement-card__main {
    font-size: 18px;
  }

  .requirement-card p {
    font-size: 16px;
  }

  .criteria-layout {
    margin-top: 40px;
    gap: 24px;
  }

  .info-panel h3 {
    font-size: 26px;
  }

  .recommendation {
    padding-inline: 12px;
  }

  .recommendation li {
    font-size: 18px !important;
  }

  .recommendation li img {
    width: 26px;
    height: 26px;
  }

  .judging-point {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 14px;
  }

  .judging-point__icon {
    width: 84px;
    height: 84px;
  }

  .judging-point strong {
    font-size: 20px !important;
  }

  .judges {
    margin-top: 78px;
  }

  .judges__list {
    gap: 18px;
  }

  .judge-card__head {
    padding: 24px 90px 20px 42px;
  }

  .judge-card__role {
    font-size: 16px;
  }

  .judge-card__head strong {
    font-size: 24px;
  }

  .judge-card__company {
    font-size: 16px;
  }

  .judge-card__toggle {
    top: 28px;
    right: 42px;
  }

  .judge-card__section h4,
  .judge-card__links h4 {
    font-size: 18px;
  }

  .judge-card__section p,
  .judge-card__section li {
    font-size: 16px;
  }

  .awards {
    margin-top: 84px;
  }

  .awards__box {
    padding: 58px 72px 54px;
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .awards__trophy {
    width: 250px;
  }

  .award-row__medal {
    width: 53px;
    height: 53px;
  }

  .award-row {
    grid-template-columns: 53px minmax(0, 0.6fr) 1fr;
    gap: 0 14px;
  }

  .award-row strong {
    font-size: 30px;
  }

  .award-row p {
    font-size: 18px;
  }

  .schedule {
    padding-top: 38px;
  }

  .schedule__steps {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .schedule-step {
    min-width: 0;
    min-height: 190px;
    flex: 1 1 0;
  }

  .schedule-step__icon {
    height: 74px;
  }

  .schedule-step__icon--1 {
    width: 92px;
  }

  .schedule-step__icon--2 {
    width: 69px;
  }

  .schedule-step__icon--3 {
    width: 97px;
  }

  .schedule-step__icon--4 {
    width: 66px;
  }

  .schedule-step__icon--5 {
    width: 60px;
  }

  .schedule-step strong {
    font-size: 22px;
  }

  .places__heading {
    padding: 72px 0 68px;
  }

  .places__body {
    padding: 72px 0 0px;
  }

  .places__intro,
  .place-row {
    grid-template-columns: minmax(0, 430px) minmax(0, 742px);
    gap: 72px;
    padding: 0;
  }

  .places__intro img,
  .place-row img {
    width: 742px;
    min-height: 0;
  }

  .places__intro>p {
    font-size: 18px;
  }

  .places__list {
    margin-top: 78px;
    gap: 58px;
  }

  .place-row__area {
    font-size: 24px;
  }

  .final-cta {
    min-height: 520px;
  }

  .awards__visual {
    min-height: 250px;
  }

  .awards__list small {
    font-size: 16px;
  }

  .hero__lead {
    font-size: 22px;
  }

  .merit h2,
  .purpose-card h3 {
    font-size: 24px;
  }

  .theme__copy p {
    font-size: 18px;
  }

  .judge-card__profile-section {
    gap: 32px;
  }

  .judge-card__profile-image {
    width: 150px;
  }

  .awards__ribbon {
    top: 0px;
    left: 0px;
    width: 130px;
    height: 130px;
  }

  .awards__box::after {
    width: 130px;
    height: 130px;
  }

  .schedule-step__month {
    font-size: 22px;
  }

  .section-apply p,
  .final-cta__inner>span {
    font-size: 20px;
  }

  .final-cta__inner>p {
    font-size: 35px;
  }

  .faq-item summary {
    font-size: 20px;
  }

  .faq-item__answer p {
    font-size: 18px;
  }

}

@media (min-width: 1240px) {
  .menu-button {
    display: none;
  }

  .global-nav {
    position: static;
    z-index: auto;
    visibility: visible;
    flex: 1 1 auto;
    flex-direction: row;
    justify-content: flex-end;
    padding: 0;
    background: transparent;
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}