@charset "UTF-8";
.anim-slide-text {
  transform: translateX(-100%);
  opacity: 0;
}
.anim-slide-text.animated {
  animation-name: slideText;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}
.anim-slide-image {
  position: relative;
}
.anim-slide-image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform-origin: right;
  transform: scaleX(1);
}
.anim-slide-image.animated:before {
  animation-name: slideImage;
  animation-delay: 0.5s;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}
.anim-slide-block {
  position: relative;
}
.anim-slide-block:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform-origin: left;
  transform: scaleX(0);
  left: 0;
  top: 0;
}
.anim-slide-block > * {
  opacity: 0;
}
.anim-slide-block.animated:before {
  animation-name: slideBlock;
  animation-delay: 0.3s;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}
.anim-slide-block.animated > * {
  animation-name: fadeIn;
  animation-delay: 0.6s;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}
.anim-fade-in {
  transform: translateY(10px);
  opacity: 0;
}
.anim-fade-in.animated {
  animation-name: fadeInUp;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}
.anim-scale-down {
  overflow: hidden;
}
.anim-scale-down > * {
  transform: scale(1.1, 1.1);
  display: block;
}
.anim-scale-down.animated > * {
  animation-name: scaleDown;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes slideText {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideImage {
  0% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
@keyframes slideBlock {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes fadeInUp {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes scaleDown {
  from {
    transform: scale(1.1, 1.1);
  }
  to {
    transform: scale(1, 1);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
:root {
  --blue:#1a63d1;
  --blue-deep:#123f8a;
  --blue-pale:#eaf2fc;
  --blue-mid:#2d8fe0;
  --blue-soft:#d7ecfd;
  --orange:#2d8fe0;
  --orange-deep:#0f5fa8;
  --yellow:#bcdcfa;
  --cta-red:#e6432c;
  --cta-red-deep:#c9331d;
  --cream:#eef6fc;
  --gray-bg:#eef2f6;
  --text:#333333;
  --text-sub:#767676;
}

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

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--text);
  line-height: 1.85;
  background: #fff;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.ph {
  background: repeating-linear-gradient(45deg, #eef1f4, #eef1f4 10px, #f7f9fb 10px, #f7f9fb 20px);
  color: #9aa2aa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-align: center;
  padding: 8px;
  border: 1px dashed #c9d2da;
  width: 100%;
}

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  font-weight: 700;
}

a.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 30px;
  padding: 15px 34px;
  text-align: center;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  letter-spacing: 0.02em;
}

a.btn:hover {
  transform: translateY(-3px);
}

a.btn:active {
  transform: translateY(-1px);
}

a.btn .arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.18s ease;
}

a.btn:hover .arrow {
  transform: translateX(5px);
}

.btn-primary, .btn-primary-white {
  background: linear-gradient(135deg, var(--cta-red), var(--cta-red-deep));
  color: #fff;
  box-shadow: 0 8px 20px rgba(230, 67, 44, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  position: relative;
}
.btn-primary:before, .btn-primary-white:before {
  position: absolute;
  left: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  height: 2em;
  content: "";
  display: inline-block;
  background: url("../img/ico_speaker.svg") no-repeat center center;
  background-size: contain;
  transition: transform 0.18s ease;
}
.btn-primary:hover, .btn-primary-white:hover {
  box-shadow: 0 12px 26px rgba(230, 67, 44, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-primary:hover:before, .btn-primary-white:hover:before {
  transform: translateY(-50%) scale(1.5);
}

.btn-primary-white {
  background: #FFFFFF;
  color: var(--cta-red);
}
.btn-primary-white:before {
  background-image: url("../img/ico_speaker-red.svg");
}

.btn-outline {
  background: #fff;
  color: var(--blue-deep);
  border: 2px solid var(--blue);
  box-shadow: 0 4px 14px rgba(26, 99, 209, 0.12);
}

.btn-outline:hover {
  background: var(--blue-pale);
  box-shadow: 0 8px 20px rgba(26, 99, 209, 0.2);
}

.btn-teal {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  box-shadow: 0 8px 18px rgba(26, 99, 209, 0.3);
}

.btn-green {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue));
  color: #fff;
  box-shadow: 0 8px 18px rgba(45, 143, 224, 0.3);
}

.btn-foobour {
  background: linear-gradient(135deg, #66c26a, #4caf50);
  color: #fff;
  box-shadow: 0 8px 18px rgba(76, 175, 80, 0.3);
}

header {
  background: #fff;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--blue-deep), var(--blue), var(--blue-mid)) 1;
  box-shadow: 0 2px 12px rgba(18, 63, 138, 0.08);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .btn-primary {
  padding: 6px 32px;
  font-size: 24px;
  flex-shrink: 0;
}
header .btn-primary:before {
  left: 0.5em;
  width: 1.5em;
  height: 1.5em;
}
@media (max-width: 720px) {
  header .btn-primary {
    font-size: 16px;
  }
}

.logo-badge a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--blue-deep);
  font-weight: 700;
  text-decoration: none;
  line-height: 1.3;
}
.logo-badge a img {
  width: 64px;
  margin-top: -14px;
  margin-bottom: -14px;
}
@media (max-width: 720px) {
  .logo-badge a {
    font-size: 16px;
  }
  .logo-badge a img {
    width: 54px;
  }
}

@media (min-width: 721px) {
  .sp {
    display: none;
  }
}

.hero {
  background: radial-gradient(circle at 15% 20%, rgba(45, 143, 224, 0.25) 0, transparent 45%), radial-gradient(circle at 85% 15%, rgba(18, 63, 138, 0.15) 0, transparent 40%), var(--blue-pale);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-photo {
  width: 100%;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(18, 63, 138, 0.18);
  background: #fff;
}
.hero-photo .wrap {
  padding: 0;
}

.hero-photo img {
  width: 100%;
}

.hero-info-wrap {
  padding: 24px 0;
}
@media (max-width: 720px) {
  .hero-info-wrap {
    padding-left: 4px;
    padding-right: 4px;
  }
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  background: #fff;
  border: 1px solid #dbe7f2;
  border-radius: 16px;
  padding: 18px 24px;
  font-size: 14px;
  box-shadow: 0 10px 28px rgba(18, 63, 138, 0.12);
}
.hero-info .divider {
  width: 1px;
  background: #dbe7f2;
  align-self: stretch;
}
.hero-info .countdown b, .hero-info .progress b {
  font-size: 30px;
  line-height: 1;
  color: var(--orange-deep);
}
.hero-info .countdown b span, .hero-info .progress b span {
  display: inline-block;
  text-align: center;
  margin: 0 2px;
}
.hero-info #campaignDays {
  width: 40px;
  color: var(--blue);
}
.hero-info #currentNumber {
  width: 54px;
  color: var(--cta-red);
}
.hero-info .progress {
  flex-grow: 1;
}

.progress-wrap {
  margin: 0;
  font-size: 13px;
}

.progress-bar {
  height: 12px;
  background: #eef1f4;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 6px;
}

.progress-bar > div {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-deep));
  width: 38%;
  border-radius: 6px;
}

section {
  padding: 56px 0;
}

.section-lead {
  font-size: 15px;
  color: var(--text-sub);
  margin-bottom: 24px;
}

.section-lead > p + p {
  margin-top: 12px;
}

.section-title {
  font-size: 26px;
  text-align: center;
  margin-bottom: 22px;
  color: var(--blue-deep);
  position: relative;
  padding-bottom: 18px;
}

.section-title:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 64px;
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue-mid));
}

