section.wrapper{
    min-height: 100vh;
    padding: 0% 3%;
    padding-top: 8%;
}

section.wrapper .titleArea {
    margin-bottom: 10.365%;
}

section.wrapper .titleArea .title p {
    font-size: 4rem;
    letter-spacing: 3.2px;
    font-family: linotype-didot, serif;
    font-weight: 400;
    font-style: normal;
    color: #5A5854;
}

section.wrapper .titleArea .subtitle p {
    font-size: 1.5rem;
    letter-spacing: 4.8px;
    font-weight: 500;
    color: #d93630;
}

section.wrapper .titleArea .subtitle {
    margin-left: 3.866%;
}

section.wrapper .titleArea .title, section.wrapper .titleArea .subtitle {
    display: inline-block;
}

.progressBlock{
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
    margin-bottom: 110px;
}

.progressBlock:nth-child(even){
    flex-direction: row-reverse;
}

.progressBlock .textBox{
    width: 39vw;
}

.progressBlock .imageBox{
    width: 51vw;
}

.progressBlock .textArea h6.Title {
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    font-size: 1.75rem;
    letter-spacing: 5.6px;
    line-height: 2.57;
    color: #5A5854;
}

.progressBlock .textArea h6.Title .dash {
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    font-size: 1.75rem;
    letter-spacing: 5.6px;
    line-height: 2.57;
    color: #d93630;
}

.progressBlock .textArea h6.Title span{
    font-size: 2rem;
    letter-spacing: 0.2em;
    line-height: 2.57;
    font-family: linotype-didot-headline, serif;
    font-weight: 400;
    font-style: normal;
}

.progressBlock .textArea p.content{
    font-size: 1.125rem;
    letter-spacing: 4.16px;
    line-height: 36px;
    font-weight: 300;
    padding-bottom: 3%;
}

.progressBlock .login{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    -webkit-align-items: center;
    -webkit-justify-content: flex-end;
}

.progressBlock .login label{
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    font-size: 1.75rem;
    letter-spacing: 5.6px;
    color: #5A5854;
    margin-bottom: 0%;
}

.progressBlock .login input[type="password"]{
    width: 7vw;
    background-color: #fff;
    outline: none;
    border: 1px solid #5A5854;
    line-height: 45px;
    margin: 0% 3.6%;
    padding: 0% 1.5%;
}

.progressBlock .login .submitBtn{
    width: 11vw;
    display: inline-flex;           /* 改成 flex */
    justify-content: center;        /* 水平置中 */
    align-items: center;            /* 垂直置中 */
    box-sizing: border-box;
    outline: none;
    border: none;
    background-color: #DCDDDD;
    color: #5A5854;
    padding: 0 1rem;
    cursor: pointer;
}

.progressBlock .login .submitBtn span{
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 4.8px;
    line-height: 45px;
    color: #5A5854;
    --ls: 4.8px;
    transform: translateX(calc(var(--ls) / 2)); /* 向左微移一半字距 */
}

