@charset "UTF-8";

/* ===== Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.link-works:focus-visible {
  outline: 2px solid #880000;
  outline-offset: 4px;
}

img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ===== Base ===== */
body {
  background-color: #F6F5F2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== Layout ===== */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 40px 0 80px;
}

.content {
  max-width: 640px;
  text-align: center;
}

/* ===== Parts ===== */
.logo {
  margin-bottom: 48px;
}
.logo img {
  max-width: 128px;
}

.main-visual {
  margin-bottom: 36px;
}
.main-visual img {
  max-width: 280px;
}

.actions {
  margin-bottom: 36px;
}

.actions img{
  max-width: 124px;
}

.link-works {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.link-works:hover,
.link-works:focus-visible {
  transform: scale(1.03);
}

.description img {
  max-width: 290px;
}

/* ===== A11y ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border-width: 0;
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
  .container {
    padding: 40px 32px 120px;
  }
  .logo img{
    max-width: 120px;
  }
  .main-visual img {
    max-width: 260px;
  }
  .actions img {
    max-width: 115px;
  }
  .description img {
    max-width: 280px;
  }
}