@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
  max-width: 100vw;
}

body.project-body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background: url(../assets/images/bg-gray.jpg) no-repeat;
  background-size: cover;
  color: #2b2b2b;
  line-height: 1.85;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  body.project-body {
    padding-top: 56px;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.sp-only {
  display: inline;
}
@media (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

.pc-only {
  display: none;
}
@media (min-width: 768px) {
  .pc-only {
    display: inline !important;
  }
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.project-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(107, 76, 138, 0.18);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .project-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    backdrop-filter: none;
    background: #ffffff;
    z-index: 10000;
  }
}
.project-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1010;
}
.project-header__logo {
  position: relative;
  z-index: 1010;
}
.project-header__logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1f2737;
}
.project-header__logo .header-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 767px) {
  .project-header__logo .header-logo-img {
    height: 32px;
  }
}
.project-header__logo .logo-text-group {
  display: flex;
  flex-direction: column;
}
.project-header__logo .shrine-name {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #6B4C8A;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .project-header__logo .shrine-name {
    font-size: 0.95rem;
  }
}
.project-header__logo .page-sub {
  font-size: 0.72rem;
  color: #555555;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-top: 2px;
}
@media (max-width: 767px) {
  .project-header__logo .page-sub {
    font-size: 0.62rem;
  }
}
.project-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .project-header__nav {
    display: flex;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: calc(100vh - 56px);
    height: calc(100dvh - 56px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 30px 24px 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .project-header__nav.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.project-header__nav .nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}
@media (max-width: 767px) {
  .project-header__nav .nav-links {
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 22px;
  }
}
.project-header__nav .nav-links a {
  color: #6B4C8A;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 0;
  position: relative;
}
@media (max-width: 767px) {
  .project-header__nav .nav-links a {
    font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2737;
    letter-spacing: 0.08em;
    display: inline-block;
    padding: 8px 16px;
  }
}
.project-header__nav .nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #6B4C8A;
  transition: width 0.3s ease;
}
.project-header__nav .nav-links a:hover {
  color: #593c75;
}
.project-header__nav .nav-links a:hover::after {
  width: 100%;
}
.project-header .header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #6B4C8A;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(107, 76, 138, 0.4);
}
@media (max-width: 767px) {
  .project-header .header-cta-btn {
    font-size: 1.05rem;
    padding: 13px 32px;
    border-radius: 50px;
    margin-top: 10px;
    box-shadow: 0 4px 16px rgba(107, 76, 138, 0.35);
  }
}
.project-header .header-cta-btn:hover {
  background: #593c75;
  transform: translateY(-1px);
}
.project-header .hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px 2px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
  position: relative;
}
@media (max-width: 767px) {
  .project-header .hamburger-btn {
    display: flex;
  }
}
.project-header .hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #6B4C8A;
  transition: all 0.3s ease;
  pointer-events: none;
}
.project-header .hamburger-btn.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.project-header .hamburger-btn.is-active span:nth-child(2) {
  opacity: 0;
}
.project-header .hamburger-btn.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.project-hero {
  position: relative;
  background: linear-gradient(135deg, #634382 0%, #7E5B9B 50%, #523570 100%);
  color: #fff;
  padding: 60px 20px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .project-hero {
    padding: 36px 16px 32px;
  }
}
.project-hero .hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 35%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 65%), radial-gradient(circle at 20% 80%, rgba(197, 160, 89, 0.2) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.project-hero .hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.project-hero .hero-split-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 767px) {
  .project-hero .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.project-hero .hero-text-col {
  text-align: left;
}
@media (max-width: 767px) {
  .project-hero .hero-text-col {
    text-align: center;
  }
}
.project-hero .hero-text-col .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  color: #f3eafa;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.project-hero .hero-text-col .hero-badge i {
  color: #dfcbe9;
  font-size: 0.9rem;
}
.project-hero .hero-text-col .hero-title {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  margin-bottom: 24px;
}
.project-hero .hero-text-col .hero-title .hero-catch {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: #f3e8fa;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .project-hero .hero-text-col .hero-title .hero-catch {
    font-size: 1.05rem;
  }
}
.project-hero .hero-text-col .hero-title .hero-sub {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(50, 20, 70, 0.5);
}
@media (max-width: 767px) {
  .project-hero .hero-text-col .hero-title .hero-sub {
    font-size: 1.75rem;
  }
}
.project-hero .hero-text-col .hero-period-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #f1f5f9;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 8px 18px;
  border-radius: 6px;
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .project-hero .hero-text-col .hero-period-tag {
    font-size: 0.85rem;
    padding: 6px 14px;
    margin-bottom: 22px;
  }
}
.project-hero .hero-text-col .hero-period-tag i {
  color: #f5eedb;
}
.project-hero .hero-text-col .hero-cta-wrap .hero-main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: #6B4C8A;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(42, 18, 62, 0.48);
  border: 2px solid #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  will-change: transform, box-shadow;
}
@media (max-width: 767px) {
  .project-hero .hero-text-col .hero-cta-wrap .hero-main-btn {
    font-size: 0.98rem;
    padding: 12px 28px;
  }
}
.project-hero .hero-text-col .hero-cta-wrap .hero-main-btn i {
  font-size: 0.92rem;
  color: #6B4C8A;
  transition: transform 0.3s ease;
}
.project-hero .hero-text-col .hero-cta-wrap .hero-main-btn:hover {
  background: #ffffff;
  color: #593c75;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 14px 32px rgba(32, 10, 50, 0.65);
  opacity: 1;
}
.project-hero .hero-text-col .hero-cta-wrap .hero-main-btn:hover i {
  transform: translateX(5px);
}
.project-hero .hero-text-col .hero-cta-wrap .hero-main-btn:active {
  transform: translateY(0px) scale(0.98);
  box-shadow: 0 4px 12px rgba(42, 18, 62, 0.4);
}
.project-hero .hero-slider-col {
  position: relative;
  width: 100%;
}
.project-hero .hero-slider-col .hero-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 1200/630;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(35, 18, 55, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.35);
}
@media (max-width: 767px) {
  .project-hero .hero-slider-col .hero-slideshow {
    border-radius: 8px;
  }
}
.project-hero .hero-slider-col .hero-slideshow .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.2s ease-in-out;
}
.project-hero .hero-slider-col .hero-slideshow .hero-slide.is-prev {
  opacity: 1;
  z-index: 1;
}
.project-hero .hero-slider-col .hero-slideshow .hero-slide.is-active {
  opacity: 1;
  z-index: 2;
}
.project-hero .hero-slider-col .hero-slideshow .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-hero .hero-slider-col .hero-slideshow .hero-slide .slide-caption {
  position: absolute;
  bottom: 12px;
  right: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  color: #1f2737;
  font-size: 0.78rem;
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(107, 76, 138, 0.18);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.project-hero .hero-slider-col .hero-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}
.project-hero .hero-slider-col .hero-slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.project-hero .hero-slider-col .hero-slider-dots .dot.is-active {
  background: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
  width: 24px;
  border-radius: 10px;
}
.project-hero .hero-slider-col .hero-slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.project-layout-container {
  max-width: 1200px;
  width: 100%;
  margin: 40px auto 80px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: start;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .project-layout-container {
    display: block;
    padding: 0 16px;
    margin: 24px auto 60px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
}

.project-main {
  min-width: 0;
  max-width: 100%;
  width: 100%;
}

.cf-explanation-card {
  background: #f8f6fb;
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 36px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.cf-explanation-card .cf-badge {
  font-size: 0.85rem;
  font-weight: 700;
  color: #6B4C8A;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cf-explanation-card .cf-text {
  font-size: 0.92rem;
  color: #555555;
  line-height: 1.7;
  margin: 0;
}
.cf-explanation-card .cf-text strong {
  color: #6B4C8A;
  font-weight: 700;
}

.content-section {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e6e2da;
  padding: 40px 36px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .content-section {
    padding: 24px 16px;
    margin-bottom: 28px;
  }
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 30px;
}
.section-title-wrap .section-en {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #c5a059;
  margin-bottom: 4px;
}
.section-title-wrap .section-title {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1f2737;
}
@media (max-width: 767px) {
  .section-title-wrap .section-title {
    font-size: 1.4rem;
  }
}
.section-title-wrap .title-line {
  width: 48px;
  height: 2px;
  background: #6B4C8A;
  margin: 10px auto 0;
}

.section-intro-text {
  font-size: 0.98rem;
  color: #555555;
  margin-bottom: 24px;
  text-align: center;
}

.story-block .story-lead-heading {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2737;
  line-height: 1.5;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6e2da;
}
.story-block p {
  font-size: 1rem;
  line-height: 1.95;
  color: #2b2b2b;
  margin-bottom: 18px;
}
.story-block .highlight-quote-box {
  background: #f5effa;
  border-left: 3px solid #6B4C8A;
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 6px 6px 0;
}
.story-block .highlight-quote-box .quote-text {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #6B4C8A;
  line-height: 1.8;
  margin: 0;
}
.story-block .note-text {
  font-size: 0.85rem;
  color: #888888;
  display: block;
  line-height: 1.6;
  margin-top: 8px;
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .usage-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.usage-grid .usage-card {
  background: #ffffff;
  border: 1px solid #e6e2da;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.usage-grid .usage-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(21, 25, 34, 0.08);
  border-color: #dfd2ec;
}
.usage-grid .usage-card:hover .usage-card__thumb {
  transform: scale(1.05);
}
.usage-grid .usage-card__thumb-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #f3f3f3;
}
@media (max-width: 767px) {
  .usage-grid .usage-card__thumb-wrap {
    height: 160px;
  }
}
.usage-grid .usage-card__thumb {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
}
.usage-grid .usage-card__body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .usage-grid .usage-card__body {
    padding: 16px;
  }
}
.usage-grid .usage-card.full-width {
  grid-column: 1/-1;
}
@media (min-width: 768px) {
  .usage-grid .usage-card.full-width {
    flex-direction: row;
  }
  .usage-grid .usage-card.full-width .usage-card__thumb-wrap {
    width: 40%;
    height: auto;
    min-height: 180px;
  }
  .usage-grid .usage-card.full-width .usage-card__body {
    width: 60%;
    padding: 24px;
    justify-content: center;
    font-size: 16px;
  }
}
.usage-grid .usage-card .usage-list {
  margin-bottom: 10px;
  padding-left: 10px;
  font-size: 16px;
}
.usage-grid .usage-card .usage-title {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2737;
  margin-bottom: 8px;
}
.usage-grid .usage-card .usage-desc {
  font-size: 0.88rem;
  color: #555555;
  line-height: 1.7;
  margin: 0;
}

.mikoshi-notice-box {
  background: #fbf9fd;
  border: 1px solid #dfd2ec;
  border-radius: 6px;
  padding: 22px;
  margin-top: 10px;
}
.mikoshi-notice-box .notice-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #6B4C8A;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.mikoshi-notice-box p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: #2b2b2b;
  margin-bottom: 10px;
}
.mikoshi-notice-box p:last-child {
  margin-bottom: 0;
}
.mikoshi-notice-box small {
  color: #888888;
  font-size: 0.82rem;
}

