/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 27 2026 | 12:48:22 */
/* 全体のラッパー (Scope) */
.lp-voice-wrapper {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HgsMinchoE", "MS PMincho", "MS Mincho", serif;
  background-color: #fcfbf9; /* 紙のような薄いベージュ */
  color: #4a4a4a;
  box-sizing: border-box;
  padding-bottom: 80px;
  position: relative;
}

/* Pinterest風メイソンリーレイアウト */
.lp-voice-wrapper .lp-voice-grid {
  column-count: 3; /* PCは3列 */
  column-gap: 25px;
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
	.lp-voice-wrapper .lp-voice-grid {
      padding-left: 20px;
      padding-right: 20px;
	}
}

/* 各カード (画像のみを大きく表示するように変更) */
.lp-voice-wrapper .lp-voice-item {
  break-inside: avoid; /* カードが列をまたいで切れないようにする */
  margin-bottom: 25px;
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 8px;
  transition: transform 0.3s ease, filter 0.3s ease;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.lp-voice-wrapper .lp-voice-item:hover {
  transform: translateY(-5px);
  z-index: 2;
}

.lp-voice-wrapper .lp-voice-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  filter: sepia(0.1) brightness(0.98); /* ほんの少しレトロ感 */
  transition: all 0.3s ease;
}

.lp-voice-wrapper .lp-voice-item:hover img {
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    filter: sepia(0) brightness(1.02);
}

/* ポップアップ（モーダル）用のスタイル */
.lp-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9); /* 少し高級感のある暗さ */
  backdrop-filter: blur(5px);
  z-index: 999999; /* 非常に高いZ-index */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
  box-sizing: border-box;
  cursor: zoom-out;
}

.lp-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lp-modal-content {
  object-fit: contain;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border-radius: 2px;
  transform: scale(0.95);
  transition: transform 0.3s ease;
  cursor: default;
  background: #fff; /* 画像ロード前のチラつき防止 */
}

.lp-modal-overlay.active .lp-modal-content {
  transform: scale(1);
}

.lp-modal-close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  z-index: 100000;
  line-height: 1;
}
.lp-modal-close-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: rotate(90deg);
}

/* CTAセクション */
.lp-voice-wrapper .lp-voice-cta {
  margin-top: 80px;
  text-align: center;
}

.lp-voice-wrapper .lp-voice-btn {
  display: inline-block;
  background-color: #8c7b6c; /* シックなブラウンベージュ */
  color: #fff;
  text-decoration: none;
  padding: 18px 50px;
  border-radius: 2px; /* 少し角ばらせて高級感 */
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(140, 123, 108, 0.3);
  position: relative;
  overflow: hidden;
}

.lp-voice-wrapper .lp-voice-btn:hover {
  background-color: #6e5d52;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(140, 123, 108, 0.4);
}

/* スマホ・タブレット対応 */
@media screen and (max-width: 767px) {
  .lp-voice-wrapper .lp-voice-grid {
    column-count: 2; /* スマホは2列 */
    column-gap: 12px;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 40px;
  }

  .lp-voice-wrapper .lp-voice-item {
    margin-bottom: 12px;
  }
  
  .lp-voice-wrapper .lp-voice-btn {
      font-size: 0.9rem;
      padding: 15px 30px;
      width: 85%;
      border-radius: 50px; /* スマホは丸くフレンドリーに */
  }

  .lp-modal-close-btn {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 24px;
    background: rgba(0,0,0,0.5); /* スマホは背景を濃くして視認性確保 */
  }
}