@charset "UTF-8";
/*
 * Google Fonts
 * font-family: 'Noto Sans JP', sans-serif;
 * font-family: 'Playfair Display', serif;
*/
:root {
  --primary-color: #F8BBD0; /* 淡いピンク */
  --secondary-color: #FFECB3; /* 淡いイエロー */
  --text-color: #333333;
  --light-text-color: #ffffff;
  --accent-color: #FF7043; /* 活発なオレンジ */
  --font-heading: "Playfair Display", serif;
  --font-body: "Noto Sans JP", sans-serif;
}

/* Base Style */
.lp-main {
  font-family: var(--font-body);
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
  background-color: #f7f3f1;
}

.header, .hero, .features, .colors, .cta, .sns, .footer {
  padding: 40px 20px;
  text-align: center;
}

.header-inner, .hero-inner, .features-inner, .colors-inner, .cta-inner, .sns-inner {
  max-width: 960px;
  margin: 0 auto;
}

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

/* Header */
.header {
  background-color: var(--primary-color);
  color: var(--light-text-color);
  padding: 20px;
}

.header .logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin: 0;
}

.header .catchcopy {
  font-size: 1rem;
  margin: 5px 0 0;
}

/* Hero Section */
.hero {
  background-color: var(--secondary-color);
  padding: 60px 20px;
}

.hero-title {
  font-size: 2.5rem;
  color: var(--accent-color);
  font-family: var(--font-heading);
  margin-bottom: 10px;
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-image {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
  background-color: #ffffff;
}

.section-title {
  font-size: 2rem;
  color: var(--text-color);
  font-family: var(--font-heading);
  margin-bottom: 40px;
}

.feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.feature-item {
  background-color: #f9f9f9;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  /* flex: 1 1 calc(33.333% - 20px); */
  width: calc(33.333% - 20px);
  transition: transform 0.3s ease;
}

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

.feature-image {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 1.25rem;
  margin: 0 0 10px;
  color: var(--primary-color);
}

.feature-text {
  font-size: 0.9rem;
}

/* Colors Section */
.colors {
  background-color: var(--secondary-color);
}

.colors-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.color-options {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* CTA Section */
.cta {
  background-color: var(--primary-color);
  color: var(--light-text-color);
  padding: 60px 20px;
}

.cta-title {
  font-size: 2.2rem;
  font-family: var(--font-heading);
  margin: 0 0 10px;
}

.cta-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--light-text-color);
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #FF5722;
  transform: translateY(-2px);
}

/* SNS Section */
.sns {
  background-color: #f7f3f1;
}

.sns-title {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.sns-text {
  font-size: 1rem;
}

/* Footer */
.footer {
  background-color: #333333;
  color: #cccccc;
  padding: 20px;
  font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .feature-item {
    flex: 1 1 100%;
  }
}
.colors-inner {
  text-align: center; /* 追加 */
}

.colors-image {
  max-width: 850px; /* 追加 */
  max-height: 400px; /* 追加 */
  margin: 20px auto; /* 中央配置と下の要素との間隔 */
  overflow: hidden; /* 画像が指定サイズに収まらない場合にトリミング */
}

.colors-image img {
  width: 100%; /* 親要素に合わせて幅を調整 */
  height: auto; /* 高さは比率を維持 */
  object-fit: cover; /* アスペクト比を維持しつつ、領域を埋める */
}

/* 機能画像の表示サイズを統一するためのCSS */
.feature-image {
  /* height: 200px; 画像の高さを固定 */
  overflow: hidden; /* 指定サイズからはみ出した部分を非表示にする */
}

.feature-image img {
  width: 100%; /* 親要素の幅いっぱいに広げる */
  height: 100%; /* 親要素の高さいっぱいに広げる */
  object-fit: cover; /* 画像の縦横比を保ったまま、指定領域を埋める */
}

/*
  機能画像の表示サイズを統一するためのCSS
  このコードをstyle.cssの一番最後に追記してください。
*/
.feature-image {
  height: 200px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-item:last-child .feature-image {
  /* height: 200px !important; */
  overflow: hidden !important;
}

.feature-item:last-child .feature-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}