@charset "utf-8";



/* 画面サイズ */

body {
	margin: 0px 0px 0px 0px;
	background-color: white; 
	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: white;
    padding: 0px 0px 0px 50px;
}

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


.box {
    box-sizing : border-box;           /*  罫線も含む長さ */
    background : white;                /* BOXの背景色 */
    border     : 0px solid #35557f;    
    width      : 110px;                
    height     : 110px;                
    margin     : 12px;                 /* BOX周囲の空き */
}


.container {
}

.main {
    max-height : auto;
    display    : flex;
    flex-wrap  : wrap;
    margin: 0px 0px 0px 0px;
    background-color: white; 
}

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





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


/* 文字 */

h_01 {
    font-family: verdana, sans-serif;
    font-size: 38px;
    color: cornflowerblue;
    font-weight: 800;
    letter-spacing: 0px;
    line-height: 110px;
}


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




/* 行間、装飾 */

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: honeydew; 
}

.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;
}
	





