@charset "utf-8";



/* 画面サイズ */

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

.header {
    position: fixed;
    top: 0px;
    width: 100%;
    height: 200px;
    margin: 0px 0px 0px 0px;
    background-color: maroon;
    padding: 0px 0px 0px 50px;
}

.wrapper {
    max-width: 100%;
    margin: 0px 50px 0px 50px;
    background-color: ;
	padding: 200px 0px 150px 0px;
}

.container {
}

.main {
}

.footer {
	position: fixed;
    bottom: 0px;
    width: 100%;
    margin: 0px 0px 0px 0px;
}





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


/* 文字 */

h_01 {
    font-family: verdana, sans-serif;
    font-size: 38px;
    color: chocolate;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 100px; 
}

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

h_03 {
    font-family: '游ゴシック', sans-serif;
    font-size: 19px;
    color: gainsboro;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 50px; 
}

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

h_05 {
    font-family: sans-serif;
    font-size: 22px;
    color: brown;
    font-weight: 700;
    letter-spacing: 0px;
}

h_06 {
    font-family: sans-serif;
    font-size: 25px;
    color: brown;
    font-weight: 700;
    letter-spacing: 0px;
}



/* 行間、装飾 */

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



/* リンク文字 */

a {
    text-decoration: none;
}

a:link {
	color: gray;      
}

a:visited {
	color: gray;       
}

a:hover {
    color: red;    
}

a:active {
    color: red;    
}





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


/* グローバルメニュー */

.global-nav {
	font-size: 22px;
    font-family: sans-serif;
    font-weight: 500;
    letter-spacing: 0px;
    width: auto;
   	background-color: whitesmoke;
}

.nav-list {
	margin: 0px 0px 0px 0px;
    padding: 16px 0px 0px 0px; /*上下左右端から文字までの間隔*/
    text-align: center;
}

.nav-item {
	display: inline-block;
    padding: 15px 15px; /*リンク文字の上下、左右の間隔*/
    color: white;
    letter-spacing: 1px;
}
	





