@charset "UTF-8";

body {
    margin: 0;
    padding: 0;
    background-color: #e9e9e9;
}

/*-------------------------------
　背景画像エリア（ここが全体の基準）
-------------------------------*/
.bg-scroll-box {
    width: 100%;
    min-height: 100vh;
    background-image: url("../img/iStock-sky011.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

/* 著作権表記を「画像の上に重ねる」ための基準点 */
position: relative;

/* タイトルなどを中央に配置するFlexbox */
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 20px;
}

 
/*-------------------------------
　画面中央に配置されるコンテンツ
-------------------------------*/
.content {
    color: white;
    text-align: center;
    max-width: 600px; /* 必要に応じて幅を制限 */
    width: 100%;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.content h1 {
    margin-top: 0;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.5;
}

.content p {
    font-size: 16px;
    font-family:"Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 0;
}

.content a {
    margin-top: 20px;
    display: inline-block;
    color: white;
}

.content a.enter {
    color: royalblue;
    display: inline;
    margin-top: 0;
}

/*-------------------------------
　著作権表記（画面下部に配置）
-------------------------------*/
p.copyright {
    position: absolute; /* 背景画像エリアを基準に自由に配置 */
    bottom: 20px; /* 写真の一番下から　20px　上に配置 */
    left: 0;
    width: 100%; /* 横幅いっぱいに広げて中央揃えを有効化 */
    text-align: center;
    color: white;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 12px;
    margin: 0; /* 不要な外側余白をリセット　*/
    z-index: 10;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/*-------------------------------
　スマホ用（幅が768px以下の場合）
-------------------------------*/
@media (max-width:768px) {
    .bg-scroll-box {
        background-image: url("../img/sky002.jpg");
    }

.content h1 {
    font-size: 20px;
    p.copyright {
        bottom: 15px;
        font-size: 11px;
    }
}
}