* {
    box-sizing: border-box;
}


html {
    font-family: "Noto Sans JP", sans-serif;
}
html:lang(en) {
    font-family: "Noto Sans", sans-serif;
}
html:lang(ko) {
    font-family: "Noto Sans KR", sans-serif;
}
html:lang(zh-CN) {
    font-family: "Noto Sans SC", sans-serif;
}


body {
    margin: 0px;
}



a,
a:active,
a:hover {
    text-decoration: none;
    color: #000;
}



/* Common Header */

.container {
    position: relative;

    max-width: 700px;
    margin: 0px auto;

    display: flex;
    flex-direction: column; /* top - bottom */
}
@media (min-width: 710px) {
    .container {
        border: 1px solid #ccc;
        border-top: none;
    }
}


    .index-head {
        display: flex;
        flex-direction: row; /* left - right */
    }

        .ih-item {
            min-width: 100px;
        }

        .ih-logo {
            flex: 0 1 auto;
        
            padding: 18px 13px;
        }
            .ih-logo-img {
                width: 80px;
            }
        
        .ih-title {
            flex: 1 0 auto;
        
            display: flex;
            flex-direction: column; /* top - bottom */
        
            font-weight: 700;
        
            justify-content: center;
        }
            .iht-subtitle {
                flex-direction: column;
                text-align: center;
                font-size: 12px;
            }

            @media (min-width: 400px) {
                .iht-subtitle {
                    flex-direction: column;
                    text-align: center;
                    font-size: 14px;
                }   
            }
        
        .ih-none {
            flex: 0 1 auto;
        
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .ih-search-icon {
            cursor: pointer;
        }
        
            .ih-search-img {
                height: 27px;
            }


        .ih-language-icon {
            position: relative;
            cursor: pointer;

            display: flex;
            flex-direction: column;
        }
        
            .ih-language-img {
                height: 24px;
            }
            .ih-language-text {
                font-size: 10px;
                font-weight: 600;
            }

        .ih-right {
            gap: 6px;
        }
        

    #language-popup-menu {
        position: absolute;
        z-index: 200;

        display: none;
        /* display: flex; */
        flex-direction: column;
        gap: 10px;

        top: 68px;
        right: 3px;

        background-color: #eee;
        padding: 15px 20px;

        border-radius: 5px;
        border: 1px solid #eee;
        
        font-size: 16px;
        font-weight: 500;
    }
        .language-popup-item {
            display: flex;
            flex-direction: row;
            gap: 10px;

            cursor: pointer;
        }
            .language-popup-item {
                font-family: "Noto Sans JP", sans-serif;
            }
            .language-popup-item[language-code="en"] {
                font-family: "Noto Sans", sans-serif;
            }
            .language-popup-item[language-code="cn"] {
                font-family: "Noto Sans SC", sans-serif;
            }
            .language-popup-item[language-code="ko"] {
                font-family: "Noto Sans KR", sans-serif;
            }
            .language-popup-flag-icon {
                height: 27px;
            }
            .language-popup-description {
            }
    

    .index-navigation-text {
        color: #A6A294;
        margin: 0px 0px 10px 20px;
        font-size: 14px;
    }
        .index-navigation-text a {
            color: #A6A294;
        }
        .index-navigation-text div {
            display: inline-block;
            color: #A6A294;
        }

    .index-head-border {
        border-bottom: solid 2px #eee;
        margin-bottom: 6px;
    }


















/* Common Footer */
.index-foot {
    display: block;

    color: #fff;
    background-color: #5c9f55;

    padding: 10px 0px;

    font-size: 9px;

    width: 100%;
    text-align: center;
}
.foot-text {
    display: block;
    margin: 0 auto;
}


