@charset "utf-8";

/* -----------------------------------------------------------
    menu-box
-------------------------------------------------------------- */
.menu-area {
	position: relative;
	/*margin: 30px 0 0;*/
	z-index: 11;
    height: 80px;
}

#menu-box .menu-nav {
	box-shadow: 0 3px 20px 0 rgba(0,0,0,.08);
	height: 80px;
	overflow: hidden;
	/*background: var(--khaki);*/
    background: #f9f9f9;
}

@media screen and (min-width: 769px) {
	
	#menu-box .menu-nav {
		display: block!important;
	}
}

#menu-box {
	position: absolute;
	left: 0;
	right: 0;
}

#menu-box.menu-fix {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 16;
	width: 100%;
}

#menu-box .menu-inner {
	display: flex;
	justify-content: center;
	min-width: 1100px;
	max-width: 1400px;
	margin: 0 auto;
	height: 100%;
    width: 90%;
    
}

#menu-box .menu-list li {
	flex-shrink: 0;
	height: 100%;
    flex-grow: 1;
}

#menu-box .menu-list {
	align-items: center;
	display: flex;
	justify-content: space-between;
    min-width: 1100px;
    max-width: 1400px;
    width: 100%;
}

#menu-box .menu-list a{
	align-items: center;
	display: flex;
	font-weight: bold;
	height: 100%;
	justify-content: center;
	letter-spacing: .07em;
	transition: .3s;
	width: 100%;
	padding: 0 3% 20px;
    position: relative;
}

#menu-box .menu-list li:not(:first-child) a::before {
    position: absolute;
	content: "";
	display: block;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	width: 1px;
	height: 40px;
	background: #ddd;
	transition: .5s;
}

#menu-box .menu-list .menu-cv a {
    background: var(--cv-bg);
    color: var(--navy);
    padding: 0 3%;
    position: relative;
    background-position: 100%!important;
    background-size: 200% auto!important;
}

#menu-box .menu-list .menu-cv a::before {
    display: none!important;
}

#menu-box .menu-list .menu-cv a i {
    margin-left: 5px;
}

#menu-box .menu-list .menu-cv a:hover {
    color: var(--navy);
    background: var(--cv-bg);
    background-position: 0!important;
}

#menu-box .menu-list .cmn-arrow {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    letter-spacing: 0;
    border-color: var(--base);
}

#menu-box .menu-list .cmn-arrow i {
    font-size: 1.0rem;
    color: var(--base);
    transition: all .3s;
}

@media screen and (min-width: 769px) {
	#menu-box .menu-list a:hover {
		background: var(--green);
		color: #fff;
	}
    
    #menu-box .menu-list a:hover .cmn-arrow {
        transform: translate(-50%,5px);
        border-color: #fff;
    }
    
    #menu-box .menu-list a:hover .cmn-arrow i {
        color: #fff;
    }
    
    #menu-box .menu-list li a:hover::before {
        display: none;
    }
    
}

#menu-box .menu-list span {
	/*color: #fff;*/
	position: relative;
	transition: .3s;
	line-height: 1.4;
	letter-spacing: .05em;
	/*
	padding: 0 20px 0 0;
	*/
}

#menu-box .menu-form {
	margin: 0 0 0 0;
}

#menu-box .menu-cv {
	align-items: center;
	display: flex;
	/*margin: 0 0 0 20px;*/
}

#menu-box .menu-form a {
	display: flex;
	flex-wrap: wrap;
	color: #fff;
	font-weight: bold;
	line-height: 1.5;
	gap: 5px;
	align-items: center;
	align-content: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	z-index: 2;
	padding: 0 30px;
	background: var(--cv-recruit);
	height: 80px;
}

@media screen and (min-width: 769px) and (max-width: 1400px) {
	#menu-box .menu-form a {
		padding: 0 20px;
		font-size: 1.5rem;
	}
}

/*#menu-box .menu-form a::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	content: '';
	background: #1081CC;
	transform-origin: left bottom;
	transform: scale(0, 1);
	transition: all .15s ease-in;
}*/

