@charset "utf-8";
/***** 全体 *****/
#wrapper {
	max-width: 1230px;
	margin-inline: auto;
	padding: 0 1.5rem 6rem;
}

@media screen and (max-width:768px){
	#wrapper {
		width: 100%;
		padding: 0 0 3rem;
	}
}

/***** header *****/
.l-header {
	display: flex;
	justify-content: center;
	padding: 2rem 1.5rem;
	position: relative;
}

.l-header__ttl {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.l-header__ttl a {
	display: flex;
	gap: 2rem;
}

.l-header__ttl img {
	max-width: 36vw;
	max-height: 120px;
}

.l-header__ttl a img:last-child {
	max-width: 8vw;
}

.l-header__ttl img.l-header__logo {
	max-width: 13vw;
	max-height: 80px;
}

@media screen and (max-width:1100px){
	.l-header {
		height: 70px;
		padding: 1.5rem;
		justify-content: space-between;
		align-items: center;
		position: sticky;
		top: 0;
		z-index: 99;
		background-color: #fff;
		border-bottom: 2px solid var(--base-color);
	}
	
	.l-header__ttl {
		gap: 1rem;
	}
	
	.l-header__ttl a {
		gap: 0.5rem;
	}
	
	.l-header__ttl img {
		max-width: none;
		max-height: 40px;
	}
	
	.l-header__ttl a img:last-child {
		max-width: none;
	}
	
	.l-header__ttl img.l-header__logo {
		max-width: none;
		max-height: 30px;
	}
}

/***** nav *****/
.l-gnav {
	background-color: var(--sub-color);
	height: 70px;
}

.l-gnav__list {
	height: 100%;
	display: grid;
	grid-auto-columns: 1fr;
	grid-auto-flow: column;
	max-width: 1500px;
	margin-inline: auto;
}

.l-gnav a {
	height: 100%;
	color: #fff;
	text-decoration: none;
	font-size: clamp(1rem,1vw,1.4rem);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 1rem;
	border-right: 1px solid #fff;
	transition: 0.3s;
}

.l-gnav a:hover,
.l-gnav a.focus {
	background-color: var(--sub-color02);
}

.l-gnav__list li {
	position: relative;
}

.l-gnav__list li:nth-child(9) a {
	padding-right: 2.5rem;
}

.l-gnav__list li:nth-child(9) a::before,
.l-gnav__list li:nth-child(9) a::after {
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	bottom: 0;
	width: 12px;
	height: 2px;
	margin: auto 1rem auto auto;
	background: #fff;
}

.l-gnav__list li:nth-child(9) a::after {
	transform:rotate(-90deg);
	transition:transform 0.3s;
}

.l-gnav__list li:nth-child(9):hover a::after {
	transform: rotate(0deg);
}

.l-gnav li:last-child a {
	border: none;
}

.l-gnav__sublist {
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s;
	width: 250px;
	position: absolute;
	left: 0;
	top: 70px;
	background-color: var(--sub-color);
	z-index: 1;
}

.l-gnav__list li:nth-child(9) .l-gnav__sublist a::before,
.l-gnav__list li:nth-child(9) .l-gnav__sublist a::after {
	content: none;
}

.l-gnav__list li:nth-child(9) .l-gnav__sublist a {
	padding: 1.5rem;
	border-right: none;
	border-bottom: 1px solid #fff;
	justify-content: flex-start;
}

.l-gnav__list li:nth-child(9) .l-gnav__sublist li:last-child a {
	border: none;
}

.l-gnav__list li:nth-child(9):hover .l-gnav__sublist {
	visibility: visible;
	opacity: 1;
}

.c-lang-btn {
	position: absolute;
	top: 2rem;
	right: 1.5rem;
}

.c-lang-btn__sp {
	display: none;
}

.c-lang-btn a {
	text-decoration: none;
	text-align: center;
	color: #fff;
	display: block;
	background-color: var(--sub-color);
	width: 10vw;
	line-height: 55px;
	box-shadow: 4px 4px 0px var(--sub-color02);
	border-radius: 100px;
	transition: 0.3s;
}

.c-lang-btn a:hover {
	box-shadow: unset;
	transform: translate(3px,3px);
}

@media screen and (max-width:1100px){
	.l-gnav__list {
		display: block;
	}
	
	.l-gnav a {
		border-right: none;
		border-bottom: 1px solid #fff;
		justify-content: flex-start;
		padding: 1.5rem 1rem;
		font-size: 1.6rem;
	}
	
	.l-gnav li:last-child a {
		border-bottom: 1px solid #fff;
	}
	
	.l-gnav__sublist {
		visibility: visible;
		opacity: 1;
		position: static;
		width: 100%;
		background-color: #18183e;
	}
	
	.l-gnav__list li:nth-child(9) .l-gnav__sublist li:last-child a {
		border-bottom: 1px solid #fff;
	}
	
	.l-gnav__list li:nth-child(9) .l-gnav__sublist a {
		padding-left: 2.5rem;
	}
	
	.l-gnav__list li:nth-child(9) a {
		padding-right: 1.5rem;
		border-bottom: none;
	}
	
	.l-gnav__list li:nth-child(9) a::before, .l-gnav__list li:nth-child(9) a::after {
		content: none;
	}
	
	.c-lang-btn {
		display: none;
	}
	
	.c-lang-btn__sp {
		display: block;
		margin: 1.5rem;
	}
	
	.c-lang-btn__sp li a,
	.c-lang-btn__sp li:last-child a {
		border: none;
	}
	
	.c-lang-btn__sp li a {
		justify-content: center;
		box-shadow: 4px 4px 0px var(--sub-color02);
		border-radius: 100px;
		background-color: #fff;
		color: var(--sub-color);
		font-weight: 500;
	}
}

/* ハンバーガーメニュー */
@media screen and (max-width:1100px){
	.l-gnav {
		width: 100%;
		height: 100%;
		overflow: auto;
		padding-top: 70px;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 10;
		transform: translate(100%);
		transition: all .5s;
		border: none;
	}
	
	.l-gnav.open {
		transform: translateZ(0);
	}
	
	.c-menu__btn {
		transition: all .5s;
		cursor: pointer;
		z-index: 999;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.c-menu__trigger {
		width: 18px;
		height: 18px;
		position: relative;
	}
	
	.c-menu__trigger span {
		display: inline-block;
		box-sizing: border-box;
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: var(--sub-color);
		transition: all .2s;
	}
	
	.c-menu__trigger span:nth-of-type(1) {
		top: 0;
	}
	
	.c-menu__trigger span:nth-of-type(2) {
		width: 70%;
		top: 8px;
	}
	
	.c-menu__trigger span:nth-of-type(3) {
		bottom: 0;
	}
	
	.c-menu__btn.active .c-menu__trigger span:nth-of-type(1) {
		transform: translateY(8px) rotate(-45deg);
	}
	
	.c-menu__btn.active .c-menu__trigger span:nth-of-type(2) {
		opacity: 0;
	}
	
	.c-menu__btn.active .c-menu__trigger span:nth-of-type(3) {
		transform: translateY(-8px) rotate(45deg);
	}
}

/***** footer *****/
.l-footer {
	background-color: var(--sub-color);
	color: #fff;
	font-size: 1.4rem;
}

.l-footer__container {
	max-width: 1200px;
	margin-inline: auto;
	padding: 4rem 1.5rem;
}

.l-footer__item {
	display: flex;
	gap: 2rem;
}

.l-footer__item dt {
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	border: 1px solid #fff;
	padding: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 12rem;
}

.l-footer a {
	color: #fff;
}

.l-footer__copy {
	text-align: center;
	font-size: 1.2rem;
	padding: 1.5rem;
	border-top: 1px solid #fff;
}

@media screen and (max-width:768px){
	.l-footer__container {
		padding: 3rem 1.5rem;
	}
	
	.l-footer__item {
		flex-direction: column;
		gap: 1rem;
	}
	
	.l-footer__item dt {
		padding: 8px;
		justify-content: center;
	}
}