@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  background-color: #ffffff;
  color: #1a1a2e;
  line-height: 1.8;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.gnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e0e0e6;
}
.gnav__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.gnav__logo {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a2e;
  text-decoration: none;
  letter-spacing: 1px;
}
.gnav__logo:hover {
  opacity: 0.7;
}
.gnav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
@media (max-width: 600px) {
  .gnav__links {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    background: #ffffff;
    border-left: 1px solid #e0e0e6;
    padding: 80px 32px 40px;
    gap: 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 100;
  }
  .gnav__links.is-open {
    transform: translateX(0);
  }
}
.gnav__link {
  font-size: 0.85rem;
  color: #6b6b80;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.gnav__link:hover {
  color: #1a1a2e;
  opacity: 1;
}
@media (max-width: 600px) {
  .gnav__link {
    font-size: 1rem;
    display: block;
    padding: 16px 0;
    width: 100%;
    color: #1a1a2e;
  }
  li + li > .gnav__link {
    border-top: 1px solid #e0e0e6;
  }
}
.gnav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 101;
}
@media (max-width: 600px) {
  .gnav__burger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.gnav__burger span,
.gnav__burger span::before,
.gnav__burger span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: #1a1a2e;
  border-radius: 1px;
  transition: all 0.25s ease;
}
.gnav__burger span {
  position: relative;
}
.gnav__burger span::before, .gnav__burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
}
.gnav__burger span::before {
  top: -6px;
}
.gnav__burger span::after {
  top: 6px;
}
.gnav__burger.is-open span {
  background: transparent;
}
.gnav__burger.is-open span::before {
  top: 0;
  transform: rotate(45deg);
}
.gnav__burger.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
}
.gnav__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 99;
}
.gnav__overlay.is-open {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #e63b2e;
  text-decoration: none;
  transition: opacity 0.2s;
}
a:hover {
  opacity: 0.8;
}

.result-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.result-hero {
  text-align: center;
  padding: 60px 0 40px;
  position: relative;
}
.result-hero__image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  display: block;
  border: 3px solid #e0e0e6;
}
.result-hero__type-code {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: #e63b2e;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.result-hero__title {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
}
.result-hero__subtitle {
  font-size: 0.95rem;
  color: #6b6b80;
  margin-bottom: 24px;
}
.result-hero__axes {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.result-hero__axis-tag {
  font-size: 0.75rem;
  padding: 4px 12px;
  border: 1px solid #e0e0e6;
  border-radius: 100px;
  color: #6b6b80;
  background: #f5f5f7;
}
.result-hero__oneliner-label {
  font-size: 0.75rem;
  color: #9a9ab0;
  margin-bottom: 6px;
  letter-spacing: 2px;
}
.result-hero__oneliner {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.6;
}
.result-hero__catchcopy {
  font-size: 1rem;
  color: #6b6b80;
  margin-top: 20px;
  font-style: italic;
  line-height: 1.6;
}
.result-hero__catchcopy::before {
  content: '"';
  color: #e63b2e;
  font-size: 1.2rem;
}
.result-hero__catchcopy::after {
  content: '"';
  color: #e63b2e;
  font-size: 1.2rem;
}

.result-section {
  margin-bottom: 36px;
}
.result-section__heading {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: #e63b2e;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e0e0e6;
}
.result-section__body {
  font-size: 0.95rem;
  line-height: 2;
  color: #1a1a2e;
}
.result-section__body p {
  margin-bottom: 16px;
}
.result-section__body p:last-child {
  margin-bottom: 0;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}
.values-list__item {
  font-size: 0.85rem;
  padding: 6px 16px;
  background: rgba(230, 59, 46, 0.1);
  border: 1px solid rgba(230, 59, 46, 0.3);
  border-radius: 100px;
  color: #e63b2e;
  font-weight: 500;
}

.impression-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}
.impression-list__item {
  font-size: 0.9rem;
  padding: 8px 18px;
  background: #f5f5f7;
  border: 1px solid #e0e0e6;
  border-radius: 8px;
  color: #1a1a2e;
}
.impression-list__item::before {
  content: '"';
  color: #9a9ab0;
}
.impression-list__item::after {
  content: '"';
  color: #9a9ab0;
}

.aruaru-list {
  list-style: none;
}
.aruaru-list__item {
  font-size: 0.92rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(224, 224, 230, 0.5);
  color: #1a1a2e;
  line-height: 1.7;
}
.aruaru-list__item::before {
  content: "✓";
  color: #e63b2e;
  font-weight: 700;
  margin-right: 10px;
}
.aruaru-list__item:last-child {
  border-bottom: none;
}

