@charset "UTF-8";

/* ----------------------------------------------------------------
    お問い合わせページ用CSS
---------------------------------------------------------------- */

.inquiryPage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-size-32);
    padding: var(--space-size-32) 0 0;
}
.inquiryPage_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-size-32);
    text-align: center;
}
.inquiryPage_description {
    font-family: var(--font-family-sans);
    font-size: var(--font-size-14);
    font-weight: var(--font-weight-400);
    line-height: 1.6;
    color: var(--color-brand-kayakublack);
    margin: 0;
    text-align: center;
    max-width: 100%;
    text-align: left;
}
.inquiryPage_button {
    width: 300px;
    max-width: 100%;
}
.inquiryPage_companyInfo {
    border: 1px solid var(--color-brand-kayakublue);
    border-radius: 8px;
    padding: var(--space-size-32) var(--space-size-16);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-size-24);
    width: 340px;
    max-width: 100%;
}
.inquiryPage_companyInfo_logo {
    display: flex;
    justify-content: center;
    align-items: center;
}
.inquiryPage_companyInfo_logo_img {
    max-width: 100%;
    height: auto;
}
.inquiryPage_companyInfo_address {
    text-align: center;
}
.inquiryPage_companyInfo_address_text {
    font-family: var(--font-family-sans);
    font-size: var(--font-size-16);
    font-weight: var(--font-weight-400);
    line-height: 1.6;
    color: var(--color-brand-kayakublack);
    margin: 0 0 var(--space-size-8) 0;
}
.inquiryPage_companyInfo_address_text_space{
    display: none;
}
.inquiryPage_companyInfo_address_tel {
    font-family: var(--font-family-sans);
    font-size: var(--font-size-16);
    font-weight: var(--font-weight-400);
    line-height: 1.6;
    color: var(--color-brand-kayakublack);
    margin: 0;
}

/* ========================================
    PC用スタイル
========================================= */
@media print, screen and (min-width: 768px) {
    .inquiryPage {
        gap: var(--space-size-80);
        padding: var(--space-size-80) 0 0;
    }
    .inquiryPage_content {
        gap: var(--space-size-56);
    }
    .inquiryPage_description {
        font-size: var(--font-size-16);
        text-align: center;
    }
    .inquiryPage_companyInfo {
        width: 600px;
        height: 195px;
        padding: var(--space-size-40);
        /* flex-direction: row; */
        justify-content: center;
        align-items: center;
        gap: var(--space-size-32);
    }
    .inquiryPage_companyInfo_logo {
        flex: 0 0 auto;
    }
    .inquiryPage_companyInfo_address {
        flex: 1;
        text-align: center;
    }
    .inquiryPage_companyInfo_address_text {
        font-size: var(--font-size-16);
        margin-bottom: 0;
    }
    .inquiryPage_companyInfo_address_text_space{
        width: 5px;
        display: inline-block;
    }
    .inquiryPage_companyInfo_address_tel {
        font-size: var(--font-size-16);
    }
}

