@charset "utf-8";

/* * {
	outline: 1px solid red !important;
} */

/* Font */
/* Zen Kaku Gothic New */
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700&display=swap");

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

/* Shippori Mincho B1 */
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1&display=swap");

/* Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
	font-family:
		"Zen Kaku Gothic New", "游ゴシック体", "Yu Gothic", YuGothic,
		"ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ",
		Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #333;
}

* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

.sp {
	display: none;
}

.inner960 {
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
}

header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	display: flex;
	align-items: center;
	padding: 19px 30px 19px 60px;
	width: 100%;
	background-color: #f8f8f8;
}

.top header {
	position: fixed;
}

header.is_white {
	background-color: transparent;
}

header .header_logo a {
	transition: all 0.5s;
}

header .header_logo a:hover {
	opacity: 0.5;
}

header .header_nav_area {
	display: flex;
	margin-left: auto;
	align-items: center;
}

header .header_text_nav ul {
	display: flex;
	gap: 56px;
}

header .header_text_nav ul li a {
	color: #111111;
	position: relative;
	font-size: 14px;
}

header .header_text_nav ul li a::before {
	content: "";
	display: block;
	width: 0;
	height: 1px;
	background-color: #111;
	position: absolute;
	left: 0;
	bottom: -3px;
	transition:
		opacity,
		width 0.2s cubic-bezier(0.8, 0, 0.2, 1);
	opacity: 0;
}

header.is_white .header_text_nav ul li a::before {
	background-color: #fff;
}

header .header_text_nav ul li a:hover::before {
	width: 100%;
	opacity: 1;
}

header .header_use_nav ul {
	display: flex;
	gap: 24px;
	margin-left: 56px;
}

header .header_use_nav ul li a {
	display: block;
	border: 1px solid #111111;
	color: #111111;
	padding: 14px 10px;
	width: 160px;
	text-align: center;
	transition:
		color 0.3s ease,
		background-color 0.3s ease;
	font-size: 14px;
	transition: all 0.5s;
}
header .header_use_nav ul li a:hover {
	background-color: #111;
	color: #fff;
}
header.is_white .header_use_nav ul li a:hover {
	color: #fff;
}
header .header_sns_nav ul {
	display: flex;
	margin-left: 32px;
	gap: 20px;
}
header .header_sns_nav ul li a {
	transition: opacity 0.3s;
}
header .header_sns_nav ul li a:hover {
	opacity: 0.5;
}
header .header_contact_nav {
	margin-left: 32px;
}

header .header_contact_nav ul {
	display: flex;
	gap: 27px;
}

header .header_contact_nav ul li a {
	display: block;
	padding: 13px 20px;
	border-radius: 48px;
	border: 1px solid #111111;
	transition:
		color 0.3s ease,
		background-color 0.3s ease;
	text-align: center;
	font-size: 14px;
	transition: all 0.5s;
}

header .header_contact_nav ul li:nth-child(1) a {
	color: #111111;
	padding: 15px 22px;
	transition: all 0.5s;
}

header .header_contact_nav ul li:nth-child(1) a:hover {
	background-color: #111;
	color: #fff;
}

header .header_contact_nav ul li:nth-child(2) a {
	color: #fff;
	background-color: #111;
	padding: 14px 29px;
}

header .header_contact_nav ul li:nth-child(2) a:hover {
	color: #111;
	background-color: #fff;
}

header .header_nav_area .sp_header_bottom_area {
	display: none;
}

header .header_hamburger {
	display: none;
}

.header.is_white .header_logo svg path {
	transition: fill 0.3s ease;
}

.header.is_white .header_logo svg path {
	fill: #fff;
}

header.is_white .header_text_nav ul li a {
	color: #ffffff;
}

header.is_white .header_use_nav ul li a {
	border: 1px solid #ffffff;
	color: #ffffff;
}

header.is_white .header_sns_nav ul svg .sns_line {
	stroke: #fff;
}

header.is_white .header_sns_nav ul svg .sns_logo {
	fill: #fff;
}

header.is_white .header_contact_nav ul li:nth-child(1) a {
	color: #fff;
	border-color: #fff;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	z-index: 10;
}

.overlay.active {
	opacity: 1;
	visibility: visible;
}

footer {
	background-color: #000;
	padding: 72px 0 60px;
}

footer .footer_container {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}

footer .sp_btn_area {
	display: none;
}

footer .footer_top_container {
	display: flex;
	justify-content: space-between;
	margin-bottom: 150px;
}

footer .footer_logo {
	margin-bottom: 30px;
}

footer .footer_logo a {
	transition: all 0.5s;
}
footer .footer_logo a:hover {
	opacity: 0.5;
}

footer .address_area {
	color: #fff;
	font-size: 13px;
	line-height: 1.8;
}

footer .address_area .tel a {
	color: #fff;
	text-decoration: none;
}

footer .right_container {
	display: flex;
}

footer .right_container .btn_area {
	margin-bottom: 30px;
}

footer .right_container .btn_area ul {
	display: flex;
	gap: 24px;
}

footer .right_container .btn_area ul li:nth-child(1) a {
	border: 1px solid #fff;
	border-radius: 48px;
	font-size: 14px;
	text-align: center;
	padding: 15px 32px;
	color: #fff;
	background-color: #000;
	display: block;
	transition: all 0.5s;
}

footer .right_container .btn_area ul li:nth-child(1) a:hover {
	color: #000;
	background-color: #fff;
}

footer .right_container .btn_area ul li:nth-child(2) a {
	border: 1px solid #fff;
	border-radius: 48px;
	font-size: 14px;
	text-align: center;
	padding: 15px 32px;
	color: #000;
	background-color: #fff;
	display: block;
	transition: all 0.5s;
}

footer .right_container .btn_area ul li:nth-child(2) a:hover {
	background-color: #000;
	color: #fff;
}

footer .right_container .sns_area ul {
	display: flex;
	justify-content: flex-end;
	gap: 23px;
}

footer .right_container .sns_area ul li a {
	transition: all 0.5s;
}

footer .right_container .sns_area ul li a:hover {
	opacity: 0.5;
}

footer .right_container .footer_main_nav ul {
	display: flex;
	flex-wrap: wrap;
	max-width: 250px;
	margin-right: 45px;
}

footer .right_container .footer_main_nav ul li {
	margin-bottom: 30px;
	width: 50%;
	order: initial;
}

footer .right_container .footer_main_nav ul li a {
	color: #fff;
	position: relative;
	transition: all 0.5s;
	font-size: 14px;
}

footer .right_container .footer_main_nav ul li a::before {
	content: "";
	display: block;
	width: 0;
	height: 1px;
	background-color: #fff;
	position: absolute;
	left: 0;
	bottom: -3px;
	transition:
		opacity,
		width 0.2s cubic-bezier(0.8, 0, 0.2, 1);
	opacity: 0;
}

footer .right_container .footer_main_nav ul li a:hover::before {
	width: 100%;
	opacity: 1;
}

footer .footer_bottom_nav {
	margin-bottom: 50px;
}

footer .footer_bottom_nav ul {
	display: flex;
	justify-content: center;
}

footer .footer_bottom_nav ul li {
	padding: 0 25px;
	border-right: 1px solid #666666;
}

footer .footer_bottom_nav ul li:first-child {
	border-left: 1px solid #666666;
}

footer .footer_bottom_nav ul li a {
	color: #fff;
	font-size: 12px;
	position: relative;
	line-height: 1.5;
}

footer .footer_bottom_nav ul li a::before {
	content: "";
	display: block;
	width: 0;
	height: 1px;
	background-color: #fff;
	position: absolute;
	left: 0;
	bottom: -3px;
	transition:
		opacity,
		width 0.2s cubic-bezier(0.8, 0, 0.2, 1);
	opacity: 0;
}

footer .footer_bottom_nav ul li a:hover::before {
	width: 100%;
	opacity: 1;
}

footer .copyright {
	text-align: center;
	color: #888888;
	font-size: 10px;
	font-family: "Noto Sans JP", Arial, Helvetica, sans-serif;
}

/* ===== anime ===== */

