@charset "utf-8";
/*  html全体 */
html {
font-size: 62.5%;
}

/*  余白リセット */
#pouchLp *{ margin:0; padding:0; box-sizing: border-box;}

/*  ページ全体 */
#pouchLp {
margin:0 auto 4rem;
font-family:"Noto Sans JP", sans-serif, YuGothic, 'Yu Gothic Medium', 'Yu Gothic', Verdana, Meiryo, sans-serif;
font-size: 1.6rem;
line-height: 2;
letter-spacing: 0.1rem;
text-align: center;
}
/* リスト設定 */
#pouchLp li{list-style: none;}

/* 画像設定 */
#pouchLp img{
width: 100%;
object-fit: cover;
display: block;
margin: auto;
}

/* ▼ここからメインビジュアル▼ */
#pouchLp .main-visual img {
  width: 68%;
  height: auto;
  margin: 24px auto;
  display: block;
}

@media screen and (max-width: 669px) {
  #pouchLp .main-visual img {
    width: 85%; /* お好みで90%までOK */
  }
}


/* ▼ここから各種ボタン▼ */
#pouchLp #intro h2 {
  text-align: center;
  font-size: 205%;
  margin-top: 3%;
}

#pouchLp .pouch-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

#pouchLp .pouch-links .hover-box {
  width: 30%;
  min-width: 250px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: flex;
  justify-content: center;
  background: none;
}

#pouchLp .hover-box .hover-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  width: fit-content;
}

#pouchLp .hover-box:hover .hover-content {
  transform: translateY(-6px);
}

#pouchLp .image-wrapper {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
}

#pouchLp .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

#pouchLp .label {
  background-color: #13294b;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

#pouchLp .arrow {
  margin-top: 12px;
  width: 20px;
  height: 20px;
  border-bottom: 3px solid #333;
  border-right: 3px solid #333;
  transform: rotate(45deg);
  transition: border-color 0.3s ease;
}

/* hover時のスタイル変更 */
#pouchLp .hover-box:hover .label {
  background-color: #445b78;
}

#pouchLp .hover-box:hover .arrow {
  border-color: #445b78;
}

/* スマホ対応（縦に並べる） */
@media (max-width: 768px) {
 #pouchLp #intro .pouch-links {
    flex-direction: column;
    align-items: center;
  }

 #pouchLp #intro .hover-box {
    width: 100%;
  }

 #pouchLp #intro .image-wrapper {
    width: 160px;
    height: 160px;
  }
}

/* ▼ここからメッセージ▼ */
#pouchLp .hero {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto 24px;
  padding: 0 10%;
  box-sizing: border-box;
}
#pouchLp .hero img {
  width: 80%;
  height: auto;
  display: block;
}

#pouchLp .text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 0;
  animation: fadeIn 1.5s ease-out;
  z-index: 2;
}

#pouchLp .headline::before {
  content: "＼";
  margin-right: 0.2em;
}

#pouchLp .headline::after {
  content: "／";
  margin-left: 0.2em;
}

#pouchLp .headline {
  font-size: clamp(1.8rem, 6vw, 2.8rem); 
  font-weight: bold;
  display: inline-block;
}

#pouchLp .text-overlay p {
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  margin: 1em 0;
  line-height: 1.6;
  font-weight: bold;
}

#pouchLp .check::before {
  content: "✔";
  color: #6fe7dd;
  margin-right: 0.5em;
}

#pouchLp .idea::before {
  content: "💡";
  margin-right: 0.5em;
  color: #ffd93b;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 768px) {
  #pouchLp .hero {
    padding: 0;
  }

  #pouchLp .hero img {
    display: none;
  }

  #pouchLp .hero .text-overlay {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    padding: 3em 1.5em;
    background: #023015;
    box-sizing: border-box;
    border-radius: 0;
  }

  #pouchLp .headline {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  #pouchLp .text-overlay p {
    font-size: clamp(1rem, 4.5vw, 1.4rem);
  }
}

/* ▼ここからpoint▼ */
#pouchLp .features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 4rem 1rem;
}

#pouchLp .feature img {
  width: 75%;
  height: auto;
  display: block;
  margin: 0 auto;
}


/* ▼ここから商品セクション▼ */
#pouchLp .pouch-section {
  width: 75%;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

#pouchLp .pouch-title {
  font-size: 1.4rem; 
  font-weight: normal;
  margin-bottom: 1rem;
  line-height: 1.4;
}

#pouchLp .pouch-sub {
  display: inline-block;
  font-size: 2.4rem; 
  font-weight: bold;
  color: #1a3c8f;
  margin-bottom: 0.2rem;
  letter-spacing: 0.05em;
}

#pouchLp .pouch-description {
  font-size: 1.4rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  text-align: center;
  padding: 0 1rem;
}

/* ▼ 商品一覧を横並びに（ラップ対応） */
#pouchLp .pouch-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* ▼ 各商品カード */
#pouchLp .pouch-item {
  width: 30%;
  min-width: 280px;
  background: #fff;
  border-radius: 10px;
  padding: 2rem 1rem;
  /*box-shadow: 0 0 8px rgba(0,0,0,0.05);*/
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ▼ 商品画像 */
#pouchLp .pouch-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  border-radius: 6px;
}

