@charset "UTF-8";
/* ============================================
   CSS Variables & Design Tokens
   ============================================ */
:root {
  --color-black: #222;
  --color-white: white;
  --color-gray-100: #ededed;
  --color-gray-1000: #5a5a5a;
  --color-red: #c52001;
  --color-red-light: #df553a;
  --color-red-dark: #961800;
  --color-border-gray: #d5d5d5;
  --color-text-light: #878787;
  --color-pale-red: #ffeae6;
  --color-red-shadow: rgba(150, 24, 0, 0.5);
  --color-link-blue: #1a73e8;
  --space-00h: 4px;
  --space-01: 8px;
  --space-01h: 12px;
  --space-02: 16px;
  --space-03: 24px;
  --space-03h: 20px;
  --space-04: 32px;
  --space-05: 40px;
  --space-06: 48px;
  --space-07: 56px;
  --font-size-13: 13px;
  --font-size-14: 14px;
  --font-size-15: 15px;
  --font-size-16: 16px;
  --font-size-18: 18px;
  --font-size-20: 20px;
  --font-size-22: 22px;
  --font-size-24: 24px;
  --font-size-28: 28px;
  --font-size-40: 40px;
  --font-size-56: 56px;
  --font-size-120: 120px;
  --line-height-tight: 1.1;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.8;
}

html {
  scroll-behavior: smooth;
}

/* ============================================
   Global Styles
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Noto Sans JP", "Battambang", sans-serif;
  color: var(--color-black);
  background-color: var(--color-white);
  line-height: var(--line-height-normal);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

p {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: bold;
}

/* ============================================
   SP Top Container
   ============================================ */
.sp-top {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-01) var(--space-03);
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.header-left {
  display: flex;
  align-items: center;
  gap: var(--space-01);
}

.site-title {
  font-size: var(--font-size-28);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -0.04em;
  display: flex;
  gap: -2px;
  margin: 0;
}
.site-title span:nth-child(2) {
  letter-spacing: -1.4px;
}
.site-title span:nth-child(3) {
  letter-spacing: -4.2px;
}

.menu-btn {
  width: 31px;
  height: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-btn span {
  width: 24px;
  height: 2px;
  background-color: var(--color-black);
  border-radius: 1px;
  transition: all 0.3s ease;
}
.menu-btn:hover span {
  background-color: var(--color-red);
}

/* ============================================
   Menu Modal
   ============================================ */
.menu-modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(153.41deg, rgb(254, 42, 1) 7.37%, rgb(141, 0, 0) 87.53%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.menu-modal.active {
  transform: translateX(0);
}

.menu-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: var(--space-01) var(--space-03);
  position: relative;
  z-index: 1;
}

.menu-title {
  color: var(--color-white);
}
.menu-title .menu-party {
  font-size: var(--font-size-14);
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
}
.menu-title .menu-name {
  font-size: var(--font-size-28);
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
}

.menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
}
.menu-close span {
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  position: absolute;
  display: block;
  transition: transform 0.3s ease;
}
.menu-close span:first-child {
  transform: rotate(45deg);
}
.menu-close span:last-child {
  transform: rotate(-45deg);
}

.close-icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: currentColor;
}

.menu-content {
  flex: 1;
  overflow-y: auto;
  padding: 0 21px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: var(--space-04);
}

.menu-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-01h);
}

.menu-label {
  color: var(--color-white);
  font-size: var(--font-size-18);
  font-weight: bold;
  margin: 0;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-01h);
}

.menu-item {
  background: var(--color-white);
  display: flex;
  align-items: center;
  gap: var(--space-01);
  padding: 16px;
  box-shadow: 0 8px 12px var(--color-red-shadow);
  text-decoration: none;
  color: var(--color-black);
  transition: background-color 0.2s ease;
}
.menu-item:hover {
  background-color: #f5f5f5;
}
.menu-item span {
  font-size: var(--font-size-22);
  font-weight: bold;
}

.social-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.social-link {
  background: var(--color-white);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color-black);
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 8px 12px var(--color-red-shadow);
  transition: background-color 0.2s ease;
}
.social-link:hover {
  background-color: #f5f5f5;
}

