@charset "utf-8";
body {
    overflow: hidden;
}

.inner {
    width: 1260px;
    margin: 0 auto;
    font-feature-settings: "palt";
    letter-spacing: 2px;
    color: #0b0b09;
}
main{
	margin: 50px auto 0;
}
h1 {
text-align: center;
color: #fff;
font-size: 36px;
line-height: 1.2;
padding: 0.5em;
background: #000;
}
table{
	border: solid 1px #ccc;
	width: 100%;
}
table th,
table td{
	padding: 30px 20px;
	border-bottom: solid 1px #ccc;
}
table th{
	border-right: solid 1px #ccc;
	background: #fafafc;
}
footer .inner{
	padding: 10px 0;
	background: #000;
	color: #fff;
	margin-bottom: 50px;
	text-align: center;
	font-size: 12px;
}
/*リンクの形状*/

a{
	color:#000;
}
#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    border-radius: 100px;
    width: 60px;
    height: 60px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 4rem;
    transition: all 0.3s;
    z-index: 9999;
}

#page-top a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f106";
}


/*リンクを右下に固定*/

#page-top {
    position: fixed;
    right: 10px;
    z-index: 2;
    bottom: 20px;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateY(100px);
}


/*　上に上がる動き　*/

#page-top.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*　下に下がる動き　*/

#page-top.DownMove {
    animation: DownAnime 0.5s forwards;
}

@media screen and (max-width: 1200px) {
    
    .inner {
        width: 98%;
        margin: 0 auto;
    }
    h1 {
    font-size: 22px;
   
}
	table th, table td {
    padding: 20px 10px;
}
	table th{
    width: 30%;
}
	
}
