@charset "utf-8";

/* ここから　3ページ同じどころ */
html {
    scroll-behavior: smooth;
    font-family: "Shippori Mincho", serif;
    font-optical-sizing: auto;
    font-style: normal;
}



img {
    max-width: 100%;
    height: auto;
}

body {
    line-height: 1.8;
    max-width: 100%;
}

/*header nav stsrt  */
header {
    >p {
        width: 80px;
        position: absolute;
        left: 80px;
        top: 15px;
    }

    >h1 {
        font-size: 30px;
        font-weight: bold;
        margin: 0 200px;
    }

    /* header nav stsrt */
    >nav {
        background-color:#D9D9D9;
        /* position: fixed;
        z-index: 1; */
        padding: 10px;

        >ul {
            display: flex;
            justify-content: space-evenly;

            >li {
                font-size: 20px;
                font-weight: bold;

                >a:hover {
                    text-decoration: underline double;
                }
            }

        }
    }
}

/* header nav END */
/* ここまで同じどころ */

/* h1 {
    background-color: aqua;
    font-size: 42px;
    font-weight: 700;
    border: 4px solid #fff;
    border-radius: 20px;
    padding: 6px;
    margin: 10px auto;
    max-width: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .18em;
    background-clip: text;
} */

header article {
    display: flex;
    justify-content: space-around;
}

article h2 {
    font-size: 30px;
    padding: 10px;
    margin: 10px 10px 10px 20px;
    font-weight: bold;
}

article div dt {
    /* text-align: right; */
    margin: 10px 10px 10px 85px;
}

article div dd {
    font-size: 24px;
    font: bold;
    margin: 15px 0px 0px 30px;
}

/*  ヘッダーここまで */

/* メインここから */
.items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40Px;
    margin: 20px;
    text-align: center;
}

main h2 {
    font-size: 30px;
    margin: 60px 20px 20px 100px;
}

main h3 {
    font-size: 22px;
    margin-top: 5px;
    margin-bottom: 8px;
}

div p {
    margin-top: 8px;
}

.item09 {
    font-size: 18px;
    text-align: center;
    margin-top: 50px;
}

ul {
    list-style: none;
}
/* footer stasrt */
footer {
    text-align: center;
    margin: 30px 0;
}
/* footer END */