/* Lingerica.com Top Page Style */
/* Modern, editorial, feminine aesthetic */

:root {
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Playfair Display", "Times New Roman", serif;
  --color-bg: #fff;
  --color-text: #222;
  --color-subtext: #666;
  --color-accent: #e78da0;
  --color-border: #eee;
  --max-width: 1000px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 5%;
  border-bottom: 1px solid var(--color-border);
  background: #fff;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: bold;
}

.main-nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--color-accent);
}

/* Hero */

.hero {
  background-image: url('/images/coral-lace.jpg'); /* 生成した画像を指定 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 40vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  color: #333;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6); /* 白のオーバーレイで文字を見やすく */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  background-color: #e48ca4;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #d06f8c;
}

/* 📱 モバイル対応 */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/*
.hero {
  background: url("https://source.unsplash.com/1600x900/?fashion,lingerie") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-btn {
  background: var(--color-accent);
  color: #fff;
  padding: 0.8em 1.6em;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s;
}

.hero-btn:hover {
  background: #d2738a;
}
*/

/* Content Sections */
.content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 20px;
}

h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  border-left: 4px solid var(--color-accent);
  padding-left: 10px;
  margin-bottom: 1.2em;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin: 15px;
}

.card p {
  font-size: 0.95rem;
  color: var(--color-subtext);
  margin: 0 15px 20px;
}

.card a {
  text-decoration: none;
  color: var(--color-text);
}

.card a:hover {
  color: var(--color-accent);
}

/* Trending */
.trending ul {
  list-style: none;
  padding-left: 0;
}

.trending li {
  margin-bottom: 0.8em;
}

.trending a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
}

.trending a:hover {
  color: var(--color-accent);
}

/* Community */
.community {
  text-align: center;
  margin-top: 80px;
  background: #f9f9f9;
  padding: 60px 20px;
  border-radius: 12px;
}

.community p {
  max-width: 600px;
  margin: 1em auto;
  color: var(--color-subtext);
}

.cta-button {
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  padding: 0.8em 1.6em;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
  margin-top: 1em;
}

.cta-button:hover {
  background: #d2738a;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid var(--color-border);
  color: var(--color-subtext);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--color-subtext);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--color-accent);
}

/* Responsive */
@media (max-width: 600px) {
  .hero {
    padding: 80px 10px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .content {
    padding: 40px 15px;
  }
}
