/* 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-sm {
	width: min(100% - 200px, 1500px);
	margin-inline: auto;
}

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

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

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

.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: 6px;
}

@media screen and (max-width: 1200px) {
	.btn {
		padding-block: 4px;
	}
}

@media screen and (max-width: 768px) {
	.btn {
		padding-block: 2px;
	}
}

.btn i {
	display: block;
	box-sizing: border-box;
	width: 40px;
	height: 20px;
	background-image: url('../../assets/images/common/icn_arrow_r.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 15px auto;
	border: 1px solid transparent;
	border-radius: 10px;
	content: '';
}

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

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

/* desc */
.desc {
	display: flex;
	flex-direction: column;
	height: 100%;
}

/* ttl */
.desc__ttl {
	display: flex;
	flex-direction: column;
	font-size: 2.4rem;
	letter-spacing: 0.05em;
}

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

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

.desc__ttl span:first-child {
	color: #000;
	font-size: 1.4rem;
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

@media screen and (max-width: 992px) {
	.desc__ttl span:first-child {
		font-size: 1.3rem;
	}
}

@media screen and (max-width: 768px) {
	.desc__ttl span:first-child {
		font-size: 1.2rem;
	}
}

.desc__ttl span + span {
	margin-top: 8px;
}

/* main */
.desc__main {
	margin-top: 52px;
}

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

.desc__main p + p {
	margin-top: 12px;
}

@media screen and (max-width: 992px) {
	.desc__main p + p {
		margin-top: 8px;
	}
}

/* address */
.desc__address,
.desc__time {
	font-size: 1.4rem;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 992px) {
	.desc__address,
	.desc__time {
		font-size: 1.3rem;
	}
}

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

/* tel */
.desc__tel {
	color: #000;
	font-size: 2rem;
	letter-spacing: 0.025em;
}

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

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

/* footer */
.desc__footer {
	margin-top: auto;
}

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

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

/* transport */
.desc__transport {
	display: inline-flex;
	align-items: center;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
}

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

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

.desc__transport i,
.desc__transport svg {
	display: block;
	width: 15px;
	height: 18px;
}

.desc__transport span {
	margin-left: 4px;
}

/* roots */
.desc__roots {
	margin-top: 14px;
}

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

/* root */
.desc__root {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 1.4rem;
	letter-spacing: 0.05em;
}

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

@media screen and (max-width: 768px) {
	.desc__root {
		justify-content: center;
		font-size: 1.2rem;
	}
}

.desc__root a {
	margin-left: 40px;
}

@media screen and (max-width: 992px) {
	.desc__root a {
		margin-left: 32px;
	}
}

@media screen and (max-width: 768px) {
	.desc__root a {
		margin-left: 16px;
	}
}

.desc__root a i {
	transition: transform 250ms ease;
}

@media (hover: hover) {
	.desc__root a:hover i {
		transform: translateX(5px);
	}
}

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

/* body */
.list__body {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
	text-transform: none;
}

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

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

/* company */
.list__company {
	margin-right: 12px;
	font-size: 1.1rem;
	text-transform: uppercase;
}

/* ttl */
.list__ttl {
	display: flex;
	align-items: center;
}

/* name */
.list__name {
	font-size: 2rem;
}

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

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

/* footer */
.list__footer .btn i {
	margin-right: 10px;
	border-color: rgba(0, 0, 0, 0.1);
	transition: border-color 250ms ease;
}

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

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

/* title */
.pagehead__title {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 8rem;
}

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

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

.pagehead__title span:first-child {
	font-size: 2.4rem;
	text-transform: uppercase;
}

@media screen and (max-width: 992px) {
	.pagehead__title span:first-child {
		font-size: 2rem;
	}
}

@media screen and (max-width: 576px) {
	.pagehead__title span:first-child {
		font-size: 1.6rem;
	}
}

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

/* blog -------------------------------------- */
.blog {
	position: relative;
}

.blog__title {
	color: rgb(0, 0, 0);
	font-size: 3.5rem;
	font-family: 'Josefin Sans', sans-serif;
	line-height: 1.6;
	letter-spacing: -0.05;
}

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

.blog-more {
	position: absolute;
	top: 20px;
	right: 0;
}

@media screen and (max-width: 768px) {
	.blog-more {
		top: 10px;
	}
}

.blog-more a {
	display: flex;
	font-size: 1.3rem;
	line-height: 1.6;
}

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

.blog-more a::before {
	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) {
	.blog-more a:hover::before {
		border-color: rgb(0, 0, 0);
	}
}

.blog-list {
	--hbg: calc((100vw - 100% - var(--scrollbar-width)));

	box-sizing: border-box;
	width: calc(100% + var(--hbg));
	margin-top: 40px;
	margin-left: calc(-1 * var(--hbg) / 2);
	overflow-x: hidden;
}

@media screen and (max-width: 992px) {
	.blog-list {
		margin-top: 32px;
	}
}

@media screen and (max-width: 768px) {
	.blog-list {
		margin-top: 10px;
		padding-bottom: 24px;
		overflow-x: auto;
	}
}

.blog-list__wrap {
	display: flex;
}

.blog-list__item {
	flex-basis: 260px;
	min-width: 260px;
	max-width: 260px;
	margin-right: 50px;
}

@media screen and (max-width: 768px) {
	.blog-list__item {
		flex-basis: 220px;
		min-width: 220px;
		max-width: 220px;
		margin-right: 30px;
	}
}

.blog-list__item:last-of-type {
	margin-right: 0;
}

@media screen and (max-width: 768px) {
	.blog-list__item:last-of-type {
		padding-right: 40px;
	}
}

@media screen and (max-width: 576px) {
	.blog-list__item:last-of-type {
		padding-right: 20px;
	}
}

.blog-list__image {
	width: 100%;
	height: 260px;
	overflow: hidden;
	border-radius: 10px;
}

@media screen and (max-width: 768px) {
	.blog-list__image {
		height: 220px;
	}
}

.blog-list__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.blog-list__title {
	margin: 10px 0;
	font-size: 1.6rem;
	line-height: 2;
	line-height: 1.6;
}

@media screen and (max-width: 768px) {
	.blog-list__title {
		font-size: 1.4rem;
	}
}

.blog-list-data {
	display: flex;
	justify-content: space-between;
}

.blog-list-data .image {
	flex-basis: 40px;
	max-width: 40px;
	height: 40px;
	overflow: hidden;
	border-radius: 50%;
}

.blog-list-data .image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.blog-list-data__wrap {
	flex-basis: calc(100% - 50px);
	max-width: calc(100% - 50px);
}

.blog-list-data__wrap span {
	display: block;
	line-height: 1.6;
}

.blog-list-data__wrap .name {
	font-size: 1.3rem;
}

.blog-list-data__wrap .date {
	color: rgba(0, 0, 0, 0.6);
	font-size: 1.1rem;
}

/* indicator */
.blog-swiper__indicator {
	position: relative;
	bottom: -40px;
	left: 0;
	z-index: 10;
	width: 100%;
	margin-inline: auto;
	height: 1px;
}

@media screen and (max-width: 768px) {
	.blog-swiper__indicator {
		bottom: -20px;
	}
}

/* pagination */
.blog-swiper__pagination {
	width: 100%;
	height: 100%;
	font-size: 1.6rem;
	text-align: right;
	background: rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1200px) {
	.blog-swiper__pagination {
		font-size: 1.5rem;
	}
}

@media screen and (max-width: 768px) {
	.blog-swiper__pagination {
		font-size: 1.4rem;
	}
}

@media screen and (max-width: 576px) {
	.blog-swiper__pagination {
		font-size: 1.3rem;
	}
}

/* progressbar */
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: #000;
}

