:root{
  --bg: #1a2547;
  --panel: #252f53;
  --panel-dark: #1d2748;
  --muted: #b7c0d8;
  --yellow: #ffd400;
  --line-gray: #d9d9d9;
  --radius-xl: 28px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,.18);
}
.project_heading h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.45;
  font-weight: 900;
  color: #222;
  letter-spacing: 0.02em;
  margin: 54px 0 24px;
}
/*----------------------------------------------------------
プロジェクトMV
----------------------------------------------------------*/
.project_head_wrapper{
  padding: 60px 10px 40px;
}
.project_head{
  margin-top: 10px;
  align-items: center;
  gap: 40px;
}
.project_head_image {
  margin: 24px 0 8px;
}

.project_head_image img {
  width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 16px;
}
.project_head .project_reason_intro_cta {
  text-align: center;
}
.project_ttl{
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
  white-space: normal;
  word-break: break-word;
  }
}
.project_head_subttl{
  flex: 1;
}
.project_head_subttl h3{
  font-size: 2.5rem;
  margin: 40px 0 10px;
  font-weight: 900;
}
.project_message{
  text-align: left;
  margin-top: 10px;
  font-weight: bold;
}
.project_message p{
  font-size: 1.8rem;
  font-weight: bold;
  margin: 6px 0;
}
.project_mv_section_inner{
  color: #fff;
  width: 100%;
  max-width: 1600px;
  margin: 12px auto;
  background: var(--bg);
  padding: 28px;
  box-shadow: var(--shadow);
  font-weight: bold;
}
.project_mv_header{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap: 20px;
  align-items:center;
  margin-bottom: 24px;
}
.rate-box small{
  display:block;
  font-size:14px;
  margin-bottom:10px;
}
.rate{
  font-size: 5rem;
  line-height: .95;
  color: var(--yellow);
  letter-spacing: -0.03em;
  padding-left: 40px;
}
.project_mv_headline h3{
  margin:0 0 10px;
  font-size: 32px;
  line-height: 1.4;
  font-weight: bold;
}
.project_mv_headline p{
  margin:0;
  font-size: 18px;
  line-height: 1.8;
  font-weight: bold;
}
.project_mv_main{
  display:flex;
  flex-direction:column;
  gap:24px;
}
.project_mv_top{
  display:flex;
  gap:18px;
  align-items:stretch;
}
.project_mv_main_card{
  background: var(--panel);
  border-radius: var(--radius-xl);
  padding: 20px 14px;
  min-width: 280px;
}
.project_mv_name{
  display:flex;
  align-items:center;
  gap: 14px;
  margin-bottom: 10px;
}
.project_mv_name::before{
  content:"";
  width: 8px;
  height: 30px;
  background: var(--yellow);
  border-radius: 2px;
  display:block;
}
.project_mv_name h3{
  margin:0;
  font-size: 1.3rem;
  font-weight: bold;
}
.label{
  display:block;
  font-size:14px;
  margin-bottom: 4px;
}
.name-input{
  width:100%;
  height:50px;
  border:none;
  outline:none;
  border-radius: 12px;
  padding: 0 14px;
  font-size:16px;
  color:#fff;
  background:#3a4465;
  margin-bottom: 10px;
}
.amount-display{
  font-size: 2.5rem;
  line-height:1;
  color: var(--yellow);
  text-align:center;
  margin: 8px 0;
  letter-spacing: -0.03em;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  font-size: 1.6rem;
  font-weight: bold;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: transparent !important;
}
/*.slider{
  width:100%;
  -webkit-appearance:none;
  appearance:none;
  height:7px;
  border-radius:999px;
  background:#d8d8d8;
  outline:none;
  margin-bottom: 26px;
}
.slider::-webkit-slider-thumb{
  -webkit-appearance:none;
  appearance:none;
  width:28px;
  height:28px;
  border-radius:50%;
  background:var(--yellow);
  border:4px solid #fff;
  cursor:pointer;
  box-shadow: 0 3px 8px rgba(0,0,0,.25);
}
.slider::-moz-range-thumb{
  width:28px;
  height:28px;
  border:none;
  border-radius:50%;
  background:var(--yellow);
  cursor:pointer;
}*/
.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #d9d9d9;
  outline: none;
  cursor: pointer;
}
/* バー */
.slider::-webkit-slider-runnable-track {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #005bbb 0%,
    #ffd500 100%
  );
}
/* つまみ */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 64px;
  height: 64px;
  background: url("https://ne.web-lab.site/wp-content/uploads/2026/05/45.png")
    no-repeat center center / contain;
  border: none;
  margin-top: -20px;
  transition: transform .2s ease;
}
.slider::-webkit-slider-thumb:hover {
  transform: scale(1.08);
}
/* Firefox */
.slider::-moz-range-track {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #005bbb 0%,
    #ffd500 100%
  );
}
.slider::-moz-range-thumb {
  width: 64px;
  height: 64px;

  background: url("https://ne.web-lab.site/wp-content/uploads/2026/05/45.png")
    no-repeat center center / contain;
  border: none;
}
.quick-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.btn-mini {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 16px;
  font-size: 14px;
  background: #D9D9D9;
  color: #333;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  transition: all 0.2s ease;
}

