/*
 Theme Name: japan helth tech
 Author: Atsuki Hiro
 Author URI: https://example.com/
 Description: 企業サイト用のオリジナルWordPressテーマ
 Version: 1.0
 License: GNU General Public License v2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: mycompany-theme
*/

:root{
    --primary-color: #026BBE;
    --secondary-color: #3B82F6;
    --accent-color: #f7e881;
    --font-color: #222;
    --background-color: #f5f5f5;
}


body {
    margin: 0;
    font-family: 'Noto Sans JP', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1;
    background: #f5f5f5;
    color: #222;
}

a {
    text-decoration: none;
}


a,
a:hover,
a:visited {
    color: inherit;
}

/* header */
.site-header {
    background: #fff;
    color: #222;
    padding: 25px 40px;
}

.site-header .site-title {
    margin: 0;
    font-size: 24px;
}

.site-header nav ul {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    display: flex;
    gap: 16px;
}


.site-main {
    margin: 0px auto;

}

.site-footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 16px 0;
    margin-top: 40px;
    font-size: 13px;
}