@charset "UTF-8";

#header {
	position: fixed;
	width: 100%;
    padding: 20px 20px 0;
	z-index: 999;
}

.head-inner {
    display: flex;
    justify-content: flex-end;
    width: 100%;
	height: 82px;
    padding: 20px 30px;
    background-color: #ffffff;
    border-radius: 6px;
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
}

.head-inner .head-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
	margin-right: auto;
}

.head-inner .head-logo a.logo {
    width: 100%;
    max-width: 150px;
    margin-right: 10px;
}

.head-inner .head-logo a.logo img {
    width: 100%;
    height: auto;
}

.head-inner .head-logo .disc {
    font-size: 0.75em;
    font-weight: 500;
    line-height: 1.4;
    color: #4d4d4d;
}

/**/

.head-inner .head-cta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
	margin-left: 30px;
}

.head-inner .head-cta .head-cta-document {
    width: 100%;
    min-width: 150px;
    font-size: 1.0em;
    font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
    color: #ffffff;
    text-align: center;
    padding: 15px 20px;
    background-color: #132e4f;
	border: 1px solid #132e4f;
    border-radius: 50px;
    margin-right: 10px;
	transition: all 0.3s;
}

.head-inner .head-cta .head-cta-document:hover {
    color: #132e4f;
    background-color: #ffffff;
	border: 1px solid #132e4f;
	transition: all 0.3s;
}

.head-inner .head-cta .head-cta-contact {
    width: 100%;
	min-width: 150px;
    font-size: 1.0em;
    font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
    color: #ffffff;
    text-align: center;
    padding: 15px 20px;
    background-color: #e63818;
	border: 1px solid #e63818;
    border-radius: 50px;
	transition: all 0.3s;
}

.head-inner .head-cta .head-cta-contact:hover {
    color: #e63818;
    background-color: #ffffff;
	border: 1px solid #e63818;
	transition: all 0.3s;
}

/**/

.head-inner .head-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.head-inner .head-nav li {
    margin-left: 15px;
}

.head-inner .head-nav li a {
    font-size: 0.95em;
    font-weight: 700;
	line-height: 1;
    letter-spacing: 0.01em;
	transition: all 0.3s;
}

.head-inner .head-nav li a:hover {
	color: #e63818;
	transition: all 0.3s;
}

/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
@media screen and (max-width: 768px) {

#header {
    padding: 10px 10px 0;
}
	
	
.sp-head-inner {
	display: flex;
	 justify-content: flex-start;
    align-items: center;
	width: 100%;
	height: 60px;
	padding: 5px;
	background-color: #ffffff;
	border-radius: 6px;
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
}	
	
.sp-head-inner .head-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
	margin-right: auto;
}

.sp-head-inner .head-logo a.logo {
    width: 100%;
    max-width: 110px;
    margin-right: 10px;
}

.sp-head-inner .head-logo a.logo img {
    width: 100%;
    height: auto;
}

.sp-head-inner .head-logo .disc {
    font-size: 0.6em;
    font-weight: 500;
    line-height: 1.4;
    color: #4d4d4d;
}
	
.sp-head-inner .head-menu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
	margin-left: auto;
}
	
.sp-head-inner .head-menu a.document {
    width: 40px;
	height: 40px;
	border-radius: 20px;
	color: #ffffff;
	text-align: center;
	display: flex;
    justify-content: center;
    align-items: center;
	background-color: #132e4f;
	border: 1px solid #132e4f;
	transition: all 0.3s;
	margin-right: 6px;
}
	
.sp-head-inner .head-menu a.document img {
    width: 20px;
	height: auto;
}
	
.sp-head-inner .head-menu a.contact {
    width: 40px;
	height: 40px;
	border-radius: 20px;
	color: #ffffff;
	text-align: center;
	display: flex;
    justify-content: center;
    align-items: center;
	background-color: #e63818;
	border: 1px solid #e63818;
	transition: all 0.3s;
	margin-right: 6px;
}
	
.sp-head-inner .head-menu a.contact img {
    width: 20px;
	height: auto;
}

 /* MENUボタン */
    .menu-btn {
		position: relative;
      display: inline-block;
      background: #fff;
		border:1px solid #e63818;
      color: #e63818;
      padding: 10px 14px;
      border-radius: 40px;
      cursor: pointer;
      user-select: none;
		font-size: 0.8em;
		font-weight: 700;
font-family: "Montserrat", sans-serif;
    }

    /* ドロップダウンメニュー */
    .dropdown {
		position: absolute;
		top: 42px;
		right: 15px;
      display: none;
      margin-top: 10px;
      background: #e63818;
      border-radius: 6px;
      overflow: hidden;
    }

    .dropdown a {
      display: block;
      padding: 12px 14px;
		font-size: 0.8em;
      text-decoration: none;
      color: #ffffff;
      border-bottom: 1px solid #C32D11;
    }

    .dropdown a:last-child {
      border-bottom: none;
    }

    .dropdown a:hover {
      background: #C32D11;
    }

    /* 表示状態 */
    .dropdown.active {
      display: block;
    }

/**/
	
	
.head-inner {
    display: none !important;
}	
/*	
	
.head-inner {
    display: flex;
    justify-content: flex-end;
    width: 100%;
	height: 60px;
    padding: 15px 15px;
    background-color: #ffffff;
    border-radius: 6px;
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
}

.head-inner .head-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
	margin-right: auto;
}

.head-inner .head-logo a.logo {
    width: 100%;
    max-width: 150px;
    margin-right: 10px;
}

.head-inner .head-logo a.logo img {
    width: 100%;
    height: auto;
}

.head-inner .head-logo .disc {
    font-size: 0.75em;
    font-weight: 500;
    line-height: 1.4;
    color: #4d4d4d;
}
	

.head-inner .head-cta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
	margin-left: 30px;
}

.head-inner .head-cta .head-cta-document {
    width: 100%;
    min-width: 150px;
    font-size: 1.0em;
    font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
    color: #ffffff;
    text-align: center;
    padding: 15px 20px;
    background-color: #132e4f;
	border: 1px solid #132e4f;
    border-radius: 50px;
    margin-right: 10px;
	transition: all 0.3s;
}

.head-inner .head-cta .head-cta-document:hover {
    color: #132e4f;
    background-color: #ffffff;
	border: 1px solid #132e4f;
	transition: all 0.3s;
}

.head-inner .head-cta .head-cta-contact {
    width: 100%;
	min-width: 150px;
    font-size: 1.0em;
    font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
    color: #ffffff;
    text-align: center;
    padding: 15px 20px;
    background-color: #e63818;
	border: 1px solid #e63818;
    border-radius: 50px;
	transition: all 0.3s;
}

.head-inner .head-cta .head-cta-contact:hover {
    color: #e63818;
    background-color: #ffffff;
	border: 1px solid #e63818;
	transition: all 0.3s;
}
*/
	
}


@media screen and (min-width: 769px) {
	.sp-head-inner {display: none !important;}
}



















