body {
    font-family: "Noto Sans JP", sans-serif;
}

header {
    width: 1200px;
    max-width: 90%;
    /* 任意の幅にする*/
    margin: 0 auto;
}

body {
    width: 1200px;
    max-width: 90%;
    margin: 0 auto;
}

header .row {
    display: flex;
    justify-content: center;
    /* 中央に置く*/
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 3px;
    /* 文字間隔を広げる*/
    margin: 30px;
    gap: 100px;
    /*テキストの中央寄せ」*/
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    padding: 20px;
}

.item {
    display: flex;
    align-items: center;
    border: 2px solid #4b2020;
    padding: 10px;
    background-color: #d7ded1f6;
    border-radius: 12px;
}

.item img {
    width: 150px;
    height: auto;
    margin-right: 15px;
    object-fit: cover;
    border-radius: 10px;
   }

.description h3 {
    margin: 0 0 5px 0;
    font-size: 24px;
}

.description p {
    margin: 0;
    font-size: 16px;
}


.section2 nav {
    margin: 0 auto;
    width: 1200px;
    display: flex;
}

.section2 nav ul {
    display: flex;
    width: 900px;
    margin: 0 auto;
    gap: 100px
}

.section2 ul a {
    text-align: center;
    font-size: 24px;
    padding: 30px;
    display: inline-block;
}

.section2 .text {
    font-size: 18px;
    padding: 30px;
    display: inline-block;

}

footer {
    text-align: center;
   }

footer .text {
    display: inline-block;
    background-color: rgb(108, 222, 222);
     padding: 10px;
     border-radius: 15px;
    margin-bottom: 20px;
}