@charset "UTF-8";
header {
    font-family:YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Hiragino Sans", Meiryo, メイリオ, "MS P Gothic", sans-serif;
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
	font-weight: 500;
	font-size: 100%;
	vertical-align: baseline;
	box-sizing:border-box;
}

header {
	display: block;
	box-sizing:border-box;
}

.flex {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap; 
	flex-wrap: wrap;
}

.flex01 {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
	flex-wrap : wrap;
	-webkit-box-pack:justify;
	-ms-flex-pack:justify;
	justify-content:space-between;
	align-content: space-between;
}

.flex-center {
    align-items: center;
}

.flex-right {
    display: flex;
    justify-content: flex-end;
}

.box1080c {
	clear: both;
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
    padding-left: 10px;
	padding-right: 10px;
	position: relative;
}

@media (max-width: 768px){
.box1080c {
    padding-left: 0;
    padding-right: 0;
}
}

#header_top {
    width: 100%;
    height: 70px;
    top:0;
    margin:0;
    background:rgba(255,255,255,0.95);
    position: fixed;
    z-index: 10;
}

.header_logo {
    width: 20%;
    padding-top: 15px;
}

.header_logo img {
    max-width: 160px;
}

.header_nav_menu {
    width: 80%;
    padding-top: 10px;
}

.header_nav_menu li {
    margin-left: 25px;
}

.header_nav_menu li a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px !important;
    letter-spacing: 0 !important;
}

.header_nav_menu li a:hover {
    color: #ea5505;
}

.header_nav_menu li#menu_login a {
	color:#fff!important;
	border-radius: 20px;
	padding:0.5em 1.5em;
    background: rgb(253,146,39);
    background: linear-gradient(118deg, rgba(253,146,39,1) 0%, rgba(234,85,5,1) 50%);
}

.header_nav_menu li#menu_login a:hover {
	color:#fff!important;
	background:#ea5505!important;
}

@media (max-width: 768px){
#header_top {
    height: 55px;
}

.header_logo {
    width: 50%;
    padding: 10px 20px;
}

.header_logo img {
    max-width: 125px;
}

.header_nav_menu {
    display: none !important;
}
}

/*nav-toggle*/

@media (max-width: 768px){
#nav-toggle {
	position:absolute;
	top: 0;
	right: 0;
	height: 74px;
	cursor: pointer;
    padding: 10px 20px;
}
	
#nav-toggle > div {
    position: relative;
    width: 25px;
}

#nav-toggle span {
    width: 100%;
    height: 2px;
    left: 0;
    display: block;
    background: #111;
    position: absolute;
    transition: transform .6s ease-in-out, top .5s ease;
}
    
#nav-toggle span:nth-child(1) {
    top: 5px;
}
#nav-toggle span:nth-child(2) {
    top: 14px;
}
#nav-toggle span:nth-child(3) {
    top: 23px;
}

.open #nav-toggle {
    border-left: none;
}

.open #nav-toggle span {
    background: #111;
}
    
.open #nav-toggle span:nth-child(1) {
    top: 15px;
    transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
    top: 15px;
    width: 0;
    left: 50%;
}
.open #nav-toggle span:nth-child(3) {
    top: 15px;
    transform: rotate(-45deg);
}

#nav-toggle {
	z-index: 9999;
}

#gloval-nav {
    background: #fff;
    color: #111;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity .6s ease, visibility .6s ease;
    z-index: 100;
}

#gloval-nav a {
    display: block;
    color: #111;
    text-decoration: none;
    padding: 10px 0;
    font-size:20px !important;
    transition: color .6s ease;
    font-weight: 500;
}
    
#gloval-nav a:hover {
      color: #ea5505;
    }
  
#gloval-nav ul {
    list-style: none;
}

#gloval-nav ul li {
    opacity: 0;
    transform: translateX(200px);
    transition:  transform .6s ease, opacity .2s ease;
}

#gloval-nav ul li#menu_login a {
    color: #ea5505 !important;
}

#gloval-nav ul li#menu_login a:hover {
    color: #111 !important;
}

.open {
	overflow: hidden;
}
  
.open #gloval-nav {
    visibility: visible;
    opacity: 1;
}

.open #gloval-nav li {
    opacity: 1;
    transform: translateX(0);
    transition:  transform 1s ease, opacity .9s ease;
}
}