@charset "UTF-8";

:root{
  --blue: #005bac;
  --lightblue: #eef5ff;
}

@media screen and (max-width: 1024px){
  .sp{
    display: none;
  }
  .tab{
    display: block;
  }
  .pc{
    display: none;
  }
}

@media screen and (max-width: 768px){
  .sp{
    display: block;
  }
}

@media screen and (min-width: 769px){
  .sp{
    display: none;
  }
  .pc{
    display: block;
  }
}

@media screen and (min-width: 1025px){
  .tab{
    display: none;
  }
}


.checklist-fv {
  padding: 6rem 0;
  background-color: var(--lightblue);
}

.checklist-fv-outer h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--blue);
  text-align: center;
  animation: fadeInUp 1s ease;
}

.checklist-fv-outer h1 span {
  display: block;
  font-size: 1.5rem;
}

.checklist-fv-outer p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  text-align: center;
  animation: fadeInUp 1s ease;
}

.checklist-box{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

.checklist-list-content{
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
}

.checklist-list-content h2{
  font-size: 1.4rem;
  color: var(--blue);
  margin-bottom: 1rem;
}

.checklist-list li{
  font-size: 1.1rem;
  line-height: 1.8;
}

.checklist-list > li .checklist-list-child li{
  position: relative;
  padding-left: 2.5em;
}

.checklist-list > li .checklist-list-child li::before{
  position: absolute;
  content: '';
  top: 0.95em;
  left: 1.5em;
  width: 0.5em;
  height: 1px;
  background: #333;
}

@media screen and (max-width: 1024px){
  .checklist-fv-outer h1 {
    font-size: 2.5rem;
  }

  .checklist-fv-outer h1 span {
    font-size: 1.4rem;
  }

  .checklist-list-content h2{
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 768px){
  .checklist-fv-outer h1 {
    font-size: 1.7rem;
  }

  .checklist-fv-outer h1 span {
    font-size: 1.2rem;
  }

  .checklist-fv-outer p {
    font-size: 1rem;
  }

  .checklist-box{
    grid-template-columns: unset;
    gap: 1rem;
    margin-top: 2rem;
  }

  .checklist-list-content{
    padding: 1.5rem;
  }

  .checklist-list-content h2{
    font-size: 1.2rem;
  }

  .checklist-list li{
    font-size: 1rem;
  }
}


/* フォーム */
.checklist-form{
  padding: 6rem 0;
}

.checklist-form-container{
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.checklist-form-box{
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 3rem 2.5rem 4rem;
}

.checklist-form-box .section-title{
  margin-bottom: 3rem;
}

@media screen and (max-width: 1024px){
  .checklist-form-box{
    padding: 2.5rem 2rem 3.5rem;
  }

  .checklist-form-box .section-title{
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px){
  .checklist-form-box{
    padding: 2rem 1.5rem 3rem;
  }

  .checklist-form-box .section-title{
    font-size: 1.8rem;
  }
}

.checklist-page [data-hsfc-id=Renderer] .hsfc-RichText{
  margin-bottom: 1.5rem;
}

.checklist-page [data-hsfc-id=Renderer] .hsfc-Row a{
  text-decoration: underline;
}

.checklist-page [data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content{
  padding: 0!important;
}

.checklist-page [data-hsfc-id=Renderer] .hsfc-RichText p + p{
  margin-top: 2rem;
}

.checklist-page [data-hsfc-id=Renderer] .hsfc-Button{
  padding: 0.75rem 1rem;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.checklist-page [data-hsfc-id=Renderer] .hsfc-Button:hover{
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 140, 0, 0.2);
}


@media screen and (max-width: 768px){
  .checklist-page [data-hsfc-id=Renderer] .hsfc-RichText p{
    font-size: 16px;
  }

  .checklist-page [data-hsfc-id=Renderer] .hsfc-FieldLabel{
    font-size: 16px;
  }

  .checklist-page [data-hsfc-id=Renderer] .hsfc-Button{
    padding: 0.75rem 1rem;
    font-size: 1.2rem;
  }
}