/* =========================
   Base
========================= */
body {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    color: #222;
    line-height: 1.8;
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================
   Layout
========================= */
.section {
    padding: 100px 40px;
    max-width: 1100px;
    margin: auto;

}

.section h3 {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.section h3::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 170px;
    height: 3px;
    background: #0A4D8C;
    border-radius: 2px;
}

.section-lead {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
}

.strength-icon {
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.card:hover .strength-icon {
    transform: scale(1.06);
    opacity: 0.95;
}

.message-offset {
    max-width: 800px;
    margin-left: 345px;
    margin-right: auto;
    text-align: left;
    font-size: 16px;
    color: #444;
    line-height: 1.9;
}

/* 背景色バリエーション */
.bg-light {
    background: linear-gradient(to bottom, #f8fbff 0%, #f3f7fc 100%);
}

.bg-dark {
    background: #1a1a1a;
    color: #eee;
}

/* =========================
   Header
========================= */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 40px;
    background: #ffffff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 36px;
}

.company-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.nav a {
    margin-left: 28px;
    font-weight: 500;
    color: #222;
}

.nav a:hover {
    opacity: 0.7;
}

/* =========================
   Hero
========================= */
.hero {
    position: relative;
    height: 480px; /* 好みで調整 */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding-top: 140px;
}

.hero h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: #444;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: #2a5bd7;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.2s;
}

.btn:hover {
    opacity: 0.9;
}

.services-hero {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.services-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 90px;
}

.about-hero {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 80px;
}

.recruit-hero {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.recruit-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.recruit-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 90px;
}

.personality-section {
    position: relative;
    overflow: hidden;
}

.personality-card-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.personality-section > *:not(.personality-card-bg) {
    position: relative;
    z-index: 2;
}

/* =========================
   Cards
========================= */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.card {
    padding: 32px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.card h4 {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e6eef5;
}

.card-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 16px;
    opacity: 0.9;
    object-fit: contain;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.card:hover .card-icon {
    transform: scale(1.06);
    opacity: 1;
}

/* =========================
   Table
========================= */
.about-table {
    width: 70%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-left: 150px;
}

.about-table td {
    padding: 14px 80px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    text-align: left;
}

/* =========================
   Entry Form (採用フォーム)
========================= */
.entry-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.entry-form label {
    font-weight: 600;
    font-size: 14px;
}

.entry-form input,
.entry-form select,
.entry-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

.entry-form button {
    padding: 16px;
    background: #2a5bd7;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.entry-form button:hover {
    opacity: 0.9;
}

/* =========================
   Footer
========================= */
.site-footer {
    padding: 50px;
    background: #1a1a1a;
    color: #ccc;
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.3px;
    margin-top: 80px;
}

/* =========================
   Responsive
========================= */
@media (max-width: 600px) {
    .section {
        padding: 70px 20px;
    }
    .hero {
        padding: 120px 20px;
    }
}

/* =========================
   Map
========================= */
.map {
	padding-top: 12px;
}

.map figure {
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    margin-bottom: 20px;
}
.map figure iframe {
	width: 100%;
	height: 525px;
	max-width: 100%;
}


.map address {
	padding-top: 10px;
	overflow: hidden;
	line-height: 20px;
}


address dt {
	color: #000;
}


address dd span {
	min-width: 85px;
	display: inline-block;
	text-align: left;
}