* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

header {
    background-color: #729a6e; 
    padding: 10px 0;   
    
}

.iconno img {
    display: block; 
    margin: 0 20px; 
    width: 50px;
    height: 50px;
}

.contant1 {
    background-color: white; /* 真っ白にして清潔感を出す */
    width: 90%;             /* スマホでも崩れないように */
    max-width: 800px;       /* 広がりすぎない */
    margin: 40px auto;      /* ★重要：これで画面の真ん中に来る */
    padding: 40px;          /* 内側の余白をたっぷり取る */
    border-radius: 1px;    /* 角を丸くして優しく */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* ほんのり影をつけて浮かせる */
}

.contant2 {
    background-color: white; /* 真っ白にして清潔感を出す */
    width: 90%;             /* スマホでも崩れないように */
    max-width: 800px;       /* 広がりすぎない */
    margin: 40px auto;      /* ★重要：これで画面の真ん中に来る */
    padding: 40px;          /* 内側の余白をたっぷり取る */
    border-radius: 1px;    /* 角を丸くして優しく */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* ほんのり影をつけて浮かせる */
}

.contant2dl {
    background-color: white; /* 真っ白にして清潔感を出す */
    width: 90%;             /* スマホでも崩れないように */
    max-width: 800px;       /* 広がりすぎない */
    margin: 40px auto;      /* ★重要：これで画面の真ん中に来る */
    padding: 40px;          /* 内側の余白をたっぷり取る */
    border-radius: 1px;    /* 角を丸くして優しく */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* ほんのり影をつけて浮かせる */
}

.yor {
    color: #475e6b;
    border-bottom: 2px solid #2e6d35; /* 見出しにアンダーライン */
    padding-bottom: 10px;
    margin-bottom: 30px;
    text-align: center;      /* 見出しを真ん中に */
}

.mark {
    color: #4a6b47;
    border-bottom: 2px solid #729a6e; /* 見出しにアンダーライン */
    padding-bottom: 10px;
    margin-bottom: 30px;
    text-align: center;      /* 見出しを真ん中に */
}

.text-box h3 {
    margin-bottom: 15px;
    color: #333;
}

.text-box p {
    margin-bottom: 20px;
    line-height: 1.8;       /* 行間を広げて読みやすく */
    color: #555;
}

.caution {
    background-color: #fff5f5; /* 注意書きだけ背景色を変える */
    padding: 15px;
    border-left: 4px solid brown;
    font-size: 0.9em;
}

.caution span {
    font-weight: bold;
    color: brown;
}

.infomation{
    background-color: #f5f9ff; /* 注意書きだけ背景色を変える */
    padding: 15px;
    border-left: 4px solid rgb(42, 97, 165);
    font-size: 0.9em;
}

.access{
    background-color: #f5fffb; /* 注意書きだけ背景色を変える */
    padding: 15px;
    border-left: 4px solid rgb(42, 165, 110);
    font-size: 0.9em;
}

a{
    text-decoration: none;
    color: #5fa3c1;
}

.cinfomation span {
    font-weight: bold;
    color: rgb(42, 130, 165);
}
/* フッターの微調整 */
footer {
    padding: 30px 0;
    background-color: #333;
    color: #fff;
    text-align: center;
    width: 100%;
    margin-top: 50px;
}
    

.nav-list {
    display: flex;
    align-items: center;    /* リスト内でも念のため中央揃え */
    list-style: none;
    margin: 0;
    padding: 0;
    justify-self: center;
}

/* 各メニューの間隔 */
.nav-list li {
    margin: 0 20px;
}

/* リンクの文字を白くして下線を消す */
.nav-list a {
    display: flex;
    justify-content: center;
    color: rgb(222, 222, 222);
    text-decoration: none;
    font-weight: bold;
}

/* マウスを乗せた時に色を変える（エロい） */
.nav-list a:hover {
    color: #ffc876;
}

/* bodyの余白も確実に消す */
body {
    margin: 0;
    background-color: rgb(247, 251, 255);
}

footer{
margin-top: 100px;
padding: 15px 0;
background-color: #222;
color: #fff;
text-align: center;
font-size: 14px;
width: 100%;
position: relative;
top:173px; 
}
