@charset "utf-8";



/* ヘッダー 
-----------------------------------------------*/
.header{ position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color:white;
    background-position: -150px;
    background-image: url(../gallery/dog.jpg);
    background-position: 0px ;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.9;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    padding: 10px;


    }
.logo{font-family: 'Dancing script';
    font-size: 35px;
    color: rgb(9, 43, 118);
    margin-right:15px;
    }

.welcome{
    margin-top: -10px;
    font-size:30px;
    width: 400px;
}

header {
    border-bottom: 3px solid rgb(9, 43, 118);
        position: relative;
        width: 100%;
        /* top:95px; */
    }
    
header::after {
        content: "";
        border-bottom: 3px solid rgb(221, 63, 0);
        position: absolute;
        width: 100%;
        /* top: 2px; */
        z-index: 50;
        top: 105px;
        left: 0;
    }
        
    

.nav {list-style-type: none;
    font-family: 'Dancing script';
    font-size: 35px;
    display: flex;
    justify-content: center;
    gap: 12rem;
    margin-bottom: 50px;
    
    }
.nav1{text-decoration: none;
    padding: 50px;
    
}

body.cm{
    padding-top: 7.5rem;
    text-align: center;
}

/*メイン
-----------------------------------------------------------------*/
.grid{
    /* margin-top: 180px; */
    display: grid;
    gap: 3rem 2rem;
    grid-template-columns: repeat(3,1fr);
    background-color: rgb(255, 255, 255);
    text-align: center;
    
}

.item{
    aspect-ratio: 1/1;
    object-fit: cover;
}

.ico{
    text-align: left;
}
.ico img{
    width: 200px;
    padding-left: 70px;
}


.flx{
    display: flex;
    justify-content: space-between;
}
.usa{
    grid-column: 1/4;
    grid-row: 4/6;
    /*display: flex;*/
    gap: 4rem;
    /* width: 500%; */
    /* border: 1px solid; */
}
/*フッター
-------------------------------------------------------------------*/
.footer{font-family: 'Dancing script';
    font-size: 30px;
    color: rgb(9, 43, 118);
    display: flex;
    justify-content: center;
    margin-top: 50px;
    }
