@charset "UTF-8";

body {
	font-family: 'Noto Sans JP', sans-serif;
	/* overflow: hidden; */
}

:root {
	letter-spacing: .06em;
	line-height: 1.6;
	font-size: 16px;
	color: #242528;
	--black: #242528;
	--gray: #c3c3c3
}

/* スクロールアニメーション */
.scroll-target {
	opacity: 0;
	transform: translateY(20px);
	transition: all ease 1s;
}

.scroll-target.active {
	opacity: 1;
	transform: translateY(0);
}



/* セクション */
.section {
	width: 100%;
	padding: 0 5vw;
	display: flex;
	justify-content: center;
}

.section-inner {
	width: min(1100px, 100%);
}

.section-title {
	font-family: 'Bellefair';
	font-size: 20px;
	margin-bottom: 40px;
}

/* リード */
.page-title__cover {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-bottom: 40px;
	border-bottom: 1px dotted var(--black);
}

.page-title__text--main {
	font-family: 'Bellefair';
	font-size: 2rem;
	line-height: 1.35;
	letter-spacing: normal;
}

/* カテゴリー */
.category {
	padding-bottom: 140px;
}

.category__title {
	font-family: 'Bellefair';
}

.category__cover {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5vw;
}

.category__group {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	padding-top: 10px;
	border-top: 1px dotted var(--black);
}

.category__top-group {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	width: 100%;
}

.category__icon::before {
	content: "\f061";
	font-family: Font Awesome\ 6 Free;
	font-weight: 900;
}

.category__archive {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	width: 100%;
}

.category__archive-li {
	padding: 10px 0;
	width: 100%;
}

.category__archive-li a {
	display: block;
	width: 100%;
}

.category__archive-title {
	font-size: 0.875rem;
}

.category__archive-date {
	color: var(--gray);
	font-family: 'Open Sans';
	font-size: 12px;
	font-weight: 600;
}


/* ギャラリー */
.gallery {
	background-color: #e5e5e5ff;
	padding: 100px 5vw;
	filter: blur(100px);
	transition: filter 1s ease
}

.gallery.active {
	filter: blur(0);
	transform: translate(0, 0);
}


.gallery__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}

.gallery__img--left {
	width: 415px;
}

.gallery__cover--right {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.gallery__img--right {
	width: 342px;
}

.garalley__text-cover {
	font-family: 'Shippori Mincho';
	font-size: .88rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 40px;
	width: fit-content;
	padding-left: 15%;
	font-feature-settings: 'palt' 1;
}

.gallery__btn {
	border: solid 1px black;
	padding: 10px 30px;
	width: 200px;
	display: inline-block;
}


/* パンくずリスト */
.bread-li {
	display: flex;
	justify-content: left;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 24px;
	font-size: 12px;
	color: var(--gray);
	font-weight: 600;
}

.bread-li a {
	display: block;
}

.bread-li li:not(:last-child) {
	padding-right: 20px;
	position: relative;
}

.bread-li li:not(:last-child)::before {
	content: "/";
	position: absolute;
	right: 7px;
	top: 0;
}



/* メイン */
.main {
	width: 100%;
	padding-top: 130px;
}

/* ヘッダー */
.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	padding: 34px 5vw 22px 5vw;
	display: flex;
	justify-content: center;
	background-color: #fff;
}

.header__inner {
	width: 100%;
	height: fit-content;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.header__nav ul {
	display: flex;
	gap: 36px;
	font-family: 'Poppins', 'Shippori Mincho', 'Bellefair';
	font-size: .75rem;
	letter-spacing: .03em;
	color: #1e1e1e;
}

.header__nav-link {
	position: relative;
}

.header__nav-link::before {
	content: "";
	width: 4px;
	height: 4px;
	border-radius: 10px;
	background-color: #1e1e1e;
	position: absolute;
	top: -7px;
	left: 50%;
	transform: translate(-50%, -50%);
	scale: 0;
	transition: scale .3s ease;
}

.header__nav-link:hover::before {
	scale: 1;
	transform-origin: center;
}

.header__title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #313131ff;
	font-family: 'Bellefair', 'Shippori Mincho';
	font-size: 24px;
	line-height: 1;
}

.header__contact {
	font-family: 'Poppins', 'Shippori Mincho', 'Bellefair';
	font-size: .75rem;
	letter-spacing: .03em;
	color: #1e1e1e;
}

.header__contact-link {
	position: relative;
}

.header__contact-link::before {
	content: "";
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: #1e1e1e;
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translate(-50%, -50%);
	scale: 0;
	transition: scale .3s ease;
}

.header__contact-link:hover::before {
	scale: 1;
	transform-origin: center;
}


.hum-btn {
	transform: rotate(90deg);
	font-size: 20px;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	display: none;
}

.hum-btn::before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f02a";
	color: #313131ff;
}


/* ハンバーガーメニュー */
.hum-menu {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 200;
	width: 100%;
	height: 100%;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transform: translateY(100vh);
	transition: transform 0s ease, opacity .5s ease;
}

.hum-menu.active {
	opacity: 1;
	transform: translateY(0);
}


.hum-menu__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 52px;
}

