/* =========================================
   CONTACT SECTION
========================================= */
#contact-section {
    position: relative;
    background-color: #1a1a1a;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.9;
}

.contact-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
}

.contact-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 90px 40px;
}

.contact-heading {
    text-align: center;
    margin-bottom: 82px;
}

.contact-heading h2 {
    font-family: var(--font-en);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--color-white);
    margin-bottom: 24px;
}

/* ①②：見出しと本文の間隔拡張・文字間隔1.25・細め */
.contact-heading p {
    font-family: var(--font-ja);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.125em;
    color: var(--color-white);
}

/* ---- PC: 3カード ---- */
/* ① カードグループに上下左右の余白 */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto;
}

/* TELカードはPCで非表示 */
.contact-card.card-tel {
    display: none !important;
}

/* ② MAIL・EVENT：60%透過 */
.contact-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 56px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: background 0.3s ease;
    aspect-ratio: 1;
    border: 1px solid #000000;
}


.contact-card:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ② CATALOGのみ100%（不透明白） */
.contact-card.card-catalog {
    background: rgba(255, 255, 255, 1.0);
}

.contact-card.card-catalog:hover {
    background: rgba(245, 245, 245, 1.0);
}

/* EVENTカードも60%（MAILと同じ） */
.contact-card.card-event {
    background: rgba(255, 255, 255, 0.6);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* ③ アイコン大きめ */
.contact-card .card-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 12px;
}

/* SP TELカード内の電話アイコンはさらに大きく */
.contact-card .card-icon-tel {
    width: 100px;
    height: 100px;
    margin-bottom: 12px;
}

.contact-card .card-en {
    font-family: var(--font-en);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--color-black);
    margin-bottom: 8px;
}

.contact-card .card-ja {
    font-family: var(--font-ja);
    font-size: 12px;
    font-weight: 400;
    color: #555;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    text-align: center;
}

.contact-card .card-arrow {
    display: block;
    position: relative;
    width: 34px;
    height: 16px;
    margin-top: auto;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.contact-card .card-arrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 22px;
    height: 1px;
    background: var(--color-black);
}

.contact-card .card-arrow::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 50%;
    width: 1px;
    height: 10px;
    background: var(--color-black);
    transform: rotate(135deg);
    transform-origin: top center;
}

.contact-card:hover .card-arrow {
    transform: translateX(4px);
}

/* TELカード：矢印をデフォルト白に */
.contact-card.card-tel .card-arrow::before,
.contact-card.card-tel .card-arrow::after {
    background: var(--color-white);
    transition: background 0.3s ease;
}

/* TELカード：ホバー時に白背景＋テキスト・矢印を黒へ */
.contact-card.card-tel:hover {
    background: rgba(255, 255, 255, 1);
}

.contact-card.card-tel:hover .card-en,
.contact-card.card-tel:hover .card-ja {
    color: var(--color-black);
}

.contact-card.card-tel:hover .card-arrow::before,
.contact-card.card-tel:hover .card-arrow::after {
    background: var(--color-black);
}

/* ---- ④ TEL バー（PC のみ） ---- */
.contact-tel-bar {
    background: rgba(242, 242, 242, 0.6);
    padding: 18px 32px;
    display: flex;
    align-items: center;
    border: 1px solid #000000;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 26px auto 0;
    text-decoration: none;
    transition: background 0.25s ease;
}

.contact-tel-bar:hover {
    background: rgba(230, 230, 230, 1);
}

.contact-tel-bar .tel-label {
    font-family: var(--font-en);
    font-size: 22px;
    letter-spacing: 0.12em;
    color: var(--color-black);
    flex-shrink: 0;
    min-width: 64px;
    padding-left: 16px;
}

.contact-tel-bar .tel-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* gap: 6px; */
}

.contact-tel-bar .tel-label-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.contact-tel-bar .tel-text {
    font-family: var(--font-ja);
    font-size: 12px;
    font-weight: 50;
    color: #444;
    letter-spacing: 0.05em;
}

.contact-tel-bar .tel-number-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0px;
}