/* hoverでちょい浮く */
.btn-mini:hover {
  transform: translateY(-2px);
  background: #f0f0f0;
}

/* 押した時 */
.btn-mini:active {
  transform: translateY(0);
  background: #dcdcdc;
}
.distance-box{
  background: var(--panel-dark);
  border:1px solid rgba(255,255,255,.08);
  padding: 10px 18px;
  text-align:center;
  margin: 10px 0 14px;
}
.distance-box small{
  display:block;
  font-size:14px;
  margin-bottom:8px;
}
.distance{
  font-size: 2.5rem;
  line-height:1;
  letter-spacing: -0.03em;
}
.support-btn{
  width:100%;
  height:68px;
  border:none;
  border-radius: 16px;
  background: var(--yellow);
  color:#1f253c;
  font-size:18px;
  cursor:pointer;
  font-weight: bold;
}
.map-card{
  padding:0;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:center;
  background: transparent;
  box-shadow:none;
  min-width:0;
  text-align: center;
}
.map-card h3 {
  position: relative;
  display: inline-block;
  padding: 0.4em 0.8em;
  margin: 0 auto 16px;
  text-align: center;
  z-index: 1;
  color: #222;
  background: #ffd400;
  width: 100%;
}
.map-wrap{
  position:relative;
  width:100%;
  aspect-ratio: 1495 / 1021;
  border-radius: 40px;
  overflow:hidden;
  background:#07101f;
}
.map-image{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.route-overlay{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  pointer-events:none;
}
.vehicle{
  position:absolute;
  top:0;
  left:0;
  width:78px;
  height:78px;
  margin-left:-39px;
  margin-top:-39px;
  display:grid;
  place-items:center;
  font-size:56px;
  line-height:1;
  transform-origin:center center;
  z-index:5;
  pointer-events:none;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.35));
}
.share-section {
  margin-top: 24px;
}

.share-title {
  font-size: 16px;
  margin-bottom: 12px;
  color: #fff;
}
.share-icons-wrap {
  display: flex;
  justify-content: space-between;
}
.share-icons {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-bottom: 10px;
}

.share-icon {
  width: 32px;
  height: 32px;
  border-radius:4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}
