@charset "utf-8";
/* Global Styles */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
.sawarabi-mincho-regular {
	font-family: "Sawarabi Mincho", serif;
	font-weight: 400;
	font-style: normal;
}
.libre-baskerville-regular {
	font-family: "Libre Baskerville", serif;
	font-weight: 400;
	font-style: normal;
}
.libre-baskerville-bold {
	font-family: "Libre Baskerville", serif;
	font-weight: 700;
	font-style: normal;
}
.libre-baskerville-regular-italic {
	font-family: "Libre Baskerville", serif;
	font-weight: 400;
	font-style: italic;
}
:root {
	--primary-color: white;
	--background-color: black;
	--secondary-color: #d0518d;
	--main-font: "Sawarabi Mincho", serif;
	--en-font: "Libre Baskerville", serif;
}
.container {
	max-width: 1200px;
	margin: 0 auto;
}
/* Header Styles */
header {
	background-color: var(--background-color);
	position: fixed; /* ヘッダーを固定 */
	top: 0; /* 上部に配置 */
	width: 100%; /* 横幅を100%に設定 */
	z-index: 1000; /* 他の要素より前面に表示 */
}
/* コンテンツをヘッダーの高さ分だけ下にずらす */
body {
	padding-top: 90px;
}
header .container {
	max-width: 1200px;
	font-family: var(--main-font);
	font-weight: 400;
	font-style: normal;
	background-color: var(--background-color);
	color: var(--primary-color);
	padding: 30px 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
header .container h2 a {
	color: var(--primary-color);
	text-align: left;
	text-decoration: none;
}

header nav {
	display: flex;
	align-items: center;
}
header nav ul {
	text-align: right;
	list-style: none;
	margin: 0 0 0 auto;
}
header ul li {
	display: inline;
	padding: 0 15px;
}
header ul li a {
	color: var(--primary-color);
	text-decoration: none;
}
header ul li a:hover {
	color: pink;
	text-decoration: none;
}
.menu {
	display: none;
}
/* Footer Styles */
footer {
	background-color: var(--background-color);
}
footer .container {
	font-family: var(--main-font);
	font-weight: 400;
	font-style: normal;
	background-color: var(--background-color);
	color: var(--primary-color);
	text-align: center;
	padding: 50px 0;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
footer .center-container {
	flex: 1;
	text-align: center;
	justify-content: center;
}
footer .right-container {
	display: flex;
	gap: 20px;
}
footer .right-container img {
	width: 24px;
	height: 24px;
}
/*pad版*/
@media (max-width: 960px) {
	header .container {
		width: 860px;
	}
	header .container h2 {
		font-size: 24px;
	}
	footer .container {
		width: 860px;
		display: flex;
		flex-flow: column;
	}
	footer .center-container {
		padding-bottom: 10px;
	}
}
/*mobile版*/
@media(max-width: 768px) {
	header .container {
        max-width: 700px;
		width: 100%;
		padding: 30px;
	}
	header .container h2 {
		font-size: 20px;
	}
	.right-menu {
		display: none;
	}
	/*burger*/
	.burger {
		width: 40px;
		height: 40px;
		background-image: url(../images/burger-menu.svg);
		background-size: 24px;
		background-position: center;
		background-repeat: no-repeat;
		margin: 0 0 0 20px;
		border-radius: 5px;
		position: relative;
		z-index: 2;
	}
	.burger:hover {
		background-color: pink;
		cursor: pointer;
	}
	.burger.is-active {
		background-image: url(../images/burger-close.svg);
	}
	/*menu*/
	.menu {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 50vw;
		height: 100vh;
		background-color: var(--background-color);
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1;
		display: none;
	}
	
	.menu ul li {
		display: block;
		padding: 20px 20px 20px 0;
	}
	.menu.is-active {
		display: flex;
	}
	footer .container {
		width: 100%;
		display: flex;
		flex-flow: column;
	}
	footer .center-container {
		padding-bottom: 10px;
	}
}