@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p,
a, address,
em, img,
small, strong, sub, sup,
b, u, i,
ul, ol, li, dl, dt, dd,
form, label,
table, caption, tbody, tfoot, thead, tr, th, td,
article, section, aside, figure, figcaption,
header, footer, nav, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, section, aside, figure, figcaption, header, footer, nav { display: block; }
body { line-height: 1; }
ul, ol { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; }
strong { font-weight:bold;}

.clearfix::after {
	content: "";
	clear: both;
	display: table;
}

/*================================================

　全体

=================================================*/
*{ -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
*::before,
*::after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }

html { font-size: 62.5%; }
body { 
	position: relative;
	min-height: 100vh;
	color: #FFF;
	text-align: left;
	font-family: 'Noto Sans JP', sans-serif;
	font-feature-settings: "palt" 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: #000;
}
a, a:link, a:focus, a:visited {
	color: #000;
	text-decoration: none;
	opacity: 1;
	transition: all 0.5s ease;
}
a:hover {
	opacity: 0.3;
}


img { max-width: 100%; height: auto; vertical-align: bottom; }

/* Avoid Chrome to see Safari hack */
@supports (-webkit-touch-callout: none) {
	body {
		/* The hack for Safari */
		height: -webkit-fill-available;
	}
}

strong {
	color: #FF0;
	font-weight: 900;
}

/*================================================

　レイアウト共通

=================================================*/
.content-wrap {
	margin: 0;
	padding: 120px 0 0;
}
.content-wrap-bgcover {
	position: relative;
	padding: 0 40px;
	z-index: 2;
}
.fadeUpTrigger {
	opacity: 0;
	transition: 0.5s;
}
.title {
	position: relative;
	height: 70px;
	text-align: center;
}
.title::after {
	content: "";
	position: absolute;
	top: 25px;
	left: 50%;
	width: 1px;
	height: 40px;
	background: #FFF;
}

@media screen and (min-width: 1080px) {

	.pc-new-line02 {
		display: block;
	}

}

@media screen and (max-width: 1079px) {

	.content-wrap {
		padding: 100px 0 0;
	}
	.pc-new-line02 {
		display: none;
	}

}

@media screen and (min-width: 769px) {

	.pc-new-line {
		display: block;
	}
	.sp-new-line {
		display: none;
	}

}

@media screen and (max-width: 768px) {

	.content-wrap {
		padding: 13.3333333vw 0 0;
	}
	.title {
		height: 9.11458333vw;
	}
	.title::after {
		top: 4.33333333vw;
		height: 5.20833333vw;
	}
	.pc-new-line {
		display: none;
	}

}

/*================================================

　header

=================================================*/
.header-wrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	margin: 0 auto;
	z-index: 99999;
	transition: all 0.5s ease;
	background: #000;
}
.header-wrap-inner {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1260px;
	height: 120px;
	margin: 0 auto;
	padding: 5px 25px 0;
}
.header-wrap-inner::before {
	position: absolute;
	content: '';
	top: 0;
	left: 50%;
	height: 5px;
	width: 100vw;
	margin-left: -50vw;
	background-image: linear-gradient(88deg, rgba(121, 84, 36, 1), rgba(174, 134, 46, 1) 32%, rgba(128, 103, 48, 1) 52%, rgba(172, 147, 76, 1) 76%, rgba(128, 90, 37, 1));
}
.header-wrap-inner .logo {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 382px;
	margin: 0;
	padding: 0;
}
.header-wrap-inner .logo p {
	color: #FFF;
	font-size: 1.5rem;
	line-height: 1.6;
}
.contact-box ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 116px;
	height: 58px;
	margin: 0;
	padding: 0;
}
.contact-box ul li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: #FF00FF;
}
.contact-box ul li:last-child {
	background-color: #CA003F;
}

