
@charset "UTF-8";

.l-header.org-header {
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
    position:sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 30px;
}

/*///////////////////// font-face èª­ã¿è¾¼ã¿ä¾‹ ///////////////////////////*/
/*Zen Kaku Gothic New 400*/
@font-face {
    font-family: 'Zen Kaku Gothic New';
    src: url(/fonts/ZenKakuGothicNew-Regular.woff2);
    font-weight: 400;
    font-display: swap;
}
/*Zen Kaku Gothic New 500*/
@font-face {
    font-family: 'Zen Kaku Gothic New';
    src: url(/fonts/ZenKakuGothicNew-Medium.woff2);
    font-weight: 500;
    font-display: swap;
}
/*Zen Kaku Gothic New 700*/
@font-face {
    font-family: 'Zen Kaku Gothic New';
    src: url(/fonts/ZenKakuGothicNew-Bold.woff2);
    font-weight: 700;
    font-display: swap;
}

/*Roboto 500*/
@font-face {
    font-family: 'Roboto';
    src: url(/fonts/Roboto-Medium.woff2);
    font-weight: 500;
    font-display: swap;
}
/*Roboto 700*/
@font-face {
    font-family: 'Roboto';
    src: url(/fonts/Roboto-Bold.woff2);
    font-weight: 700;
    font-display: swap;
}
/*///////////////////// font-face èª­ã¿è¾¼ã¿ä¾‹ ///////////////////////////*/

.org-header *{
    font-family: 'Zen Kaku Gothic New', sans-serif;
    box-sizing: border-box;
    }

.org-header__inner {
    width: 100%;
    padding: 10px 15px 10px 20px;
    height: 100px;
    position: relative;
}
.header__logo {
    display: flex;
    align-items: center;
    width: 212px;
    position: absolute;
    left: -15px;
    top: 0;
    height: 124px;
}
.header__logo img {
    max-width: 100%;
    max-height: 100%;
}
.header__logo:hover {
    opacity: 1;
}
.header-navbox__list {
    display: flex;
    gap: 26px;
    justify-content: end;
    margin-right: 4px;
}
.header-listbox {
    position: relative;
}
.header-navbox__link {
    color: #3D3E46;
    font-family: "Zen Kaku Gothic New";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: end;
    text-align: end;
    }

    .header-navbox__link:hover {
        color: #2499D4;
        opacity: 1;
    }

.header__teltext {
    color: #3D3E46;
    font-family: "Zen Kaku Gothic New";
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 2px;
    justify-content: end;
}

.aboutinfo__box {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
    margin-right: 5px;
    }

.header__telicon {
margin-top: 1px;
}
.pamphlet__btn {
    background:  #F68004;
    color:  #FFF;
    font-family: "Zen Kaku Gothic New";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    width: 184px;
    height: 39px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    margin-top: 4px;
    transition: all 0.3s ease;
    margin-right: 0px;
    letter-spacing: 0;
}
.pamphlet__btn:hover {
    transform: scale(1.05);
    opacity: 1;
}
.header__infotext {
    color: #3D3E46;
    font-family: "Zen Kaku Gothic New";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: end;
    line-height: 1.2;
    }
.header-listbox:hover .header-pulldownbox {
    display: block;
}

.header-pulldownbox {
    display: none;
    position: absolute;
    top: 103.5%;
    left: -21px;
    z-index: 100;
    padding: 0;
    margin: 0;
    border-radius: 5px;
    opacity: 0.9;
    overflow: hidden;
}
.header-pulldown--list {
    list-style: none;
}

.header-pulldown--list:not(:last-child) .header-pulldown--btn::before {
    content: "";
    position: absolute;
    bottom:0;
    left: 0;
    right: 0;
    margin: auto;
    height: 1px;
    width: 119px;
    background: #fff;
    }

.header-pulldown--list:last-child {
    border-bottom: none;
}
.header-pulldown--btn {
    display: flex;
    justify-content: center;
    padding: 9px 15px 5px;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.2s;
    white-space: nowrap;
    width: 131px;
    font-size: 16px;
    font-weight: 700;
    background: #2499D4;
    position: relative;
}
.header-pulldown--btn:hover {
    background-color: #2668B2;
    opacity: 1;
}
.header__right {
    display: flex;
    flex-direction: column;
    gap: 11px;
    justify-content: start;
    align-items: end;
}

