@charset "UTF-8";

@font-face {
    font-family: 'CustomFont'; /* フォントの名前 */
    src: url('../fonts/zen-maru-gothic-v18-japanese-700.woff2') format('truetype'); /* フォントファイルへのパス */
    font-weight: 900; /* より細いフォントの太さ */
    font-style: normal; /* フォントのスタイル */
  }
@font-face {
    font-family: 'CustomFont2'; /* フォントの名前 */
    src: url('../fonts/baloo-regular.ttf') format('truetype'); /* フォントファイルへのパス */
    font-weight: 900; /* より細いフォントの太さ */
    font-style: normal; /* フォントのスタイル */
  }

body {
    font-family: 'CustomFont', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}


.status-label {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border-radius: 4px;
    z-index: 2;
}

/* 状態ごとの色分け（任意） */
.status-label:contains("販売予定") { background-color: #ecab49; }
.status-label:contains("販売終了") { background-color: #9e9e9e; }

.disabled-link {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
}

/* 状態別カラー */
.status-label.upcoming {
    background-color: #cf56b1; /* オレンジ：販売予定 */
}

.status-label.ended {
    background-color: #9e9e9e; /* グレー：販売終了 */
}
.status-label.available {
    background-color: #5fbfdf;
}
.status-label.lowstock {
    background-color: #5fbfdf;
}

.product-thumb-wrapper {
    position: relative;
}


.title {
    display: flex;
    align-items: center;
}


.title h2 {
    font-family: 'CustomFont2', sans-serif;
    font-size: 3em;
    color: #333333;
    margin-left: 30px;
    padding-top: 10px;
}

.title img{
    width: 60px;
}

/* コンテナ */
.new-images-container {
    max-width: 1200px;
    margin: 200px auto 70px;
    padding: 20px;
}



.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start; /* 必要に応じて center */
  padding: 30px 0;
}

.product-card {
  flex: 1 1 250px;    /* 基本幅250px、縮小可 */
  max-width: 250px;    /* 最大幅を250pxに固定 */
  min-width: 160px;    /* 最小幅を設定して狭くなりすぎないように */
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease;
}
.product-card a {
    text-decoration: none;
}

.product-card:hover {
  transform: translateY(-3px);
}

/* 商品画像 */
.product-thumbnail {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
/* 締切表示 */
.product-deadline {
  width: 100%;
  text-align: center;
  background: #f8f8f8;
  font-size: 0.9em;
  padding: 4px 0;
  color: #555;
  border-bottom: 1px solid #e0e0e0;
}

/* 詳細エリア */
.product-info {
  padding: 10px;
}

.profile-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.more_button {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

a.btn_18 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 250px;
    padding: 1rem 3rem;
    font-weight: bold;
    border-radius: 10px;
    color: #3b3b3b;
    font-size: 20px;
    border: 3px solid #3b3b3b;
    box-shadow: 5px 5px #3b3b3b;
    transition: box-shadow 0.3s ease-in-out;
    background-color: white;
    text-decoration: none;
    position: relative;
}

a.btn_18:hover {
    box-shadow: none;
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out; /* ← 追加 */
}

.button_pic {
    width: 100px;
    margin-right: 30px;
    margin-bottom: -30px;
    transition: transform 0.3s ease-in-out;
}

[class^="button_pic"].hovered {
    transform: translate(5px, 5px);
}
.button_pic2{
    width: 100px;
    margin-right: 30px;
    margin-bottom: -15px;
    transition: transform 0.3s ease-in-out;

}
.button_pic3{
    width: 100px;
    margin-right: 30px;
    margin-bottom: -26px;
    position: relative;
    z-index: 5;
    transition: transform 0.3s ease-in-out;

}

.arrow{
    width: 25px;
    height: 25px;
    margin-top: 3px;
}
.product_name{
    color: #333333;
    font-size: 1.3em;
}
.product_price{
    text-align: left;
    color: #d85ca8;
    font-size: 1.5em;
}
.product_explain{
    color: #333333;
}
.product_creator{
    display: flex;
    align-items: center;
    gap: 15px;
}
.product_creator p{
    color: #333333;
    font-size: 1.4em;
}
.elapsed-time{
    text-align: right;
    color: #5f5f5f;
    width: 100%;
    font-size: .8em;
}
.elapsed-time img{
    width: 13px;
    height: 13px;
    margin-right: 5px;
    margin-top: 3px;
}
.product-category {
    background-color: #5fbfdf; /* 水色 */
    color: #fff;               /* 白文字 */
    font-weight: bold;
    font-size: 0.85rem;
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 8px;
}

/* ---------- mosaic thumbnail ---------- */
.product-thumb-wrapper {
    position: relative;          /* ロゴを重ねる土台 */
}

.product-thumbnail {
    width: 100%;
    display: block;
    border-radius: 8px;
}

/* ▼ モザイク（ぼかし） */
.product-thumbnail.mosaic {
    /* ぼかし量はお好みで。pixelate を強調したい場合は値を上げる */
    filter: blur(6px);
    /* さらに明度を落として「隠している」感を強めるなら ↓ */
    /* filter: blur(6px) brightness(0.7); */
}

/* ▼ ロゴ（画像の 2/3 サイズで中央配置） */
.mosaic-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 完全中央寄せ */
    width: 66%;       /* = 2/3 */
    height: auto;
    pointer-events: none;        /* クリック判定を邪魔しない */
    opacity: 0.85;              /* 背景となじむ程度の透過に */
}




/* レスポンシブ対応（スマホ・タブレット） */
@media screen and (max-width: 1024px) {
    .new-images-container {
        padding: 15px;
    }

    .title h2 {
        font-size: 2.2em;
    }

    .title img {
        width: 45px;
    }

    .product-card {
        width: 200px;
    }

    .product_name {
        font-size: 1.1em;
    }

    .product_price {
        font-size: 1.2em;
    }

    .product_creator p {
        font-size: 1.2em;
    }


    .btn_18 {
        width: 200px!important;
        font-size: 18px!important;
        padding: 0.8rem 2rem!important;
    }
    .button_pic{
    width: 80px;
    margin-right: 30px;
    margin-bottom: -25px;
}
.button_pic2{
    width: 80px;
    margin-right: 30px;
    margin-bottom: -12px;
}
.button_pic3{
    width: 80px;
    margin-right: 30px;
    margin-bottom: -22px;
    position: relative;
    z-index: 5;
}


    .arrow {
        width: 20px;
        height: 20px;
    }
      .product-thumbnail{height:300px;}

}

@media screen and (max-width: 800px) {

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center; /* 必要に応じて center */
  padding: 30px 0;
}

}
@media screen and (max-width: 600px) {

    .title h2 {
        font-size: 1.8em;
        margin-left: 15px;
    }

    .scroll-wrapper {
        padding: 0 10px;
    }

    .product-card {
        width: 160px;
    }

    .product_name {
        font-size: 1em;
    }

    .product_price {
        font-size: 1.1em;
    }

    .product_creator p {
        font-size: 1em;
    }

    .profile-icon {
        width: 40px;
        height: 40px;
    }

    .btn_18 {
        width: 180px;
        font-size: 16px;
        padding: 0.6rem 1.5rem;
    }


    .arrow {
        width: 18px;
        height: 18px;
    }
      .product-thumbnail{height:240px;}

}