.contact-tel-bar .tel-number {
    display: flex;
    align-items: center;
    font-family: var(--font-en);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--color-black);
    text-decoration: none;
    white-space: nowrap;
}

.contact-tel-bar .tel-number img {
    width: 64px;
    height: 64px;
}

/* ③ 受付時間バッジ：白背景・#636363文字 */
.contact-tel-bar .tel-hours {
    font-family: var(--font-ja);
    font-size: 11px;
    color: #636363;
    background: var(--color-white);
    padding: 6px 22px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    border: 1px solid #ddd;
}

/* =========================================
   FOOTER
========================================= */
#site-footer {
    background: var(--color-footer-bg);
    padding: 90px 0 90px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 300px 1fr 1fr 1fr;
    gap: 0 40px;
    padding-bottom: 8px;
}

/* ---- ④ ロゴ・会社情報：縦並び ---- */
.footer-info .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 30px;
    text-decoration: none;
}

.footer-info .footer-logo img {
    height: 88px;
    width: auto;
}

.footer-info .footer-logo-text {
    font-family: var(--font-ja);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--color-black);
}

.footer-info .company-name {
    font-family: var(--font-ja);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.footer-info address {
    font-style: normal;
    font-family: var(--font-ja);
    letter-spacing: 0.15em;
    font-size: 12px;
    color: #555;
    line-height: 1.8;
    letter-spacing: 0.04em;
}

.footer-info address span {
    display: block;
    font-style: normal;
    font-family: var(--font-ja);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-black);
}

.footer-info address .addres-post {
    font-size: 10px;
    color: var(--color-black);
}

.footer-info .company-address-sp {
    display: none;
}

.footer-info p {
    display: block;
    font-style: normal;
    font-family: var(--font-ja);
    font-size: 14px;
    letter-spacing: 0.25em;
    font-weight: 500;
    color: var(--color-black);
}


.footer-tel {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.footer-tel:hover {
    opacity: 0.6;
}

.footer-tel .tel-main {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-en);
    letter-spacing: 0.25em;
    font-size: 26px;
    font-weight: 400;
    color: var(--color-black);
}

.footer-tel .tel-main img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-tel .tel-sub {
    font-family: var(--font-en);
    letter-spacing: 0.25em;
    font-size: 26px;
    font-weight: 400;
    color: var(--color-black);
    padding-left:60px;
}

#contact-section img,
#site-footer img {
    filter: brightness(0);
}


/* ---- ナビ列 ---- */
.footer-nav-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav-col ul li {
    margin-bottom: 26px;
}

.footer-nav-col ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ja);
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    letter-spacing: 0.20em;
    transition: color 0.2s ease;
}

.footer-nav-col ul li a:hover {
    color: var(--color-accent);
}

.footer-nav-col ul li a .nav-dot {
    width: 14px;
    height: 14px;
    border: 1px solid #aaa;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-nav-col ul li a .nav-dot::after {
    content: '→';
    font-family: var(--font-en);
    font-size: 9px;
    color: #888;
    line-height: 1;
}

.footer-copyright {
    display: none;
}

.footer-info-tel {
    display: none;
}

/* ---- 電話番号 + SNS ---- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-ja);
    font-weight: 500;
    padding-top: 8px;
}

.footer-sns {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    text-decoration: none;
}

.footer-sns a:hover {
    border-color: var(--color-black);
}

.footer-tel a img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-sns a img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* =========================================
   SP FIXED BOTTOM BAR
========================================= */
#sp-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    z-index: 900;
    background: var(--color-white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
}

#sp-bottom-bar ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}

#sp-bottom-bar ul li {
    height: 100%;
}

#sp-bottom-bar ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 100%;
    text-decoration: none;
    border-right: 1px solid #e0e0e0;
    transition: background 0.2s ease;
}

#sp-bottom-bar ul li:last-child a {
    border-right: none;
    background: var(--color-accent);
}

#sp-bottom-bar ul li a:hover {
    background: rgba(0, 0, 0, 0.04);
}

