@charset "UTF-8";

/* ---------------------------------------------
*   p-location-card
*   事業拠点カード（区切り線 + 拠点名 + 本文／画像の2カラム）
--------------------------------------------- */
.p-location-card {
    padding-top: calc(24 / var(--root-fz) * 1rem);
    border-top: 1px solid var(--color-gray-3);
}
@media screen and (max-width: 767px) {
    .p-location-card {
        padding-top: 24px;
    }
}

/*  同一エリア内の2件目以降
    区切り線・拠点名を持たず、前のカードとの間隔のみで区切る
--------------------------------------------- */
.p-location-card--sub {
    padding-top: 0;
    border-top: none;
}
@media screen and (max-width: 767px) {
    .p-location-card--sub {
        padding-top: 0;
    }
}

/*  拠点名（h3）
--------------------------------------------- */
.p-location-card__ttl {
    margin-bottom: calc(16 / var(--root-fz) * 1rem);
    text-align: left;
}
@media screen and (max-width: 767px) {
    .p-location-card__ttl {
        margin-bottom: 16px;
    }
}

/*  本文（左）／画像（右）の2カラム
    PC : 644px + gap20px + 312px = 976px
    SP : 本文 → 画像 の順で縦積み
--------------------------------------------- */
@media screen and (min-width: 768px) {
    .p-location-card__cols {
        grid-template-columns: 1fr calc(312 / var(--contents-width) * 100%);
        align-items: start;
    }
}

/*  本文カラム
--------------------------------------------- */
.p-location-card__body > * + * {
    margin-top: calc(16 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .p-location-card__body > * + * {
        margin-top: 16px;
    }
}

/*  住所ブロック（ブロック見出し + 住所）
--------------------------------------------- */
.p-location-card__block > * + * {
    margin-top: calc(4 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .p-location-card__block > * + * {
        margin-top: 4px;
    }
}

/*  ブロック見出し（左に4pxの縦バー）
--------------------------------------------- */
.p-location-card__name {
    padding-left: calc(8 / var(--root-fz) * 1rem);
    border-left: calc(4 / var(--root-fz) * 1rem) solid var(--color-gray-3);
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: bold;
    line-height: var(--line-height);
}
@media screen and (max-width: 767px) {
    .p-location-card__name {
        padding-left: 8px;
        border-left-width: 4px;
        font-size: 16px;
    }
}

/*  画像（16:9でトリミング）
--------------------------------------------- */
.p-location-card__pic img {
    -o-object-fit: cover;
       object-fit: cover;
}

/*  SP：画像を本文より上に配置し、画像と本文の間隔を20pxにする
--------------------------------------------- */
@media screen and (max-width: 767px) {
    .p-location-card__cols {
        gap: 20px !important;
    }
    .p-location-card__cols .c-column-1__item:has(.p-location-card__pic) {
        order: -1;
    }
}

/* ---------------------------------------------
*   c-links-1
*   拠点タブ（国内拠点／海外拠点）
--------------------------------------------- */

/*  SP：タブが2つのみで横スクロールが不要なため、
    横スクロールとコンテナの固定幅（368px）を解除して中央寄せにする
--------------------------------------------- */
@media screen and (max-width: 767px) {
    .c-links-1-wrap {
        overflow-x: visible;
    }
    .c-links-1-wrap__container {
        width: 100%;
    }
    .c-links-1 {
        justify-content: center;
    }
}
