@charset "UTF-8";
/* common */
body{
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,Liberation Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
}
#coupon{
    margin: 0 18px 50px;
}
h1{
    font-size: 26px;
}
h2{
    font-size: 18px;
}

/* header */
header img{
    width: 170px;
    margin: 13px auto;
}

/* title部 */
.coupon-title{
    display: flex;
    justify-content: center;
    padding: 30px 5vw 0;
    /* align-items: center; */

    color: #fff;
    text-align: center;

    background-color: #38A0CF;
    height: 220px;
    background-size: 105%;
    background-image: url("../img/head-cloud.svg");
    background-repeat: no-repeat;
    background-position: 0 102%;
}

/* 赤帯ヘルパー */
.coupon-helper{
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 14px;


    padding: 16px;
    margin-top: 10px;
    border-radius: 2px;
    
    background-color: #FFEEEE;
    font-size: 14px;
}
.coupon-helper p{
    font-weight: 700;
    color: #444;
}

.coupon-helper img{
    width: 25px;
}

/* 有効期限 表示 */
.coupon-limit{
    border-top: #1B5380 4px solid;
    border-bottom: #1B5380 4px solid;

    margin-top: 35px;
    margin-bottom: 40px;
    padding: 25px 0;
    text-align: center;
    color: #1B5380;
}
.coupon-limit p:first-child{
    font-size: 24px;
    font-weight: 700;
}
.coupon-limit p:not(first-child){
    font-size: 20px;
    font-weight: 700;
}
.coupon-limit .year , .coupon-limit .month, .coupon-limit .day{
    font-size: 30px;
    font-weight: 700;
}

/* coupon 画像 */
.coupon-img{
    margin: 0 auto;
    text-align: center;
}
.coupon-img h2{
    margin-bottom: 15px;
}
.coupon-img img{
    width: 350px;
    margin: 0 auto;

}
.coupon-img img:not(:last-of-type){
    margin-bottom: 20px;
}

/* button */

button[type="submit"]{
    width: 240px;
    height: 54px;
    display: block;
    cursor: pointer;

    background-color: #1B5380;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-align: center;

    border: 0;
    border-radius: 5px;
    margin: 20px auto 0;
}

/* complement */
.complement{
    margin-top: 25px;
    color: #666666;
}
.complement ul{
    padding-left: 20px;
}
.complement li{
    margin-top: 15px;
}

/* footer */
footer{
    background-color: #1B5380;
    padding: 0 18px;
    text-align: center;
}
footer .copyright{
    /* padding: 18px 0 10px; */
    padding: 20px 0;
    /* border-bottom: 1px solid #fff; */
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
}
footer .about-sdj{
    padding: 10px 0 12px;

    font-size: 12px;
    font-weight: 500;
    color: #fff;
}

footer a:visited,footer a:link,footer a:active{
    color: #fff;
}


/* ** auth ** */
/* label */
.auth-label{
    padding: 10px 0 20px;
    margin: 0 5%;
}

label{
    font-size: 16px;
    font-weight: 700;
}


/* input */
input[type="text"]{
    height: auto;
    min-height: calc(1.5em + 0.75rem);
    word-break: break-word;
    padding: 1rem 0.5rem;
    border-radius: 0.25rem;
    width: 100%;
    border:1px solid #252525;
}

input[type="text"]:focus {
    outline: solid 1px #252525;
}

select.birth_ym{
    height: 50px;
    padding: 6px 16px;
    border: 1px #252525 solid;
    border-radius: 5px;
    width: 80%;
    margin: 0 10%;
}

/* PC以上のケア */
@media screen and (min-width: 769px) {
    html{
        background-color: #fff;
    }
    header,main{
        width: 768px;
        margin: 0 auto;
    }
}