#menu-box .menu-form a::before {
    content: "";
    display: block;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 100%;
    height: 0;
    z-index: -1;
    transform: translateY(-50%) scale(0.1);
    /*transition-delay: 0s, .4s;*/
    /*transition: 0.4s cubic-bezier(.77,0,.18,1);*/
	transition: all .4s ease-out;
	background: #1081CC;
}

/*#menu-box .menu-form a:hover::before {
	transform-origin: left bottom;
	transform: scale(1, 1);
}*/

#menu-box .menu-form a:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    transition-delay: 0s;
    transition: opacity .8s, transform .8s ease-in-out;
    transition-timing-function: cubic-bezier(.19,1,.22,1);
}

#menu-box .menu-form a:hover {
	color: #fff;
}

#menu-box .menu-form span {
	position: relative;
	z-index: 2;
	line-height: 1.3;
	letter-spacing: .05em;
	text-align: left;
	font-size: 1.8rem;
	font-weight: bold;
}

#menu-box .menu-form span::before {
	content: "";
	position: absolute;
	top: 48%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	width: 40px;
  	height: 25px;
}

@media screen and (min-width: 769px) and (max-width: 1400px) {
	#menu-box .menu-form span::before {
		width: 23px;
		height: 23px;
	}
}

#menu-box .menu-form img {
	width: 30px;
	position: relative;
	z-index: 1;
}

#menu-box .menu-tel {
	color: #887a65;
	text-align: center;
	width: 200px;
	line-height: 1;
	align-items: center;
	display: flex;
	flex-direction: column;
}

#menu-box .menu-tel a {
	color:#887a65;
	position: relative;
	padding: 0 0 0 21px;
	width: fit-content;
	display: flex;
	align-items: center;
}

#menu-box .menu-tel a::before {
	position: absolute;
	content: "\f879";
	display: block;
	top: 3px;
	left: 0;
	font: 900 1.4rem / 1 'Font Awesome 5 Free';
	transform: scaleX(-1);
	color: #887a65;
	line-height: 1;
}

#menu-box .menu-tel-num {
	font-size: 1.7rem;
	font-weight: bold;
}

#menu-box .menu-tel-time {
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: .07em;
	padding: 3px 0 0 0;
}

@media screen and (max-width: 768px) {
	
	.menu-area {
        height: 50px;
	}
	
	#menu-box .menu-list span {
        display: contents;
	}
	/*
	#menu-box .menu-list span::before {
		color: var(--green);
		left: 0;
		right: initial;
	}
	*/
	/*#menu-box .menu-list span::before {
		content: "\f105";
		width: auto;
		height: auto;
		background: none;
		color: var(--green);
		left: 0;
		right: initial;
        position: absolute;
        top: 0;
	}*/
    
    #menu-box .menu-list .cmn-arrow {
        position: absolute;
        bottom: initial;
        top: 15px;
        right: 20px;
        left: initial;
        transform: none;
        width: 20px;
        height: 20px;
        letter-spacing: 0;
        border-color: var(--base);
        padding: 0;
        display: flex;
    }
	
	
	#menu-box {
		box-shadow: none;
		width: 100%;
        height: 50px;
	}
	
	#menu-box .menu-inner {
		display: block;
		min-width: unset;
		max-width: unset;
		margin: 0 auto;
        width: 100%;
	}

	#menu-box .menu-nav {
		display: none;
		height: auto;
		position: relative;
		z-index: 16;
		background: #f6f6f6;
	}

	#menu-box .menu-nav ul {
		padding: 10px;
		display: block;
        min-width: initial;
        max-width: initial;
	}

	#menu-box .menu-nav ul li {
		display: block;
		margin: 0;
		text-align: left;
		width: 100%;
		font-size: 1.6rem;
		max-width: unset;
	}
	
	#menu-box .menu-nav ul .top {
		display: block;
	}
	
	#menu-box .menu-list a {
		font-size: 1.6rem;
		height: auto;
		display: block;
		border-bottom: #DDE5CC solid 1px;
		position: relative;
		padding: 13px 0;
	}
    
    #menu-box .menu-list li:not(:first-child) a::before {
        display: none;
    }
	
	#menu-box .menu-nav ul li:last-child a {
		border-bottom: none;
	}
	
	#menu-box .menu-cv {
		display: none;
	}
	
	#menu-box .menu-nav ul .menu-form a {
		height: 60px;
		padding: 15px 20px 15px 10px;
		width: 100%;
	}

	#menu-box .menu-nav ul li a:hover,
	#menu-box .menu-nav ul .menu-form a:hover{
		color: #231815;
	}
	
	#menu-box .menu-nav ul .menu-form img {
		margin: 0;
		width: 22px;
	}

}

