/* Base Settings */
* {
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  color: #000;
  background-color: #fff;
  background-image: url('./texture.png');
  background-repeat: repeat;
  background-position: top center;
  background-attachment: scroll; /* Safari蟇ｾ遲� */
  background-size: cover; /* Safari縺ｧ繧りレ譎ｯ縺檎ｩｺ逋ｽ縺ｫ縺ｪ繧峨↑縺� */
}
img {
  max-width: 100%;
  height: auto;
}

/* Header */
header {
  text-align: center;
  padding: 20px 10px;
  background-color: rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid #ddd;
}
.logo {
  height: 120px;
}
.tagline {
  margin-top: 10px;
  font-size: 1.4em;
  color: #8B0000;
  font-weight: bold;
}

/* Navigation */
nav ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
nav a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  transition: color 0.3s;
}
nav a:hover {
  color: #FFD700;
}

/* Main Content */
main {
  padding: 40px 20px;
}

/* Section Titles */
h2 {
  text-align: center;
  color: #fff; /* 逋ｽ譁�ｭ励↓螟画峩 */
  margin-bottom: 30px;
  font-size: 2.2em;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
h2::after {
  content: '';
  display: block;
  width: 60%;
  height: 3px;
  background-color: #FFD700;
  margin: 8px auto 0;
}

/* Lists in About & Services Sections */
section ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}
section ul li {
  background: rgba(0, 0, 0, 0.4); /* 逋ｽ譁�ｭ励↓譏�縺医ｋ繧医≧閭梧勹繧呈囓縺� */
  margin: 10px 0;
  padding: 15px;
  border-radius: 8px;
  font-size: 1em;
  line-height: 1.6;
  color: #fff; /* 逋ｽ譁�ｭ励↓螟画峩 */
}

/* Footer */
footer {
  background-color: #330000;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
}
footer a {
  color: #FFD700;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .logo {
    height: 50px;
  }
  .tagline {
    font-size: 1.1em;
  }
  nav ul {
    flex-direction: column;
    gap: 15px;
  }
}