.menu-cta {
  text-decoration: none;
  margin-bottom: 32px;
}

.cta-text {
  color: var(--color-black);
  font-size: var(--font-size-24);
  font-weight: bold;
  line-height: 1.5;
}
.cta-text p {
  margin: 0;
}
.cta-text p:first-child {
  margin-bottom: 0;
}

/* ============================================
   Main Content
   ============================================ */
.main-content {
  margin-top: 58px;
  position: relative;
  z-index: 2;
  background-color: var(--color-white);
}

.main-content.is-policy-bg {
  background-color: transparent;
}

.policy-bg-overlay {
  display: block;
  position: absolute;
  inset: 0;
  background: var(--color-red);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease,visibility 0s linear 1s;
  z-index: 1;
  pointer-events: none;
}

.policy-bg-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease,visibility 0s linear 0s;
}

/* ============================================
   News Detail Page
   ============================================ */
.page-title-section {
  background: var(--color-red);
  color: var(--color-white);
  text-align: center;
  padding: var(--space-05) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-01h);
  align-items: center;
}

.page-title {
  font-size: var(--font-size-24);
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
}

.page-title-lines {
  display: flex;
  align-items: center;
}

.line {
  width: 25px;
  height: 4px;
}

.line-light {
  background: var(--color-red-light);
}

.line-dark {
  background: var(--color-red-dark);
}

.breadcrumb {
  background: #f9f9f9;
  padding: var(--space-01) 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--font-size-13);
  color: var(--color-text-light);
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.breadcrumb-item {
  color: var(--color-text-light);
  flex: 0 0 auto;
}

.breadcrumb-item.current {
  color: var(--color-red);
}

.breadcrumb-separator {
  color: var(--color-text-light);
  flex: 0 0 auto;
}

.news-detail {
  padding: var(--space-05) 20px;
  display: flex;
  flex-direction: column;
  gap: var(--space-02);
}

.news-detail-date {
  font-size: var(--font-size-16);
  font-weight: 500;
  color: var(--color-text-light);
  line-height: var(--line-height-relaxed);
}

.news-detail-title {
  font-size: var(--font-size-24);
  font-weight: bold;
  line-height: var(--line-height-normal);
  color: var(--color-black);
}

.news-detail-image {
  width: 100%;
  height: 198px;
  background: #d9d9d9;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: var(--line-height-relaxed);
}
.news-detail-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-detail-body {
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: var(--line-height-relaxed);
  color: var(--color-black);
}
.news-detail-body a {
  color: var(--color-link-blue);
  text-decoration: underline;
}
.news-detail-body a:hover {
  text-decoration: none;
}
.news-detail-body p {
  margin-bottom: 1em;
}
.news-detail-body p:last-child {
  margin-bottom: 0;
}

.news-detail-actions {
  padding: 0 20px var(--space-05);
  display: flex;
  justify-content: center;
}

.news-detail-back {
  background: var(--color-red);
  color: var(--color-white);
  padding: var(--space-01h) var(--space-05);
  border-radius: 200px;
  font-size: var(--font-size-16);
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  box-shadow: 0 8px 12px var(--color-red-shadow);
}

/* ============================================
   Page Body
   ============================================ */
.page-body {
  padding: var(--space-05) 0 var(--space-06);
  display: flex;
  flex-direction: column;
  gap: var(--space-05);
}

.page-content {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}

.page-section-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-01);
}