.section-title:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-mid);
  box-shadow: 0 0 0 4px #fff;
}

.section-title small {
  display: block;
  font-size: 12px;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.15em;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 28px;
  margin-bottom: 28px;
  border-radius: 10px;
  overflow: hidden;
}

.photo-strip img {
  height: 150px;
  border-radius: 8px;
}

.stats {
  background: radial-gradient(circle at 92% 10%, rgba(45, 143, 224, 0.3) 0, transparent 35%), radial-gradient(circle at 4% 90%, rgba(18, 63, 138, 0.12) 0, transparent 35%), var(--blue-pale);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.stat-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(20, 60, 120, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card img {
  display: block;
  width: 100%;
}

.risk .section-lead {
  margin-bottom: 8px;
}

.risk-graphic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}

.risk-graphic img {
  border-radius: 12px;
}

.reinforce-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.r-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 6px 16px rgba(20, 60, 120, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.r-card img {
  height: 140px;
}

.r-card .body {
  padding: 18px 16px;
  border-top: 4px solid var(--blue);
}

.r-card .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.r-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text);
}

.r-card p {
  font-size: 13px;
  color: var(--text-sub);
}

.r-card.orange .body {
  border-color: var(--orange-deep);
}

.r-card.orange .tag {
  background: var(--blue-pale);
  color: var(--orange-deep);
}

