@layer custom {
  .br-sp {
    display: none;
    @media (max-width: 767px) {
      display: block;
    }
  }

  .page-section {
    width: 100%;
    padding: 0;
    gap: 0;
  }

  .hero-section {
    position: relative;
    width: 100%;
    min-height: 512px;
    overflow: hidden;
    @media (max-width: 767px) {
      height: 512px;
    }
  }

  .hero-background {
    position: relative;
    width: 100%;
    height: 100%;
    background: url("../image/inuki_fv_pc.jpg") no-repeat center center / cover;

    @media (max-width: 767px) {
      background: url("../image/inuki_fv_sp.jpg") no-repeat center center / cover;
    }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding: 0 var(--content-spacing);
    color: #fff;
    padding-top: 56px;
    padding-bottom: 68px;

    @media (max-width: 767px) {
      justify-content: flex-start;
      padding-top: 31px;
      padding-bottom: 22px;
    }
  }

  .hero-header {
    margin-bottom: 20px;
    @media (max-width: 767px) {
      margin-bottom: 10px;
    }
  }

  .header-box {
    display: inline-block;
    border: 1px solid #fff;
    padding: 8px 12px;
    border-radius: 4px;
  }

  .header-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    color: #fff;

    @media (max-width: 767px) {
      font-size: 16px;
    }

    /* @media (max-width: 1023px) {
      font-size: 20px;
    } */
  }

  .hero-main-text {
    margin-bottom: 40px;
    @media (max-width: 767px) {
      margin-bottom: 20px;
    }
  }

  .main-title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 43px;
    line-height: 1.36;
    color: #fff;
    @media (max-width: 767px) {
      font-size: 25px;
    }
    @media (max-width: 500px) {
      font-size: 22px;
    }

    .br-tab {
      display: none;
      @media (min-width: 768px) and (max-width: 1023px) {
        display: block;
      }
      @media (max-width: 767px) {
        display: none;
      }
      @media (max-width: 500px) {
        display: block;
      }
    }
  }

  .hero-benefits {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-bottom: 60px;

    @media (max-width: 767px) {
      margin-bottom: 0;
      width: 100%;
      gap: 8px;
    }
  }

  .benefit-item {
    display: flex;
    align-items: center;
  }

  .benefit-bracket {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #fff;
  }

  .benefit-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    color: #fff;
    position: relative;
    padding-inline: 15px;

    @media (min-width: 768px) and (max-width: 1023px) {
      font-size: 20px;
    }

    @media (max-width: 767px) {
      font-size: 14px;
      padding-inline: 10px;
    }
    /* 
    @media (max-width: 500px) {
      font-size: 12px;
    } */
  }

  .benefit-text::before,
  .benefit-text::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: calc(1em * 2);
    content: "";
    border-top: solid 2px #fff;
    border-bottom: solid 2px #fff;

    @media (max-width: 767px) {
      width: 5px;
      border-top: solid 1px #fff;
      border-bottom: solid 1px #fff;
    }
  }

  .benefit-text::before {
    border-left: solid 2px #fff;
    left: 0;

    @media (max-width: 767px) {
      border-left: solid 1px #fff;
    }
  }

  .benefit-text::after {
    border-right: solid 2px #fff;
    right: 0;

    @media (max-width: 767px) {
      border-right: solid 1px #fff;
    }
  }

  .hero-cta {
    position: relative;

    @media (max-width: 1023px) {
      width: 80%;
      max-width: 550px;
    }
    @media (max-width: 767px) {
      margin-top: auto;
      width: 100%;
    }
  }

  .hero-cta .cta-button {
    @media (min-width: 768px) and (max-width: 1023px) {
      padding-left: 40px;
    }
  }

  .secret-badge {
    position: absolute;
    top: -15px;
    left: 50px;
    width: 95px;
    height: 95px;
    background: #fee422;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4.6px 4.6px rgba(0, 0, 0, 0.25);

    @media (max-width: 767px) {
      width: 60px;
      height: 60px;
      top: 6px;
      left: 0;
    }
  }

  .secret-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 29px;
    line-height: 1.2;
    color: #431e22;
    text-align: center;

    @media (max-width: 767px) {
      font-size: 36px;
    }
  }

  .cta-button .cta-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 0;

    @media (max-width: 767px) {
      margin-left: 0;
      gap: 8px;
    }
  }

  .cta-icon {
    width: 36px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;

    @media (max-width: 767px) {
      width: 53px;
      height: 55px;
    }
  }

  .cta-icon i {
    font-size: 26px;
    color: #fff;

    @media (max-width: 767px) {
      font-size: 39px;
    }
  }

  .cta-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .cta-subtitle {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: #fff;
    text-align: center;

    @media (max-width: 767px) {
      font-size: 24px;
    }
  }

  .cta-button .cta-title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    color: #fff;

    @media (max-width: 767px) {
      font-size: 20px;
      width: 100%;
    }
  }

  /* 実績セクション */
  .achievements-section {
    background: #fff;
    padding: 60px var(--content-spacing);
    width: 100%;
    @media (max-width: 767px) {
      padding-block: 30px;
    }
  }

  .achievements-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, 240px));
    justify-items: center;
    align-items: center;
    gap: 23px;
    justify-content: center;

    @media (max-width: 767px) {
      grid-template-columns: repeat(2, minmax(150px, 240px));
      gap: 20px;
      gap: 16px;
    }
  }

  .achievement-item {
    position: relative;
    max-width: 240px;
    min-width: 150px;
    height: auto;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .achievement-item:last-child {
    @media (max-width: 767px) {
      grid-column: span 2;
    }
  }

  /* 3つの強みセクション */
  .advantages-section {
    background: #f5f5f5;
    padding: 100px var(--content-spacing);
    width: 100%;

    @media (max-width: 767px) {
      padding-block: 30px;
    }
  }

  .advantages-header {
    text-align: center;
    margin-bottom: 30px;
    @media (max-width: 767px) {
      margin-bottom: 30px;
    }
  }

  .advantages-title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 46px;
    line-height: 1.2;
    color: #000;
    margin: 0;

    @media (min-width: 768px) and (max-width: 1023px) {
      font-size: 32px;
    }

    @media (max-width: 767px) {
      font-size: 23px;
    }
  }

  .advantages-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;

    @media (max-width: 767px) {
      gap: 30px;
      max-width: 520px;
      margin: 0 auto;
    }
  }

  .advantage-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: unset;
    border-radius: unset;
    overflow: hidden;
    box-shadow: unset;

    @media (min-width: 768px) and (max-width: 1023px) {
      flex-direction: column;
      gap: 16px;
    }
    @media (max-width: 767px) {
      flex-direction: column;
      gap: 11px;
    }
  }

  .advantage-item.reverse {
    flex-direction: row-reverse;

    @media (max-width: 1023px) {
      flex-direction: column;
    }
  }

  .advantage-image {
    flex: 0 0 404px;
    height: 453px;
    overflow: hidden;

    @media (min-width: 768px) and (max-width: 1023px) {
      flex: none;
      width: 100%;
      height: 240px;
    }
    @media (max-width: 767px) {
      flex: none;
      width: 100%;
      height: 160px;
    }
    @media (max-width: 600px) {
      height: 100px;
    }
  }

  .advantage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;

    @media (max-width: 767px) {
      border-radius: 10px;
    }
  }

  .advantage-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 22px;

    @media (max-width: 767px) {
      padding: 0 0 15px;
      gap: 10px;
    }
  }

  .advantage-header {
    display: flex;
    align-items: center;
    gap: 16px;

    @media (max-width: 767px) {
      gap: 11px;
    }
  }

  .advantage-number {
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    font-size: 96px;
    line-height: 1.2;
    color: #e2ddcf;
    margin: 0;

    @media (max-width: 767px) {
      font-size: 62px;
    }
  }

  .advantage-title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
    color: #e32828;
    margin: 0;

    @media (max-width: 767px) {
      font-size: 21px;
      line-height: 1.43;
    }
  }

  .advantage-description {
    display: flex;
    flex-direction: column;
    gap: 8px;

    @media (max-width: 767px) {
      gap: 4px;
    }
  }

  .advantage-subtitle {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.89;
    color: #000;
    margin: 0;

    @media (max-width: 767px) {
      font-size: 16px;
      line-height: 1.5;
    }
  }

  .advantage-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.75;
    color: #000;
    margin: 0;

    @media (max-width: 767px) {
      font-size: 14px;
      line-height: 1.64;
    }
  }

  .advantage-features {
    background: #fff;
    border-radius: 6px;
    padding: 10px 20px;
    box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.1);

    @media (max-width: 767px) {
      padding: 15px;
      gap: 15px;
    }
  }

  .feature-item {
    display: flex;
    align-items: start;
    gap: 8px;
    margin-bottom: 8px;

    @media (max-width: 767px) {
      gap: 12px;
    }
  }

  .feature-item:last-child {
    margin-bottom: 0;
  }

  .feature-icon {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #e32828;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;

    @media (max-width: 767px) {
      width: 20px;
      height: 20px;
      font-size: 20px;
    }
  }

  .feature-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.875;
    color: #000;

    @media (max-width: 767px) {
      font-size: 15px;
      line-height: 1.6;
    }
  }

  .advantages-cta {
    display: flex;
    justify-content: center;
    margin-top: 60px;

    @media (max-width: 767px) {
      margin-top: 0;
    }
  }

  /* 店舗事例セクション */
  .examples-section {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%), #730707;
    padding: 100px var(--content-spacing);
    width: 100%;

    @media (max-width: 767px) {
      padding-block: 30px;
    }
  }

  .examples-header {
    text-align: center;
    margin-bottom: 60px;

    @media (max-width: 767px) {
      margin-bottom: 30px;
    }
  }

  .examples-title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 46px;
    line-height: 1.2;
    color: #fff;
    margin: 0;
    @media (min-width: 768px) and (max-width: 1023px) {
      font-size: 32px;
    }
    @media (max-width: 767px) {
      font-size: 23px;
      line-height: 1.2;
    }
  }

  .examples-container {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    gap: 40px;

    @media (min-width: 768px) and (max-width: 1023px) {
      flex-direction: column;
      gap: 30px;
    }
    @media (max-width: 767px) {
      flex-direction: column;
      gap: 20px;
    }
  }

  .example-item {
    flex: 1;
    background: #f9f3ec;
    border-radius: 10px;
    padding: 0 0 30px;
    display: flex;
    flex-direction: column;
  }

  .example-title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: #fff;
    background: #e32828;
    padding: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;

    @media (max-width: 767px) {
      font-size: 16px;
      padding: 10px;
    }
  }

  .example-image {
    width: 100%;
    height: 286px;
    height: auto;
    overflow: hidden;
    margin-bottom: 20px;

    @media (max-width: 767px) {
      height: 200px;
      height: auto;
      margin-bottom: 10px;
    }

    @media (max-width: 600px) {
      height: 143px;
      height: auto;
    }
  }

  .example-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .example-details {
    display: flex;
    gap: 7px;
    padding: 0 20px;
    margin-bottom: 20px;

    @media (max-width: 767px) {
      gap: 10px;
      padding: 0 10px;
      margin-bottom: 10px;
    }
  }

  .detail-row {
    flex: 1;
    display: flex;
  }

  .detail-label {
    background: #eeeeee;
    border: 1px solid #bdbdbd;
    padding: 8px 16px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.75;
    color: #431e22;
    text-align: center;
    display: grid;
    place-items: center;

    @media (max-width: 767px) {
      font-size: 13px;
      padding: 12px;
    }
  }

  .detail-value {
    background: #fff;
    border: 1px solid #bdbdbd;
    border-left: none;
    padding: 8px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.75;
    color: #000;
    text-align: center;
    flex-grow: 1;
    display: grid;
    place-items: center;

    @media (max-width: 767px) {
      font-size: 13px;
      padding: 12px;
    }
  }

  .example-comparison {
    padding: 0 20px;
    margin-bottom: 20px;

    @media (max-width: 767px) {
      padding: 0 10px;
      margin-bottom: 10px;
    }
  }

  .comparison-row {
    display: flex;
    border: 1px solid #bdbdbd;
  }

  .comparison-row:not(:last-child) {
    border-bottom: none;
  }

  .comparison-label {
    flex: 1;
    background: #eeeeee;
    border-right: 1px solid #bdbdbd;
    padding: 8px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.75;
    color: #431e22;
    text-align: center;
    display: grid;
    place-items: center;

    @media (max-width: 767px) {
      font-size: 13px;
      padding: 12px;
    }
  }

  .comparison-label:last-child {
    border-right: none;
  }

  .comparison-values {
    display: flex;
    border: 1px solid #bdbdbd;
    border-top: none;
  }

  .comparison-value {
    flex: 1;
    background: #fff;
    border-right: 1px solid #bdbdbd;
    padding: 8px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.75;
    text-align: center;
    display: grid;
    place-items: center;
    @media (max-width: 767px) {
      font-size: 13px;
      padding: 12px;
    }
  }

  .comparison-value:last-child {
    border-right: none;
  }

  .comparison-value.positive {
    color: #e32828;
  }

  /* .comparison-value.negative {
    color: #e32828;
  } */

  .example-result {
    text-align: center;
    padding: 0 20px;
    @media (max-width: 767px) {
      padding: 0 10px;
    }
  }

  .result-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    color: #000;
    margin-bottom: 6px;

    @media (max-width: 767px) {
      font-size: 15px;
      line-height: 1.2;
    }
  }

  .result-highlight {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #e32828;
    border-bottom: 3px solid #e32828;
    padding-bottom: 3px;
    display: inline-block;

    @media (max-width: 767px) {
      font-size: 27px;
      line-height: 1.2;
    }
  }

  .examples-cta {
    display: flex;
    justify-content: center;
    margin-top: 60px;

    @media (max-width: 767px) {
      margin-top: 30px;
    }
  }

  /* ステップセクション */
  .steps-section {
    background: #f5f5f5;
    padding: 100px var(--content-spacing);
    width: 100%;

    @media (max-width: 767px) {
      padding-block: 30px;
    }
  }

  .steps-header {
    text-align: center;
    margin-bottom: 60px;

    @media (max-width: 767px) {
      margin-bottom: 30px;
    }
  }

  .steps-title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 46px;
    line-height: 1.2;
    color: #000;
    margin: 0;

    @media (min-width: 768px) and (max-width: 1023px) {
      font-size: 32px;
    }

    @media (max-width: 767px) {
      font-size: 23px;
      line-height: 1.2;
    }
  }

  .steps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;

    @media (max-width: 767px) {
      gap: 15px;
    }
  }

  .steps-row {
    display: flex;
    align-items: stretch;
    gap: 10px;

    @media (max-width: 1020px) {
      flex-direction: column;
      gap: 15px;
      align-items: center;
    }
  }

  .step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .step-badge {
    position: relative;
    z-index: 2;
  }

  .step-circle {
    width: 52px;
    height: 52px;
    background: #e32828;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .step-label {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 11px;
    line-height: 1.2;
    color: #fff;
    position: absolute;
    top: 7px;
  }

  .step-number {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 1.2;
    color: #fff;
    position: absolute;
    bottom: 5px;
  }

  .step-content {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    flex: 1;
    margin-top: -30px;

    @media (max-width: 1100px) {
      padding: 40px 15px 15px;
    }

    @media (max-width: 767px) {
      padding: 20px 15px 15px;
      gap: 10px;
      height: auto;
      border-radius: 10px;
      margin-top: -15px;
    }
  }

  .step-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .step-subtitle {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: #000;
    text-align: center;

    @media (max-width: 767px) {
      font-size: 14px;
    }
  }

  .step-title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: #e32828;
    text-align: center;

    @media (max-width: 767px) {
      font-size: 18px;
    }
  }

  .step-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    flex-shrink: 0;

    @media (max-width: 1020px) {
      height: 200px;
    }

    @media (max-width: 767px) {
      display: none;
    }
  }

  .step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .step-description {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .step-description p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.75;
    color: #000;
    margin: 0;

    @media (max-width: 767px) {
      font-size: 14px;
      line-height: 1.64;
    }
  }

  .step-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
  }

  .step-detail {
    background: #f9f3ec;
    border-radius: 4px;
    padding: 10px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.75;
    color: #000;
    text-align: center;

    @media (max-width: 767px) {
      padding: 20px;
      font-size: 14px;
      line-height: 1.64;
    }
  }

  .step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;

    @media (max-width: 767px) {
      width: 29px;
    }
  }

  .arrow-icon {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #e32828;

    @media (max-width: 1020px) {
      transform: rotate(90deg);
    }
  }

  .speed-highlight {
    display: flex;
    align-items: center;
    width: 100%;
  }

  .speed-banner {
    flex: 1;
    background: linear-gradient(90deg, #fee422 0%, #f08625 25%, #e32828 100%);
    padding: 20px;
    clip-path: polygon(0 0, 97% 0, 100% 50%, 97% 100%, 0 100%);

    @media (max-width: 767px) {
      padding: 10px 30px 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }

  .speed-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.89;
    color: #fff;
    text-align: center;

    @media (max-width: 767px) {
      font-size: 16px;
      line-height: 1.31;
    }
  }

  .steps-cta {
    display: flex;
    justify-content: center;
    margin-top: 60px;

    @media (max-width: 767px) {
      margin-top: 30px;
    }
  }

  /* FAQセクション */
  .faq-section {
    background: #fff;
    padding: 100px var(--content-spacing) 0;
    width: 100%;

    @media (max-width: 767px) {
      padding-block: 1.875rem;
    }
  }

  .faq-header {
    text-align: center;
    margin-bottom: 60px;

    @media (max-width: 767px) {
      margin-bottom: 30px;
    }
  }

  .faq-title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 46px;
    line-height: 1.2;
    color: #000;
    margin: 0;

    @media (min-width: 768px) and (max-width: 1023px) {
      font-size: 32px;
    }

    @media (max-width: 767px) {
      font-size: 23px;
      line-height: 1.2;
    }
  }

  .faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;

    @media (max-width: 767px) {
      gap: 30px;
    }
  }

  .faq-item {
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;

    @media (max-width: 767px) {
      gap: 20px;
    }
  }

  .faq-question {
    background: #730707;
    border-radius: 10px 10px 0 0;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    gap: 14px;

    @media (max-width: 767px) {
      padding: 10px 15px;
      gap: 8px;
    }
  }

  .faq-icon {
    width: 46px;
    height: 46px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: #e32828;
    flex-shrink: 0;

    @media (max-width: 767px) {
      width: 37px;
      height: 37px;
      font-size: 19px;
    }
  }

  .faq-icon.answer {
    background: #e32828;
    color: #fff;
  }

  .faq-question-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: #fff;

    @media (min-width: 768px) and (max-width: 1023px) {
      font-size: 20px;
    }

    @media (max-width: 767px) {
      font-size: 16px;
      line-height: 1.44;
    }
  }

  .faq-answer {
    padding: 0 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;

    @media (max-width: 767px) {
      padding: 0 15px 15px;
      gap: 9px;
    }
  }

  .faq-answer-header {
    display: flex;
    align-items: center;
    gap: 14px;

    @media (max-width: 767px) {
      gap: 10px;
    }
  }

  .faq-answer-title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: #000;

    @media (min-width: 768px) and (max-width: 1023px) {
      font-size: 20px;
    }

    @media (max-width: 767px) {
      font-size: 16px;
      line-height: 1.2;
    }
  }

  .faq-answer-text {
    margin-top: 10px;
  }

  .faq-answer-text p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.75;
    color: #000;
    margin: 0 0 16px 0;

    @media (max-width: 767px) {
      font-size: 14px;
      line-height: 1.64;
    }
  }

  .faq-answer-text p:last-child {
    margin-bottom: 0;
  }

  /* CTAセクション */
  .cta-section {
    width: 100%;
    padding-top: 100px;

    @media (max-width: 767px) {
      padding-top: 20px;
    }
  }

  .cta-background {
    background: url(../image/cta_pc_image.jpg) no-repeat center center / cover;
    padding-inline: var(--content-spacing);
    padding-top: 60px;
    padding-bottom: 70px;

    @media (max-width: 767px) {
      background: url(../image/cta_sp_image.jpg) no-repeat center center / cover;
      min-height: 500px;
    }

    @media (max-width: 600px) {
      min-height: 600px;
    }
  }

  .cta-section-title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.43;
    color: #000;
    margin-bottom: 7px;

    @media (min-width: 768px) and (max-width: 1023px) {
      font-size: 24px;
    }

    @media (max-width: 767px) {
      font-size: 20px;
      margin-bottom: 20px;
      letter-spacing: -0.3px;
    }
  }

  .cta-description {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.75;
    color: #000;
    margin-bottom: 42px;

    @media (max-width: 767px) {
      font-size: 14px;
      line-height: 1.64;
      margin-bottom: 20px;
      width: 100%;
      height: auto;
    }
  }

  .cta-note {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.2;
    color: #000;
    margin: 0;

    @media (max-width: 767px) {
      font-size: 11px;
      line-height: 1.3;
      width: 100%;
    }
  }

  .cta-button-container {
    margin-bottom: 40px;

    @media (max-width: 767px) {
      margin-bottom: 20px;
    }
  }

  .cta-button {
    position: relative;
    width: 628px;
    height: 95px;
    background: #e32828;
    border-radius: calc(1px * infinity);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: opacity 0.3s ease;
    text-decoration: none;

    @media (max-width: 767px) {
      width: 100%;
      max-width: 320px;
      height: 75px;
      padding-left: 50px;
      margin-left: 5px;
      justify-content: flex-start;
    }

    @media (min-width: 768px) and (max-width: 1023px) {
      width: 100%;
      max-width: 620px;
    }
  }

  .cta-button:hover {
    opacity: 0.8;
  }

  .secret-badge {
    position: absolute;
    top: -35px;
    left: 50px;
    width: 95px;
    height: 95px;
    background: #fee422;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4.6px 4.6px rgba(0, 0, 0, 0.25);

    @media (max-width: 767px) {
      top: 50%;
      transform: translateY(-50%);
      left: -15px;
      width: 60px;
      height: 60px;
    }
  }

  .secret-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 29px;
    line-height: 1.2;
    color: #431e22;
    text-align: center;

    @media (max-width: 767px) {
      font-size: 14px;
    }
  }

  .cta-button-content {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 95px;

    @media (max-width: 767px) {
      margin-left: 0;
      gap: 7px;
    }
  }

  .cta-icon {
    width: 36px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;

    @media (max-width: 767px) {
      width: 27px;
      height: 28px;
    }
  }

  .cta-icon i {
    font-size: 30px;
    color: #fff;

    @media (max-width: 767px) {
      font-size: 24px;
    }
  }

  .cta-button-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .cta-subtitle {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: #fff;
    text-align: center;

    @media (max-width: 767px) {
      font-size: 12px;
    }
  }

  .cta-button-title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    color: #fff;
    text-align: left;
    text-decoration: none;

    @media (max-width: 767px) {
      width: 100%;
      font-size: 21px;
    }
  }
}
