/*===============================
全体
================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

body {
  color: #005497;
  background-color: #fff;
  max-width: 1920px;
  margin: 0 auto;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}

/*===============================
ヘッダー
================================*/
header {
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px 5% 50px;
  position: relative;
  margin: 0 auto;
}

header h1 {
  font-size: 100px;
  font-weight: bold;
  color: #005497;
  -webkit-text-stroke: 3px #fffa5f;
}

h1#title {
  font-size: 80px;
  color: #005497;
  text-align: center;
  align-items: center;
  font-weight: bold;
  margin: 50px 0 60px 0;
}

/* ナビゲーション */
header nav {
  position: absolute;
  top: 00px;
  right: 0;
  z-index: 10;
  background-color: #fafabf;
  padding: 12px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

header nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

header nav ul li a {
  display: flex;
  align-items: center;
  padding: 0;
  background-color: transparent;
  color: #005497;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

header nav ul li a::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(lemon-site-images1/Firefly_レモン\ 692583.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

header nav ul li a:hover {
  color: #ffd700;
}

/*===============================
よくある質問
================================*/
.faq {
  padding: 30px 5%;
  background-color: #fff;
  max-width: 1920px;
  margin: 0 auto;
}

/* カテゴリー全体のコンテナ */
.faq-category {
  max-width: 1200px;
  margin: 0 auto 80px;
}

/* カテゴリーヘッダー（ご注文について、支払いについて、その他） */
.category-header {
  margin-bottom: 25px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.category-title {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  padding: 15px 0;
  padding-left: 20px;
  position: relative;
  border-left: 5px solid #333;
  background-color: transparent;
  margin-bottom: 25px;
}

.faq #subtitle {
  font-size: 28px;
  color: #005497;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-weight: bold;
}

.faq #subtitle::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #005497;
  margin: 10px auto 0;
  display: none;
}

.faq-item {
  background-color: #fff;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.question {
  background-color: #fffacd;
  color: #333;
  padding: 18px 25px;
  font-size: 15px;
  font-weight: bold;
}

.answer {
  padding: 25px;
  background-color: #fff;
  border-top: 1px solid #e0e0e0;
}

.answer p {
  line-height: 1.9;
  color: #555;
  font-size: 14px;
}

.faq-item > a {
  display: inline-block;
  text-align: right;
  margin: 20px 0 0;
  padding: 0 25px 20px;
  color: #005497;
  font-weight: bold;
  text-decoration: none;
  border-bottom: none;
  font-size: 13px;
}

.other-questions {
  display: block;
  text-align: right;
  max-width: 1200px;
  margin: 20px auto 0;
  color: #005497;
  font-weight: bold;
  text-decoration: none;
  font-size: 13px;
}

.other-questions::after {
  content: " ➔";
}

.other-questions:hover {
  color: #ffd700;
}

/*===============================
フッター
================================*/
footer {
  background-image: url(lemon-site-images1/AdobeStock_520953628.png);
  background-color: #fafabf;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 80px 5% 50px;
  text-align: center;
  max-width: 1920px;
  margin: 0 auto;
}

.footer-title {
  font-size: 60px;
  margin-bottom: 40px;
  color: #005497;
  font-weight: bold;
  letter-spacing: 0.05em;
}

footer nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

footer nav ul li a {
  color: #005497;
  font-size: 18px;
  padding: 5px 0;
  font-weight: bold;
}

footer nav ul li a:hover {
  color: #ffd700;
}

.footer-icon {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.footer-icon a {
  display: block;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
}

.footer-icon a:hover {
  transform: scale(1.1);
}

.footer-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}