.page-content h2 {
  font-size: var(--font-size-24);
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-red);
  margin: 0;
  margin-bottom: var(--space-01);
}
.page-content p {
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: var(--line-height-relaxed);
  color: var(--color-black);
  margin: 0 0 1em;
  margin-bottom: var(--space-04);
}
.page-content p:last-child {
  margin-bottom: 0;
}
.page-content ol {
  color: var(--color-black, #222);
  font-size: var(--font-size-16);
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  padding-left: 1em;
  margin-bottom: var(--space-04);
}

.page-actions {
  padding: 0 20px var(--space-05);
  display: flex;
  justify-content: center;
}

.page-back {
  background: var(--color-red);
  color: var(--color-white);
  padding: var(--space-01h) var(--space-05);
  border-radius: 200px;
  font-size: var(--font-size-16);
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  box-shadow: 0 8px 12px var(--color-red-shadow);
}

/* ============================================
   News Archive Page
   ============================================ */
.news-archive {
  padding: var(--space-05) 20px var(--space-04);
  display: flex;
  flex-direction: column;
  gap: var(--space-05);
}

.news-archive-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.news-archive-item {
  border-bottom: 1px solid var(--color-border-gray);
  padding: var(--space-03h) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-00h);
}

.news-archive-date {
  font-size: var(--font-size-16);
  color: var(--color-text-light);
  line-height: var(--line-height-relaxed);
}

.news-archive-title {
  font-size: var(--font-size-16);
  font-weight: 500;
  color: var(--color-black);
  text-decoration: underline;
  text-decoration-style: solid;
  line-height: var(--line-height-relaxed);
  margin: 0;
}
.news-archive-title a {
  color: inherit;
  text-decoration: inherit;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pagination-item {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border-gray);
  border-radius: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-16);
  color: var(--color-black);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.pagination-item:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.pagination-item.is-active {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.pagination-next {
  width: 40px;
  height: 40px;
  border-radius: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: url("../images/arrow-right-white.svg") center/7px 12px no-repeat;
  background-color: var(--color-black);
}

.news-archive-actions {
  display: flex;
  justify-content: center;
}

.news-archive-back {
  background: var(--color-red);
  color: var(--color-white);
  padding: var(--space-01h) var(--space-05);
  border-radius: 200px;
  font-size: var(--font-size-16);
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  box-shadow: 0 8px 12px var(--color-red-shadow);
}

/* FV Section */
.fv-section {
  width: 100%;
  aspect-ratio: 366/476.74;
  overflow: hidden;
}
.fv-section .js-layer-img,
.fv-section img {
  width: 100%;
  height: 100%;
}
.fv-section img {
  -o-object-fit: cover;
     object-fit: cover;
}

/* FV Section - disable layer animation */
.fv-section .js-layer-img::before {
  display: none;
}

.fv-section .js-layer-img img {
  opacity: 1;
  transform: none;
  transition: none;
}

/* Layer image animation (left-to-right wipe) */
.js-layer-img {
  position: relative;
  overflow: hidden;
}

.js-layer-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-red);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
  z-index: 1;
}

.js-layer-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transform: translateX(-6%);
  transition: opacity 0.6s ease 0.35s, transform 0.6s ease 0.35s;
}

.js-layer-img.is-animate::before {
  transform: translateX(100%);
}

.js-layer-img.is-animate img {
  opacity: 1;
  transform: translateX(0);
}

/* Tab Navigation */
.tab-nav {
  background-color: var(--color-gray-100);
  border: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  border-top: 1px solid var(--color-border-gray);
  border-bottom: 1px solid var(--color-border-gray);
}

@media (min-width: 820px) {
  .tab-nav {
    display: none;
  }
}
.tab-btn {
/*   border: 1px solid var(--color-border-gray); */
/*   border-bottom: 1px solid var(--color-border-gray); */
/*   border-right: 1px solid var(--color-border-gray); */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  padding: var(--space-01) var(--space-01);
  padding-bottom: 4px;
  min-height: auto;
  font-size: var(--font-size-16);
  font-weight: 500;
  color: var(--color-black);
  text-align: center;
  text-decoration: none;
  background: none;
  cursor: pointer;
}
/* .tab-btn:last-child {
  border-right: none;
} */
/* .tab-btn:nth-child(3), .tab-btn:nth-child(4) {
  border-top: none;
} */
.tab-btn:not(:last-child) {
  border-right: 1px solid var(--color-border-gray);
}

.icon-dropdown {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* CTA Section */
.cta-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-01);
  align-items: center;
  padding: var(--space-03) 0 var(--space-06);
  background: var(--color-white);
}

