@charset "UTF-8";


.contact-page__hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 56px;
  padding: 90px 40px 86px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}

.contact-page__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-primary-30);
  opacity: .6;
  pointer-events: none;
}
/* 背景の細いライン */
.contact-page__hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.contact-page__hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

/* CONTACT */
.contact-page__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1;
}

/* 左右のライン */
.contact-page__eyebrow::before,
.contact-page__eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

/* タイトル */
.contact-page__hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.35;
}

/* 説明文 */
.contact-page__hero p:not(.contact-page__eyebrow) {
  max-width: 620px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.04em;
}


/* ========================================
   Tablet
======================================== */

@media (max-width: 768px) {

  .contact-page__hero {
    margin-bottom: 42px;
    padding: 70px 24px 66px;
  }

  .contact-page__hero h1 {
    font-size: 34px;
  }

  .contact-page__hero p:not(.contact-page__eyebrow) {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.9;
  }

}


/* ========================================
   Mobile
======================================== */

@media (max-width: 500px) {

  .contact-page__hero {
    margin-bottom: 36px;
    padding: 58px 20px 56px;
  }

  .contact-page__eyebrow {
    gap: 12px;
    margin-bottom: 16px;
    font-size: 10px;
    letter-spacing: 0.24em;
  }

  .contact-page__eyebrow::before,
  .contact-page__eyebrow::after {
    width: 20px;
  }

  .contact-page__hero h1 {
    font-size: 29px;
    letter-spacing: 0.1em;
  }

  .contact-page__hero p:not(.contact-page__eyebrow) {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.9;
  }

}


.shop-toolbar{
    display:flex;
    justify-content:flex-end;
    max-width: 1100px;
    margin:40px auto;
}

.shop-toolbar select{

    min-width:230px;
    height:52px;

    padding:0 18px;

    border:1px solid var(--shop-line);

    border-radius:12px;

    background:#fff;

    box-shadow:0 8px 30px rgba(0,0,0,.05);

    font-size:14px;

    transition:.25s;
}

.shop-toolbar select:hover{
    border-color:var(--color-primary);
}

.shop-toolbar select:focus{
    outline:none;
    border-color:var(--color-primary);
}


.shop-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ===========================
   Product Card
=========================== */

.product-card{
    overflow:hidden;
    position:relative;
    border:1px solid rgba(0,0,0,.06);
    border-radius:18px;
    background:#fff;
    transition:.35s;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
}

.product-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:var(--color-primary);
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}

.product-card:hover{
    transform:translateY(-8px);
    border-color:var(--color-primary);
    box-shadow:0 20px 55px rgba(0,0,0,.12);
}

.product-card:hover::before{
    transform:scaleX(1);
}

.product-card a{
    display:block;
    height:100%;
    color:inherit;
    text-decoration:none;
}

.product-card img,
.product-card>a>div:first-child{

    display:block;
    width:100%;
    height:240px!important;

    object-fit:contain;
    padding:26px;

    background:
        radial-gradient(circle at center,
            rgba(255,255,255,.75) 0%,
            rgba(255,255,255,.25) 100%);

    transition:.35s;
}

.product-card:hover img{
    transform:scale(1.04);
}

.product-card__body{
    padding: 0 22px 22px 22px;
}

.shop-badge{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:6px 14px;
    border-radius:999px;
    background:var(--color-primary-10);
    color:var(--color-primary);
    font-size:11px;
    font-weight:700;
    letter-spacing:.08em;
}

.product-card h2{
    margin:16px 0 14px;
    min-height:3.2em;
    color:#222;
    font-size:18px;
    font-weight:700;
    line-height:1.6;
    transition:.25s;
}

.product-card:hover h2{
    color:var(--color-primary);
}

.product-price{

    display:flex;
    justify-content:flex-end;
    align-items:flex-end;
    line-height: 1;
    gap:6px;
    color:var(--color-primary);

    font-size:28px;
    font-weight:800;
}

