@charset "UTF-8";

/* 変数定義 */
:root {
    --color-main: #111111;
    --color-accent: #C5A059;
    --color-text: #ffffff;
    --color-bg: #1a1a1a;
    --color-white: #ffffff;
    --font-base: 'Noto Sans JP', sans-serif;
}

/* ベーススタイル */
.lp-hiace-sale {
    font-family: var(--font-base);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
}
.lp-hiace-sale img {
    max-width: 100%;
    height: auto;
    display: block;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-padding {
    padding: 80px 0;
}
.text-yellow {
    color: var(--color-accent);
}
.text-gold {
    color: var(--color-accent);
}
.text-center {
    text-align: center;
}
.mt-4 {
    margin-top: 2rem;
}

/* ヒーローセクション */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__logo-container {
    margin-bottom: 30px; /* タイトルとの間隔 */
}
.hero__logo {
    max-width: 250px; /* 必要に応じてサイズを調整 */
    height: auto;
    margin: 0 auto;
    display: block;
}
.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}
.hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}
.hero__catch {
    margin-bottom: 30px;
}
.hero__catch-main {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--color-accent);
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}
.hero__catch-sub {
    font-size: 1.4rem;
    font-weight: 500;
}
.hero__flags {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}
.flag {
    background-color: var(--color-accent);
    color: #111;
    font-weight: bold;
    font-size: 1.8rem;
    padding: 10px 50px;
    position: relative;
    display: inline-block;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}
.hero__title {
	font-size: 5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    margin: 0 0 20px 0; /* タイトル下の間隔を調整 */
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

/* セクションタイトル */
.section-title {
    text-align: center;
    font-size: 3.0rem;
    font-weight: bold;
    margin-bottom: 50px;
    color: var(--color-white);
    letter-spacing: 0.05em;
}
.section-title span {
    display: block;
    font-size: 1.4rem;
    color: var(--color-accent);
    margin-top: 10px;
}

/* スケジュール＆店舗 */
.schedule__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}
.shop-card {
    background: #222;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}
.shop-card:hover {
    transform: translateY(-5px);
}
.shop-card__date {
    background: var(--color-accent);
    color: #111;
    padding: 15px;
    text-align: center;
    font-weight: bold;
}
.shop-card__date .year { font-size: 1.2rem; }
.shop-card__date .month { font-size: 2rem; }
.shop-card__date .day { font-size: 1.5rem; }
.shop-card__img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.shop-card__info {
    padding: 25px;
}
.shop-card__info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #444;
    padding-bottom: 10px;
}
.shop-card__info p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #ccc;
}
.shop-card__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

/* ボタン共通 */
.btn {
    display: inline-block;
    padding: 12px 20px;
    text-align: center;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-outline {
    border: 1px solid var(--color-white);
    color: var(--color-white);
}
.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-main);
}
.btn-line {
    background: #06C755;
    color: var(--color-white);
}
.btn-line:hover {
    background: #05a546;
}
.btn-more {
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    padding: 15px 40px;
    font-size: 1.4rem;
    border-radius: 30px;
}
.btn-more:hover {
    background: var(--color-accent);
    color: #111;
}

/* 出展企業 */
.exhibitor-block {
    background: #2a2a2a;
    margin-bottom: 60px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.exhibitor-block__header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #444;
}
.bg-white { background-color: #ffffff; }
.bg-dark { background-color: #111111; }
.exhibitor-logo {
    max-height: 60px;
    margin: 0 auto;
}
.exhibitor-block__main-img {
    width: 100%;
    overflow: hidden;
}
.exhibitor-block__main-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.exhibitor-block__products {
    padding: 30px;
}
.product-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-left: 4px solid var(--color-accent);
    padding-left: 10px;
}
.product-title small {
    display: block;
    font-size: 1.1rem;
    color: #999;
    margin-top: 5px;
    font-weight: normal;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.product-item {
    display: block;
    text-decoration: none;
    color: var(--color-text);
    background: #333;
    border-radius: 6px;
    padding: 15px;
    transition: transform 0.3s;
}
.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.product-item img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background: #fff;
    border-radius: 4px;
    margin-bottom: 10px;
}
.product-item p {
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
    .hero__title { font-size: 3rem; }
    .hero__catch-main { font-size: 1.2rem; }
    .hero__catch-sub { font-size: 1.1rem; }
    .flag { font-size: 1rem; padding: 8px 15px; }
    .schedule__grid { grid-template-columns: 1fr; }
    .section-padding { padding: 50px 0; }
}
/* --- お問い合わせセクション --- */
.contact__desc {
    margin-bottom: 40px;
    color: #cccccc;
    line-height: 1.8;
}

.contact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-box {
    background: #222222;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}

.contact-box__title {
    font-size: 1.3rem;
    color: var(--color-white);
    margin-bottom: 25px;
    border-bottom: 1px dashed #555;
    padding-bottom: 15px;
}

.contact-box__actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 電話ボタンのスタイル */
.btn-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    color: var(--color-main);
    text-decoration: none;
    padding: 15px;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-tel:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-tel .tel-label {
    font-size: 1rem;
    font-weight: bold;
    margin-right: 10px;
    color: #666;
}

.btn-tel .tel-number {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0.05em;
}

/* 巨大化させたLINEボタン */
.btn-large {
    font-size: 1.2rem;
    padding: 18px;
    border-radius: 6px;
    display: block; /* 幅いっぱいに広げる */
}

/* レスポンシブ調整 */
@media screen and (max-width: 768px) {
    .contact__grid {
        grid-template-columns: 1fr;
    }
    .btn-tel .tel-number {
        font-size: 1.5rem;
    }
}
/* --- お問い合わせボックス内の日程と画像 --- */
.contact-box__info-header {
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden; /* 画像の角を丸めるため */
    background: #111;
}

.contact-box__date {
    background: var(--color-accent); /* ゴールドの背景 */
    color: #111;
    padding: 10px;
    font-weight: bold;
    text-align: center;
}

.contact-box__date .year { 
    font-size: 0.9rem; 
    margin-right: 5px;
}
.contact-box__date .month { 
    font-size: 1.4rem; 
}
.contact-box__date .day { 
    font-size: 1.1rem; 
}
.contact-box__img {
    width: 100%;
    height: 180px !important; 
    object-fit: cover !important; 
    display: block;
}isplay: block;
}

/* 既存のタイトルの上の余白を少し調整 */
.contact-box__title {
    margin-top: 0;
}