@charset "UTF-8";
/* CSS Document */



header#siteheader {
min-width: 1024px;
max-width: 1280px;
box-sizing: border-box;
margin: 0px auto;
padding: 20px 30px 0px;
position: relative;
}

figure#logo {
display: block;
width: 170px;
padding: 0px 6px 0px 0px;
position: relative;
}
figure#logo a {
width: 170px;
height: 64px;
display: inline-block;
text-indent: 100%;
white-space: nowrap;
overflow: hidden;
background-image: url(../../images/logo.svg);
background-repeat: no-repeat;
background-size: contain;
}
figure#logo figcaption {
position: absolute;
top: auto;
right: auto;
bottom: 10px;
left: 100%;
white-space: nowrap;
font-size: 1.2rem;
color: #999;
}

header#siteheader > div {
position: absolute;
top: auto;
right: 30px;
bottom: 0px;
left: auto;
}
header#siteheader div div {
border-bottom: solid 1px #D8C1E0;
padding: 10px 4px 4px 10px;
text-align: right;
}
header#siteheader h1 {
display: inline;
font-size: 1.6rem;
letter-spacing: 2px;
}
header#siteheader h1 span {
font-size: 1.2rem;
padding-right: 20px;
letter-spacing: 0px;
}
header#siteheader p {
font-size: 1.4rem;
display: inline;
}
header#siteheader p em {
font-size: 1.8rem;
}
header#siteheader p strong {
padding: 0px 0px 0px 10px;
color: #FF0000;
}
header#siteheader ul {
display: flex;
justify-content: flex-end;
list-style-type: none;
padding: 6px 0px 0px 0px;
}
header#siteheader ul li {
margin: 0px;
padding: 0px 0px 0px 16px;
}
header#siteheader ul li a {
display: block;
color: #999999;
padding: 0px 0px 0px 24px;
background-position: left center;
background-size: contain;
background-repeat: no-repeat;
text-decoration: none;
}
header#siteheader ul li a:hover,
header#siteheader ul li a:active {
opacity: 0.8;
}

header#siteheader ul li:nth-of-type(1) a {
background-image: url(../../images/icon/icon_user.svg);
}
header#siteheader ul li:nth-of-type(2) a {
background-image: url(../../images/icon/icon_pay.svg);
}
header#siteheader ul li:nth-of-type(3) a {
background-image: url(../../images/icon/icon_logout.svg);
}




nav#globalnav {
padding: 30px 30px 0px;
margin: 0px auto;
min-width: 1024px;
max-width: 1280px;
box-sizing: border-box;
}
nav#globalnav ul {
list-style-type: none;
display: flex;
justify-content: space-between;
padding: 0px;
}
nav#globalnav ul li {
flex-grow: 1;
margin: 0px 6px 0px 0px;
position: relative;
}
nav#globalnav ul li:last-of-type {
margin: 0px;
}

nav#globalnav ul li a {
display: block;
border: solid 1px #CCCCCC;
border-radius: 20px;
line-height: 38px;
font-size: 1.6rem;
text-align: center;
background-color: #EEEEEE;
background-image: linear-gradient(180deg,rgba(255,255,255,1),rgba(255,255,255,0));
background-size: 100% 100%;
box-shadow: 0px 0px 6px 0px #DEDEDE;
text-decoration: none;
white-space: nowrap;
color: #999;
font-weight: 500;
position: relative;
transition-duration: 500ms;
letter-spacing: 1px;
}
nav#globalnav ul li a:hover {
background-color: #CCCCCC;
}

nav#globalnav ul li.now a,
nav#globalnav ul li.now a:hover{
border: solid 1px #BF99CC;
color: #FFFF99;
background-color: #BF99CC;
background-image: linear-gradient(180deg,rgba(204,174,214,1),rgba(204,174,214,0));
}



.tutorial {
display: block;
position: absolute;
top:100%;
right: 0px;
bottom: auto;
left: 0px;

}
.tutorial em {
display: block;
white-space: nowrap;
background-color: rgba(225, 50, 50, 0.5);
color: #FFF;
padding: 6px;
border-radius: 4px;
position: relative;
top: 6px;
right: 0px;
bottom: auto;
left: 0px;
animation-name: tutorial;
animation-duration: 3000ms;
animation-iteration-count: infinite;
text-align: center;
box-sizing: border-box;
margin: auto;
}
.tutorial em::before {
content: "";
display: block;
width: 0px;
height: 0px;
border-style: solid;
border-color: transparent transparent rgba(225, 50, 50, 0.5) transparent;
border-width: 0px 4px 6px;
position: absolute;
top: auto;
right: 0px;
bottom: 100%;
left:0px;
margin: 0px auto;

}
@keyframes tutorial {
0% {top:6px;}
50%{top:-4px;}
100%{top: 6px;}
}
}


