/*タイトル画像*/
.section_about {
    background: url(../images/title/about-top.jpg) center / cover no-repeat;
}

/*代表挨拶*/
.message-name-en {
    font-size: 90px;
    font-weight: 600;
    color: var(--main-color);
    opacity: .4;
}
.message-name-jp {
    position: relative;
    font-size: 24px;
    margin-top: -25px;
    margin-bottom: 50px;
    font-weight: 500;
    padding-left: 2em;
}
.message-name-jp::after {
    content: "";
    width: 30px;
    height: 2px;
    background: #333;
    position: absolute;
    left: 10px;
    top: 45%;
}
.message-content {
    padding: 0 15px;
}
.message-heading {
    font-size: 28px;
    font-weight: 500;
}
.message-text {
    padding: 10px;
    line-height: 3;
}
@media screen and (max-width: 768px) {
    .message-name-en {
        font-size: 60px;
    }
    .message-name-jp {
        font-size: 18px;
        margin-top: -10px;
    }
    .message-name-jp::after {
        width: 20px;
    }
    .message-heading {
        font-size: 24px;
    }
    .message-text {
        line-height: 2;
        font-size: 14px;
    }
}

/*経営理念*/
.philosophy-content {
    position: relative;
}
.philosophy-text {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    padding: 30px 40px;
    width: 55%;
    top: 40%;
}
.philosophy-message {
    font-size: 20px;
    font-weight: 600;
}
.philosophy-description {
    padding: 10px 15px;
}
.philosophy-image {
    display: flex;
    justify-content: flex-end;
}
.philosophy-image img {
    border-radius: 20px;
    max-width: 750px;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .philosophy-text {
        position: relative;
        background: none;
        padding: 0;
        width: 100%;
        top: 0;
        margin-bottom: 10px;
    }
    .philosophy-description {
        padding: 10px;
        font-size: 14px;
    }
    .philosophy-image img {
        border-radius: 10px;
    }
}

/*会社概要*/
.company-info__item {
    display: flex;
    border-bottom: 2px solid #eee;
}
.company-info {
    margin: 25px auto;
}
dt.company-info__term {
    font-size: 18px;
    font-weight: 500;
    position: relative;
    max-width: 230px;
    width: 100%;
    padding: 25px 0 20px 25px;
}
dt.company-info__term::after {
    content: "";
    max-width: 230px;
    width: 100%;
    background: var(--main-color);
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -2px;
}
dd.company-info__desc {
    padding: 25px 25px 20px 45px;
}
.factory-item__map iframe {
    border-radius: 20px;
    margin: 10px 0 20px;
}
a.company-info__tel {
    color: var(--main-color);
    text-decoration: underline;
}
@media screen and (max-width: 768px) {
    .company-info__item {
        display: flex;
        border-bottom: 2px solid #eee;
        flex-direction: column;
    }
    dt.company-info__term {
        padding: 25px 0 15px 10px;
    }
    dt.company-info__term,
    dt.company-info__term::after {
        max-width: 100%;
    }
    dd.company-info__desc {
        padding: 25px 15px 20px;
}
}