.goal-explanation {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.goal-explanation .goal-item {
  border: 2px solid #e6e2da;
  border-radius: 6px;
  padding: 20px;
}
.goal-explanation .goal-item.next-goal-preview {
  background: #fdfdfd;
  border-style: dashed;
  opacity: 0.85;
}
.goal-explanation .goal-item .goal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}
.goal-explanation .goal-item .goal-tag {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  background: #e2e8f0;
  color: #1f2737;
}
.goal-explanation .goal-item .goal-tag.current {
  background: #6B4C8A;
  color: #fff;
}
.goal-explanation .goal-item .goal-amount {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #1f2737;
}
.goal-explanation .goal-item .goal-desc {
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.7;
  margin: 0;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.custom-table th, .custom-table td {
  padding: 14px 18px;
  font-size: 0.92rem;
  border-bottom: 1px solid #e6e2da;
  text-align: left;
  word-break: break-word;
}
@media (max-width: 767px) {
  .custom-table th, .custom-table td {
    padding: 12px 10px;
    font-size: 0.84rem;
  }
}
.custom-table th {
  width: 28%;
  background: #f3f3f3;
  font-weight: 700;
  color: #1f2737;
}
@media (max-width: 767px) {
  .custom-table th {
    width: 34%;
    white-space: normal;
  }
}
.custom-table td {
  color: #2b2b2b;
  line-height: 1.6;
}

.extra-donation-guide-box {
  background: #fbf9fe;
  border: 1px solid #dfd2ec;
  border-left: 4px solid #6B4C8A;
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 28px;
}
.extra-donation-guide-box .guide-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #6B4C8A;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.extra-donation-guide-box p {
  font-size: 0.9rem;
  color: #2b2b2b;
  line-height: 1.7;
  margin: 0;
}
.extra-donation-guide-box p small {
  color: #888888;
  display: block;
  margin-top: 6px;
}