.product-price small{
    margin-bottom:3px;
    color:#777;
    font-size:12px;
    font-weight:500;
}

.product-stock{

    display:flex;
    align-items:center;
    justify-content:flex-end;

    margin-top:10px;
    font-size:13px;
}

.product-stock__label{

    color:#666;
    font-weight:600;
}

.product-stock__status{

    display:inline-flex;
    align-items:center;

    padding:3px 18px;

    border-radius:999px;

    font-size:12px;
    font-weight:700;
}


/* 30個以上 */

.stock-high{

    color:#228b4e;
    background:#eaf8ef;
}


/* 10〜29個 */

.stock-middle{

    color:#c97a00;
    background:#fff3dd;
}


/* 1〜9個 */

.stock-low{

    color:#d44a4a;
    background:#ffeaea;
}


/* 売り切れ */

.stock-out{

    color:#666;
    background:#efefef;
}

.shop-badge{
  display:inline-flex;
  padding:4px 9px;
  border-radius:999px;
  background:#edf1f4;
  color:#4d5964;
  font-size:11px;
  font-weight:700;
}
.product-card__footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:10px;
    padding-top:18px;
    border-top:1px solid rgba(0,0,0,.06);
    color:var(--color-primary);
    font-size:14px;
    font-weight:700;
    transition:.3s;
}

.product-card:hover .product-card__footer{
    letter-spacing:.08em;
}

.product-card__footer span:last-child{
    transition:.3s;
}

.product-card:hover .product-card__footer span:last-child{
    transform:translateX(6px);
}

/* =========================================
   売り切れ商品
========================================= */

.product-card.is-soldout{
    opacity:.55;
}

.product-card.is-soldout:hover{
    transform:none;
    border-color:rgba(0,0,0,.06);
    box-shadow:0 12px 35px rgba(0,0,0,.05);
}

.product-card.is-soldout::before{
    transform:scaleX(0);
}

.product-card.is-soldout img{
    transform:none!important;
}

.product-card.is-soldout h2{
    color:#555;
}

.product-card.is-soldout .product-card__footer{
    color:#999;
}

.product-card.is-soldout .product-card__footer span:last-child{
    transform:none!important;
}

.product-card__link{
    display:block;
    height:100%;
    cursor:not-allowed;
}

/* 商品一覧ページ レスポンシブ */
@media(max-width:1100px){

.shop-toolbar{
    display:flex;
    justify-content:flex-end;
    max-width: 1100px;
    margin:40px 20px;
}
.shop-grid{
    margin: 0 20px;
}
}
@media(max-width:960px){
  .shop-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:760px){
  .shop-title-row{
    align-items:stretch;
    flex-direction:column;
  }

  .shop-title-row form{
    min-width:0;
  }

  .shop-grid{
    grid-template-columns:1fr;
  }

  .product-card img,
  .product-card>a>div:first-child{
    height:245px!important;
  }

  .product-card h2{
    min-height:auto;
  }
}



/* ===========================
   Pagination
=========================== */

.shop-pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:24px;
    margin:80px 0;
}

.page-arrow{
    width:52px;
    height:52px;
    border:1px solid var(--color-primary);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color: var(--color-text-white);
    background: var(--color-primary);
    font-size:20px;
    transition:.25s;
}

.page-arrow:hover{
    background: var(--color-text-white);
    color: var(--color-primary);
}

.page-arrow.disabled{
    opacity:.35;
    pointer-events:none;
}

.page-count{
    min-width:90px;
    text-align:center;
    font-size:16px;
    font-weight:600;
    letter-spacing:.08em;
    color:#222;
}

@media(max-width:768px){

    .shop-pagination{
        gap:18px;
        margin:60px 0;
    }

    .page-arrow{
        width:46px;
        height:46px;
        font-size:18px;
    }

    .page-count{
        font-size:15px;
    }

}
