@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Zen+Kaku+Gothic+New&display=swap');

:root {
  --white: #FFFFFF;
  --black: #000000;

  /* Gray Colors */
  --gray-50: #EEEEEE;
  --gray-100: #DEDEDE;
  --gray-200: #CDCDCD;
  --gray-300: #BCBCBC;
  --gray-400: #989898;
  --gray-500: #7A7A7A;
  --gray-600: #595959;
  --gray-700: #474747;
  --gray-800: #353535;
  --gray-900: #242424;

  /* Blue Colors */
  --blue-50: #E6EEF7;
  --blue-100: #CCDDF0;
  --blue-200: #B3CCE8;
  --blue-300: #99BBE0;
  --blue-400: #6699D1;
  --blue-500: #3377C1;
  --blue-600: #0055B2;
  --blue-700: #00448E;
  --blue-800: #00336B;
  --blue-900: #002247;

  /* Green Colors */
  --green-50: #EAFDEA;
  --green-100: #D4FCD6;
  --green-200: #BFFAC1;
  --green-300: #A9F9AC;
  --green-400: #7EF583;
  --green-500: #53F259;
  --green-600: #28EF30;
  --green-700: #20BF26;
  --green-800: #188F1D;
  --green-900: #105013;

  /* Red Colors */
  --red-50: #FAE9E6;
  --red-100: #F5D3CC;
  --red-200: #F0BDB3;
  --red-300: #EBA799;
  --red-400: #E07A66;
  --red-500: #D64E33;
  --red-600: #CC2200;
  --red-700: #A31B00;
  --red-800: #7A1400;
  --red-900: #520E00;

  /* Fonts */
  --font-sans: 'Inter', 'Zen Kaku Gothic New', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-height: 0;
}

html {
  min-height: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-sans);
  background-color: var(--blue-600);
  color: var(--white);
  font-kerning: none;
  hanging-punctuation: allow-end;
  line-break: normal;
  hyphens: auto;
  -webkit-text-size-adjust: 100%;
  cursor: url('/assets/images/cursor.png') 0 0, auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  line-height: 1.75;
  min-height: 100vh;
} 

a:hover,
button:hover {
  cursor: url('/assets/images/cursor-active.png') 0 0, auto;
}

.logo-dig-shibuya {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
}

.logo-2026 {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
}

h1, h2, h3 {
  -webkit-font-smoothing: none;
}

h1 small,
h2 small,
h3 small {
  display: block;
  font-size: 87.5%;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
}

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

ul, ol {
  padding-left: 0;
  list-style: none;
}

a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--green-600);
  text-underline-offset: 0.25em;
}

a:hover {
  text-decoration: none;
}

header {
  height: 100dvh;
  max-height: 64rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  gap: 2rem;
  padding: 2rem 0;
}

header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

header:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/shibuya.jpg');
  background-size: cover;
  background-position: center;
  z-index: -2;
}

header h1 {
  font-size: 2rem;
}

header p {
  line-height: 1.25;
}

header p strong {
  font-size: 1.5rem;
}

header p small {
  display: block;
  margin-top: 0.5rem;
  font-size: 87.5%;
}

.container {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

main h2,
aside h3 {
  color: var(--green-600);
  font-size: 1.5rem;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
  aspect-ratio: 16 / 9;
} 

figure {
  margin-top: 2rem;
}

.list-application {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
}

.button {
  display: inline-block;
  text-decoration: none;
  border: 2px solid var(--green-600);
  padding: .75rem 1.5rem;
  color: var(--green-600);
  line-height: 1.25;
}

footer {
  background: var(--white);
  color: var(--blue-600);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  position: relative;
}

.list-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .footer-links p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .footer-links {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .list-application {
    flex-direction: row;
    align-items: left;
  }
}

footer a {
  color: var(--blue-600);
  text-decoration: none;
}

.footer-links ul {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-archives {
  width: 100%;
  border-bottom: 1px solid var(--blue-600);
  padding: 1rem;
}

.not-found {
  flex: 1;
  text-align: center;
  margin-bottom: -3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}