@charset "UTF-8";
* {
      box-sizing: border-box;
    }

  
    .flow-section {
      margin: 0 auto;
      background-color: #FFF0EB;
    }

    .flowchart {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      padding-top: 10px;
    }

    .flow-box {
      width: 100%;
      line-height: normal;
    border: 2px solid #ff87a2;
    border-radius: 80px;
    background: #dbe6f1;
    padding: 20px 60px;
    position: relative;
    }

    .flow-box.white {
      background: #f8f8f8;
    }

    .flow-box.title-box {
      max-width: 760px;
      background: #fff;
      border-radius: 10px;
      padding: 14px 20px;
      text-align: center;
    }

    .flow-box.compact {
      padding: 20px 24px;
    }

    .flow-box h2,
    .flow-box h3 {
      text-align: center;
      letter-spacing: 0.18em;
      font-weight: 700;
    }

    .flow-box h2 {
      font-size: 2rem;
    }

    .flow-box h3 {
      font-size: 1.65rem;
    }

    .sub {
      font-size: 0.95rem;
      color: #333;
      margin-top: 8px;
      text-align: center;
    }

    .link-line {
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      margin-bottom: 10px;
      font-size: 1.05rem;
      flex-wrap: wrap;
      margin: 0 50px;
      border-radius: 7px;
    }

    .link-line a {
      color: #2e78c7;
      text-decoration: underline;
      word-break: break-all;
    }

    .note {
      margin: 10px 0 0;
      font-size: 0.96rem;
    }

    .note .red,
    .red {
      color: #e53935;
      font-weight: 700;
    }

    .blue-link {
      color: #2e78c7;
      text-decoration: underline;
      font-weight: 700;
    }

    .step-layout {
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 28px;
      align-items: start;
      margin-top: 18px;
    }

    .capture {
      background: #fff;
      border: 1px solid #f4a0b0;
      padding: 14px;
      min-height: 260px;
    }

    .capture img {
      width: 100%;
      display: block;
      border: 1px solid #ddd;
    }

    .capture-placeholder {
      width: 100%;
      min-height: 220px;
      border: 2px dashed #c7c7c7;
      display: grid;
      place-items: center;
      color: #777;
      background: #fafafa;
      font-size: 0.95rem;
      text-align: center;
      padding: 16px;
    }

    .instructions {
      font-size: 1.15rem;
      padding-top: 8px;
    }

    .instructions p {
      margin: 0 0 16px;
    }

    .branch-title {
      width: 100%;
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 40px;
      margin-top: 6px;
      font-size: 1.4rem;
      font-weight: 700;
      text-align: center;
      letter-spacing: 0.08em;
    }

    .branch-title .red {
      font-size: inherit;
    }

    .branch-area {
      width: 100%;
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 40px;
      align-items: start;
    }

    .branch-col {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    .branch-note {
      font-size: 1.25rem;
      text-align: center;
      padding: 20px 10px;
      min-height: 200px;
      display: grid;
      place-items: center;
    }

    .center-wide {
      width: 100%;
    }

    .center-wide .flow-box {
      width: 100%;
    }

    .arrow-down {
      width: 60px;
      height: 56px;
      position: relative;
      flex: 0 0 auto;
    }

    .small-title-red {
      color: #ff2b2b;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-align: center;
      font-size: 1.8rem;
      margin-bottom: 14px;
    }

    .footnote {
      width: 100%;
      font-size: 1.2rem;
      margin-top: 4px;
    }

    @media (max-width: 900px) {
      .step-layout {
        grid-template-columns: 1fr;
      }

      .branch-title,
      .branch-area {
        grid-template-columns: 1fr;
      }

      .instructions {
        font-size: 1rem;
      }

      .flow-box h2 {
        font-size: 1.55rem;
      }

      .flow-box h3,
      .small-title-red {
        font-size: 1.35rem;
      }

      .branch-note,
      .footnote {
        font-size: 1rem;
      }

    }

    .procedure-section {
      margin: 10px auto;
    }

    .section-title {
      margin: 0 0 18px;
      font-size: 2rem;
      font-weight: 700;
      color: #ff8ea1;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .section-title::before {
      content: "";
      width: 4px;
      height: 1.2em;
      background: #ff8ea1;
      border-radius: 2px;
      display: inline-block;
    }

    .procedure-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .procedure-card {
      border-radius: 22px;
      padding: 18px 20px;
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: 20px;
      align-items: center;
    }

    .card-blue {
      background: #d9eaf1;
    }

    .card-beige {
      background: #FFD9D1;
    }

    .card-green {
      background: #d9ead1;
    }

    .card-left {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
    }

    .card-heading {
      display: flex;
      align-items: baseline;
      flex-wrap: wrap;
      gap: 10px;
      line-height: 1.3;
    }

    .card-heading .main {
      font-size: 1.15rem;
      font-weight: 700;
    }

    .card-heading .sub {
      font-size: 0.95rem;
      color: #333;
    }

    .title-green {
      color: #3d8f2e;
    }

    .title-blue {
      color: #006eaa;
    }

    .title-red {
      color: #ff2a2a;
    }

    .detail-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 180px;
      height: 56px;
      padding: 0 24px;
      border-radius: 8px;
      background: #f67f9c;
      color: #fff;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 700;
      box-shadow: 0 1px 0 rgba(0,0,0,0.08);
      transition: opacity 0.2s ease;
    }

    .detail-button:hover {
      opacity: 0.9;
    }

    .card-right {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .description {
      margin: 0;
      font-weight: bold;
      font-size: 1rem;
      line-height: normal;
    }

    .link-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 14px 18px;
      align-items: center;
    }

    .pill-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: #111;
      font-weight: 700;
      font-size: 0.95rem;
      white-space: nowrap;
    }

    .pill-icon {
      width: 46px;
      height: 46px;
      border-radius: 999px;
      background: rgba(255,255,255,0.55);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: #4b4b4b;
      flex: 0 0 auto;
    }

    @media (max-width: 820px) {
      .procedure-card {
        grid-template-columns: 1fr;
      }

      .card-left {
        align-items: flex-start;
      }

      .section-title {
        font-size: 1.55rem;
      }

      .card-heading .main {
        font-size: 1.05rem;
      }
    }

    .dl-container {
    width:100%; 
    max-width:1120px; 
    margin: 0 auto 10px;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }

.dl-container-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 5fr 3fr;
}