/* CSS Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: "NotoSansCJKjp", "Yu Gothic", sans-serif; */
    color:#222;
    padding: 0;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

a {
    color: #426599;
    transition: color 0.3s ease;
}

a:hover {
    color: #668ABE;
}

button {
    font-family: "Noto sans JP", sans-serif;
}

h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 24px;
    padding: 0;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
    padding: 0;
    width: 100%;
}

h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 16px;
    padding: 0;
}

h4 {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 16px;
    padding: 0;
}

/* 以下追加 */
main {
    margin: 8rem auto 3rem;
}

/* ぱんくずリスト */
.pankuzu {
    width: 100%;
    margin-bottom: 2rem;
}

.pankuzu ul {
    display: flex;
    list-style: none;
}

.pankuzu li {
    margin-right: 0.5rem;
    font-size: 12px;
}

.pankuzu a {
    color: #426599!important;
    text-decoration: underline!important;
}

#digital-catalog {
    width: 100%;
    max-width: 1064px;
    margin: 0 auto;
    padding: 0 20px;
}

main {
    overflow-x: 0!important;
}

/* メガメニューからタブ開いた場所へスクロール表示 */
#tab-wallcvr ,
#tab-curtain ,
#tab-floorcvr ,
#tab-carpet ,
#tab-fabfur ,
#tab-functional{
  scroll-margin-top: 18rem!important; /* 固定ヘッダーなどの高さ分を調整 */
}

/* タブ切り替え */
#digital-catalog .tab-container {
    width: 100%;
    max-width: 100%;
}

#digital-catalog .tab-list {
    display: flex;
    border-bottom: 1px solid #222;
    padding: 0;
    margin: 2rem auto;
    list-style: none;
    justify-content: space-between;
}

#digital-catalog .tab {
    padding: 10px 20px;
    cursor: pointer;
    transition: border-color 0.3s;
    color: #BFBFBF;
    font-size: 24px;
    font-family: "Roboto", sans-serif;}

#digital-catalog .tab.active {
    border-bottom: 6px solid #496B9C; /* 下線 */
    color: #496B9C;
    width: auto;
}

#digital-catalog .tab-content {
    display: none;
    padding: 1rem 0;
}

#digital-catalog .tab-content.active {
    display: block;
}

/* 商品一覧 */
#digital-catalog .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

#digital-catalog .product-item {
    position: relative;
    width: 325px;
    height: auto;
    border: 1px solid #ccc;
    padding: 2rem 2rem 1.5rem;
    box-sizing: border-box;
}

/* お気に入りボタン */
#digital-catalog .favorite-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

/* 商品画像 */
#digital-catalog .product-image {
    display: block;
    margin-top: 32px; /* ハートとの間隔確保 */
    width: 161px;
    height: 162px;
    margin: 0 auto 1rem;
}

#digital-catalog #tab-functional .product-image{
    width: 100%;
    height: auto;
    display: block;
    margin-top: 32px; /* ハートとの間隔確保 */
    width: 161px;
    height: 228px;
    margin: 0 auto 1rem;
}

/* デフォルトタイトル */
#digital-catalog .product-title-wrap {
    height: 75px;
    height: auto;
}

/* 機能性商品タイトル */
#digital-catalog #tab-functional .product-title-wrap {
    height: 20px;
}

/* タイトル上段 */
#digital-catalog .product-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #222;
    padding-bottom: 3px;
}

/* タイトル下段 */
#digital-catalog .product-flex2 {
    display: flex;
    justify-content: space-between;
    padding-top: 3px;
}

/* タイトル商品名 */
#digital-catalog .product-flex .product-name{
    display: flex;
    font-weight: 700;
}

#digital-catalog .product-flex .period,
#digital-catalog .product-flex2 .release-date,
#digital-catalog .product-flex2 .product-number{
    font-size: 0.8rem;
    text-align: right;
    font-family: "Roboto", sans-serif;
}

#digital-catalog .product-description {
    margin: 12px 0;
    font-size: 14px;
    margin-bottom: 2rem;
    height: 290px;
}

