@charset "UTF-8";

html {
    font-size: 16px;
    font-family: "Murecho", sans-serif;
    color: #006699;
    text-align: center;
}

* {
    box-sizing: border-box;
}
img {
    max-width: 100%;
}

body {
    margin: 0;
}


/* ヘッダー */

.header {
    color: beige;
    background-color:#66b3ff;

    display: flex;
    justify-content: space-around;

    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;

    padding: 0px;
}

.header a {
    color: beige;
    text-decoration: none;
}

.header a:hover {
    font-weight: bolder;
    
}

.nav_header ul {
    display: flex;
    justify-content: right;
    gap: 20px;
    list-style: none;
}



/* フッター */

footer {
    color: beige;
    text-align: center;

    background-color:#66b3ff;
    padding: 20px;
}

.footer a {
    color: beige;
    text-decoration: none;
}

.footer a:hover {
    font-weight: bolder;
    
}

.nav_footer ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
}



/* メイン */




/* index */
.kodawari, .main_item, .main_trend {
    border: 1px solid #ff9900;

    height: 70%;
    padding: 40px;
    margin: 0 150px;
    margin-bottom: 50px;
}
.kodawari h2, .kodawari h3 {
    font-size: 1.7rem;
}
.kodawari p {
    font-size: 1.4rem;
    padding: 50px 100px;
}

.main_item {
    display: flex;
    flex-direction: column;

}
.items, .trends {
    display: flex;
    justify-content: space-around;

    margin-top: 50px;
}

.item1, .trend1 {
    border: 5px solid #ff9900;
    border-radius: 50%;

    padding: 30px;


}

.index_title{
    font-family: "Potta One", system-ui;
    border-bottom: 5px dotted #ff9900;
    margin: 30px 500px;
}

.item1 img{
    border-radius: 50%;
}

.trend1 img{
    border-radius: 30%;
}

/* item */
.item_h1 {
    background-image: url(../images/星と月と動物パターン２.png);
    padding: 100px;
    margin-top: 50px;


}

.item_all {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.item_shoukai {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 100px;

    padding: 100px;
}

.item_container {
    border: 1px solid #ff9900;
}

.gazou {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@media (max-width:1020px) and (min-width: 768px) {  
    .item_shoukai {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 100px;
    
        padding: 100px;
    }
}

@media (max-width: 767px) {
    .header {
        font-size: 0.6rem;
        font-weight: bolder;
        
        padding-bottom: 20px;
    }

    .footer {
        font-size: 0.6rem;
        font-weight: bolder;
    }

    .item_shoukai {
        display: flex;
        flex-direction: column;
        gap: 100px;
    
        padding: 100px;
    }
    
}

/* ccontact */
.contact_body {
    background-image: url(../images/pastel_00061.jpg);
    background-position: center;
    background-repeat: repeat;

    padding: 200px;
}