.future-plans-preview-box {
  background: #fdfdfd;
  border: 1px dashed #d1cbbd;
  border-radius: 8px;
  padding: 24px;
  margin-top: 32px;
}
.future-plans-preview-box .future-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #c5a059;
  color: #151922;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.future-plans-preview-box .future-lead {
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 16px;
}
.future-plans-preview-box .future-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 767px) {
  .future-plans-preview-box .future-items-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.future-plans-preview-box .future-items-grid .future-item {
  background: #f3f3f3;
  border: 1px solid #e6e2da;
  border-radius: 6px;
  padding: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.future-plans-preview-box .future-items-grid .future-item .fi-icon {
  font-size: 1.2rem;
  color: #c5a059;
  margin-top: 2px;
}
.future-plans-preview-box .future-items-grid .future-item .fi-content strong {
  display: block;
  font-size: 0.88rem;
  color: #1f2737;
  margin-bottom: 2px;
}
.future-plans-preview-box .future-items-grid .future-item .fi-content span {
  display: block;
  font-size: 0.76rem;
  color: #888888;
  line-height: 1.4;
}

.plans-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.plan-card {
  background: #ffffff;
  border: 1px solid rgba(107, 76, 138, 0.25);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.plan-card__header {
  padding: 18px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 767px) {
  .plan-card__header {
    padding: 14px 18px;
  }
}
.plan-card__header .plan-tier-badge {
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 100px;
}
.plan-card__header .plan-price {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  text-align: center;
  width: 100%;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .plan-card__header .plan-price {
    font-size: 1.25rem;
  }
}
.plan-card__header .plan-price span {
  font-size: 0.88rem;
  font-weight: 500;
  margin-left: 2px;
}
.plan-card__body {
  padding: 24px;
}
@media (max-width: 767px) {
  .plan-card__body {
    padding: 18px;
  }
}
.plan-card__body .plan-rewards-box {
  margin-bottom: 16px;
}
.plan-card__body .plan-rewards-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #6B4C8A;
  margin-bottom: 10px;
}
.plan-card__body .plan-features {
  list-style: none;
  margin: 0;
  padding: 0;
}
.plan-card__body .plan-features > li {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 14px;
  color: #151922;
  position: relative;
  padding-left: 26px;
}
.plan-card__body .plan-features > li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #6B4C8A;
  font-size: 1.05rem;
}
.plan-card__body .plan-features > li.text-muted {
  color: #888888;
}
.plan-card__body .plan-features > li.text-muted::before {
  content: "\f05a";
  color: #999;
}
.plan-card__body .plan-features .sub-features {
  list-style: none;
  margin-top: 8px;
  padding: 10px 14px;
  background: #fbf9fd;
  border: 1px solid #ede3f2;
  border-left: 3px solid #6B4C8A;
  border-radius: 4px;
}
.plan-card__body .plan-features .sub-features li {
  font-size: 0.88rem;
  color: #2b2b2b;
  margin-bottom: 6px;
  line-height: 1.6;
}
.plan-card__body .plan-features .sub-features li:last-child {
  margin-bottom: 0;
}
.plan-card__body .plan-features .item-detail-text {
  font-size: 0.88rem;
  color: #555555;
  line-height: 1.6;
  margin-top: 6px;
  background: #f3f3f3;
  padding: 10px 14px;
  border-radius: 4px;
}
.plan-card__body .plan-features .item-detail-text small {
  color: #888888;
  display: block;
  margin-top: 4px;
}
.plan-card__body .plan-shipping-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f5f1fa;
  border: 1px solid #dfd2ec;
  color: #6B4C8A;
  font-size: 0.82rem;
  padding: 4px 10px;
  border-radius: 4px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.plan-card__body .plan-limit-alert {
  background: #fbf8fe;
  border: 1px solid #dfd2ec;
  color: #6B4C8A;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.84rem;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.plan-card__body .plan-note {
  font-size: 12px;
  color: #666;
  margin: 8px 0 0;
}
.plan-card__footer {
  padding: 0 24px 28px;
  text-align: center;
}
@media (max-width: 767px) {
  .plan-card__footer {
    padding: 0 18px 22px;
  }
}
.plan-card__footer .plan-select-btn {
  width: 260px;
  max-width: 100%;
  height: 52px;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #6B4C8A;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 0 24px;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 14px rgba(107, 76, 138, 0.35);
}
@media (max-width: 767px) {
  .plan-card__footer .plan-select-btn {
    width: 240px;
    height: 48px;
    font-size: 0.98rem;
    gap: 8px;
  }
}
.plan-card__footer .plan-select-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -120%;
  width: 60%;
  height: 200%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(25deg);
  animation: shimmer-sweep 3.5s infinite ease-in-out;
  pointer-events: none;
}
.plan-card__footer .plan-select-btn i {
  font-size: 0.92rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.plan-card__footer .plan-select-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(107, 76, 138, 0.45);
  color: #ffffff;
}
.plan-card__footer .plan-select-btn:hover i {
  transform: translateX(4px);
}
.plan-card__footer .plan-select-btn:active {
  transform: translateY(0px) scale(0.98);
  box-shadow: 0 3px 8px rgba(107, 76, 138, 0.3);
}
.plan-card__footer.plan-select-btns-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.plan-card__footer.plan-select-btns-group .plan-select-btn {
  flex: 1 1 200px;
  max-width: 240px;
  margin: 0;
  font-size: 0.95rem;
  padding: 13px 16px;
}
@media (max-width: 767px) {
  .plan-card__footer.plan-select-btns-group .plan-select-btn {
    flex: 1 1 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}
.plan-card--3000, .plan-card--10000 {
  border: 2px solid #6B4C8A;
  box-shadow: 0 4px 16px rgba(107, 76, 138, 0.15);
}
.plan-card--3000:hover, .plan-card--10000:hover {
  border-color: #6B4C8A;
  box-shadow: 0 8px 24px rgba(107, 76, 138, 0.25);
}
.plan-card--3000 .plan-card__header, .plan-card--10000 .plan-card__header {
  background: linear-gradient(135deg, #6B4C8A 0%, #4D3367 100%);
}
.plan-card--3000 .plan-select-btn, .plan-card--10000 .plan-select-btn {
  background: #6B4C8A;
  box-shadow: 0 4px 14px rgba(107, 76, 138, 0.35);
}
.plan-card--3000 .plan-select-btn:hover, .plan-card--10000 .plan-select-btn:hover {
  background: #593c75;
  box-shadow: 0 8px 24px rgba(107, 76, 138, 0.45);
}
.plan-card--20000 {
  border: 2px solid #b89758;
  box-shadow: 0 4px 18px rgba(77, 44, 109, 0.16);
}
.plan-card--20000:hover {
  border-color: #c5a059;
  box-shadow: 0 8px 26px rgba(184, 151, 88, 0.3);
}
.plan-card--20000 .plan-card__header {
  background: linear-gradient(135deg, #532C77 0%, #351652 100%);
  border-bottom: 2px solid rgba(197, 160, 89, 0.4);
}
.plan-card--20000 .plan-tier-badge {
  background: #fdf3e2;
  color: #6a461b;
  font-weight: 700;
  border: 1px solid rgba(197, 160, 89, 0.5);
}
.plan-card--20000 .plan-select-btn {
  background: linear-gradient(135deg, #532C77 0%, #351652 100%);
  border: 1px solid rgba(197, 160, 89, 0.6);
  box-shadow: 0 3px 12px rgba(83, 44, 119, 0.35);
}
.plan-card--20000 .plan-select-btn:hover {
  background: #351652;
  border-color: #c5a059;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(83, 44, 119, 0.45);
}
.plan-card--30000 {
  border: 2px solid #c5a059;
  box-shadow: 0 6px 24px rgba(197, 160, 89, 0.25);
}
.plan-card--30000:hover {
  box-shadow: 0 10px 32px rgba(197, 160, 89, 0.4);
}
.plan-card--30000 .plan-card__header {
  background: linear-gradient(135deg, #381552 0%, #1c082c 100%);
  border-bottom: 2px solid #c5a059;
}
.plan-card--30000 .plan-tier-badge {
  background: linear-gradient(135deg, #c5a059 0%, #e0c88b 50%, #b8934a 100%);
  color: #1e0930;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.plan-card--30000 .plan-price {
  color: #f5eedb;
}
.plan-card--30000 .plan-select-btn {
  background: linear-gradient(135deg, #c5a059 0%, #e0c88b 50%, #b8934a 100%);
  color: #1e0930;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.45);
}
.plan-card--30000 .plan-select-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.6);
}

.shrine-counter-box {
  background: #f3f3f3;
  border: 1px solid #e6e2da;
  border-radius: 8px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .shrine-counter-box {
    flex-direction: column;
    padding: 20px 16px;
    gap: 12px;
  }
}
.shrine-counter-box .counter-icon {
  font-size: 2.2rem;
  color: #6B4C8A;
  flex-shrink: 0;
  margin-top: 4px;
}
.shrine-counter-box .counter-text h3 {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2737;
  margin-bottom: 8px;
}
.shrine-counter-box .counter-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #2b2b2b;
  margin-bottom: 8px;
}
.shrine-counter-box .counter-text small {
  color: #888888;
  font-size: 0.82rem;
  line-height: 1.6;
}

.accordion-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  border: 1px solid #e6e2da;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
}
.accordion-item .accordion-header {
  width: 100%;
  padding: 16px 20px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  transition: background-color 0.2s;
}
.accordion-item .accordion-header:hover {
  background: #f3f3f3;
}
.accordion-item .accordion-header .acc-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #1f2737;
  display: flex;
  align-items: center;
  gap: 10px;
}
.accordion-item .accordion-header .acc-title i {
  color: #6B4C8A;
}
.accordion-item .accordion-header .acc-icon {
  font-size: 0.88rem;
  color: #888888;
  transition: transform 0.3s ease;
}
.accordion-item .accordion-header[aria-expanded=true] {
  background: #f3f3f3;
}
.accordion-item .accordion-header[aria-expanded=true] .acc-icon {
  transform: rotate(180deg);
}
.accordion-item .accordion-content {
  display: none;
  padding: 0 20px 20px;
  background: #ffffff;
  border-top: 1px solid #e6e2da;
}
.accordion-item .accordion-content .acc-inner {
  padding-top: 16px;
  font-size: 0.92rem;
  line-height: 1.8;
  color: #2b2b2b;
}
.accordion-item .accordion-content .acc-inner h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1f2737;
  margin-bottom: 6px;
}
.accordion-item .accordion-content .acc-inner ul {
  margin-left: 20px;
  margin-bottom: 12px;
}
.accordion-item .accordion-content .acc-inner li {
  margin-bottom: 6px;
}
.accordion-item .accordion-content .acc-inner .guideline-list {
  list-style: square;
}
.accordion-item .accordion-content .acc-inner .guideline-list li {
  margin-bottom: 8px;
}

.shrine-closing-section {
  background: #ffffff;
  color: #2b2b2b;
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(107, 76, 138, 0.2);
}
@media (max-width: 767px) {
  .shrine-closing-section {
    padding: 28px 18px;
  }
}
.shrine-closing-section .closing-header {
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 6px;
}
.shrine-closing-section .closing-header img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}
.shrine-closing-section .closing-emblem {
  margin-bottom: 20px;
}
.shrine-closing-section .closing-emblem img {
  width: 50px;
  height: 50px;
  opacity: 0.85;
}
.shrine-closing-section .closing-lead {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.15rem;
  line-height: 2.1;
  color: #1f2737;
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .shrine-closing-section .closing-lead {
    font-size: 1rem;
    line-height: 1.9;
  }
}
.shrine-closing-section .closing-sign {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
  color: #555555;
  line-height: 1.8;
}
.shrine-closing-section .closing-sign strong {
  font-size: 1.2rem;
  color: #6B4C8A;
  letter-spacing: 0.08em;
}