/* カテゴリ別、BOX高さ調整 */
/* 壁装材:BOXの高さ */
#digital-catalog #tab-wallcvr .product-item {
    /* position: relative; */
    width: 325px;
    height: auto;
    height: 680px;
    border: 1px solid #ccc;
    padding: 2rem 2rem 1.5rem;
    box-sizing: border-box;
}

#digital-catalog #tab-wallcvr .product-item:nth-of-type(1),
#digital-catalog #tab-wallcvr .product-item:nth-of-type(2),
#digital-catalog #tab-wallcvr .product-item:nth-of-type(3){
    height: 680px;
}

#digital-catalog #tab-wallcvr .product-item:nth-of-type(4),
#digital-catalog #tab-wallcvr .product-item:nth-of-type(5),
#digital-catalog #tab-wallcvr .product-item:nth-of-type(6) {
    height: 643px;
}
#digital-catalog #tab-wallcvr .product-item:nth-of-type(7),
#digital-catalog #tab-wallcvr .product-item:nth-of-type(8),
#digital-catalog #tab-wallcvr .product-item:nth-of-type(9) {
    height: 635px;
}

/* 壁装材:説明文高さ */
#digital-catalog #tab-wallcvr .product-description {
    margin: 24px 0 16px;
    font-size: 14px;
    height: 300px;
    height: auto;
}

/* 壁装材:ボタン位置 */
#digital-catalog #tab-wallcvr .product-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}


/* カーテン:BOXの高さ */
#digital-catalog #tab-curtain .product-item {
    /* position: relative; */
    width: 325px;
    height: auto;
    height: 550px;
    border: 1px solid #ccc;
    padding: 2rem 2rem 1.5rem;
    box-sizing: border-box;
}

/* カーテン:説明文高さ */
#digital-catalog #tab-curtain .product-description {
    margin: 24px 0 16px;
    font-size: 14px;
    height: 300px;
    height: auto;
}

/* カーテン:ボタン位置 */
#digital-catalog #tab-curtain .product-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

/* 床材:BOXの高さ */
#digital-catalog #tab-floorcvr .product-item {
    /* position: relative; */
    width: 325px;
    height: auto;
    height: 550px;
    border: 1px solid #ccc;
    padding: 2rem 2rem 1.5rem;
    box-sizing: border-box;
}

#digital-catalog #tab-floorcvr .product-item:nth-of-type(1),
#digital-catalog #tab-floorcvr .product-item:nth-of-type(2),
#digital-catalog #tab-floorcvr .product-item:nth-of-type(3){
    height: 565px;
}

#digital-catalog #tab-floorcvr .product-item:nth-of-type(4){
    height: 480px;
}

/* 床材:説明文高さ */
#digital-catalog #tab-floorcvr .product-description {
    margin: 24px 0 16px;
    font-size: 14px;
    height: 300px;
    height: auto;
}

/* 床材:ボタン位置 */
#digital-catalog #tab-floorcvr .product-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

/* カーペット:BOXの高さ */
#digital-catalog #tab-carpet .product-item {
    /* position: relative; */
    width: 325px;
    height: auto;
    height: 630px;
    border: 1px solid #ccc;
    padding: 2rem 2rem 1.5rem;
    box-sizing: border-box;
}

#digital-catalog #tab-carpet .product-item:nth-of-type(1),
#digital-catalog #tab-carpet .product-item:nth-of-type(2),
#digital-catalog #tab-carpet .product-item:nth-of-type(3) {
    height: 553px;
}

#digital-catalog #tab-carpet .product-item:nth-of-type(4),
#digital-catalog #tab-carpet .product-item:nth-of-type(5),
#digital-catalog #tab-carpet .product-item:nth-of-type(6) {
    height: 580px;
}

#digital-catalog #tab-carpet .product-item:nth-of-type(7),
#digital-catalog #tab-carpet .product-item:nth-of-type(8),
#digital-catalog #tab-carpet .product-item:nth-of-type(9) {
    height: 650px;
}


