/*------------------------------------------------------------
	about-page about (SMAPOTについて)
------------------------------------------------------------*/
/* SMAPOTの紹介 */
.about-sec {
    position: relative;
    margin: -8px 0 0 0;
    padding: 0px 0 120px;
    background: var(--main-color-orange);
}
.about-sec::before {
    position: absolute;
    content: "";
    top: -30px;
    left: 50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--main-color-white);
    z-index: 10;
}
.about-sec::after {
    position: absolute;
    content: "";
    bottom: -100px;
    right: -60px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: var(--main-color-white);
    z-index: 10;
}
.about-sec .about-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 100;
}
.about-sec .about-box .about-title {
    margin: 0 0 40px 0;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.8;
    letter-spacing: 0.06em;
    color: var(--accent-color-1);
}
.about-sec .about-box .about-text {
    font-size: 1.6rem;
    font-weight: 400;
    text-align: center;
    line-height: 1.8;
    letter-spacing: 0.06em;
    color: var(--text-color-black);
}

/* タブレット  */
@media all and (max-width: 768px) {
    .about-sec .about-box .about-title {
        margin: 0 0 40px 0;
        font-size: 2.5rem;
    }
}