.r-card.yellow .body {
  border-color: var(--blue-mid);
}

.r-card.yellow .tag {
  background: #e3f1fd;
  color: #0f5fa8;
}

.r-card.blue .body {
  border-color: var(--blue);
}

.r-card.blue .tag {
  background: var(--blue-pale);
  color: var(--blue-deep);
}

.recruit {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 2px, transparent 2.5px) 0 0/28px 28px, linear-gradient(135deg, var(--cta-red), var(--cta-red) 55%, var(--cta-red-deep));
  color: #fff;
  padding: 56px 0;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.3);
}
.recruit .btn-primary-white {
  font-size: 20px;
  width: 340px;
  padding: 0.5em 10px;
  border-radius: 2em;
  max-width: 100%;
}
.recruit .btn-primary-white:before {
  width: 1.75em;
  height: 1.75em;
}
.recruit h2 {
  font-size: 28px;
  margin-bottom: 1em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  line-height: 1.2;
  text-align: center;
}
.recruit p {
  font-size: 14px;
  margin-bottom: 26px;
  opacity: 0.95;
}
.recruit p:last-child {
  margin-bottom: 0;
}

#recruit .block-narrow {
  width: 480px;
}

.support-block {
  background: radial-gradient(circle at 8% 15%, rgba(26, 99, 209, 0.06) 0, transparent 40%), radial-gradient(circle at 95% 85%, rgba(45, 143, 224, 0.12) 0, transparent 40%), var(--cream);
}

.support-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.support-buttons a {
  min-width: 220px;
}

.super-project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 24px;
}

.super-project img {
  border-radius: 12px;
}

.contact {
  padding: 40px 0;
}

.contact p {
  color: var(--text-sub);
  margin-bottom: 16px;
  font-size: 14px;
}

.trust-block {
  background: radial-gradient(circle at 95% 5%, rgba(45, 143, 224, 0.35) 0, transparent 30%), radial-gradient(circle at 5% 95%, rgba(18, 63, 138, 0.12) 0, transparent 30%), #dceafb;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 14px 32px rgba(18, 63, 138, 0.12);
}

.trust-block .section-title {
  margin-bottom: 28px;
}

.trust-block .section-title .hl {
  color: var(--blue);
  border-bottom: 3px solid var(--blue);
}

.trust-cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 720px) {
  .trust-cols {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.trust-check {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-check .box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.tax-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(18, 63, 138, 0.1);
}

.tax-bar {
  background: var(--blue-deep);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.tax-example {
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 14px;
}

.tax-example b {
  background: var(--blue-pale);
  color: var(--blue-deep);
  padding: 2px 8px;
  border-radius: 10px;
}

.tax-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.tax-flow .node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-deep);
  width: 80px;
  text-align: center;
}

.tax-flow .node .circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.tax-flow .node.office .circle {
  background: var(--blue-soft);
  color: var(--blue-deep);
}

.tax-flow .arrow {
  flex: 1;
  min-width: 60px;
  text-align: center;
  font-size: 12px;
  color: var(--text-sub);
}

.tax-flow .arrow b {
  display: block;
  color: var(--blue);
  font-size: 14px;
}

.tax-formula {
  background: var(--blue-pale);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-top: 14px;
}

.tax-note {
  font-size: 11px;
  color: var(--text-sub);
  margin-top: 10px;
}

.side-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(18, 63, 138, 0.1);
}