.progressBlock .innerImg{
    width: 100%;
    padding-top: 70%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.slogan{
    text-align: center;
    margin-bottom: 110px;
}

.slogan h6.title p {
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    font-size: 2.4375rem;
    letter-spacing: 8.8px;
    line-height: 61px;
    color: #000;
}

.slogan p {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 1.25rem;
    letter-spacing: 3px;
    line-height: 35px;
    color: #5A5854;
}

.slogan .dashline{
    color: #d93630;
}

.loginBlock{
    display: none;
    justify-content: center;
    align-items: center;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    transition: all 1s ease-in-out;
    z-index: 100000;
}

.loginBlock .bg{
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: -1;
    cursor: pointer;
}

.loginBlock .loginTable{
    width: 25vw;
    background-color: #fff;
    border-radius: 26px;
    padding-bottom: 2%;
}

.loginBlock .loginTable .formimg{
    margin-bottom: 2%;
}

.loginBlock .loginTable .form1{
    width: 70%;
    margin: 0 auto;
}

.loginBlock .loginTable .form1 .form-group{
    position: relative;
    margin-bottom: 14%;
}

.loginBlock .loginTable .form1 .form-group:last-child{
    margin-bottom: 0%;
}

.form1 .form-group input{
    width: 100%;
    border: none;
    outline: none;
    border-bottom: 1px solid #4d4d4d;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 1.5rem;  /* 36px */
    letter-spacing: 18.25px;
    position: relative;
    padding-left: 28%;
    padding-bottom: 2%;
}

.form1 .form-group label{
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    color: #4d4d4d;
    font-size: 1.5rem;
    letter-spacing: 18.25px;
    position: absolute;
    top: 50%;
    transform: translateY(-64%);
    left: 2%;
    pointer-events: none;
    transition: all .7s ease-in-out;
}

.loginBlock .loginTable .form1 .submitArea{
    text-align: center;
    padding-top: 10%;
}

.loginBlock .loginTable .form1 .submitArea .submitBtn{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    border: none;
    outline: none;
    width: 8.5vw;
    padding: 1.6% 0%;
    border-radius: 50px;
    background: rgba(77, 77, 77, .1);
    text-align: center;
    cursor: pointer;
}

.loginBlock .loginTable .form1 .submitArea .submitBtn span{
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    color: #4d4d4d;
    font-size: 1.5rem;   /* 31px */
    letter-spacing: 6.2px;
    --ls: 6.2px;
    transform: translateX(calc(var(--ls) / 2));
}

@media screen and (max-width: 1537px) and (max-height: 731px){
    section.wrapper .titleArea .title p{
        font-size: 3.4375rem;
    }

    .progressBlock .textArea h6.Title, .progressBlock .textArea h6.Title .dash {
        font-size: 1.5rem;
    }

    .progressBlock .textArea h6.Title span {
        font-size: 1.7rem;
    }

    .progressBlock .textArea p.content{
        font-size: 1rem;
    }

    .progressBlock .login label{
        font-size: 1.3rem;
    }

    .progressBlock .login input[type="password"] {
        line-height: 38px;
    }
    
    .progressBlock .login .submitBtn span{
        font-size: 1rem;
        line-height: 41px;
    }
    
    .slogan h6.title p{
        font-size: 2.1875rem;
    }
    
    .slogan p{
        font-size: 1.125rem;
    }

    .form1 .form-group input{
        font-size: 1.2rem;
        padding-left: 30%;
    }
    
    .form1 .form-group label{
        font-size: 1.2rem;
    }

    .loginBlock .loginTable .form1 .submitArea .submitBtn span{
        font-size: 1.2rem;
    }
}

@media screen and (max-width:1400px){
    section.wrapper .titleArea .title p {
        font-size: 2rem;
    }
    
    section.wrapper .titleArea .subtitle p {
        font-size: 1.25rem;
    }

    .progressBlock .textArea h6.Title, .progressBlock .textArea h6.Title .dash {
        font-size: 1.25rem;
    }

    .progressBlock .textArea h6.Title span {
        font-size: 1.25rem;
    }
    
    .progressBlock .textArea p.content{
        font-size: 1rem;
    }
    
    .progressBlock .login label{
        font-size: 1rem;
    }
    
    .progressBlock .login input[type="password"] {
        width: 6vw;
        line-height: 38px;
    }

    .progressBlock .login .submitBtn{
        width: 13vw;
    }

    .progressBlock .login .submitBtn span{
        font-size: 1rem;
    }

    .slogan h6.title p{
        font-size: 1.875rem;
    }

    .slogan p{
        font-size: 1rem;
    }

    .form1 .form-group input{
        font-size: 1rem;
    }
    
    .form1 .form-group label{
        font-size: 1rem;
    }

    .loginBlock .loginTable .form1 .submitArea .submitBtn span{
        font-size: 1rem;
    }
}

@media screen and (max-width:768px){
    section.wrapper{
        padding: 0;
        margin-top: 60px;
    }

    section.wrapper .titleArea {
        padding: 0% 4.5%;
    }

    section.wrapper .titleArea .title, section.wrapper .titleArea .subtitle {
        display: block;
    }

    section.wrapper .titleArea .title p {
        font-size: 1.875rem;
        letter-spacing: 1.5px;
        line-height: 1.2;
    }

    section.wrapper .titleArea .subtitle{
        margin-left: 0%;
    }
    
    section.wrapper .titleArea .subtitle p {
        font-size: 0.875rem;
        letter-spacing: 2.8px;
        line-height: 1.29;
        padding-top: 5%;
    }

    .progressBlock, .progressBlock:nth-child(even){
        flex-direction: column-reverse;
    }

    .progressBlock .textBox, .progressBlock .imageBox{
        width: 100%;
    }

    .progressBlock .innerImg{
        padding-top: 128.8%;
    }

    .progressBlock .textBox{
        padding: 0% 5.5%;
    }

    .progressBlock .textArea h6.Title{
        margin: 5% 0%;
    }

    .progressBlock .textArea h6.Title, .progressBlock .textArea h6.Title .dash, .progressBlock .textArea h6.Title span {
        font-size: 0.875rem;
        letter-spacing: 2.8px;
        line-height: 1.29;
    }

    .progressBlock .textArea p.content {
        font-size: 0.875rem;
        letter-spacing: 2.8px;
        line-height: 1.857;
        padding-bottom: 7%;
    }

    .progressBlock .login .submitBtn {
        width: 40.8vw;
    }

    .progressBlock .login .submitBtn span {
        font-size: 0.875rem;
        letter-spacing: 2.8px;
        line-height: 2.143;
    }

    .slogan h6.title p {
        font-size: 1.5rem;  /* 24px */
        line-height: 1.458;   /* 或 line-height: 1.458 */
        letter-spacing: 4.8px;
    }

    .slogan {
        margin-bottom: 20%;
    }

    .slogan h6.title{
        margin-bottom: 0%;
    }

    .slogan p {
        font-size: 0.875rem;  /* 14px */
        line-height: 1.5;     /* 或 line-height: 1.5 */
        letter-spacing: 2.1px;
    }

    .slogan .dashline{
        margin: 2% 0%;
    }

    .loginBlock .loginTable{
        width: 85vw;
    }

    .form1 .form-group label {
        font-size: 0.9375rem;  /* 15px */
        line-height: 1.333;      /* 或 line-height: 1.333 */
        letter-spacing: 7.5px;
    }

    .form1 .form-group input {
        font-size: 0.9375rem;  /* 15px */
        line-height: 1.333;      /* 或 line-height: 1.333 */
        letter-spacing: 7.5px;
        padding-left: 25%;
        appearance: none;
        -webkit-appearance: none;
        border-radius: 0;
    }

    .loginBlock .loginTable .form1 .submitArea{
        padding-top: 0%;
        padding-bottom: 7%;
    }

    .loginBlock .loginTable .form1 .submitArea .submitBtn {
        width: 24.9vw;
        padding: 5% 0%;
    }

    .loginBlock .loginTable .form1 .submitArea .submitBtn span {
        font-size: 0.875rem;  /* 14px */
        line-height: 1.071;     /* 或 line-height: 1.071 */
        letter-spacing: 2.8px;
    }
}