/* avaport sample homepage stylesheet */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: #333;
  line-height: 1.8;
  background: #fff;
}

a {
  color: inherit;
}

.site-header {
  background: #1F4E79;
  color: white;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.global-nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.global-nav a {
  text-decoration: none;
}

.global-nav a:hover,
.text-link:hover {
  text-decoration: underline;
}

.hero {
  min-height: 620px;
  padding: 100px 20px;
  text-align: left;
  color: #08294a;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.86) 36%, rgba(255,255,255,0.14) 62%, rgba(255,255,255,0.04) 100%),
    url("../images/hero-avaport.png") center center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.hero-label,
.section-label {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.14em;
  color: #F05A28;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: 52px;
  line-height: 1.35;
}

.hero p {
  margin: 0;
  font-size: 18px;
}

.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 28px;
  background: #F05A28;
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: bold;
}

.btn:hover {
  background: #d94d21;
}

.section {
  padding: 72px 20px;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section h2,
.page-title h1 {
  margin: 0 0 20px;
  font-size: 30px;
  color: #1F4E79;
  line-height: 1.4;
}

.lead {
  margin-top: -8px;
  margin-bottom: 30px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.concept-section {
  background: #fff;
}

.feature-section,
.news-section {
  background: #F6F8FA;
  text-align: center;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.feature-card,
.shop,
.info-box {
  background: white;
  border: 1px solid #e4e8ed;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(31, 78, 121, 0.08);
}

.feature-card h3,
.shop h3,
.info-box h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #1F4E79;
}

.shop-section {
  text-align: center;
}

.shops {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
  text-align: left;
}

.shop-category {
  display: inline-block;
  margin-bottom: 10px;
  padding: 2px 10px;
  border-radius: 999px;
  background: #EAF1F7;
  color: #1F4E79;
  font-size: 12px;
  font-weight: bold;
}

.shop p,
.feature-card p {
  margin-bottom: 0;
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: #1F4E79;
  font-weight: bold;
  text-decoration: none;
}

.news-list {
  max-width: 760px;
  margin: 28px auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(31, 78, 121, 0.08);
}

.news-list li {
  display: flex;
  gap: 24px;
  padding: 18px 24px;
  border-bottom: 1px solid #e4e8ed;
}

.news-list li:last-child {
  border-bottom: none;
}

.news-list time {
  color: #1F4E79;
  font-weight: bold;
  white-space: nowrap;
}

.access-section {
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px 8px;
  border-bottom: 1px solid #e4e8ed;
  text-align: left;
}

th {
  width: 100px;
  color: #1F4E79;
}

.page-title {
  padding: 80px 20px;
  text-align: center;
  background: #F6F8FA;
}

.page-title p {
  margin: 0;
}

.site-footer {
  background: #1F4E79;
  color: white;
  text-align: center;
  padding: 32px 20px;
  font-size: 13px;
}

.footer-logo {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.08em;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 20px;
    flex-direction: column;
    gap: 10px;
  }

  .global-nav {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    min-height: 480px;
    padding: 70px 20px;
    text-align: center;
    background:
      linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.82)),
      url("../images/hero-avaport.png") center center / cover no-repeat;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 15px;
  }

  .section {
    padding: 54px 20px;
  }

  .two-column,
  .features,
  .shops {
    grid-template-columns: 1fr;
  }

  .news-list li {
    display: block;
  }

  .news-list time {
    display: block;
    margin-bottom: 4px;
  }
}
