@charset "UTF-8";

.title {
    margin: 0 0 10px;
}

.image {
    margin-top: 50px;
    width: 1000px;
    height: 500px;
}

.image-small {
    width: 500px;
    width: 500px;
    margin: 50px auto 0;
}

.box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.photo1 {
    width: 400px;
    height: auto;
}

.photo2 {
    width: 550px;
    height: auto;
}

h3 {
    font-size: 20px;
    text-align: left;
    font-weight: 500;
    width: 220px;
    height: 30px;
    align-items: center;
}

h3::before {
    content: "";
    display: inline-block;
    margin-right: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #EDABAA;
}

/*説明文*/
.explanation {
    margin-top: 50px;
}

.sentence {
    display: flex;
    margin-top: 50px;
}

.sentence p {
    width: 780px;
}

/*レスポンシブ*/
@media(max-width:600px) {
    h2 {
        font-size: 7vw;
    }

    h3 {
        font-size: 4vw;
    }

    .image {
        margin-top: 12.5vw;
        width: 90vw;
        height: 45vw;
    }

    .image img {
        border-radius: 5vw;
    }


    .image-small {
        width: 90vw;
        width: 90vw;
        margin: 12.5vw auto 0;
    }

    .box {
        flex-direction: column;
        margin: 50px 0;
    }

    .photo1 {
        width: 90vw;
        height: auto;
    }

    .photo2 {
        width: 90vw;
        height: auto;
        margin-top: 7.5vw;
    }

    .sentence {
        flex-direction: column;
        margin-top: 7.5vw;
    }

    .sentence p {
        width: 90vw;
        margin-top: 2.5vw;
    }
}

@media(min-width:601px) and (max-width:1200px) {

    /*共通部分*/
    header {
        width: 100vw;
        padding: 0 2.5vw;
    }

    .div-common {
        width: 87.5vw;
    }

    h2 {
        font-size: 4.5vw;
    }

    .image {
        width: 87.5vw;
        height: 43.75vw;
    }

    .image-small {
        width: 60vw;
    }

    .photo1 {
        width: 35vw;
    }

    .photo2 {
        width: 48.1vw;
    }

    .explanation {
        width: 87.5vw;
    }
}