/* concept section ---------------------- */
.concept {
	margin-top: 140px;
}

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

/* inner */
.concept__inner {
	display: grid;
	grid-template: 'main header' auto 'footer header' auto/600px 1fr;
	-moz-column-gap: 100px;
	column-gap: 100px;
}

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

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

@media screen and (max-width: 992px) {
	.concept__inner {
		grid-template: 'main' auto 'footer' auto 'header' auto/1fr;
		-moz-column-gap: 0;
		column-gap: 0;
	}
}

/* header */
.concept__header {
	grid-area: header;
}

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

/* main */
.concept__main {
	grid-area: main;
	font-size: 3rem;
	line-height: 1.67;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 1400px) {
	.concept__main {
		font-size: 2.75rem;
	}
}

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

@media screen and (max-width: 992px) {
	.concept__main {
		font-size: 4vw;
	}
}

@media screen and (max-width: 768px) {
	.concept__main {
		font-size: 4.4vw;
	}
}

/* copy */
.concept__copy > span {
	display: block;
}

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

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

/* footer */
.concept__footer {
	grid-area: footer;
	margin-top: 80px;
	font-size: 1.6rem;
	line-height: 1.875;
	letter-spacing: 0.05em;
	place-self: flex-end;
}

@media screen and (max-width: 1400px) {
	.concept__footer {
		font-size: 1.5rem;
	}
}

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