.cta-label {
  font-size: var(--font-size-18);
  font-weight: bold;
  text-align: center;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--space-02) var(--space-07);
  background: linear-gradient(to bottom, #404040, #222);
  color: var(--color-white);
  border-radius: 200px;
  font-size: var(--font-size-22);
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.icon-arrow {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: currentColor;
}

/* ============================================
   News Section
   ============================================ */
.news-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-02);
  padding: var(--space-02) 20px;
  background: var(--color-white);
}

.section-header {
  display: flex;
  gap: var(--space-00h);
  align-items: center;
}
.section-header h2 {
  font-size: var(--font-size-20);
  color: var(--color-black);
}

.mark-icon {
  width: 16px;
  height: 16px;
  color: var(--color-black);
}

.news-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-02);
  align-items: flex-end;
  width: 100%;
}

.news-box {
  width: 100%;
  background-color: var(--color-gray-100);
  padding: var(--space-02);
  display: flex;
  flex-direction: column;
  gap: var(--space-01h);
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: var(--line-height-relaxed);
}

.news-item {
  display: flex;
  flex-direction: column;
  width: 318px;
}

.news-date {
  color: var(--color-text-light);
}

.news-title {
  color: var(--color-black);
  text-decoration: underline;
  text-decoration-style: solid;
}

.news-link {
  display: flex;
  gap: var(--space-00h);
  align-items: center;
  font-size: var(--font-size-16);
  font-weight: bold;
  color: var(--color-black);
  text-decoration: none;
}

/* ============================================
   Greeting Section
   ============================================ */
.greeting-section {
  background: var(--color-white);
  position: relative;
}

.greeting-content {
  position: relative;
  padding: var(--space-04) 20px;
  display: flex;
  flex-direction: column;
  gap: var(--space-04);
}

.greeting-title {
  background: linear-gradient(193.37deg, rgb(254, 42, 1) 23.49%, rgb(141, 0, 0) 73.34%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: var(--font-size-56);
  font-weight: 900;
  line-height: var(--line-height-tight);
  white-space: nowrap;
}

.greeting-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--color-red) 0%, var(--color-red) 30%, var(--color-border-gray) 30%, var(--color-border-gray) 100%);
}

.greeting-image {
  width: 100%;
  aspect-ratio: 348/240;
  -o-object-fit: cover;
     object-fit: cover;
}

.greeting-text {
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: var(--line-height-relaxed);
  color: var(--color-black);
  position: relative;
  max-height: 300px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.greeting-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff 75%);
  pointer-events: none;
}
.greeting-text.is-expanded {
  max-height: none;
  overflow: visible;
}
.greeting-text.is-expanded::after {
  opacity: 0;
}
.greeting-text p {
  margin-bottom: 1em;
}
.greeting-text p:last-child {
  margin-bottom: 0;
}

.read-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-00h);
  width: 240px;
  height: 40px;
  padding: var(--space-01) var(--space-03);
  margin: 0 auto;
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 200px;
  font-size: var(--font-size-16);
  font-weight: 500;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
.read-more-btn::after {
  content: "";
  width: 12px;
  height: 12px;
  margin-left: 8px;
  background: linear-gradient(var(--color-white), var(--color-white)) center/12px 2px no-repeat, linear-gradient(var(--color-white), var(--color-white)) center/2px 12px no-repeat;
}
.read-more-btn.is-expanded::after {
  background: linear-gradient(var(--color-white), var(--color-white)) center/12px 2px no-repeat;
}
.read-more-btn svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   Policy Section
   ============================================ */
.policy-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  padding: 50px 20px 100px;
  position: relative;
  z-index: 2;
}

.policy-section > div:first-child {
  width: 100%;
  display: flex;
  gap: var(--space-03);
}

.policy-header {
  display: flex;
  gap: var(--space-03h);
  align-items: flex-start;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.policy-header.is-animate {
  opacity: 1;
  transform: translateY(0);
}

.policy-accent {
  width: 4px;
  display: flex;
  flex-direction: column;
}

.accent-top {
  width: 4px;
  height: 40px;
  background: var(--color-red-light);
}

.accent-bottom {
  width: 4px;
  height: 40px;
  background: var(--color-red-dark);
}

.policy-title-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-01h);
}