.hum-menu__nav ul {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	letter-spacing: .03rem;
	line-height: 1.4;
	color: #1e1e1e;
}

.hum-menu__icon-group {
	display: flex;
	gap: 20px;
	font-weight: 400;
	color: #333333;
	font-size: 18px;
}

.hum-menu__icon--star::before {
	font-family: "Font Awesome\ 6 Free";
	content: "\f005";
	font-weight: 900;
}

.hum-menu__icon--instagram::before {
	font-family: "Font Awesome\ 6 Brands";
	content: "\f16d";
}

.hum-menu__icon--journal::before {
	font-family: "Font Awesome\ 6 Free";
	content: "\f5ad";
	font-weight: 900;
}

.hum-menu__btn--close {
	width: 35px;
	aspect-ratio: 1/1;
	position: absolute;
	top: 25px;
	right: 25px;
}

.hum-menu__btn--close>* {
	width: 35px;
	height: 1px;
	background-color: #1e1e1e;
	position: absolute;
	top: 50%;
	left: 50%;
}

.hum-menu__btn-icon--01 {
	transform: translate(-50%, -50%) rotate(45deg);
}

.hum-menu__btn-icon--02 {
	transform: translate(-50%, -50%) rotate(-45deg);
}


/* フッター */
.footer {
	width: 100%;
	padding: 80px 5vw 60px;
	background-color: #1e1e1e;
	color: #fff;
	display: flex;
	justify-content: center;
	transform: translateY(0);
}

.footer__inner {
	width: min(1200px, 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 50px;
}

.footer__group--top {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer__logo {
	font-family: 'Bellefair', 'Shippori Mincho';
	font-size: 28px;
	letter-spacing: .03em;
}

.footer__nav ul {
	display: flex;
	gap: 36px;
	font-size: .75rem;
	letter-spacing: .03rem;
}



.footer__nav-link {
	position: relative;
}

.footer__nav-link::before {
	content: "";
	width: 4px;
	height: 4px;
	border-radius: 10px;
	background-color: #fff;
	position: absolute;
	top: -7px;
	left: 50%;
	transform: translate(-50%, -50%);
	scale: 0;
	transition: scale .3s ease;
}

.footer__nav-link:hover::before {
	scale: 1;
	transform-origin: center;
}

.footer__group--bottom {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer__icon-group {
	display: flex;
	gap: 30px;
	font-weight: 400;
	color: #8c8c8c;
	font-size: 20px;
}

.footer__icon-group li>* {
	padding: 10px;
}

.footer__icon--instagram::before {
	font-family: "Font Awesome\ 6 Brands";
	content: "\f16d";
}

.footer__icon--journal::before {
	font-family: "Font Awesome\ 6 Free";
	content: "\f5ad";
	font-weight: 900;
}

.footer__icon--threads::before {
	font-family: "Font Awesome\ 6 Brands";
	content: "\e618";
}

.copy-right {
	font-family: 'Poppins', 'Shippori Mincho', 'Bellefair';
	font-size: 10px;
	letter-spacing: .03rem;
}



@media(max-width:800px) {

	/* カテゴリー */
	.category__cover {
		grid-template-columns: repeat(2, 1fr);
		gap: 5vw 10vw;
	}

	/* ギャラリー */
	.gallery__inner {
		flex-direction: column-reverse;
		width: min(415px, 85%);
		gap: 7vw;
	}

	.gallery__img--left {
		width: 100%;
	}

	.gallery__cover--right {
		align-items: center;
	}

	.gallery__img--right {
		width: 100%;
		opacity: .5;
	}

	.garalley__text-cover {
		align-items: center;
		gap: 7vw;
		padding-left: 0;
		width: 100%;
	}

	.gallery__text {
		text-align: center;
	}

	.gallery__btn {
		text-align: center;
		border-radius: 64px;
		width: min(100%, 250px);
	}
}


@media(max-width:540px) {

	/* リード */
	.page-title__cover {
		padding-bottom: 48px;
	}

	/* カテゴリー */
	.category {
		padding: 30px 5vw;
	}

	.category__cover {
		grid-template-columns: repeat(1, 1fr);
		gap: 0;
	}

	.category__group {
		padding-top: 0;
	}

	.category__top-group {
		padding: 15px 0;
	}

	.category__title {
		line-height: 1.2;
	}

	.category__archive {
		display: none;
	}


	/* ギャラリー */
	.gallery {
		padding: 50px 5vw;
	}


	/* ヘッダー */
	.header {
		padding: 22px 5vw;
	}

	.header__nav {
		display: none;
	}

	.header__title {
		position: static;
		transform: translate(0, 0);
		font-size: 24px;
	}

	.header__contact {
		display: none;
	}

	.hum-btn {
		display: block;
	}


	/* フッター */
	.footer {
		padding-bottom: 80px;
	}

	.footer__inner {
		gap: 32px;
	}

	.footer__group--top {
		justify-content: center;
	}

	.footer__logo {
		font-size: 24px;
	}

	.footer__nav {
		display: none;
	}

	.footer__group--bottom {
		align-items: center;
		flex-direction: column;
		gap: 40px;
	}

}