@charset "utf-8";

/* Subpages Styles */
.simple-header {
  background: var(--color-white);
  padding: 20px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.simple-header-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

.logo img {
  height: 40px;
  width: auto;
}

.subpage-content {
  padding: 40px 0;
  background: var(--color-white);
}
.page-section {
  margin-bottom: 0;
}

.page-section h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: 1px;
}

.page-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-top: 40px;
  margin-bottom: 24px;
  text-align: center;
  position: relative;
}

.page-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 20px auto 0;
}

.info-table {
  max-width: 800px;
  margin: 0 auto;
}

.info-row {
  display: flex;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  flex: 0 0 200px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.info-value {
  flex: 1;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.business-content {
  max-width: 800px;
  margin: 0 auto;
}

.business-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.content-section {
  max-width: 880px;
  margin: 0 auto 56px;
  color: var(--color-gray-dark);
  line-height: 1.8;
}

.content-section:last-child {
  margin-bottom: 0;
}

.content-section p {
  margin-bottom: 16px;
}

.content-section ul,
.content-section ol {
  margin: 0 0 24px 1.5em;
  padding: 0;
}

.content-section > p + ul,
.content-section > p + ol {
  margin-top: 12px;
}

.content-section li {
  margin-bottom: 10px;
}

.lead-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: left;
}

.note-text {
  font-size: 14px;
  color: var(--color-gray-dark);
  opacity: 0.8;
  margin-top: 12px;
}

.subsection-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 32px 0 12px;
}

.card-list {
  max-width: 960px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: #f7f9fc;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 20px;
  color: var(--color-text-primary);
  margin: 0;
}

.card p {
  margin: 0;
  color: var(--color-gray-dark);
  line-height: 1.6;
}

.card ul {
  margin: 0;
  padding-left: 1.1em;
  color: var(--color-gray-dark);
}

.card ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.step-list {
  margin: 0 0 24px 1.5em;
  padding: 0;
  color: var(--color-gray-dark);
}

.step-list li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.faq-item {
  background: #f7f9fc;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.faq-question {
  font-weight: 700;
  color: var(--color-text-primary);
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-answer p {
  margin-bottom: 12px;
  color: var(--color-gray-dark);
  line-height: 1.6;
}

.faq-answer ul {
  margin: 0 0 12px 1.5em;
  padding: 0;
  color: var(--color-gray-dark);
}

.faq-answer li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.terms-content h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: left;
  margin: 32px 0 16px;
}

.terms-content h2::after {
  content: none;
}

.terms-content p {
  margin-bottom: 12px;
  color: var(--color-gray-dark);
  line-height: 1.8;
}

.terms-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .simple-header-container {
    padding: 0 16px;
  }

  .subpage-content {
    padding: 30px 16px;
  }

  .page-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .info-row {
    flex-direction: column;
    gap: 10px;
  }

  .info-label {
    flex: none;
    font-size: 14px;
  }

  .business-content p {
    font-size: 16px;
  }

  .content-section {
    margin: 0 auto 40px;
  }

  .card-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card {
    padding: 20px;
  }

  .faq-item {
    padding: 20px;
  }
}

/* Mission Vision Page Styles */
.mission {
  text-align: center;
  margin: 0 auto;
}

/* Philosophy Section for Subpages - Static version without scroll animations */
.philosophy-section {
  position: relative;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.philosophy-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0038b9;
  opacity: 1;
  border-radius: 24px;
}

.philosophy-background-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  z-index: 1;
}

.philosophy-background-image img {
  width: 400px;
  height: auto;
}

.philosophy-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.philosophy-text-title {
  color: #fff;
  font-family: Futura;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 40px;
  opacity: 1;
}

.philosophy-text-main {
  color: #fff;
  font-family: "SF Pro Display", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%;
  margin-bottom: 0;
  opacity: 1;
}

@media (max-width: 768px) {
  .philosophy-section {
    padding: 60px 16px;
    min-height: 400px;
  }

  .philosophy-text-title {
    font-size: 32px;
  }

  .philosophy-background-image img {
    width: 200px;
  }

  .philosophy-text-main {
    font-size: 16px;
  }
}

/* News Page Styles */
.news-list {
  max-width: 800px;
  margin: 0 auto;
}
.news-item-page {
  display: flex;
  align-items: flex-start;
  padding: 25px 0;
  border-bottom: 1px solid #eee;
  position: relative;
}

.news-item-page:last-child {
  border-bottom: none;
}

.news-date {
  flex: 0 0 120px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
  padding-right: 20px;
}

.news-content-page {
  flex: 1;
  padding-right: 20px;
}

.news-content-page a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.news-content-page a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.news-content-page:not(:has(a)) {
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .news-item-page {
    flex-direction: column;
    padding: 20px 0;
  }

  .news-date {
    flex: none;
    margin-bottom: 10px;
    padding-right: 0;
    font-size: 14px;
  }

  .news-content-page {
    margin-bottom: 10px;
    padding-right: 0;
  }

  .news-content-page a {
    font-size: 15px;
  }
}

/* Contact Button Styles */
.contact-button-container {
  text-align: center;
  margin: 30px 0;
}

.contact-button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid black;
  background: white;
  text-decoration: none;
  font-weight: normal;
  font-size: 16px;
  cursor: pointer;
}

/* SNS Links Styles */
.sns-links-horizontal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.sns-item-horizontal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.sns-icon-button {
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: white;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  border: 1px solid #ddd;
}

.sns-icon-button:hover {
  transform: scale(1.05);
}

.sns-icon-button i {
  font-size: 32px;
}

.sns-description h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.sns-description p {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin: 0;
}

@media (max-width: 768px) {
  .sns-links-horizontal {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Coming Soon Styles */
.coming-soon-box {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}

.coming-soon-title {
  color: #666;
  margin-bottom: 20px;
}

.coming-soon-text {
  color: #888;
  font-size: 16px;
  line-height: 1.6;
}

.link-primary {
  color: #007bff;
  text-decoration: none;
}

.link-primary:hover {
  text-decoration: underline;
}
