:root {
  /* ===== 配色 ===== */
  --color-bg-main: #ffffff;
  --color-bg-1: #ffffea;
  --color-bg-2: #ffffcc;
  --color-bg-3: #f79a8b;
  --color-text: #333333;
  --color-btn-bg: #fcde81;

  /* ===== 文字サイズ・行間 ===== */
  --ff-sans: ", Noto Sans JP", sans-serif;
  --fs-root: 16px;
  /* 既定の1rem */
  --fs-xxs: 0.75rem;
  /* 12px */
  --fs-xs: 0.8125rem;
  /* 13px */
  --fs-sm: 0.875rem;
  /* 14px */
  --fs-md: 1rem;
  /* 16px */
  --fs-lg: 1.125rem;
  /* 18px */
  --fs-xl: 1.25rem;
  /* 20px */
  --fs-2xl: 1.5rem;
  /* 24px */
  --fs-3xl: 2rem;
  /* 32px */
  --fs-4xl: 2.5rem;
  /* 40px */
  --lh-tight: 1.6;
  --lh-base: 2;
  --ls-tight: 0.2px;
  --ls-base: 0.4px;
  --ls-lg: 0.6px;

  /* ===== スペース ===== */
  --space-1: .25rem;
  /* 4px  */
  --space-2: .5rem;
  /* 8px  */
  --space-3: .75rem;
  /* 12px */
  --space-4: 1rem;
  /* 16px */
  --space-6: 1.5rem;
  /* 24px */
  --space-8: 2rem;
  /* 32px */
  --space-12: 3rem;
  /* 48px */
}





/* ========== 共通 ========== */

html {
  font-size: var(--fs-root);
}