#sp-bottom-bar ul li:last-child a:hover {
    background: #8f8364;
}

#sp-bottom-bar ul li a img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

#sp-bottom-bar ul li a span {
    font-family: var(--font-ja);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-black);
}

#sp-bottom-bar ul li:last-child a span {
    color: var(--color-white);
}

/* ---- PC: カード内コンテンツを上下左右中央寄せ ---- */
@media screen and (min-width: 769px) {
    .contact-card {
        justify-content: center;
    }

    .contact-card .card-arrow {
        margin-top: 16px;
    }
}

/* =========================================
   バナー（PC）
========================================= */
#banner-section {
    background: var(--color-white);
    padding: 120px 0;
}

.banner-area {
    padding: 0;
    width: 65%;
    margin: 0 auto;
    text-align: center;
}

.banner-area a {
    display: block;
}

.banner-area img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    filter: none !important;
    display: block;
}

.banner-img-sp { display: none !important; }
.banner-img-pc { display: block !important; }

.banner-placeholder {
    width: 100%;
    padding: 60px 40px;
    font-family: var(--font-ja);
    font-size: 16px;
    color: #999;
    letter-spacing: 0.15em;
    background: #f0f0f0;
    box-sizing: border-box;
}

/* =========================================
   SP フッター
========================================= */
@media screen and (max-width: 768px) {
    /* CONTACTエリア */
    #contact-section {
        max-width: 100%;
        overflow-x: hidden;
    }

    .contact-inner {
        padding: 60px 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .contact-heading h2 {
        font-size: 28px;
    }

    .contact-heading p {
        font-size: 14px;
        line-height: 1.8;
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .contact-card {
        aspect-ratio: 1;
        padding: 20px 12px;
        overflow: hidden;
    }

    /* SP: アイコン縮小（カード内に収める） */
    .contact-card .card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 6px;
    }

    .contact-card .card-icon-tel {
        width: 40px;
        height: 40px;
        margin-bottom: 6px;
    }

    /* SP: テキスト縮小 */
    .contact-card .card-en {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .contact-card .card-ja {
        font-size: 8px;
        /* margin-bottom: 4px; */
    }

    /* SP: 矢印を全カードで横位置を揃える */
    /* SP: 全カード共通の矢印位置調整 */
    .contact-card .card-arrow {
        align-self: center;
        margin-top: auto;
        margin-bottom: 8px; /* ← 矢印とカード下端の余白 */
        width: 44px; /* ← 矢印全体の幅（PCは34px） */
    }

    /* SP: 矢印の横線を長く */
    .contact-card .card-arrow::before {
        width: 32px; /* ← 横線の長さ（PCは22px） */
    }

    /* SP: 先端の位置を横線の長さに合わせてずらす */
    .contact-card .card-arrow::after {
        left: 32px; /* ← ::before の width と同じ値にする */
    }

    /* SP: TELカード矢印（白帯の上に表示） */
    .contact-card.card-tel .card-arrow {
        margin-bottom: 44px; /* ← 白帯の高さ(36px) + 余白 */
    }

    /* SP: MAILカード矢印位置 */
    .contact-card.card-mail .card-arrow {
        margin-bottom: 8px; /* ← 個別調整はここを変更 */
    }

    /* SP: EVENTカード矢印位置 */
    .contact-card.card-event .card-arrow {
        margin-bottom: 8px;
    }

    /* SP: CATALOGカード矢印位置 */
    .contact-card.card-catalog .card-arrow {
        margin-bottom: 8px;
    }

    /* SP: MAILカードのみ白背景 */
    .contact-card.card-mail {
        background: rgba(255, 255, 255, 1.0);
    }

    /* SP: CATALOGカードをTEL/EVENTと同じ半透明に */
    .contact-card.card-catalog {
        background: rgba(255, 255, 255, 0.6);
    }

    /* SP: TELカード（背景あり・PCの非表示を上書き） */
    .contact-card.card-tel {
        display: flex !important;
        position: relative;
        background: rgba(255, 255, 255, 0.6);
        overflow: hidden;
        transition: background 0.3s ease, color 0.3s ease;
        padding-bottom: 36px;
    }

    .contact-card.card-tel .card-en,
    .contact-card.card-tel .card-ja,
    .contact-card.card-tel .card-arrow {
        color: var(--color-black);
        position: relative;
        z-index: 1;
        transition: color 0.3s ease;
    }

    /* SP: TELカード矢印を黒に（PCの白設定を上書き） */
    .contact-card.card-tel .card-arrow::before,
    .contact-card.card-tel .card-arrow::after {
        background: var(--color-black);
    }

    .contact-card.card-tel .card-hours {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        font-family: var(--font-ja);
        font-size: 9px;
        color: #636363;
        background: var(--color-white);
        padding: 1px 4px;
        letter-spacing: 0.01em;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        border-top: 1px solid #ddd;
        margin-top: 0;
        z-index: 2;
    }

    .contact-tel-bar {
        display: none;
    }

    .tel-label-wrap {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    /* フッター */
    #site-footer {
        padding: 40px 0 80px;
        overflow-x: hidden;
        background: #EEEEEE;
    }

    .footer-inner {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .footer-info .footer-logo {
        max-width: 100%;
        overflow: hidden;
    }

    .footer-info .footer-logo img {
        height: 60px;
        width: auto;
        max-width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr;
        /* gap: 32px; */
        padding-bottom: 32px;
    }

    .footer-info .company-name {
        font-size: 11px;
        letter-spacing: 0.06em;
        margin-bottom: 24px;
    }

    .footer-info .company-address {
        display: none;
    }

    .footer-info .company-address-sp {
        display: block;
    }

    .footer-info .company-address-sp span {
        display: inline;
        font-family: var(--font-ja);
        font-size: 11px;
        font-weight: 400;
        color: var(--color-black);
        letter-spacing: 0.06em;
    }

    .footer-info .company-hour {
        display: block;
        font-family: var(--font-ja);
        font-size: 11px;
        font-weight: 400;
        letter-spacing: 0.06em;
        color: var(--color-black);
        margin-top: 4px;
    }

    .footer-nav-col ul li {
        margin-bottom: 0;
    }

    .footer-nav-col ul li a {
        position: relative;
        display: flex;
        align-items: center;
        padding: 12px 28px 12px 4px;
        font-size: 11px;
        font-weight: 500;
        /* border-bottom: 1px solid #e8e8e8; */
    }
    .footer-nav-col ul li a .nav-dot {
        position: absolute;
        right: 80px;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
    }
    .footer-nav-col ul li a .nav-dot::after {
        font-size: 7px;
    }
    .footer-nav-col ul li:last-child a {
        border-bottom: none;
    }

    .footer-bottom {
        justify-content: center;
        padding-top: 32px;
    }

    .footer-sns {
        flex-direction: center;
        gap: 16px;
    }

    .footer-tel {
        display: none;
    }

    .footer-info-tel {
        display: block;
        font-family: var(--font-en);
        font-size: 11px;
        font-weight: 400;
        letter-spacing: 0.06em;
        color: var(--color-black);
        text-decoration: none;
        margin-top: 24px;
        margin-bottom: 32px;
    }

    /* SP固定バー表示 */
    #sp-bottom-bar {
        display: block;
    }

    .footer-copyright {
        display: block;
        text-align: center;
        font-family: var(--font-en);
        font-size: 10px;
        letter-spacing: 0.12em;
        color: #888;
        padding: 6px 0 20px;
    }

    /* SP: バナー */
    #banner-section {
        padding: 32px 0;
    }
    .banner-img-sp { display: block !important; }
    .banner-img-pc { display: none !important; }

    .banner-area {
        width: 90%;
        margin: 32px auto;
        padding: 0 0 24px;
    }
    .banner-area a {
        display: block;
        width: 100%;
    }
    .banner-area picture {
        display: block;
        width: 100%;
    }
    .banner-area picture img,
    .banner-area img {
        width: 100% !important;
        height: auto !important;
        display: block;
    }
}