/* 下段：支援者バトン実況 */
.project_mv_log_card{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.right-title{
  margin:0;
  font-size:18px;
}
.log-list{
  display:flex;
  gap:16px;
  overflow-x:auto;
  overflow-y:hidden;
  padding-bottom:8px;
  scroll-snap-type:x proximity;
  -webkit-overflow-scrolling: touch;
}
.log-list::-webkit-scrollbar{
  height: 8px;
}
.log-list::-webkit-scrollbar-track{
  background: rgba(255,255,255,.08);
  border-radius: 999px;
}
.log-list::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.3);
  border-radius: 999px;
}
.log-item{
  flex: 0 0 260px;
  min-width: 260px;
  padding: 16px 14px;
  border-left:5px solid var(--blue);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  scroll-snap-align:start;
}
.log-item.user{
  border-left-color: var(--yellow);
}
.log-range{
  font-size:14px;
  margin-bottom:6px;
  color:#e8edf9;
}
.log-name{
  font-size:18px;
  margin-bottom:4px;
}
.log-km{
  font-size:14px;
  color:#1f8cff;
}
.log-item.user .log-km{
  color: var(--yellow);
}
.divider{
  height:1px;
  background: rgba(255,255,255,.12);
  margin: 6px 0 18px;
}
.supporters-title{
  font-size:16px;
  margin-bottom:14px;
}
.avatars{
  display:flex;
  align-items:center;
  gap: 0;
}
.avatar{
  width:44px;
  height:44px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:14px;
  border:2px solid #1f2744;
  margin-left:-6px;
  background:#6c727f;
  color:#fff;
}
.avatar:first-child{
  margin-left:0;
}
.avatar.plus{
  background:#1667d9;
}

/*----------------------------------------------------------
だから、確実に届きます。
----------------------------------------------------------*/
.project_trust_section {
  padding: 40px 10px;
}
.project_trust_inner {
  background: #f2f2f2;
  border-radius: 28px;
  padding: 64px 72px 56px;
  text-align: center;
}
.project_trust_heading {
  margin-bottom: 40px;
}
.project_trust_heading p {
  font-size: 20px;
  font-weight: 800;
}
.project_trust_textbox {
  background: #ffd400;
  padding: 10px;
  line-height: 1.8;
  border-radius: 16px;
}
.project_trust_content {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}
.project_trust_image img {
  display: block;
  width: 100%;
  border-radius: 24px;
}
.project_trust_text {
  color: #222222;
}
.project_trust_text p {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.9;
  font-weight: 700;
  text-align: left;
}
.project_trust_doc {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}
.project_trust_doc_thumb {
  width: 92px;
  flex-shrink: 0;
}
.project_trust_doc_thumb img {
  display: block;
  width: 100%;
  border: 1px solid #cccccc;
  background: #ffffff;
}
.project_trust_doc p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #222222;
}
.project_trust_message {
  margin-top: 28px;
}
.project_trust_message p {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1.55;
  font-weight: 700;
  color: #222222;
}
.project_trust_message p:last-child {
  margin-bottom: 0;
}
.flow-section {
  background: #fff;
  padding: 60px 20px;
  border-radius: 24px;
  text-align: center;
}

.flow-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.flow-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.8;
}

.flow-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.flow-item {
  flex: 1;
  min-width: 160px;
}
.flow-item img {
  width: 160px;
  height: 160px;
}
.step-num {
  font-size: 28px;
  font-weight: bold;
  color: #1f5fbf;
  margin-bottom: 10px;
}
.flow-item p {
  font-size: 14px;
  font-weight: bold;
}

.flow-item small {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 6px;
}

.flow-highlight {
  margin-top: 40px;
  background: #ffd400;
  padding: 20px;
  border-radius: 16px;
  font-weight: bold;
  font-size: 18px;
}