/* カーペット:説明文高さ */
#digital-catalog #tab-carpet .product-description {
    margin: 24px 0 16px;
    font-size: 14px;
    height: 300px;
    height: auto;
}

/* カーペット:ボタン位置 */
#digital-catalog #tab-carpet .product-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

/* 椅子張り・家具:BOXの高さ */
#digital-catalog #tab-fabfur .product-item {
    /* position: relative; */
    width: 325px;
    height: auto;
    height: 590px;
    border: 1px solid #ccc;
    padding: 2rem 2rem 1.5rem;
    box-sizing: border-box;
}

/* 椅子張り・家具:説明文高さ */
#digital-catalog #tab-fabfur .product-description {
    margin: 24px 0 16px;
    font-size: 14px;
    height: 300px;
    height: auto;
}

/* 椅子張り・家具:ボタン位置 */
#digital-catalog #tab-fabfur .product-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

/* 環境配慮品:BOXの高さ */
#digital-catalog #tab-functional .product-item {
    /* position: relative; */
    width: 325px;
    height: auto;
    height: 605px;
    border: 1px solid #ccc;
    padding: 2rem 2rem 1.5rem;
    box-sizing: border-box;
}

/* 環境配慮品:説明文高さ */
#digital-catalog #tab-functional .product-description {
    margin: 24px 0 16px;
    font-size: 14px;
    height: 300px;
    height: auto;
}

/* 環境配慮品:ボタン位置 */
#digital-catalog #tab-functional .product-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}




/* ボタンを2列に */
#digital-catalog .product-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    position: absolute;
    bottom: 1.5rem;
    left: auto;
    right: auto;
}

/* ボタンを2列に */
#digital-catalog .product-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    /* position: absolute; */
    bottom: 1.5rem;
    left: auto;
    right: auto;
}

/* デフォルトボタン高さ */
#digital-catalog .product-buttons a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    width: 128px;
    height: 40px;
    border-radius: 4px;
    border: 2px solid #222;
    color: #222;
    font-size: 0.7rem;
}

/* 椅子張りボタン高さ */
#digital-catalog #tab-fabfur .product-buttons button {
    background-color: #fff;
    width: 128px;
    height: 40px;
    border-radius: 4px;
    border: 2px solid #222;
    color: #222;
    font-size: 0.7rem;
}

#digital-catalog img.artDECO {
    display: block;
    width: 248px;
    height: 107px;
    margin: 4rem auto 0;
}

/* デジタルカタログ ベストPDF全画像ダウンロード */
#digital-catalog-download {
    width: 100%;
    max-width: 1064px;
    padding: 0 20px;
    margin: 0 auto;
}

/* BOXのタイトル */
#digital-catalog-download h2.dl-title {
    font-size: 1.3125rem;
    margin-top: 2rem;
    margin-left: 1rem;
    margin-bottom: 0rem;
}

#digital-catalog-download h1 {
    font-size: 24px;
}

#digital-catalog-download h2 {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    width: auto;
}

#digital-catalog-download h3 {
    font-size: 13px;
    margin: 0.5rem 1rem 1rem;
}

/* リンク共通 */
#digital-catalog-download a {
    text-decoration: none;
    /* font-family: "NotoSansCJKjp", "Yu Gothic", sans-serif; */
}

/* .download_box00（全体） */
#digital-catalog-download .download_box00 {
    margin-top: 5rem;
}

#digital-catalog-download .download_box00 h2 {
    font-weight: 700;
    font-size: 1.3rem;
    padding-left: 1rem;
}

#digital-catalog-download .download_box00 img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* .download_box00, 01, 02の見出し共通 */
main #digital-catalog-download .download_box01 h2 {
    font-size: 15px;
    margin: 0;
    width: auto;
}

/* wall-proページで使用 */
#digital-catalog-download .uk-text-center p.size {
    font-size: 15px;
}

/* .download_box01 */
#digital-catalog-download .download_box01 {
    box-sizing: border-box;
    background-color: #F8F8F8;
    margin: 0 auto;
    width: 100%;
    height: 151px;
}

