/* ============================================
   Design System Variables
   ============================================ */
:root {
  /* Colors */
  --color-primary: #00a59a;
  --color-text-primary: #111111;
  --color-text-secondary: #333333;
  --color-text-muted: #8f8f8f;
  --color-text-disabled: #acacac;
  --color-bg-white: #ffffff;
  --color-bg-light: #f2f2f2;
  --color-bg-pale-blue: #f1fbff;
  --color-accent-yellow: #ffd600;
  --color-border-light: #e4e4e4;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 12px;
  --spacing-base: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 40px;
  --spacing-3xl: 48px;
  --spacing-4xl: 64px;
  --spacing-5xl: 80px;
  --spacing-6xl: 96px;

  /* Border Radius */
  --radius-sm: 5px;
  --radius-md: 7px;
  --radius-lg: 8px;
  --radius-pill: 999px;

  /* Shadow */
  --shadow-button: 0px 0px 10px rgba(0, 0, 0, 0.1);
  --shadow-card: 0px 2px 8px rgba(0, 0, 0, 0.08);
}

main{
  padding-top: 69px;
  @media screen and (max-width: 767px){
    padding-top: 48px;
  }
}

/* ============================================
   Common Utilities
   ============================================ */
.pcb {
  display: block!important;
}
.spb {
  display: none!important;
}

@media screen and (max-width: 767px) {
  .pcb {
    display: none!important;
  }
  .spb {
    display: block!important;
  }
}

/* ============================================
   Breadcrumb
   ============================================ */
.breadcrumb{
  width: 100%;
  max-width: 960px;
  padding: 16px 0 0;
  margin: 0 auto;
  color: #ACACAC;
  a{
    color: #ACACAC;
    &:hover{
      text-decoration: underline;
    }
  }
  @media screen and (max-width: 767px){
    padding: 0 16px;
  }
}
.breadcrumb_home {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-decoration: none;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  padding: 0 0 var(--spacing-5xl);
  background: #FFF url(/images/ai-report/lp-ai-report/mv-bg.svg) no-repeat 0 50%;
  background-size: cover;
  @media screen and (max-width: 767px){
    padding: var(--spacing-lg) 0 var(--spacing-2xl);
    background: #FFF url(/images/ai-report/lp-ai-report/mv-bg-sp.svg) no-repeat 0 50%;
    background-size: cover;
  }
}
.hero-content {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--spacing-base);
}
.hero-sub_title {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-primary);
  background-color: var(--color-bg-white);
  padding: 4px 12px 6px;
  border-radius: var(--radius-pill);
  margin: 40px 0 0;
  box-shadow: 0 0 10px 0 rgba(0, 165, 154, 0.40);
  span{
    color: transparent;
    background: linear-gradient(94deg, #00A59A 12.15%, #5D86F7 68.09%, #8809FF 123.39%);
    background-clip: text;
  }
  @media screen and (max-width: 767px){
    margin-top: 32px;
  }
}
.hero-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  @media screen and (max-width: 767px){
    flex-direction: column;
    gap: var(--spacing-lg);
  }
}
.hero-text {
  flex: 1;
}
.hero-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-lg);
  letter-spacing: 1px;
  @media screen and (max-width: 767px){
    font-size: 24px;
  }
}
.hero-read {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-xl);
  @media screen and (max-width: 767px){
    margin-bottom: 0;
  }
}
.hero-btn {
  display: inline-block;
  padding: 12px 32px 14px;
  background: linear-gradient(54deg, #00A59A 47.06%, #C7E082 100.46%);
  color: var(--color-bg-white);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  border: none;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-button);
  cursor: pointer;
  a{
    color: var(--color-bg-white);
    text-decoration: none;
  }
  &:hover{
    background: #008F86;
  }
  @media screen and (max-width: 767px){
    width: 100%;
    padding: 12px 24px;
    font-size: 18px;
    &.spb{
      margin-top: 24px;
    }
  }
}
.hero-img {
  flex: 1;
  max-width: 450px;
  img{
    width: 100%;
    height: auto;
    display: block;
  }
  @media screen and (max-width: 767px){
    max-width: 100%;
  }
}

/* ============================================
   Problem Section
   ============================================ */
