@charset "utf-8";
/* CSS Document */
#header * {
	/* font-family: "ＭＳ Ｐゴシック",sans-serif; */
}

body {
	/*スマホで勝手に文字が大きくなる対策*/
	-webkit-text-size-adjust: 100%;
}
#contents_outer {
	padding-top: 100px;
}

/*----------------------------------------------------------------------------*/

.header_inner * {
    font-family: 'Noto Sans JP', sans-serif;
    box-sizing: border-box;
}
.l-header img {
	width: 100%;
	vertical-align: bottom;
}

.header_inner {
    box-sizing: border-box;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #FFFFFF;
    overflow: hidden;
    z-index: 10;
    padding: 11px 14px 10px 12px;
}

.header_inner h1 img {
}
#logo a{
	width: 330px;
	display: block;
	/* margin: 0 0 0 30px; */
}

.header_right {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
}

.header_menu {
    display: flex;
    justify-content: space-between;
    /* width: 477px; */
    font-size: 16px;
    margin-right: 5px;
}

.header_menu li {
    padding: 0 6px;
    margin-right: auto;
}

.header_menu li a {
    color: #333333;
}

.header_menu li a:hover {
    text-decoration: unset;
    opacity: 0.7;
    color: #70D3E2;
}

.header_menu li:nth-of-type(1) {
    width: 60px;
}

.header_menu li:nth-of-type(2) {
    width: 76px;
}

.header_menu li:nth-of-type(3) {
    width: 108px;
}

.header_menu li:nth-of-type(4) {
    width: 60px;
}

.header_menu li:nth-of-type(5) {
    width: 76px;
    margin-right: 0;
}

.header_info {
    width: 265px;
    height: auto;
    margin-top: 5px;
    margin-right: 5px;
}

.header_info_tel img {
    width: 35px;
    margin-right: 6px;
    margin-bottom: 10px;
}

.header_info_tel {
    font-family: 'Roboto', sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    color: #061E86;
    position: relative;
    padding: 0 0 0 42px;
    margin-bottom: 3px;
}
.header_info_tel:before {
	content: '';
	position: absolute;
	background: url(/images/top/header_tel_icon.png) no-repeat;
	background-size: cover;
	width: 34px;
	height: 34px;
	top: -1px;
	left: 1px;
}


.header_info_hours {
    font-size: 13px;
    line-height: 1.41;
    transition: all 0.1s;
    opacity: 1;
}
.is-fixed .header_info_hours {
	opacity: 0;
	height: 0;
}

.header_btn {
    flex-shrink: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 60px;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    background-color: #061E86;
    border-radius: 30px;
    z-index: 0;
    /* margin: 0 0 0 29px; */
}

.header_btn:hover {
    text-decoration: none;
    color: #FFFFFF;
    opacity: 0.8;
}

.header_btn::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    background-color: #FFFFFF;
    top: 31px;
    right: 0;
    z-index: 1;
}