@charset "utf-8";
/***** 全体 *****/
#wrapper {
	padding-top: 85px;
}

@media screen and (max-width: 768px){
	#wrapper {
		padding-top: 60px;
	}
}

/***** header *****/
.l-header {
	width: 100%;
	height: 85px;
	padding: 15px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	background: #fff;
}

.l-header__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.l-header__ttl img {
	height: 4.5rem;
}

.l-header__lang {
	position: relative;
	display: inline-block;
	margin-right: 3rem;
}

.l-header__lang-text {
	display: flex;
	align-items: center;
	padding: 1.2rem 4rem 1.2rem 2.2rem;
	border: 1px solid #ccc;
	font-size: 1.5rem;
	text-decoration: none;
	cursor: pointer;
	position: relative;
	width: 100%;
	transition: .5s;
}

.c-lang-icon {
	margin-right: 0.5rem;
	width: 2rem;
	height: 2rem;
	background: url("../images/icon_lang.svg") 100% 50% no-repeat;
	background-size: contain;
}

.l-header__lang-text::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2.2rem;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 9px solid #111;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-bottom: 0 solid transparent;
  transform: translateY(1px);
  box-sizing: border-box;
}

.l-header__lang-list.show {
	display: block;
}

.l-header__lang-list {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 1010;
	width: 100%;
	font-size: 1.5rem;
	text-align: center;
	background-color: #fff;
	border: 1px solid #ccc;
}

.l-header__lang-list li {
	padding: 1rem 1.5rem;
	border-top: 1px solid #ccc;
}

.l-header__lang-list li:first-child {
	border: none;
}

.l-header__lang-list li a {
	text-decoration: none;
	color: #111;
}

@media screen and (max-width: 768px){
	.l-header {
		height: 60px;
		padding: 1rem 1.5rem;
	}
	
	.l-header__ttl {
		max-width: 164px;
		padding: 1rem 0;
		margin: 0;
	}
	
	.l-header__ttl a {
		display: block;
	}
	
	.l-header__ttl img {
		width: auto;
		height: auto;
		max-height: 3.5rem;
		display: block;
	}
	
	.l-header__lang-text {
		font-size: 0;
		padding: 0;
		border: none;
	}
	
	.l-header__lang-text::after {
		content: none;
	}
	
	.l-header__lang {
		margin-right: 1rem;
	}
	
	.c-lang-icon {
		width: 3.5rem;
		height: 3.5rem;
		margin: 0;
	}
	
	.l-header__lang-list.show {
		width: 120px;
		margin-top: 1.2rem;
	}
}

/* nav */
.l-header__nav-container {
	width: 100%;
	height: 100vh;
	box-sizing: border-box;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1020;
	background-color: rgba(249, 249, 249, 0.95);
	transform: translate(100%);
	transition: all .5s;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 85px 20px 85px;
}

.l-header__nav-container.open {
	transform: translateZ(0);
}

.l-header__nav {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 900px;
}

.l-header__nav a {
	color: #111;
	text-decoration: none;
	position: relative;
}

.l-header__nav a::after {
	content: '';
	width: 100%;
	height: 1px;
	background: var(--point-color);
	transition: all 0.3s;
	transform: scale(0,0);
	transform-origin: left;
	position: absolute;
	bottom: -8%;
	left: 0%;
}

.l-header__nav a:hover::after {
	transform: scale(1,1);
}

.l-header__nav a:hover {
	color: var(--point-color);
	transition: all 0.3s;
}

.l-header__nav li a.focus {
	color: var(--point-color);
	border-color: var(--point-color);
}

.l-header__nav li a.focus::after {
	content: '';
	width: 100%;
	height: 1px;
	background: var(--point-color);
	transform: scale(1,1);
	transform-origin: left;
	position: absolute;
	bottom: -8%;
	left: 0%;
}

.l-header__nav .l-header__btn li a.focus::after {
	content: none;
}

.l-header__list,
.l-header__btn {
  display: flex;
  flex-direction: column;
}

.l-header__list {
	max-height: calc(100vh - 170px);
	overflow-y: auto;
	gap: 1.8rem;
}

.l-header__list li {
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.6;
}

.l-header__list-child {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 10px;
}

.l-header__list-child li {
	font-size: 2rem;
	font-weight: 400;
	position: relative;
	padding-left: 1em;
}

.l-header__list-child li::before {
	content: "";
	display: block;
	height: 1px;
	width: 0.5em;
	left: 0em;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	background: var(--point-color);
}

.l-header__list-child a:hover {
	color: #111;
}

.l-header__list-child a::after {
	background: #111;
}

.l-header__list-child li a.focus {
	color: #111;
}

.l-header__btn li {
	font-size: 2rem;
	font-weight: 500;
	margin-bottom: 1.8rem;
}