.contact-guide-section .contact-box {
  background: #ffffff;
  border: 1px solid #e6e2da;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .contact-guide-section .contact-box {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}
.contact-guide-section .contact-box__icon {
  font-size: 2.2rem;
  color: #6B4C8A;
}
.contact-guide-section .contact-box__text {
  flex-grow: 1;
}
.contact-guide-section .contact-box__text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2737;
  margin-bottom: 4px;
}
.contact-guide-section .contact-box__text p {
  font-size: 0.88rem;
  color: #555555;
  margin: 0;
}
.contact-guide-section .contact-box__btn {
  flex-shrink: 0;
}
.contact-guide-section .contact-box__btn .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid #6B4C8A;
  color: #6B4C8A;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s;
}
.contact-guide-section .contact-box__btn .btn:hover {
  background: #6B4C8A;
  color: #fff;
}
.contact-guide-section .urgent-call-note {
  background: #fbf8fe;
  border: 1px solid #dfd2ec;
  border-radius: 6px;
  padding: 10px 16px;
  margin-top: 12px;
  font-size: 0.84rem;
  color: #4a3461;
}
.contact-guide-section .urgent-call-note i {
  margin-right: 4px;
  color: #6B4C8A;
}

.project-sidebar {
  width: 100%;
  min-width: 0;
}
@media (min-width: 768px) {
  .project-sidebar {
    position: sticky;
    top: 90px;
    align-self: flex-start;
    height: fit-content;
    z-index: 10;
  }
}
.project-sidebar .sidebar-sticky-inner {
  width: 100%;
}

