@charset "UTF-8";
body{
    color: #003a3d;
    font-size: 1em;
    line-height: 1.5em;
    font-family: "游ゴシック体", "UD デジタル 教科書体 N-R", cursive;
}

/*背景*/
.container{
	position: relative;
}
.inner{
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   clip-path: inset(0);
}
.bg{
    position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background-image: url("../images/index/cover_new.png");
		background-size: cover;
		background-position: center;
		z-index: -1;
	@media screen and (min-width: 960px){
		width: 100%;
	}
}
html{
    overflow-x: hidden;
}
header{
    width: 100%;
    height: 75px;
    position: absolute;
    top: 0;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1;
    @media screen and (min-width:960px){
        height: 100px;
    }
}
.headerlogo img{
    margin-top: -10px;
    width: 300px;
    margin-left: 10px;/*padding...要素の中にマージンをつくる　margin…要素の外にマージンをつくる*/
    @media screen and (min-width:960px){
        width: 400px;
    }
}

/*更新履歴*/
.informationarea{
    position: absolute;
    width: 75%;
    height: 300px;
    margin-top: 800px;
    margin-left: 20px;
    @media screen and (min-width: 960px){
        margin-top: 300px;
        width: 100%;
        margin-left: 100px;
	}
}
.TextTyping{
    @media screen and (max-width: 480px) {
        margin-left: 40px;
		margin-top: -430px;
        width: 110%;
	}
}
.maininformation{
    width: 350px;
    height: 300px;
    overflow-y: scroll;
    /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
    -ms-overflow-style: none;
    /*Firefoxへの対応*/
    scrollbar-width: none;
    @media screen and (min-width: 960px){
        width: 600px;
        float: right;
	}
}
 /*Google Chrome、Safariへの対応*/
.contents_box::-webkit-scrollbar{
    display: none;
}
.nanka{
	float: left;
	width: 100px;
	height: 100px;
	@media screen and (max-width: 480px){
		margin-top: 0px;
		z-index: 10;
	}
	margin-bottom: 30px;
}
.maininformation h2{
	border-bottom: 2px solid #5bbcad;
    @media screen and (min-width: 960px){
        width: 450px;
	}
}

.maininformation dd a {
	color: #333333;
	text-decoration: none;
}
.maininformation dd a:hover {
	color: #0d8f7b;
	transition: all 0.5s 0s ease;
}
.maininformation dd a .current {
	border-bottom: 3px solid #0d8f7b;
}

.dt{
    color: #333333;
}

/*========= タイピング ===============*/
.TextTyping{
    position: absolute;
}
.TextTyping span {
    display: none;
}
/*文字列後ろの線の設定*/
.TextTyping::after {
    content: "|";
    animation: typinganime .8s ease infinite;
}

@keyframes typinganime{
    from{opacity:0}
    to{opacity:1}
}
  
@keyframes typinganime{
    from{opacity:0}
    to{opacity:1}
}
footer{
    position: absolute;
    margin-top: 1200px;
    width: 100%;
    height: 50px;
    @media screen and (min-width: 960px) {
        margin-top: 0;
		bottom: 0;
	}
}
footer .copyright{
	color: #003a3d;
	text-align: center;
}