@media screen and (max-width: 992px) {
	.concept__footer {
		margin-top: 56px;
		font-size: 1.3rem;
	}
}

/* gallery section ------------------------- */

/* inner */
.gallery__inner {
	position: relative;
	padding-top: var(--section-space);
}

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

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

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

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

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

/* body */
.gallery__body {
	--hbg: calc((100vw - 100% - var(--scrollbar-width)));

	width: calc(100% + var(--hbg));
	margin-top: 40px;
	margin-left: calc(-1 * var(--hbg) / 2);
	overflow: hidden;
}

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

@media screen and (max-width: 768px) {
	.gallery__body {
		margin-top: 24px;
		padding-bottom: 24px;
		overflow-x: auto;
	}
}

/* swiper */
.gallery__swiper {
	height: 640px;
}

@media screen and (max-width: 1400px) {
	.gallery__swiper {
		height: 600px;
	}
}

@media screen and (max-width: 1200px) {
	.gallery__swiper {
		height: 540px;
	}
}

@media screen and (max-width: 992px) {
	.gallery__swiper {
		height: 450px;
	}
}

@media screen and (max-width: 768px) {
	.gallery__swiper {
		height: 340px;
	}
}

.gallery-swiper {
	width: 100%;
	height: 100%;
}

/* wrapper */
.gallery-swiper__wrapper {
	width: 100%;
	height: 100%;
	-webkit-transform-style: preserve-3d;
	transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
}

/* slide */
.gallery-swiper__slide {
	width: auto;
	height: 100%;
	-webkit-transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
}

@media screen and (max-width: 768px) {
	.gallery-swiper__slide:last-of-type {
		padding-right: 40px;
	}
}

@media screen and (max-width: 576px) {
	.gallery-swiper__slide:last-of-type {
		padding-right: 20px;
	}
}

/* media, image */
.gallery-swiper__media,
.gallery-swiper__image {
	border-radius: 10px;
}

/* media */
.gallery-swiper__media {
	height: 100%;
}

/* image */
.gallery-swiper__image {
	width: auto;
	height: 100%;
}

/* indicator */
.gallery-swiper__indicator {
	position: absolute;
	bottom: -40px;
	left: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	width: 100%;
}

@media screen and (max-width: 768px) {
	.gallery-swiper__indicator {
		bottom: -35px;
	}
}

/* pagination */
.gallery-swiper__pagination {
	position: static;
	flex-grow: 1;
	height: 1px;
	background: rgba(0, 0, 0, 0.1);
}

/* access section ------------------------- */

/* inner */
.access__inner {
	padding-top: var(--section-space);
}

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

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

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

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

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

/* body */
.access__body {
	margin-top: 40px;
}

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

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

/* address */
.access__address {
	display: grid;
	grid-template: 'map desc' auto/1fr 320px;
	-moz-column-gap: 50px;
	column-gap: 50px;
}

@media screen and (max-width: 992px) {
	.access__address {
		grid-template: 'map' auto 'desc' auto/1fr;
	}
}

/* map */
.access__map {
	position: relative;
	display: block;
	max-height: none;
	overflow: hidden;
	border-radius: 10px;
}

.access__map::before {
	display: block;
	padding-top: 50%;
	content: '';
}

@media screen and (max-width: 992px) {
	.access__map::before {
		padding-top: 60%;
	}
}

@media screen and (max-width: 768px) {
	.access__map::before {
		padding-top: 70%;
	}
}

@media screen and (max-width: 400px) {
	.access__map::before {
		padding-top: 80%;
	}
}

.access__map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

/* desc */
@media screen and (max-width: 992px) {
	.access__desc {
		margin-top: 24px;
	}
}

@media screen and (max-width: 768px) {
	.access__desc {
		margin-top: 24px;
		text-align: center;
	}
}

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

/* shop */
.shop {
	padding-bottom: 180px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

@media screen and (max-width: 576px) {
	.shop {
		padding-bottom: 0;
		border-top: 0;
	}
}

/* inner */
.shop__inner {
	padding-top: var(--section-space);
}

@media screen and (max-width: 576px) {
	.shop__inner {
		display: none;
	}
}

/* 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;
}

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

/* lists */
.shop__lists {
	display: flex;
	-moz-column-gap: 80px;
	column-gap: 80px;
}

@media screen and (max-width: 992px) {
	.shop__lists {
		flex-direction: column;
		-moz-column-gap: 0;
		column-gap: 0;
	}
}

/* list */
@media screen and (max-width: 992px) {
	.shop__list + .shop__list {
		margin-top: 48px;
	}
}
