@charset "UTF-8";

*{
    margin: 0;
    padding: 0;
    line-height: 1;
    /* 各ブラウザが持っている外部・内部余白、行間を初期化する */
    box-sizing: border-box;
    /* 幅を指定した要素（タグ）にborder、paddingを設定した際に要素が広がってしまうことを防ぐため */      
}

body {
    font-family: "Oswald", "Noto Sans JP", sans-serif;
    font-weight: 200;
    color: #333;
    /* サイト全体の文字色を定義しておく */
}



ul {
    list-style: none;
    /*   liの装飾を削除する  */
}


a {
    text-decoration: none;
    /*   aタグの初期設定。aタグはでデフォルトで持っている下線を消しておく */
}

img{
    max-width: 100%;
    /* 親要素の大きさ以上大きくならない */
    vertical-align: bottom;
    /* imgは、文字と同等扱いなので、必ず下部に余白（デセンダー）が出来てしまうのを防ぐ。他の防ぐ方法としてインライン要素をブロック要素に変える方法もあり */
}

.container{
    position: absolute;
    max-width: 1200px;
    inset:0;
    margin: auto;
    background-color: #fff;
    padding: 80px;
    z-index: 1;
    overflow: scroll;
    /* 記載内容がブラウザの高さを超えた売位スクロールさせるよう設定 */
}
.container::-webkit-scrollbar {
    display: none;
    /* スクロールバーが見えるときれいじゃないので、スクロールバーを非表示にする設定 */
}

#bg{
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(38, 82, 126, 0.6);
    width: 100%;
    height: 100vh;
}

h1{
    line-height: 25px;
    text-align: center;
    font-size: 25px;
    margin-bottom: 20px;

}

h2{
    font-size: 20px;
    line-height: 22px;
    padding-left: 5px;
    border-left: 4px solid #527982;
    width: 85%;
    margin: 20px auto 0;
}

a.back{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    line-height: 50px;
    text-align: center;
    font-size: 14px;
    background-color: #527982;
    color: #fff;

}

.logo-wrap{
display: flex;
.logo-box{aspect-ratio: 4/1;

    >img{width: 100%;
        object-fit: contain;}
}
}

.banner .content p.photo{
    padding: 20px 40px;
    display: flex;
    align-items: flex-start;
}

.banner .content p.photo img{
    padding: 10px;
    box-shadow: 2px 2px 8px #777;
}


.banner .content p.photo img:nth-child(1){
    width: 70%;
}
.banner .content p.photo img:nth-child(2){
    width: 30%;
}
.banner .content p.banner03 img:nth-child(1){
    width: 50%;
    }
.banner03{text-align: center;}


.content{

}

.content p.txt{
    line-height: 1.7;
    padding: 20px 100px;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 400;
}

.content ul{
    padding: 20px 100px;
    margin-bottom: 20px;
    list-style: disc;
}

.content li{
    font-size: 15px;
    font-weight: 400;
    padding: 5px 0;

}

.content dl{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap:20px 0;
    padding: 20px 100px;
    font-weight: 400;
}

.content dt{
    width: 30%;
    padding-left: 10px;


}
.content dd{
    width: 68%;
    font-size: 16px;
}

.content dd a{
    color: rgb(24, 24, 214);
}

.content p.link{
    width: 70%;
    margin: 50px auto 20px;
    height: 60px;
}

.content p.link a{
    display: block;
    line-height: 60px;
    text-align: center;
    background-color: #527982;
    font-weight: 400;
    color: #fff;
    border-radius: 20px;

}

@media (max-width:768px){

    h1{
        text-align: left;
    }

    .container{
        padding: 20px;
    }

    br.pc{
        display: none;
    }

    .banner .content p.photo {
        padding: 10px 5px;
        display: block;
    }

    .banner .content p.photo img:nth-child(1){
        width: 100%;
    }

    .banner .content p.photo img:nth-child(2){
        width: 60%;
    }

    .content p.txt{
        padding: 20px  30px;
    }

    .content ul{
        padding: 20px 40px;
    }
    .content ul li{
        line-height: 1.7;
    }
    
    .content dl{
        padding: 20px 30px;
        font-size: 14px;
        display: block;
    }
    .content dl dt{
        width: 100%;
        padding: 0;
        margin-bottom: 8px;
    }
    .content dl dd{
        width: 100%;
        margin-bottom: 20px;
        font-size: 14px;
    }

    .content p.link{
        width: auto;
    }

    .content p.link a{
        display: block;
        line-height: 45px;
        text-align: center;
        background-color: #444;
        color: #fff;
        border-radius: 10px;
        
        }

    .logo-wrap{
    flex-direction: column;
        }
    }