/* About Page Styles */

.about {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 80px 24px;
}


/* 代表挨拶セクション */

.about-greeting {
    margin-top: clamp(100px, 7.8vw, 200px);
    margin-bottom: clamp(100px, 7.8vw, 200px);
}

.about-greeting__images {
    position: relative;
    margin-bottom: 48px;
    height: 480px;
}

.about-greeting__image-main {
    width: 50%;
    height: 400px;
}

.about-greeting__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-greeting__image-sub {
    /* position: absolute; */
    top: 80px;
    right: 0;
    width: 45%;
    /* height: 400px; */
    z-index: 2;
}

.about-greeting__image-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-greeting__title {
    font-size: clamp(32px, 2.5vw, 48px);
    font-weight: bold;
    color: #1a2a3a;
    margin-bottom: clamp(100px, 7.8vw, 200px);
    text-align: center;
}

.about-greeting__image {
    text-align: center;
    margin-bottom: 40px;
}

.about-greeting__image img {
    width: 50%;
    height: auto;
    border-radius: 30px;
    aspect-ratio: 7 / 4;
    object-fit: cover;
    object-position: center top;
}

.about-greeting__info {
    text-align: center;
    margin-bottom: 40px;
}

.about-greeting__company {
    font-size: clamp(20px, 1.56vw, 40px);
    margin-bottom: 8px;
}

.about-greeting__position {
    font-size: clamp(16px, 1.25vw, 32px);
    margin-bottom: 4px;
}

.about-greeting__name {
    font-size: clamp(24px, 1.8vw, 44px);
    font-weight: bold;
}

.about-greeting__text {
    /* max-width: 800px; */
    width: 75%;
    margin: 0 auto;
    line-height: 2.3;
}

.about-greeting__text p {
    font-size: clamp(18px, 1.4vw, 32px);
    margin-bottom: 24px;
    font-weight: 600;
}

.about-greeting__text p:last-child {
    margin-bottom: 0;
}


/* 会社概要セクション */

.about-company {
    /* max-width: 800px; */
    margin: 0 auto;
    width: 80%;
}

.about-company__title {
    font-size: clamp(32px, 2.5vw, 48px);
    font-weight: bold;
    color: #1a2a3a;
    margin-bottom: 48px;
    text-align: center;
}

.about-company__table {
    font-size: clamp(18px, 1.4vw, 32px);
    width: 100%;
    border-collapse: collapse;
}

.about-company__table th,
.about-company__table td {
    padding: 24px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
}

.about-company__table th {
    width: 200px;
    text-align: left;
    font-weight: bold;
    color: #1a2a3a;
}


/* コンセプトセクション */

.about-concept {
    margin-bottom: clamp(100px, 7.8vw, 200px);
    padding: 0 20px;
}

.about-concept__title {
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.6;
}

.about-concept__title-main {
    display: block;
    font-size: clamp(48px, 3.7vw, 96px);
    font-weight: bold;
    color: #1a2a3a;
    margin-bottom: 8px;
}

.about-concept__title-sub {
    display: block;
    font-size: clamp(48px, 3.7vw, 96px);
    font-weight: bold;
    color: #1a2a3a;
}

.about-concept__content {
    width: 75%;
    /* max-width: 800px; */
    margin: 0 auto;
}

.about-concept__content p {
    font-size: clamp(18px, 1.4vw, 32px);
    line-height: 2.3;
    margin-bottom: 32px;
    font-weight: 600;
}

.about-concept__content p:last-child {
    margin-bottom: 0;
}


/* レスポンシブ対応 */

@media (max-width: 1024px) {
    .about {
        padding: 60px 24px;
    }
    .about-greeting__image-main {
        width: 70%;
        height: 350px;
    }
    .about-greeting__image-sub {
        width: 50%;
        height: 350px;
    }
    .about-concept {
        margin-bottom: 80px;
    }
    .about-concept__title-main {
        font-size: 2rem;
    }
    .about-concept__title-sub {
        font-size: 2.5rem;
    }
}

@media (max-width: 960px) {
    .about {
        padding: 40px 16px;
    }
    .about-greeting {
        margin-bottom: 80px;
    }
    .about-greeting__images {
        margin-bottom: 32px;
    }
    .about-greeting__image-main {
        width: 100%;
        height: 300px;
    }
    .about-greeting__image-sub {
        position: relative;
        top: -40px;
        right: auto;
        width: 80%;
        height: 300px;
        margin: 0 auto;
    }
    .about-greeting__title {
        font-size: 1.8rem;
        margin-bottom: 24px;
    }
    .about-company__table th,
    .about-company__table td {
        display: block;
        width: 100%;
        padding: 16px;
    }
    .about-company__table th {
        background: #f5f5f5;
    }
    .about-concept {
        margin-bottom: 60px;
        padding: 0 16px;
    }
    .about-concept__title {
        margin-bottom: 32px;
    }
    .about-concept__title-main {
        font-size: 1.8rem;
    }
    .about-concept__title-sub {
        font-size: 2rem;
    }
    .about-concept__content p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 24px;
    }
}


/* PC */

@media (min-width: 1025px) {
    body.page-about {
        /* PC styles here */
    }
}


/* Tablet */

@media (min-width: 768px) and (max-width: 1024px) {
    body.page-about {
        /* Tablet styles here */
    }
}


/* Smartphone */

@media (max-width: 767px) {
    body.page-about {
        /* Smartphone styles here */
    }
}

@media (max-width: 960px) {
    .about-concept {
        margin-bottom: 60px;
        padding: 0 0 0 32px;
    }
    .about-concept__content {
        width: 100%;
        /* max-width: 800px; */
        margin: 0 auto;
    }
    .about-concept__title {
        text-align: left;
        margin-bottom: 48px;
        line-height: 1.3;
    }
    .about-concept__content p {
        font-size: 1rem;
        line-height: 2.3;
        margin-bottom: 24px;
    }
    /* ３枚ならび画像 */
    .about-greeting__image-sub {
        position: relative;
        top: -40px;
        right: auto;
        width: 80%;
        height: 100px;
        margin: 0 auto;
    }
    /* 代表挨拶 */
    .about-greeting__text {
        /* max-width: 800px; */
        width: 100%;
        margin: 0 auto;
        line-height: 2.3;
    }
    .about-greeting__text p {
        font-size: 16px !important;
        margin-bottom: 24px;
        font-weight: 600;
    }
    .about-greeting {
        margin-bottom: 80px;
        padding: 0 0 0 32px;
    }
    /* 会社概要 */
    .about-company {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 0 0 32px;
        margin-bottom: 100px;
    }
    .about-company__table th,
    .about-company__table td {
        display: block;
        width: 100%;
        /* padding: 16px 16px; */
    }
    .about-company__table th {
        font-size: 15px;
        display: block;
        width: 100%;
        padding: 12px 16px;
    }
    .about-company__table td {
        font-size: 16px;
        display: block;
        width: 100%;
        padding: 16px 16px;
    }
}

@media (max-width: 480px) {
    .about-greeting__image img {
        width: 95%;
    }
}