@charset "UTF-8";
/* --------------------------------------------

	FileName	:	style.css

-------------------------------------------- */

.main-contents-inner h1+h2 {
    text-align: center;
    font-size: 1.7em;
    font-weight: bold;
}
.main-contents-inner h1+h2+p {
    font-size: 1.1em;
    padding: 0 150px;
    line-height: 180%;
    margin: 40px 0 80px;
}

.main-contents-inner article {
    padding: 0 120px;
}
.main-contents-inner section {
    display: flex;
    justify-content: space-between;
    padding: 0 0 50px;
    margin: 0 0 50px;
    border-bottom: 1px dotted #000;
}
.main-contents-inner article section:nth-child(2) {
    flex-direction: row-reverse;
}
.main-contents-inner article section:last-child {
    border: none;
}
.main-contents-inner section h2 {
    width: 25%;
}
.main-contents-inner section figure {
    width: 70%;
}
.main-contents-inner section img {
    width: 100%;
}

@media screen and (max-width: 768px) {
.main-contents-inner h1+h2 {
    font-size: 1.3em;
}
.main-contents-inner h1+h2+p {
    padding: 0;
    font-size: 1em;
    line-height: 160%;
}
.main-contents-inner article {
    padding: 0;
}
.main-contents-inner section {
    display: block;
}
.main-contents-inner section h2 {
    width: 75%;
    margin: 0 auto 20px;
}
.main-contents-inner section figure {
    width: 100%;
}
}



