/* =========================================================
  Blue Parrot TOP：CSS（整理版）
  ・未使用を削除
  ・メディアクエリは PC / スマホの2本だけ
  ・仕様/見た目は維持
  ・ブレイクポイント：768px（一般的に最も安定）
========================================================= */

/* =========================
  0) 共通ベース
========================= */
:root{
  --bp-mobile: 768px;
}

img{
  max-width: 100%;
  height: auto;
}

.visually-hidden{
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

/* =========================
  1) メインビジュアル（vegas）
========================= */
.top-img-container{
  box-sizing: border-box;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1030px;
}

#mainvisual{
  width: 100%;
  height: 550px;
  text-align: center;
}

#mainvisual img{
  width: 100%;
  height: 550px;
  object-fit: cover;
}

/* ロゴサイズ（PC基準） */
.top-img-container .mainlogo{
  width: 100%;
  max-width: 1000px;
}

/* PC-only / Mobile-only 切替（他パーツで使う可能性あるので残す） */
.only-mobile{ display: none !important; }
.only-desktop{ display: block !important; }


/* =========================
  2) NEWS（お知らせ）
========================= */
.p-line-informaiton{
  display: flex;
  flex-wrap: wrap;
  margin-top: 75px;
}

.p-line-informaiton ul{
  flex: 1;
  font-size: 13px;
}

.p-line-informaiton li{
  margin-bottom: 15px;
}

.p-line-informaiton__ttl{
  position: relative;
  margin: 0 40px 0 0;
  font-size: 14px;
  font-weight: bold;
}

.p-line-informaiton__ttl:before{
  content: "";
  position: absolute;
  top: 7px;
  right: -20px;
  width: 1px;
  height: 10px;
  background: #d2d2d2;
}


/* =========================
  3) 商品リスト（おすすめ / 新着 共通）
========================= */

.section-title{
  font-size: 16px;
  margin:30px 10px 5px;
  padding: 0 0 20px;
  
}

.c-item-list2{
  display: flex;
  flex-wrap: wrap;
}

.c-item-list2__item{
  position: relative;
  box-sizing: border-box;
  margin-bottom: 40px;
  padding: 0 20px 20px;
  width: 16%;                  /* PC：6列相当 */
  transition: opacity 0.2s;
  word-break: break-all;
}

.c-item-list2__item.is-hidden{
  display: none;
}

.c-item-list2__img{
  position: relative;
  margin-bottom: 30px;
}

.c-item-list2__img:before{
  content: "";
  display: block;
  padding-top: 100%;
}

.c-item-list2__img a{
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.c-item-list2__img img{
  display: inline-block;
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  text-align: center;
}

.c-item-list2__ttl{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 0.8em;
  color: #000;
}

.c-item-list2__price{
  color: #454545;
  font-size: 15px;
  margin-top: 15px;
}

.c-item-list2__expl{
  margin-top: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 0.8em;
}

/* NEW ARRIVAL / RECOMMEND セクション下余白 */
.p-new-item.u-container{
  padding-bottom: 0;
}


/* =========================
  4) FREE（フリースペース）
========================= */
.p-free__body{
  margin-left: 60px;
  margin-right: 60px;
  line-height: 2;
}


/* =========================================================
  スマホ（<=768px）
========================================================= */
@media screen and (max-width: 768px){

  /* PC/SP切替 */
  .only-desktop{ display: none !important; }
  .only-mobile{ display: block !important; }

  /* メインビジュアル余白 */
  .top-img-container{
    padding-left: 0;
    padding-right: 0;
  }

  /* ロゴサイズ（スマホ） */
  .top-img-container .mainlogo{
    width: 68%;
    max-width: 520px;
  }

  /* NEWS */
  .p-line-informaiton{
    display: block;
  }

  .p-line-informaiton ul{
    font-size: 12px;
  }

  .p-line-informaiton__ttl{
    margin: 0;
  }

  .p-line-informaiton__ttl:before{
    content: none;
  }

  /* 商品リスト：3列 */
  .c-item-list2__item{
    width: 33%;
    padding: 0 10px 20px;
    margin-bottom: 45px;
  }

  .c-item-list2__img{
    text-align: center;
  }

  /* FREE */
  .p-free__body{
    margin-left: 0;
    margin-right: 0;
  }
}


/* ==========================
   店舗紹介（トップページ）
========================== */
.top-store {
  margin: 80px auto;
  padding: 0 20px;
  max-width: 1100px;
}

.top-store__heading {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.2em;
  text-align: left;
  border-left: 6px solid #c9ab7b;
  padding-left: 12px;
}

.top-store__wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.top-store__img {
  width: 45%;
  height:250px;
  border-radius: 10px;
  object-fit: cover;
}

.top-store__text {
  width: 55%;
  line-height: 1.9;
  font-size: 1rem;
}

.top-store__text p {
  margin-bottom: 1em;
}

.top-store__btn {
  display: inline-block;
  padding: 0.7em 1.4em;
  background-color: #c9ab7b;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.25s;
}

.top-store__btn:hover {
  opacity: 0.8;
}

/* ===== スマホ最適化 ===== */
@media (max-width: 768px) {
  .top-store__wrapper {
    flex-direction: column;
  }

  .top-store__img,
  .top-store__text {
    width: 100%;
  }

  .top-store__heading {
    font-size: 1.5rem;
  }
}

