@charset "UTF-8";

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

/*Sansation 700*/
@font-face {
    font-family: 'Sansation';
    src: url(/fonts/Sansation-Regular.ttf);
    font-weight: 700;
    font-display: swap;
}
/*Sansation 700*/
@font-face {
    font-family: 'Sansation';
    src: url(/fonts/Sansation-Bold.ttf);
    font-weight: 700;
    font-display: swap;
}

/*Roboto 700*/
@font-face {
    font-family: 'Roboto';
    src: url(/fonts/Roboto-Bold.ttf);
    font-weight: 700;
    font-display: swap;
}
/*Sansation 500*/
@font-face {
    font-family: 'Roboto';
    src: url(/fonts/Roboto-Medium.ttf);
    font-weight: 500;
    font-display: swap;
}
/*Sansation 400*/
@font-face {
    font-family: 'Roboto';
    src: url(/fonts/Roboto-Regular.ttf);
    font-weight: 400;
    font-display: swap;
}
/*///////////////////// font-face 読み込み例 ///////////////////////////*/

.l-header *{
    font-family: 'Noto Sans JP', sans-serif;
    }
/* トップ固定ヘッダー：スクロールで白背景をふわっと（l-header-under 付与時） */
.l-header.org-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 rgba(0, 65, 135, 0);
    transition:
        background-color 0.55s cubic-bezier(0.33, 1, 0.68, 1),
        box-shadow 0.55s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (prefers-reduced-motion: reduce) {
    .l-header.org-header {
        transition-duration: 0.01ms;
    }
}
.l-header.org-header.l-header-under {
    position: fixed;
    background-color: #fff;
    box-shadow: 0 4px 24px rgba(0, 65, 135, 0.08);
}
.l-header-under {
    position: sticky;
    background: #fff;
}

.header__inner {
    width: 100%;
    padding: 5px 5px 5px 2px;
    align-items: center;
}
.header__logo:hover {
opacity: 1;
}
.header__logo img {
    max-width: 324px;
    max-height: 70px;
}
.header__nav-wrap {
    display: flex;
    align-items: center;
}
.header__nav {
display: flex;
gap: 22px;
}
.header__nav-link {
    color: #004187;
    text-align: right;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5; /* 24px */
}
.header__nav-link:hover {
    color: #00B3DB;
}
.header__contactbtn__box {
    display: flex;
    gap: 4px;
}
[class*="header__contactbtn-link--"] {
    width: 128px;
    height: 60px;
    border-radius: 5px;
    color: #fff;
    gap: 5px;
    display: flex;
    flex-direction: column;
    background: #004187;
    font-size: 16px;
    font-weight: 700;
    line-height: 110%; /* 17.6px */
    text-align: center;
    align-items: center;
    justify-content: center;
    border: 2px solid #004187;
}
.header__contactbtn-link--02{
background: #FADD0B;
color: #004187;
border: 2px solid #FADD0B;
}
.header__contactbtn-link--03 {
    background: #06C755;
}
.header__contactbtn-link--01:hover 
{
    border: 2px solid #fadd0b;
    opacity: 1;
}
.header__contactbtn-link--02:hover 
{
    border: 2px solid #004187;
    opacity: 1;
}
.header__contactbtn-icon--01 img {

}