.js-anim {
	opacity: 0;
	transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.js-anim.is-act {
	opacity: 1;
}

.fade-up {
	transform: translateY(30px);
}
.fade-up.is-act {
	transform: translateY(0);
}

.blur {
	filter: blur(10px);
	transform: translateY(2em);
}
.blur.is-act {
	filter: blur(0);
	transform: translateY(0);
}

.zoom img {
	transform: scale(1.2);
	transition: 1.2s;
}
.zoom.is-act img {
	transform: scale(1);
}

.delay-1 {
	transition-delay: 0.2s;
}

.delay-2 {
	transition-delay: 0.4s;
}

.delay-3 {
	transition-delay: 0.6s;
}

.delay-4 {
	transition-delay: 0.8s;
}

.delay-5 {
	transition-delay: 1s;
}

.delay-6 {
	transition-delay: 1.2s;
}

.delay-7 {
	transition-delay: 1.4s;
}

.delay-8 {
	transition-delay: 1.6s;
}

.delay-9 {
	transition-delay: 1.8s;
}

.js-scale {
	overflow: hidden;
}

.js-scale img {
	transform: scale(1.2);
	will-change: transform;
}

.js-reveal-mask img {
	-webkit-mask-image: url(../images/pages/top_white_squre_mask.png);
	mask-image: url(../images/pages/top_white_squre_mask.png);
	mask-mode: alpha;
	-webkit-mask-position: center bottom;
	mask-position: center bottom;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: auto 200%;
	mask-size: auto 200%;
	filter: blur(30px);
}

.js-reveal-mask.is-reveal img {
	animation: mask-animation 4s cubic-bezier(0.115, 0.405, 0.24, 1) forwards;
	filter: blur(0);
	transition: filter 2s ease;
}

@keyframes mask-animation {
	0% {
		-webkit-mask-position: center bottom;
		mask-position: center bottom;
		opacity: 0;
	}

	20% {
		opacity: 1;
	}

	to {
		-webkit-mask-position: center 0;
		mask-position: center 0;
		-webkit-mask-size: auto 500%;
		mask-size: auto 500%;
		opacity: 1;
	}
}

/* ヘッダー箇所のみメディアクエリ1200px */
@media screen and (max-width: 1200px) {
	header {
		padding: 0 0 0 12px;
		background-color: #f8f8f8;
	}

	header .header_logo svg {
		width: 200px;
	}

	header .header_nav_area {
		position: fixed;
		top: 56px;
		right: -100%;
		width: 82.05%;
		height: 100vh;
		background: #f8f8f8;
		display: block;
		padding: 50px 12.87vw;
		transition: right 0.4s;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	header .header_nav_area.active {
		right: 0;
	}

	header .header_hamburger {
		display: block;
		width: 56px;
		height: 56px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		background: none;
		border: none;
		margin-left: auto;
		position: relative;
		right: 0;
		top: 0;
		transition: background 0.2s;
	}
	header .header_hamburger span {
		width: min(8.2051vw, 35px);
		height: min(0.5128vw, 2.3px);
		margin-bottom: min(2.0513vw, 12px);
		background: #111;
		transition: transform 0.2s;
	}
	header.is_white .header_hamburger span {
		background: #fff;
	}
	header .header_hamburger span:nth-child(3) {
		margin-bottom: 0;
	}
	header .header_hamburger .close {
		display: none;
	}
	header .header_hamburger.active {
		background: #f8f8f8;
		z-index: 10000;
	}
	header .header_hamburger.active span {
		margin-bottom: 0;
		width: min(5.3846vw, 30px);
		position: relative;
		top: -5px;
		background: #888;
	}
	header .header_hamburger.active span:nth-child(1) {
		transform: rotate(45deg);
	}
	header .header_hamburger.active span:nth-child(2) {
		display: none;
	}
	header .header_hamburger.active span:nth-child(3) {
		margin-top: max(-0.5128vw, -3px);
		transform: rotate(-45deg);
	}
	header .header_hamburger.active .close {
		position: absolute;
		bottom: min(2.3077vw, 5px);
		display: block;
		color: #888;
		line-height: 1.2;
		font-size: min(2.5641vw, 12px);
		font-weight: 400;
		font-family: "Roboto", sans-serif;
	}

	header .header_text_nav ul {
		flex-direction: column;
		gap: 0;
	}

	header .header_text_nav ul li {
		margin-bottom: 40px;
	}

	header .header_text_nav ul li a {
		font-size: 16px;
	}

	header .header_use_nav ul {
		flex-direction: column;
		margin-left: 0;
		gap: 0;
	}

	header .header_use_nav ul li {
		margin-bottom: 40px;
	}
	header .header_use_nav ul li:last-child {
		margin-bottom: 50px;
	}

	header .header_use_nav ul li a {
		width: 100%;
		border: none;
		padding: 0;
		text-align: left;
		border: none;
		font-size: 16px;
	}

	header .header_use_nav ul li a:hover {
		background-color: unset;
		color: unset;
	}

	header .header_sns_nav ul {
		margin: 0 auto 55px;
		gap: 15px;
	}

	header .header_contact_nav {
		margin-left: 0;
	}

	header .header_contact_nav ul {
		flex-direction: column-reverse;
		gap: 25px;
		margin: 0 auto 70px;
		font-weight: 500;
	}

	header .header_contact_nav ul li a {
		margin: 0;
		font-size: 16px;
	}

	header .header_contact_nav ul li:nth-child(1) {
		width: 40vw;
		margin: 0 auto;
	}

	header .header_contact_nav ul li:nth-child(1) a {
		padding: 15px 10px;
		font-size: 14px;
	}

	header .header_contact_nav ul li:nth-child(2) a {
		padding: 15px 10px;
	}

	header .header_nav_area .sp_header_bottom_area {
		display: block;
		font-size: 12px;
		letter-spacing: 0.06em;
		line-height: 2;
	}
	header .header_nav_area .sp_header_bottom_area a {
		color: #111111;
	}

	header .header_nav_area .sp_header_bottom_area .logo_area {
		margin-bottom: 3px;
	}

	header.is_white .header_hamburger.active span {
		background: #888;
	}

	header.is_white .header_text_nav ul li {
		margin-bottom: 40px;
	}

	header.is_white .header_text_nav ul li a {
		color: #111;
	}

	header.is_white .header_nav_area.active .header_use_nav ul li a {
		border: none;
		color: #111;
	}

	header.is_white .header_nav_area.active .header_sns_nav ul svg .sns_line {
		stroke: #111;
	}

	header.is_white .header_nav_area.active .header_sns_nav ul svg .sns_logo {
		fill: #111;
	}

	header.is_white
		.header_nav_area.active
		.header_contact_nav
		ul
		li:nth-child(1)
		a {
		color: #111;
		border-color: #111;
	}
}

@media screen and (max-width: 768px) {
	.inner960 {
		padding: 0 24px;
	}

	.pc {
		display: none;
	}

	.sp {
		display: block;
	}

	footer {
		padding: 50px 24px 50px;
	}

	footer .sp_btn_area {
		display: block;
		margin-bottom: 55px;
		font-weight: 500;
	}

	footer .sp_btn_area ul li:nth-child(1) {
		margin-bottom: 23px;
	}

	footer .sp_btn_area ul li:nth-child(2) {
	}

	footer .sp_btn_area ul li:nth-child(1) a {
		background-color: #fff;
		color: #000;
		display: block;
		height: 64px;
		border-radius: 48px;
		font-size: 22px;
		text-align: center;
		line-height: 64px;
	}

	footer .sp_btn_area ul li:nth-child(2) a {
		display: block;
		background-color: #000;
		color: #fff;
		border-radius: 48px;
		width: 52.3vw;
		height: 52px;
		line-height: 52px;
		border-radius: 48px;
		margin: 0 auto;
		text-align: center;
		border: 1px solid #fff;
		font-size: 18px;
	}

	footer .footer_top_container {
		display: block;
		margin-bottom: 40px;
	}

	footer .footer_logo {
		margin-bottom: 40px;
	}

	footer .footer_logo img {
		width: 80.76vw;
	}

	footer .address_area {
		line-height: 26px;
		letter-spacing: 0.06em;
		margin-bottom: 30px;
	}

	footer .right_container {
		display: block;
	}

	footer .right_container .btn_area ul {
		display: none;
	}

	footer .right_container .btn_area ul li {
		width: 100%;
		margin-bottom: 20px;
	}

	footer .right_container .btn_area ul li:nth-child(1) a {
		font-size: 12px;
		padding: 10px 15px;
	}

	footer .right_container .btn_area ul li:nth-child(2) a {
		font-size: 12px;
		padding: 10px 15px;
	}

	footer .right_container .sns_area ul {
		justify-content: flex-start;
		gap: 15px;
	}

	footer .right_container .footer_main_nav ul {
		max-width: unset;
		margin-right: 0;
		margin-bottom: 0;
		width: 100%;
	}

	footer .right_container .footer_main_nav ul li {
		width: 100%;
		margin-bottom: 28px;
	}

	footer .right_container .footer_main_nav ul li:nth-child(1) {
		order: 1;
	}

	footer .right_container .footer_main_nav ul li:nth-child(2) {
		order: 4;
	}

	footer .right_container .footer_main_nav ul li:nth-child(3) {
		order: 2;
	}

	footer .right_container .footer_main_nav ul li:nth-child(4) {
		order: 5;
		margin-bottom: 13px;
	}

	footer .right_container .footer_main_nav ul li:nth-child(5) {
		order: 3;
	}

	footer .right_container .footer_main_nav ul li:nth-child(6) {
		order: 6;
	}

	footer .right_container .footer_main_nav ul li a {
		font-size: 14px;
	}

	footer .footer_bottom_nav {
		margin-bottom: 15px;
	}

	footer .footer_bottom_nav ul {
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	footer .footer_bottom_nav ul li {
		padding: 0;
		border: none;
		width: 50%;
		margin-bottom: 20px;
	}

	footer .footer_bottom_nav ul li:first-child {
		border: none;
	}

	footer .footer_bottom_nav ul li a::before {
		content: none;
	}
}
