@charset "utf-8";



/* 画面サイズ */

body {
	margin: 0px 0px 0px 0px;
	background-color: white; 
	height: 100%;
    padding-bottom: 0px;
    box-sizing: border-box;
}

.wrapper {
    max-width: 760px;
    margin: 150px 0px 0px 0px;
    background-color: white; 
}






/* ■■■■■■■■■■■■■■■■■■■■■■■■ */


/* 文字 */

h_01 {
    font-family: '游ゴシック', sans-serif;
    font-size: 18px;
    color: deepskyblue;
    font-weight: 500;
    letter-spacing: 1px;
}

h_02 {
    font-family: '游ゴシック', sans-serif;
    font-size: 14px;
    color: darkgray;
    font-weight: 400;
    letter-spacing: 0px;
}

h_03 {
    font-family: '游ゴシック', sans-serif;
    font-size: 17px;
    color: darkgray;
    font-weight: 400;
    letter-spacing: 0px;
}

h_04 {
    font-family: '游ゴシック', sans-serif;
    font-size: 14px;
    color: white;
    font-weight: 500;
    letter-spacing: 0px;
}

h_05 {
    font-family: '游ゴシック', sans-serif;
    font-size: 17px;
    color: white;
    font-weight: 600;
    letter-spacing: 0px;
}

h_06 {
    font-family: '游ゴシック', sans-serif;
    font-size: 18px;
    color: orangered;
    font-weight: 800;
    letter-spacing: 0px;
}

h_07 {
    font-family: '游ゴシック', sans-serif;
    font-size: 18px;
    color: #00CC00;
    font-weight: 800;
    letter-spacing: 0px;
}

h_08 {
    font-family: '游ゴシック', sans-serif;
    font-size: 17px;
    color: silver;
    font-weight: 600;
    letter-spacing: 0px;
}






/* 行間、装飾 */

p {
    line-height: 10px;
    text-decoration: none;
}



/* リンク文字 */

a {
    text-decoration:none
}

a:link {
    color:black;    
}

a:visited {
    color:black;    
}

a:hover {
    color:red;    
}

a:active {
    color:red;    
}



/* ■■■■■■■■■■■■■■■■■■■■■■■■ */

.area {
    width: 150px;
    height: 150px;
    background-color: black;
    border: 0;
    overflow: hidden;
}
.marquee {
    padding: 80px 0px 0px 0px;
    animation-name: marquee;
    animation-duration: 7s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}
@keyframes marquee {
    from    { transform: translateY(-100%); } 
    100%,to { transform: translateY(-0%); }
}


/*
.marquee {
    padding-left: 0px;
    animation-name: marquee;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}
@keyframes marquee {
    from    { transform: translateY(-150%); } 
    50%,to { transform: translateY(-0%); }
}
 */


/* 
.area {
    width: 300px;
    border: 1px solid #ddd;
    overflow: hidden;
}

表示領域に合わせてサイズと余白を設定

.marquee {
    width: 300px;
    padding-left: 300px;
    white-space: nowrap;

    animation-name: marquee;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
@keyframes marquee {
    from    { transform: translate(0%); } 
    100%,to { transform: translate(-100%); }
}
*/