.side-card .ph {
  height: 110px;
  font-size: 11px;
  margin-top: 10px;
}

.card-badges {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.card-badges span {
  background: var(--blue-pale);
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
}

.director {
  background: radial-gradient(circle at 90% 20%, rgba(26, 99, 209, 0.08) 0, transparent 40%), var(--gray-bg);
}

.director-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
}

.director-inner img {
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(20, 60, 120, 0.16);
}

.director-inner .name {
  font-weight: 700;
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
  color: var(--blue-deep);
}

blockquote {
  font-size: 14px;
  color: var(--text-sub);
}

blockquote p {
  margin-bottom: 12px;
}

.overview {
  background: #fff;
  border: 1px solid #dbe7f2;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 24px rgba(18, 63, 138, 0.08);
}

.overview table {
  width: 100%;
  font-size: 14px;
  border-collapse: collapse;
}

.overview td {
  padding: 10px 8px;
  border-bottom: 1px solid #eee;
}

.overview td:first-child {
  color: var(--blue-deep);
  font-weight: 700;
  width: 160px;
}

.faq details {
  border-bottom: 1px solid #eee;
  padding: 16px 0;
}

.faq summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary:after {
  content: "+";
  font-size: 20px;
  color: var(--blue);
}

.faq details[open] summary:after {
  content: "–";
}

.faq p {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-sub);
}

footer {
  background: var(--gray-bg);
  color: var(--text-sub);
  padding: 32px 0 4px;
  font-size: 12px;
  border-top: 1px solid #eee;
}

footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  column-gap: 20px;
}
footer .footer__logo {
  width: 200px;
}
footer .footer__logo img {
  margin-bottom: 4px;
}
footer .footer__nav {
  line-height: 1.6;
}
footer .footer__copyright {
  text-align: center;
  margin-top: 1em;
  color: var(--text-sub);
}
footer .footer__copyright a {
  text-decoration: none;
  color: var(--text-sub);
}

@media (max-width: 720px) {
  .stat-grid, .photo-strip {
    grid-template-columns: 1fr 1fr;
  }
  .reinforce-grid {
    grid-template-columns: 1fr;
  }
  .risk-graphic, .super-project {
    grid-template-columns: 1fr;
  }
  .director-inner {
    grid-template-columns: 1fr;
  }
  .director-inner img {
    max-width: 200px;
    margin: 0 auto;
  }
  .app-block {
    flex-direction: column;
    text-align: center;
  }
}
.block-narrow {
  width: 640px;
  max-width: 100%;
  margin: 0 auto;
}

.donation .support-buttons {
  display: flex;
  justify-content: space-between;
  column-gap: 40px;
}
.donation .support-buttons > div {
  flex: 1;
}
.donation .support-buttons > div p {
  margin-top: 24px;
}

.btn {
  position: relative;
}
.btn .number {
  font-size: 24px;
  position: absolute;
  top: -15px;
  left: -15px;
  font-weight: 700;
  z-index: 1;
  display: inline-block;
  background: linear-gradient(135deg, var(--yellow), var(--orange) 55%, var(--orange-deep));
  color: #fff;
  width: 34px;
  height: 34px;
  line-height: 30px;
  border-radius: 4px;
}

.trust-block .section-title {
  color: var(--blue-deep);
}

.text-right {
  text-align: right;
  width: 100%;
}

.link-arrow {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 0.9rem;
  transition: transform 0.18s ease;
  display: inline-block;
}
.link-arrow:before {
  content: "→";
  display: inline-block;
  margin-right: 3px;
  transition: transform 0.18s ease;
}
.link-arrow:hover {
  transform: translateX(3px);
}
.link-arrow:hover:before {
  transform: translateX(3px);
}

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

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