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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

:root {
  --header-h: 56px;
}

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote,
ol, ul, dl, dd {
  margin: 0;
}

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

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

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

strong,
b {
  font-weight: 700;
}

::selection {
  background-color: #111111;
  color: #fafaf9;
}

body {
  background-color: #fafaf9;
  color: #111111;
  font-family: "LINE Seed JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  font-size: 13.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-weight: 300;
  line-height: 1.2;
  font-family: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
}

.eyebrow {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section__title {
  font-size: 37px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
}

.subsection__title {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.prose {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.7;
  text-align: justify;
  hyphens: none;
}
.prose p + p {
  margin-top: 16px;
}
.prose__note {
  text-align: left;
  hyphens: none;
}
.prose__small {
  font-size: 11px;
  line-height: 1.7;
}

:lang(ja) {
  font-feature-settings: "palt" 1;
}

.container {
  width: 100%;
  max-width: 972px;
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: 90px;
}
.section--about {
  padding-top: 56px;
  padding-bottom: 100px;
}
.section--duo {
  padding-top: 0;
  padding-bottom: 90px;
}
.section--island {
  padding-top: 56px;
  padding-bottom: 90px;
}
.section--memory {
  padding-block: 56px;
}
.section--people {
  padding-top: 90px;
  padding-bottom: 90px;
}
.section--open-call {
  padding-top: 90px;
  padding-bottom: 90px;
}
.section--newsletter {
  padding-top: 90px;
  padding-bottom: 90px;
}
.section--programme {
  padding-top: 145px;
  padding-bottom: 90px;
}
.section--closing {
  padding-top: 56px;
  padding-bottom: 90px;
}
.section__head {
  margin-bottom: 56px;
}
.section__head--half {
  max-width: 460px;
  margin-bottom: 24px;
}

.block + .block {
  margin-top: 90px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #fafaf9;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  height: 56px;
  padding-inline: 40px;
}
.site-header__logo {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
}
.site-nav a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.site-nav a:hover, .site-nav a:focus-visible {
  opacity: 0.5;
}

@media (max-width: 900px) {
  :root {
    --header-h: 116px;
  }
  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    height: auto;
    padding: 12px 24px;
  }
  .site-nav__list {
    flex-wrap: wrap;
    gap: 8px 18px;
  }
}
.site-footer {
  padding-block: 90px 145px;
  text-align: center;
}
.site-footer__mark {
  margin: 0 auto 56px;
  width: 110px;
}
.site-footer__mark img {
  display: block;
  width: 100%;
  height: auto;
}
.site-footer__line {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #111111;
}
.site-footer__date {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8c8c8c;
  margin-top: 24px;
}

.grid {
  display: grid;
  gap: 58px;
}
.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid--offset-sm > .grid__col:last-child {
  padding-top: 20px;
}
.grid--offset-md > .grid__col:last-child {
  padding-top: 72px;
}
.grid--offset-lg > .grid__col:last-child {
  padding-top: 122px;
}
@media (max-width: 900px) {
  .grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 56px;
  }
  .grid > .grid__col:last-child {
    padding-top: 0;
  }
}

.figure {
  margin: 0;
}
.figure img {
  display: block;
  width: 100%;
  height: auto;
}
.figure--full {
  margin-bottom: 90px;
}
.figure--full img {
  aspect-ratio: 923/443;
  object-fit: cover;
}
.figure--close {
  margin-top: 90px;
  margin-bottom: 0;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  aspect-ratio: 923/443;
  margin-bottom: 90px;
}
.mosaic__item {
  margin: 0;
  min-height: 0;
}
.mosaic__item--tall {
  grid-row: 1/span 2;
}
.mosaic__item img {
  display: block;
  width: 100%;
  height: auto;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 620px) {
  .mosaic {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
    aspect-ratio: auto;
  }
  .mosaic__item--tall {
    grid-row: auto;
  }
  .mosaic__item img {
    aspect-ratio: 923/443;
    height: auto;
  }
}