.funding-status-card {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e6e2da;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(21, 25, 34, 0.08);
  margin-bottom: 24px;
}
.funding-status-card .status-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.funding-status-card .status-header .status-badge {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.funding-status-card .status-header .status-badge.live {
  background: #f5effa;
  color: #6B4C8A;
}
.funding-status-card .status-header .status-badge.live i {
  color: #6B4C8A;
  animation: blink 1.5s infinite;
}
.funding-status-card .status-header .status-goal-type {
  font-size: 0.78rem;
  color: #888888;
}
.funding-status-card .status-main-figure {
  margin-bottom: 16px;
}
.funding-status-card .status-main-figure .status-label {
  font-size: 0.82rem;
  color: #555555;
  margin-bottom: 2px;
}
.funding-status-card .status-main-figure .status-amount {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #1f2737;
  line-height: 1.1;
}
.funding-status-card .status-main-figure .status-amount .currency {
  font-size: 1.3rem;
  margin-right: 2px;
  color: #c5a059;
}
.funding-status-card .progress-bar-wrap {
  margin-bottom: 20px;
}
.funding-status-card .progress-bar-wrap .progress-bar {
  width: 100%;
  height: 10px;
  background: #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 6px;
}
.funding-status-card .progress-bar-wrap .progress-bar .progress-fill {
  height: 100%;
  background: #6B4C8A;
  border-radius: 10px;
  transition: width 1s ease-in-out;
}
.funding-status-card .progress-bar-wrap .progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
}
.funding-status-card .progress-bar-wrap .progress-labels .percentage {
  color: #6B4C8A;
  font-weight: 700;
}
.funding-status-card .progress-bar-wrap .progress-labels .percentage strong {
  font-size: 0.95rem;
}
.funding-status-card .progress-bar-wrap .progress-labels .target-amount {
  color: #888888;
}
.funding-status-card .status-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: #f3f3f3;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.funding-status-card .status-stats-grid .stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.funding-status-card .status-stats-grid .stat-item .stat-icon {
  font-size: 1.3rem;
  color: #c5a059;
}
.funding-status-card .status-stats-grid .stat-item .stat-val {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1f2737;
  line-height: 1.2;
}
.funding-status-card .status-stats-grid .stat-item .stat-lbl {
  font-size: 0.72rem;
  color: #888888;
}
.funding-status-card .status-cta {
  text-align: center;
}
.funding-status-card .status-cta .btn-support-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  background: #6B4C8A;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 13px 24px;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(107, 76, 138, 0.35);
  transition: all 0.3s ease;
}
.funding-status-card .status-cta .btn-support-main i {
  font-size: 1.1rem;
}
.funding-status-card .status-cta .btn-support-main:hover {
  background: #593c75;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(107, 76, 138, 0.45);
}
.funding-status-card .status-cta .all-in-notice {
  font-size: 0.72rem;
  color: #888888;
  text-align: center;
  margin-top: 8px;
}

