@charset "UTF-8";

/*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;
}
/*Zen Kaku Gothic New 900*/
@font-face {
    font-family: 'Zen Kaku Gothic New';
    src: url(/fonts/ZenKakuGothicNew-Black.woff);
    font-weight: 900;
    font-display: swap;
}

/*---------------------------------------------------------
	ヘッダー
---------------------------------------------------------*/
.l-header *{
    font-family: 'Zen Kaku Gothic New';
    color: #333;
}
.l-header{
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.header__inner{
    width: 100%;
    height: 70px;
    padding: 0 16px 0 20px;
    align-items: center;
}
.header__logo a:hover{
    opacity: 1;
}
.header__logo img{
    max-width: 100%;
    max-height: 100%;
}
.header__right{
    gap: 10px;
}
.header__info-tel{
    font-size: 30px;
    font-weight: 900;
    line-height: 1.2;
}
.header__info-tel::before{
    content: url(/images/top/header_icn_tel.png);
    display: inline-block;
    margin-right: 6px;
    vertical-align: -3px;
}
.header__info-time{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
}
.header__info-time dt{
    font-size: 12px;
    font-weight: 500;
    color: #787878;
    background: #E2E2E2;
    padding: 1px 6px;
}
.header__info-time dd{
    font-size: 14px;
    font-weight: 500;
}
.header__btn{
    display: flex;
    align-items: center;
    gap: 8px;
    height: auto;
    padding: 0;
}
[class^="header__btn-"] a{
    display: block;
    text-align: center;
    min-width: 160px;
    padding: 8px 15px;
    border-radius: 100vh;
    font-size: 16px;
    font-weight: 500;
}
.header__btn-contact a{
    background: #E3AE00;
    color: #fff;
    box-shadow: 0 2px 4px rgba(227, 174, 0, 0.5);
}
.header__btn-satei a{
    background: linear-gradient(to right, 
    #BF181B 0%,   /* 左端の青 */
    #FF6060 50%,  /* 真ん中の赤 */
    #BF181B 100%  /* 右端の黄色 */
    );
    color: #FFFF40;
    box-shadow: 0 2px 4px rgba(191, 24, 27, 0.5);
}
.header__btn-line a{
    padding: 8px 20px;
    background: #06C755;
    color: #fff;
    box-shadow: 0 2px 4px rgba(21, 138, 69, 0.5);
}