@charset "UTF-8";

/* 共通部分
------------------------------- */
html {
    font-size: 100%;
}
body{
    color: rgb(67, 67, 67);
    background-color: rgb(244, 220, 37);
}
a {
    color: rgb(67, 67, 67);
    text-decoration: none;
}
img {
    max-width: 100%;
    
}


/* レイアウト
------------------------------- */
.wrapper {
    max-width: 1000px;
    min-width: 200px;
    margin: 3rem auto;
    padding: 2 2rem;
}


/* ギャラリー
------------------------------- */
.title {
    font-size: 1rem;
    font-family: "Quicksand", sans-serif;
}

.grid {
    display: grid;
    gap: 1.5rem 1rem;
    grid-template-columns: repeat(2, 1fr);
  
    
    text-align: center;
}

.item {
    background-color: rgb(255, 255, 255);
    border-radius: 4px;
}

.item img {
    margin-top: 20px;
    
    margin-bottom: 0px;
    aspect-ratio: auto;
    object-fit: cover;

}

.item p {
    font-family: "Quicksand", sans-serif;
    justify-content: flex-start;
    text-align: left;
    padding-left: 20px;
    margin-bottom: 20px;

}

.item-big {
    grid-column: 1/3;
    grid-row: 1/2;
}

.item-info {
    border-radius: 0px;
    text-align: left;
    font-family: "Quicksand", sans-serif;
}

a:hover {
    color: #7c7c7c; 
}



/* フッター
------------------------------- */
.copyright {
    background-color: rgb(250, 107, 55);
    text-align: center;
    padding: 2rem 0;
    margin-top: 6rem;
    color: rgb(46, 36, 136);
    font-family: "Quicksand", sans-serif;
}