@media screen and (max-width: 1279px) {

	.header-wrap-inner .logo {
		width: 382px;
	}
	.contact-box ul {
		width: 116px;
		height: 58px;
	}

}

@media screen and (max-width: 1079px) {

	.header-wrap-inner {
		width: 100%;
		height: 100px;
		padding: 0 25px;
	}
	.header-wrap-inner .logo {
		width: 59.7333333vw;
	}
	.header-wrap-inner .logo a {
		position: absolute;
		top: 50%;
		left: calc(50vw - 25px);
		width: 130px;
		transform: translate(-50%, -50%);
	}
	.contact-box ul {
		position: absolute;
		top: 50%;
		right: 90px;
		width: 58px;
		transform: translateY(-50%);
	}
	.contact-box ul li:last-child {
		display: none;
	}

}

@media screen and (max-width: 768px) {

	.header-wrap-inner {
		justify-content: flex-start;
		height: 13.3333333vw;
		padding: 0 4.26666666vw;
	}
	.header-wrap-inner::before {
		display: none;
	}
	.header-wrap-inner .logo a {
		left: calc(50vw - 4.26666666vw);
		width: 17.7333333vw;
	}
	.header-wrap-inner .logo p {
		font-size: 1rem;
		line-height: 1.6;
	}
	.contact-box ul {
		right: 13.33333333vw;
		width: 20.4vw;
		height: 7.73333333vw;
	}
	.contact-box ul li {
		width: 20.4vw;
		height: 100%;
	}
	.contact-box ul li img {
		width: 14.1333333vw;
	}

}

/*　ナビメニュー
=================================================*/
.header-wrap-inner .navlist {
	height: 100%;
}
.header-wrap-inner .navlist ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	z-index: 999999;
}
.header-wrap-inner .navlist ul li {
	font-size: 1.5rem;
	font-weight: 900;
	line-height: 1;
	padding: 0 30px;
	border-right: 0.5px solid #FFF;
}
.header-wrap-inner .navlist ul li:nth-of-type(5) {
	border-right: none;
}
.header-wrap-inner .navlist ul li:last-child {
	display: none;
}
.header-wrap-inner .navlist ul li a {
	color: #FFF;
}

@media screen and (max-width: 1279px) {

	.header-wrap-inner .navlist ul li {
		padding: 0 20px;
	}

}

@media screen and (max-width: 1079px) {

	.header-wrap-inner .navlist {
		position: fixed;
		top: 0;
		left: 100%;
		width: 375px;
		height: 100%;
		padding: 25px 30px 0;
		background: rgba(0,0,0,0.8);
		transform: translate(0, 0);
		transition: 0.5s ease-out;
	}
	.header-wrap-inner .navlist ul {
		justify-content: flex-start;
		flex-direction: column;
		margin-top: 25px;
	}
	.header-wrap-inner .navlist ul li {
		display: block;
		width: 100%;
		margin-right: 0;
		padding: 30px 0 10px;
		font-size: 1.3rem;
		border-right: none;
		border-bottom: 1px solid #FFF;
	}
	.header-wrap-inner .navlist ul li:last-child {
		display: block;
	}

}

@media screen and (max-width: 768px) {

	.header-wrap-inner .navlist {
		height: 100%;
	}
	.header-wrap-inner .navlist {
		width: 100%;
		padding: 4.66666666vw 5.33333333vw 0;
	}

}

/*　ハンバーガー
=================================================*/
.menu-btn {
	display: none;
	position: absolute;
	right: 25px;
	z-index: 10;
}
.menu-btn .toggle {
	display: block;
	position: relative;
	width: 42px;
	height: 12px;
	padding: 0;
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
}
.menu-hamburger,
.menu-hamburger::before,
.menu-hamburger::after {
	display: block;
	position: relative;
	width: 100%;
	height: 1px;
	background-color: #FFF;
	transition: 0.2s ease-out;
}
.menu-hamburger::before,
.menu-hamburger::after {
	position: absolute;
	content: '';
	top: -5px;
	left: 0;
}
.menu-hamburger::after {
	top: 5px;
}
.open .menu-hamburger {
	background-color: transparent;
}
.open .menu-hamburger::before,
.open .menu-hamburger::after {
	top: 0;
	background-color: #FFF;
}
.open .menu-hamburger::before {
	transform: rotate(45deg);
}
.open .menu-hamburger::after {
	transform: rotate(-45deg);
}