.problem {
  padding: var(--spacing-5xl) 0;
  background: #fff url(/images/ai-report/lp-ai-report/probrem-bg.svg) no-repeat 50% 0;
  background-size: contain;
  @media screen and (max-width: 767px){
    padding: var(--spacing-3xl) 0 var(--spacing-4xl);
    background: #fff url(/images/ai-report/lp-ai-report/probrem-bg-sp.svg) no-repeat 50% 100%;
    background-size: cover;
  }
}
.problem-content {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--spacing-base);
  h2{
    font-size: 32px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-text-primary);
    text-align: center;
    margin-bottom: var(--spacing-4xl);
    @media screen and (max-width: 767px){
      font-size: 24px;
      margin-bottom: var(--spacing-xl);
    }
  }
}
.problem-lists {
  display: flex;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  @media screen and (max-width: 767px){
    flex-direction: column;
    gap: 24px;
  }
  li{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    @media screen and (max-width: 767px){
      gap: var(--spacing-sm);
    }
  }
  figure{
    width: 196px;
    height: 140px;
    margin: 0;
    img{
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }
    @media screen and (max-width: 767px){
      width: 100%;
      max-width: 196px;
      height: auto;
    }
  }
  h3{
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-text-primary);
    text-align: center;
    width: 100%;
    @media screen and (max-width: 767px){
      font-size: 18px;
    }
  }
}

/* ============================================
   Support Section
   ============================================ */
.support {
  padding: 0 0 var(--spacing-5xl);
  margin-top: -1%;
  background-color: var(--color-bg-white);
  @media screen and (max-width: 767px){
    padding: 0;
    margin-top: -5%;
  }
}
.support-content {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--spacing-base);
  text-align: center;
}
.support-sub_title {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, #00a59a 8.75%, #5c85f6 49.04%, #8809ff 88.86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-color: var(--color-bg-white);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 10px 0 rgba(0, 165, 154, 0.40);
  text-align: center;
  margin: 0 auto var(--spacing-base);
}
.support-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
  color: #00A59A;
  margin-bottom: var(--spacing-4xl);
  @media screen and (max-width: 767px){
    font-size: 32px;
    margin-bottom: var(--spacing-xl);
  }
}
.support-lists {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4xl);
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  @media screen and (max-width: 767px){
    gap: var(--spacing-2xl);
  }
}
.support-list {
  display: flex;
  align-items: center;
  gap: var(--spacing-2xl);
  @media screen and (max-width: 767px){
    flex-direction: column;
    gap: var(--spacing-base);
  }
  figure{
    flex: 1;
    max-width: 450px;
    @media screen and (max-width: 767px){
      max-width: 100%;
    }
    img{
      width: 100%;
      height: auto;
      display: block;
      border-radius: var(--radius-lg);
    }
  }
}
.support-list-revers {
  flex-direction: row-reverse;
  @media screen and (max-width: 767px){
    flex-direction: column;
  }
}
.support-list-text {
  flex: 1;
}
.support-list-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-base);
  @media screen and (max-width: 767px){
    font-size: 20px;
  }
}
.support-list-read {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text-secondary);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
  padding: var(--spacing-5xl) 0 0;
  @media screen and (max-width: 767px){
    padding: var(--spacing-3xl) 0;
  }
}
.faq-content {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--spacing-base);
}
.faq-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  @media screen and (max-width: 767px){
    font-size: 24px;
    margin-bottom: var(--spacing-xl);
  }
}
.faq-item {
  background-color: var(--color-bg-white);
  border: 1px solid #dbf0ef;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: var(--spacing-base);
  @media screen and (max-width: 767px){
    padding: var(--spacing-base);
  }
  &:last-child{
    margin-bottom: 0;
  }
}
.qes {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-primary);
  margin-bottom: 8px;
  @media screen and (max-width: 767px){
    font-size: 18px;
  }
}
.ans {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-text-secondary);
  @media screen and (max-width: 767px){
    font-size: 14px;
  }
}








