* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.8;
  background-color: #eee;
  color: #333;
  min-height: 100vh;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 3rem;
}

header {
  padding: 10px 20px;
  display: flex;
  align-items: center;
}
header img {
  width: 350px;
}
@media screen and (max-width: 767px) {
  header img {
    width: 85%;
  }
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #0d479f;
  text-decoration: none;
  transition: all 0.3s ease;
}
.logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
.nav-links a:hover {
  color: #0d479f;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #0d479f;
  transition: width 0.3s ease;
}

.hero {
  text-align: center;
  padding: 2rem 0;
  color: rgb(36, 36, 36);
}
.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}
.hero p {
  font-size: 1.2rem;
  opacity: 0.8;
  animation: fadeInUp 1s ease forwards 0.3s;
}

.privacy-card {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(20px);
  opacity: 0;
  animation: slideInUp 0.8s ease forwards;
  padding: 4rem;
  margin-bottom: 2rem;
}
.privacy-card .privacy-content {
  max-width: 900px;
  margin: 0 auto;
}
.privacy-card .privacy-preamble {
  background: #f2f8ff;
  padding: 2.5rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  text-align: center;
}
.privacy-card .privacy-preamble h2 {
  color: #0d479f;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.privacy-card .privacy-preamble p {
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
  text-align: justify;
}
.privacy-card .privacy-article {
  margin-bottom: 1rem;
  padding: 2rem;
  background: rgba(248, 249, 255, 0.3);
  border-radius: 15px;
}
.privacy-card .privacy-article h2 {
  color: #0d479f;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.privacy-card .privacy-article h2 i {
  font-size: 1.2rem;
  color: #0d479f;
}
.privacy-card .privacy-article p {
  margin-bottom: 1rem;
  text-align: justify;
}
.privacy-card .privacy-article ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}
.privacy-card .privacy-article li {
  margin-bottom: 0.8rem;
  text-align: justify;
}
.privacy-card .privacy-article.contact-section {
  color: rgb(57, 57, 57);
}
.privacy-card .privacy-article.contact-section .contact-info {
  padding: 2rem;
  border-radius: 10px;
  margin-top: 1rem;
}
.privacy-card .privacy-article.contact-section .contact-info p {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.privacy-card .privacy-article.contact-section .contact-info a {
  color: #87ceeb;
  text-decoration: none;
  transition: color 0.3s ease;
}
.privacy-card .privacy-article.contact-section .contact-info a:hover {
  color: #fff;
}

.terms-card {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(20px);
  opacity: 0;
  animation: slideInUp 0.8s ease forwards;
  padding: 4rem;
  margin-bottom: 2rem;
}
.terms-card .terms-content {
  max-width: 900px;
  margin: 0 auto;
}
.terms-card .terms-preamble {
  background: #f2f8ff;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 3rem;
}
.terms-card .terms-preamble p {
  font-size: 1.1rem;
  color: #0d479f;
  font-weight: 500;
}
.terms-card .terms-article {
  margin-bottom: 3rem;
  padding: 2rem 0;
  border-bottom: 1px solid #eee;
}
.terms-card .terms-article:last-of-type {
  border-bottom: none;
}
.terms-card .terms-article h2 {
  color: #0d479f;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #0d479f;
  display: inline-block;
}
.terms-card .terms-article p {
  margin-bottom: 1rem;
  text-align: justify;
}
.terms-card .terms-article ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}
.terms-card .terms-article li {
  margin-bottom: 0.8rem;
  text-align: justify;
}
.terms-card .terms-footer {
  text-align: center;
  padding: 3rem 0 1rem;
  border-top: 2px solid #cfcfcf;
  margin-top: 3rem;
}
.terms-card .terms-footer p {
  margin-bottom: 1rem;
  color: #666;
}

.company-card {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(20px);
  opacity: 0;
  animation: slideInUp 0.8s ease forwards;
  padding: 3rem;
}

.company-details h2 {
  color: #0d479f;
  margin-bottom: 2rem;
  font-size: 2.2rem;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.info-table th,
.info-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.info-table th {
  background: #f2f8ff;
  color: #0d479f;
  font-weight: 600;
  width: 30%;
}

.company-logo {
  text-align: center;
  padding: 2rem;
}

.company-logo-placeholder {
  width: 200px;
  height: 200px;
  background: #dfe6d6;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.section {
  margin: 3rem 0;
}
.section h3 {
  font-size: 1.8rem;
  color: #0d479f;
  margin-bottom: 1.5rem;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: #dfe6d6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #fff;
  font-size: 2rem;
}

.access-section {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  width: 100%;
  height: 300px;
  background: #f0f0f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1.1rem;
  margin-top: 1rem;
}

footer {
  max-width: 900px;
  padding: 25px 0;
  text-align: center;
  margin: 0 auto;
  color: #a6a6a6;
  position: relative;
  bottom: 0;
  width: 100%;
  font-size: 14px;
}
footer.footer_top {
  margin-bottom: 0;
}
footer ul {
  display: flex;
  margin: 25px 15px 20px;
  color: #4e4e4e;
  list-style: none;
}
footer ul li {
  margin-right: 50px;
}
footer ul li a {
  color: #4e4e4e;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
footer ul li a:hover {
  opacity: 0.8;
}
footer p {
  text-align: center;
  padding-top: 10px;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  header img {
    width: 85%;
  }
  .nav-links {
    display: none;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .privacy-card {
    padding: 1rem;
  }
  .privacy-card .privacy-preamble {
    padding: 1.5rem;
  }
  .privacy-card .privacy-article {
    padding: 1rem;
  }
  .privacy-card .privacy-article h2 {
    font-size: 1.2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  .privacy-card .privacy-article ol {
    margin-left: 1rem;
  }
  .privacy-card .privacy-article.contact-section .contact-info {
    padding: 1rem;
  }
  .terms-card {
    padding: 1.5rem;
  }
  .terms-card .terms-preamble {
    padding: 1.5rem;
  }
  .terms-card .terms-article {
    padding: 1.5rem 0;
  }
  .terms-card .terms-article ol {
    margin-left: 1.5rem;
  }
  .company-card {
    padding: 1rem;
  }
  .company-info {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  footer ul li {
    margin-right: 20px;
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  footer ul {
    gap: 10px;
  }
  footer ul li {
    margin-right: 0;
  }
}/*# sourceMappingURL=company.css.map */