@charset "UTF-8";

/************************************
** エントリーページCSS
************************************/
.page-noheader table p{
    margin:0;
}
table th{
    width: 270px;
}
table th span{
    font-size:12px;
    color:#ffffff;
    font-weight: bold;
    padding:5px 10px;
    border-radius: 5px;
    background-color: #0E78E3;
    display: inline-block;
    float: right;
}
table tr:last-child th{
    vertical-align:top;
}
.policy p{
    margin:60px 0;
    text-align: center;
}
.policy a:hover{
    color:#0E78E3!important;
    text-decoration: none;
}
.thanks-message{
    margin-bottom:100px;
}
.thanks-message p{
    text-align: center;
    margin-bottom:1.5em;
}

/*送信ボタン*/
input[type=submit]{
    color:#ffffff;
    padding:12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    border:0px;
    transition: 0.3s;
    background-color: #E1245E;
    background-size: 200% 100%;
    display: block;
    width: 320px;
    margin: auto;
    opacity: 1.0;
}
.btn-submit-parent{
    position: relative;
    width: 320px;
    margin: auto;
}
.btn-submit-parent::after{
    content: "";
    position: absolute;
    display: block;
    transition: all .3s;
    width: 7px;
    height: 18px;
    top: 30%;
    right: 1.5rem;
    border-top: solid 1px #ffffff;
    border-right: solid 1px #ffffff;
    transform: translateY(-50%) rotate(45deg) skewX(-45deg);
}
input[type=submit]:hover{
    color:#ffffff;
    opacity: 0.6;
}
.wpcf7-previous{
    background:#333333;
    color:#ffffff;
    padding:12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    border:0px;
    transition: 0.3s;
    display: block;
    width: 200px;
    margin: auto;
    margin-bottom:10px;
    border:2px solid #333333;
}
.wpcf7-previous:hover{
    background-color: #ffffff;
    color: #333333;
}
.step-progress-bar {
    width: 100%;
    max-width: 700px; 
    margin: 50px auto;
}
.steps {
    display: flex;
    justify-content: space-between;
    padding: 0;
    list-style: none;
    position: relative;
    margin: 0;
}
.step {
    flex-grow: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}
.step:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    width: 100%;
    height: 1px;
    background-color: #ccc;
    transform: translateX(-50%);
    z-index: -1;
}
.step:not(:last-child)::before {
    width: 110px;
    left: calc(50% + 115px); 
}
.step-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 32px;
    margin-bottom: 8px;
    background-color: #fff;
    border: 2px solid #ccc;
    color: #0E78E3;
}
.step-label {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}
.step.active .step-circle {
    background-color: #0E78E3; 
    border-color: #0E78E3;
    color: #fff; 
}
.entry-form-section{
    max-width: 900px;
    margin:auto;
}
.thanks-message{

}


/*スマホ版表示切り替えは1050px以下*/
@media screen and (max-width: 1050px) {
    table th,
    table td{
        width: 100%;
        display: block;
    }
    table th p{
        font-size:14px;
    }
    table th span{
        float: none;
        margin-left: 10px;
        padding: 0px 10px;
        background-color: #0E78E3;
        color: #ffffff;
    }
    table td{
        font-size:15px;
    }
    table:not(.has-border-color) :where(th){
        background-color: #f5f5f5;
    }
    table:not(.has-border-color) :where(td){
        background-color: #ffffff;
        padding: 10px;
    }
    table:not(.has-border-color) :where(th){
        border-top:2px solid #ffffff;
        padding: 12px 10px;
    }
    input[type=text], input[type=password], input[type=date], input[type=datetime], input[type=email], input[type=number], input[type=search], input[type=tel], input[type=time], input[type=url], textarea, select, .search-edit{
        font-size:15px;
    }
    table tr:last-child td{
        border-bottom:2px solid #ffffff;
    }
    .policy p{
        margin: 30px 0!important;
    }
    .step-progress-bar{
        margin: 30px auto;
    }
    .step-circle{
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .step-label{
        font-size: 12px;
    }
    .step:not(:last-child)::before{
        width: 50px;
        left: calc(50% + 57px);
    }
    .step:not(:last-child)::before{
        top: 20px;
    }

}