/* グリッドレイアウト */
#digital-catalog-download .uk-grid {
    display: grid;
    grid-template-columns: repeat(3, 3fr);
    gap: 2rem;
    list-style: none;
}

/* ボタンエリア */
#digital-catalog-download .dl_btn {
    margin: 1rem 1rem;
    padding: 1rem 2rem;
    background-color: #426599;
    border-radius: 8px;
    position: relative;
}

#digital-catalog-download .dl_btn h2 {
    font-weight: 400;
    color: #fff;
}

/* タイトルとボタンを並べるエリア */
#digital-catalog-download .imgdl_title_link h2 {
    width: auto;
    margin-top: 0;
}

#digital-catalog-download .imgdl_title_link {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
}

#digital-catalog-download .imgdl_title_link a {
    text-decoration: underline;
    justify-content: center;
}

/* テキスト中央寄せ＋サイズ調整 */
#digital-catalog-download .uk-text-center {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 0 1rem;
}

#digital-catalog-download .uk-text-center img {
    width: 25px;
    height: 25px;
}

#digital-catalog-download a.back-button {
    font-family: "Noto sans JP",sans-serif;
    font-size: 16px;
    color: #222;
    line-height: 56px;
    width: 176px;
    text-decoration: none;
    background-color: #fff;
    border: 2px solid #222;    
    border-radius: 8px;
    padding: 0;
    margin: 3rem auto 0;
    display: block;
    text-align: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

#digital-catalog-download a.back-button:hover {
    color: #868686;
    border: 2px solid #868686;
}

#digital-catalog-download a.spec_description_link {
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

#digital-catalog-download a.spec_description_link::after {
    content: '';
    background-image: url(../img/open_blue.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 12px;
    height: 12px;
    margin-left: .2em;
}

@media (min-width: 1024px) {

    .logo-and-icons {
        display: flex;
    }
    .icon-left, .icon-left2, .icon-right {
        display: none;
    }
    .hamburger {
        display: none;
    }
    .menu {
        display: flex;
    }
}

@keyframes fade {
    0%, 7.5%, 25%, 32.5%, 100% {
        opacity: 0;
    }
    7.5%, 25% {
        opacity: 1;
    }
}

/* SP digital-catalog =========== */

@media (max-width: 1024px) {
/* 以下追加 */
main {
    margin: 5rem auto 3rem;
    padding: 0 20px;
}

/* ぱんくずリスト */
.pankuzu {
    width: 100%;
    margin-bottom: 2rem;
    display: block;
}

.pankuzu ul {
    display: inline;
    white-space: wrap;
    list-style: none;
    margin: auto 0;
    width: 100%;
}

.pankuzu ul .last {
  white-space: normal;     /* 最後だけ折り返しを許可！ */
}

.pankuzu li {
    margin-right: 0.5rem;
    font-size: 12px;
    display: inline-block;
}

.pankuzu span {
    font-size: 12px;
}

.pankuzu a {
    color: #426599;
}

#digital-catalog {
    width: 100%;
    padding: 0;
}

/* タブ切り替え */
#digital-catalog .tab-list {
    display: flex;
    padding: 0;
    margin: 1rem auto;
    list-style: none;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: auto;
    border-bottom: none;
    margin: 0;
    row-gap: 14px;
}

#digital-catalog .tab {
    padding: 10px 0px;
    cursor: pointer;
    border-bottom: 1px solid #222;
    transition: border-color 0.3s;
    color: #BFBFBF;
    width: calc(100% / 3);
    width: 33%;
    box-sizing: border-box;
    text-align: center;
    font-size: 15.5px;
}

#digital-catalog .tab.active {
    border-bottom: 6px solid #496B9C; /* 下線 */
    color: #496B9C;
    width: auto;
    width: calc(100% / 3);
}

#digital-catalog .tab-content {
    display: none;
    padding: 1rem 0;
}