.compat-card {
  background: #f5f5f7;
  border: 1px solid #e0e0e6;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}
.compat-card__thumb {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e0e0e6;
  margin-right: 16px;
  flex-shrink: 0;
}
.compat-card__info {
  flex: 1;
  min-width: 0;
}
.compat-card--good {
  border-left: 3px solid #2ba89e;
}
.compat-card--warn {
  border-left: 3px solid #d4a017;
}
.compat-card__label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  width: 100%;
}
.compat-card--good .compat-card__label {
  color: #2ba89e;
}
.compat-card--warn .compat-card__label {
  color: #d4a017;
}
.compat-card__type-name {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.compat-card__type-code {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  color: #9a9ab0;
  letter-spacing: 1px;
}
.compat-card__desc {
  font-size: 0.88rem;
  color: #6b6b80;
  margin-top: 10px;
  line-height: 1.7;
  width: 100%;
}
.compat-card__link {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #e63b2e;
  text-decoration: none;
  margin-top: 12px;
  transition: opacity 0.2s;
  width: 100%;
}
.compat-card__link:hover {
  opacity: 0.7;
}
.compat-card__link::after {
  content: " →";
}

.bullet-card {
  background: #f5f5f7;
  border: 1px solid #e0e0e6;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}
.bullet-card__heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bullet-card__icon {
  font-size: 1.1rem;
}
.bullet-card__list {
  list-style: none;
}
.bullet-card__list li {
  font-size: 0.9rem;
  color: #6b6b80;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.bullet-card__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #9a9ab0;
}

.result-divider {
  border: none;
  border-top: 1px solid #e0e0e6;
  margin: 40px 0;
}

.result-cta {
  text-align: center;
  padding: 40px 0;
}
.result-cta__text {
  font-size: 0.85rem;
  color: #6b6b80;
  margin-bottom: 20px;
}
.result-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.result-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.result-cta__button:hover {
  transform: translateY(-2px);
  opacity: 1;
}
.result-cta__button--x {
  background: #1a1a2e;
  color: #fff;
  border: 1px solid #1a1a2e;
}
.result-cta__button--x:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.result-cta__button--line {
  background: #06C755;
  color: #fff;
}
.result-cta__button--line:hover {
  box-shadow: 0 4px 20px rgba(6, 199, 85, 0.3);
}

.about-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.about-hero {
  text-align: center;
  padding: 60px 0 40px;
}
.about-hero__title {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.about-section {
  margin-bottom: 36px;
}
.about-section__body {
  font-size: 0.95rem;
  line-height: 2;
  color: #1a1a2e;
}
.about-section__body p {
  margin-bottom: 16px;
}
.about-section__body p:last-child {
  margin-bottom: 0;
}
.about-section__body--center {
  text-align: center;
}

.about-divider {
  border: none;
  border-top: 1px solid #e0e0e6;
  margin: 36px 0;
}

.about-axis {
  margin-bottom: 36px;
}
.about-axis__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.about-axis__letter {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #e63b2e;
  line-height: 1;
  min-width: 40px;
}
.about-axis__name {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.about-axis__sub {
  font-size: 0.8rem;
  color: #6b6b80;
}
.about-axis__desc {
  font-size: 0.9rem;
  color: #6b6b80;
  margin-bottom: 16px;
}
.about-axis__types {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-axis__type {
  background: #f5f5f7;
  border: 1px solid #e0e0e6;
  border-radius: 8px;
  padding: 16px 20px;
}
.about-axis__type-code {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #e63b2e;
  margin-right: 8px;
}
.about-axis__type-label {
  font-size: 0.9rem;
  font-weight: 600;
}
.about-axis__type-desc {
  font-size: 0.85rem;
  color: #6b6b80;
  margin-top: 6px;
  line-height: 1.6;
}

.about-cta {
  text-align: center;
  padding: 20px 0 40px;
}
.about-cta__button {
  display: inline-block;
  padding: 14px 40px;
  background: #e63b2e;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.about-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(230, 59, 46, 0.1);
  opacity: 1;
}

.types-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.types-hero {
  text-align: center;
  padding: 60px 0 40px;
}
.types-hero__title {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.types-hero__subtitle {
  font-size: 0.95rem;
  color: #6b6b80;
  line-height: 1.7;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 600px) {
  .types-grid {
    grid-template-columns: 1fr;
  }
}

.type-card {
  background: #f5f5f7;
  border: 1px solid #e0e0e6;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.type-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.type-card__image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e0e0e6;
  margin-bottom: 16px;
}
.type-card__code {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 4px;
  color: #e63b2e;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}
.type-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2px;
  line-height: 1.4;
}
.type-card__sub {
  font-size: 0.8rem;
  color: #6b6b80;
  margin-bottom: 10px;
}
.type-card__catchcopy {
  font-size: 0.85rem;
  color: #6b6b80;
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.6;
}
.type-card__catchcopy::before, .type-card__catchcopy::after {
  content: '"';
  color: #e63b2e;
}
.type-card__desc {
  font-size: 0.85rem;
  color: #9a9ab0;
  line-height: 1.7;
  margin-bottom: 16px;
  flex-grow: 1;
}
.type-card__link {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #e63b2e;
  text-decoration: none;
  transition: opacity 0.2s;
}
.type-card__link:hover {
  opacity: 0.7;
}
.type-card__link::after {
  content: " →";
}

.quiz-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.quiz-hero {
  text-align: center;
  padding: 60px 0 32px;
}
.quiz-hero__title {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.quiz-hero__subtitle {
  font-size: 0.95rem;
  color: #6b6b80;
  margin-bottom: 24px;
  line-height: 1.7;
}
.quiz-hero__start-note {
  font-size: 0.8rem;
  color: #9a9ab0;
}

.quiz-progress {
  margin-bottom: 32px;
}
.quiz-progress__bar-wrap {
  height: 4px;
  background: #e0e0e6;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}
.quiz-progress__bar {
  height: 100%;
  background: #e63b2e;
  border-radius: 2px;
  transition: width 0.3s ease;
  width: 0%;
}
.quiz-progress__text {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 0.8rem;
  color: #9a9ab0;
  text-align: right;
  letter-spacing: 1px;
}

.quiz-card {
  background: #f5f5f7;
  border: 1px solid #e0e0e6;
  border-radius: 12px;
  padding: 32px 24px;
  margin-bottom: 24px;
}
.quiz-card__axis {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: #e63b2e;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}
.quiz-card__number {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
}
.quiz-card__label {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.5;
}
.quiz-card__weight-badge {
  display: none;
  font-size: 0.7rem;
  color: #e63b2e;
  background: rgba(230, 59, 46, 0.1);
  border: 1px solid rgba(230, 59, 46, 0.3);
  border-radius: 100px;
  padding: 2px 10px;
  margin: 0 auto 20px;
  width: fit-content;
}

.quiz-scale {
  margin-top: 24px;
}
.quiz-scale__labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}
.quiz-scale__label-side {
  font-size: 0.8rem;
  color: #6b6b80;
  line-height: 1.5;
  max-width: 45%;
}
.quiz-scale__label-side--a {
  text-align: left;
}
.quiz-scale__label-side--b {
  text-align: right;
}
.quiz-scale__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.quiz-scale__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #e0e0e6;
  background: transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  padding: 0;
}
.quiz-scale__btn:hover {
  border-color: #6b6b80;
  background: rgba(26, 26, 46, 0.05);
}
.quiz-scale__btn--selected {
  border-color: #e63b2e;
  background: #e63b2e;
}
.quiz-scale__btn:nth-child(1), .quiz-scale__btn:nth-child(7) {
  width: 44px;
  height: 44px;
}
.quiz-scale__btn:nth-child(2), .quiz-scale__btn:nth-child(6) {
  width: 38px;
  height: 38px;
}
.quiz-scale__btn:nth-child(3), .quiz-scale__btn:nth-child(5) {
  width: 34px;
  height: 34px;
}
.quiz-scale__btn:nth-child(4) {
  width: 30px;
  height: 30px;
}
.quiz-scale__hints {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: #9a9ab0;
  letter-spacing: 0.5px;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.quiz-nav__btn {
  padding: 12px 28px;
  border-radius: 100px;
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}
.quiz-nav__btn--prev {
  background: transparent;
  color: #6b6b80;
  border: 1px solid #e0e0e6;
}
.quiz-nav__btn--prev:hover {
  border-color: #6b6b80;
}
.quiz-nav__btn--next {
  background: #e63b2e;
  color: #fff;
}
.quiz-nav__btn--next:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(230, 59, 46, 0.1);
}
.quiz-nav__btn--next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.site-footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 0.75rem;
  color: #9a9ab0;
  border-top: 1px solid #e0e0e6;
}