.l-header__btn a {
	display: block;
	text-align: center;
	padding: 1rem 6rem;
	border: 1px solid #111;
}

.l-header__btn a::after {
	content: none;
}

.l-header__btn a:hover::after {
	transform: none;
}

.l-header__btn a:hover {
	border-color: var(--point-color);
}

/* ハンバーガーボタン */
.l-header__hamburger {
	transition: all .5s;
	cursor: pointer;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
}

.l-header__hamburger-menu,
.l-header__hamburger-close {
	color: var(--point-color);
	font-weight: 600;
}

.l-header__hamburger-btn {
	width: 54px;
	height: 54px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 1.6rem;
	background-color: #fff;
	border: 1px solid var(--point-color);
	border-radius: 50%;
}

.l-header__hamburger-trigger {
	position: relative;
	width: 22px;
	height: 18px;
}

.l-header__hamburger-trigger span {
	display: inline-block;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--point-color);
	transition: all .2s;
}

.l-header__hamburger-trigger span:nth-of-type(1) {
	top: 0;
	left: 2px;
}

.l-header__hamburger-trigger span:nth-of-type(2) {
	top: 8px;
}

.l-header__hamburger-trigger span:nth-of-type(3) {
	bottom: 0;
	left: -2px;
}

.l-header__hamburger.active .l-header__hamburger-trigger span:nth-of-type(1) {
	transform: translateY(8px) rotate(-45deg);
	left: 0;
}

.l-header__hamburger.active .l-header__hamburger-trigger span:nth-of-type(2) {
	opacity: 0;
}

.l-header__hamburger.active .l-header__hamburger-trigger span:nth-of-type(3) {
	transform: translateY(-8px) rotate(45deg);
	left: 0;
}

.l-header__hamburger-close {
	display: none;
}

.l-header__hamburger.active .l-header__hamburger-menu {
	display: none;
}

.l-header__hamburger.active .l-header__hamburger-close {
	display: block;
}

@media screen and (max-width: 768px){
	.l-header__nav-container {
		padding: 60px 30px 60px;
		overflow: auto;
		align-items: normal;
	}
	
	.l-header__nav {
		display: block;
		max-width: initial;
	}
	
	.l-header__list {
		max-height: inherit;
		gap: 0;
	}
	
	.l-header__list li {
		font-size: 2.2rem;
		line-height: 1.5;
		padding: 1.6rem 0;
		border-top: 1px solid #ccc;
	}
	
	.l-header__last-list {
		border-bottom: 1px solid #ccc;
	}
	
	.l-header__list-parent {
		padding: 1.6rem;
	}
	
	.l-header__list-child {
		margin-top: 0.5rem;
	}
	
	.l-header__list-child li {
		font-size: 1.8rem;
		border: none;
		padding: 0 0 0 1em;
	}
	
	.l-header__btn {
		margin-top: 3rem;
		padding-bottom: 60px;
	}
	
	.l-header__btn li {
		font-size: 1.8rem;
		margin-bottom: 1.5rem;
	}
	
	.l-header__hamburger-btn {
		width: 40px;
		height: 40px; 
		margin-left: 0.5rem;
	}
	
	.l-header__hamburger-menu,
	.l-header__hamburger-close {
		font-size: 1.4rem;
	}
	
	.l-header__hamburger-trigger {
		width: 16px;
		height: 14px;
	}
	
	.l-header__hamburger-trigger span:nth-of-type(2) {
		top: 6px;
	}
	
	.l-header__hamburger.active .l-header__hamburger-trigger span:nth-of-type(1) {
		transform: translateY(6px) rotate(-45deg);
	}
	
	.l-header__hamburger.active .l-header__hamburger-trigger span:nth-of-type(3) {
		transform: translateY(-6px) rotate(45deg);
	}
}

/***** footer *****/
.l-footer {
	background: var(--sub-color);
	padding: 0 30px;
}

.l-footer__container {
	display: flex;
	justify-content: space-between;
	max-width: 1200px;
	margin-inline: auto;
	padding-top: 80px;
}

.l-footer__container img {
	height: 4rem;
}

.l-footer__nav a {
	color: #fff;
	text-decoration: none;
	position: relative;
}

.l-footer__nav a::after {
	content: '';
	width: 100%;
	height: 1px;
	background: #fff;
	transition: all 0.3s;
	transform: scale(0,0);
	transform-origin: left;
	position: absolute;
	bottom: -8%;
	left: 0%;
}

.l-footer__nav a:hover::after {
	transform: scale(1,1);
}

.l-footer__nav a:hover {
	transition: all 0.3s;
}

.l-footer__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.l-footer__list li {
	font-weight: 600;
	line-height: 1.6;
}