/* registration form from top/ai-analyze */
.registration{
  padding: 120px 0 96px;
  margin-top: 120px;
  background: #FAF8D2 url(/images/rn2026/top/registration-bg.svg) no-repeat 50% 100%;
  @media screen and (max-width: 767px){
    margin-top: 0;
    padding: 60px 0;
  }
  .formArea{
    margin: 40px auto 0;
    padding: 40px;
    background: #fff;
    width: 100%;
    max-width: 680px;
    border-radius: 24px;
    box-shadow: 0 0 10px 0 rgba(0, 165, 154, .4);
    box-sizing: border-box;
    @media screen and (max-width: 767px){
      padding: 40px 16px;
    }
  }
  form{
    margin-top: 32px;
    padding: 0 60px;
    @media screen and (max-width: 767px){
      padding: 0;
    }
  }
  .area-wrap{
    margin-top: 24px;
    &:first-child{
      margin-top: 0;
    }
  }
  .area-title{
    font-weight: 600;
    .req{
      background: #E75243;
      padding: 4px 8px;
      font-size: 14px;
      color: #fff;
      margin-right: 8px;
      border-radius: 4px;
    }
    .offer-text{
      font-size: 12px;
      color: #888;
      margin-left: 8px;
      @media screen and (max-width: 767px){
        display: block;
        margin-left: 0;
        margin-top: 4px;
      }
    }
  }
  .nameArea-input p,
  input{
    font-size: 18px;
    color: #ACACAC;
    &:not(:placeholder-shown){
      color: #333;
    }
  }
  input::placeholder{
    color: #ACACAC;
  }
  input:not(.p-check){
    padding: 12px 16px;
    border-radius: 8px;
    width: 100%;
    border: 2px solid #ccc;
    margin-top: 8px;
    @media screen and (max-width: 767px){
      padding: 12px;
    }
    &.fls{
      border: 2px solid #FF7F72;
      background: #FFF0F0;
    }
  }
  .nameArea-input{
    display: flex;
    gap: 16px;
    @media screen and (max-width: 767px){
      display: block;
      .firstName{
        margin-top: 8px;
      }
    }
  }
  .lastName,
  .firstName{
    display: flex;
    align-items: center;
    p{margin-top: 8px;}
  }
  .check-cf{
    margin-top: 8px;
    border: 2px solid #ccc;
    padding: 12px 16px;
    border-radius: 10px;
    display: inline-block;
    background: #fff;
    label{
      display: flex;
      align-items: center;
    }
    span{
      margin-left: 16px;
    }
    input[type="checkbox"] {
      width: 18px;
      height: 18px;
    }
  }
  .pp-links{
    margin-top: 8px;
    a{
      color: #00A59A;
      text-decoration: underline;
      &:hover{
        text-decoration: none;
      }
    }
  }
  @media screen and (max-width: 767px){
    .f-box{
      display: flex;
      align-items: center;
    }
  }
  .submit-btn{
    color: #fff;
    text-align: center;
    border-radius: 999px;
    width: 100%;
    max-width: 480px;
    padding: 20px 0;
    border: none;
    margin-top: 32px;
    @media screen and (max-width: 767px){
      padding: 12px 0;
    }
  }
  .page-btn{
    display: block;
    color: rgb(255, 255, 255);
    font-weight: 600;
    text-align: center;
    border-radius: 999px;
    background: linear-gradient(54deg, rgb(0, 165, 154) 47.06%, rgb(199, 224, 130) 100.46%);
    &:hover{
      background: #008F86;
    }
  }
  .telBox{
    margin: 32px auto 0;
    padding: 16px 0;
    border: 1px solid #DBF0EF;
    text-align: center;
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    @media screen and (max-width: 767px){
      font-size: 14px;
    }
    .num{
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      @media screen and (max-width: 767px){
        flex-direction: column;
        gap: 0;
      }
      & > p{
        font-size: 36px;
        font-family: "Oswald";
        font-feature-settings: 'pwid' on, 'palt' on;
      }
      .open-time{
        @media screen and (max-width: 767px){
          display: flex;
          justify-content: center;
          align-items: center;
        }
        p{
          font-size: 12px;
          &.tims{
            font-size: 14px;
            @media screen and (max-width: 767px){
              font-size: 12px;
            }
          }
        }
      }
    }
  }
  .isms{
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #CFD8DC;
  }
  .acquisition-isms{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    @media screen and (max-width: 767px){
      flex-direction: column;
      gap: 8px;
    }
    figure{
      width: 100%;
      max-width: 117px;
    }
    .isms-title{
      h4{
        font-size: 14px;
        color: #888;
        @media screen and (max-width: 767px){
          text-align: center;
          font-size: 12px;
        }
      }
      p{
        font-size: 10px;
      }
    }
  }
  .isms-info{
    margin-top: 8px;
    font-size: 10px;
    color: #888;
    text-align: center;
    @media screen and (max-width: 767px){
      text-align: left;
    }
  }
  .error{
    margin-top: 8px;
    color: #D91919;
    font-size: 14px;
    &.hidden{
      display: none;
    }
    &.err-small{
      font-size: 12px;
    }
  }
}
/* // registration form from top/ai-analyze */