*,
::before,
::after {
	box-sizing: border-box;
}

html {
	font-size: 16px;
	line-height: 1.68;
	tab-size: 4;
	font-family: "Noto Sans JP", sans-serif;
	scroll-behavior: smooth;
	color: #333;
}
html::-webkit-scrollbar {
	display: none;
}

body {
	margin: 0;
	line-height: inherit;
	position: relative;
	background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
}

a {
	color: inherit;
	text-decoration: inherit;
}

b,
strong {
	font-weight: bold;
}

small {
	font-size: 80%;
}

table {
	text-indent: 0;
	border-color: inherit;
	border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
	margin: 0;
	padding: 0;
}

button,
select {
	text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
	background-color: transparent;
	background-image: none;
}

:-moz-focusring {
	outline: auto;
}

:-moz-ui-invalid {
	box-shadow: none;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
	margin: 0;
}

ol,
ul,
menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

textarea {
	resize: vertical;
}

:disabled {
	cursor: default;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
	display: block;
	vertical-align: middle;
}

img,
video {
	max-width: 100%;
	height: auto;
}

.not-scroll {
	touch-action: none;
	overflow: hidden;
}

.no-scroll-bar::-webkit-scrollbar {
	display: none;
}

[x-cloak] {
	display: none !important;
}

::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

::-webkit-scrollbar-thumb {
	background-color: rgba(197, 197, 197, 0.55);
	border-radius: 5px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

::-webkit-scrollbar-track {
	border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

header,
footer {
	overflow: hidden;
}

.pc {
	display: block;
}
.sp {
	display: none;
}
br.pc {
	display: inline;
}
br.sp {
	display: none;
}

@media screen and (max-width: 999px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	br.pc {
		display: none;
	}
	br.sp {
		display: inline;
	}
}

/* ------ header ------ */
header {
	position: fixed;
	z-index: 999;
	width: 100%;
	padding: 0 8.62%;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	height: 112px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #dd000c;
}

/* header */
.header-contents {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	height: 100%;
	overflow: hidden;
}

.header-logo {
	width: 97px;
	height: auto;
	aspect-ratio: 97 / 72;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	transition: all ease 0.33s;
}
.header-logo:hover {
	opacity: 0.6;
}
.header-txt {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
.header-nav-group {
	width: auto;
	height: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.btn-menu {
	display: none;
}
.nav-menu {
	display: none;
}
main {
	padding-top: 112px;
	overflow: hidden;
}

/* ------ common ------ */

.sec-inner {
	width: 100%;
	max-width: 1450px;
	margin: 0 auto;
}

.btn {
	width: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 999px;
	color: #fff;
	line-height: 1;
	transition: all ease 0.33s;
	overflow: hidden;
	font-weight: bold;
	padding: 21px 10px;
	font-size: 24px;
	position: relative;
	letter-spacing: 0.05em;
}
.btn > svg {
	position: absolute;
	right: 16px;
}
.btn > svg path {
	transition: all ease 0.33s;
}
.btn.btn-black {
	background: #000;
	color: #fff;
}
.btn.btn-black > svg path {
	fill: #fff;
}
.btn.btn-red {
	background: #de000c;
	color: #fff;
}
.btn.btn-red > svg path {
	fill: #fff;
}
.btn.btn-white {
	background: #fff;
	color: #de000c;
}
.btn.btn-white > svg path {
	fill: #de000c;
}

.btn.btn-black:hover {
	background: #fff;
	color: #000;
}
.btn.btn-black:hover > svg path {
	fill: #000;
}
.btn.btn-red:hover {
	background: #fff;
	color: #de000c;
}
.btn.btn-red:hover > svg path {
	fill: #de000c;
}
.btn.btn-white:hover {
	background: #de000c;
	color: #fff;
}
.btn.btn-white:hover > svg path {
	fill: #fff;
}

img.img-contain {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: all ease-in-out 0.4s;
}
img.img-cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all ease-in-out 0.4s;
}

/* ------ Footer ------ */
footer {
	width: 100%;
	padding: 0 8.62%;
	position: relative;
	background: #000000;
	position: relative;
	z-index: 990;
}

.footer-contents {
	width: 100%;
	max-width: 1450px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 50px;
	padding: 40px 0;
	padding-left: 125px;
}
.footer-contents > div {
	display: flex;
	align-items: center;
	gap: 47px;
}
.footer-contents > nav {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #fff;
}
.footer-contents > nav > a::after {
	content: " /";
}
.footer-contents > nav > a:last-of-type:after {
	content: "";
}

.footer-logo {
	width: 78px;
	height: auto;
	aspect-ratio: 78 / 57;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	transition: all ease 0.33s;
}
.footer-logo:hover {
	opacity: 0.6;
}
.footer-copy {
	width: 100%;
	text-align: center;
	font-size: 20px;
	color: #fff;
}
