body {
    margin: 0;
    font-family: 'Yu Gothic', sans-serif;
    background: #fff;
    color: #333;
}
.container {
    width: 90%;
    max-width: 960px;
    margin: auto;
    text-align: center;
}
.hero {
    background: url('hero.jpg') no-repeat center center / cover;
    color: #333333;
    padding: 60px 20px;
    text-align: center;
    position: relative;
}
.hero h1, .hero p, .hero .service-name {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero .service-name {
    margin-top: 10px;
    font-size: 34px;
}
.badges span {
    background: #ffe42e;
    color: #000000;
    margin: 5px;
    padding: 10px 18px;
    display: inline-block;
    border-radius: 4px;
    font-weight: bold;
}
.service-name {
    background: #fff;
    color: #004aad;
    margin: 5px;
    padding: 10px 18px;
    display: inline-block;
    border-radius: 4px;
    font-weight: bold;
}

.section {
    padding: 40px 0;
    background: #f4f4f4;
    background: url('section.jpg') no-repeat center center / cover;
}
.section.alt {
    background: #f4f4f4;
    background: url('section.jpg') no-repeat center center / cover;

}
.columns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.column {
    flex: 1;
    min-width: 260px;
    background: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
}
table {
    width: 100%;
    border-collapse: collapse;
}
table, th, td {
    border: 1px solid #ccc;
}
th, td {
    padding: 10px;
    text-align: left;
}
form input, form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid #ccc;
}
.btn {
    background: #007ACC;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}
.footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.section {
  position: relative;
  z-index: 1;
}
.section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(255,255,255,0.7); /* 白＋透過 */
  z-index: 0;
}
.section > .container {
  position: relative;
  z-index: 1;
}