.policy-subtitle {
  font-size: var(--font-size-18);
  font-weight: bold;
}

.policy-title {
  font-size: var(--font-size-40);
  font-weight: bold;
  line-height: var(--line-height-tight);
}

.policy-items {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
}

.policy-item {
  padding: var(--space-04) var(--space-02);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  position: relative;
}

.policy-circle {
  width: 126px;
  height: 126px;
  border-radius: 200px;
}
.policy-circle img {
  width: 100%;
}

.policy-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 20px;
}
.policy-content h3 {
  font-size: var(--font-size-28);
  font-weight: bold;
  line-height: var(--line-height-normal);
  margin-bottom: var(--space-03h);
}

.policy-item,
.policy-content {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.policy-item.is-animate,
.policy-content.is-animate {
  opacity: 1;
  transform: translateY(0);
}

.policy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-00h);
  height: 40px;
  width: 240px;
  padding: var(--space-01) var(--space-03);
  background: var(--color-white);
  color: var(--color-black);
  border-radius: 200px;
  font-size: var(--font-size-16);
  font-weight: 500;
  box-shadow: 0 8px 12px var(--color-red-shadow);
  transition: background 0.2s, color 0.2s;
  position: relative;
  z-index: 1;
}
.policy-btn::after {
  content: "";
  width: 12px;
  height: 12px;
  margin-left: 8px;
  background: linear-gradient(var(--color-red), var(--color-red)) center/12px 2px no-repeat, linear-gradient(var(--color-red), var(--color-red)) center/2px 12px no-repeat;
}
.policy-btn:hover {
  background: rgba(255, 255, 255, 0.95);
}
.policy-btn.active::after {
  background: linear-gradient(var(--color-red), var(--color-red)) center/12px 2px no-repeat;
}

.policy-detail {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-02);
  transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease, margin-top 0.25s ease;
}

.policy-detail.is-open {
  opacity: 1;
  transform: translateY(0);
  margin-top: var(--space-02);
}

.policy-detail-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-02);
  position: relative;
}
.policy-detail-block p {
  position: relative;
  background: var(--color-white);
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(150, 24, 0, 0.1);
  padding: var(--space-02);
  color: var(--color-black);
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: var(--line-height-relaxed);
  margin: 0;
  text-align: left;
}
.policy-detail-block p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 22px solid #961800;
  border-right: 22px solid transparent;
}

.policy-number {
  position: absolute;
  top: -39px;
  right: 0;
  font-family: "Battambang", sans-serif;
  font-size: var(--font-size-120);
  font-weight: 400;
  line-height: 1;
  text-align: right;
  color: var(--color-white);
  opacity: 0.2;
}

/* ============================================
   Profile Section
   ============================================ */
.profile-section {
  background: transparent;
  position: relative;
  z-index: 1;
}

.profile-image {
  width: 100%;
  height: 320px;
}

.profile-image-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile-content {
  padding: var(--space-05) 20px;
  display: flex;
  flex-direction: column;
  gap: var(--space-04);
}

.profile-name {
  display: flex;
  gap: var(--space-01h);
  align-items: flex-end;
  line-height: var(--line-height-tight);
}
.profile-name h3 {
  font-size: var(--font-size-40);
  color: var(--color-red);
}
.profile-name p {
  font-size: var(--font-size-16);
  font-weight: 500;
  color: var(--color-gray-1000);
}

.profile-divider {
  width: 100%;
  height: 1px;
  background-color: var(--color-border-gray);
}

.profile-credentials {
  list-style: disc;
}
.profile-credentials li {
  font-size: var(--font-size-16);
  font-weight: bold;
  line-height: var(--line-height-relaxed);
  color: var(--color-black);
  margin-left: 24px;
}

.profile-bio {
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: var(--line-height-relaxed);
  color: var(--color-black);
}
.profile-bio p {
  margin-bottom: 1em;
}
.profile-bio p:last-child {
  margin-bottom: 0;
}

