@charset "utf-8";



/* 画面サイズ */

body {
    margin-right: auto;  /*中央寄せ*/
    margin-left : auto;  /*中央寄せ*/
    background-color: ;
    width: 1200px;
    height: 100%;
    padding-bottom: 0px;
    box-sizing: border-box;
}

.header {
    width: 1200;
    margin: 0px 0px 0px 0px;
    position: fixed;
    top: 0px;
    background-color: lavender;
}

.wrapper {
    width: auto;;
    margin: 0px 0px 0px 0px;
    background-color: lavenderblush;
	padding: 180px 300px 150px 300px;
    overflow-y: scroll;
	-ms-overflow-style: none;    /* IE, Edge スクロール非表示対応 ←効果？*/
       scrollbar-width: none;       /* Firefox  スクロール非表示対応 ←効果？*/
}

.wrapper::-webkit-scrollbar {    /* Chrome, Safari  スクロール非表示対応 ←効果？*/
    display: none;
} 


.container {
}

.main {
}

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






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


/* 文字 */

h_01 {
    font-family: verdana, sans-serif;
    font-size: 24px;
    color: lavenderblush;
    font-weight: 800;
    letter-spacing: 0px;
    line-height: 60px;
}

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

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

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

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





/* 行間、装飾 */

p {
    line-height: 30px;
    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: 18px;
    font-family: sans-serif;
    font-weight: 500;
    letter-spacing: 0px;
    width: auto;
   	background-color: white;
}

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

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





