/* foundation --------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
	color: #0a0205;
}

body {
	color: rgba(10, 2, 5, 0.7);
}

/* layout ------------------------------- */

/* section */
.section {
	--section-space: 100px;

	margin-top: var(--section-space);
}

@media screen and (max-width: 768px) {
	.section {
		--section-space: 60px;
	}
}

/* container */
.container {
	width: min(100% - 160px, 1500px);
	margin-inline: auto;
}

@media screen and (max-width: 1200px) {
	.container {
		width: calc(100% - 120px);
	}
}

@media screen and (max-width: 768px) {
	.container {
		width: calc(100% - 80px);
	}
}

@media screen and (max-width: 576px) {
	.container {
		width: calc(100% - 40px);
	}
}

.container-lg {
	width: min(100% - 120px, 1700px);
	margin-inline: auto;
}

@media screen and (max-width: 1200px) {
	.container-lg {
		width: calc(100% - 100px);
	}
}

@media screen and (max-width: 768px) {
	.container-lg {
		width: calc(100% - 80px);
	}
}

@media screen and (max-width: 576px) {
	.container-lg {
		width: calc(100% - 40px);
	}
}

/* utility ------------------------------ */

/* visually-hidden */
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	white-space: nowrap;
	border: 0;
	clip: rect(0 0 0 0);
}

/* component ---------------------------- */

/* btn */
.btn {
	display: inline-flex;
	align-items: center;
	padding-block: 12px;
}

.btn i {
	display: block;
	box-sizing: border-box;
	width: 40px;
	height: 20px;
	margin-right: 10px;
	background-image: url('../../assets/images/common/icn_arrow_r.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 15px auto;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	transition: border-color 250ms ease;
	content: '';
}

@media (hover: hover) {
	.btn:hover i {
		border-color: rgb(0, 0, 0);
	}
}

.btn p {
	font-size: 1.3rem;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
	.btn p {
		font-size: 1.2rem;
	}
}

/* card */
.card {
	display: flex;
	flex-direction: column;
}

/* media, image */
.card__media,
.card__image {
	border-radius: 10px;
}

/* media */
.card__media {
	background-color: rgba(0, 0, 0, 0.03);
}

/* image */
.card__image {
	filter: grayscale(1);
}

/* body */
.card__body {
	display: flex;
	flex-direction: column;
}

/* ttl */
.card__ttl {
	display: flex;
	flex-direction: column;
	margin-top: 24px;
}

/* post */
.card__post {
	font-size: 1.2rem;
	letter-spacing: 0.05em;
}

/* name */
.card__name {
	margin-top: 14px;
	font-size: 2.4rem;
	font-family: 'Josefin Sans', sans-serif;
}

@media screen and (max-width: 768px) {
	.card__name {
		margin-top: 12px;
		font-size: 2.2rem;
	}
}

@media screen and (max-width: 400px) {
	.card__name {
		margin-top: 10px;
		font-size: 2rem;
	}
}

/* main */
.card__main {
	margin-top: 12px;
}

/* desc */
.card__desc {
	font-size: 14px;
	line-height: 1.78;
	letter-spacing: 0.05em;
}

.card__desc span {
	display: inline-block;
}

/* list */
.list {
	display: grid;
	grid-template: 'body head' auto/max(15vw, 300px) 1fr;
	-moz-column-gap: 8vmax;
	column-gap: 8vmax;
}

@media screen and (max-width: 1200px) {
	.list {
		grid-template: 'body head' auto/max(15vw, 260px) 1fr;
		-moz-column-gap: 6vmax;
		column-gap: 6vmax;
	}
}

@media screen and (max-width: 768px) {
	.list {
		grid-template: 'head' auto 'body' auto/1fr;
	}
}

/* media, image */
.list__media,
.list__image {
	border-radius: 10px;
}

/* head */
.list__head {
	grid-area: head;
	height: -moz-fit-content;
	height: fit-content;
}

@media screen and (max-width: 768px) {
	.list__head {
		grid-row: 1/2;
		grid-column: 1/-1;
	}
}

/* body */
.list__body {
	position: relative;
	top: -8px;
	grid-area: body;
	font-size: 1.6rem;
	line-height: 2.5;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
	.list__body {
		top: 0;
		grid-row: 2/3;
		grid-column: 1/-1;
		margin-top: 18px;
		text-align: center;
	}
}

/* ttl */
.list__ttl {
	display: flex;
	flex-direction: column;
	font-size: 2.4rem;
	line-height: 1.78;
}

@media screen and (max-width: 992px) {
	.list__ttl {
		font-size: 2.2rem;
	}
}

@media screen and (max-width: 768px) {
	.list__ttl {
		font-size: 2rem;
	}
}

/* brand */
.list__brand {
	font-size: 1.2rem;
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

/* name */
.list__name {
	letter-spacing: 0.05em;
}

/* main */
.list__main {
	margin-top: 18px;
	font-size: 1.4rem;
	line-height: 1.78;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
	.list__main {
		margin-top: 12px;
		font-size: 1.3rem;
	}
}

/* desc */
.list__desc span {
	display: inline-block;
}

/* footer */
.list__footer {
	margin-top: 20px;
}

@media screen and (max-width: 768px) {
	.list__footer {
		margin-top: 4px;
	}
}

/* detail */
.detail {
	width: 100%;
	line-height: 1.67;
}

/* group */
.detail__group {
	position: relative;
	display: flex;
	padding-block: 32px;
	flex-direction: row;
}

@media screen and (max-width: 576px) {
	.detail__group {
		flex-direction: column;
	}
}

.detail__group::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #000;
	opacity: 0.1;
	content: '';
}

.detail__group:last-child::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #000;
	opacity: 0.1;
	content: '';
}

