body{
    width: 100%;
    height: auto;
}

.process-heading{
    font-family: "Inter Tight", system-ui, sans-serif;
    font-weight: 700;
    font-size: clamp(26px, 10vw, 100px);
    display: flex;
    align-items: baseline;
    margin: 30px 0px;
    gap: 50px;
}

.process-ja{
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 2.5vw, 40px);
}

.ww-head{
    height: 100svh;
    width: 100%;
    inset: 0;
}

body > main > section > div > header > div{
    inset: 0;
    margin:auto;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60%;
}
.process-lead-text{
    font-size: clamp(20px, 2.0vw, 32px);
    line-height: 3.8rem;
    line-height: 6.0rem;
}

.process-list{
    margin-inline: auto;
    padding: 50px;
    color: #2B2B2B;

}

.process-item{
    position: relative;
    height: 70svh;

  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;

}

.list-line{
    width: clamp(200px, 50vw, 900px);
    right: 0;
    position: absolute;
}

.process-num{
    color:  rgba(184, 184, 184, 0.65);
    font-size: clamp(32px, 10vw, 180px);
    position: absolute;
    top: -10%;
    margin: 0;
}

.ww-process-h3{
    margin: auto;
    font-size: clamp(20px, 2.0vw, 32px);
}

.process-content-text{
    margin: auto;
    width: 80%;
    line-height: 3.8rem;
    font-size: clamp(20px, 1.6vw, 22px);
}

.ww-cta-line{
    height: 50svh;
    margin:auto;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.ww-cta-copy{
    font-size: 2.3rem;
}

.ww-cta-copysub{
    font-size: 1.3rem;
}

.cta-catch{
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}



/*スクロール演出*/

.process-num {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.ww-process-h3 {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s ease 0.12s,
    transform 0.7s ease 0.12s;
}

.process-item.is-active .process-num,
.process-item.is-active .ww-process-h3{
  opacity: 1;
  transform: translateY(0);
}

.list-line {
  opacity: 0.25;
  transition: opacity 0.7s ease 0.18s;
}

.process-item.is-active .list-line {
  opacity: 1;
}

/* tablet */
@media (max-width: 1024px) {

  .process-item {
    grid-template-columns: 2fr 3fr;   
    gap: 1.5
    rem;
  }


















}


/* mobile */
@media (max-width: 767px) {

.ww-process .ww-inner {
    width: min(100% - 40px, 680px);
    padding: 0;
}

.process-lead-text{
    line-height:3.0rem;
    font-size: 16px;
}
.process-item {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin: 0px 0px 100px;
}

.process-heading{
    margin: 30px 10px;
}
.process-list{
    padding: 20px;
}
.process-num {
    margin-bottom: 0.8rem;
    font-size: clamp(3.2rem, 14vw, 4.8rem);
}

.process-content {
    max-width: none;
}

.process-title {
    margin-bottom: 0.8rem;
}

.process-ja{
    font-size: clamp(24px, 6vw, 25px);    
}
.ww-cta-line {
    height: 100svh;
    gap: 100px;
}
.cta-catch {
    display: flex;
    flex-direction: column;
}
.ww-cta-copy{
    font-size: clamp(1.8rem, 6vw, 32px);
}

.ww-cta-copysub{
    margin: ;
}








}