#digital-catalog .tab-content.active {
    display: block;
    scroll-margin-top: 15rem!important; /* 固定ヘッダーなどの高さ分を調整 */
}

/* メガメニューからタブ開いた場所へスクロール表示 */
#tab-wallcvr,
#tab-curtain,
#tab-floorcvr,
#tab-carpet,
#tab-fabfur,
#tab-functional.active{
  scroll-margin-top: 15rem!important; /* 固定ヘッダーなどの高さ分を調整 */
}


/* 商品一覧 */
#digital-catalog .product-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 0;
    width: 100%;
}

#digital-catalog .product-item {
    position: relative;
    width: auto;
    height: auto;
    border: 1px solid #ccc;
    padding: 2rem 1.5rem 1.5rem;
    margin: 0 0rem;
    box-sizing: border-box;
}

/* お気に入りボタン */
#digital-catalog .favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* 商品画像 */
#digital-catalog .product-image {
    display: block;
    margin-top: 32px; /* ハートとの間隔確保 */
    width: 161px;
    height: 162px;
    margin: 0 auto 1rem;
}

#digital-catalog #tab-functional .product-image{
    width: 100%;
    height: auto;
    display: block;
    margin-top: 32px; /* ハートとの間隔確保 */
    width: 161px;
    height: 228px;
    margin: 0 auto 1rem;
}

/* デフォルトタイトル */
#digital-catalog .product-title-wrap {
    height: 75px;
}

/* 機能性商品タイトル */
#digital-catalog #tab-functional .product-title-wrap {
    height: 20px;
}

/* タイトル上段 */
#digital-catalog .product-flex{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #222;
}

/* タイトル下段 */
#digital-catalog .product-flex2 {
    display: flex;
    justify-content: space-between;
}

/* タイトル商品名 */
#digital-catalog .product-flex .product-name{
    display: flex;
    font-weight: 700;
}

#digital-catalog .product-flex .period,
#digital-catalog .product-flex2 .release-date,
#digital-catalog .product-flex2 .product-number{
    font-size: 0.8rem;
    text-align: right;
}

#digital-catalog .product-description {
    margin: 12px 0;
    font-size: 14px;
    height: auto;
    margin-bottom: 7rem;
    height: auto;
}

#digital-catalog #tab-fabfur .product-description {
    height: auto;
    margin-bottom: 10rem;
}

#digital-catalog .center-box {
    display: flex;
    justify-content: center;
}

#digital-catalog .product-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 300px;
    width: 100%; /* ←OK。中央寄せにしたいならここは残しても良い */
}


/* カテゴリ別、BOX高さ調整 */
/* 壁装材:BOXの高さ */
#digital-catalog #tab-wallcvr .product-item {
    height: auto;
    height: 650px;
    border: 1px solid #ccc;
    padding: 2rem 2rem 1.5rem;
    box-sizing: border-box;
    
    width: 100%;
}

/* 説明文とボタンの余白 */
#digital-catalog #tab-wallcvr .product-item:nth-of-type(1){
    height: 570px;
}
#digital-catalog #tab-wallcvr .product-item:nth-of-type(2){
    height: 550px;
}
#digital-catalog #tab-wallcvr .product-item:nth-of-type(3){
    height: 650px;
}
#digital-catalog #tab-wallcvr .product-item:nth-of-type(4) {
    height: 560px;
}
#digital-catalog #tab-wallcvr .product-item:nth-of-type(5) {
    height: 610px;
}
#digital-catalog #tab-wallcvr .product-item:nth-of-type(6) {
    height: 570px;
}
#digital-catalog #tab-wallcvr .product-item:nth-of-type(7){
    height: 630px;
}
#digital-catalog #tab-wallcvr .product-item:nth-of-type(8){
    height: 590px;
}
#digital-catalog #tab-wallcvr .product-item:nth-of-type(9) {
    height: 520px;
}

/* 壁装材:説明文高さ */
#digital-catalog #tab-wallcvr .product-description {
    margin: 24px 0 24px;
    font-size: 14px;
    height: 300px;
    height: auto;
}