/* Accordion */
.accordion-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-02);
}

.accordion-btn {
  background: var(--color-pale-red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-01) var(--space-02);
  font-size: var(--font-size-18);
  font-weight: bold;
  line-height: var(--line-height-relaxed);
  color: var(--color-black);
  text-align: left;
  cursor: pointer;
}
.accordion-btn:hover {
  background: rgba(255, 234, 230, 0.8);
}
.accordion-btn img {
  transition: transform 0.25s ease;
}

.accordion-icon {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  transition: transform 0.25s ease;
}

.accordion-btn.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-btn.active img {
  transform: rotate(180deg);
}

.accordion-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease;
}

.accordion-detail.is-open {
  opacity: 1;
  transform: translateY(0);
}

.accordion-photo {
  width: 100%;
  height: 198px;
  background: #d9d9d9;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-02);
}

.accordion-detail-text {
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: var(--line-height-relaxed);
  color: var(--color-black);
}

/* Social Links */
.social-section h4 {
  background: var(--color-gray-100);
  padding: var(--space-01) var(--space-02);
  font-size: var(--font-size-18);
  font-weight: bold;
  line-height: var(--line-height-relaxed);
  color: var(--color-black);
  margin-bottom: var(--space-02);
}

.social-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.social-btn {
  background: var(--color-white);
  border: 1px solid var(--color-border-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-01);
  height: 48px;
  padding: 0;
  color: var(--color-black);
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: var(--line-height-relaxed);
  text-align: left;
  overflow: hidden;
}
.social-btn:hover {
  background: #f5f5f5;
}

.social-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ============================================
   Office Section
   ============================================ */
.office-section {
  background: transparent;
  padding: var(--space-04) 20px;
  position: relative;
  z-index: 1;
}

.office-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-02);
}

.office-list {
  display: flex;
  flex-direction: column;
}

.office-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-02);
  padding: var(--space-01) 0;
  border-bottom: 1px solid var(--color-border-gray);
}

.office-label {
  width: 80px;
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: var(--line-height-relaxed);
  color: var(--color-black);
}

.office-value {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: var(--line-height-relaxed);
  color: var(--color-black);
}
.office-value p {
  margin: 0;
}

/* ============================================
   Supporter Section
   ============================================ */
.supporter-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-05) 20px;
  padding-top: 280px;
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

.supporter-section > div:first-child {
  width: 100%;
  display: flex;
  gap: var(--space-03);
}

.supporter-header {
  display: flex;
  gap: var(--space-03h);
  align-items: flex-start;
  margin-bottom: var(--space-04);
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.supporter-header.is-animate {
  opacity: 1;
  transform: translateY(0);
}

.supporter-image {
  width: 100%;
  height: 280px;
  margin-bottom: var(--space-02);
}

.supporter-image-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.supporter-text {
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: var(--line-height-relaxed);
  color: var(--color-white);
  text-align: justify;
  margin-bottom: 0;
}

.supporter-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-01);
  align-items: center;
  padding-top: var(--space-03);
  padding-bottom: var(--space-06);
}
.supporter-cta p {
  font-size: var(--font-size-18);
  font-weight: bold;
  text-align: center;
}

.supporter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--space-02) var(--space-07);
  background: linear-gradient(to bottom, white, #d3d3d3);
  color: var(--color-black);
  border-radius: 200px;
  font-size: var(--font-size-18);
  font-weight: bold;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-gray-100);
  display: flex;
  flex-direction: column;
  gap: var(--space-02);
  align-items: center;
  padding: var(--space-04) 0;
  position: relative;
  z-index: 1;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo .footer-title {
  font-size: var(--font-size-28);
  font-weight: 900;
  text-align: center;
  margin: 0;
}

.footer-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-15);
  font-weight: 500;
  line-height: 0;
  text-align: center;
}
.footer-nav a {
  text-decoration: underline;
  text-decoration-style: solid;
  line-height: var(--line-height-relaxed);
  color: var(--color-gray-1000);
}

