@charset "utf-8";



.body {
    font-family: "ten-mincho" , serif;
}
.title {
    height: 310px;
    background-image: url(images/concept/メイン手元.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-shadow: 1px 1px 10px #4b2c14;
}


.title p {
    font-size: 14px;
    margin-top: 15px;
}

.site-menu ul li {
   margin: 20px 20px 20px 40px;
}
.site-menu a {
    transition: opacity 0.3s ease;
}
.site-menu a:hover {
    opacity: 0.4;
}
.feature {
    display: flex;
    justify-content: space-between;
    width: 930px;
    max-width: 90%;
    margin-top: 75px;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-start;
}
.feature img {
    width: 360px;
}
.feature-text {
    max-width: 500px;
    margin-right: 40px;
}
.reverse {
    flex-direction: row-reverse;
}
.reverse .feature-text {
    margin-left: 40px;
    margin-right: 0;
}
.feature-text h2 {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
}
.feature-text h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 1px;
    background-color: #000000;
    margin-top: 20px;
}
.feature-text p {
    font-size: 15px;
    line-height: 28px;
    margin-top: 25px;
}

.footer {
    margin-top: 100px;
}

@media (max-width:800px) {
    .feature {
        display: block;
        width: 500px;
        margin-top: 45px;
    }
    .feature-text {
        margin-right: 0;
    }
    .reverse .feature-text {
        margin-left: 0;
    }
    .feature img {
        width: 100%;
        height: auto;
        margin-top: 25px;
    }
}