/* 壁装材:ボタン位置 */
#digital-catalog #tab-wallcvr .product-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}


/* カーテン:BOXの高さ */
#digital-catalog #tab-curtain .product-item {
    height: auto;
    height: 530px;
    border: 1px solid #ccc;
    padding: 2rem 2rem 1.5rem;
    box-sizing: border-box;
    width: 100%;
}

/* 説明文とボタンの余白 */
#digital-catalog #tab-curtain .product-item:nth-of-type(1),
#digital-catalog #tab-curtain .product-item:nth-of-type(2),
#digital-catalog #tab-curtain .product-item:nth-of-type(3){
    height: 550px;
}

#digital-catalog #tab-curtain .product-item:nth-of-type(4){
    height: 580px;
}

/* カーテン:説明文高さ */
#digital-catalog #tab-curtain .product-description {
    margin: 24px 0 24px;
    font-size: 14px;
    height: 300px;
    height: auto;
}

/* カーテン:ボタン位置 */
#digital-catalog #tab-curtain .product-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}


/* 床材:BOXの高さ */
#digital-catalog #tab-floorcvr .product-item {
    height: auto;
    height: 550px;
    border: 1px solid #ccc;
    padding: 2rem 2rem 1.5rem;
    box-sizing: border-box;
    width: 100%;
}

/* 説明文とボタンの余白 */
#digital-catalog #tab-floorcvr .product-item:nth-of-type(1),
#digital-catalog #tab-floorcvr .product-item:nth-of-type(2){
    height: 590px;
}
#digital-catalog #tab-floorcvr .product-item:nth-of-type(3){
    height: 570px;
}

#digital-catalog #tab-floorcvr .product-item:nth-of-type(4){
    height: 480px;
}

/* 床材:説明文高さ */
#digital-catalog #tab-floorcvr .product-description {
    margin: 24px 0 24px;
    font-size: 14px;
    height: 300px;
    height: auto;
}

/* 床材:ボタン位置 */
#digital-catalog #tab-floorcvr .product-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}


/* カーペット:BOXの高さ */
#digital-catalog #tab-carpet .product-item {
    height: auto;
    height: 630px;
    border: 1px solid #ccc;
    padding: 2rem 2rem 1.5rem;
    box-sizing: border-box;
    width: 100%;
}

/* カーペット:説明文とボタンの余白 */
#digital-catalog #tab-carpet .product-item:nth-of-type(1),
#digital-catalog #tab-carpet .product-item:nth-of-type(2){
    height: 590px;
}

#digital-catalog #tab-carpet .product-item:nth-of-type(3){
    height: 550px;
}
#digital-catalog #tab-carpet .product-item:nth-of-type(4){
    height: 520px;
}

#digital-catalog #tab-carpet .product-item:nth-of-type(5){
    height: 580px;
}

#digital-catalog #tab-carpet .product-item:nth-of-type(6){
    height: 620px;
}

#digital-catalog #tab-carpet .product-item:nth-of-type(7){
    height: 680px;
}

#digital-catalog #tab-carpet .product-item:nth-of-type(8),
#digital-catalog #tab-carpet .product-item:nth-of-type(9){
    height: 520px;
}

/* カーペット:説明文高さ */
#digital-catalog #tab-carpet .product-description {
    margin: 24px 0 24px;
    font-size: 14px;
    height: 300px;
    height: auto;
}

/* カーペット:ボタン位置 */
#digital-catalog #tab-carpet .product-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}


/* 椅子張り・家具:BOXの高さ */
#digital-catalog #tab-fabfur .product-item {
    height: auto;
    height: 570px;
    border: 1px solid #ccc;
    padding: 2rem 2rem 1.5rem;
    box-sizing: border-box;
    width: 100%;
}

/* 椅子張り・家具:説明文高さ */
#digital-catalog #tab-fabfur .product-description {
    margin: 24px 0 24px;
    font-size: 14px;
    height: 300px;
    height: auto;
}

