*{
    padding: 0;
    margin: 0;
}

body{
    background-size:cover;
    background-attachment: fixed;
}

/*      ヘッダー      */

header{
    position: sticky;
    top:0;
    z-index:100;
}

header .headers{
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
    position: relative;
    background-color: rgb(221, 247, 233);
    box-shadow: 0px 10px 3px rgba(0, 255, 221, 0.082);
}

header .tab li{
    display: flex;
    justify-content:center;
    list-style:none ;
    align-items: end;
    flex-direction: row;
    min-width: 5em;
}

header .tab li+li{
    border-left:2px solid rgb(62, 139, 110) ;
    text-align: center;
}

header .tab li a{
    margin: 0 1em 0 1em;
    color: rgb(31, 44, 40);
    text-decoration: none;
    font-size:max(1vw, 10px);
}

header .tab li a:hover {
    color:rgb(0, 160, 147)  ;
    font-weight:bold
}

header .logo{
    position: absolute;
    padding: 0px 0px 0px 0.5vw;
}

header .logo img{
    width:10vw;
}


header .tab{
    margin: 1vw auto;
}

header ul{
    display: flex;
    justify-content: space-around;
    list-style: none;
}

/*      募集情報      */

main .tokushou h2{
    font-size: 1.4vw;
    text-align:center;
    padding: 2vw 0 0.5vw 0;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
    letter-spacing: 0.1rem;
}

main .tokushou .containerA{
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 70%;
    margin: 0 auto 3vw auto;
    text-align: center;
    background-color: rgba(0, 175, 131, 0.329);
    padding: 0.7vw;
    border-radius: 1vw;
}

main .containerA p{
    line-height: 1.5;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;

}

main .tokushou .right{
    height: 100%;
    width: 49.5%;
    background-color: rgba(255, 255, 255, 0.904);
    margin: 0 0 0 0.5%;
    box-shadow: 5px 5px 3px rgba(0,0,0,0.15);
    border-radius: 1vw;
}

main .tokushou .left{
    height: 100%;
    width: 49.5%;
    background-color: rgba(255, 255, 255, 0.904);
    margin: 0 0.5% 0 0;
    box-shadow: 5px 5px 3px rgba(0,0,0,0.15);
    border-radius: 1vw;
}

main .tokushou p{
    font-size: 1vw;
    text-align:start ;
    padding: 0.7vw 1vw;
}

main .tokushou .container_sub{
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 1.3vw 0 0 0;
    text-align: center;
    border-radius: 1vw;
}


main .containerB{
    margin: 20px auto 0 auto;
}

main .containerB h2{
    text-align: center;
}
main .containerB p{
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
    font-size: clamp(13px, 1.0vw, 30px);
    text-align: start;
    font-size: 1vw;
}

/*      施設の位置確認地図      */

main .tokushou .containerC{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 40%;
    padding: 3vw 2vw;
    margin: 0 auto 0 auto;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.904);
    border-radius: 1vw;
    box-shadow: 5px 5px 3px rgba(0,0,0,0.15);
}

main .containerC img{
    width: 100%;
    border-radius: 1vw;
    box-shadow: 5px 5px 3px rgba(0,0,0,0.15);
}

/*      戻るボタン      */

main .back{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin: 1vw auto 4vw auto;
}

main .back a{
    color: rgb(0, 3, 189);
    font-size: 1.3vw;
    text-decoration: none;
    padding: 0.2em 1em;
    background-color: rgba(255, 255, 255, 0.836);
    border-radius: 0.5vw;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}
main .back a:hover {
    color: rgb(189, 0, 25);
}

/*      フッター      */

footer{
    background-color: black;
    color: white;
    padding: 1em;
    text-align: center;
}
footer div img{
    width: 11em;
    padding: 0px 0px 0px 10px;
}

/*      アンカーポイントの位置調整      */

section::before {
    content:'';
    display: block;
    padding-top: 50px;
    margin-top: -50px;
}