@charset "UTF-8";

/*メインビジュアル*/
.s_mv {
    width: 100%;
    height: 300px;
    background: url(../image/top/top_mv_2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    /* スマホなどで幅が狭まった時、アスペクト比を維持して縮小させる */
    /* 例：PCで横1200px / 縦300px なら 「4 / 1」 */
    aspect-ratio: 4 / 1;
}

.s_mv_inner {
    color: #fff;
    position: absolute;
    top: 32%;
    right: 5%;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.s_mv_title {
    display: block;
    font-size: clamp(1.5rem, 0.786rem + 3.57vw, 4rem);
    font-family: var(--font3);
    font-weight: 500;
    text-align: right;
}

.breadcrumb ul {
    display: flex;
    color: #555;
    font-size: 0.8125rem;
    font-weight: 400;
    padding: 4px 30px;
}

.breadcrumb li {
    margin-right: 8px;
    display: flex;
    align-items: center;
}

.breadcrumb li a {
    background-color: transparent;
    text-decoration: none;
    color: inherit;
}

.breadcrumb li+li::before {
    content: "";
    display: block;
    width: 0.5em;
    height: 0.5em;
    border-right: 1px solid #555;
    border-bottom: 1px solid #555;
    transform: rotate(-45deg);
    margin-right: 10px;
}

.merchandise_section {
    margin-bottom: 40px;
}

.b_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 80px auto;
    font-size: clamp(2.5rem, 2.173rem + 1.63vw, 3.5rem);
    font-weight: 600;
    color: #2574EB;
    line-height: 1em;
    letter-spacing: -0.05rem;
}

.b_title span {
    background: linear-gradient(135deg, #0FC9F7, #2574EB);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 1.5rem;
    font-weight: 500;
    font-family: var(--font3);
}

.section_title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 54px 8px 24px 0;
    border-left: 5px solid #2574EB;
    padding-left: 8px;
    line-height: 1.2;
    letter-spacing: -0.08rem;
}

.merchandise_item {
    display: flex;
    gap: 15px;
    margin-bottom: 100px;
}

.merchandise_item img {
    width: 40%;
    height: auto;
    align-self: flex-start;
}

.merchandise_item_text {
    flex: 1;
    /* width: 60% の代わりに「残り全部」という指定にすると柔軟です */
    min-width: 0;
}

.item_name {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.item_name span {
    letter-spacing: 0.05rem;
}

.item_description,
.item_description_s {
    font-size: 0.9375rem;
    margin: 8px 0 30px;
}

.item_description_s span {
    font-size: 0.75rem;
    color: #555;
}


/* テーブル */
.table-container {
    width: 100%;
    overflow-x: auto;
    /* スマホで横スクロール可能に */
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

/* スクロールバーを分かりやすくカスタマイズ */
.table-container::-webkit-scrollbar {
    height: 10px;
}

.table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

.table-container::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 5px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* スクロール注釈テキスト */
.scroll_info {
    font-size: 0.8rem;
    color: #D63447;
    text-align: right;
    margin-bottom: 4px;
    display: none;
}

/* 画面幅が狭く、スクロールが発生しそうな場合に表示 */
@media (max-width: 1200px) {
    .scroll_info {
        display: block;
    }
}

.product-table {
    width: 100%;
    min-width: 600px;
    /* スマホで崩れないための最小幅 */
    border-collapse: collapse;
    font-size: 14px;
    font-family: var(--font3);
}

.product-table th {
    border: 1px solid #fff;
    padding: 4px 0;
    text-align: center;
    color: #fff;
}

.product-table td {
    border: 1px solid #afafaf;
    padding: 4px 0;
    text-align: center;
}

/* ヘッダーの背景色 */
.product-table th {
    background-color: #333;
}

/* ボディの背景色（交互に変えるなどの調整も可） */
.product-table td {
    background-color: #f0f0f0;
}

/* 左側の結合セルを目立たせる場合 */
.category,
.model {
    font-weight: bold;
    vertical-align: middle;
}

.ori_note {
    font-size: 0.875rem;
    margin: 4px 0;
}

/* スマホ用レスポンシブ（文字サイズ調整） */
@media (max-width: 768px) {
    .s_mv {
        height: auto;
    }

    .merchandise_item {
        flex-direction: column;
        gap: 16px;
        /* スマホ時に画像とテキストの間に少し隙間を作るのが一般的 */
    }

    .merchandise_item img,
    .merchandise_item_text {
        width: 100%;
        /* text側のwidthもリセット */
    }
}

/* 580px以下でのみ有効な改行 */
.br_580 {
    display: none;
}

@media (max-width: 580px) {
    .br_580 {
        display: inline;
    }
}