.flow-highlight strong {
  font-size: 32px;
  color: #1f5fbf;
}
/*----------------------------------------------------------
ACHIEVEMENT
----------------------------------------------------------*/
.project_reason_section {
  padding: 40px 0 80px;
}
/* ===== 上部 ACHIEVEMENT ===== */
.project_reason_intro {
  text-align: center;
  padding-top: 10px;
}
.project_reason_intro_en {
  margin: 0;
  font-size: clamp(64px, 9vw, 118px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: #ffd400;
  white-space: normal;
}
.project_reason_intro_text {
  max-width: 1400px;
  margin: 34px auto 0;
}
.project_reason_intro_text h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 800;
  color: #222222;
}
.project_reason_intro_text_shien {
  font-size: 24px;
}
.project_reason_intro_text h4 {
  margin: 44px 0 24px;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 800;
  color: #222222;
}
.project_reason_intro_text p {
  margin: 0;
  font-size: 18px;
  line-height: 2.1;
  font-weight: 700;
  color: #222222;
}
.project_reason_intro_cta {
  margin-top: 42px;
}
.project_reason_intro_cta p {
  margin-bottom: 10px;
  font-weight: bold;
}
.project_head_wrapper .project_reason_intro_cta .project_reason_dark_btn {
  background: #ffd400;
  color: #222;
  font-weight: 900;
}
.project_voice_gallery {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}
.reason_voice_item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: 0.3s;
  padding: 10px;
  text-align: left;
  position: relative;
}
.reason_voice_item::after {
  content: ">";
  position: absolute;
  right: 16px;
  bottom: 16px;

  font-size: 18px;
  font-weight: 300;
  color: #005bbb;

  transition: 0.3s;
}
.reason_voice_item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.reason_voice_item_memo {
  font-size: 14px !important;
  font-weight: normal;
}
.jisseki_wrap {
  text-align: center;
  margin-bottom: 30px;
}
.jisseki_wrap .jisseki {
  font-size: 1.5rem;
  display: block;
  width: fit-content;
  margin: 0 auto 8px;
  background: #ffd400;
  padding: 4px 10px;
  border-radius: 4px;
}
/* ===== 共通 黒ボタン ===== */
.project_reason_dark_btn {
  width: min(100%, 520px);
  min-height: 72px;
  background: #222222;
  color: #ffffff;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 28px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  box-sizing: border-box;
  transition: opacity .2s ease;
}
.project_reason_dark_btn:hover {
  opacity: 0.88;
}
.project_reason_dark_btn .arrow {
  font-size: 24px;
  line-height: 1;
  font-weight: 300;
}
/* ===== 黄色ブロック ===== */
.project_reason_yellow {
  background: #ffd400;
  margin-top: -34px;
  padding: 120px 0 0;
}
.project_reason_yellow_inner {
  position: relative;
}
.project_reason_en {
  margin: 0;
  text-align: center;
  font-size: clamp(70px, 10vw, 130px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: #171c2c;
}
.project_reason_gallery {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: center;
}
.reason_gallery_item {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1.38 / 1;
}
.reason_gallery_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ===== テキスト本体 ===== */
.project_reason_body {
  margin: 60px auto 0;
  text-align: center;
  color: #171c2c;
}
.project_reason_body p {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 2.15;
  font-weight: 700;
}
.project_reason_body h4 {
  margin: 54px 0 24px;
  font-size: clamp(34px, 3vw, 58px);
  line-height: 1.45;
  font-weight: 900;
}
.project_reason_body h5 {
  margin: 54px 0 0;
  font-size: 3rem;
  line-height: 1.32;
  font-weight: 900;
  color: #171c2c;
}
.ukraine-emergency-section {
  background: #f2f2f2;
}

.ukraine-emergency-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 520px;
}

.ukraine-emergency-text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 7vw;
  color: #222;
  overflow: hidden;
}

.ukraine-emergency-text::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://ne.web-lab.site/wp-content/uploads/2026/05/33.png") no-repeat center center / 62%;
  opacity: 0.45;
  z-index: 0;
}

.ukraine-emergency-text h2,
.ukraine-emergency-body {
  position: relative;
  z-index: 1;
}

.ukraine-emergency-text h2 {
  margin: 0 0 44px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.45;
  font-weight: 900;
}

.ukraine-emergency-body p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 700;
}

