@charset "UTF-8";
/* CSS Document */
.header1{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 4.16vw 20px;
}
.header1 .head_logo{
	max-width: 270px;
}
.header1 .head_logo:hover{
	opacity: 0.8;
}
.header1 .menu{
	display: flex;
	gap:24px;
	flex-wrap: wrap;
	align-items: center;
	margin-right: 20px;
}

/*検索*/
.header1 .menu .search {
	position: relative;
	width: 260px;
}
.header1 .menu .search form {
	position: relative;
}
.header1 .menu .search form input {
	width: 100%;
	padding: 10px 35px 10px 20px;
	font-size: 1.4rem;
	border-radius: 5px;
	background: #F1F1F1;
	border: none;
}
.header1 .menu .search form button {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0;
	margin: 0;
	height: 100%;
	aspect-ratio: 1;
	font-size: 0;
	opacity: 0;
	cursor: pointer;
}
.header1 .menu .search svg {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	color: #000;
}

.header1 .menu .language,.header1 .menu a{
	font-size: 1.4rem;
	font-weight: 400;
	color: #333;
	position: relative;
}
.header1 .menu .language > p{
	position: relative;
	cursor: pointer;
	padding-right: 20px;
}
.header1 .menu .language > p::after{
	content: "";
	width: 20px;
	height: 20px;
	background: url("../img/common/group.svg");
	background-size: 100%;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(10px,-50%);
}
.header1 .menu .language .lang_select{
	position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    border: solid 1px #557EC0;
    transform: translate(-7px, 22px);
    width: 100%; 
	border-radius: 3px;
	text-align: center;
	padding: 9px;
	z-index: 9;
	display: none;
}
.header1 .menu .language .lang_select a{
	display: inline-block;
	font-size: 1.4rem;
	margin-bottom: 4px;
}
.header1 .menu .language .lang_select a:hover{
	opacity: 0.8;
}
.header1 .menu .language .lang_select a:last-child{
	margin-bottom: 0px;
}
.header1 .menu a.cmp_link{
	position: relative;
}
.header1 .menu a.cmp_link::after{
	content: "";
	width: 19px;
	height: 19px;
	background: url("../img/common/back-right.svg");
	background-size: 100%;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(21px, -50%);
}
.header1 .menu_btn{
	display: none;
}
/* ハンバーガーボタン */
.header1 .menu_btn {
  width: 40px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.header1 .menu_btn span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #557EC0;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transition: all 0.4s ease;
}

.header1 .menu_btn span:nth-child(1) { top: 0; }
.header1 .menu_btn span:nth-child(2) { top: 10px; }
.header1 .menu_btn span:nth-child(3) { top: 20px; }

/* クリック時（×） */
.header1 .menu_btn.active span:nth-child(1) {
  transform: rotate(25deg);
  top: 10px;
}
.header1 .menu_btn.active span:nth-child(2) {
  opacity: 0;
}
.header1 .menu_btn.active span:nth-child(3) {
  transform: rotate(-25deg);
  top: 10px;
}
header .pc{
	display: block;
}
header .sp{
	display: none;
}
@media only screen and (max-width: 822px) {
	header .pc{
		display: none;
	}
	header .sp{
		display: block;
	}
	.header1{
		padding-bottom: 0px;
	}
	.header1 .head_logo{
		max-width: 200px;
	}
	.header1 .menu_btn{
		display: block;
	}
	.header1 .menu,.header1 .menu .cmp_link{
		display: none;
	}
}