.sidebar-plans-quick {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e6e2da;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.sidebar-plans-quick .sidebar-plans-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1f2737;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sidebar-plans-quick .quick-plan-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-plans-quick .quick-plan-list li a {
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid #e6e2da;
  background: #f3f3f3;
  transition: all 0.2s;
}
.sidebar-plans-quick .quick-plan-list li a .qp-price {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #6B4C8A;
}
.sidebar-plans-quick .quick-plan-list li a .qp-name {
  font-size: 0.8rem;
  color: #555555;
}
.sidebar-plans-quick .quick-plan-list li a:hover {
  border-color: #6B4C8A;
  background: #fff;
  transform: translateX(3px);
}

.project-footer {
  background: #151922;
  color: #cbd5e1;
  border-top: 2px solid #c5a059;
  padding: 40px 20px;
}
@media (max-width: 767px) {
  .project-footer {
    padding-bottom: 100px;
  }
}
.project-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.project-footer .footer-shrine-info {
  margin-bottom: 24px;
}
.project-footer .footer-shrine-info .footer-logo {
  margin-bottom: 16px;
}
.project-footer .footer-shrine-info .footer-logo .footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.project-footer .footer-shrine-info h3 {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.25rem;
  color: #f5eedb;
  margin-bottom: 6px;
}
.project-footer .footer-shrine-info p {
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.project-footer .footer-shrine-info .footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.88rem;
}
.project-footer .footer-shrine-info .footer-links a {
  color: #94a3b8;
}
.project-footer .footer-shrine-info .footer-links a:hover {
  color: #fff;
}
.project-footer .footer-copyright {
  font-size: 0.78rem;
  color: #64748b;
}

.fixed-sp-bar {
  display: none;
}
@media (max-width: 767px) {
  .fixed-sp-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(107, 76, 138, 0.2);
    padding: 10px 16px;
    z-index: 99;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    align-items: center;
    justify-content: space-between;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.35s ease, visibility 0.35s ease;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .fixed-sp-bar.is-hidden {
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .fixed-sp-bar .sp-bar-info {
    display: flex;
    flex-direction: column;
  }
  .fixed-sp-bar .sp-bar-info .sp-bar-amount {
    font-size: 0.84rem;
    color: #475569;
  }
  .fixed-sp-bar .sp-bar-info .sp-bar-amount strong {
    color: #6B4C8A;
    font-size: 1.05rem;
    font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
    font-weight: 800;
  }
  .fixed-sp-bar .sp-bar-info .sp-bar-deadline {
    font-size: 0.72rem;
    color: #64748b;
  }
  .fixed-sp-bar .sp-bar-btn {
    background: #6B4C8A;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(107, 76, 138, 0.35);
  }
  .fixed-sp-bar .sp-bar-btn:hover {
    background: #593c75;
  }
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1000;
  padding: 20px 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .modal-overlay {
    padding: 16px 12px;
  }
}
.modal-overlay.is-open {
  display: flex;
}

.modal-window {
  background: #ffffff;
  border-radius: 8px;
  max-width: 680px;
  width: 100%;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 36px;
  position: relative;
  box-shadow: 0 10px 30px rgba(21, 25, 34, 0.14);
  margin: auto;
}
@media (max-width: 767px) {
  .modal-window {
    padding: 24px 16px;
    max-height: calc(100vh - 32px);
    border-radius: 6px;
  }
}
.modal-window .modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.6rem;
  color: #888888;
  line-height: 1;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 4px;
  transition: color 0.2s;
}
.modal-window .modal-close:hover {
  color: #2b2b2b;
}
.modal-window .modal-header {
  text-align: center;
  margin-bottom: 20px;
  padding-right: 20px;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .modal-window .modal-header {
    margin-bottom: 16px;
    padding-right: 12px;
    padding-left: 12px;
  }
}
.modal-window .modal-header .modal-header-icon {
  font-size: 1.8rem;
  color: #6B4C8A;
  margin-bottom: 6px;
}
.modal-window .modal-header .modal-title {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1f2737;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .modal-window .modal-header .modal-title {
    font-size: 1.18rem;
  }
}
.modal-window .modal-header .modal-lead {
  font-size: 0.88rem;
  color: #555555;
}

.modal-window--sm {
  max-width: 440px;
}

.plan-select-modal-body {
  padding: 4px 0 0;
  text-align: center;
}
.plan-select-modal-body .plan-select-lead {
  font-size: 0.88rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  .plan-select-modal-body .plan-select-lead {
    font-size: 0.82rem;
    margin-bottom: 16px;
  }
}
.plan-select-modal-body .tier-select-button-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.plan-select-modal-body .tier-select-button-list .tier-select-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: #ffffff;
  border: 2px solid #6B4C8A;
  border-radius: 50px;
  color: #1f2737;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(107, 76, 138, 0.12);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .plan-select-modal-body .tier-select-button-list .tier-select-btn {
    padding: 10px 20px;
  }
}
.plan-select-modal-body .tier-select-button-list .tier-select-btn .tier-amount {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #6B4C8A;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .plan-select-modal-body .tier-select-button-list .tier-select-btn .tier-amount {
    font-size: 1.15rem;
  }
}
.plan-select-modal-body .tier-select-button-list .tier-select-btn .tier-amount span {
  font-size: 0.82rem;
  font-weight: 600;
  margin-left: 2px;
}
.plan-select-modal-body .tier-select-button-list .tier-select-btn .tier-action {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  background: #6B4C8A;
  padding: 6px 14px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .plan-select-modal-body .tier-select-button-list .tier-select-btn .tier-action {
    font-size: 0.82rem;
    padding: 5px 10px;
    gap: 4px;
  }
}
.plan-select-modal-body .tier-select-button-list .tier-select-btn .tier-action i {
  font-size: 0.78rem;
  transition: transform 0.3s ease;
}
.plan-select-modal-body .tier-select-button-list .tier-select-btn:hover {
  background: #6B4C8A;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(107, 76, 138, 0.35);
}
.plan-select-modal-body .tier-select-button-list .tier-select-btn:hover .tier-amount {
  color: #ffffff;
}
.plan-select-modal-body .tier-select-button-list .tier-select-btn:hover .tier-action {
  background: #ffffff;
  color: #6B4C8A;
}
.plan-select-modal-body .tier-select-button-list .tier-select-btn:hover .tier-action i {
  transform: translate(2px, -2px);
}
.plan-select-modal-body .tier-select-button-list .tier-select-btn:active {
  transform: translateY(0px) scale(0.98);
}
.plan-select-modal-body .plan-select-note {
  font-size: 0.78rem;
  color: #888888;
  line-height: 1.5;
  margin: 0;
  text-align: left;
  background: #fbf9fd;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid #ede3f2;
}
@media (max-width: 767px) {
  .plan-select-modal-body .plan-select-note {
    font-size: 0.72rem;
    padding: 8px 10px;
  }
}