/* 椅子張り・家具:説明文とボタンの余白 */
#digital-catalog #tab-fabfur .product-item:nth-of-type(1),
#digital-catalog #tab-fabfur .product-item:nth-of-type(2){
    height: 560px;
}
#digital-catalog #tab-fabfur .product-item:nth-of-type(3){
    height: 620px;
}

/* 椅子張り・家具:ボタン位置 */
#digital-catalog #tab-fabfur .product-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

/* 環境配慮品:BOXの高さ */
#digital-catalog #tab-functional .product-item {
    height: auto;
    height: 595px;
    border: 1px solid #ccc;
    padding: 2rem 2rem 1.5rem;
    box-sizing: border-box;
    width: 100%;
}

/* 環境配慮品:説明文高さ */
#digital-catalog #tab-functional .product-description {
    margin: 24px 0 24px;
    font-size: 14px;
    height: 300px;
    height: auto;
}

/* 環境配慮品:説明文とボタンの余白 */
#digital-catalog #tab-functional .product-item:nth-of-type(1),
#digital-catalog #tab-functional .product-item:nth-of-type(2){
    height: 530px;
}
#digital-catalog #tab-functional .product-item:nth-of-type(3){
    height: 610px;
}

/* 環境配慮品:ボタン位置 */
#digital-catalog #tab-functional .product-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}





/* デフォルトボタン高さ */
#digital-catalog .product-buttons a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    width: 140px;
    height: 40px;
    border-radius: 4px;
    border: 2px solid #222;
    color: #222;
    font-size: 0.7rem;

}

/* 椅子張りボタン高さ */
#digital-catalog #tab-fabfur .product-buttons button {
    background-color: #fff;
    width: 128px;
    height: 40px;
    border-radius: 4px;
    border: 2px solid #222;
    color: #222;
    font-size: 0.7rem;
}

#digital-catalog img.artDECO {
    display: block;
    width: 248px;
    height: 107px;
    margin: 4rem auto 0;
}


/* デジタルカタログ ベストPDF全画像ダウンロード */
#digital-catalog-download {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

#digital-catalog-download.content {
    padding: 0 1rem;
}

/* BOXのタイトル */
#digital-catalog-download h2.dl-title {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-left: 1.5rem;
    margin-bottom: 0rem;
}

#digital-catalog-download h2 {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    width: auto;
}

#digital-catalog-download h3 {
    font-size: 13px;
    margin: 0.5rem 1rem 1rem;
}

/* リンク共通 */
#digital-catalog-download a {
    text-decoration: none;
    /* color: #222; */
    /* font-family: "NotoSansCJKjp", "Yu Gothic", sans-serif; */
}

/* .download_box00（全体） */
#digital-catalog-download .download_box00 {
    margin-top: 5rem;
}

#digital-catalog-download .download_box00 h2 {
    font-weight: 700;
    font-size: 1.3rem;
    padding-left: 1rem;
}

#digital-catalog-download .download_box00 img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* .download_box00, 01, 02の見出し共通 */
#digital-catalog-download .download_box01 h2 {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    width: auto;
}

/* wall-proページで使用 */
#digital-catalog-download .uk-text-center p.size {
    font-size: 15px;
}

/* .download_box01 */
#digital-catalog-download .download_box01 {
    box-sizing: border-box;
    background-color: #F8F8F8;
    margin-bottom: 0;
    width: 100%;
    height: 151px;
}

/* グリッドレイアウト */
#digital-catalog-download .uk-grid {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 1rem;
}

/* ボタンエリア */
#digital-catalog-download .dl_btn {
    border-radius: 0.2rem;
}

/* タイトルとボタンを並べるエリア */
#digital-catalog-download .imgdl_title_link h2 {
    width: auto;
    margin-top: 0;
}

#digital-catalog-download .imgdl_title_link {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    align-items: flex-start;
    line-height: 1.5;
}

#digital-catalog-download .imgdl_title_link a{
    margin-left: 1.5rem;
}

/* テキスト中央寄せ＋サイズ調整 */
#digital-catalog-download .uk-text-center {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 0 1rem;
}
}