@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700&display=swap');

:root {
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5rem;
  color: var(--color-gray-700);

  --color-gray-300: #d1d5db;
  --color-gray-500: #6b7280;
  --color-gray-700: #374151;
  --color-gray-900: #111827;
}

html * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
a {
  color: var(--color-gray-700);
}
h3 {
  font-weight: 700;
}

@media (min-width: 640px) {
  :root {
    font-size: 16px;
  }
}

.card-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 0.25rem 0 rgba(0, 0, 0, 0.25);
}
.card-landscape {
  max-width: 480px;
  aspect-ratio: 91 / 55;
}
.card-landscape-mini {
  max-width: 320px;
  aspect-ratio: 91 / 55;
}
.icon-avatar {
  width: 4rem;
  height: 4rem;
}
.icon-card {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1 / 1;
}
.icon-text {
  width: 1.5rem;
  height: 1.5rem;
}
.link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 2rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-gray-700);
  border: 2px solid var(--color-gray-700);
  border-radius: 0.25rem;
}
.link-button-disabled {
  color: var(--color-gray-300);
  border: 2px solid var(--color-gray-300);
}
.text-sub {
  font-size: 0.75rem;
  line-height: 1rem;
  color: var(--color-gray-500);
}
.text-sub a {
  color: var(--color-gray-500);
}

/* Tailwind-like */
.flex { display: flex; }
.hidden { display: none; }
.items-center { align-items: center; }
.max-w-lg { max-width: 32rem; }
.max-w-sm { max-width: 24rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-4 { margin-right: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-16 { margin-top: 4rem; margin-bottom: 4rem; }
.my-32 { margin-top: 8rem; margin-bottom: 8rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.w-full { width: 100%; }