/* -----------------------------------------------------------
    more_btn
-------------------------------------------------------------- */
.more_btn02 {
	position: relative;
}

@media screen and (min-width:769px){
	.more_btn02 {
		display: none;
	}
}

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

	.more_btn02 {
		padding: 0;
		display: flex;
		/*width: 100%;*/
        height: 100%;
		background: var(--green03);
        flex-grow: 1;
	}
	
	.menu-fix#menu-box {
		box-shadow: 0px 3px 10px -5px rgba(0, 0, 0, .3);
	}
	
	.btn02-txt-wrap {
		display: flex;
		align-items: center;
		gap: 10px;
		position: relative;
		/*width: calc( 100% - 180px );*/
		padding-left: 20px;
        width: 100%;
	}
	
	.more_btn02 .accordion-icon,
	.more_btn02 .accordion-icon span {
		display: inline-block;
		transition: all .3s;
		box-sizing: border-box;
	}
	.more_btn02  .accordion-icon {
		position: absolute;
		width: 20px;
		height: 20px;
		top: 50%;
		transform: translateY(-50%);
		right: 20px;
	}
	.more_btn02  .accordion-icon span {
		position: absolute;
		width: 100%;
		height: 1px;
		background-color: #fff;
	}

	.more_btn02 .accordion-icon span:nth-of-type(1) {
		top: 7px;
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	.more_btn02.open .accordion-icon span:nth-of-type(1){
		display: none;
	}
	.more_btn02 .accordion-icon span:nth-of-type(2) {
		top: 7px;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}
	.more_btn02.open .accordion-icon span:nth-of-type(2){
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}

	.more_btn02 .more-btn02-txt{
		position: relative;
		font: 400 1.6rem / 1 var(--en);
		color: #fff;
		font-weight: bold;
	}
	
	.more_btn02 .menu-cv-sp {
		align-items: center;
		/*position: absolute;
		right: 0;
		top: 0;*/
		display: flex;
		justify-content: center;
		height: 100%;
		width: 180px;
	}
	
	.more_btn02 .menu-cv-sp a {
		align-items: center;
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		padding: 20px 0 20px 15px;
	}
	
	.more_btn02 .menu-cv-sp a:first-child {
		background: var(--cv-recruit);
	}
	
	.more_btn02 .menu-cv-sp img {
		width: 27px;
	}
	
	.more_btn02 .menu-cv-sp span {
		line-height: 1.3;
		font-weight: bold;
		color: #fff;
		position: relative;
	}
	
	.more_btn02 .menu-cv-sp i {
		color: #fff;
		display: inline-block;
		margin-right: 5px;
	}
	
	.more_btn02 .menu-cv-sp span::before {
		content: "";
		position: absolute;
		top: 48%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		left: -40px;
		width: 40px;
		height: 25px;
	}
	
	.menu-nav {
		z-index: 5;
		overflow-y: scroll;
		width:100%;
		height:100%;
		-webkit-overflow-scrolling: touch;
		padding: 0 0 10px;
	}
    
    #menu-box .menu-list .menu-cv a {
        padding: 20px 8px;
        text-align: center;
        border-radius: 40px;
        margin-top: 20px;
    }
	
}

/* -----------------------------
	〇〇〇
-------------------------------- */

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