@charset "UTF-8";

/*///////////////////// font-face 読み込み例 ///////////////////////////*/
/*Noto Sans JP 400*/
@font-face {
    font-family: 'Noto Sans JP';
    src: url(/fonts/NotoSansJP-Regular.woff);
    font-weight: 400;
    font-display: swap;
}
/*Noto Sans JP 500*/
@font-face {
    font-family: 'Noto Sans JP';
    src: url(/fonts/NotoSansJP-Medium.woff);
    font-weight: 500;
    font-display: swap;
}
/*Noto Sans JP 700*/
@font-face {
    font-family: 'Noto Sans JP';
    src: url(/fonts/NotoSansJP-Bold.woff);
    font-weight: 700;
    font-display: swap;
}
/*///////////////////// font-face 読み込み例 ///////////////////////////*/

.org-header *{
    font-family: 'Noto Sans JP', sans-serif;
}

/* =========================================
   Header
   ========================================= */
.l-header.org-header {
    width: 100%;
    background-color: #FFFFFF;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.org-header .header__inner {
    width: 100%;
    margin: 0 auto;
    padding: 15px 23px 21px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.header__left {
    flex-shrink: 0;
}

.header__logo-tag {
    margin: 0;
    padding: 0;
    line-height: 1;
}

.header__logo {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: #282828;
    text-decoration: none;
    display: block;
}

.header__logo:hover{
    opacity: 1;
}

.header__right {
    flex-shrink: 0;
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__nav-item {
    line-height: 1;
}

.header__nav-link {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: #282828;
    text-decoration: none;
    transition: opacity 0.3s;
}

.header__nav-link:hover {
    opacity: 0.7;
}