.modal-form .form-group {
  margin-bottom: 20px;
}
.modal-form .form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1f2737;
  margin-bottom: 6px;
}
.modal-form .form-group .optional-tag {
  font-size: 0.72rem;
  font-weight: normal;
  background: #e2e8f0;
  color: #555555;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
}
.modal-form .form-group .form-hint {
  display: block;
  font-size: 0.78rem;
  color: #888888;
  margin-top: 4px;
}
.modal-form .required-field > label::after,
.modal-form .required-label::after {
  content: " *必須";
  color: #6B4C8A;
  font-size: 0.75rem;
  font-weight: 700;
}
.modal-form .form-control {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.95rem;
  border: 1px solid #d1cbbd;
  border-radius: 4px;
  background: #fff;
  color: #2b2b2b;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.modal-form .form-control:focus {
  outline: none;
  border-color: #6B4C8A;
  box-shadow: 0 0 0 3px rgba(107, 76, 138, 0.18);
}
.modal-form select.form-control {
  appearance: auto;
}
.modal-form .form-row {
  display: flex;
  gap: 16px;
}
@media (max-width: 767px) {
  .modal-form .form-row {
    flex-direction: column;
    gap: 0;
  }
}
.modal-form .form-row .half {
  flex: 1;
}
.modal-form .zip-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.modal-form .zip-input-wrap .zip-code {
  max-width: 160px;
}
.modal-form .zip-input-wrap .zip-hint {
  font-size: 0.8rem;
  color: #888888;
}
.modal-form .radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal-form .radio-group.inline {
  flex-direction: row;
  gap: 20px;
}
.modal-form .radio-group .radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: normal;
  cursor: pointer;
  color: #2b2b2b;
}
.modal-form .radio-group .radio-label input[type=radio] {
  accent-color: #6B4C8A;
  cursor: pointer;
}
.modal-form .extra-amount-box {
  background: #f3f3f3;
  border: 1px solid #dfd2ec;
  border-radius: 6px;
  padding: 18px;
  margin-bottom: 20px;
}
.modal-form .extra-amount-box .extra-header {
  margin-bottom: 12px;
}
.modal-form .extra-amount-box .extra-header .extra-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #6B4C8A;
  display: flex;
  align-items: center;
  gap: 6px;
}
.modal-form .extra-amount-box .quick-add-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 14px;
}
.modal-form .extra-amount-box .quick-add-buttons .btn-quick-add {
  background: #ffffff;
  border: 1px solid #d1cbbd;
  color: #1f2737;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.2s ease;
}
.modal-form .extra-amount-box .quick-add-buttons .btn-quick-add:hover {
  border-color: #6B4C8A;
  background: #f5effa;
  color: #6B4C8A;
}
.modal-form .extra-amount-box .quick-add-buttons .btn-quick-add.is-active {
  background: #6B4C8A;
  color: #fff;
  border-color: #6B4C8A;
}
.modal-form .extra-amount-box .total-amount-display {
  background: #ffffff;
  border: 2px solid #6B4C8A;
  border-radius: 4px;
  padding: 8px 14px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.modal-form .extra-amount-box .total-amount-display .currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: #6B4C8A;
}
.modal-form .extra-amount-box .total-amount-display .total-num {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1f2737;
}
.modal-form .extra-amount-box .extra-sub-note {
  display: block;
  font-size: 0.76rem;
  color: #888888;
  margin-top: 8px;
  line-height: 1.5;
}
.modal-form .condition-box {
  background: #f3f3f3;
  border: 1px solid #e6e2da;
  border-radius: 6px;
  padding: 18px;
  margin-bottom: 20px;
}
.modal-form .condition-box .cond-box-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1f2737;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.modal-form .condition-box .cond-box-title i {
  color: #6B4C8A;
}
.modal-form .condition-field {
  transition: all 0.3s ease;
}
.modal-form .agreement-box {
  background: #f3f3f3;
  border: 1px solid #e6e2da;
  border-radius: 6px;
  padding: 16px;
  margin: 24px 0;
}
.modal-form .agreement-box .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  line-height: 1.6;
  cursor: pointer;
  color: #2b2b2b;
}
.modal-form .agreement-box .checkbox-label input[type=checkbox] {
  accent-color: #6B4C8A;
  margin-top: 4px;
  cursor: pointer;
}
.modal-form .agreement-box .checkbox-label small {
  color: #888888;
}
.modal-form .notice-callout {
  background: #f5f1fa;
  border-left: 4px solid #6B4C8A;
  padding: 12px 16px;
  border-radius: 0 4px 4px 0;
  font-size: 0.82rem;
  color: #555555;
  margin: 16px 0;
}
.modal-form .notice-callout i {
  color: #6B4C8A;
}
.modal-form .modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #e6e2da;
}
.modal-form .modal-footer .btn {
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
}
.modal-form .modal-footer .btn.btn-secondary {
  background: #e2e8f0;
  color: #555555;
}
.modal-form .modal-footer .btn.btn-secondary:hover {
  background: #cbd5e1;
}
.modal-form .modal-footer .btn.btn-primary {
  background: #6B4C8A;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.modal-form .modal-footer .btn.btn-primary:hover {
  background: #593c75;
}
.modal-form .modal-footer .btn.btn-large {
  padding: 14px 32px;
  font-size: 1.05rem;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes shimmer-sweep {
  0% {
    left: -120%;
    opacity: 0;
  }
  15% {
    opacity: 0.7;
  }
  35% {
    left: 140%;
    opacity: 0;
  }
  100% {
    left: 140%;
    opacity: 0;
  }
}
.pulse-btn {
  animation: pulse 3s infinite ease-in-out;
}
.pulse-btn:hover {
  animation: none;
}

/*# sourceMappingURL=project.css.map */
