@charset "UTF-8";

/*  display
===================================*/
.pc {
    display: block;
}
.smt {
    display: none;
}
.displaynone {
    display: none;
}


/*  header
===================================*/
header {
	position: relative;
    width: 100%;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}
.summit-title-wrap {
    background: rgba(167, 219, 218, 0.7);
}
.summit-title-wrap > div {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.summit-title-wrap .w-container > div {
    margin: 0 auto;
}
.summit-title-sub {
    background: #255397;
    color: #fff;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
    padding: 10px 15px;
    /*font-family: Helvetica, Arial, Verdana, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;*/
}
.summit-title-sub {
    font-size: 22px;
}


/*  article レイアウト
===================================*/
article {
    position: relative;
    margin: 0 auto;
    padding: 0 25px;
    background-color: #F2F2F2;
}

.slbody {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    padding-bottom: 110px;
    min-height: calc(100vh - 275px);
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}


/*  footer
===================================*/
footer {
    width: 100%;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}
.footer .footer-copyright {
    width: min(92%, 950px);
    margin: 0 auto;
    line-height: 1.2;
}
.footer .footer-copyright small {
}



/*  janp
=====================================*/
.janp {
    right: 20px;
    z-index: 2;
}
.janp a {
    color: #fff;
    background-color: #ef93b0;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    place-items: center;
    justify-content: center;
}
.janp a i {
    font-size: 3.6rem;
}
.janp a:hover {
    background-color: #255397;
}


/* login
=====================================*/
.login-are {
    position: relative;
    width: 100%;
}
.login-are .title {
    font-size: 2.4rem;
    font-weight: 600;
    padding-bottom: 20px;
    text-align: center;
    margin-top: 60px;
}
.login-are .title .min {
    font-size: 1.7rem;
    font-weight: 500;
    padding-top: 5px;
    color: #255397;
    font-feature-settings : "palt";
}

.login-are .form {
    margin: 0 auto;
}
.login-are .form li {
    padding-top: 25px;
}
.login-are .form li:first-of-type {
    padding-top: 0;
}
.login-are .form li p {
    color: #23a0a0;
    font-weight: 600;
    font-size: 1.6rem;
}

.login-are .form li input {
    border: 1px solid #c5c5c5;
    height: 42px;
}

.login-are .error-are {
    margin-top: 0;
}
.login-are .error-are li {
    padding-top: 0;
}

.login-are .btn-are {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 40px;
}
.login-are .btn-are .login-btn {
    width: 100%;
    height: 48px;
    max-width: 200px;
}

.login-are .waku {
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    padding-top: 30px;
}
.login-are .waku .tai {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.55rem;
}
.login-are .waku .tai.dai {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 1.6rem;
}


/*///// table /////*/
table {
    width: 100%;
    border-collapse: collapse;
    line-height: 1.3;
    letter-spacing: normal;
    border: 1px solid #cccccc;
    height: 100%;
}
table th,
table td {
    border-bottom: 1px solid #cccccc;
    padding: 20px 15px;
}
table th {
    font-weight: 500;
    background: #eee;
}

.login-are table th {
    width: 150px;
}


/* not found
=====================================*/
.notfound {
    text-align: center;
}
.notfound h3 {
    font-size: 4.6rem;
    letter-spacing: 0.1em;
    line-height: 1;
    font-family: serif;
    padding-top: 150px;
}
.notfound p {
    letter-spacing: 0.03em;
    text-align: center;
    margin-top: 20px;
}


/* error-are
=====================================*/
.error-are {
    margin-top: 30px;
    margin-bottom: 20px;
}
.error-are ul {
    padding: 8px 15px;
    border: 1px solid #e02300;
    background-color: #fdf4f5;
}
.error-are li {
    font-size: 1.4rem;
    color: #e02300;
    line-height: 1.5;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.error-are li:before {
    content: "\e8b2";
    font-family: 'Material Icons';
    font-size: 1.8rem;
}
.error-are.min {
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 15px;
}

.error-are.mt10 {
    margin-top: 10px;
    margin-bottom: 10px;
}



@media screen and (max-width: 768px) {
    
    .pc {
        display: none;
    }
    .smt {
        display: block;
    }
    .slbody {
        padding-bottom: 80px;
    }

	.summit-title-sub {
        font-size: 2.0rem;
    }
    .login-are .title {
        font-size: 2.2rem;
        margin-top: 40px;
    }
    
    .summit-title-wrap {
        background-image: url(/asset/img/bg-img.png);
        background-position: center top;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 180px;
    }
    .summit-title-wrap .w-container .smt {
        display: flex;
        place-items: center;
        justify-content: center;
        height: 180px;
    }
    .summit-title-wrap .w-container .smt img {
        max-width: 80%;
    }
    
    .footer .footer-copyright small {
        font-size: 1.2rem;
    }

}


@media screen and (max-width: 575px) {
    
    .pc {
        display: none;
    }
    
    article {
        padding: 0 20px;
    }
    .slbody {
        padding-bottom: 60px;
    }
    
    .login-are .title {
        font-size: 1.9rem;
        margin-top: 30px;
    }
    .login-are .title .eng {
        font-size: 1.8rem;
    }
    .login-are .waku {
        padding: 20px;
        padding-top: 25px;
        padding-bottom: 40px;
    }
    .login-are .waku .tai {
        margin-bottom: 20px;
        font-size: 1.5rem;
    }
    .login-are .waku .tai .eng {
        line-height: 1.25;
    }
    .login-are .btn-are {
        margin-top: 25px;
    }
    .login-are .btn-are .login-btn {
        min-height: 50px;
        width: 100%;
        min-width: auto;
        max-width: 300px;
    }
    .login-are .btn-are .login-btn p span {
        font-size: 1.5rem;
    }
    .login-are .title .min {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    table {
        border-bottom: 0;
    }
    table tr,
    table th,
    table td {
        display: block;
    }
    table th {
        padding: 8px 15px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    table td {
        padding: 20px 15px;
    }
    .login-are table th {
        width: 100%;
    }
    
    .summit-title-sub {
        font-size: 1.55rem;
        padding: 7px 15px;
    }
    
    .summit-title-wrap {
        height: 120px;
    }
    .summit-title-wrap .w-container .smt {
        height: 120px;
    }
    .summit-title-wrap .w-container .smt img {
        max-width: 80%;
    }

    .janp {
        right: 5px;
    }
    .janp a {
        width: 40px;
        height: 40px;
    }
    .janp a i {
        font-size: 3.0rem;
    }
    .footer .footer-copyright {
        line-height: 1;
    }
    .footer .footer-copyright small {
        font-size: 1.0rem;
    }

}

       
        
        
        
        
        
