@charset "UTF-8";
/* ===== Base ===== */
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial,
  "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #333;
  background-color: #ffffff;
}

/* ===== Header ===== */
.site-header {
  background: #ffffff;
  border-bottom: 3px solid #003f8e;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: none;
  padding-left: 12px;
}

.logo-area img {
  height: 44px;
}

/* ===== Navigation ===== */
.global-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 26px;
}

.global-nav a {
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  color: #003f8e;
}

/* ===== Hero ===== */
.hero {
  padding: 48px 20px;
  text-align: center;
  color: #ffffff;
  background-image: url("../images/arise_image.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

.arise-title {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.arise-title img {
  height: 68px;
}

.arise-text {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.4;
}

/* ===== Container & Sections ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.section {
  margin-top: 70px;
}

.section h2 {
  font-size: 20px;
  padding-left: 10px;
  border-left: 6px solid #003f8e;
  margin-bottom: 25px;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list li {
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
}

.date {
  font-weight: bold;
  margin-right: 12px;
}

.arise-u {
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: bold;
}

#overview p,
#information p {
  padding-bottom: 12px;
  border-bottom: 1px solid #ddd;
}

#overview p.note,
#contribution p.note  {
  border-bottom: none;
  padding-bottom: 0;
  font-size: 0.85em;
  color: #555;
  margin-top: 8px;
  line-height: 1.4;
}

.spread-link a {
  font-size: 0.85em;
}

#contribution p {
  border-bottom: none;
  padding-bottom: 0;
}

#contribution ul {
  padding-left: 0;
  margin-left: 0;
}

#contribution ul li {
  list-style-position: inside;
}

#contribution ul li:last-child {
  padding-bottom: 12px;
  border-bottom: 1px solid #ddd;
}

/* ===== Footer ===== */
.site-footer {
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  padding: 20px 0;
  font-size: 14px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-nav li a {
  color: #333;
  text-decoration: none;
}

.site-footer .copyright {
  color: #666;
  font-size: 12px;
}

/* ===== Breadcrumb ===== */
.breadcrumb-nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px 0;
  font-size: 14px;
}

.breadcrumb-nav ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.breadcrumb-nav li + li::before {
  content: ">";
  margin: 0 8px;
  color: #777;
}

.breadcrumb-nav a {
  color: #003f8e;
  text-decoration: none;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

/* ===== Mobile Fix ===== */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .global-nav {
    width: 100%;
  }

  .global-nav ul {
    justify-content: flex-end;
  }

  .logo-area {
    border-left: none;
    padding-left: 0;
  }

  .arise-title {
    flex-direction: column;
    gap: 12px;
  }

  .arise-title img {
    height: 52px;
  }

  .arise-text {
    font-size: 22px;
  }

  .hero {
    padding: 26px 16px;
  }

  .breadcrumb-nav {
    font-size: 13px;
    padding-top: 8px;
  }
}
