@charset "utf-8";

.upperNav ul li:nth-of-type(1) a,
.upperNav ul li:nth-of-type(2) a{
    aspect-ratio:110/25;
    background-image:url(../images/top/btnBg01.jpg);
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center center;
    color:#dbd4c6;
}
.upperNav ul li:last-of-type a{
    aspect-ratio:225/25;
    background-image:url(../images/top/btnBg02.jpg);
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center center;
    color:#44403f;
}
.upperNav ul li a:hover{
    opacity:0.5;
}
.headerWrap nav ul li a{
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:0.8em;
}
.headerWrap nav ul li a span{
    padding:2px 5px;
    background-color:#a28978;
    color:#fff;
    font-size:0.6em;
    margin-right:2px;
}
.blinking{
    -webkit-animation:blink 1.2s ease-in-out infinite alternate;
    -moz-animation:blink 1.2s ease-in-out infinite alternate;
    animation:blink 1.2s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}