@charset "UTF-8";

/* Basic Reset & Variables */
:root {
    --color-primary-a: #003366;
    /* Japan Towel - Deep Blue */
    --color-primary-b: #0077cc;
    /* Towel Kyogi - Bright Blue */
    --color-primary-c: #2e7d32;
    /* Inspection - Forest Green */
    --color-text-main: #333333;
    --color-text-sub: #666666;
    --color-bg-base: #f8f8f8;
    --color-bg-white: #ffffff;
    --font-base: 'Noto Sans JP', sans-serif;
}

body {
    font-family: var(--font-base);
    color: var(--color-text-main);
    background-color: var(--color-bg-base);
    margin: 0;
    padding: 0;
    line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 1.5rem 0;
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.4;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Spacing */
section {
    margin-bottom: 80px;
}

/* Header */
.site-header {
    background-color: var(--color-bg-white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Header Navigation - Added for consistency */
.site-header nav {
    display: flex;
    align-items: center;
}

.site-header nav a {
    margin-left: 40px;
    /* Consistent spacing */
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-main);
    padding: 5px 0;
    position: relative;
}

/* Active state utility class */
.site-header nav a.active {
    font-weight: bold;
    color: var(--color-primary-a);
    border-bottom: 2px solid var(--color-primary-a);
}


/* Footer */
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    margin-top: 80px;
    overflow: hidden;
}

/* Footer Nav (New) */
.footer-global-nav {
    border-top: 1px solid #555;
    padding-top: 40px;
    margin-top: 40px;
}

.footer-global-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-global-nav li {
    margin: 0;
}

.footer-global-nav a {
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    padding: 5px 10px;
    border-bottom: 2px solid transparent;
}

.footer-global-nav a:hover {
    border-bottom-color: #fff;
    opacity: 1;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    margin: 0 15px;
    color: #ccc;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--color-text-main);
    color: var(--color-bg-white);
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: transparent;
    color: var(--color-text-main);
    border-color: var(--color-text-main);
}

/* Table - General */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #fff;
}

th,
td {
    padding: 20px 25px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

th {
    background-color: #f8f9fa;
    font-weight: 600;
}

/* Utilities */
.bg-pattern {
    background-color: #f0f4f8;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 20px 20px;
}

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}
.mb-10{
    margin-bottom: 10px;
}
.pl-1em {
    padding-left: 1em;
}
.indent-list{
    text-indent: -1em;
    padding-left: 1em;
}