@charset "UTF-8";

/*--↓ メガメニュースタイル ↓--*/
header {
	position: fixed;
	top: 0px;
	z-index: 15;
	width: 100vw;
}
header .menu_filter {
	width: 100%;
	height: 50px;
	background-color: rgba(0,0,0,0.75);
	position: absolute;
	display: none;
}
header .container {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
header .pc_menu {
	display: none;
}
header .headA {
	z-index: 90;
	display: flex;
	align-items: center;
	margin-top: 1px;
}
header .headA a{
	transition: all 0.3s;
	margin-top: 8px;
}
header .headA a:hover{
	opacity: 0.7;
}
header .headA h1 {
	font-size: 11px;
	color: #FFFFFF;
	margin-bottom: 3px;
	font-weight: lighter;
}
header .headA p {
	font-size: 11px;
	color: #EDEDED;
	font-weight: lighter;
	line-height: 1.5;
	margin-left: 10px;
}
header .headA a img {
	width: 100px;
	height: auto;
}
header .no_link {
	pointer-events: none;
	text-decoration: none;
}



/*--↓ ハンバーガーメニュースタイル ↓--*/

header .phone_back {
	background: linear-gradient(to right, rgba(0, 0, 0, 0.75), #000);
	width: 100vw;
	height: 100vh;
	position: absolute;
	top: 0px;
	visibility: hidden;
	left: 0px;
	z-index: 90;
}
header .phone_menu {
	height: 80vh;
	position: fixed;
	z-index: 100;
	width: 215px;
	overflow-y: auto;
	padding-bottom: 170px;
	transition: all 0.3s;
	transform: translate(100%);
	left: auto;
	right: 0px;
	background-color: #3D3D3D;
	top: 0px;
	padding-top: 55px;
	padding-left: 40px;
	padding-right: 25px;
	border-left: 1px solid #EAEAEA;
}
header .phone_menu ul {
	list-style-type: none;
	margin-left: 0px;
	padding-left: 0px;
}
header .phone_menu ul li {
	align-items: center;
}
header .phone_menu ul li .acd_btn {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-right: 5px;
}
header .phone_menu ul li .acd_btn .arrow {
	display: block;
	width: 6px;
	height: 6px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 4px;
	border-right: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	transform: rotate(45deg);
	transition: all 0.3s;
}
/*矢印が反転した時の指定*/
header .phone_menu ul li .acd_btn.selected .arrow {
	display: block;
	width: 6px;
	height: 6px;
	margin-top: 4px;
	margin-right: 0;
	margin-bottom: 0px;
	border-right: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	transform: rotate(-135deg);
	transition: all 0.3s;
}
header .phone_menu ul li a {
	text-decoration: none;
}
header .phone_menu ul li a:hover {
	opacity: 0.7;
}
header .phone_menu ul li .acd_btn a {
	color: #fff;
	font-size: 14px;
	transition: all 0.3s;
	width: 100%;
	padding-top: 12px;
	padding-bottom: 12px;
	line-height: 1.4;
}
header .phone_menu ul li .acd_content {
	display: none;
}
header .phone_menu .acd_content li {
	border-bottom: 1px solid #6A6A6A;
	border-left: 1px solid #6A6A6A;
	display: flex;
	align-items: center;
	margin-left: 13px;
	margin-right: 13px;
}
header .phone_menu .acd_content li:last-child {
	margin-bottom: 30px;
}
header .phone_menu .acd_content li a {
	font-size: 13px;
	color: #FFF;
	width: 100%;
	transition: all 0.3s;
	padding-bottom: 8px;
	padding-top: 10px;
	padding-left: 12px;
}
/*ハンバーガーボタン*/
.menu-trigger {
	position: relative;
	cursor: pointer;
	width: 60px;
	height: 50px;
	z-index: 100;
}
.menu-trigger span{
	display: inline-block;
	transition: all .3s;/*アニメーションの設定*/
	position: absolute;
	left: auto;
	height: 2px;
	border-radius: 2px;
	background: #fff;
	right: 0px;
}
.menu-trigger span:nth-of-type(1) {
	top: 15px;
	width: 52%;
	background-color: #DF2E31;
}
.menu-trigger span:nth-of-type(2) {
	top: 24px;
	width: 40%;
	background-color: #1984FF;
}
.menu-trigger span:nth-of-type(3) {
	top: 33px;
	width: 27%;
	background-color: #5AD851;
}
/*activeクラスが付与されると線が回転して×になる*/
.menu-trigger.active span:nth-of-type(1) {
	top: 18px;
	right: 4px;
	transform: translateY(6px) rotate(-135deg);
	width: 38%;
}
.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.menu-trigger.active span:nth-of-type(3){
	top: 30px;
	right: 4px;
	transform: translateY(-6px) rotate(135deg);
	width: 38%;
}
/*クラス変更でハンバーガーメニューを開く*/
header .phone_menu.active {
	transform: translate(0);
	opacity: 1;
}
/*クラス変更でハンバーガーメニュー背景暗転*/
header .phone_back.active {
	visibility: visible;
	animation-duration: .3s;
	animation-name: fade-in;
}
@keyframes fade-in {
	0% {
		visibility: hidden;
		opacity: 0;
	}
	100% {
		visibility: visible;
		opacity: 1;
	}
}

















@media (min-width:600px) and (max-width:959px){


























}

@media (min-width:960px){

/*--↓ メガメニュースタイル ↓--*/
.menu_hover_filter {
	background-color: rgba(0,0,0,0.75);
	width: 100vw;
	height: 0;
	position: fixed;
	z-index: 10;
	transition: all 0.11s;
}
/*メニューホバーで背景暗転のjs用クラス*/
.mega_blackout {
	height: 100vh;
	transition: all 0.11s;
}

header .menu_filter {
	height: 75px;
}
header .pc_menu {
	z-index: 90;
	display: inline;
}

header .headA a img {
	width: 120px;
}

.megamenu {
	display: flex;
	margin: 0;
	padding: 0;
}
.megamenu > li {
	list-style-type: none;
	transition: all 0.25s;
}
.megamenu > li:hover {
	transition: all .25s;
	background-color: #3D3D3D;
}
.megamenu > li a {
	color: #fff;
	text-decoration: none;
	font-size: min(1.1vw,14px);/*（基本サイズ、最大サイズ）*/
	padding-left: 22px;
	padding-right: 22px;
	letter-spacing: 0.01em;
	align-items: center;
	display: flex;
	transition: all 0.25s;
}
.megamenu .menu_box .acd_content {
	background-color: #3D3D3D;
	width: auto;
	max-width: 91vw;
	right: 4.5%;
	display: none;
	position: fixed;
	top: 75px;
	z-index: 100;
	padding-top: 45px;
	padding-bottom: 45px;
	padding-left: 0;
	padding-right: 0;
	border-radius: 8px;
	height: auto;
	margin: 0;
}
.megamenu .menu_box .acd_content .menu_title {
	width: 25vw;
}
.megamenu .menu_box .acd_content .menu_title p {
	font-size: min(2vw,26px);/*（基本サイズ、最大サイズ）*/
	font-weight: bold;
	line-height: 1.7;
	padding-right: 15%;
	color: #FFFFFF;
}
.megamenu .menu_box .acd_content .menu_title p span {
	font-size: min(1.2vw,14px);/*（基本サイズ、最大サイズ）*/
	font-weight: normal;
	margin-top: 10px;
	display: inline-block;
	color: #FFFFFF;
}
.megamenu .menu_box .acd_content .flex {
	display: flex;
	justify-content: space-between;
	width: 93%;
	margin-left: auto;
	margin-right: auto;
}
.megamenu .menu_box .acd_content .inner_box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 58vw;
	padding-left: 4.5%;
	border-left: 2px solid #6D6D6D;
}
.megamenu .menu_box a {
	text-decoration: none;
}
.megamenu .menu_box .init-bottom {
	height: 75px;
	font-weight: bold;
}
.megamenu .menu_box .acd_content .inner_box::after {
	content: "";
	display: block;
	width: 15.7vw
}
.megamenu .menu_box .acd_content li {
	width: 15.7vw;
	list-style-type: none;
	padding: 0;
	text-decoration: none;
	display: block;
}
.megamenu .menu_box .acd_content .four li {
	width: 11.6vw;
}
.megamenu .menu_box .acd_content li:nth-of-type(n+4) {
	margin-top:25px;
}
.megamenu .menu_box .acd_content .four li:nth-of-type(n+4) {
	margin-top:0px;
}
.megamenu .menu_box .acd_content .four li:nth-of-type(n+5) {
	margin-top:25px;
}
.megamenu .menu_box .acd_content a {
	margin: 0;
	padding-left: 0px;
	padding-right: 0px;
	transition: all 0.3s;
	display: block;
}
.megamenu .acd_content .menu_img {
	width: 100%;
	height: 6.8vw;
	overflow: hidden;
	border: 1px solid #FFFFFF;
	box-sizing: border-box;
	border-radius: 6px;
	position: relative;
}
.megamenu .acd_content .four .menu_img {
	height: 5.5vw;
}
.megamenu .acd_content .menu_img .inner_img {
	width: 100%;
	height: 8.5vw;
	transition: all 0.3s;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
.megamenu .menu_box .acd_content a:hover .inner_img {
	transform: scale(1.1,1.1);
}
.megamenu .acd_content a p {
	font-size: min(1vw,14px);/*（基本サイズ、最大サイズ）*/
	display: inline-block;
	color: #151515;
	letter-spacing: 0.04em;
	position: absolute;
	top: 50%;
	left: 0%;
	transform: translateY(-50%);
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 10px;
	padding-right: 12px;
	background-color: rgba(255,255,255,0.80);
	font-weight: bold;
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
	line-height: 1.4;
	max-width: 85%;
}
.megamenu .acd_content a span {
	font-size: 11px;
	display: inline-block;
	color: #FFF;
	letter-spacing: 0.04em;
	position: absolute;
	top: 0%;
	left: 0%;
	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 6px;
	padding-right: 6px;
	background-color: #FD5F00;
	border-bottom-right-radius: 6px;
	line-height: 1.4;
}
header .container {
	width: 91%;
}
header .headA {
	margin-top: 4px;
	z-index: 100;
}
header .headA p {
	line-height: 1.6;
	margin-left: 10px;
}


.megamenu .menu_img .web_menu_A {
	background-image: url(menu_img/web_menu_A.jpg);
}
.megamenu .menu_img .web_menu_B {
	background-image: url(menu_img/web_menu_B.jpg);
}
.megamenu .menu_img .web_menu_C {
	background-image: url(menu_img/web_menu_C.jpg);
}
.megamenu .menu_img .web_menu_D {
	background-image: url(menu_img/web_menu_D.jpg);
}
.megamenu .menu_img .web_menu_E {
	background-image: url(menu_img/web_menu_E.jpg);
}
.megamenu .menu_img .web_menu_F {
	background-image: url(menu_img/web_menu_F.jpg);
}
.megamenu .menu_img .web_menu_G {
	background-image: url(menu_img/web_menu_G.jpg);
}
.megamenu .menu_img .web_menu_H {
	background-image: url(menu_img/web_menu_H.jpg);
}

.megamenu .menu_img .service_menu_A {
	background-image: url(menu_img/service_menu_A.jpg);
}
.megamenu .menu_img .service_menu_B {
	background-image: url(menu_img/service_menu_B.jpg);
}
.megamenu .menu_img .service_menu_C {
	background-image: url(menu_img/service_menu_C.jpg);
}

.megamenu .menu_img .column_menu_A {
	background-image: url(menu_img/column_menu_A.jpg);
}
.megamenu .menu_img .column_menu_B {
	background-image: url(menu_img/column_menu_B.jpg);
}
.megamenu .menu_img .column_menu_C {
	background-image: url(menu_img/column_menu_C.jpg);
}

.megamenu .menu_img .chiro_menu_A {
	background-image: url(menu_img/chiro_menu_A.jpg);
}
.megamenu .menu_img .chiro_menu_B {
	background-image: url(menu_img/chiro_menu_B.jpg);
}
.megamenu .menu_img .chiro_menu_C {
	background-image: url(menu_img/chiro_menu_C.jpg);
}
.megamenu .menu_img .chiro_menu_D {
	background-image: url(menu_img/chiro_menu_D.jpg);
}
.megamenu .menu_img .chiro_menu_E {
	background-image: url(menu_img/chiro_menu_E.jpg);
}
.megamenu .menu_img .chiro_menu_F {
	background-image: url(menu_img/chiro_menu_F.jpg);
}
.megamenu .menu_img .chiro_menu_G {
	background-image: url(menu_img/chiro_menu_G.jpg);
}
.megamenu .menu_img .chiro_menu_H {
	background-image: url(menu_img/chiro_menu_H.jpg);
}
.megamenu .menu_img .chiro_menu_I {
	background-image: url(menu_img/chiro_menu_I.jpg);
}
.megamenu .menu_img .chiro_menu_J {
	background-image: url(menu_img/chiro_menu_J.jpg);
}
.megamenu .menu_img .chiro_menu_K {
	background-image: url(menu_img/chiro_menu_K.jpg);
}

.megamenu .menu_img .lp_menu_A {
	background-image: url(menu_img/lp_menu_A.jpg);
}
.megamenu .menu_img .lp_menu_B {
	background-image: url(menu_img/lp_menu_B.jpg);
}
.megamenu .menu_img .lp_menu_C {
	background-image: url(menu_img/lp_menu_C.jpg);
}
.megamenu .menu_img .lp_menu_D {
	background-image: url(menu_img/lp_menu_D.jpg);
}
.megamenu .menu_img .lp_menu_E {
	background-image: url(menu_img/lp_menu_E.jpg);
}
.megamenu .menu_img .lp_menu_F {
	background-image: url(menu_img/lp_menu_F.jpg);
}
.megamenu .menu_img .lp_menu_G {
	background-image: url(menu_img/lp_menu_G.jpg);
}
.megamenu .menu_img .lp_menu_H {
	background-image: url(menu_img/lp_menu_H.jpg);
}
.megamenu .menu_img .lp_menu_I {
	background-image: url(menu_img/lp_menu_I.jpg);
}





/*--↓ ハンバーガーメニュースタイル ↓--*/

header .phone_menu {
	width: 230px;
	padding-top: 90px;
	padding-left: 60px;
	padding-right: 100px;
}
/*ハンバーガーボタン*/
.menu-trigger {
	width: 90px;
	height: 65px;
	transition: all 0.3s;
	margin-right: -28px;
}
.menu-trigger:hover {
	opacity: 0.7;
}
.menu-trigger span{
	right: 27px;
}
.menu-trigger span:nth-of-type(1) {
	top:21px; 
	width: 45%;
}
.menu-trigger span:nth-of-type(2) {
	top:32px;
	width: 35%;
}
.menu-trigger span:nth-of-type(3) {
	top:44px;
	width: 20%;
}
/*activeクラスが付与されると線が回転して×になる*/
.menu-trigger.active span:nth-of-type(1) {
	top: 28px;
	right: 28px;
	width: 35%;
}
.menu-trigger.active span:nth-of-type(3){
	top: 40px;
	right: 28px;
	width: 35%;
}











































}
