/* 共通設定*/
h1, h2, p {
    font-family: 'BIZ UDGothic', sans-serif;
}

li {
    list-style: none;
}

body {
    background-color:rgb(233, 240, 240);

} 

/* グリットの設定*/
.container {
    display: grid;
    grid-template-columns: 1fr 1fr 6fr 1fr 1fr;
    grid-template-rows: 65px  600px auto 65px 100px;

}

/*　1段目　*/
header {
    grid-column: 3;
    grid-row:1/2;
    background-color:rgb(208, 245, 208);
}

header h1 {
    line-height:65px;
    margin-top:0;
    text-align:left;
    padding-left:50px;
    font-size:2rem;
    color:rgb(114, 111, 111);

}

/*　2段目　*/
.top-wrapper {
    grid-column:3;
    grid-row:2;
    background-color:rgb(247, 250, 246);
    background-image:url("../images/jpg/IMG_0156.jpg");
    background-size:cover;
    position:relative;
}

.top-text {
    display:inline-block;
    width:50%;
    border:2px solid rgb(207, 243, 207);
    color:rgb(207, 243, 207);
    padding:10px;
    line-height: 25px;
    position:absolute;
    bottom: 5px;
    left:5px;
}


/*　3段目　*/
.main-wrapper {
    grid-column: 3;
    grid-row:3/4;
    height:auto;
    background-color:rgb(245, 245, 240);
    display: flex;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    text-align: center;
}

.index {
    width:25%;
    margin-bottom:50px;
    list-style: none;
}

.index-title {
    background-color: darkgreen;
    height:30px;
    color:whitesmoke;
    line-height: 30px;
    font-size:larger;
    margin-left:1px;
}

.button {
    display:inline-block;
    border:2px solid rgb(85, 85, 175);
    box-shadow:0px 5px rgba(000, 000, 000, .3);
    background-color:rgb(85, 85, 175);
    border-radius: 5px;
    color:white;
    width:80%;
    margin:0 auto;
    margin-top:10px;
    text-align: center;
    height:25px;
    line-height: 25px;
    opacity:0.8;
    text-decoration: none;
}

.category li a:hover {
    opacity:1;
}

.category li a:active {
    position:relative;
    top:5px;
    box-shadow: none;
    
}

.category_bird {
    grid-column: 1;
    grid-row: 1/5;
}

.category_others {
    grid-column: 2;
    grid-row: 1/5;
}



/*　4段目　*/
.icon-wrapper {
    grid-column: 3;
    grid-row:4/5;
    background-color:rgb(247, 250, 246);
    
    color:white;

}

/*　5段目　*/
.footer {
    grid-column: 3;
    grid-row:5/6;
    background-color:rgb(138, 138, 129);
    background-color: darkgreen;
    text-align: center;
    position: relative;
    color:rgb(207, 243, 207);
}

.footer a {
    color:rgb(207, 243, 207);
    text-decoration:none
}
.footer a:hover {
    color:goldenrod;    
}

.footer_li {

    width:25%;
    font-size:18px;
    position: absolute;
    top:20%;
}
.li1 {
    position: absolute;
    left:0%;
}
.li2 {
    position: absolute;
    left:37%;
}
.li3 {
    position: absolute;
    left:75%;
}

.copyright {
    width:100%;
    position: absolute;
    bottom:10px;
}









/* 写真ページ用css*/

.gallery-top_wrapper h1 {
    font-size:2em;
    line-height:65px;
    margin-top:30px;
    text-align:center;
    color:rgb(114, 111, 111);
}

.gallery-top_wrapper p {
    font-size:18px;
    color:#333;
    margin: 1.2em auto;
    max-width:80%;
    line-height:30px;
}


.gallery-container {
    margin:0 auto;
    width:80%;
}  

.gallery {
    margin:10px 50px;
    text-align:center;

}

.gallery img {
    width:380px;
    height:220px;
    object-fit: cover;
    padding:10px;
    /* filter:grayscale(100%); */
    transition: 0.7s;
}

.gallery img:hover {
   /* filter:grayscale(0); */
    transform:scale(1.1);
}