.l-footer__list-child {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 10px;
}

.l-footer__list-child li {
	font-size: 1.6rem;
	font-weight: 400;
	position: relative;
	padding-left: 1em;
}

.l-footer__list-child li::before {
	content: "";
	display: block;
	height: 1px;
	width: 0.5em;
	left: 0em;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	background: var(--point-color);
}

.l-footer__copy {
	max-width: 1200px;
	margin-inline: auto;
	padding: 2rem 0 8rem;
	color: #A7A59F;
	font-size: 1.2rem;
}

@media screen and (max-width: 768px){
	.l-footer {
		padding: 0;
	}
	
	.l-footer__container {
		padding: 4rem 3rem 0 3rem;
		display: block;
		max-width: initial;
	}
	
	.l-footer__list {
		gap: 0;
	}
	
	.l-footer__list li {
		line-height: 1.5;
		padding: 1.6rem 0;
		border-top: 1px solid #bdbdbd;
	}
	
	.l-footer__last-list {
		border-bottom: 1px solid #bdbdbd;
	}
	
	.l-footer__list-parent {
		padding: 1.6rem;
	}
	
	.l-footer__list-child {
		margin-top: 1rem;
	}
	
	.l-footer__list-child li {
		font-size: 1.4rem;
		border: none;
		padding: 0 0 0 1em;
	}
	
	.l-footer__container img {
		margin-bottom: 4rem;
	}
	
	.l-footer__copy {
		padding: 4rem 0 1.5rem;
		text-align: center;
	}
}

/***** 見出し *****/
.c-ttl__center {
	text-align: center;
}

.c-ttl {
	position: relative;
	display: inline-block;
	margin-bottom: 35px;
	padding: 0 5rem;
}

.c-ttl:before,
.c-ttl:after {
	position: absolute;
	display: inline-block;
	content: '';
	top: 55%;
	width: 3.5rem;
	height: 1px;
	background-color: #111;
	-webkit-transform: rotate(-60deg);
	transform: rotate(-60deg);
}

.c-ttl:before {
	left: 0;
}

.c-ttl:after {
	right: 0;
}

.c-ttl__txt {
	font-size: clamp(2.8rem,8.75vw,4rem);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.02em;
}

.c-ttl__medium {
	font-size: clamp(2rem,6.25vw,3.2rem);
	font-weight: 600;
	margin-bottom: 20px;
}

.c-ttl__position {
	text-align: center;
}

.c-ttl__small {
	margin: 0 10px 20px;
	padding: 1rem 2.4rem;
	background-color: #E6E6E6;
	transform: skew(-20deg);
}

.c-ttl__small-txt {
	font-size: clamp(1.6rem,5vw,2rem);
	font-weight: 600;
	transform: skew(20deg);
}

.c-ttl__sub {
	margin: 20px 0 10px;
	font-size: clamp(1.6rem,5vw,2rem);
	font-weight: 600;
	border-bottom: 1px solid var(--point-color);
}

@media screen and (max-width: 768px){
	.c-ttl {
		margin-bottom: 2.5rem;
	}
}

/***** 背景色 *****/
/*.c-bg {
	background-color: var(--base-color);
}*/

/***** ページタイトル *****/
.l-headline {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5.6rem 0;
	border-top: 1px solid #111;
	border-bottom: 1px solid #111;
}

.l-headline h2 {
	max-width: 1200px;
	margin: 0 auto;
	font-size: clamp(4rem,11.8vw,6rem);
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.01em;
	text-align: center;
	position: relative;
}

.l-headline h2 span:before {
	content: '';
    transform: skewX(-45deg);
	width: 100%;
	height: 16px;
	margin: 0 auto;
	background-color: rgba(146,115,75,0.75);
    position: absolute;
    left: 0;
    bottom: 4px;
	z-index: -1;
}

@media screen and (max-width: 768px){
	.l-headline {
		padding: 4rem 0;
	}
	
	.l-headline h2 span:before {
		height: 12px;
	}
}

/***** パンくずリスト *****/
.c-headline__pan {
	padding: 20px 0;
}

.c-headline__pan ul {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.c-headline__pan ul li {
	padding-right: 0.8em;
	padding-left: 1.3em;
	font-size: 1.4rem;
	position: relative;
}

.c-headline__pan ul li:first-child {
	padding-left: 0;
}

.c-headline__pan ul li::before {
	content: "";
	display: block;
	height: 1px;
	width: 0.5em;
	left: 0em;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	background: #111;
}

.c-headline__pan ul li:first-child::before {
	content: none;
}

.c-headline__pan ul li a {
	color: #B9B9B9;
}

@media screen and (max-width: 768px){
	.c-headline__pan {
		padding: 15px;
	}
}