.page-about {
  background: #FFFFFF;
  color: #333333;
  max-width: 100%;
  overflow-x: hidden;
}
.page-about__hero {
  background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 50%, #fff3e0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 16px 32px;
  max-width: 100%;
}
.page-about__hero-image-wrap {
  width: 100%;
  max-width: 1400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.page-about__hero-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1400px;
  aspect-ratio: 24/7;
  object-fit: cover;
}
.page-about__hero-content {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  padding-top: 24px;
}
.page-about__hero-title {
  font-size: clamp(1.7rem, 4.2vw, 2.9rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #003d66;
  max-width: 900px;
  margin: 0 auto;
}
.page-about__hero-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  max-width: 800px;
  margin: 8px auto;
}
.page-about__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
}
.page-about__btn {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  transition: background 0.2s, transform 0.1s;
}
.page-about__btn--primary {
  background: #26A9E0;
  color: #FFFFFF;
}
.page-about__btn--primary:hover {
  background: #168fc2;
}
.page-about__btn--secondary {
  background: #FFFFFF;
  border-color: #26A9E0;
  color: #0477db;
}
.page-about__btn--secondary:hover {
  background: #e6f4fb;
}
.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 16px;
  box-sizing: border-box;
}
.page-about__container--wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 16px;
  box-sizing: border-box;
}
.page-about__container--narrow {
  max-width: 900px;
}
.page-about__section {
  padding: 20px 0 12px;
}
.page-about__section--values {
  background: #f9faff;
}
.page-about__section--game {
  background: #ffffff;
}
.page-about__section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 16px;
  padding: 0 16px;
}
.page-about__section-title {
  color: #26A9E0;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.3;
}
.page-about__section-subtitle {
  color: #666;
  font-size: 1rem;
  margin-top: 4px;
}
.page-about__story-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.page-about__story-card {
  background: #ffffff;
  border: 1px solid #e6eefb;
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(38, 169, 224, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.page-about__story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(38, 169, 224, 0.12);
}
.page-about__story-icon {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 10px;
}
.page-about__story-title {
  font-size: 1rem;
  color: #003d66;
  line-height: 1.4;
  font-weight: 700;
}
.page-about__story-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #444;
  margin-top: 6px;
}
.page-about__values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.page-about__value-item {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 24px 20px;
  border-left: 5px solid #26A9E0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}
.page-about__value-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: #26A9E0;
  opacity: 0.12;
  display: block;
  line-height: 1;
}
.page-about__value-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #003d66;
  margin-top: 4px;
}
.page-about__value-desc {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
}
.page-about__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 12px;
}
.page-about__stat-item {
  background: #ffe6cc;
  border-radius: 18px;
  padding: 26px 18px;
  text-align: center;
  border-bottom: 4px solid #EA7C07;
}
.page-about__stat-number {
  color: #EA7C07;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.page-about__stat-title {
  color: #523d26;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 6px 0 4px;
}
.page-about__stat-text {
  font-size: 0.85rem;
  color: #6b4f2f;
  line-height: 1.4;
}
.page-about__section--partners {
  padding-top: 0;
}
.page-about__partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.page-about__partner-item {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e6eefb;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: border-color 0.2s;
}
.page-about__partner-item:hover {
  border-color: #26A9E0;
}
.page-about__partner-logo {
  max-width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  object-fit: contain;
  border-radius: 8px;
}
.page-about__partner-link {
  display: inline-block;
  background: #26A9E0;
  color: #FFFFFF;
  padding: 8px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.page-about__partner-link:hover {
  background: #168fc2;
}
.page-about__guide-card {
  background: #f4faff;
  border-radius: 24px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.page-about__guide-figure {
  margin: 0;
  flex-shrink: 0;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.page-about__guide-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.page-about__guide-caption {
  text-align: right;
  color: #777;
  font-size: 0.8rem;
  font-style: italic;
  padding: 4px 8px 0;
}
.page-about__guide-content {
  flex: 1;
}
.page-about__guide-title {
  margin-top: 0;
  color: #003d66;
  font-size: 1.5rem;
  font-weight: 700;
}
.page-about__guide-text {
  color: #333;
  line-height: 1.7;
}
.page-about__guide-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-about__guide-item {
  background: white;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border-left: 4px solid #26A9E0;
}
.page-about__guide-check {
  background: #e6f4fb;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #26A9E0;
  font-weight: bold;
  flex-shrink: 0;
}
.page-about__guide-item-title {
  font-size: 0.95rem;
  color: #222;
  margin: 0 0 2px;
}
.page-about__guide-item-text {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
}
.page-about__game-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.page-about__game-image-wrap {
  flex: 1 1 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  background: #eef8fe;
}
.page-about__game-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.page-about__game-content {
  flex: 1 1 300px;
}
.page-about__game-title {
  color: #003d66;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.3;
  margin-top: 0;
}
.page-about__game-text {
  color: #333;
  line-height: 1.7;
}
.page-about__game-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-about__game-list-item {
  background: #f4faff;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  gap: 10px;
}
.page-about__game-list-icon {
  color: #EA7C07;
  font-weight: bold;
  flex-shrink: 0;
  background: #fff4e5;
  width: 21px;
  height: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.page-about__game-list-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 2px;
}
.page-about__game-list-desc {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}
.page-about__game-note {
  font-size: 0.95rem;
  background: #e6f4fb;
  padding: 12px 14px;
  border-radius: 10px;
  color: #155a7a;
  border-left: 5px solid #26A9E0;
  margin-top: 10px;
}
.page-about__faq {
  background: #f9faff;
  padding: 24px 0;
}
.page-about__faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 16px;
}
.page-about__faq-item {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e6eefb;
}
.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 600;
  color: #003d66;
  list-style: none;
}
.page-about__faq-question::-webkit-details-marker {
  display: none;
}
.page-about__faq-text {
  flex: 1;
}
.page-about__faq-toggle {
  color: #26A9E0;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  background: #e6f4fb;
  border-radius: 8px;
  padding: 2px 8px;
  display: inline-block;
}
.page-about__faq-answer {
  padding: 0 16px 14px;
  border-top: 1px dashed #d4e6f5;
}
.page-about__faq-answer-text {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.7;
}
.page-about__cta {
  background: #002B44;
  padding: 20px 0;
}
.page-about__cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-about__cta-image-wrap {
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.page-about__cta-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/1;
  object-fit: cover;
}
.page-about__cta-content {
  text-align: center;
  color: #ffffff;
  padding-top: 20px;
  max-width: 800px;
}
.page-about__cta-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
  color: #fff;
}
.page-about__cta-text {
  color: #cfe3f0;
  line-height: 1.7;
}
.page-about__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}
@media (max-width: 1024px) {
  .page-about__story-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-about__stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .page-about__hero {
    padding: 10px 12px 32px;
  }
  .page-about__hero-image {
    aspect-ratio: 16/9;
  }
  .page-about__hero-title {
    font-size: clamp(1.5rem, 4.2vw, 2rem);
  }
  .page-about__hero-description {
    font-size: 0.85rem;
  }
  .page-about__btn {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 10px 14px;
  }
  .page-about__section-title {
    font-size: 1.4rem;
  }
  .page-about__story-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  .page-about__stats-grid {
    grid-template-columns: 1fr;
  }
  .page-about__partner-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 16px;
  }
  .page-about img {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-about__cta-title {
    font-size: 1.5rem;
  }
  .page-about__cta-text {
    font-size: 0.9rem;
  }
}