.ukraine-emergency-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ===== 支援者カード ===== */
.project_reason_supporters {
  margin-top: 72px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.project_reason_supporters h3 {
  margin: 0 0 26px;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 900;
  color: #171c2c;
}
.project_reason_supporters_box {
  max-width: 1220px;
  margin: 0 auto;
  margin-top: -50px;
  background: #fff;
  border-radius: 36px 36px 0 0;
  padding: 56px 54px 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.project_reason_supporter_card {
  text-align: center;
  color: #171c2c;
}
.supporter_thumb {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 18px;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  aspect-ratio: 1 / 1;
}
.supporter_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.supporter_logo {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-sizing: border-box;
}
.supporter_logo img {
  object-fit: contain;
}
.supporter_name {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.6;
  font-weight: 800;
}
.supporter_comment {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 700;
}
/*-------------------------------
           PROCESS_SECTION
-------------------------------*/
.process_section {
    padding-top: 5rem;
    padding-bottom: 2rem; 
}
.process_sectio_inner {
  max-width: 1220px;
  margin: 0 auto;
  text-align: center;
}
.process_sectio_inner h3 {
  font-size: 3rem;
  font-weight: 700;
}
.process_section_inner {
    max-width: 1080px;
}
.process_lead {
    font-size: 16px;
    margin: 20px auto;
    max-width: 880px;
}
/* ===== 下部 CTA ===== */
.project_reason_cta_area {
  text-align: center;
  padding-top: 58px;
}
.project_reason_cta_area h3 {
  margin: 0;
  font-size: clamp(36px, 3.3vw, 64px);
  line-height: 1.5;
  font-weight: 900;
  color: #171c2c;
}
.reason_cta_lead {
  margin: 32px 0 0;
  font-size: 17px;
  line-height: 2;
  font-weight: 700;
  color: #171c2c;
}
.reason_cta_distance {
  margin: 28px 0 0;
  font-size: clamp(24px, 2.1vw, 42px);
  line-height: 1.8;
  font-weight: 800;
  color: #171c2c;
}
.reason_cta_distance span {
  font-size: 1.18em;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 8px;
  text-decoration-color: #ffd400;
  text-underline-offset: 4px;
}
.reason_cta_sub {
  margin: 30px 0 0;
  font-size: 17px;
  line-height: 2;
  font-weight: 700;
  color: #171c2c;
}
.project_reason_amounts {
  max-width: 1220px;
  margin: 46px auto 0;
  display: grid;
  gap: 20px;
}
.reason_amount_btn {
  min-height: 86px;
  background: #ffd400;
  color: #171c2c;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 28px;
  text-decoration: none;
  box-sizing: border-box;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.4;
  font-weight: 900;
  box-shadow: 0 2px 0 rgba(0,0,0,.06);
  transition: opacity .2s ease;
}
.reason_amount_btn:hover {
  opacity: 0.9;
}
.reason_amount_btn .arrow {
  font-size: 28px;
  line-height: 1;
  font-weight: 300;
  flex-shrink: 0;
}
.project_reason_bottom_ctas {
  max-width: 1220px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.project_reason_dark_btn.half {
  width: 100%;
}
/* ===============================
   法人向けパートナーセクション
=============================== */
.project_partner_section {
  background: #005bbb;
  padding: 80px 20px;
}
.project_partner_inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.project_partner_left {
  color: #ffffff;
}
.project_partner_left h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.45;
  font-weight: bold;
}
.project_partner_left p {
  margin: 32px 0 0;
  font-size: 16px;
  line-height: 2.1;
  font-weight: 500;
}
.project_partner_actions {
  margin-top: 34px;
}
.project_partner_main_btn {
  width: min(100%, 520px);
  min-height: 72px;
  background: #ffd400;
  color: #1f1f1f;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 28px;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  box-sizing: border-box;
  transition: opacity .2s ease;
}
.project_partner_main_btn:hover {
  opacity: 0.88;
}
.project_partner_main_btn .arrow {
  font-size: 28px;
  line-height: 1;
}
.project_partner_download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.project_partner_right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.project_partner_row {
  display: flex;
  justify-content: center;
  gap: 22px;
  width: 100%;
}
.project_partner_row_top {
  max-width: 420px;
}
.project_partner_row_bottom {
  max-width: 660px;
}
.project_partner_circle {
  width: 180px;
  height: 180px;
  background: #f4f4f4;
  border-radius: 50%;
  color: #005bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 800;
  padding: 18px;
  flex-shrink: 0;
}
/* ===============================
   危機訴求セクション
=============================== */
.project_stop_section {
  position: relative;
  background: url("https://ne.web-lab.site/wp-content/uploads/2026/04/12.jpg") no-repeat center center;
  background-size: cover;
}
.project_stop_inner {
  margin: 0 auto;
  text-align: center;
  padding: 110px 20px;
}
.project_stop_inner h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.45;
  font-weight: 800;
  color: #222;
}
.project_stop_distance {
  margin: 40px 0 8px;
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  background: #222;
  padding: 20px;
}
.project_stop_distance span {
  color: #ffd400;
  font-size: 2.2em;
  line-height: 1;
}
.project_stop_inner h3 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 1.5;
  font-weight: 800;
  color: #222;
}
.project_stop_text p {
  margin: 0 0 50px;
  font-size: 24px;
  line-height: 2;
  font-weight: 700;
  color: #222222;
}
.project_stop_btn_text p {
  font-size: 20px;
  font-weight: bold;
}
.project_stop_btn {
  width: min(100%, 520px);
  min-height: 72px;
  background: #ffd400;
  color: #1f1f1f;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 28px;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  box-sizing: border-box;
  transition: opacity .2s ease;
}
.project_stop_btn:hover {
  opacity: 0.88;
}
.project_stop_btn .arrow {
  font-size: 28px;
  line-height: 1;
}
/* ===============================
   シェアセクション
=============================== */
.project_share_section {
  background: #fefefe;
  padding: 40px 20px;
}

