* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--bg: #ffffff;
--fg: #1f2328;
--muted: #667085;
--border: #e5e7eb;
--row: #fafafa;
--radius: 12px;
--shadow: 0 4px 10px rgba(0,0,0,.06);
}


.container {
max-width: 960px;
margin: 24px auto;
padding: 0 16px;
}

h1 {
font-size: clamp(22px, 3vw, 30px);
margin: 8px 0 20px;
text-align: center;
}

h2 {
margin-top: 24px;
font-size: 20px;
border-left: 6px solid #0ea5e9;
padding-left: 8px;
}

/* テーブル */
.rwd-table {
width: 100%;
border-collapse: collapse;
margin: 12px 0;
font-size: 16px;
box-shadow: var(--shadow);
border-radius: var(--radius);
overflow: hidden;
}

.rwd-table th, .rwd-table td {
padding: 12px 16px;
border: 1px solid var(--border);
text-align: left;
}

.rwd-table thead {
background: #f8fafc;
}

/* スマホ対応 */
@media (max-width: 640px) {
.rwd-table thead {
display: none;
}
.rwd-table, .rwd-table tbody, .rwd-table tr, .rwd-table td {
display: block;
width: 100%;
}
.rwd-table tr {
margin-bottom: 16px;
border: 1px solid var(--border);
border-radius: var(--radius);
overflow: hidden;
box-shadow: var(--shadow);
}
.rwd-table td {
border: none;
border-bottom: 1px solid var(--border);
position: relative;
padding-left: 40%;
}
.rwd-table td:last-child {
border-bottom: none;
}
.rwd-table td::before {
content: attr(data-label);
position: absolute;
left: 12px;
top: 50%;
transform: translateY(-50%);
font-weight: 600;
color: var(--muted);
}
}

body {
font-family: 'Noto Sans JP', sans-serif;
}

h3, .title {
font-family: 'M PLUS Rounded 1c', sans-serif;
}

header {
position: fixed;
top: 0;
left: 0;
background-color: #6699FF;
color: #fff;
text-align:left;
display:flex;
width:100%;
height:70px;
z-index:100;
align-items: center;
}

header img{
display: block;
width:90px;
height:70px;
margin-left: 5px;
}

.title{
text-align:center;
}
h1.title{
font-size: 2rem;
margin-bottom: 0.5rem;
text-align: left;
color:#ffffff
}

.hamburger {
width: 30px;
height: 20px;
position: relative;
cursor: pointer;
margin: 20px;
z-index: 1001;
}

.hamburger span {
position: absolute;
height: 3px;
width: 100%;
background: #333;
border-radius: 2px;
transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }


.nav-menu {
position: fixed;
top: 0;
right: -100%;
width: 200px;
height: 100%;
background-color:rgb(240,240,240);
color: #fff;
transition: right 0.3s ease;
padding-top: 60px;
z-index: 1000;
}

.nav-menu ul {
list-style: none;
padding: 0;
}

.nav-menu li {
text-align: center;
margin:12px;
height:43px;
align-items:center;
background-color:white;
border-right:7px solid rgb(150,150,150);
border-bottom:7px solid(200,200,200);
}

.nav-menu li a {
display: inline-block;
text-decoration: none;
color: black;
font-size: 20px;
font-family:monospace;
}


.nav-menu.active {
left: 0;
}


.hamburger.active span:nth-child(1) {
transform: rotate(45deg);
top: 8px;
}

.hamburger.active span:nth-child(2) {
opacity: 0;
}

.hamburger.active span:nth-child(3) {
transform: rotate(-45deg);
top: 8px;
}


.section {
padding: 2rem;
margin: 1rem 0;
background-color: #C0C0C0;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


#space{
color:white;
}
.sectionw{
height:70px;
}



footer {
text-align:center;
padding: 1rem;
background-color: #333;
color: #fff;
}

footer img{
width:50px;
height:50px;
}


@media (max-width: 768px) {
header nav ul li {
margin-bottom: 10px;
}
img{
max-width:100%;
height:auto;
}
.section {
padding: 1rem;
}
header .title{
font-size:20px;
}
summary{
max-width:100%;
}
details{
max-width:100%;
}
}