.divider {
  border: 0;
  border-top: 1px solid transparent;
  height: 0;
  margin-block: 24px;
}
.divider__large {
  margin-block: 56px;
}

.hero {
  min-height: max(600px, 100vh - var(--header-h));
  min-height: max(600px, 100svh - var(--header-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  padding-block: clamp(48px, 9vh, 110px) clamp(36px, 6vh, 64px);
  text-align: center;
}
.hero__eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero__title, .hero__place {
  margin-top: auto;
}
.hero__title {
  font-size: 74px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  text-transform: uppercase;
}
.hero__amp {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.hero__mark {
  margin-top: 10px;
  width: 56px;
}
.hero__mark img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 56/90;
  object-fit: cover;
}
.hero__place {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__place-jp {
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1;
}
.hero__place-latin {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}
.hero__place-year {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  line-height: 1;
}
@media (max-width: 620px) {
  .hero__title {
    font-size: 48px;
  }
}

.section--about .eyebrow {
  margin-bottom: 2px;
}

.prose--half {
  max-width: 434px;
}

.duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 58px;
  max-width: 765px;
  margin-left: auto;
}
.duo__title {
  font-size: 25px;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}
.duo__subtitle {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .duo {
    grid-template-columns: minmax(0, 1fr);
    gap: 56px;
    max-width: none;
    margin-left: 0;
  }
}

.section--island .section__head {
  margin-bottom: 40px;
}
.section--island .section__title {
  line-height: 1.25;
}

.memory {
  max-width: 474px;
  margin-left: auto;
  margin-right: auto;
}
.memory__title {
  font-size: 86px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.memory__subtitle {
  font-size: 33px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
  line-height: 1.22;
  margin-bottom: 56px;
}
@media (max-width: 900px) {
  .memory {
    max-width: none;
    margin-left: 0;
  }
  .memory__title {
    font-size: 48px;
  }
}

.section--people .subsection__title {
  line-height: 1.35;
}
.section--people .subsection__title :lang(ja) {
  font-weight: 300;
  letter-spacing: 0.08em;
}

.section--open-call .prose__note {
  margin-top: 16px;
}

.weeks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 90px 58px;
  margin: 0;
}
.weeks__item {
  margin: 0;
}
.weeks__title {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .weeks {
    grid-template-columns: minmax(0, 1fr);
    gap: 56px;
  }
}

.newsletter {
  background-color: #111111;
  color: #fafaf9;
  padding-block: 90px;
  text-align: center;
}
.newsletter__inner {
  max-width: 474px;
  margin-inline: auto;
}
.newsletter__title {
  font-size: 37px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
}
.newsletter__note {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.7;
  text-align: justify;
  hyphens: none;
  text-align: center;
  margin-top: 12px;
}
.newsletter__form {
  display: flex;
  gap: 12px;
  margin-top: 56px;
}
.newsletter__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.newsletter__input, .newsletter__submit {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: inherit;
  background-color: transparent;
  border: 1px solid #fafaf9;
  color: #fafaf9;
  padding: 14px 18px;
}
.newsletter__input {
  flex: 1 1 auto;
  min-width: 0;
  text-transform: none;
  text-align: center;
}
.newsletter__input::placeholder {
  color: #fafaf9;
  opacity: 0.55;
}
.newsletter__input:focus-visible {
  outline: 1px solid #fafaf9;
  outline-offset: 2px;
}
.newsletter__submit {
  flex: 0 0 auto;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.newsletter__submit:hover, .newsletter__submit:focus-visible {
  background-color: #fafaf9;
  color: #111111;
}
.newsletter ::selection {
  background-color: #fafaf9;
  color: #111111;
}
@media (max-width: 620px) {
  .newsletter__title {
    font-size: 28px;
  }
  .newsletter__form {
    flex-direction: column;
  }
}

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