@media screen and (max-width: 1079px) {

	.header-wrap-inner .navlist .nav-title {
		position: relative;
		display: block;
		z-index: 11;
	}
	.header-wrap-inner .navlist ul li a {
		display: flex;
		justify-content: space-between;
		align-items: baseline;
	}
	.menu-btn {
		display: block;
	}
	.menu-btn.open + .navlist {
		transform: translateX(-100%);
	}
	.navlist.open {
		transform: translateX(-100%);
	}

}

@media screen and (max-width: 768px) {

	.menu-btn {
		right: 5.73333333vw;
	}
	.menu-btn .toggle {
		width: 5.6vw;
		height: 2.4vw;
	}
	.menu-hamburger::before,
	.menu-hamburger::after {
		top: -1.0666666vw;
	}
	.menu-hamburger::after {
		top: 1.0666666vw;
	}

}


/*================================================

　mainvisual

=================================================*/
.mainvisual {
	background-color: #000;
	margin-bottom: 50px;
}
.mainvisual__wrap {
    position: relative;
	max-width: 1260px;
	margin: 0 auto;
	padding: 0 25px;
}

@media screen and (max-width: 768px) {

	.mainvisual {
		margin-bottom: 6.51041667vw;
	}
	.mainvisual__wrap {
		width: 100%;
		padding: 0 4.26666666vw;
	}

}


/*================================================

　フッター

=================================================*/
footer {
	position: relative;
	margin: 0;
	padding: 0;
	text-align: center;
	line-height: 1;
	z-index: 10;
}
.footer-content {
	position: relative;
	margin: auto;
	padding: 0;
	background-color: #333;
}
footer::after,
.footer-content::before,
.footer-content::after {
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	height: 5px;
	width: 100vw;
	background-image: linear-gradient(88deg, rgba(121, 84, 36, 1), rgba(174, 134, 46, 1) 32%, rgba(128, 103, 48, 1) 52%, rgba(172, 147, 76, 1) 76%, rgba(128, 90, 37, 1));
}
.footer-content::after {
	top: 0;
	bottom: auto;
}

.footer-content .navlist {
	padding: 35px 0;
}
.footer-content .navlist ul {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	padding: 0;
	font-size: 1.2rem;
}
.footer-content .navlist ul li {
	margin: 0 20px;
}
.footer-content .navlist ul li a {
	color: #FFF;
}
#copy {
	margin: 0;
	padding: 20px 0 27px;
	color: #FFF;
	text-align: center;
	font-size: clamp(1.1rem, (100vw - 1079px) * 2 / 320 + 11px, 1.3rem);
}
#copy p {
	margin: 0 0 5px;
}

@media screen and (max-width: 768px) {

	footer::after,
	.footer-content::before,
	.footer-content::after {
		height: 3px;
	}
	.footer-content .navlist {
		padding: 4.55729167vw 0;
	}
	.footer-content .navlist ul {
		font-size: 1.2rem;
		font-size: clamp(1.1rem, (100vw - 375px) * 2 / 393 + 11px, 1.3rem);
	}
	.footer-content .navlist ul li {
		margin: 0 20px;
	}
	.footer-content .navlist ul li:nth-of-type(1),
	.footer-content .navlist ul li:nth-of-type(2) {
		display: none;
	}
	#copy {
		padding: 20px 0 27px;
		font-size: 1rem;
	}
	#copy p {
		margin: 0 0 5px;
	}

}