.project_share_inner {
  margin: 0 auto;
}

.project_share_heading h2 {
  margin: 0;
  font-size: clamp(54px, 7vw, 110px);
  line-height: 1;
  font-weight: 900;
}

.project_share_heading .c_blue {
  color: #005bbb;
}

.project_share_heading .c_yellow {
  color: #ffd400;
}

.project_share_lead {
  margin-top: 20px;
  font-size: clamp(24px, 2vw, 42px);
  font-weight: 800;
  color: #222;
}

.project_share_content {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1.5fr 0.6fr;
  gap: 24px;
  align-items: stretch;
}

.project_share_image img {
  width: 100%;
  display: block;
}

.project_share_box {
  background: #fffaf0;
  border-radius: 24px;
  padding: 20px 20px;
}

.project_share_box h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #005bbb;
  font-weight: 900;
}

.project_share_box p {
  font-size: 16px;
  line-height: 2;
  font-weight: 700;
  color: #222;
}

.project_share_buttons {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project_share_btn {
  min-height: 74px;
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  transition: .2s;
}

.project_share_btn:hover {
  transform: translateY(-2px);
}

.project_share_btn img {
  width: 34px;
  height: 34px;
}

.project_share_btn.x {
  background: #231815;
  color: #fff;
}

.project_share_btn.line {
  background: #06C755;
  color: #fff;
}

.project_share_btn.facebook {
  background: #0866FF;
  color: #fff;
}

.project_share_btn.instagram {
  background: #fff;
  color: #333;
  border: solid 1px #888;
}

.project_share_box small {
  display: block;
  margin-top: 18px;
  color: #666;
  font-size: 13px;
}

.project_share_bottom {
  margin-top: 36px;
  background: #ffd400;
  border-radius: 24px;
  padding: 28px 40px;

  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.project_share_bottom_item p {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.project_share_bottom_item strong {
  font-size: clamp(48px, 5vw, 90px);
  line-height: 1;
  color: #005bbb;
  font-weight: bold;
}

.project_share_bottom_item span {
  display: block;
  margin-top: 6px;
  font-size: 20px;
  font-weight: bold;
}
/* ===============================
   下部CTA
=============================== */
.project_bottom_cta_section {
  background: #fff;
}
.project_bottom_cta_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.project_bottom_cta {
  min-height: 230px;
  padding: 100px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: opacity .2s ease;
}
.project_bottom_cta:hover {
  opacity: 0.92;
}
.project_bottom_cta_contact {
  background: #005bbb;
  color: #fff;
}
.project_bottom_cta_donation {
  background: #3a3a3a;
  color: #fff;
}
.project_bottom_cta_text h2 {
  margin: 0;
  font-size: clamp(42px, 4vw, 72px);
  line-height: 1;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
}
.project_bottom_cta_text h2 span {
  color: #ffd400;
}
.project_bottom_cta_text p {
  margin: 18px 0 0;
  font-size: 24px;
  line-height: 1.6;
  font-weight: 700;
}
.project_bottom_cta_arrow {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  color: #222222;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  line-height: 1;
  flex-shrink: 0;
}
/* ===============================
   レスポンシブ
=============================== */
@media (max-width: 1200px){
  .project_head{
    display: block;
  }
  .project_reason_gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .project_reason_supporters_box {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 960px){
  .project_head{
    display: block;
  }
  .project_ttl, .project_reason_intro_en{
    font-size: 48px;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    min-width: 0;
  }
  .project_head_subttl{
    min-width: 0;
    margin-top: 16px;
  }
  .project_mv_top{
    display: block;
  }
  .amount-display {
    font-size: 1.5rem;
  }
  .project_mv_header{
    grid-template-columns: 1fr;
    gap:18px;
  }
  .rate{
    font-size:72px;
  }
  .project_mv_headline h3{
    font-size:24px;
  }
  .log-item{
    flex: 0 0 220px;
    min-width: 220px;
  }
/*TRUST---------------------*/
  .project_trust_inner {
    padding: 40px 10px 36px;
  }
  .project_trust_content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .project_trust_heading {
    margin-bottom: 28px;
  }
  .project_trust_text p,
  .project_trust_doc p {
    font-size: 16px;
  }
  .project_trust_message p {
    font-size: 24px;
  }
/*REASON---------------------*/
  .project_reason_section {
    padding: 24px 0 56px;
  }
  .project_reason_yellow_inner {
    padding-left: 10px;
    padding-right: 10px;
  }
  .project_reason_intro_text {
    margin-top: 24px;
  }
  .project_reason_intro_text h4 {
    margin-top: 28px;
  }
  .project_reason_intro_text p,
  .project_reason_body p,
  .reason_cta_lead,
  .reason_cta_sub,
  .supporter_comment {
    font-size: 14px;
    line-height: 1.95;
  }
  .project_reason_intro_text .jisseki {
    font-size: 20px;
  }
  .project_reason_dark_btn {
    min-height: 60px;
    font-size: 16px;
    padding: 16px 18px;
    border-radius: 10px;
  }
  .project_reason_yellow {
    margin-top: 24px;
    padding-top: 44px;
  }
  .project_reason_gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 28px;
  }
  .project_reason_body {
    margin-top: 34px;
  }
  .project_reason_body h3,
  .project_reason_body h4,
  .project_reason_supporters h3,
  .project_reason_cta_area h3 {
    line-height: 1.45;
  }
  .project_reason_body h5 {
    line-height: 1.35;
  }
  .project_reason_body .syutten_text {
    margin-bottom: 2px;
  }
  .project_reason_body .syutten {
    font-size: 12px;
    font-weight: normal;
  }
  .project_reason_supporters {
    margin-top: 44px;
  }
  .project_reason_supporters h3 {
    margin: 0 0 16px;
  }
  .project_reason_supporters_box {
    padding: 28px 20px 28px;
    border-radius: 24px 24px 0 0;
    gap: 26px;
    margin-top: -32px;
  }
  .supporter_name {
    font-size: 16px;
  }
  .project_reason_cta_area {
    padding-top: 36px;
  }
  .reason_cta_distance {
    line-height: 1.6;
  }
  .reason_cta_distance span {
    text-decoration-thickness: 5px;
  }
  .project_reason_amounts {
    margin-top: 30px;
    gap: 14px;
  }
  .reason_amount_btn {
    min-height: 68px;
    font-size: 18px;
    padding: 16px 18px;
    border-radius: 12px;
  }
  .project_reason_bottom_ctas {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }
/*パートナー---------------------*/
  .project_partner_inner {
    grid-template-columns: 1fr;
  }
  .project_partner_right {
    grid-template-columns: repeat(2, 1fr);
  }
  .project_partner_circle {
    width: 140px;
    height: 140px;
    font-size: 16px;
  }
  .project_bottom_cta_grid {
    grid-template-columns: 1fr;
  }
  .project_bottom_cta {
    min-height: 180px;
    padding: 36px 24px;
  }
  .project_bottom_cta_text p {
    font-size: 18px;
  }
/*  ストップ*/
  .project_stop_distance {
    font-size: 24px;
  }
  .project_stop_btn_text p {
    font-size: 18px;
  }
/*  シェア*/
  .project_share_section {
    padding: 40px 0;
  }
  .project_share_heading h2 {
    font-size: 40px;
  }
  .project_share_box h3 {
    font-size: 20px;
  }
/*  シェア*/
  .project_share_content {
    grid-template-columns: 1fr;
  }
  .project_share_box {
    padding: 28px 10px;
  }
  .project_share_btn {
    min-height: 62px;
    font-size: 16px;
  }
  .project_share_bottom {
    padding: 24px 20px;
  }
}
@media (max-width: 768px) {
  .project_head_wrapper {
    padding-bottom: 20px;
    padding-top: 92px;
  }
  .project_message{
    text-align: left;
  }
  .project_message p {
    font-size: 20px;
  }
  .project_mv_headline p {
    font-weight: normal;
  }
  .project_heading h2 {
    font-size: 24px;
    margin-top: 24px;
  }
  .project_head_subttl h3 {
    font-size: 24px;
  }
  .map-card h3 {
    text-align: left;
  }
  .project_trust_inner {
    text-align: left;
  }
/*  .process_sectio_inner {
    text-align: left;
  }
  .process_sectio_inner h3 {
    font-size: 24px;
  }*/
  .project_reason_intro {
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
  }
  .project_reason_intro_text h3 {
    font-size: 24px;
  }
  .project_voice_gallery {
    display: block;
  }
  .reason_voice_item {
    margin-bottom: 32px;
  }
  .project_reason_body {
    text-align: left;
  }
  .project_reason_body h4 {
    font-size: 20px;
  }
  .project_reason_body h5 {
    font-size: 20px;
  }
  .project_reason_gallery {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .flow-section {
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;
  }
  .reason_gallery_item {
    flex: 0 0 80%;
    scroll-snap-align: start;
  }
  .reason_gallery_item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
  }
  .project_reason_gallery::-webkit-scrollbar {
    display: none;
  }
  .project_reason_supporters h3 {
    font-size: 24px;
  }
  /*パートナー*/
  .project_partner_section {
    padding: 56px 16px;
  }
  .project_partner_left h2 {
    font-size: 24px;
  }
  .project_partner_left p {
    font-size: 14px;
    line-height: 1.9;
  }
  .project_partner_main_btn,
  .project_stop_btn {
    min-height: 62px;
    font-size: 18px;
    padding: 16px 20px;
  }
  .project_partner_right {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .project_partner_row,
  .project_partner_row_top,
  .project_partner_row_bottom {
    max-width: none;
    width: 100%;
    flex-wrap: wrap;
    gap: 14px;
  }
  .project_partner_circle {
    width: 132px;
    height: 132px;
    font-size: 15px;
    line-height: 1.45;
    padding: 12px;
  }
/*  下部CV*/
  .project_stop_inner {
    text-align: left;
  }
  .project_stop_inner h2 {
    font-size: 24px;
  }
  .project_reason_cta_area {
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;
  }
  .project_stop_inner {
    padding: 60px 10px;
  }
  .project_stop_text p {
    font-size: 15px;
    line-height: 1.9;
  }
  .project_bottom_cta_text h2 {
    font-size: 46px;
  }
  .project_bottom_cta_arrow {
    width: 48px;
    height: 48px;
    font-size: 28px;
  }
  .project_mv_section_inner{
    padding: 20px 10px;
  }
  .flow-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 26px 10px;
    align-items: start;
  }

  .flow-item {
    min-width: 0;
    grid-column: span 2;
  }
  .flow-item img {
    width: 100%;
    height: auto;
  }

  .flow-item:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .flow-item:nth-child(5) {
    grid-column: 4 / span 2;
  }
  .step-num {
    font-size: 28px;
    margin-bottom: 6px;
  }

  .flow-item p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }

  .flow-item small {
    font-size: 10px;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .ukraine-emergency-inner {
    grid-template-columns: 1fr;
  }

  .ukraine-emergency-text {
    padding: 48px 20px;
  }

  .ukraine-emergency-text::before {
    background-size: 90%;
  }

  .ukraine-emergency-image {
    min-height: 280px;
  }
}

