@charset "UTF-8";
/*********************************************************************

	用途別LP（/cosplay/・/madamis/）共通スタイル
	2026-07 新規作成（モバイルファースト・BEM）

*********************************************************************/

.lpPage {
  color: #eaeaea;
  line-height: 1.8;
}

.lpPage .mainTitle01 {
  padding: 1.8em 0 1.2em;
}

/* ヒーロー
----------------------------------------------*/
.lpHero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 3em 1.5em;
  box-sizing: border-box;
  text-align: center;
  background-size: cover;
  background-position: center center;
}

.lpPage--cosplay .lpHero {
  background-image:
    linear-gradient(rgba(15, 8, 8, 0.6), rgba(28, 28, 28, 0.85)),
    url(/images/rental/img_usage03_exsample01.jpg);
}

.lpPage--madamis .lpHero {
  background-image:
    linear-gradient(rgba(15, 8, 8, 0.6), rgba(28, 28, 28, 0.85)),
    url(/images/rental/img_usage05_exsample01.jpg);
}

.lpHero__inner {
  max-width: 760px;
}

.lpHero__title {
  font-size: 1.9rem;
  line-height: 1.35;
  margin: 0 0 0.8em;
  letter-spacing: 1px;
  font-feature-settings: "palt";
  font-family: 'Cardo', "Sawarabi Mincho", "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  -webkit-font-smoothing: antialiased;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.lpHero__sub {
  font-size: 0.98rem;
  margin: 0 0 1.5em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.lpHero__badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 2em;
  padding: 0;
}

.lpHero__badge {
  border: 1px solid rgba(222, 156, 8, 0.7);
  border-radius: 50px;
  padding: 0.4em 1em;
  font-size: 0.8rem;
  color: #f5d9a0;
  background: rgba(0, 0, 0, 0.4);
}

.lpHero__cta {
  margin: 0;
}

/* セクション共通
----------------------------------------------*/
.lpSection {
  padding: 0 0 3.5em;
}

.lpSection--empathy {
  background: #211816;
}

.lpSection--diff {
  background: linear-gradient(180deg, #1c1c1c 0%, #380000 20%, #380000 85%, #1c1c1c 100%);
}

.lpSection--price {
  background: #211816;
}

.lpSection__lead {
  max-width: 720px;
  margin: 0 auto 1.5em;
  text-align: center;
  font-size: 0.95rem;
}

.lpSection__note {
  max-width: 720px;
  margin: 1.5em auto 0;
  font-size: 0.85rem;
  color: #bdbdbd;
  text-align: center;
}

.lpSection__note a,
.lpFaq a {
  color: #de9c08;
  text-decoration: underline;
}

/* 違いカード
----------------------------------------------*/
.lpDiffGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.lpDiff {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 3px solid #de9c08;
  border-radius: 4px;
  padding: 1.2em 1.4em;
}

.lpDiff__title {
  font-size: 1.05rem;
  margin: 0 0 0.5em;
  color: #f5d9a0;
}

.lpDiff__text {
  font-size: 0.9rem;
  margin: 0;
}

/* ギャラリー
----------------------------------------------*/
.lpGallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.lpGallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  display: block;
}

/* 料金テーブル
----------------------------------------------*/
.lpPriceTable {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.lpPriceTable th,
.lpPriceTable td {
  padding: 0.9em 1em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
  vertical-align: top;
}

.lpPriceTable th {
  width: 48%;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.05);
}

.lpPriceTable td {
  font-weight: bold;
  color: #fff;
}

.lpPriceTable small {
  display: block;
  font-weight: normal;
  font-size: 0.78rem;
  color: #bdbdbd;
}

/* FAQ
----------------------------------------------*/
.lpFaq {
  max-width: 760px;
  margin: 0 auto;
}

.lpFaq__question {
  position: relative;
  font-weight: bold;
  color: #f5d9a0;
  padding: 1em 0 0.4em 1.8em;
}

.lpFaq__question::before {
  content: 'Q';
  position: absolute;
  left: 0;
  top: 0.85em;
  color: #de9c08;
  font-family: 'Cardo', serif;
  font-size: 1.1em;
}

.lpFaq__answer {
  position: relative;
  margin: 0 0 0.6em;
  padding: 0 0 1em 1.8em;
  font-size: 0.92rem;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}

.lpFaq__answer::before {
  content: 'A';
  position: absolute;
  left: 0;
  top: -0.1em;
  color: #8fc1e8;
  font-family: 'Cardo', serif;
  font-size: 1.1em;
}

/* ユーティリティ（スクリーンリーダー専用見出し）
----------------------------------------------*/
.lpU-visuallyHidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* CTA
----------------------------------------------*/
.lpCta {
  background: linear-gradient(180deg, #1c1c1c 0%, #241a10 100%);
  padding: 3em 0;
  text-align: center;
}

.lpCta__text {
  margin: 0 0 1.5em;
  font-size: 0.95rem;
}

.lpCtaLine {
  display: inline-block;
  background: #06C755;
  color: #fff;
  font-weight: bold;
  font-size: 1.05rem;
  padding: 1em 2.5em;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.lpCtaLine:link,
.lpCtaLine:visited {
  color: #fff;
  text-decoration: none;
}

.lpCtaLine:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.lpCta__links {
  margin: 1.5em 0 0;
  font-size: 0.88rem;
}

.lpCta__links a {
  color: #de9c08;
  text-decoration: underline;
}

/* タブレット以上
----------------------------------------------*/
@media (min-width: 768px) {

  .lpHero__title {
    font-size: 2.6rem;
  }

  .lpHero__title br {
    display: none;
  }

  .lpHero__sub {
    font-size: 1.05rem;
  }

  .lpDiffGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .lpGallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

}

@media (min-width: 1280px) {

  .lpDiffGrid {
    grid-template-columns: repeat(3, 1fr);
  }

}
