@charset "UTF-8";

/* *{
    outline: 1px solid #ff0000;
}  */

/* すべてのWebページに適用される */
html * {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #efefef;
    font-family: 'Sawarabi Mincho', serif;
    text-align: center;
}

p {
    line-height: 1.6;
    font-size: 18px;
    text-align: left;
    margin: 30px 10px;
    word-wrap:break-word;
}

header {
    padding: 25px 15px;
}

footer p {
    text-align: center;
    margin-bottom: 0;
}

nav {
    font-size: 15px;
    font-family: 'Zen Kurenaido', sans-serif;
}

h1 {
    font-size: 25px;
    font-family: 'Roboto Slab', serif;
}

h2 {
    font-family: 'Klee One', cursive;
    margin-top: 50px;
}

h3 {
    font-size: 18px;
}

ol {
    display: flex;
    justify-content: center;
    padding: 0;
}

ol li img {
    height: 25px;
    margin: 0;
}

ol li:not(:last-child) {
    margin-right: 10px;
}

li {
    list-style: none
}

a:hover {
    text-decoration: none;
    color: #797979;
}

a {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

/* index */
article {
    max-width: 800px;
    margin: 0 auto;
}

ul {
    padding: 0;
}

ul li img {
    width: 95%;
}

/*パララックス*/
.parallax_content {
    height: 900px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.front_content {
    padding: 20px;
    background-color: #efefef;
}

.parallax_content.para1 {
    background-image: url(../img/nu9.jpg);
}

.parallax_content.para2 {
    background-image: url(../img/l5.jpg);
}

.parallax_content.para3 {
    background-image: url(../img/s10.jpg);
}

.parallax_content.para4 {
    background-image: url(../img/b1.jpg);
}

/* pf(note以外) */
.pf img {
    width: 70%;
}

/* ブレークポイント600px */
@media (min-width:600px) {
    .gnavi {
        padding: 0 300px;
    }

    .pf img {
        width: auto;
        height: 250px;
        margin: 10px;
    }

    p {
        margin: 30px 10%;
        font-size: 15px;
    }

    main {
        margin-bottom: 5%;
    }
}

/* ブレークポイント1025px */
@media (min-width:1025px) {
    .gnavi {
        padding: 0 550px;
    }

    .pf img {
        width: auto;
        height: 450px;
        margin: 10px;
    }

    p {
        margin: 10px 20%;
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) {
    .parallax_content {
        height: 667px;
    }

    .parallax_content.para1 {
        background-image: url(../img/mbs2.jpg);
    }
    
    .parallax_content.para2 {
        background-image: url(../img/mbp3.jpg);
    }
    
    .parallax_content.para3 {
        background-image: url(../img/mbb4.jpg);
    }
    
    .parallax_content.para4 {
        background-image: url(../img/mbns10.jpg);
    }
}