.footer-copyright {
  font-size: var(--font-size-13);
  font-weight: 500;
  line-height: var(--line-height-relaxed);
  color: var(--color-gray-1000);
  text-align: center;
  white-space: pre-wrap;
}

/* ============================================
   Responsive & Mobile Adjustments
   ============================================ */
.pc-background {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  background-image: none;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

@media (max-width: 390px) {
  .header {
    width: 100%;
  }
}
/* PC版ナビゲーション - デフォルトは非表示 */
.pc-nav {
  display: none;
}

/* ============================================
   PC版レイアウト
   ============================================ */
@media (min-width: 820px) {
  /* ハンバーガーメニューボタン非表示 */
  .menu-btn {
    display: none;
  }
  /* メニューモーダル非表示 */
  .menu-modal {
    display: none !important;
  }
  /* メニュー幅を390pxに制限（PC版用） */
  .menu-modal {
    width: 390px;
  }
  /* PC版コンテンツラッパー */
  .pc-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    min-height: 100vh;
    gap: 104px;
  }
  /* SP TOP コンテンツは390px固定 */
  .sp-top {
    width: 480px;
    flex-shrink: 0;
    margin: 0;
    overflow: hidden;
    z-index: 10;
  }
  /* ヘッダーはPC画面のときは非表示 */
  .header {
    display: none;
  }
  .main-content {
    margin-top: 0;
  }
  /* PC版ナビゲーション表示 */
  .pc-nav {
    display: block;
    position: relative;
    width: 348px;
    height: 100vh;
    padding-top: 40px;
    z-index: 5;
    overflow-y: auto;
  }
  /* PC版：主要政策・後援会の上下パディングをデザイン通りに */
  .policy-section {
    padding: var(--space-05) 20px;
  }
  .policy-items {
    gap: var(--space-05);
  }
  .policy-header {
    margin-bottom: var(--space-04);
  }
  .supporter-section {
    padding: var(--space-05) 20px;
  }
}
/* PC版背景 */
@media (min-width: 820px) {
  .pc-background {
    background-image: url("../images/bg-image.webp");
  }
}
.pc-nav-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.pc-nav-fixed-wrapper {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(calc(-50% + 104px + 240px));
  width: 348px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.pc-nav-header .pc-nav-title {
  color: #fff;
  font-size: 80px;
  font-style: normal;
  font-weight: 900;
  line-height: 120%; /* 96px */
  white-space: nowrap;
  margin: 0;
}

.pc-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pc-nav-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
  font-size: 28px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transition: opacity 0.3s ease;
  background: none;
  border: none;
  padding: 0;
  text-decoration: none;
}
.pc-nav-btn:hover {
  opacity: 0.8;
}
.pc-nav-btn .pc-nav-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.pc-nav-socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.pc-nav-social-btn {
  padding: 9px 23px 10px 23px;
  flex: 1 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-black);
  font-size: var(--font-size-16);
  font-weight: 500;
  text-decoration: none;
  background: var(--color-white);
  border: 1px solid var(--color-border-gray);
  height: 48px;
  transition: background-color 0.2s ease;
  font-size: var(--font-size-13);
}
.pc-nav-social-btn:hover {
  background: #f5f5f5;
}
.pc-nav-social-btn .pc-nav-social-icon {
  font-size: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--color-black);
}

body {
  overflow-x: hidden;
}/*# sourceMappingURL=style.css.map */


/* CodePen同様の up */
/* CodePen同様の up */
@keyframes up {
  to { transform: translateY(0%); }
}

/* マスク */
.policy-circle,
.policy-content {
  overflow: hidden;
}

/* 初期位置（下に隠す） */
.policy-circle img,
.policy-content h3,
.policy-content .policy-btn {
  transform: translateY(115%);
  will-change: transform;
}

/* is-animateで発火（stagger） */
.policy-item.is-animate .policy-circle img {
  animation: up 0.8s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
  animation-delay: 0.00s;
}
.policy-item.is-animate .policy-content h3 {
  animation: up 0.8s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
  animation-delay: 0.12s;
}
.policy-item.is-animate .policy-content .policy-btn {
  animation: up 0.8s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
  animation-delay: 0.22s;
}

