@charset "UTF-8";

/* 全体設定 */
html {
    /* ブラウザのデフォルトフォントサイズになる */
    font-size: 100%;
}
body {
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background-color: #09000b;
    color: #ffffff;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
}
.font-english {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.wrapper {
    max-width: 1120px;
    margin: auto;
    padding: 0 1.5rem;
}
.align-center {
    text-align: center;
}
.page-title,
.heading-medium {
    font-family: "DotGothic16", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.5rem;
    text-align: center;
}

/* ヘッダー */
.cover {
    background-image: url(images/cover-header-s.jpg);
    background-size: cover;
    background-position: center bottom;
    height: 500px;
}
.page-header {
    padding-top: .5rem;
}
.logo {
    width: 80px;
}
.main-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1.5rem;
    list-style: none;
    margin: 1rem 0;
}
.main-nav a {
    color: #85f8fa;
    /* display: block;
    background-color: #ffffff2c;
    padding: .25rem .5rem;
    border-radius: 12px; */
}
.main-nav a:hover {
    color: rgb(203, 203, 203);
}
.page-title {
    margin-top: 7rem;
    line-height: 1.4;
    text-shadow: 0 1px 3px #000;
}

/* リンク */
.heading-medium {
    margin-top: 2rem;
    line-height: 1.4;
}
.link {
    list-style: none;
    text-align: center;
    margin-bottom: 4rem;
}
.link li {
    border-bottom: 1px solid #85f8fa5e;
}
.link a {
    color: #85f8fad3;
    display: block;
    /* 上下左右1rem */
    padding: 1rem;
}
.link a:hover {
    color: rgb(203, 203, 203);
}

/* フッター */
.page-footer {
    background-image: url(images/footer-s.jpg);
    background-size: cover;
    background-position: center;
    padding-top: 10rem;
}
.copyright {
    background-color:   #85f8fad3;
    text-align: center;
    padding: 1rem 0;
    margin-top: 15rem;
    color: #000;
}

/* デスクトップ用 */
@media(min-width: 800px) {
    /* ヘッダー */
    .cover{
        background-image: url(images/cover-header-l.png);
    }
    .page-header {
        display: flex;
        justify-content: space-between;
        padding-top: 1.5rem;
    }
    .page-title {
        font-size: 5rem;
    }

    /* リンク */
    .heading-medium {
        margin-bottom: 1rem;
    }
    .link a {
        padding: 2rem;
        font-size: 1.25rem;
    }

    /* フッター */
    .page-footer{
        background-image: url(images/footer-l.jpg);
        padding-bottom: 0;
    }
}