/* ここまで */


.featured-creators {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}
.featured-creators a{
    text-decoration: none;
    color: #333333;
}

.scroll-wrapper {
    overflow: hidden;
    position: relative;
}

.creator-list {
    display: flex;
    gap: 24px;
    padding: 16px 0;
    width: max-content;
    list-style: none;
    margin-top: 50px;
}

.creator-item {
    flex: 0 0 auto;
    text-align: center;
    font-size: 20px;
}

.profile-border {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: var(--border-color, #ccc);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.profile-icon-large {
    border-radius: 50%;
    object-fit: cover;
    width: 135px;
    height: 135px;
    background-color: white;
}


@media screen and (max-width: 600px) {

.profile-border {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--border-color, #ccc);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.profile-icon-large {
    border-radius: 50%;
    object-fit: cover;
    width: 95px;
    height: 95px;
    background-color: white;
}
}


/* ここまで*/


.product-thumb-wrapper.mosaic img.product-thumbnail {
    filter: blur(8px); /* モザイクっぽくする */
}

.product-thumb-wrapper .mosaic-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    opacity: 0.8;
    pointer-events: none;
}

.talk-start {
    color: #333333;
}

.talk-start span{
    font-size: .8em;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.page-nav {
  background-color: #bbb;
  color: #fff !important;
  padding: 8px 16px 9px;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.page-nav:hover {
  background-color: #27acd9;
}

.page-nav.disabled {
  background-color: #888;
  pointer-events: none;
  cursor: default;
}

.current-page {
  background-color: #27acd9;
  color: white;
  padding: 8px 16px;
  border-radius: 50%;
  font-weight: bold;
}



.creator-list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 20px;
  justify-content: center;
  margin: 100px 0 50px;
}

.creator-card {
  display: block;
  width: 170px;
  padding: 30px 10px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  text-decoration: none;
  color: inherit;
  background-color: #fff;
  transition: transform 0.2s ease;
}

.creator-card:hover {
  transform: translateY(-4px);
}

.creator-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  margin-bottom: 10px;
}

.creator-card p {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
}


.product-category {
    background-color: #5fbfdf; /* 水色 */
    color: #fff;               /* 白文字 */
    font-weight: bold;
    font-size: 0.85rem;
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 8px;
}



@media screen and (max-width: 600px) {
        .product-card {
  flex: 1 1 200px; /* 初期幅250px、縮小・拡大可能 */
  max-width: 200px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease;
}
    .title h2 {
        font-size: 1.5em;
        margin-left: 10px;
    }

    .title img {
        width: 35px;
    }

    .product_name {
        font-size: 0.95em;
    }

    .product_price {
        font-size: 1em;
    }

    .product_creator p {
        font-size: 0.95em;
    }

    .product_explain {
        font-size: 0.85em;
    }

    .profile-icon {
        width: 36px;
        height: 36px;
    }

    .elapsed-time {
        font-size: 0.7em;
    }
    .new-images-container {
    max-width: 1200px;
    margin: 120px auto 70px;
    padding: 20px;
}
.creator-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 20px;
  justify-content: center;
  margin: 50px 0 50px;
}

}