body {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  padding: 0;
  background: #fdfcf9;
  color: #333;
}
header {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #ffffff;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1rem 0.5rem;
}

.logo {
  width: 64px;
  height: auto;
  margin-bottom: 0.5rem;
}

.catchphrase {
  text-align: center;
  margin-top: 0;
  font-size: 1.2rem;
  color: #666;
}
section {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: auto;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #f0f0f0;
  font-size: 0.9rem;
}
.service-image {
  width: 100%;
  max-width: 500px;
  margin-top: 1rem;
}

.service-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.service-image, .service-image2 {
  width: 260px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.service-image2 {
  width: 500px;  
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
footer nav {
  margin-bottom: 0.5em;
}

footer nav a {
  color: #555;
  text-decoration: none;
  margin-right: 1em;
}

footer nav a:hover {
  text-decoration: underline;
}
ul ul {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  padding-left: 1.5em;
  list-style-type: circle;
}
.business-note {
  margin-top: -0.9em; 
  margin-left: 4em;   
  font-size: 0.95em;
  color: #444;
  line-height: 1.4;
   font-family: inherit;
}
.mail-link {
  color: #5b5bb5; /* お好みの色に変更可 */
  text-decoration: none;
  font-weight: bold;
}

.mail-link:hover {
  color: #3f3f91; /* ホバー時の色 */
  text-decoration: underline;
}
.start-now-container {
  text-align: center;
  margin: 32px 0 0;
}

.start-now-button {
  display: inline-block;
  background-color: #2d7a54;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.start-now-button:hover {
  background-color: #246346;
}
footer nav a + a::before {
  content: "|";
  margin-right: 15px; /* 後ろ側を短く */
  margin-left: 5px; /* 前側を長く */
  color: #666;   /* 色を薄くするなら */
}