/* ▼ 商品名 */
#pouchLp .pouch-caption {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* ▼ ボタン群 */
#pouchLp .shop-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}

#pouchLp .shop-links .btn {
  display: block;
  padding: 0.9rem 1.2rem;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: background 0.3s;
}

#pouchLp .btn.blue { background-color: #0052cc; }
#pouchLp .btn.blue:hover { background-color: #003f99; }

#pouchLp .btn.pink { background-color: #f66; }
#pouchLp .btn.pink:hover { background-color: #d44; }

#pouchLp .btn.red { background-color: #c00; }
#pouchLp .btn.red:hover { background-color: #900; }

/* ▼ スマホ対応 */
@media (max-width: 768px) {
  #pouchLp .title-check {
    margin-top: 3rem;
  }

  #pouchLp .swiper-slide {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  #pouchLp .pouch-items {
    flex-direction: column;
    align-items: center;
  }

  #pouchLp .pouch-item {
    width: 90%;
  }

  #pouchLp .instagram-media {
    height: auto !important;
  }
}

/* Instagramスライダー見た目調整 */
#pouchLp .centered-img img {
  width: 75%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 8%;
}

#pouchLp .title-check {
  font-size: 24px;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}


#pouchLp .pouch_instagram_slider {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  /*padding: 1rem 0;*/
  margin-bottom: 5rem;
}

#pouchLp .pouch_instagram_slider .swiper-wrapper {
  display: flex;
  align-items: center;
}


#pouchLp .pouch_instagram_slider .swiper-slide {
  width: 300px;
  height: 400px;
 /* margin-right: 20px;*/
  flex-shrink: 0;
}

/* ▼ここからInstagram▼ */
/* Instagramのiframeに高さ制限 */
#pouchLp .instagram-media {
  max-height: 100%;
  width: 90%;
  max-width: 100% !important;
}

#pouchLp .title-check {
  font-size: 24px;
  margin-top: 2rem;
}

#pouchLp .swiper-slide {
  width: auto;
  box-sizing: border-box;
}
#pouchLp .swiper-pagination {
  margin-bottom: 2rem;
}
/* ナビゲーション矢印 */
#pouchLp .swiper-button-prev,
#pouchLp .swiper-button-next {
  color: #333;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

/* ページネーション見た目 */
#pouchLp .swiper-pagination-bullet {
  background-color: #888;
}



/* ボタン整形と::afterで＞を出す */
#pouchLp .link_btn {
  display: flex;
  justify-content: center;
  gap: 1rem;
  /*margin-top: 2rem;*/
  flex-wrap: wrap;
}
#pouchLp .link_btn a {
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  position: relative;
}
#pouchLp .bg-rd { background: #E60023; }
#pouchLp .bg-bl { background: #0073E6; }

#pouchLp .bg-rd::after,
#pouchLp .bg-bl::after {
  content: " ＞";
  margin-left: 0.5em;
}

@media screen and (max-width: 883px) {
  #pouchLp .insta-wrapper {
    height: 500px;
    overflow: hidden;
    position: relative;
  }

  #pouchLp .insta-wrapper .instagram-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    overflow: hidden;
  }

  #pouchLp .swiper-slide {
    height: auto !important;
  }
}

@media screen and (max-width: 639px) {
  #pouchLp .insta-wrapper {
    height: 550px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: stretch;
  }

  #pouchLp .insta-wrapper .instagram-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    display: block;
    overflow: hidden;
    transform: scale(1.05);
    transform-origin: top center;
  }
}

@media screen and (max-width: 479px) {
  #pouchLp .insta-wrapper {
    height: 600px;
  }
}




/* ▼ここからギャラリー▼ */

#pouchLp .gallery-filter {
  max-width: 55%;
  margin: 0 auto;
  padding: 0 20px;
}

#pouchLp .gallery-filter h2 {
  text-align: center;
  margin: 8% 0;
}

#pouchLp .filter-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

#pouchLp .filter-buttons .filter-btn {
  padding: 8px 16px;
  border: 1px solid #333;
  background-color: #fff;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 6px;
  font-size: 14px;
}

#pouchLp .filter-buttons .filter-btn:hover,
#pouchLp .filter-buttons .filter-btn.active {
  background-color: #333;
  color: #fff;
}

#pouchLp .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  padding: 0 20px;
}

#pouchLp .gallery-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: opacity 0.3s ease;
  border-radius: 6px;
}

#pouchLp .filter-item {
  display: block;
}

#pouchLp .filter-item.hide {
  display: none;
}

@media (max-width: 900px) {
  #pouchLp .gallery-filter {
    max-width: 90%;
    padding: 0 10px;
  }

  #pouchLp .filter-buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  #pouchLp .filter-buttons .filter-btn {
    min-width: 45%;
    text-align: center;
  }

  #pouchLp .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0;
  }
}

@media (max-width: 768px) {
  #pouchLp .gallery-filter {
    max-width: 100%;
    padding: 0 10px;
  }

  #pouchLp .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  #pouchLp .gallery-grid {
    grid-template-columns: 1fr;
  }
}

