/* Web page specific styles */
.sec_web .content_tit h1,
  .sec_web .content_tit h2 {
    color: #000;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
    padding: 20px;
    text-align: center;
  }

  .sec_web .content_tit h1 span,
  .sec_web .content_tit h2 span {
    color: #EF7F42;
    display: inline;
    font-family: inherit;
    font-size: inherit;
    font-weight: bold;
    margin: 0;
    padding: 0;
    position: static;
  }

  .sec_web .content_tit h2 span::before,
  .sec_web .content_tit h2 span::after {
    content: none;
    display: none;
  }

  .sec_web .web_main img {
    display: block;
    margin: 0 auto 50px;
    max-width: 760px;
    width: 76%;
  }

  .sec_web .web_lead {
    font-size: 17px;
    line-height: 2;
  }

  .sec_web .web_lead strong {
    font-weight: bold;
  }

  .sec_web .web_anchor_list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 36px;
  }

  .sec_web .web_anchor_list a {
    border: 1px solid #EF7F42;
    color: #EF7F42;
    display: block;
    font-weight: bold;
    padding: 10px 18px;
    transition: .2s;
  }

  .sec_web .web_anchor_list a:hover {
    background: #EF7F42;
    color: #fff;
  }

  .sec_web .web_grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sec_web .web_card {
    background: #f7f7f7;
    border-top: 4px solid #EF7F42;
    padding: 28px 24px;
  }

  .sec_web .web_card h3 {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .sec_web .web_card p {
    line-height: 1.9;
  }

  .sec_web .web_check_list {
    margin-top: 14px;
  }

  .sec_web .web_check_list li {
    line-height: 1.8;
    margin-bottom: 8px;
    padding-left: 1.5em;
    position: relative;
  }

  .sec_web .web_check_list li::before {
    color: #EF7F42;
    content: "\2713";
    font-weight: bold;
    left: 0;
    position: absolute;
    top: 0;
  }

  .sec_web .web_cta {
    background: #f7f7f7;
    border-left: 6px solid #EF7F42;
    margin: 60px 0;
    padding: 34px 28px;
    text-align: center;
  }

  .sec_web .web_cta h2,
  .sec_web .web_cta h3 {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .sec_web .web_cta p {
    line-height: 1.9;
    margin-bottom: 20px;
  }

  .sec_web .web_cta .link_btn {
    background: #fff;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    width: 340px;
  }

  .sec_web .web_cta .link_btn span {
    white-space: nowrap;
  }

  .sec_web .web_flow_list {
    counter-reset: web-flow;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sec_web .web_flow_list li {
    background: #f7f7f7;
    counter-increment: web-flow;
    line-height: 1.8;
    padding: 24px;
  }

  .sec_web .web_flow_list li::before {
    color: #EF7F42;
    content: "STEP " counter(web-flow, decimal-leading-zero);
    display: block;
    font-family: sans-serif;
    font-weight: bold;
    margin-bottom: 8px;
  }

  .sec_web .web_flow_list strong {
    display: block;
    font-size: 17px;
    margin-bottom: 6px;
  }

  .sec_web .web_case_grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sec_web .web_case_card {
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
  }

  .sec_web .web_case_card img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;
  }

  .sec_web .web_case_body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
  }

  .sec_web .web_case_body h3 {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .sec_web .web_case_body p {
    line-height: 1.9;
    margin-bottom: 20px;
  }

  .sec_web .web_case_body .link_btn {
    margin-top: auto;
  }

  .sec_web a.link_btn {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    font-weight: 700 !important;
    justify-content: center;
    min-height: 60px;
    padding-left: 48px;
    padding-right: 48px;
    position: relative;
    text-align: center;
  }

  .sec_web a.link_btn > span {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: 700 !important;
    line-height: inherit;
  }

  .sec_web a.link_btn::after {
    line-height: 1;
    margin: 0;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .sec_web .web_note {
    background: #f7f7f7;
    line-height: 1.9;
    padding: 26px;
  }

  .sec_web .web_faq details {
    border-bottom: 1px solid #ddd;
  }

  .sec_web .web_faq summary {
    cursor: pointer;
    font-weight: bold;
    line-height: 1.7;
    padding: 20px 46px 20px 44px;
    position: relative;
  }

  .sec_web .web_faq summary::before {
    color: #EF7F42;
    content: "Q";
    font-size: 20px;
    font-weight: bold;
    left: 12px;
    position: absolute;
    top: 17px;
  }

  .sec_web .web_faq details p {
    line-height: 1.9;
    padding: 0 20px 22px 44px;
  }

  @media screen and (max-width: 800px) {
    .sec_web .content_tit h1,
    .sec_web .content_tit h2 {
      font-size: 18px;
      padding: 16px 8px;
    }

    .sec_web .web_main img {
      width: 100%;
    }

    .sec_web .web_lead {
      font-size: 15px;
    }

    .sec_web .web_grid,
    .sec_web .web_flow_list,
    .sec_web .web_case_grid {
      grid-template-columns: 1fr;
    }

    .sec_web .web_cta {
      padding: 28px 18px;
    }

    .sec_web .web_cta h2,
    .sec_web .web_cta h3 {
      font-size: 19px;
    }
  }

.sec_web .web_cms_intro {
  max-width: 900px;
  margin: 0 auto 28px;
}

.sec_web .web_cms_intro p {
  line-height: 1.9;
}

.sec_web .web_cms_list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.sec_web .web_cms_list li {
  background: #f7f7f7;
  border-left: 4px solid #EF7F42;
  padding: 16px 14px;
  font-weight: bold;
  line-height: 1.5;
}

@media screen and (max-width: 800px) {
  .sec_web .web_cms_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 520px) {
  .sec_web .web_cms_list {
    grid-template-columns: 1fr;
  }
}


/* Web実績：自動取得表示 */
.sec_web .web_case_image_link {
  display: block;
}

.sec_web .web_case_body h3 a {
  color: inherit;
  text-decoration: none;
}

.sec_web .web_case_body h3 a:hover {
  color: #EF7F42;
}

.sec_web .web_case_more {
  margin-top: 28px;
  text-align: center;
}

.sec_web .web_case_more .link_btn {
  margin-left: auto;
  margin-right: auto;
  width: 320px;
  max-width: 100%;
}