/* term */
.detail__term {
	flex-shrink: 0;
	width: 120px;
}

/* desc */
@media screen and (max-width: 576px) {
	.detail__desc {
		margin-top: 12px;
	}
}

.detail__desc span {
	display: inline-block;
}

/* group-depth2 */
.detail__group-depth2:nth-child(n+2) {
	margin-top: 28px;
}

/* pagehead section ---------------------- */

/* image */
.pagehead__image {
	background-color: rgba(0, 0, 0, 0.03);
}

/* concept section ---------------------- */

/* head */
.concept__head {
	display: flex;
	flex-direction: column;
}

@media screen and (max-width: 768px) {
	.concept__head {
		text-align: center;
	}
}

/* ttl */
.concept__ttl {
	overflow: hidden;
	font-size: 2rem;
	font-family: 'Josefin Sans', sans-serif;
}

.concept__ttl .char {
	display: inline-block;
	transform: translateY(20px);
	opacity: 0;
}

/* copy */
.concept__copy {
	width: min(100%, 1100px);
	margin-top: 40px;
	line-height: 1.75;
	letter-spacing: 0.05em;
}

.concept__copy > p {
	display: block;
}

@media screen and (max-width: 768px) {
	.concept__copy > p + p {
		margin-top: 24px;
	}
}

.concept__copy > p > span {
	display: block;
}

@media screen and (max-width: 576px) {
	.concept__copy > p > span + span {
		margin-top: 32px;
	}
}

@media screen and (max-width: 576px) {
	.concept__copy > p > span > span {
		display: block;
	}
}

.concept__copy > p .char {
	display: inline-block;
	color: transparent;
}

/* body */
.concept__body {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	margin-top: 130px;
	-moz-column-gap: 12px;
	column-gap: 12px;
}

@media screen and (max-width: 768px) {
	.concept__body {
		grid-template-columns: 1fr;
	}
}

/* media, image */
.concept__media,
.concept__image {
	z-index: 1;
	border-radius: 10px;
}

/* media */
.concept__media {
	grid-column: 1/5;
	height: -moz-fit-content;
	height: fit-content;
}

@media screen and (max-width: 1200px) {
	.concept__media {
		grid-column: 1/6;
	}
}

@media screen and (max-width: 768px) {
	.concept__media {
		grid-column: 1/-1;
	}
}

/* desc */
.concept__desc {
	position: relative;
	top: -10px;
	grid-column: 6/-1;
	font-size: 1.6rem;
	line-height: 2.5;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 1200px) {
	.concept__desc {
		grid-column: 7/-1;
		font-size: 1.5rem;
		line-height: 2.25;
	}
}

@media screen and (max-width: 768px) {
	.concept__desc {
		position: block;
		top: 0;
		grid-column: 1/-1;
		margin-top: 24px;
		font-size: 1.4rem;
		line-height: 2;
	}
}

.concept__desc span {
	display: block;
}

/* stuff section ------------------------ */

/* stuff */
.stuff {
	margin-block: var(--section-space);
}

/* bg */
.stuff__bg {
	position: relative;
	top: -40px;
	padding-bottom: 90px;
	overflow: hidden;
}

