@charset "UTF-8";
/* CSS Document */

@charset "UTF-8";
/* CSS Document */
#contact-form {
    padding: 0 0 100px;
}

.section__topic__contact-form {
    position: relative;
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 700;
    padding: 135px 0 91px;
    background-image: url(../images/contactpage-backgroundImage.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section__topicEN__contact-form {
    position: absolute;
    top: 52%;
    left: 33%;
    transform: translate(-50%,-50%);
    color: rgba(255, 255, 255, 0.20);
    font-family: "Noto Sans Gothic";
    font-size: 6rem;
    font-weight: 400;
}

.contact-step {
    margin: 50px auto;
    text-align: center;
}

.contact-step__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px; /* 丸同士の間隔 */
    padding: 0 5.8%;
    position: relative;
}
  
.contact-step__item {
    position: relative;
    text-align: center;
    color: var(--lightgray);
}
  
.contact-step__item .circle {
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 50%;
    background-color: var(--lightgray);
}
  
.contact-step__item .label {
    display: block;
    margin-top: 5px;
}
  
/* 現在地だけ色変更 */
.contact-step__item.is-current .circle {
    background-color: var(--blue); /* お好みのテーマカラー */
}
  
.contact-step__item.is-current .label {
    color: var(--blue);
}
  
/* 線のデザイン */
.contact-step__item::after {
    content: '';
    position: absolute;
    top: 12px; /* 丸の真ん中あたりに線 */
    right: -80px;
    width: 100px;
    height: 2px;
    background-color: var(--lightgray);
}
  
/* 最後のステップのあとに線はいらない */
.contact-step__item:last-child::after {
    display: none;
}

.thanks-message {
    margin-top: 120px;
    padding: 0 5.8%;
}

.pcbr {
    display: none;
}

.contact-text {
    color: var(--primaryblack);
    font-size: 2rem;
    font-weight: 500;
    line-height: 160%; /* 32px */
    text-align: left;
}

.form-submit {
    margin: 60px auto 0;
}

.top__btn {
    display: inline-block;
    color: var(--white);
    background: var(--blue);
    text-align: center;
    font-weight: 700;
    width: 240px;
    padding: 16px 90px 21px;
}
/* contact-form sp */

/* contact-form pc */
@media screen and (min-width:768px) {
    #contact-form {
        padding: 90px 0 100px;
    }

    .section__topic__contact-form {
        padding: 170px 0 170px;
    }
    
    .section__topicEN__contact-form {
        top: 35%;
        right: 51%;
        left: auto;
        transform: translate(0, -50%);
        font-size: 14rem;
    }

    .contact-largeText {
        padding: 0 18.1%;
        margin-top: 100px;
    }

    .contact-step {
        margin: 80px auto;
        text-align: center;
    }
      
    .contact-step__item {
        position: relative;
        text-align: center;
        color: var(--lightgray);
    }
      
    .contact-step__item .circle {
        width: 27px;
        height: 27px;
        line-height: 27px;
    }
      
    .contact-step__item .label {
        margin-top: 15px;
    }
      
    /* 線のデザイン */
    .contact-step__item::after {
        top: 12px; /* 丸の真ん中あたりに線 */
        right: -81px;
    }

    .thanks-message {
        padding: 0 30.2%;
    }

    .pcbr {
        margin-top: 100px;
        display: block;
    }

    .form-submit {
        margin: 100px auto 0;
    }
}
/* contact-form pc */