@charset "UTF-8";

body {
    font-family: 'Noto Sans JP', "Noto Serif JP", "Yuji Boku";
}

img {
    width: 100%
}

p {
    line-height: 1.7;
}

header {
    background-color: #FCB8B3;
    height: 57px;
    display: flex;
    align-items: center;
}

h1 {
    font-family: "Yuji Boku";
    font-size: 24px;
    color: #0054a7;
    padding: 11px 27px;
}

h2 {
    font-family: "Yuji Boku";
    font-size: 24px;
    color: #0054a7;
    text-align: center;
    margin-bottom: 32px;
}

span {
    font-family: "Noto Serif JP";
    font-size: 20px;
}

.intro,
.hobby {
    background-color: #fbfbfb;
    padding: 40px 20px;
}

.portrait {
    display: flex;
    justify-content: center;
}

.intro img {
    width: 157px;
}

.intro-s {
    display: flex;
    justify-content: center;
}

.intro p {
    color: #2b2b2b;
    font-size: 16px;
    max-width: 590px;
    margin-top: 32px;
}

.gallery {
    background-color: #FEFAE8;
    padding: 40px 20px;
}

.gallery-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.gallery-list li {
    color: #2b2b2b;
    max-width: 335px;
    flex: 1;
}

.gallery-list h3 {
    font-size: 20px;
    margin: 16px 0;
}

.gallery-list p {
    font-size: 14px;
}

.more-gallery {
    display: block;
    text-align: center;
    margin: auto;
    width: 160px;
    padding: 11px 38px;
    background-color: #FCB8B3;
    border: 1px solid #FCB8B3;
    color: #FEFAE8;
    font-size: 16px;
    box-shadow: 2px 2px 3px rgba(0, 84, 167, 0.5);
}

.hobby {
    color: #2b2b2b;
}

.hobby-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hobby-list li {
    flex: 1;
    max-width: 335px;
    padding: 24px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.h01 {
    background-image: url(../images/satuei.jpg);
}

.h02 {
    background-image: url(../images/volunteer.jpg);
}

.h03 {
    background-image: url(../images/kansen.jpg);
}

.hobby-list h3 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 16px;
}

.hobby-list p {
    font-size: 14px;
}

footer {
    background-color: #FCB8B3;
    height: 60px;
    font-size: 14px;
    color: #FEFAE8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
}

@media screen and (600px <=width) {

    .more-gallery {
        width: 266px;
        padding: 24px 38px;
        font-size: 20px;
    }

    .intro {
        padding: 60px 20px;
    }

    h2 {
        font-size: 30px;
        margin-bottom: 44px;
    }

    span {
        font-size: 22px;
    }

    .intro,
    .hobby {
        padding: 60px 20px;
    }

    .intro img {
        width: 270px;
    }

    .intro p {
        max-width: 590px;
        font-size: 18px;
        margin-top: 44px;
    }

    .gallery {
        padding: 60px 20px;
    }

    .gallery-list {
        margin-bottom: 60px;
    }

    .gallery-list li {
        max-width: 380px;
    }

    .gallery-list p {
        font-size: 16px;
    }

    .hobby-list h3 {
        font-size: 20px;
    }
}

@media screen and (1025px <=width) {

    header {
        height: 65px;
    }

    h1 {
        padding: 15px 120px;
    }

    .intro {
        padding: 80px 0;
    }

    h2 {
        font-size: 36px;
        margin-bottom: 56px;
    }

    span {
        font-size: 24px;
    }

    .intro,
    .hobby {
        padding: 80px 20px;
    }

    .intro img {
        width: 380px;
    }

    .intro p {
        font-size: 20px;
        margin-top: 56px;
    }

    .gallery {
        padding: 80px 20px;
    }

    .gallery-list {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        margin-bottom: 80px;
    }

    .gallery-list h3 {
        margin: 24px 0;
    }

    .more-gallery {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
        width: 26vw;
        max-width: 380px;
        padding: 30px 100px;
        border: 1px solid #FCB8B3;
        font-size: 24px;
        white-space: nowrap;
        box-shadow: 4px 4px 4px rgba(0, 84, 167, 0.5);
        transition: 0.2s;
    }

    .more-gallery:hover {
        background-color: #FEFAE8;
        color: #FCB8B3;
    }

    .hobby-list {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }

    .hobby-list li {
        max-width: 380px;
        padding: 40px;
    }

    .hobby-list h3 {
        font-size: 24px;
        text-align: center;
        margin-bottom: 24px;
    }

    .hobby-list p {
        font-size: 16px;
    }

    footer {
        font-size: 16px;
        padding: 24px 0;
        height: 76px;
    }

}