@charset "utf-8";
/***** 全体 *****/
#wrapper {
	width: 1100px;
	margin-inline: auto;
	background-color: #fff;
	box-shadow: 10px 0px 10px -10px rgba(0, 0, 0, 0.2), -10px 0px 10px -10px rgba(0, 0, 0, 0.2);
	display: flex;
	justify-content: space-between;
}

.l-wrap__r {
	width: 820px;
	order: 2;
}

.l-wrap__l {
	width: 280px;
	order: 1;
	background-color: #000;
}

@media screen and (max-width: 768px) {
	#wrapper {
		width: 100%;
		display: block;
		margin-top: 60px;
	}
	
	.l-wrap__r,
	.l-wrap__l {
		width: 100%;
	}
}

/***** header *****/
.l-header {
	text-align: center;
	padding: 2rem 3rem;
}

.l-header__ttl a {
	display: flex;
	flex-direction: column;
	align-items: baseline;
	text-decoration: none;
	font-size: 4.2rem;
	font-weight: 700;
	color: #000;
	line-height: 1.2;
}

.l-header__sub {
	font-size: 2.5rem;
	color: var(--sub-color);
	font-weight: 600;
	letter-spacing: -0.01em;
}

@media screen and (min-width:410px) and ( max-width:768px) {
	.l-header {
		background-color: var(--base-color);
	}
	
	.l-header__ttl a {
		font-size: clamp(1.8rem,4.4vw,2.2rem);
	}
	
	.l-header__sub {
		font-size: clamp(1.4rem,3.4vw,1.6rem);
	}
}

@media screen and (max-width: 409px) {
	.l-header {
		background-color: var(--base-color);
	}
	.l-header__ttl a {
		font-size: 1.8rem;
	}
	
	.l-header__sub {
		font-size: 1.4rem;
	}
}

@media screen and (max-width: 768px) {
	.l-header {
		width: 100%;
		height: 60px;
		padding: 1rem 1.6rem;
		text-align: left;
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 99;
		background-color: var(--base-color);
	}
}

/***** nav *****/
.l-gnav__list li a {
	text-decoration: none;
	color: #fff;
	font-weight: 500;
	width: 100%;
	display: block;
	padding: 1.6rem;
	border-bottom: 2px solid var(--base-color);
	transition: 0.5s;
}

.l-gnav__comment {
	display: table;
	padding: 1rem;
	margin-bottom: 2rem;
	font-size: 1.4rem;
	border: 2px solid var(--base-color);
	color: var(--base-color);
	position: relative;
}

.l-gnav__comment:before {
	position: absolute;
	top: 100%;
	left: 50px;
	transform: skew(-25deg);
	height: 15px;
	width: 15px;
	border-right: 2px solid var(--base-color);
	background-color: #000;
	content: "";
	transition: 0.5s;
}

.l-gnav__list li a:hover .l-gnav__comment:before {
	background-color: #32301d;
}

.l-gnav__list .focus a {
	color: var(--base-color);
}

.l-gnav__list li a:hover {
	background-color: rgba(255, 237, 140, 0.2);
	color: var(--base-color);
}

@media screen and (max-width: 768px) {
	.l-gnav {
		width: 100%;
		height: 100%;
		overflow: auto;
		padding-top: 60px;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 10;
		background-color: #000;
		transform: translate(100%);
		transition: all .5s;
	}
	
	.l-gnav.open {
		transform: translateZ(0);
	}
	
	.l-gnav__list li:last-child a {
		border: none;
	}
}

/* ハンバーガーボタン */
@media screen and (max-width:768px) {
  .c-menu__btn {
    position: fixed;
    z-index: 999;
    right: 10px;
    transition: .3s;
    cursor: pointer;
    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: var(--sub-color);
    transition: all .2s;
  }
  .c-menu__trigger span:nth-last-of-type(1) {
    top: 0;
  }
  .c-menu__trigger span:nth-last-of-type(2) {
    width: 70%;
    top: 8px;
  }
  .c-menu__trigger span:nth-last-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: #000;
	color: #fff;
	border-top: 2px solid var(--base-color);
	min-width: 1100px;
	padding: 0 1.6rem;
}

.l-footer__container {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 5rem 0;
}

.l-footer__item {
	font-size: 1.4rem;
}

.l-footer__item dt {
	font-size: 1.6rem;
	font-weight: 500;
	border-bottom: 2px solid #fff;
	display: inline-block;
	margin-bottom: 1.6rem;
	padding-bottom: 0.2rem;
}

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

.l-footer__nav {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 1.6rem 0;
	margin-bottom: 2.4rem;
}

.l-footer__nav a {
	text-decoration: none;
	color: rgba(255,255,255,.6);
	transition: 0.5s;
}

.l-footer__nav a:hover {
	color: rgba(255,255,255,.8);
}

.l-footer__nav li:not(:first-child) a {
	padding-left: 2em;
	border-left: 2px solid rgba(255,255,255,.6);
}

.l-footer__nav li:not(:last-child) a {
	padding-right: 2em;
}

.l-footer__copy {
	text-align: right;
	font-size: 1.2rem;
	margin-top: 2.4rem;
	color: #a58d08;
}

@media screen and (max-width: 768px) {
	.l-footer {
		min-width: auto;
		padding: 0;
	}
	
	.l-footer__container {
		padding: 3.2rem 1.6rem;
	}
	
	.l-footer__nav {
		flex-direction: column;
		align-items: flex-start;
		font-size: 1.4rem;
		gap: 1rem 0;
	}
	
	.l-footer__nav li:not(:first-child) a {
		padding: 0;
		border: none;
	}
}