.header-wrap-outside{
    width: 100%;
	height: 360px;
    background-size: cover;
    background-repeat: no-repeat;
}
.header-wrap{
    max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
    font-weight: bold;
    width: 100%;
    height: 100%;
}
.header-wrap-top{
    background-image: url(../images/header_top_L.jpg);
}
.header-wrap-office{
    background-image: url(../images/header_office_L.jpg); 
}
.header-wrap-business{
    background-image: url(../images/header_business_L.jpg); 
}
@media screen and (max-width:1000px){
    .header-wrap-top{
        background-image: url(../images/header_top.jpg);
        background-position: center;
    }
    .header-wrap-office{
        background-image: url(../images/header_office.jpg); 
        background-position: center;
    }
    .header-wrap-business{
        background-image: url(../images/header_business.jpg); 
        background-position: center;
    }
}
.header-inner{
    position: relative;
}
.site-name::before{
    content: "";
    display: inline-block;
    width: 50px;
    height: 60px;
    background-image: url(../images/Logo.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: -10px;
    margin-bottom: -5px;
}
.site-name{
    position: absolute;
    top:20px;
    left: 50px;
    width: fit-content;
    font-size: 26px;
}
.g-nav{
    position: absolute;
    top:50px;
    right: 30px;
}
.g-nav ul{
    text-wrap : nowrap ;
    display: flex;
    font-size: 18px;
}
.g-nav ul li:first-of-type{
    display: none;
}
.g-nav ul li a{
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
}
.site-name a:hover,
.g-nav ul li a:hover{
    color: #107c6c;
}
.header-box,
.header-box-title{
    position: absolute;
    background-color: #ffffffc5;
    width: fit-content;
    text-align: center;
    color: #107c6c;
}
.header-box{
    top:130px;
    left: 100px;
    font-size: 20px;
    line-height: 1.6;
    padding: 20px;
}
.header-box-title{
    top:130px;
    left: 0px;
    padding:  20px 30px;
}
.header-box-title p{
    font-size: 36px;
}
.header-box-title h1{
    font-size: 18px;
}
@media screen and (max-width:1000px){
    .g-nav{
        top:85px;
    }
}
@media screen and (max-width:660px){
    .header-wrap{
        height: 360px;
    }
    .g-nav{
        font-size: 16px;
    }
    .g-nav ul li a{
        padding-left: 10px;
        padding-right: 10px;
    }
}
@media screen and (max-width:530px){
    .header-wrap-outside{
        height: 220px;
    }
    .header-wrap{
        height: 220px;
    }
    .site-name{
        left: 20px;
        font-size: 22px;
    }
    .header-box{
        top: 100px;
        left: 40px;
        font-size: 18px;
        line-height: 1.6;
    }
    .header-box-title{
        top: 100px;
        left: 0px;
    }
    .header-box-title p{
        font-size: 30px;
    }
    .header-box-title h1{
        font-size: 14px;
    }
    .g-nav{
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }
    .g-nav ul{
        display: block;
    }
    .g-nav ul li:first-of-type{
        display: block;
    }
    .g-nav ul li a{
        padding-top: 30px;
        padding-bottom: 30px;
        width: 100%;
    }
    .g-nav ul li a:hover{
        color: #728c93;
    }
}
/*contact*/
.header-wrap-outside-contact{
	max-width: 1200px;
    width: 100%;
	margin-left: auto;
	margin-right: auto;
	height: 130px;
}

/********************************************************
*  ハンバーガーメニュー
********************************************************/
.c-hamburger {
	display: none;
}
@media screen and (max-width:530px){
	.c-hamburger {
		display: inline-block;
		text-decoration: none;
		appearance: none;
		outline: none;
		cursor: pointer;
		position: fixed;
		z-index: 992;
		top: 100px;
		right: 0px;
		width: 50px;
		height: 50px;
		background-color: #000;
	}
	.c-hamburger__line {
		width: 22px;
		height: 4px;
		background-color: #ffffff;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		transition: all .3s;
	}
	.c-hamburger__line::before,
	.c-hamburger__line::after {
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		background-color: inherit;
		position: absolute;
		transition: all .3s;
	}
	.c-hamburger__line::before {
		top: -10px;
	}
	.c-hamburger__line::after {
		top: 10px;
	}
	/*ドロワー*/
	.c-drawer {
		position: fixed;
		z-index: 991;
		top: 0;
		right:  0;
		width: 70%;
		height: 100vh;
		background-color: #000;
		color:#fff;
		opacity: 0;
		visibility: hidden;
		transition: opacity .3s linear;
	}
	/* アクティブ時 */
	.is-drawer-active .c-hamburger{
		background-color:#728c93;
	}
	.is-drawer-active .c-hamburger__line{
		background-color: transparent;
	}
	.is-drawer-active .c-hamburger__line::before,
	.is-drawer-active .c-hamburger__line::after{
		top: 0;
		background-color:#ffffff;
	}
	.is-drawer-active .c-hamburger__line::before{
		transform: rotate(45deg);
	}
	.is-drawer-active .c-hamburger__line::after{
		transform: rotate(-45deg);
	}
	.is-drawer-active .c-drawer {
		opacity: 1;
		visibility: visible;
	}
}
@media screen and (max-width:500px){
	.c-drawer {
		width: 100%;
	}
}
/*レスポンシブサイト名*/
.g-nav-siteName{
    display: none;
}
@media screen and (max-width:530px){
    .g-nav-siteName{
        display: block;
        position: absolute;
        top: -100px ;
        left: 50%;
        transform: translateX(-50%);
    }
}