@charset "utf-8";

.title {
    height: 310px;
    background-image: url(../images/content/main.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-shadow: 1px 1px 10px #4b2c14;
}


.title h2 {
    font-family: 'Kaisei Tokumin', serif;
    font-size: 32px;
    font-weight: bold;
}

.title p {
    font-size: 14px;
    margin-top: 9px;
}

.title-text h2{
    text-align: center;
    margin-top: 50px;
    font-weight: bold;
}

.title-text h2::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background-color: #4b2c14;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.content{
    display: flex;
    background-color: #e3ccf0;
    justify-content: space-between;
    width: 930px;
    max-width: 90%;
    padding-left: 20px;
    padding-right: 0;
    margin-top: 75px;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-start;
}

.content img {
    width: 480px;
}

.content-text {
    font-size: 20px;
    max-width: 500px;
    margin-top: 50px;
    margin-right: 40px;
    line-height: 2;
}

.title-text2 h2{
    text-align: center;
    margin-top: 200px;
    font-weight: bold;
}

.title-text2 h2::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background-color: #4b2c14;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.site-menu li:hover {
    color: #ffffff;
}

.qrcode {
    margin-top: 80px;
    margin-bottom: 30px;
    margin-left: 40px;
    margin-right: 40px;
    font-size: 20px;
    text-align: center;
}

.qrcode p {
    margin-bottom: 20px;
}

.site-link {
    color: #9a56b8;
    font-weight: bold;
}

.site-link:hover {
    color: #ffffff;
}

@media (max-width: 800px) {
    .title img {
        width: 100%;
        height: auto;
        margin-top: 25px;
    }

    .content {
        flex-direction: column;
        align-items: center;
    }

    .content-text {
        font-size: 20px;
        margin-top: 25px;
        max-width: 100%;
    }

    .content img {
        width: 100%;
        height: auto;
        margin-top: 20px;
    }
}