@charset "UTF-8";
/* CSS Document */
/*
-----------------------------------------------
▼ハンバーガーメニュー
----------------------------------------------- */
nav {
    position: fixed;
    top: 24px;
    width: 100%;
    z-index: 12;
}
.header-menu_box {
    /*最初はナビゲーションボタンは非表示*/
    display: none;
    list-style:none;
	width: 45%;
	background-color: #ffffff;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	padding: 8% 3%;
	
}
.header-menu li a{
    padding: 15px;
    font-size: 22px;
    color: #333333;
    display: flex;
    text-align: center;
    text-decoration: none;
    column-gap: 5%;
	align-items: center;
	transition: 0.6s all;
}
.header-menu li:not(:last-child){
	border-bottom: dashed 1px #00a5ae;
}

.header-menu li a:hover{
	background:#efefef;
}

.header{
	position: fixed;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100px;
	width: 100%;
	top: 0;
	z-index: 10;
	box-shadow: 0px 2px 30px -13px #8d92b9;
	padding-left: 1%;
	padding-right: 7%;
	background-color: #ffffff;
}
.hamburger {
    position: fixed;
    top: 32px;
    right:32px;
    cursor: pointer;
    width: 32px;
    height: 24px;
    z-index: 13;
}
.hamburger span {
    /*3本の線を作る*/
    transition: all .3s;
    position: absolute;
    height: 3px;
    background-color: #333;
    width:100%;
    z-index: 10;
}
.hamburger span:nth-of-type(1) {
    /*上の線の位置*/
    top: 4px;
}
.hamburger span:nth-of-type(2) {
    /*真ん中の線の位置*/
    top: 13px;
}
.hamburger span:nth-of-type(3) {
    /*下の線の位置*/
    top: 22px;
}
.hamburger span:nth-of-type(3)::after {
	content: "Menu";
	position: absolute;
	top: 4px;
	left: 0;
	color: #333333;
	font-size: 0.9em;
	font-weight: 600;
	text-transform: uppercase;
}
.hamburger.open span:nth-of-type(1) {
    /*openのとき、上の線を右斜めにする*/
    top: 10px;
    transform: translateY(6px) rotate(-40deg);
}
.hamburger.open span:nth-of-type(2) {
    /*真ん中の線を消す*/
    opacity: 0;
}
.hamburger.open span:nth-of-type(3) {
    /*下の線を左斜めにする*/
    top: 22px;
    transform: translateY(-6px) rotate(40deg);
}
.hamburger.open span:nth-of-type(3)::after{
	content: "Close";
	transform: translateY(0) rotate(-40deg);
	top: 12px;
	left: 12px;
	
}
.btn02{
	text-align: center;
	margin-top: 30px;
}
.btn02 a{
	background-color: #ee7948;
	color: #ffffff;
	text-decoration: none;
	font-size: 2rem;
	display: inline-block;
	padding: 0.5em 1em;
	font-weight: 700;
	border-radius: 40px;
	letter-spacing: 0.08em;
}
.fa-house-chimney,
.fa-newspaper,
.fa-headphones-simple,
.fa-paper-plane,
.fa-microphone{
	color: #00a5ae;
	font-size: 20px;
}
.menu_x a span{
	font-size: 2rem;
	text-align: left;
	line-height: 1.5em;
}
.menu_x br{
	display: none;
}
@media screen and (max-width: 1100px){
	.header{
		padding-right: 10%;
	}
}
@media screen and (min-width: 768px) and (max-width: 950px){
	.menu_x br{
		display: block;
	}
}
@media screen and (max-width: 767px){
	.header{
		padding-right: 12%;
	}
}
@media screen and (max-width: 600px){
	.header{
		padding-right: 14vw;
		height: 70px;
	}
	.hamburger{
		top: 16px;
		right: 25px;
	}
}
@media screen and (max-width: 500px){
	.header{
		padding-right: 19vw;
	}
	.menu_x a span{
		font-size: 1.7rem;
	}
}
/*
-----------------------------------------------
▼ヘッダー
----------------------------------------------- */
.logo01{
	width: 200px;
}
.logo01 img{
	width: 100%;
}
.logo_x{
	width: 47px;
}
.logo_x img{
	width: 100%;
}

@media screen and (max-width: 600px){
	.logo01{
		width: 140px;
	}
	.logo_x{
		width: 40px;
	}
}






