@charset "UTF-8";
/* CSS Document */
:root {
  --red: #be2827;
  --gold: #b9a172;
}
.boxWidth {
	width: 96%;
	max-width: 1200px;
	margin: 0 auto;
}
br.brSp {
	display: none;
}
a {
	transition: 0.3s;
}

header {
	background-color: #fff;
	height: 80px;
	align-items: center;
}
/*header::after {
	content: "";
	width: 100%;
	height: 5px;
	background-color: var(--red);
}*/
header h1 {
	width: 210px;
	margin-left: 20px;
}
header .btnContact {
	height: 100%;
	display: none;
}
header .btnContact a {
	width: 100px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #be2827;
	padding: 0 15%;
}
header .btnContact a:hover {
	background-color: #000;
}
nav {
	background-color: #000;
}
nav::before {
	content: "";
	display: block;
	width: 100%;
	height: 5px;
	background-color: var(--red);
}
nav ul {
	container-type: inline-size;
}
nav ul li {
	width: calc(100% / 7);
	position: relative;
	height: 100%;
}
nav ul li::after,
nav ul li:nth-child(1)::before {
	content: "";
	position: absolute;
	width: 1px;
	height: 50%;
	right: 0;
	top: 25%;
	background-color: #fff;
	z-index: 1;
}
nav ul li:nth-child(1)::before {
	right: auto;
	left: 0;
}
nav ul li a {
	color: #fff;
	display: flex;
justify-content: center;
align-items: center;
	font-size: clamp(12px, 1.2cqw, 15px);
	text-align: center;
	height: 40px;
}
nav ul li a:hover {
	background-color: var(--red);
}
nav ul li a.soon {
	opacity: 0.5;
	pointer-events: none;
}

header #menu {
		display: none;
	}
nav a span,
nav .contact {
		display: none;
	}


@media screen and (max-width: 959px) {
	header {
		width: 100%;
		height: 60px;
		position: fixed;
		left: 0;
		top: 0;
		z-index: 4;
	}
	header h1 {
		width: 160px;
		margin-left: 20px;
		padding-top: 6px;
	}
	header .btnContact {
		display: none;
	}
  header #menu {
    display: block;
   position: absolute;
   width: 60px;
   height: 60px;
   right: 0px;
   top: 0px;
	z-index: 1;
   /* background-color: #555; */
	}
	header #menu span {
		position: absolute;
    width: 50%;
    height: 2px;
    left: 25%;
    top: 28px;
    background-color: var(--red);
    transition: 0.5s
  }
  header #menu span:nth-child(2) {
    top: 15px;
  }
  header #menu span:nth-child(3) {
    top: 40px;
  }

	body.showMenu header #menu span {
		width: 80%;
		left: 10%;
	}
	body.showMenu header #menu span:nth-child(2) {
		top: 28px;
		transform: rotateZ(45deg);
	}
	body.showMenu header #menu span:nth-child(1) {
		opacity: 0;
	}
	body.showMenu header #menu span:nth-child(3) {
  top: 40px;
  transform: translateY(-12px) rotateZ(-45deg);
	}
	nav {
		position: fixed;
		left: 0;
		top: 60px;
		width: 100%;
		height: calc(100% - 60px);
		background-color: var(--red);
		z-index: 30;
		transform: translateX(100%);
		transition: 0.5s;
	}
	body.showMenu nav {
		transform: translateX(0%);
	}
	body nav ul {
		max-height: 90vh;
		overflow-y: auto;
	}
	body nav ul li {
		opacity: 0;
		transform: translateX(100%);
		transition: 0.5s 0.5s;

	}
	body.showMenu nav ul li {
		opacity: 1;
		transform: translateX(0%);
		transition-delay: calc(0.1s * var(--idx));
	}
	
	
	header::after {
		display: none;
	}
	nav .contact,
	nav ul,
	nav ul li a,
	nav ul li a span {
		display: block!important;
		text-align: left;
	}
	nav ul li::after, nav ul li:nth-child(1)::before {
		display: none;
	}
	nav ul {
		width: 50%!important;
		margin-left: 50%!important;
		padding-top: 5%;
	}
	nav ul li {
		display: block;
		width: 100%;
		height: auto;
		padding-bottom: 0.3em;
		margin-bottom: 1.5em;
		border-bottom: #fff dotted 1px;
	}
	nav ul li a {
		font-size: clamp(18px, 3.0vw, 24px);
		height: auto;
		line-height: 1;
		font-weight: 400;
	}
	nav ul li a span {
		color: var(--gold);
		font-size: 100%;
	}
}
@media screen and (max-width: 599px) {
	br.brSp {
		display: inline;
	}
}

footer {
	padding: 5% 0 0;
}
footer .mark {
	width: 50%;
	max-width: 180px;
	margin: 0 auto;
	padding: 2% 0;
}
footer .icons {
	max-width: 180px;
	margin: 20px auto;
}
footer .icons a {
	width: 48%;
/*	opacity: 0.2;
	pointer-events: none;*/
}
footer .footBtn {
	text-align: center;
}
footer .footBtn li {
	display: inline-block;
}
footer .footBtn li::after,
footer .footBtn li:nth-child(1)::before {
	content: "　|　";
}


footer .footBtn a {
	color: #000;
	font-size: 13px;
}
footer .footBtn li:nth-child(2) a,
footer .footBtn li:nth-child(3) a,
footer .footBtn li:nth-child(4) a,
footer .footBtn li:nth-child(5) a{
	opacity: 0.3;
	pointer-events: none;
}
footer .cRight {
	background-color: var(--red);
	color: #fff;
	text-align: center;
	padding: 1em;
	margin-top: 20px;
}
@media screen and (max-width: 599px) {
	footer {
	padding: 30px 0 0;
}
	footer .icons {
		width: 70%;
    max-width: 180px;
    margin: 20px auto;
}
	footer .icons a {
    width: 47%;
	}
}



#secHead {}
#secHead .h2Box {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #fff;
}
#secHead .h2Box h2 {
	font-size: 16px;
	text-align: center;
	line-height: 1.3;
	font-weight: 300;
}
#secHead .h2Box h2 span {
	font-size: 300%;
	font-weight: 300;
	display: block;
}

@media screen and (max-width: 959px) {
	#secHead {
		margin-top: 60px;
	}

}
@media screen and (max-width: 599px) {
	#secHead {
		height: 160px;
	}
	#secHead img {
		object-fit: cover;
		width: 100%;
		height: 100%;
	}
	#secHead .h2Box {
		width: 100%;

	}
	#secHead .h2Box h2 {
		font-size: clamp(12px, 3.5vw, 14px);
		line-height: 1.1;
		
	}
	#secHead .h2Box h2 span {
		font-size: 250%;
		width: 100%;

	}


}

