@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans JP", sans-Serif;
    
}


/**************************
/* ヘッダー
**************************/

.header {
    width: 100%;
    height: 30vh;
    background-image: url(sorabig.jpg);
    background-position: center;
    background-size: cover;
    
}

.main-title {
    
    border-radius: 3px;
    font-size: 2.5rem;
    color: #000000;
    letter-spacing: 10px;
}

.sub-title{
    letter-spacing: 3px;
    color: #050505;
}

.nav-all {
    width: 100%;
    padding: 20px 0;
    text-align: center;
    position: fixed;
    
}

nav.sticky{
    position: fixed;
    left: 0;
    top: 0;
    background: #f8d50ee0;
    color: #030303;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 3%;
    transition: 0.6s;
    border-radius: 10px;
    z-index: 5;
}

nav.sticky .main-title{
    color: #070707;
    margin-top: 20px;
    font-size: 2rem;
    letter-spacing: 5px;
}

nav.sticky .sub-title{
    color: #000000;
}

nav.sticky ul {
    background-color: transparent;
    font-size: 1.1rem;
}

.logo {
    width: 400px;
    margin: 0 auto 20px auto;
    cursor: pointer;
    
}

.nav-links {
    background: #f8d50ee0;
    width: 100%;
    border-radius: 10px;
}

.nav-links li {
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}


.nav-links li a {
    text-decoration: none;
    color: #070707;
}

.nav-links li a:hover{
    opacity: 0.5;
    transition: all 0.2s;
    font-size: 1.3rem;
}



/**************************
/* 成約事例メイン
**************************/

.case1 h2{
    text-align: center;
    margin: 20px 0px 10px 0px;
    
}

.case1{
    border-bottom: #0c30fa 1px solid;
    padding-bottom: 15px;
}
.notice h1{
    
    width: 100%;
    height: 8vh;
    text-align: center;
    font-size: 30px;
    margin-bottom: 10px;
    padding: 15px 80px;
    border-bottom: #0c30fa 1px solid;
}


.case1 img{

    width: 800px;
    display: block;
    margin: 0 auto;
    
}


/**************************
/* フッター
**************************/

/* フッター */

.footer01{
    color: #070707;
    background: #f8d50ee0;
    text-align: center;
    margin-top: 20px;
    padding: 10px;
}

.footer01 a{
    color: #050505;
    text-decoration: none;
}

.footer01 a:hover{
    text-decoration: underline;
}

.footer01 .menu{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.menu li{
    margin: 0;
    padding: 0 20px;
}

.footer01 .copyright{
    margin: 0;
    padding: 10px 0 0 0;
}


@media (max-width: 768px) {
    /* 画面幅が768px以下の場合のスタイル */

    

    .header {
        width: 100%;
        height: 230px;
        background-image: url(soraS.jpg);
        background-position: center;
        background-size: cover;
        
    }

    .notice {
        font-size: 0.6rem;
    
        width: 100%;
        height: 2vh;
        text-align: center;
        margin-bottom: 60px;
        
    }

    .notice h1{
        font-size: 20px;
    }

    .pc{
        display: none !important;
    }

    .sp{
        width: 100%;
        height: 50vh;
        display: block !important;
    }

    .nav-links li{
        font-size: 0.8rem;
        margin: 10px 15px;
    }

    .nav-links li a:hover{
        opacity: 0.5;
        transition: all 0.2s;
        font-size: 1rem;
    }


    nav.sticky ul{
        display: flex;
        flex-direction: column;
       
    }

    nav.sticky ul li{
        font-size: 0.8rem;
        letter-spacing: 2px;
        margin: 0;
        margin-top: 10px;
    }

    nav.sticky .main-title{
        font-size: 1.8rem;
    }

    .menu li{
        padding: 0;
        margin: 0 5px;
        font-size: 0.8rem;
    }

    .copyright{
        font-size: 0.8rem;
    }

    .case1 img{
        width: 390px;
    }



}

@media (max-width: 480px) {
    /* 画面幅が480px以下の場合のスタイル */

    .notice h1{
        padding: 15px 20px;
        font-size: 21px;
    }

    .nav-links li{
        font-size: 0.6rem;
        margin: 10px 10px;
        
    }


}