/*___________________________
Body
___________________________*/

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

body {
	background: #fff;
	color: var(--colorBlack);
	font-family: var(--family-jp);
	font-size: var(--fontMax16Min14);
	font-weight: 400;
	line-height: 1.8;
	padding-top: 90px;
}

body:has(main.top-page) {
	padding-top: 0;
}
body.locked {
	overflow: hidden;
}

.ios-mac {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/*
  Base common text style.
  Change to match design.
*/

p,
h5,
h4,
h3,
h2,
h1,
a,
dd,
dt,
li,
figcaption,
button {
	color: var(--colorBlack);
	font-family: var(--family-jp);
	font-size: var(--fontMax16Min14);
	font-weight: 400;
	line-height: 1.8;
}

/* 
  Small fade animation on hover for links 
  Change as required
*/

main a,
footer a {
	transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

main a:not(.paginationGroup a):hover,
footer a:hover {
	opacity: 0.7;
}

/*___________________________
Container
___________________________*/
.section {
	padding: 160px 0;
}
.container {
	margin: 0 auto;
	max-width: 1240px;
}
@media (max-width: 1280px) {
	.section {
		padding: 80px 0;
	}
	.container {
		padding: 0 20px;
	}
}

.for-sp {
	display: none;
}
@media (max-width: 767px) {
	section {
		padding: 80px 0;
	}
	.for-sp {
		display: block;
	}
	.for-pc {
		display: none;
	}
}

/*___________________________
Link Buttons
___________________________*/

/*___________________________
Animation
___________________________*/

.js-fadeElement {
	opacity: 0;
	visibility: hidden;
}

/*___________________________
Header
___________________________*/

.header {
	display: block;
	position: relative;
	z-index: 10;
}

/*========================
Navbar
========================*/

.navbar {
	align-items: center;
	display: flex;
	justify-content: center;
	left: 0;
	padding: 16px 40px;
	position: fixed;
	top: 0;
	width: 100%;
}
.js-navbar.is-scroll {
	background-color: rgba(255 255 255 / .85);
}
.navbar__inner {
	align-items: center;
	display: grid;
	gap: 40px;
	grid-template-columns: 150px auto;
	max-width: 1440px;
	width: 100%;
}

.navbar__logo img {
	max-width: 200px;
}

.navbar__list {
	align-items: center;
	display: flex;
	gap: 0;
	height: fit-content;
	justify-content: flex-end;
	width: 100%;
}

.navbar__item {
	width: fit-content;
}

.navbar__item a {
	color: #000;
	display: block;
	font-family: var(--familyNotoSans);
	font-weight: 500;
	height: inherit;
	letter-spacing: 2px;
	line-height: 1.38;
	padding: 6px 12px;
	transition: opacity 0.3s ease-out;
}

.navbar__item:hover a {
	opacity: 0.7;
}

.header__button {
	margin-left: 24px;
}
.header__button .button {
	font-family: var(--family-jp);
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	height: 41px;
	letter-spacing: 2px;
}
/*========================
  Hamburger
========================*/

.navbar__hamburger {
	background: rgba(0 0 0 / 0.8);
	border: none;
	cursor: pointer;
	display: none;
	height: 40px;
	padding: 8px;
	position: relative;
	width: 40px;
	z-index: 1000;
}

.navbar__hamburger span {
	background: #fff;
	height: 2px;
	position: absolute;
	transition:
		all 0.3s ease-in-out;
	width: 24px;
}

.navbar__hamburger span:nth-child(1) {
	left: 8px;
	top: 8px;
}

.header.open .navbar__hamburger span:nth-child(1) {
	transform: translate(0px, 11px) rotate(45deg);
}

.navbar__hamburger span:nth-child(2) {
	left: 8px;
	top: 50%;
	transform: translateY(-50%);
}

.header.open .navbar__hamburger span:nth-child(2) {
	opacity: 0;
	transform: translateX(20px);
}

.navbar__hamburger span:nth-child(3) {
	bottom: 8px;
	left: 8px;
}

.header.open .navbar__hamburger span:nth-child(3) {
	transform: translate(0px, -11px) rotate(-45deg);
}

/*========================
  NavDrawer
========================*/

.navdrawer {
	align-items: center;
	background: rgba(0, 0, 0, 0.9);
	display: flex;
	flex-direction: column;
	gap: 18px;
	height: 100vh;
	justify-content: center;
	left: 0;
	position: fixed;
	top: 0;
	transform: translateX(100%);
	width: 100vw;
	z-index: 999;
}

.navdrawer__container {
	/* display: grid; */
	/* gap: 16px; */
	/* grid-template-columns: 1fr; */
	margin: 0 auto;
	/* width: fit-content; */
	width: 240px;
}

.navdrawerLink {
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	color: #fff;

	display: block;
	font-family: var(--familyNotoSans);
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1.6;
	opacity: 0;
	padding: 16px;
	text-align: center;
	/* transform: translateY(50px); */
	visibility: hidden;
}

@media screen and (max-width: 1080px) {
	.navbar__logo img {
		max-width: 150px;
	}

	.navbar {
		height: 60px;
		padding: 0 16px;
	}

	.navbar__list {
		display: none;
	}

	.navbar__hamburger {
		align-self: center;
		display: block;
	}

	.navbar__inner {
		display: flex;
		justify-content: space-between;
		max-width: 1230px;
		padding: 0 20px;
	}
}

@media screen and (max-width: 550px) {
	.navbar__logo img {
		max-width: 120px;
	}

	.navbar__inner {
		padding: 0;
	}
}

/*___________________________
Footer
___________________________*/

.footer {
	background: #000;
	color: #fff;
	display: block;
	padding: 80px 0;
}
.footer__container {
	display: flex;
	justify-content: space-between;
}
.footer__details {
	width: 246px;
}
.footer__logo {
}
.footer__companyName {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 2px;
	line-height: 180%;
	margin: 24px 0;
}
.footer__address {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 2px;
	line-height: 180%;
}
.footer__link-s {
	color: #fff;
	display: block;
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.2px;
	line-height: 180%;
	margin-top: 100px;
}
.footer__link-s img {
	margin-left: 4px;
	width: 8px;
}
.footer__nav {
	display: flex;
	gap: 80px;
}
.footer__nav ul li {
	color: #fff;
}
.footer__lists {
	/* border-left: 1px solid #fff; */
	height: fit-content;
	padding-left: 24px;
	position: relative;
}
.footer__lists::before {
	background-color: #fff;
	content: "";
	height: 94%;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
}
.footer__link {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.28px;
	line-height: 220%;
	white-space: nowrap;
}
.footer__list-2 {
	color: #fff;
	padding-left: 10px;
	position: relative;
}
.footer__list-2::before {
	background-color: #fff;
	border-radius: 50%;
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
}
.copyright {
	color: #fff;
	font-size: 10px;
	line-height: 140%;
	margin-top: 122px;
	text-align: center;
}

@media (max-width: 840px) {
	.footer__container {
		flex-direction: column;
		margin: 0 auto;
		width: fit-content;
	}
	.footer__nav {
		margin-top: 40px;
	}
	.footer__link-s {
		margin-top: 40px;
		text-align: center;
	}
	.copyright {
		margin-top: 40px;
	}
}
@media (max-width: 480px) {
	.footer__nav {
		flex-direction: column;
		gap: 40px;
	}
}

.mt-40 {
	margin-top: 40px;
}
.text-center {
	text-align: center;
}
.bold {
	font-weight: 700;
}
.fz-24 {
	font-size: 24px;
}
.page404_button {
	margin: 0 auto;
	width: 211px;
}
.section_404 {
	padding-top: 64px;
}

.fixed-to-top {
	bottom: 20px;
	display: inline-block;
	display: none;
	height: 46px;
	position: fixed;
	right: 20px;
	width: 46px;
	z-index: 10;
}
.fixed-to-top.is-scroll {
	display: block;
}