@charset "UTF-8";
@import url(reset.css);
/* サイト内全般のスタイル */
* {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    width: 100%;
    min-width: 1000px;
}

body {
    line-height: 1.0;
    font-family: "メイリオ","Meiryo","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","MS ゴシック","Osaka",sans-serif;
    font-size: 1.4em;
}

/* section共通のスタイル */
section {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    text-shadow: 3px 3px 1px #333;
}

/* コンテンツを中央に設置するためのスタイル */
.inner {
    width: 800px;
    height: 300px;
    margin: auto;
}

/* 見出しと文章のスタイル */
h1 {
    color: white;
    font-size: 8rem;
    text-align: center;
    letter-spacing: 4px;
    text-shadow: 3px 3px 1px #333;
}

h1 span {
    font-size: .5em;
    margin-left: .5em;
}

h2 {
    font-size: 4rem;
    margin-bottom: 1em;
}

p {
    font-size: 2.2rem;
    line-height: 1.5;
}

/* ページトップのスタイル */
#page-top {
    background-image: url(../images/bg01.jpg);
    flex-wrap: wrap;
    align-content: center;
    background-attachment: fixed;
}

#page-top .my-name {
    width: 100%;
    text-align: center;
    margin-top: 2em;
    font-size: 3rem;
}

/* ページ01のスタイル */
#page-01 {
    background-image: url(../images/bg02.jpg);
    background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode: lighten;
    text-align: right;
    color: #333;
    text-shadow: 3px 3px 1px white;
}

#page-01 img {
    display: block;
    width: 20%;
    margin-top: 10px;
    margin-bottom: 40px;
    margin-left: auto;
}

#page-01 .inner {
    height: auto;
}

#page-01 h2 span {
    font-size: .5em;
    margin-left: .5em;
}

/* ページ02のスタイル */
#page-02 {
    background: rgba(255, 255, 255, 0.1);
    text-align: left;
    color: #333;
    text-shadow: none;
    position: relative;
}

#page-02::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url(../images/anime.jpg);
    background-position: center;
    background-size: cover;
    filter: grayscale(100%);
}

#page-02 .inner {
    height: auto;
}

#page-02 img {
    display: block;
    width: 38%;
    margin-top: 20px;
    margin-right: auto;
    border: 1px solid #666;
}

/* ページ03のスタイル */
#page-03 {
    background-image: url(../images/bg03.jpg);
    text-align: right;
}

/* ページ04のスタイル */
#page-04 {
    background-image: url(../images/bg04.jpg);
}

#page-05 {
    background-image: url(../images/bg05.jpg);
}