/* style.css */

/* ベース設定 */
body {
  margin: 0;
  font-family: 'M PLUS Rounded 1c', 'Hiragino Kaku Gothic ProN', sans-serif;
  background: #ffffff;
  color: #555;
  font-family: 'M PLUS Rounded 1c', 'Hiragino Kaku Gothic ProN', sans-serif;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

/* ロゴ */
.logo {
  width: 140px;
  margin: 0 auto 1.5rem;
  display: block;
}

/* ヒーローセクション */
.hero h1 {
  font-size: 2rem;
  color: #506b8c;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1rem;
  color: #777;
  margin-bottom: 2rem;
}

/* SNSリンク */
.sns-links {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.sns-links a {
  text-decoration: none;
  color: #555;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease;
}

.sns-links a img {
  width: 60px;
  height: 60px;
  margin-bottom: 0.5rem;
}

.sns-links a:hover {
  transform: scale(1.1);
}

/* フッター */
footer {
  font-size: 0.85rem;
  color: #aaa;
}

/* お問い合わせLINEセクション */
.contact-line {
  text-align: center;
  margin: 40px 0;
}

.contact-line h2 {
  font-size: 1.5rem;
  color: #00b900;
  margin-bottom: 1rem;
}

.contact-line .btn-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #00c300;
  color: #ffffff;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-line .btn-line img {
  width: 24px;
  height: 24px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.contact-line .btn-line:hover {
  background-color: #009f00;
  transform: translateY(-2px);
}
