@charset "utf-8"; 
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Hirago Kaku Gothic pro','Meiryo','sans-serif';    
    font-size: 15px;
    margin: 0 auto;
    width: 1200px;
    /*background-color: #f5e2e2;*/
    display: grid;
    grid-template :
    "header header " 30px
    "nav    nav    " 60px
    "visual aside  " 300px
    "main   aside  " 475px
    "footer footer " 50px
    /880px 320px;
}
:root {
    --body:#585858;
}
header {
    grid-area: header;
}
h1{
    width: 190px; 
	font-weight: normal;
    font-size: 13px; 
    padding-left: 20px;
}
header p {
    width: fit-content;
    font-size: 11px;
}
header .na {
    margin-left: 400px;
    margin-top: 3px;
    color: var(--body);
    font-size: 12px;
}
header .na img {
    margin-right: 4px;
}

nav {
    grid-area: nav;
    position: relative;
    display: grid;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}
h2 {
    position: absolute;
	width: 300px;
	left: 40px;
	top: 20px;
	font-size: 15px;
    font-weight: normal;
    /*background: #a79cbd;*/
}
h2 span {	
    font-size: 12px;
	padding-top: 2px;
}
nav ul {
    display: flex;
    gap: 5px;
}
#navi {
    display: flex;
    justify-self: flex-end;
    margin-right: 30px;
    font-size: 12px;
    height: 50px;
    text-align: center;
}
.navi {
    width: 120px;
    background-color: #f4f7ec;
    padding-top: 7px;
}

.navi a {
    color: #313131;
}
.navi a:hover {
    color: #e6a8d6;
    transition: 0.3;
}
.inner {
    width: 72px;
    background-color: #fff;
}

.navi span {
    font-size: 12px;
    margin: 0;
}
.navi .btn {
    background: #e8edf8;
}
#visual {
    grid-area: visual;
	text-align: center;
}
#visual img {
    padding-top: 30px;
}
main {
    grid-area: main;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    background-color: #fff;
}
#catch {
    position: absolute;
    top: 95px;
    left: 650px;
    width: 400px;
    height: 30px;
}
#catch p {
    font-size:10px;
    letter-spacing: 1px;
}
section {
    display: flex;
    flex-wrap: wrap;
}
.item1 {    
    width: 400px;
    margin-top: 15px;
    margin-right: 50px;
	font-size:15px;
	padding-left: 15px;
    line-height: 1.7em;
	background: #fff;	/*-----FFF----------------*/
}
.message1 {
    width: 100%;
	font-size:15px;
    color: var(--body); 
	font-weight: bold;
	margin-bottom:10px;
	border-left: 7px solid #ec6941;
	border-bottom: 1px solid #ec8d70;
	padding-left: 5px;
	line-height: 1.2em;
}
.message2 {
    width: 100%;
    font-size:15px;
    color: var(--body); 
    font-weight: bold;
    margin-top: 15px;
    margin-bottom:5px;
    border-left: 7px solid #f8c64e;
    padding-left: 5px;
    border-bottom: 1px solid #f8c64e;
    /*margin-bottom: 10px;
    margin-top: 15px;*/
    line-height: 1.2em;
}
.message3 {
    margin-top: 15px;
}
.item2 {
    width: 400px;
    font-size:15px;
}
.message4 {
    width: 365px;
    height: 25px;
    line-height:1.8em;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 7px;
    background: #eeeeee;
}
.message5 {
    width: 365px;
    height: 25px;
    line-height:2em;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 7px;
    font-size: 13px;
background: #eeeeee;
}
.fyr {
    padding-top: 10px;
}
h3 {
    height: 18px;
    font-size: 15px;
    color: var(--body); 
    margin-left:15px;
    margin-top: 10px;
    border-left: 7px solid #9cd47b;
	padding-left: 5px;
	border-bottom: 1px solid #9cd47b;
	line-height: 1.2em;
}

h3 span {
    font-weight: normal;
    font-size: 13px;
    color: var(--body); 
} 
aside {
    grid-area: aside;
    height: 1fr;
    padding-top: 30px;
    background-color: #fff;
}
h4 {
    font-size: 13px;
    padding-bottom: 5px;
    color: var(--body); 
}
aside .message1 {
    padding-top: 15px;
    
    border-style: none;
    font-size: 13px;
}
aside p {
    font-size: 12px;
    font-weight: normal;
    line-height: normal;
    color: var(--body);
}
footer {
    grid-area: footer;
}