@media screen and (max-width: 992px) {
	.stuff__bg {
		top: 0;
		padding-top: 90px;
	}
}

/* txt */
.stuff__txt {
	position: relative;
	left: -20%;
	color: rgba(10, 2, 5, 0.1);
	font-size: 15rem;
	font-family: 'Josefin Sans', sans-serif;
	letter-spacing: -0.05em;
	white-space: nowrap;
}

@media screen and (max-width: 1200px) {
	.stuff__txt {
		font-size: 13rem;
	}
}

@media screen and (max-width: 768px) {
	.stuff__txt {
		font-size: 12rem;
	}
}

@media screen and (max-width: 576px) {
	.stuff__txt {
		font-size: 10rem;
	}
}

/* cards */
.stuff__cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	-moz-column-gap: 60px;
	column-gap: 60px;
	row-gap: 60px;
}

@media screen and (max-width: 1200px) {
	.stuff__cards {
		grid-template-columns: repeat(3, 1fr);
		-moz-column-gap: 45px;
		column-gap: 45px;
		row-gap: 45px;
	}
}

@media screen and (max-width: 768px) {
	.stuff__cards {
		grid-template-columns: repeat(2, 1fr);
		-moz-column-gap: 30px;
		column-gap: 30px;
		row-gap: 30px;
	}
}

@media screen and (max-width: 400px) {
	.stuff__cards {
		grid-template-columns: repeat(1, 1fr);
	}
}

/* shop section ------------------------- */

/* inner */
.shop__inner {
	padding-top: var(--section-space);
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* head */
@media screen and (max-width: 768px) {
	.shop__head {
		text-align: center;
	}
}

/* ttl */
.shop__ttl {
	overflow: hidden;
	font-size: 3rem;
	font-family: 'Josefin Sans', sans-serif;
}

@media screen and (max-width: 992px) {
	.shop__ttl {
		font-size: 2.8rem;
	}
}

@media screen and (max-width: 768px) {
	.shop__ttl {
		font-size: 2.6rem;
	}
}

.shop__ttl .char {
	display: inline-block;
	transform: translateY(20px);
	opacity: 0;
}

/* body */
.shop__body {
	margin-top: 130px;
}

@media screen and (max-width: 992px) {
	.shop__body {
		margin-top: 80px;
	}
}

@media screen and (max-width: 768px) {
	.shop__body {
		margin-top: 40px;
	}
}

/* list */
.shop__list:nth-child(n+2) {
	margin-top: 130px;
}

@media screen and (max-width: 992px) {
	.shop__list:nth-child(n+2) {
		margin-top: 80px;
	}
}

@media screen and (max-width: 768px) {
	.shop__list:nth-child(n+2) {
		margin-top: 40px;
	}
}

/* company section ------------------------- */

/* company */
.company {
	padding-bottom: 180px;
}

@media screen and (max-width: 992px) {
	.company {
		padding-bottom: 120px;
	}
}

@media screen and (max-width: 768px) {
	.company {
		padding-bottom: 60px;
	}
}

/* inner */
.company__inner {
	display: grid;
	grid-template: 'head body' auto/max(15vw, 300px) 1fr;
	margin-top: 130px;
	padding-top: var(--section-space);
	-moz-column-gap: 8vmax;
	column-gap: 8vmax;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1200px) {
	.company__inner {
		grid-template: 'head body' auto/max(15vw, 260px) 1fr;
		-moz-column-gap: 6vmax;
		column-gap: 6vmax;
	}
}

@media screen and (max-width: 992px) {
	.company__inner {
		grid-template: 'head' auto 'body' auto/1fr;
		margin-top: 40px;
	}
}

/* head */
.company__head {
	grid-area: head;
}

@media screen and (max-width: 768px) {
	.company__head {
		text-align: center;
	}
}

/* ttl */
.company__ttl {
	overflow: hidden;
	font-size: 3rem;
	font-family: 'Josefin Sans', sans-serif;
}

@media screen and (max-width: 992px) {
	.company__ttl {
		font-size: 2.8rem;
	}
}

@media screen and (max-width: 768px) {
	.company__ttl {
		font-size: 2.6rem;
	}
}

.company__ttl .char {
	display: inline-block;
	transform: translateY(20px);
	opacity: 0;
}

/* body */
.company__body {
	letter-spacing: 0.05em;
}

@media screen and (max-width: 992px) {
	.company__body {
		margin-top: 80px;
	}
}

@media screen and (max-width: 768px) {
	.company__body {
		margin-top: 40px;
	}
}
