@charset "UTF-8";

/*--------------------------------------------------------------------
=== [共通レイアウト] ====================================
 -------------------------------------------------------------------*/
html {
	scroll-behavior: smooth;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.5;
    font-weight: 500;
    color: #333;
    font-size: 16px;
}

body{
 	display:flex;
  	flex-direction:column;
 	min-height: 100vh;
}

#wrapper{
	display:contents;
	flex-direction:column;}
main{
    flex: 1;
	display:flex;
	flex-direction:column;
}

@font-face
{
font-family: 'Hannari';
src: url('https://cdn.leafscape.be/hannari/hannari_web.woff2')
format("woff2");
}

a {
    transition: 0.3s;
}

a:hover {
    opacity: 0.7;
}

img {
    width: 100%;
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    margin: 0 40px;
    background-color: #fff;
    box-shadow: 0px 5px 5px 0px rgba(4, 0, 0, 0.05);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    justify-content: space-between;
    padding:20px 40px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
	align-items: center;
}

header h1 {
	width: 250px;
/*   font-family: "vdl-penletter", sans-serif;
font-weight: 500;
font-style: normal;
    font-size: 24px;
    color: #fe83a2;*/
}

header #gNav ul {
    display: flex;
    font-size: 16px;
    font-family: "Hannari";
}

header #gNav ul li {
    margin-left: 50px;
}

header #gNav ul li a {
    display: flex;
    align-items: center;
}

header #gNav ul li:nth-child(1) a:before {
    content: "";
    background-image: url(../img/ico_news.png);
    width: 30px;
    height:27.5px;
    background-size: contain;
    display: inline-block;
    background-repeat: no-repeat;
    margin-right: 5px;
}

header #gNav ul li:nth-child(2) a:before {
    content: "";
    background-image: url(../img/ico_beginner.png);
    width: 22px;
    height:30px;
    background-size: contain;
    display: inline-block;
    background-repeat: no-repeat;
    margin-right: 5px;
}

header #gNav ul li:nth-child(3) a:before {
    content: "";
    background-image: url(../img/ico_trouble.png);
    width: 30px;
    height:30px;
    background-size: contain;
    display: inline-block;
    background-repeat: no-repeat;
    margin-right: 5px;    
}
  
header #gNav ul li:nth-child(4) a:before {
    content: "";
    background-image: url(../img/ico_service.png);
    width: 30px;
    height:30px;
    background-size: contain;
    display: inline-block;
    background-repeat: no-repeat;
    margin-right: 5px;    
}
  
header #gNav ul li:nth-child(5) a:before {
    content: "";
    background-image: url(../img/ico_company.png);
    width: 30px;
    height:30px;
    background-size: contain;
    display: inline-block;
    background-repeat: no-repeat;
    margin-right: 5px;    
}
  
header #gNav ul li:nth-child(6) a:before {
    content: "";
    background-image: url(../img/ico_contact.png);
    width: 30px;
    height:24px;
    background-size: contain;
    display: inline-block;
    background-repeat: no-repeat;
    margin-right: 5px;    
}
  
footer {
    background-color: #fceff2;
    color: #fe83a2;
    font-size: 14px;
    line-height: 100px;
    text-align: center;
}
