@charset "utf-8";  /* 106頁参照 */

*,  /* 107頁参照 */
::before,
::after {
    padding: 0;
    margin: 0;
}
 
ul,  /* 順不同リスト */
ol { /* 番号付きリスト */
    list-style: none;  /* 109頁 */
}

a {
    color: inherit;
    text-decoration: none; /* 109頁参照 */
}

body { /* 110頁参照 */
    font-family: sans-serif;
    font-size: 16px;
    color: #000000;
    line-height: 1;
    background-color: #ffffff;
}

img {
    max-width: 100%;
}

.header-inner {
max-width: 1200px;
height: 110px;
margin-right: auto;
margin-left: auto;
padding-left: 40px;
padding-right: 40px;
display: flex; /* 114頁参照 ロゴとナビゲーションを横並びにする 辞典385頁*/
justify-content: space-between; /* 均等割り */
align-items: center; /* クロス方向（縦）　中央配置 116頁参照*/
}

.toggle-menu-button { /* 116頁参照 */
 display: none;
}
 
.header-logo { /* 118頁参照 */
    display: block; /* ロゴの幅の指定ができるようにする */
    width: 170px;
}

.site-menu{
    display: flex;/* メニュー AとNを横並び 2024/2/12*/
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 25px;
}

.site-menu ul { /* 118頁参照 */
    display: flex; /* メニューを横並び */
    flex-flow: column wrap;/*縦方向*/
}

.site-menu ul li {
    margin-left: 20px;
    margin-right: 20px;

}

.site-menu ul li a {
    font-family: 'Montserrat', sans-serif;
    font-weight:bolder;
    font-size: 14px;
    margin-left : 10px;

}

.footer {
    color: white;
    background-color: black;
    padding-top: 30px;
    padding-bottom: 15px;
    display: flex;/* メニュー ロゴを横並び */
    flex-direction: column;  /*軸を縦にする 121頁参照  */
    align-items: center;
}

.footer-logo {
    display: block;
    width: 25%;
    margin: 20px;
}

.copylght {
    font-size: 14px;
    font-weight: bold;
    margin-top: 90px;
}

@media (max-width: 800px) {    /* 800px以下の場合 134頁参照 */
    .site-menu ul {
        display: block;
        text-align: center;
        }
    .site-menu li {
        margin-top: 20px;
        }
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: #ffffff;
        height: 50px;
        z-index: 10;
        box-shadow: 0 3px 6px rgba(0,0,0,1);
        }
    .header-inner{
        padding-left: 20px;
        padding-right: 20px;
        height: 100%;
        position: relative;
    }
    .header-site-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        color: #ffffff;
        background-color: #736E62;
        padding-top: 30px;
        padding-bottom: 50px;
        display: none;
    }
    .header-site-menu.is-show{  /* 152頁参照 */
        display: block;
    }
    .toggle-menu-button{ /* 146頁参照 */
        display: block;
        width: 44px;
        height: 34px;
        background-image: url(../image/icon-menu.png);
        background-size: 50%;
        background-position: center;
        background-repeat: no-repeat;
        background-color: transparent;
        border: none;
        border-radius: 0;
        outline: none;    
    }
    .header-logo{
        width: 90px;
    }
    .main{
        padding-top: 50px; /* 153頁参照 */
    }
    }