body {
  font-family: var(--ff-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: var(--lh-base);
}

section {
  padding: var(--space-6) 0;
}

.width-wrap {
  max-width: 1280px;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  margin: 0;
  vertical-align: top;
}

p {
  letter-spacing: var(--ls-base);
}

a {
  display: block;
  text-decoration: none;
}


.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

h1.hero-img,
h2.s1_head,
h2.s2_head,
h2.s3_head,
h2.s4_head,
h2.f_head {
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}


@media (min-width: 768px) {
  section {
    padding: var(--space-12) 0;
  }
}





/* ========== モバイル ========== */

/* ---- ヘッダー ---- */
h1.hero-img {
  background-image: url("../images/top-hero_mb.png");
  background-position: top, left;
  aspect-ratio: 768 / 804;
  width: 100%;
  margin: 0;
}


/* ---- セクション１：PPIのご協力について ---- */
.sec01 {
  position: relative;
  padding-bottom: 38%;
}

.sec01 .chara-position {
  position: relative;
}

.chara-position::after {
  content: "";
  display: block;
  background-image: url(../images/sec01-1_mb.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 700 / 187;
  width: 85%;
  position: absolute;
  bottom: -30vw;
  left: 7.5%;
}

h2.s1_head {
  background-image: url("../images/sec01-title_mb.png");
  aspect-ratio: 700 / 115;
  width: 85%;
  margin: 10vw auto;
}

.sec01 p {
  width: 85%;
  margin: 0 auto var(--space-6);
}

.sec01 p br {
  display: none;
}

/* ---- セクション２：呼びかけ・PPI概要説明 ---- */
.sec02 {
  background-color: var(--color-bg-1);
}

h2.s2_head {
  background-image: url("../images/sec02-title_mb.png");
  aspect-ratio: 700 / 487;
  width: 85%;
  margin: var(--space-8) auto;
}

.sec02 p {
  width: 85%;
  margin: 0 auto var(--space-6);
}

.sec02 .flow-img_mb {
  display: block;
  width: 85%;
  margin: 0 auto;
  padding: var(--space-6) 0;
}

.sec02 .flow-img_pc {
  display: none;
}


/* ---- セクション３：参加者募集（QRコード ---- */
h2.s3_head {
  background-image: url("../images/sec03-title.png");
  aspect-ratio: 1440 / 245;
  width: 85%;
  margin: var(--space-8) auto;
}

.sec03 p {
  width: 85%;
  margin: 0 auto var(--space-4);
}

.sec03 img {
  display: block;
  width: 40%;
  margin: 0 auto var(--space-6);
  padding: var(--space-6) 0;
}

p.sec03_btn {
  width: 280px;
  font-size: var(--fs-lg);
  text-align: center;
  margin: 0 auto;
  padding-top: var(--space-3);
}

.sec03_btn a {
  color: var(--color-bg-main);
  font-weight: bold;
  letter-spacing: var(--ls-base);
  display: inline-block;
  background: linear-gradient(190deg, #f3bfb9, #e8bdd9);
  animation: Grad 3s ease infinite;

  margin-bottom: var(--space-6);
  padding: 6.71px 44px;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.Gradation_2_text {
  font-size: 30px;
  font-family: Arial;
  font-weight: 600;
  color: #fff;
}

@keyframes Grad {
  0% {
    background-position: 50% 0%
  }

  50% {
    background-position: 50% 100%
  }

  100% {
    background-position: 50% 0%
  }
}


/* ---- セクション４：よくある質問 ---- */
.sec04 {
  background-color: var(--color-bg-2);
}

h2.s4_head {
  background-image: url("../images/sec04-bubble_mb.png");
  aspect-ratio: 768 / 728;
  width: 85%;
  margin: var(--space-8) auto;
}

dl {
  width: 85%;
  margin: 0 auto var(--space-4);
}

dt {
  font-size: var(--fs-lg);
  letter-spacing: var(--ls-lg);
  font-weight: bold;
  padding-left: 40px;
  padding-bottom: var(--space-4);
  position: relative;
}

dt::after {
  content: "";
  display: block;
  background-image: url(../images/sec04-question.png);
  background-position: center;
  background-size: contain;
  aspect-ratio: 100 / 100;
  width: 30px;
  position: absolute;
  top: 0;
  left: 0;
}

dd {
  margin: 0;
  padding-bottom: var(--space-6);
  padding-left: 40px;
  position: relative;
}

dd p {
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-4);
}

dd ul {
  padding-left: var(--space-2);
  list-style-type: none;
}

dd li {
  position: relative;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  padding-left: var(--space-2);
  padding-bottom: var(--space-4);
}

dd li:before {
  content: "";
  position: absolute;
  top: var(--space-2);
  left: -2px;
  width: 0;
  height: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent var(--color-text);
}

dd::after {
  content: "";
  display: block;
  background-image: url(../images/sec04-answer.png);
  background-position: center;
  background-size: contain;
  aspect-ratio: 100 / 100;
  width: 30px;
  position: absolute;
  top: 0;
  left: 0;
}

/* ---- フッター ---- */
footer {
  padding-top: var(--space-6);
}

h2.f_head {
  background-image: url("../images/footer-title.png");
  aspect-ratio: 700 / 148;
  width: 85%;
  margin: var(--space-8) auto;
}

footer ul {
  list-style-type: none;
  padding: 0;
}

footer li {
  width: 85%;
  margin: 0 auto;
  padding: var(--space-3) 0;
  text-align: center;
  color: var(--color-bg-main);
  list-style-type: none;
  border-radius: 100px;
  background-color: var(--color-bg-3);
}

footer img {
  width: 100%;
}






/* ========== PC ========== */

@media (min-width: 768px) {

  /* ---- ヘッダー ---- */
  h1.hero-img {
    background-image: url("../images/top-hero_pc.png");
    aspect-ratio: 1920 / 1164;
  }

  /* ---- セクション１：PPIのご協力について ---- */
  .sec01 {
    padding-bottom: 8%;
  }

  .chara-position::before {
    content: "";
    display: block;
    background-image: url(../images/sec01-1_pc.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    aspect-ratio: 600 / 1292;
    width: 12%;
    position: absolute;
    top: 250px;
    bottom: initial;
    left: 4vw;
  }

  .chara-position::after {
    background-image: url(../images/sec01-2_pc.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    aspect-ratio: 600 / 1592;
    width: 10%;
    position: absolute;
    top: 160px;
    bottom: initial;
    left: initial;
    right: 4vw; 
  }


  h2.s1_head {
    background-image: url("../images/sec01-title_pc.png");
    aspect-ratio: 1440 / 72;
    width: 70%;
    margin: 5vw auto;
  }

  .sec01 p {
    text-align: center;
    width: 70%;
    margin-bottom: var(--space-8);
  }

  .sec01 p br {
    display: block;
  }

  /* ---- セクション２：呼びかけ・PPI概要説明 ---- */

  h2.s2_head {
    background-image: url("../images/sec02-title_pc.png");
    aspect-ratio: 1440 / 543;
    width: 70%;
    margin: var(--space-12) auto;
  }

  .sec02 p {
    width: 70%;
    margin: 0 auto var(--space-6);
  }

  .sec02 .flow-img_mb {
    display: none;
  }

  .sec02 .flow-img_pc {
    display: block;
    width: 70%;
    margin: 0 auto;
    padding: var(--space-12) 0;
  }

  /* ---- セクション３：参加者募集（QRコード ---- */
  h2.s3_head {
    width: 70%;
    margin: 5vw auto;
  }

  .sec03 p {
    width: 50%;
    margin: 0 auto var(--space-4);
  }

  .sec03 img {
    width: 15%;
    margin: 0 auto var(--space-8);
    padding: var(--space-8) 0;
  }

  .sec03 br {
    display: none;
  }

  p.sec03_btn {
    width: 280px;
    font-size: var(--fs-lg);
    text-align: center;
    margin: 0 auto;
    padding-top: var(--space-6);
  }

  .sec03_btn a {
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
    transform: translateZ(0);
    will-change: transform;
  }

  .sec03_btn a:hover {
    transform: scale(0.92);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }

  /* ---- セクション４：よくある質問 ---- */

  h2.s4_head {
    background-image: url("../images/sec04-bubble_pc.png");
    aspect-ratio: 1440 / 542;
    width: 70%;
    margin: var(--space-12) auto;
    padding-bottom: var(--space-12);
  }

  dl {
    width: 70%;
    margin: 0 auto var(--space-4);
  }

  dd {
    padding-bottom: var(--space-8);
  }

  dd li {
    padding-bottom: var(--space-2);
  }

  /* ---- フッター ---- */
  footer {
    padding-top: var(--space-12);
  }

  h2.f_head {
    width: 40%;
    margin: var(--space-8) auto;
  }

  footer li {
    width: 70%;
  }
}