@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Noto+Serif+JP:wght@400;700&display=swap");

.show-on-pc {
	display: none;
}

@media screen and (min-width: 769px) {
	.show-on-pc {
		display: block;
	}
}

.show-on-sp {
	display: block;
}

@media screen and (min-width: 769px) {
	.show-on-sp {
		display: none;
	}
}

body {
	font-family: "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "Noto Serif JP", serif;
	color: #080808;
	background: #C0C0C0;
}

body .white {
	display: none;
}

body.dark {
	background: #181818;
	color: #fff;
}

body.dark .black {
	display: none;
}

body.dark .white {
	display: block;
}

body.dark .active .black {
	display: block;
}

body.dark .active .white {
	display: none;
}

* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
	transition: all 0.3s;
}

a:hover {
	opacity: 0.6;
}

button:hover {
	opacity: 0.8;
}

figure {
	margin: 0;
}

img {
	width: 100%;
	height: auto;
}

.cinzel {
	font-family: "Cinzel", serif;
}

.uppercase {
	text-transform: uppercase;
}

.main {
	padding-top: 56px;
}

@media screen and (min-width: 769px) {
	.main {
		padding-top: 136px;
	}
}

.header {
	position: fixed;
	width: 100%;
	padding: 10px 16px;
	background: rgba(192, 192, 192, 0.8);
	backdrop-filter: blur(8px);
	z-index: 12;
}

@media screen and (min-width: 769px) {
	.header {
		padding: 28px 64px;
	}
}

.header__logo {
	display: flex;
	width: 32.244px;
}

@media screen and (min-width: 769px) {
	.header__logo {
		width: 42px;
	}
}

.header__wrap {
	display: grid;
	grid-template-columns: 1fr auto auto;
	grid-template-rows: 1fr;
	gap: 0px 0px;
	grid-template-areas: ". . .";
	align-items: center;
}

@media screen and (min-width: 769px) {
	.header__wrap {
		display: flex;
		justify-content: space-between;
		margin-top: 40px;
		max-width: 1312px;
		margin: 33px auto 0;
	}
}

.header .lv1 {
	font-size: 64px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	/* 64px */
	letter-spacing: 2.56px;
}

@media (width > 930px) {
	.header .lv1 {
		margin: 0 0 0 120px;
	}
}

.dark .header {
	background: rgba(24, 24, 24, 0.8);
	backdrop-filter: blur(8px);
	color: #fff;
}

.link {
	font-size: 12px;
	font-style: normal;
	font-weight: 300;
	line-height: 112%;
	display: flex;
	height: 48px;
	padding: 0px 24px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	border-radius: 24px;
	border: 1px solid rgba(0, 0, 0, 0.16);
}

.link__arrow {
	width: 72px;
}

.link.--contact {
	width: 275px;
	margin: 18px auto 0;
}

@media (width > 880px) {
	.link.--contact {
		margin: 0;
		margin-left: auto;
	}
}

.link.--white-line {
	border: 1px solid rgba(255, 255, 255, 0.16);
}

.link.--about {
	margin: 18px auto 0 0;
	display: inline-flex;
}

.link-wrap {
	display: flex;
	justify-content: flex-end;
	margin-top: 32px;
}

.link-wrap.--revers {
	display: block;
}

@media screen and (min-width: 769px) {
	.link-wrap.--revers {
		display: flex;
		gap: 16px;
		flex-direction: row;
	}
}

.link-wrap.--revers .link {
	margin-top: 8px;
}

.contact__link {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #080808;
	font-size: 18.4px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	/* 25.76px */
	letter-spacing: 0.736px;
	margin-right: 9px;
	z-index: 99;
}

@media screen and (min-width: 769px) {
	.contact__link {
		font-size: 20px;
		letter-spacing: 0.8px;
	}
}

.contact__link img {
	width: 24px;
	height: auto;
}

.dark .contact__link {
	color: #fff;
}

.dark .contact__link.active {
	color: #080808;
}

.footer {
	padding: 40px 24px;
	z-index: 0;
	position: relative;
}

@media screen and (min-width: 769px) {
	.footer {
		padding: 96px 64px 64px;
	}
}

@media screen and (min-width: 769px) {
	.footer__wrap {
		display: grid;
		grid-template-columns: 34% auto 1fr;
		grid-template-rows: auto auto auto auto;
		gap: 0px 0px;
		grid-template-areas: "text01 nav caption" "text02 nav caption" "group nav caption" "icons icons caption";
		max-width: 1312px;
		margin: 0 auto;
	}
}

.footer__txt01 {
	font-size: 40px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	/* 40px */
	letter-spacing: 1.6px;
	text-align: center;
}

@media screen and (min-width: 769px) {
	.footer__txt01 {
		grid-area: text01;
		font-size: 80px;
		letter-spacing: 3.2px;
		text-align: left;
		word-break: break-word;
	}
}

.footer__txt02 {
	text-align: center;
	font-size: 12px;
	font-style: normal;
	font-weight: 300;
	line-height: 200%;
	/* 24px */
	letter-spacing: 0.48px;
	margin-top: 17px;
}

@media screen and (min-width: 769px) {
	.footer__txt02 {
		grid-area: text02;
		text-align: left;
		margin-top: 23px;
	}
}

.footer__txt03 {
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	/* 28px */
	letter-spacing: 0.8px;
}

.footer__txt04 {
	font-size: 10.4px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	/* 15.6px */
	letter-spacing: 0.416px;
	text-align: center;
	margin: auto;
	display: block;
	margin-top: 32px;
}

@media screen and (min-width: 769px) {
	.footer__txt04 {
		margin: 0 0 0 40px;
	}
}

.footer__txt04.-mt01 {
	margin-top: 6px;
}

@media screen and (min-width: 769px) {
	.footer__txt04.-mt01 {
		margin: 0 0 0 16px;
	}
}

.footer__group {
	margin-top: 24px;
	display: flex;
	justify-content: center;
	gap: 24px;
}

@media screen and (min-width: 769px) {
	.footer__group {
		grid-area: group;
		justify-content: flex-start;
	}
}

.footer__nav__list {
	display: flex;
	justify-content: center;
	gap: 24px;
	margin-top: 12px;
}

@media screen and (min-width: 769px) {
	.footer__nav__list {
		flex-direction: column;
		margin-left: 32px;
		margin-top: 0;
		gap: 15px 24px;
	}
}

.footer__nav__list:first-of-type {
	margin-top: 26px;
}

@media screen and (min-width: 769px) {
	.footer__nav__list:first-of-type {
		margin-top: 0;
	}
}

@media screen and (min-width: 769px) {
	.footer__nav__list:last-of-type {
		margin-top: 15px;
	}
}

.footer__nav__list__item__link {
	font-size: 11.2px;
	font-style: normal;
	font-weight: 300;
	line-height: 160%;
	/* 17.92px */
	letter-spacing: 0.224px;
}

.footer__nav__list__item__link.cinzel {
	font-size: 12.8px;
	font-style: normal;
	font-weight: 300;
	line-height: 120%;
	letter-spacing: 0.512px;
}

@media screen and (min-width: 769px) {
	.footer__nav__list.--col3 {
		flex-direction: row;
		justify-content: flex-start;
		margin-top: 13px;
	}
}

.footer__nav__list.--col3 .footer__nav__list__item {
	position: relative;
}

.footer__nav__list.--col3 .footer__nav__list__item:not(:last-child):after {
	content: "/";
	display: block;
	position: absolute;
	right: -12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 11px;
}

.footer__icons-outer {
	display: flex;
	flex-direction: column;
}

@media screen and (min-width: 769px) {
	.footer__icons-outer {
		grid-area: icons;
		flex-direction: row;
		align-items: baseline;
		margin-top: 42px;
	}
}

.footer__icons-wrap {
	display: flex;
	justify-content: center;
	gap: 32px;
	margin-top: 34px;
}

@media screen and (min-width: 769px) {
	.footer__icons-wrap {
		margin-top: 0;
	}
}

.footer__nav-item__icon {
	display: block;
	width: 16px;
	height: auto;
}

.footer__nav-item__icon.--youtube {
	width: 20px;
}

@media screen and (min-width: 769px) {
	.footer__nav {
		grid-area: nav;
	}
}

.footer__caption {
	margin-top: 40px;
	display: grid;
	grid-template-columns: 1fr auto 153px 1fr;
	grid-template-rows: auto auto;
	gap: 6px 32px;
	grid-template-areas: ". img text01 ." ". img text02 .";
}

@media screen and (min-width: 769px) {
	.footer__caption {
		grid-area: caption;
		display: flex;
		gap: 6px 32px;
		flex-direction: column;
		align-items: center;
		width: 192px;
		margin-left: auto;
		justify-content: flex-end;
	}
}

.footer__caption figure {
	width: 71.652px;
	grid-area: img;
}

@media screen and (min-width: 769px) {
	.footer__caption figure {
		width: 107px;
	}
}

.footer__caption__txt01 {
	text-align: center;
	font-size: 12px;
	font-style: normal;
	font-weight: 300;
	line-height: 180%;
	/* 21.6px */
	letter-spacing: 0.96px;
	grid-area: text01;
}

@media screen and (min-width: 769px) {
	.footer__caption__txt01 {
		margin-top: 38px;
	}
}

.footer__caption__txt02 {
	text-align: center;
	font-size: 8px;
	font-style: normal;
	font-weight: 300;
	line-height: 160%;
	/* 12.8px */
	letter-spacing: 0.64px;
	grid-area: text02;
}

@media screen and (min-width: 769px) {
	.footer__caption__txt02 {
		font-size: 8.8px;
		letter-spacing: 0.704px;
		margin-top: 17px;
	}
}

.contact-group {
	padding: 16px;
	color: #080808;
}

@media (width > 880px) {
	.contact-group {
		padding: 32px 64px;
	}
}

.contact-group__wrap {
	padding: 32px 24px 23px;
	border-radius: 32px;
	background-color: #fff;
}

@media (width > 880px) {
	.contact-group__wrap {
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		grid-template-rows: auto;
		gap: 0px 49px;
		grid-template-areas: ". . .";
		place-items: center;
		border-radius: 80px;
		max-width: 1312px;
		margin: auto;
		padding: 24px 23px 24px 40px;
	}
}

.contact-group__txt01 {
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	/* 32px */
	letter-spacing: 2.56px;
	text-align: center;
}

@media (width > 880px) {
	.contact-group__txt01 {
		font-size: 40px;
		letter-spacing: 3.2px;
	}
}

.contact-group__txt02 {
	font-size: 14.4px;
	font-style: normal;
	font-weight: 300;
	line-height: 160%;
	/* 23.04px */
	letter-spacing: 1.152px;
	text-align: center;
	margin-top: 17px;
}

@media (width > 880px) {
	.contact-group__txt02 {
		font-size: 14.4px;
		margin-top: 0;
	}
}

.hamburger {
	cursor: pointer;
	background: transparent;
	border: none;
	z-index: 99;
}

.hamburger span {
	display: block;
	width: 32px;
	height: 1px;
	background-color: #080808;
	margin: 3px 0;
	transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
	transform: translate(0, 1px) rotate(24deg);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: translate(0, -7px) rotate(-24deg);
}

@media screen and (min-width: 769px) {
	.hamburger {
		display: none;
	}
}

.dark .hamburger span {
	background-color: #fff;
}

.dark .hamburger.active span {
	background-color: #080808;
}

.nav {
	position: fixed;
	top: 0;
	right: -100%;
	width: 216px;
	padding: 0;
	transition: right 0.3s;
	z-index: 90;
	border-radius: 0 0 0 10px;
	background-color: #fff;
}

.nav.active {
	right: 0;
}

@media screen and (min-width: 769px) {
	.nav {
		position: static;
		width: 100%;
		height: auto;
		box-shadow: none;
		background-color: unset;
	}
}

.nav-list {
	list-style: none;
	padding-top: 56px;
	padding-left: 0;
	display: flex;
	flex-direction: column;
	text-align: center;
	margin-bottom: 0;
}

@media screen and (min-width: 769px) {
	.nav-list {
		flex-direction: row;
		justify-content: center;
		align-items: center;
		padding-top: 0;
		gap: 24px;
	}
}

.nav-item {
	width: 100%;
	border-bottom: 1px solid rgba(8, 8, 8, 0.1);
	position: relative;
}

@media screen and (min-width: 769px) {
	.nav-item {
		width: auto;
		border: none;
		margin: 0;
		padding: 0;
	}
}

.nav-item:first-child {
	border-top: 1px solid rgba(8, 8, 8, 0.1);
}

@media screen and (min-width: 769px) {
	.nav-item:first-child {
		border-top: none;
	}
}

.nav-item:last-child {
	border-bottom: none;
}

.nav-item__icon {
	display: block;
	width: 14px;
}

.nav-item__icon.--youtube {
	width: 17px;
}

.nav-item.--icons-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 26px;
}

@media screen and (min-width: 769px) {
	.nav-item.--icons-wrap {
		display: none;
	}
}

.nav-link {
	text-decoration: none;
	color: #080808;
	font-size: 13.6px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
	/* 16.32px */
	letter-spacing: 0.544px;
	padding: 16px 20px;
	display: inline-block;
}

@media screen and (min-width: 769px) {
	.nav-link {
		font-size: 14px;
		letter-spacing: 0.512px;
		padding: 0;
	}
}

.nav-link:hover {
	opacity: 0.8;
}

@media screen and (min-width: 769px) {
	.dark .nav-link {
		color: #fff;
	}
}

.submenu {
	padding-left: 20px;
	max-height: 0;
	overflow: hidden;
	transition: all 0.2s ease;
	list-style: none;
	opacity: 0;
}

.submenu.active {
	max-height: 200px;
	padding-bottom: 12px;
	padding-top: 12px;
	margin-top: 7px;
	opacity: 1;
}

@media screen and (min-width: 769px) {
	.submenu {
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
		width: max-content;
		padding-left: 0;
		background-color: #fff;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
		padding: 16px;
	}
}

.submenu li {
	text-align: center;
}

@media screen and (min-width: 769px) {
	.submenu li {
		border: none;
	}
}

@media screen and (min-width: 769px) {
	.submenu li:not(:first-child) {
		margin-top: 6px;
	}
}

.submenu a {
	color: #080808;
	text-decoration: none;
	padding: 4px 15px;
	display: block;
	font-size: 11.2px;
	font-style: normal;
	font-weight: 300;
	line-height: 160%;
	/* 17.92px */
	letter-spacing: 0.224px;
}

.submenu a:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

@media screen and (min-width: 769px) {
	.submenu a {
		padding: 0;
		text-align: left;
	}
}

.accordion {
	position: relative;
}

.accordion::after {
	content: "";
	display: block;
	width: 4px;
	height: 8px;
	transform: translateY(-50%) rotate(0);
	transition: transform 0.3s;
	background-image: url(../images/icon_nav-arrow-black.webp);
	background-repeat: no-repeat;
	transform-origin: center;
	position: absolute;
	right: 12px;
	top: 53%;
}

.accordion.active::after {
	transform: translateY(-100%) rotate(-180deg);
}

@media screen and (min-width: 769px) {
	.accordion::after {
		right: -8px;
		top: 60%;
	}
}

@media screen and (min-width: 769px) {
	.dark .accordion::after {
		background-image: url(../images/icon_nav-arrow-white.webp);
	}
}

.breadCrumb {
	max-width: 1312px;
	margin: auto;
}

.breadCrumb__list {
	display: flex;
}

.breadCrumb__list__text {
	font-size: 10.4px;
	font-style: normal;
	font-weight: 300;
	line-height: 160%;
	/* 16.64px */
	letter-spacing: 0.624px;
}

.breadCrumb__list__item:not(:last-child):after {
	display: inline-block;
	content: ">";
	margin: -2px 10px 0 2px;
	padding: 0;
	width: 0;
	height: 0;
	font-size: 10.4px;
}

.pc {
	display: block;
}

@media screen and (min-width: 480px) {
	.pc {
		display: none;
	}
}

.sp {
	display: block;
}

@media screen and (min-width: 769px) {
	.sp {
		display: none;
	}
}

.lv2 {
	font-size: 28px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	/* 28px */
	letter-spacing: 2.24px;
	text-align: center;
	margin-top: 26px;
}

@media screen and (min-width: 769px) {
	.lv2 {
		font-size: 48px;
		letter-spacing: 3.84px;
	}
}

.lv2--sub {
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 160%;
	/* 25.6px */
	letter-spacing: 3.2px;
	text-align: center;
	display: block;
	margin-top: 6px;
}

@media screen and (min-width: 769px) {
	.lv2--sub {
		font-size: 24px;
		letter-spacing: 4.8px;
	}
}

.text-caption01 {
	font-size: 12.8px;
	font-style: normal;
	font-weight: 300;
	line-height: 180%;
	/* 23.04px */
	letter-spacing: 0.512px;
	text-align: center;
}

.text-caption01.-m01 {
	margin-top: 23px;
}

.text-caption01.-m02 {
	margin: 31px 8px 0;
}

.main {
	padding-top: 56px;
}

@media screen and (min-width: 769px) {
	.main {
		padding-top: 136px;
	}
}

.slct {
	padding: 32px 16px;
}

@media screen and (min-width: 769px) {
	.slct {
		padding: 32px 64px;
	}
}

@media screen and (min-width: 769px) {
	.slct__wrap {
		max-width: 1312px;
		margin: auto;
	}
}

.slct__txt01 {
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 80%;
	/* 19.2px */
	letter-spacing: 2.88px;
}

@media screen and (min-width: 769px) {
	.slct__txt01 {
		font-size: 28px;
		letter-spacing: 3.36px;
	}
}

.slct__list:not(:first-child) {
	margin-top: 32px;
}

@media screen and (min-width: 769px) {
	.slct__list:not(:first-child) {
		margin-top: 42px;
	}
}

.slct__list__list:not(:first-child) {
	margin-top: 32px;
}

.slct__list__item__imgs {
	display: flex;
	gap: 16px;
	margin-top: 32px;
}

@media screen and (min-width: 769px) {
	.slct__list__item__imgs {
		margin-top: 0;
		gap: 32px;
		width: 80.5%;
	}
}

.slct__list__item__imgs figure {
	width: calc(50% - 16px);
}

.slct__list__item__imgs figure img {
	aspect-ratio: 512/256;
	object-fit: cover;
	height: 100%;
}

.slct__list__item__txt01 {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 80%;
	/* 12.8px */
	letter-spacing: 2.56px;
	margin-top: 24px;
}

@media screen and (min-width: 769px) {
	.slct__list__item__txt01 {
		margin-top: 14px;
	}
}

.slct__list__item__txt02 {
	font-size: 13.6px;
	font-style: normal;
	font-weight: 300;
	line-height: 120%;
	/* 16.32px */
	letter-spacing: 0.544px;
	margin-top: 8px;
}

.slct__list__item__txt03 {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 16px;
	margin-top: 8px;
}

.slct__list__item__txt03 .txt01 {
	font-size: 11.2px;
	font-style: normal;
	font-weight: 300;
	line-height: 140%;
	/* 15.68px */
	letter-spacing: 0.896px;
}

.slct__list__item__txt03 .txt02 {
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	/* 28px */
	letter-spacing: 1.6px;
}

.slct__list__item__txt03 img {
	width: 24px;
}

.slct__list__item__txt-box {
	display: flex;
	gap: 4px;
	align-items: center;
}

@media screen and (min-width: 769px) {
	.slct__list__item__wrap {
		width: 109%;
	}
}

@media screen and (min-width: 769px) {
	.slct__list__link {
		display: flex;
		justify-content: center;
		gap: 32px;
	}
}

.slct__list .spec__wrap {
	display: flex;
	justify-content: space-between;
	padding: 5px 12px;
	margin-top: 4px;
	border-top: 1px solid rgba(255, 255, 255, 0.32);
	border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

@media screen and (min-width: 769px) {
	.slct__list .spec__wrap {
		justify-content: space-around;
	}
}

.slct__list .spec__wrap.--black {
	border-top: 1px solid rgba(0, 0, 0, 0.32);
	border-bottom: 1px solid rgba(0, 0, 0, 0.32);
}

.slct__list .spec__wrap .txt01 {
	font-size: 11.2px;
	font-style: normal;
	font-weight: 300;
	line-height: 140%;
	/* 15.68px */
	letter-spacing: 0.448px;
}

.slct__list .spec__wrap .txt02 {
	font-size: 14.4px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	/* 20.16px */
	letter-spacing: 0.576px;
}

.slct__list .spec__wrap .txt03 {
	font-size: 10.4px;
	font-style: normal;
	font-weight: 300;
	line-height: 140%;
	/* 14.56px */
	letter-spacing: 0.416px;
}

.--inline {
	display: inline-flex;
}

.--right {
	margin-left: auto;
}

.pic-wrap {
	margin-top: 31px;
	display: grid;
	grid-template-columns: auto 35%;
	grid-template-rows: auto auto auto auto;
	gap: 8px 8px;
	grid-template-areas: "img01 img01" "img02 img02" "img03 img04" "img05 img05";
}

@media screen and (min-width: 769px) {
	.pic-wrap {
		margin-top: 64px;
		display: grid;
		grid-template-columns: 521fr 287fr 283fr 290fr;
		grid-template-rows: auto auto;
		gap: 8px 8px;
		grid-template-areas: "img01 img02 img02 img03" "img01 img04 img05 img05";
	}
}

.pic-wrap img {
	object-fit: cover;
	height: 100% !important;
	border-radius: 4px;
}

.pic-wrap .pic-01 {
	grid-area: img01;
}

.pic-wrap .pic-02 {
	grid-area: img02;
}

.pic-wrap .pic-03 {
	grid-area: img03;
}

.pic-wrap .pic-04 {
	grid-area: img04;
}

.pic-wrap .pic-04 img {
	object-fit: cover;
	height: 100%;
}

.pic-wrap .pic-05 {
	grid-area: img05;
}

.pic-wrap .pic-05.--experience {
	aspect-ratio: 384/392;
}

@media screen and (min-width: 769px) {
	.pic-wrap .pic-05.--experience {
		aspect-ratio: unset;
	}
}

.more-button {
	display: flex;
	justify-content: flex-end;
	margin: 0.6rem 0 0;
}

.more-button--link {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	width: 24px;
	height: 24px;
	background-color: transparent;
	border: 0.64px solid #080808;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.article_button_container {
	display: flex;
	justify-content: center;
	gap: 16px;
	align-items: center;
	flex-wrap: wrap;
}

@media screen and (min-width: 769px) {
	.article_button_container {
		gap: 32px;
		margin: 0;
	}
}

.article_button_container.--archive-columns {
	margin-bottom: 32px;
}

@media screen and (min-width: 769px) {
	.article_button_container.--archive-columns {
		margin-bottom: 64px;
	}

}

.article_button_container.--single {
	margin-top: 32px;
}

.article_button_container.--single .current {
	order: 2;
	width: 82px;
}

@media screen and (min-width: 769px) {
	.article_button_container.--single .current {
		width: 150px;
	}
}

.article_button_container .nav-button.prev {
	order: 2;
}

.article_button_container .nav-button.prev a {
	border: none;
}

.article_button_container .nav-button.next {
	order: 3;
}

.article_button_container .nav-button.next a {
	border: none;
}

.article_button_container .nav-button img {
	display: block;
}

.article_button_container .pagination__item a.prev,
.article_button_container .pagination__item a.next {
	display: none;
}

.article_button_container .pagination {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	order: 1;
}

@media screen and (min-width: 769px) {
	.article_button_container .pagination {
		width: auto;
		order: 2;
	}
}

.article_button_container .pagination__list {
	display: flex;
	align-items: center;
	list-style: none;
	gap: 8px;
	margin: 0;
	padding: 0;
}

.article_button_container .pagination__item {
	display: flex;
	justify-content: center;
	align-items: center;
}

.article_button_container .pagination__item--current span {
	background-color: #080808;
	color: #fff;
	font-weight: bold;
}

.article_button_container .pagination__item--dots {
	pointer-events: none;
}

.article_button_container a,
.article_button_container span {
	font-family: "Cinzel", serif;
	font-size: 13.6px;
	font-weight: 400;
	line-height: 100%;
	/* 13.6px */
	letter-spacing: 1.088px;
	text-transform: uppercase;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
	border-radius: 24px;
	border: 1px solid rgba(0, 0, 0, 0.16);
	text-decoration: none;
	transition: all 0.3s ease;
}

.article_button_container .pagination__link:hover,
.article_button_container .pagination__dots:hover {
	background-color: #ccc;
	color: #fff;
}

.article_button_container .pagination__item--dots span {
	border: none;
	font-size: 1.2rem;
}

.filtering-buttons {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
}

.filtering-buttons .filtering-button {
	background-color: transparent;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 24px;
	padding: 10px 24px;
	box-sizing: border-box;
	font-size: 12px;
	font-weight: 300;
	cursor: pointer;
	transition: all 0.3s ease;
	line-height: 112%;
	/* 13.44px */
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.filtering-buttons .filtering-button.active {
	background-color: #080808;
	color: #fff;
}

.filtering-buttons .dropdown {
	position: relative;
}

.filtering-buttons .dropdown-menu {
	position: absolute;
	top: 100%;
	left: calc(50% - 75px);
	background-color: #C0C0C0;
	list-style: none;
	margin: 0;
	padding: 10px 0;
	display: none;
	width: 150px;
	z-index: 10;
}

.filtering-buttons .dropdown-menu a {
	padding: 10px 20px;
	font-size: 12px;
	cursor: pointer;
	border-bottom: 1px solid rgba(0, 0, 0, 0.16);
	display: block;
	text-align: center;
}

.filtering-buttons .dropdown-menu a:hover {
	background-color: #f0f0f0;
}

.filtering-buttons .dropdown:hover .dropdown-menu {
	display: block;
}

.nav-button {
	background-color: transparent;
	padding: 10px 20px;
	font-family: "Cinzel", serif;
	font-size: 12.8px;
	font-weight: 400;
	line-height: 100%;
	/* 12.8px */
	letter-spacing: 1.024px;
	text-transform: uppercase;
	cursor: pointer;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	transition: all 0.3s ease;
	border-radius: 24px;
	border: 1px solid rgba(0, 0, 0, 0.16);
	width: 112px;
	height: 48px;
}

.nav-button.current {
	font-size: 12px;
	font-family: "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "Noto Serif JP", serif;
	font-weight: 300;
	line-height: 112%;
	/* 13.44px */
	border: 1px solid rgba(0, 0, 0, 0.8);
}

@media screen and (min-width: 769px) {
	.nav-button.current {
		width: 150px;
	}
}

.nav-button a {
	gap: 8px;
}

/** トップページ */
.main_visual {
	margin: 0 auto 56px;
	position: relative;
	padding: 8px;
}

@media screen and (min-width: 769px) {
	.main_visual {
		max-width: 1424px;
		height: 810px;
		margin: 40px auto 0;
		padding: 0;
	}
}

.main_visual #video {
	width: 100%;
}

.main_visual #video.pc {
	display: none;
}

@media screen and (min-width: 769px) {
	.main_visual #video.pc {
		display: block;
		height: 100%;
		object-fit: cover;
	}
}

.main_visual--text {
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	line-height: 160%;
	/* 25.6px */
	letter-spacing: 2.56px;
	position: absolute;
	top: 36px;
	left: 30px;
}

@media screen and (min-width: 769px) {
	.main_visual--text {
		top: 64px;
		left: 64px;
	}
}

.main_visual--logos {
	background: rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	width: calc(100% - 16px);
	padding: 12px 32px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px 36px;
	justify-items: center;
	align-items: center;
	position: absolute;
	bottom: 0;
	left: 8px;
}

.main_visual--logos.pc {
	display: none;
}

@media screen and (min-width: 769px) {
	.main_visual--logos {
		width: 100%;
		padding: 24px 64px;
		justify-content: center;
		gap: 16px 100px;
		left: 0;
	}

	.main_visual--logos.pc {
		display: flex;
	}

	.main_visual--logos.sp {
		display: none;
	}
}

.main_visual--logos .logo-mercedes {
	width: 36px;
}

.main_visual--logos .logo-audi {
	width: 52px;
}

.main_visual--logos .logo-porsche {
	width: 75px;
}

.main_visual--logos .logo-lamborghini {
	width: 33px;
}

.main_visual--logos .logo-bentley {
	width: 64px;
}

.main_visual--logos .logo-ferrari {
	width: 28px;
}

.main_visual--logos .logo-land_rover {
	width: 80px;
}

.main_visual--logos .logo-mclaren {
	width: 80px;
}

.main_visual--logos .logo-maserati {
	width: 77px;
}

.top_about_content {
	width: calc(100% - 32px);
	margin: 0 auto 24px;
}

@media screen and (min-width: 769px) {
	.top_about_content {
		display: flex;
		justify-content: right;
		margin: 64px auto 0;
		box-sizing: border-box;
		max-width: 1312px;
	}
}

@media screen and (min-width: 769px) {
	.top_about_content--inner {
		width: 640px;
	}
}

.top_about_content--title {
	font-family: "Cinzel", serif;
	font-weight: 400;
	font-size: 32px;
	color: #080808;
	line-height: 160%;
	letter-spacing: 4.48px;
}

@media screen and (min-width: 769px) {
	.top_about_content--title {
		font-size: 40px;
		letter-spacing: 5.6px;
	}
}

.top_about_content--title span {
	font-size: 18px;
	font-weight: 300;
	color: #080808;
	letter-spacing: 1.472px;
}

@media screen and (min-width: 769px) {
	.top_about_content--title span {
		font-size: 28px;
		letter-spacing: 2.24px;
	}
}

.top_about_content--text {
	font-family: "Hiragino Mincho ProN";
	font-size: 12.8px;
	font-weight: 300;
	line-height: 180%;
	letter-spacing: 0.512px;
	margin: 0 0 24px;
}

.top_new_selection {
	width: calc(100% - 32px);
	margin: 4rem auto;
}

@media screen and (min-width: 769px) {
	.top_new_selection {
		max-width: 1312px;
		margin: 64px auto 4.2rem;
	}
}

.top_new_selection h2 {
	font-size: 1.5rem;
	margin-bottom: 20px;
	font-family: "Cinzel", serif;
	font-style: normal;
	font-weight: 300;
	line-height: 80%;
	letter-spacing: 0.18rem;
}

@media screen and (min-width: 769px) {
	.top_new_selection h2 {
		font-size: 2rem;
		margin-bottom: 3.4rem;
	}
}

.top_new_selection h2 span {
	font-size: 0.8rem;
	font-weight: 300;
	line-height: 160%;
	letter-spacing: 2.048px;
}

.top_new_selection--car_list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin: 0 0 2rem;
	cursor: pointer;
}

@media screen and (min-width: 769px) {
	.top_new_selection--car_list {
		flex-wrap: wrap;
		justify-content: center;
	}
}

.top_new_selection--car_item {
	display: flex;
	flex-direction: column;
}

@media screen and (min-width: 769px) {
	.top_new_selection--car_item {
		flex-direction: row;
		gap: 2rem;
		align-items: flex-end;
	}
}

.top_new_selection--car_images {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	gap: 2rem;
}

@media screen and (min-width: 769px) {
	.top_new_selection--car_images {
		width: 60%;
	}
}

.top_new_selection--car_images .car-img-bigger {
	width: 15rem;
	height: 7.5rem;
	object-fit: cover;
}

@media screen and (min-width: 769px) {
	.top_new_selection--car_images .car-img-bigger {
		width: 60%;
		height: 100%;
		aspect-ratio: 544 / 272;
	}
}

.top_new_selection--car_images .car-img-smaller {
	width: 7rem;
	height: 3.5rem;
	box-sizing: border-box;
	object-fit: cover;
}

@media screen and (min-width: 769px) {
	.top_new_selection--car_images .car-img-smaller {
		width: 36%;
		height: 100%;
		aspect-ratio: 256 / 128;
	}
}

.top_new_selection .car-details {
  display: flex;
	flex-direction: column;
	max-width: 1312px;
	margin: 0;
  padding: 0;
}

@media screen and (min-width: 769px) {
	.top_new_selection .car-details {
		width: 40%;
		margin: 0;
		padding: 0;
	}
}

.top_new_selection .car-details h3 {
	font-family: "Cinzel", serif;
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 80%;
	letter-spacing: 0.16rem;
	margin: 1.4rem 0 0;
}

@media screen and (min-width: 769px) {
	.top_new_selection .car-details h3 {
		margin: 0;
	}
}

.top_new_selection .car-details .text {
	font-size: 0.85rem;
	margin: 0.8rem 0 0;
}

.top_new_selection .car-details .price {
	font-family: "Cinzel", serif;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: 0.1rem;
	margin: 0.8rem 0 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.top_new_selection .car-details .price span {
	font-family: "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "Noto Serif JP", serif;
	font-size: 0.7rem;
	font-weight: 300;
	letter-spacing: 0.056rem;
	margin-right: 1rem;
}

.top_new_selection .car-details .arrow__link {
	display: block;
	margin-left: 1rem;
	width: 24px;
}

.top_new_selection .car-details--info {
	font-family: "Cinzel", serif;
	font-size: 0.9rem;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: 0.036rem;
	border-top: 1px solid rgba(0, 0, 0, 0.32);
	border-bottom: 1px solid rgba(0, 0, 0, 0.32);
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 0.4rem 0rem;
	margin: 0.5rem 0 0;
}

.top_new_selection .car-details .info-block {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 5px;
}

.top_new_selection .car-details .item {
	font-size: 0.7rem;
	font-weight: 300;
	line-height: 140%;
	letter-spacing: 0.028rem;
}

.top_new_selection .car-details .unit {
	font-size: 0.65rem;
	font-weight: 300;
	line-height: 140%;
	letter-spacing: 0.026rem;
}

.top_black_area {
	color: #fff;
	background: #080808;
}

@media screen and (min-width: 769px) {
	.top_black_area {
		padding: 8px;
		box-sizing: border-box;
	}
}

.top_black_area--img {
	width: 100%;
	object-fit: cover;
	overflow: hidden;
	border-radius: 0.25rem;
	padding: 0.5rem 0.5rem 0;
	box-sizing: border-box;
}

.top_black_area--img.pc {
	display: none;
}

@media screen and (min-width: 769px) {
	.top_black_area--img.pc {
		display: block;
	}

	.top_black_area--img.sp {
		display: none;
	}
}

.top_black_area--box {
	margin: 4rem 1rem 0;
}

@media screen and (min-width: 769px) {
	.top_black_area--box {
		width: 100%;
		margin: 5.2rem 0;
	}

	.top_black_area--box:last-of-type {
		margin: 5.2rem 0 0;
	}
}

.top_black_area--row {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	margin: 0.6rem 0 0;
}

@media screen and (min-width: 769px) {
	.top_black_area--row {
		margin: 1.8rem 0 0;
	}
}

.top_black_area h2 {
	font-family: "Cinzel", serif;
	font-size: 2.5rem;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0.2rem;
}

@media screen and (min-width: 769px) {
	.top_black_area h2 {
		font-size: 4rem;
		letter-spacing: 0.32rem;
		margin: 0 0 0 3.5rem;
	}
}

.top_black_area h2 span {
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	line-height: 160%;
	/* 2rem */
	letter-spacing: 0.25rem;
	display: block;
}

@media screen and (min-width: 769px) {
	.top_black_area h2 span {
		font-size: 1.75rem;
		letter-spacing: 0.35rem;
	}
}

@media screen and (min-width: 769px) {
	.top_black_area h2 span.--experience {
		margin: 1.8rem 0 0;
	}
}

.top_black_area--tag {
	color: #FFF;
	font-size: 0.65rem;
	font-weight: 300;
	line-height: 160%;
	/* 1.04rem */
	letter-spacing: 0.078rem;
	display: flex;
	padding: 0.2rem 0.4rem;
	justify-content: center;
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.16);
}

.top_black_area--text {
	font-size: 0.9rem;
	font-style: normal;
	font-weight: 300;
	line-height: 160%;
	/* 1.44rem */
	letter-spacing: 0.072rem;
	margin: 1rem 0 0;
}

@media screen and (min-width: 769px) {
	.top_black_area--text {
		margin: 1rem 0 0 3.5rem;
	}
}

@media screen and (min-width: 769px) {
	.top_black_area--wrap {
		display: flex;
		justify-content: space-between;
		/* 要素間を均等に配置 */
		gap: 2rem;
		margin-top: 2.5rem;
	}
}

.top_black_area--wrap.--two {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin: 2rem 0 0;
}

@media screen and (min-width: 769px) {
	.top_black_area--wrap.--two {
		flex-direction: row;
	}
}

.top_black_area--wrap.--three {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin: 2rem 0 0;
}

@media screen and (min-width: 769px) {
	.top_black_area--wrap.--three {
		flex-direction: row;
		gap: 2rem;
		margin: 2.4rem 0 0;
	}
}

.top_black_area--small {
	font-size: 0.75rem;
	font-weight: 300;
	line-height: 180%;
	/* 1.35rem */
	letter-spacing: 0.03rem;
	margin: 3rem 0 0;
	display: block;
}

@media screen and (min-width: 769px) {
	.top_black_area--small {
		width: 36rem;
		margin: 3.7rem 3.6rem 0 auto;
	}
}

@media screen and (min-width: 769px) {
	.top_black_card {
		flex: 1;
		margin: 0;
	}
}

.top_black_card h3 {
	margin: 2.5rem 0 0;
	font-family: "Cinzel", serif;
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	/* 1rem */
	letter-spacing: 0.16rem;
	text-transform: uppercase;
}

@media screen and (min-width: 769px) {
	.top_black_card h3 {
		margin: 3.8rem 0 0 3.5rem;
	}
}

.top_black_card h3 span {
	font-size: 0.9rem;
	font-style: normal;
	font-weight: 300;
	line-height: 120%;
	/* 1.08rem */
	letter-spacing: 0.144rem;
	display: block;
	margin: 1.2rem 0 0;
}

.top_black_card--text {
	font-size: 0.75rem;
	font-style: normal;
	font-weight: 300;
	line-height: 160%;
	/* 1.2rem */
	letter-spacing: 0.03rem;
	margin: 1rem 0 0;
}

@media screen and (min-width: 769px) {
	.top_black_card--text {
		margin: 1rem 4rem 0rem 3.5rem;
	}
}

.top_purchase_section {
	display: flex;
	padding: 1.25rem 1rem 2.1rem;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 2rem;
	align-self: stretch;
}

@media screen and (min-width: 769px) {
	.top_purchase_section {
		gap: 2rem;
		padding: 3.25rem 1rem 0;
	}
}

.top_purchase_section--header {
	border: 1px solid rgba(255, 255, 255, 0.16);
	padding: 20px;
}

@media screen and (min-width: 769px) {
	.top_purchase_section--header {
		width: calc(100% - 6rem);
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
		padding: 1rem 1.8rem;
		flex-wrap: wrap;
	}
}

.top_purchase_section--header h2 {
	font-family: "Cinzel", serif;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 80%;
	/* 1rem */
	letter-spacing: 0.2rem;
	text-transform: uppercase;
	display: flex;
	gap: 0.6rem;
	align-items: center;
}

@media screen and (min-width: 769px) {
	.top_purchase_section--header h2 {
		font-size: 1.5rem;
		letter-spacing: 0.24rem;
		margin: 0;
		gap: 1.6rem;
	}
}

.top_purchase_section--header h2 span {
	display: block;
	font-size: 0.9rem;
	font-style: normal;
	font-weight: 300;
	line-height: 160%;
	/* 1.44rem */
	letter-spacing: 0.216rem;
}

@media screen and (min-width: 769px) {
	.top_purchase_section--header h2 span {
		font-size: 1rem;
		letter-spacing: 0.24rem;
	}
}

.top_purchase_section--header p {
	font-size: 0.75rem;
	font-style: normal;
	font-weight: 300;
	line-height: 180%;
	/* 1.35rem */
	letter-spacing: 0.03rem;
	margin-top: 0.25rem;
}

.top_purchase_section--links {
	display: flex;
	flex-direction: column;
	gap: 14px;
	width: 100%;
}

@media screen and (min-width: 769px) {
	.top_purchase_section--links {
		flex-direction: row;
		justify-content: space-between;
		width: calc(100% - 6rem);
		margin: 0 auto 2rem;
		gap: 2rem;
	}
}

.top_purchase_section--link {
	display: flex;
	align-items: center;
	padding: 10px 60px 10px 10px;
	border: 1px solid rgba(255, 255, 255, 0.64);
	border-radius: 50px;
	overflow: hidden;
	justify-content: space-between;
}

@media screen and (min-width: 769px) {
	.top_purchase_section--link {
		width: calc(50% - 1rem);
		padding: 1rem 3rem 1rem 1rem;
	}
}

@media screen and (min-width: 770px) and (max-width: 850px) {
	.top_purchase_section--link {
		width: auto;
	}
}

.top_purchase_section--link.--left {
	padding: 10px 40px 10px 10px;
}

@media screen and (min-width: 769px) {
	.top_purchase_section--link.--left {
		padding: 1rem 3rem 1rem 1rem;
	}
}

.top_purchase_section--link img {
	width: 8rem;
	height: 4.5rem;
	border-radius: 80px;
	object-fit: cover;
}

.top_purchase_section--text {
	text-align: center;
	font-size: 0.75rem;
	font-style: normal;
	font-weight: 300;
	line-height: 136%;
	/* 1.02rem */
	letter-spacing: 0.06rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.top_purchase_section--text.--left {}

@media screen and (min-width: 769px) {
	.top_purchase_section--text {
		flex-direction: row;
	}

	.top_purchase_section--text.--left {
		text-align: left;
	}
}

.column_main {
	padding: 64px 16px 32px;
	overflow: hidden;
}

@media screen and (min-width: 769px) {
	.column_main {
		padding: 64px 64px 32px;
		padding-left: max(64px, (100% - 1312px) / 2);
	}
}

@media screen and (min-width: 769px) {
	.column_main.--top {
		padding: 96px 64px 32px;
	}
}

.column_main h2 {
	font-size: 1.5rem;
	margin-bottom: 20px;
	font-family: "Cinzel", serif;
	font-style: normal;
	font-weight: 300;
	line-height: 80%;
	letter-spacing: 0.18rem;
	margin: 0 0 2rem;
}

@media screen and (min-width: 769px) {
	.column_main h2 {
		font-size: 2rem;
		margin-bottom: 3.4rem;
		letter-spacing: 3.84px;
		margin: 0 auto 2rem;
	}
}

.column_main h2 span {
	font-size: 0.8rem;
	font-weight: 300;
	line-height: 160%;
	letter-spacing: 2.048px;
}

.column_main__txt02 {
	font-size: 0.85rem;
	font-weight: 300;
	letter-spacing: 0.034rem;
	display: inline-block;
	margin: 2px 0 0;
}

@media screen and (min-width: 769px) {
	.column_main__txt02 {
		letter-spacing: 0.04rem;
	}
}

.column_main__txt02 mark {
	color: #fff;
	background: #080808;
	padding: 0.25rem;
	line-height: 1.8;
}

.column_main__txt03 {
	font-size: 11.2px;
	font-style: normal;
	font-weight: 300;
	line-height: 160%;
	/* 17.92px */
	letter-spacing: 0.448px;
	margin-top: 16px;
}

.column_main__list {
	margin-top: 24px;
}

.column_main__list__item__box {
	margin-top: 22px;
}

.column_main__list__item__link {
	display: block;
	width: 24px;
	height: 24px;
	margin-left: auto;
	margin-top: 12px;
}

@media screen and (min-width: 769px) {
	.column_main__list__item__link {
		margin-top: 6px;
		margin-right: 8px;
	}

	.column_main__list__item {
		width: 544px !important;
	}
}

.column_main__list__item .cate {
	font-size: 12px;
	font-style: normal;
	font-weight: 300;
	line-height: 100%;
	/* 21.6px */
	letter-spacing: 0.24px;
	display: inline-flex;
	padding: 2px;
	justify-content: center;
	align-items: center;
	border-radius: 1px;
	border: 1px solid rgba(0, 0, 0, 0.4);
}

.column_main__list__item__img img {
	width: 100%;
	height: 184px !important;
	object-fit: cover;
}

@media screen and (min-width: 769px) {
	.column_main__list__item__img img {
		width: 544px !important;
		height: 272px !important;
		object-fit: cover;
	}
}

/** sub.scssからの移植 */
.swiper-button-prev,
.swiper-button-next {
	width: 40px;
	height: 40px;
	background: none;
	color: #fff;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
}

.swiper-button-prev::after,
.swiper-button-next::after {
	content: none;
	/* デフォルトのアイコンを削除 */
}

/* ページネーションのカスタマイズ */
.swiper-pagination {
	position: absolute;
	bottom: 17px !important;
	right: -16px !important;
	width: 100px !important;
	left: unset !important;
}

@media screen and (min-width: 769px) {
	.swiper-pagination {
		right: 31px !important;
	}
}

.swiper-button-prev,
.swiper-button-next {
	position: static;
	/* Swiperのデフォルトのposition: absoluteを解除 */
	width: 64px !important;
	height: 48px !important;
	margin: 0;
	/* デフォルトのマージンをリセット */
	background: #000;
	/* 背景色 */
	color: #fff;
	border-radius: 50%;
	/* 円形のボタン */
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	opacity: 0.6;
}

.swiper-pagination-bullet {
	width: 6px;
	height: 6px;
	background: #000;
	opacity: 1;
	margin: 0 8px !important;
	border: 1px solid #fff;
}

.swiper-pagination-bullet-active {
	background: #fff;
}

.swiper-container {
	position: relative;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
	height: 48px;
	width: 64px;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 48px;
	margin: auto;
	width: 64px;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
	background-image: url(../images/experience/rental/img_page-prev.webp);
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
	background-image: url(../images/experience/rental/img_page-next.webp);
}

/* 画像サイズ調整 */
.swiper-slide img {
	height: auto;
	width: 100%;
}

.navigation-buttons {
	display: flex;
	gap: 8px;
	margin-top: 17px;
	margin-left: 8px;
}

@media screen and (min-width: 769px) {
	.navigation-buttons {
		margin-left: 58px;
	}
}

.navigation-buttons.-sw02 {
	margin-top: 12px;
}

@media screen and (min-width: 769px) {
	.navigation-buttons.-sw02 {
		margin-top: 8px;
		margin-left: 0;
	}
}

.top_topics {
	padding: 0 1rem;
}

@media screen and (min-width: 769px) {
	.top_topics {
		max-width: 1312px;
		margin: 0 auto;
	}
}

.top_topics h2 {
	font-size: 1.5rem;
	margin-bottom: 20px;
	font-family: "Cinzel", serif;
	font-style: normal;
	font-weight: 300;
	line-height: 80%;
	letter-spacing: 0.18rem;
	margin: 0 0 2rem;
}

@media screen and (min-width: 769px) {
	.top_topics h2 {
		font-size: 2rem;
		margin-bottom: 3.4rem;
		max-width: 1312px;
		margin: 0 auto 1.4rem;
	}
}

.top_topics h2 span {
	font-size: 0.8rem;
	font-weight: 300;
	line-height: 160%;
	letter-spacing: 2.048px;
}

.top_topics--item {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.4);
	padding: 1.5rem 0;
	position: relative;
}

.top_topics--item:first-of-type {
	border-top: 1px solid rgba(0, 0, 0, 0.4);
}

@media screen and (min-width: 769px) {
	.top_topics--item {
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 0.8rem;
	}
}

.top_topics--wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.top_topics--media img {
	width: 160px;
	height: 90px;
	object-fit: cover;
}

.top_topics--content {
	flex: 1;
}

.top_topics--meta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	width: calc(100% - 160px - 1rem);
}

@media screen and (min-width: 769px) {
	.top_topics--meta {
		width: 404px;
		flex-direction: row;
		justify-content: center;
		gap: 2.5rem;
	}
}

.top_topics--date {
	font-family: "Cinzel", serif;
	font-size: 12.8px;
	font-weight: 400;
	line-height: 100%;
	/* 12.8px */
	letter-spacing: 2.048px;
	text-transform: uppercase;
}

.top_topics--category {
	font-size: 12px;
	font-weight: 300;
	line-height: 180%;
	/* 21.6px */
	letter-spacing: 0.24px;
	border-radius: 1px;
	border: 1px solid rgba(0, 0, 0, 0.4);
	display: flex;
	width: 96px;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}

.top_topics--title {
	font-size: 0.9rem;
	font-weight: 300;
	line-height: 120%;
	/* 1.08rem */
	letter-spacing: 0.072rem;
	margin: 0 0 0.6rem;
}

.top_topics--description {
	font-size: 0.7rem;
	font-weight: 300;
	line-height: 160%;
	/* 1.12rem */
	letter-spacing: 0.028rem;
	width: 20rem;
}

@media screen and (min-width: 769px) {
	.top_topics--description {
		width: 100%;
	}
}

.top_topics .more-button {
	position: absolute;
	bottom: 28px;
	right: 0;
}

@media screen and (min-width: 769px) {
	.top_topics .more-button {
		bottom: calc(50% - 12px);
		right: 0;
	}
}

.top_btn.--mt2rem {
	margin: 2rem 0 0;
}

@media screen and (min-width: 769px) {
	.top_btn.--mt2rem {
		margin: 2.5rem 3.4rem 0 auto;
	}
}

.top_btn.--mt2rem-02 {
	margin: 2rem 0 0;
}

@media screen and (min-width: 769px) {
	.top_btn.--mt2rem-02 {
		margin: 1rem 3.4rem 0 auto;
	}
}

.top_btn.--mt15rem {
	margin: 1.5rem 0 0;
}

@media screen and (min-width: 769px) {
	.top_btn.--mt15rem {
		margin: 1rem 0 0;
	}
}

.top_btn.--mt24rem {
	margin: 2.4rem 0 0;
}

@media screen and (min-width: 769px) {
	.top_btn.--mt24rem {
		margin: 3.2rem 0 0;
	}
}

.top_btn--link {
	font-size: 0.75rem;
	font-style: normal;
	font-weight: 300;
	line-height: 112%;
	/* 0.84rem */
	display: flex;
	height: 3rem;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	border-radius: 1.5rem;
	border: 1px solid rgba(0, 0, 0, 0.16);
}

.top_btn--link.--top-more {
	width: 12rem;
	padding: 0rem 1.5rem;
	margin: 0 0 0 auto;
}

@media screen and (min-width: 769px) {
	.top_btn--link.--top-more {
		margin-left: auto;
	}
}

.top_btn--link.--top-experience {
	width: 15.2rem;
	padding: 0rem 1.5rem;
	margin: 0 0 0 auto;
}

@media screen and (min-width: 769px) {
	.top_btn--link.--top-experience {
		margin: 0;
		margin-left: auto;
	}
}

.top_btn--link.--top-experience-02 {
	width: 17.2rem;
	padding: 0rem 1.5rem;
	margin: 0 0 0 auto;
}

@media screen and (min-width: 769px) {
	.top_btn--link.--top-experience-02 {
		margin: 0;
		margin-left: auto;
	}
}

.top_btn--link.--dark {
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.16);
}

.top_access {
	padding: 32px 8px 32px;
}

@media screen and (min-width: 769px) {
	.top_access {
		display: flex;
		justify-content: space-between;
		max-width: 1440px;
		width: 100%;
		margin: auto;
		gap: 32px;
		padding: 64px;
	}
}

.top_access.--about {
	padding: 74px 8px 30px;
}

@media screen and (min-width: 769px) {
	.top_access.--about {
		padding: 58px 64px;
	}
}

.top_access__wrap {
	padding: 0 8px;
}

.top_access .lv3 {
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 80%;
	/* 19.2px */
	letter-spacing: 2.88px;
}

@media screen and (min-width: 769px) {
	.top_access .lv3 {
		font-size: 32px;
		letter-spacing: 3.84px;
	}
}

.top_access .lv3 span {
	font-size: 12.8px;
	font-style: normal;
	font-weight: 300;
	line-height: 160%;
	/* 20.48px */
	letter-spacing: 1.024px;
}

.top_access__address {
	font-size: 12px;
	font-style: normal;
	font-weight: 300;
	line-height: 200%;
	/* 24px */
	letter-spacing: 0.48px;
	margin-top: 22px;
}

@media screen and (min-width: 769px) {
	.top_access__address {
		margin-top: 51px;
	}
}

.top_access__txt01 {
	font-size: 14.4px;
	font-style: normal;
	font-weight: 300;
	line-height: 120%;
	/* 17.28px */
	letter-spacing: 2.304px;
	margin-top: 30px;
}

.top_access__txt02 {
	font-size: 11.2px;
	font-style: normal;
	font-weight: 300;
	line-height: 160%;
	/* 17.92px */
	letter-spacing: 0.448px;
	margin-top: 8px;
}
.top_access__txt02 span {
  font-size: 15px;
}

.top_access .link-wrap {
	margin-top: 19px;
}

@media screen and (min-width: 769px) {
	.top_access .link-wrap {
		margin-top: 43px;
	}
}

.top_access__map {
	margin-top: 32px;
	aspect-ratio: 1/1;
}

@media screen and (min-width: 769px) {
	.top_access__map {
		width: 640px;
		height: 360px;
		margin-top: 0;
	}
}

.top_access__map iframe {
	border-radius: 4px;
}

/* Columns */
.columns {
	padding: 26px 16px;
}

@media screen and (min-width: 769px) {
	.columns {
		padding: 32px 64px 55px;
	}

	.columns.--single {
		padding: 136px 64px 0;
	}
}

.columns--list {
	width: calc(100% - 32px);
	display: flex;
	flex-direction: column;
	margin: 48px auto 32px;
}

@media screen and (min-width: 769px) {
	.columns--list {
		max-width: 1312px;
		flex-direction: row;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 64px;
		margin: 80px auto 64px;
	}
}

.columns--item {
	margin: 32px 0 0;
}

.columns--item:first-of-type {
	margin: 0;
}

@media screen and (min-width: 769px) {
	.columns--item {
		margin: 0;
		width: calc(50% - 112px);
	}
}

.columns--item img {
	width: 100%;
	height: 184px;
	object-fit: cover;
	display: block;
}

@media screen and (min-width: 769px) {
	.columns--item img {
		height: 66%;
	}
}

.columns--content {
	text-align: left;
}

.columns--category {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 300;
	line-height: 180%;
	/* 1.35rem */
	letter-spacing: 0.015rem;
	padding: 2.5px 4px;
	box-sizing: border-box;
	border-radius: 0.0625rem;
	border: 1px solid rgba(0, 0, 0, 0.4);
	margin: 24px 0 4px;
}

.columns--title {
	font-size: 0.85rem;
	font-weight: 300;
	letter-spacing: 0.034rem;
	display: inline;
}

.columns--title mark {
	color: #fff;
	background: #080808;
	padding: 0.25rem;
	line-height: 1.8;
}

.columns--textArea p {
	font-size: 0.7rem;
	font-weight: 300;
	line-height: 160%;
	/* 1.12rem */
	letter-spacing: 0.028rem;
	margin: 0.8rem 0 0;
}

/* Columns シングルページ */
.columns_article {
	max-width: 928px;
	margin: 32px auto 0;
	border-radius: 10px;
}

.columns_article--image img {
	width: 100%;
	height: 192px;
}

@media screen and (min-width: 769px) {
	.columns_article--image img {
		width: 100%;
		height: 462px;
		display: block;
		object-fit: cover;
	}
}

.columns_article--content {
	margin: 32px 0 0;
	padding: 0 16px;
}

@media screen and (min-width: 769px) {
	.columns_article--content {
		margin: 64px 0 0;
	}
}

.columns_article--area {
	/* border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  margin: 0 0 40px; */
}

.columns_article--header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: #080808;
	margin-bottom: 32px;
}

.columns_article--header .category {
	font-size: 12px;
	font-style: normal;
	font-weight: 300;
	letter-spacing: 0.24px;
	border-radius: 1px;
	border: 1px solid rgba(0, 0, 0, 0.4);
	display: flex;
	/* width: 96px; */
	padding: 3.5px 4px;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.columns_article--header .date {
	font-family: "Cinzel", serif;
	font-size: 12.8px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	/* 12.8px */
	letter-spacing: 2.048px;
	text-transform: uppercase;
}

.columns_article h2 {
	font-size: 18.4px;
	font-style: normal;
	font-weight: 300;
	line-height: 140%;
	/* 25.76px */
	letter-spacing: 0.368px;
	margin: 0 0 32px;
}

@media screen and (min-width: 769px) {
	.columns_article h2 {
		font-size: 20px;
		letter-spacing: 0.4px;
		margin: 0 0 48px;
	}
}

.columns_article h3 {
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 140%;
	/* 22.4px */
	letter-spacing: 0.64px;
	margin: 0 0 32px;
}

@media screen and (min-width: 769px) {
	.columns_article h3 {
		font-size: 18px;
		margin: 0 0 48px;
	}
}

.columns_article h4 {
	font-size: 14.4px;
	font-style: normal;
	font-weight: 300;
	line-height: 140%;
	/* 20.16px */
	letter-spacing: 0.576px;
	border-left: 2px solid #000;
	padding: 0 0 0 16px;
	margin: 32px 0;
}

@media screen and (min-width: 769px) {
	.columns_article h4 {
		font-size: 16px;
		margin: 64px 0 32px;
	}
}

.columns_article--tags {
	font-size: 10.4px;
	font-style: normal;
	font-weight: 300;
	line-height: 180%;
	/* 18.72px */
	letter-spacing: 0.208px;
	margin: 0 0 32px;
}

@media screen and (min-width: 769px) {
	.columns_article--tags {
		margin: 0 0 24px;
	}
}

.columns_article--tags span {
	margin-right: 5px;
}

@media screen and (min-width: 769px) {
	.columns_article--tags span {
		margin-right: 12px;
	}
}

.columns_article p {
	font-size: 12.8px;
	font-weight: 300;
	line-height: 180%;
	/* 23.04px */
	letter-spacing: 0.512px;
	margin: 0 0 40px;
}

@media screen and (min-width: 769px) {
	.columns_article p {
		margin: 0 0 64px;
	}
}

.columns_article--images {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

@media screen and (min-width: 769px) {
	.columns_article--images {
		display: grid;
	}
}

@media screen and (min-width: 769px) {
	.columns_article--images.--two {
		grid-template-columns: repeat(2, 1fr);
		gap: 36px;
	}
}

@media screen and (min-width: 769px) {
	.columns_article--images.--three {
		grid-template-columns: repeat(3, 1fr);
		gap: 32px;
	}
}

.columns_article--images img {
	width: 336px;
	height: 224px;
	object-fit: cover;
	margin: 0 auto;
}

@media screen and (min-width: 769px) {
	.columns_article--images img {
		width: 100%;
		height: auto;
	}
}

.columns_article--images.--three img {
	width: 240px;
	height: 160px;
	margin: 0 auto;
}

@media screen and (min-width: 769px) {
	.columns_article--images.--three img {
		width: 288px;
		height: 192px;
	}
}

.columns_common {
	border-top: 1px solid rgba(0, 0, 0, 0.32);
	padding: 32px 0;
	text-align: center;
}

@media screen and (min-width: 769px) {
	.columns_common {
		display: flex;
		justify-content: center;
		align-items: center;
		max-width: 928px;
		margin: 0 auto;
	}
}

.columns_common--text {
	font-size: 11.2px;
	font-weight: 300;
	line-height: 160%;
	/* 17.92px */
	letter-spacing: 0.896px;
}

.columns_common .link {
	font-size: 13.6px;
	font-style: normal;
	font-weight: 300;
	line-height: 112%;
	/* 15.232px */
	letter-spacing: 0.544px;
	display: flex;
	height: 48px;
	padding: 0px 24px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	border-radius: 24px;
	background-color: #fff;
}

.columns_common .link__arrow {
	width: 72px;
}

.columns_common .link.--columns {
	width: 275px;
	margin: 18px auto 0;
}

@media screen and (min-width: 769px) {
	.columns_common .link.--columns {
		width: auto;
		margin: 0;
		margin-left: auto;
	}
}

/** Topics */
.topics_content {
	margin: 0 0 32px;
}

@media screen and (min-width: 769px) {
	.topics_content {
		margin: 0 0 64px;
	}
}

.topics_content .topics {
	padding: 26px 16px 64px;
}

@media screen and (min-width: 769px) {
	.topics_content .topics {
		padding: 32px 64px 48px;
	}
}

.topics_content .topics_list {
	margin: 32px auto;
	width: calc(100% - 32px);
}

@media screen and (min-width: 769px) {
	.topics_content .topics_list {
		max-width: 1312px;
		margin: 80px auto 48px;
	}
}

.topics_content .topics_list--item {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.4);
	padding: 1.5rem 0;
	position: relative;
}

.topics_content .topics_list--item:first-of-type {
	border-top: 1px solid rgba(0, 0, 0, 0.4);
}

@media screen and (min-width: 769px) {
	.topics_content .topics_list--item {
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 0.8rem;
	}
}

.topics_content .topics_list--wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.topics_content .topics_list--media img {
	width: 160px;
	height: 90px;
	object-fit: cover;
}

.topics_content .topics_list--content {
	flex: 1;
}

.topics_content .topics_list--meta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	width: calc(100% - 160px - 1rem);
}

@media screen and (min-width: 769px) {
	.topics_content .topics_list--meta {
		width: 404px;
		flex-direction: row;
		justify-content: center;
		gap: 2.5rem;
	}
}

.topics_content .topics_list--date {
	font-family: "Cinzel", serif;
	font-size: 12.8px;
	font-weight: 400;
	line-height: 100%;
	/* 12.8px */
	letter-spacing: 2.048px;
	text-transform: uppercase;
}

.topics_content .topics_list--category {
	font-size: 12px;
	font-weight: 300;
	line-height: 180%;
	/* 21.6px */
	letter-spacing: 0.24px;
	border-radius: 1px;
	border: 1px solid rgba(0, 0, 0, 0.4);
	display: flex;
	/* width: 96px; */
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}

.topics_content .topics_list--title {
	font-size: 0.9rem;
	font-weight: 300;
	line-height: 120%;
	/* 1.08rem */
	letter-spacing: 0.072rem;
	margin: 0 0 0.6rem;
}

.topics_content .topics_list--description {
	font-size: 0.7rem;
	font-weight: 300;
	line-height: 160%;
	/* 1.12rem */
	letter-spacing: 0.028rem;
	width: 20rem;
}

@media screen and (min-width: 769px) {
	.topics_content .topics_list--description {
		width: 100%;
	}
}

.topics_content .topics_list .more-button {
	position: absolute;
	bottom: 28px;
	right: 0;
}

@media screen and (min-width: 769px) {
	.topics_content .topics_list .more-button {
		bottom: calc(50% - 12px);
		right: 0;
	}
}

/* Topics シングルページ */
.single_topics {
	margin: 0 auto 64px;
	padding: 26px 16px;
}

@media screen and (min-width: 769px) {
	.single_topics {
		padding: 216px 64px 0;
	}
}

.topics_article {
	width: 100%;
	margin: 32px auto;
}

@media screen and (min-width: 769px) {
	.topics_article {
		max-width: 924px;
		margin: 32px auto 64px;
		border-radius: 10px;
	}
}

.topics_article--image img {
	width: 100%;
	height: 184px;
	object-fit: cover;
	border-radius: 2px;
}

@media screen and (min-width: 769px) {
	.topics_article--image img {
		width: 736px;
		height: 368px;
		margin: 0 auto;
		display: block;
	}
}

.topics_article--content {
	margin: 32px 0 0;
}

@media screen and (min-width: 769px) {
	.topics_article--content {
		margin: 64px 0 0;
	}
}

.topics_article--area {
	margin: 0 0 32px;
}

.topics_article--header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: #080808;
	margin-bottom: 32px;
}

.topics_article--header .category {
	font-size: 12px;
	font-style: normal;
	font-weight: 300;
	letter-spacing: 0.24px;
	border-radius: 1px;
	border: 1px solid rgba(0, 0, 0, 0.4);
	display: flex;
	/* width: 96px; */
	padding: 3.5px 4px;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.topics_article--header .date {
	font-family: "Cinzel", serif;
	font-size: 12.8px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	/* 12.8px */
	letter-spacing: 2.048px;
	text-transform: uppercase;
}

.topics_article h2 {
	font-size: 18.4px;
	font-style: normal;
	font-weight: 300;
	line-height: 140%;
	/* 25.76px */
	letter-spacing: 0.368px;
	margin: 0 0 16px;
}

@media screen and (min-width: 769px) {
	.topics_article h2 {
		font-size: 20px;
		letter-spacing: 0.4px;
		margin: 0 0 48px;
	}
}

.topics_article--tags {
	font-size: 10.4px;
	font-style: normal;
	font-weight: 300;
	line-height: 180%;
	/* 18.72px */
	letter-spacing: 0.208px;
	margin: 0 0 24px;
}

@media screen and (min-width: 769px) {
	.topics_article--tags {
		margin: 0 0 24px;
	}
}

.topics_article--tags span {
	margin-right: 5px;
}

@media screen and (min-width: 769px) {
	.topics_article--tags span {
		margin-right: 12px;
	}
}

.topics_article p {
	font-size: 12.8px;
	font-weight: 300;
	line-height: 180%;
	/* 23.04px */
	letter-spacing: 0.512px;
	margin: 0 0 32px;
}

@media screen and (min-width: 769px) {
	.topics_article p {
		margin: 0 0 64px;
	}
}

.topics_article--images {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

@media screen and (min-width: 769px) {
	.topics_article--images {
		display: grid;
	}
}

@media screen and (min-width: 769px) {
	.topics_article--images.--two {
		grid-template-columns: repeat(2, 1fr);
		gap: 36px;
	}
}

@media screen and (min-width: 769px) {
	.topics_article--images.--three {
		grid-template-columns: repeat(3, 1fr);
		gap: 32px;
	}
}

.topics_article--images img {
	width: 336px;
	height: 224px;
	object-fit: cover;
}

@media screen and (min-width: 769px) {
	.topics_article--images img {
		width: 100%;
		height: auto;
	}
}

.new_topics {
	margin: 0 auto 32px;
}

@media screen and (min-width: 769px) {
	.new_topics {
		width: 100%;
		margin: 64px auto 4.2rem;
		position: relative;
		box-sizing: border-box;
		max-width: 1312px;
	}
}

.new_topics.--top {
	margin: 64px auto 32px;
}

@media screen and (min-width: 769px) {
	.new_topics.--top {
		margin: 64px auto;
	}
}

.new_topics h2 {
	font-size: 1.5rem;
	margin-bottom: 20px;
	font-family: "Cinzel", serif;
	font-style: normal;
	font-weight: 300;
	line-height: 80%;
	letter-spacing: 0.18rem;
	margin: 0 auto 2rem;
	width: calc(100% - 32px);
}

@media screen and (min-width: 769px) {
	.new_topics h2 {
		font-size: 2rem;
		margin-bottom: 3.4rem;
		max-width: 1312px;
		margin: 0 auto 2rem;
	}
}

.new_topics h2 span {
	font-size: 0.8rem;
	font-weight: 300;
	line-height: 160%;
	letter-spacing: 2.048px;
}

@media screen and (min-width: 769px) {
	.new_topics--wrap {
		max-width: 1312px;
		margin: 0 auto;
	}
}

.new_topics .top_btn {
	margin: 24px 16px 0 auto;
}

.new_topics .topics_list {
	margin: 32px auto;
	width: calc(100% - 32px);
}

@media screen and (min-width: 769px) {
	.new_topics .topics_list {
		max-width: 1312px;
		margin: 80px auto 48px;
	}
}

.new_topics .topics_list--item {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.4);
	padding: 1.5rem 0;
	position: relative;
}

.new_topics .topics_list--item:first-of-type {
	border-top: 1px solid rgba(0, 0, 0, 0.4);
}

@media screen and (min-width: 769px) {
	.new_topics .topics_list--item {
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 0.8rem;
	}
}

.new_topics .topics_list--wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.new_topics .topics_list--media img {
	width: 160px;
	height: 90px;
	object-fit: cover;
}

.new_topics .topics_list--content {
	flex: 1;
}

.new_topics .topics_list--meta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	width: calc(100% - 160px - 1rem);
}

@media screen and (min-width: 769px) {
	.new_topics .topics_list--meta {
		width: 404px;
		flex-direction: row;
		justify-content: center;
		gap: 2.5rem;
	}
}

.new_topics .topics_list--date {
	font-family: "Cinzel", serif;
	font-size: 12.8px;
	font-weight: 400;
	line-height: 100%;
	/* 12.8px */
	letter-spacing: 2.048px;
	text-transform: uppercase;
}

.new_topics .topics_list--category {
	font-size: 12px;
	font-weight: 300;
	line-height: 180%;
	/* 21.6px */
	letter-spacing: 0.24px;
	border-radius: 1px;
	border: 1px solid rgba(0, 0, 0, 0.4);
	display: flex;
	/* width: 96px; */
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}

.new_topics .topics_list--title {
	font-size: 0.9rem;
	font-weight: 300;
	line-height: 120%;
	/* 1.08rem */
	letter-spacing: 0.072rem;
	margin: 0 0 0.6rem;
}

.new_topics .topics_list--description {
	font-size: 0.7rem;
	font-weight: 300;
	line-height: 160%;
	/* 1.12rem */
	letter-spacing: 0.028rem;
	width: 20rem;
}

@media screen and (min-width: 769px) {
	.new_topics .topics_list--description {
		width: 100%;
	}
}

.new_topics .topics_list .more-button {
	position: absolute;
	bottom: 28px;
	right: 0;
}

@media screen and (min-width: 769px) {
	.new_topics .topics_list .more-button {
		bottom: calc(50% - 12px);
		right: 0;
	}
}

/*# sourceMappingURL=main.css.map */

/* New Selection */
.selection {
	padding: 26px 16px;
}

@media screen and (min-width: 769px) {
	.selection {
		padding: 50px 64px 55px;
	}
}

.selection--list {
	display: flex;
	flex-direction: column;
	gap: 48px;
	width: calc(100% - 32px);
	margin: 0 auto 48px;
}

@media screen and (min-width: 769px) {
	.selection--list {
		max-width: 1312px;
		margin: auto;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 64px;
		margin: 0 auto 64px;
	}
}

@media screen and (min-width: 769px) {
	.selection--list .car-details {
		margin: 32px 0 0;
	}
}

.selection--list .car-details h3 {
	font-family: "Cinzel", serif;
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 80%;
	letter-spacing: 0.16rem;
	margin: 24px 0 0;
}

@media screen and (min-width: 769px) {
	.selection--list .car-details h3 {
		margin: 0;
	}
}

.selection--list .car-details .text {
	font-size: 0.85rem;
	margin: 0.8rem 0 0;
}

.selection--list .car-details .price {
	font-family: "Cinzel", serif;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: 0.1rem;
	margin: 0.8rem 0 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.selection--list .car-details .price span {
	font-family: "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "Noto Serif JP", serif;
	font-size: 0.7rem;
	font-weight: 300;
	letter-spacing: 0.056rem;
	margin-right: 1rem;
}

.selection--list .car-details .arrow__link {
	display: block;
	margin-left: 1rem;
}

.selection--list .car-details .arrow__link img {
	width: 24px;
	height: auto;
}

.selection--list .car-details--info {
	font-family: "Cinzel", serif;
	font-size: 0.9rem;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: 0.036rem;
	border-top: 1px solid rgba(0, 0, 0, 0.32);
	border-bottom: 1px solid rgba(0, 0, 0, 0.32);
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 0.4rem 0rem;
	margin: 0.5rem 0 0;
}

.selection--list .car-details .info-block {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 5px;
}

.selection--list .car-details .item {
	font-size: 0.7rem;
	font-weight: 300;
	line-height: 140%;
	letter-spacing: 0.028rem;
}

.selection--list .car-details .unit {
	font-size: 0.65rem;
	font-weight: 300;
	line-height: 140%;
	letter-spacing: 0.026rem;
}

@media screen and (min-width: 769px) {
	.selection--item {
		width: calc(50% - 112px);
	}
}

@media screen and (min-width: 769px) {
	.selection--link {
		display: block;
	}
}

.selection--main_img img {
	width: 100%;
}

.selection--imgs {
	display: flex;
	gap: 16px;
	margin-top: 16px;
}

@media screen and (min-width: 769px) {
	.selection--imgs {
		margin-top: 32px;
		gap: 32px;
	}
}

.selection--imgs figure {
	width: calc(50% - 8px);
}

.selection--imgs figure img {
	aspect-ratio: 512/256;
	object-fit: cover;
	height: 100%;
}

@media screen and (min-width: 769px) {
	.selection--wrap {
		width: 109%;
	}
}

.selection_filter {
	width: calc(100% - 32px);
	margin: 0 auto 48px;
	padding: 16px;
	border-radius: 4px;
	border: 1px solid rgba(0, 0, 0, 0.16);
}

@media screen and (min-width: 769px) {
	.selection_filter {
		max-width: 1312px;
		padding: 32px;
		margin: 0 auto 64px;
	}
}

.selection_filter--wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.selection_filter h3 {
	font-family: "Cinzel", serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 80%;
	/* 19.2px */
	letter-spacing: 3.84px;
	text-transform: uppercase;
}

.selection_filter .close-filter {
	background: none;
	border: none;
	font-size: 12px;
	font-style: normal;
	font-weight: 300;
	line-height: 112%;
	display: flex;
	align-items: center;
	position: relative;
}

.selection_filter .close-filter::after {
	content: "";
	display: inline-block;
	width: 12px;
	height: 1px;
	background: #080808;
	margin: 0 0 0 5px;
}

.selection_filter .close-filter span::after {
	content: attr(data-close);
}

.selection_filter .close-filter.deactivate::before {
	content: "";
	display: inline-block;
	width: 1px;
	height: 12px;
	background: #080808;
	position: absolute;
	right: 6px;
	top: calc(50% - 6px);
}

.selection_filter .close-filter.deactivate span::after {
	content: attr(data-open);
}

@keyframes fadeIn {
	0% {
		display: none;
		opacity: 0;
	}

	1% {
		display: block;
		opacity: 0;
	}

	100% {
		display: block;
		opacity: 1;
	}
}

.selection_filter--content {
	display: block;
	opacity: 1;
	margin: 32px 0 0;
}

.selection_filter--content.deactivate {
	display: none;
	opacity: 0;
	animation: fadeIn 0.3s ease-in-out;
}

.selection_filter--container {
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid rgba(0, 0, 0, 0.16);
	padding: 0 0 20px;
	margin: 0 0 20px;
}

@media screen and (min-width: 769px) {
	.selection_filter--container {
		flex-direction: row;
		align-items: center;
		padding: 0 0 24px;
		margin: 0 0 24px;
	}
}

.selection_filter--container.--no_border {
	border-bottom: none;
	padding: 0;
	margin: 0 0 32px;
}

@media screen and (min-width: 769px) {
	.selection_filter--container.--start {
		align-items: flex-start;
	}
}

.selection_filter h4 {
	font-size: 13.6px;
	font-weight: 300;
	line-height: 120%;
	/* 16.32px */
	letter-spacing: 2.176px;
	margin: 0 0 24px;
}

@media screen and (min-width: 769px) {
	.selection_filter h4 {
		width: 160px;
		margin: 0;
		flex: 0 0 auto;
	}
}

.selection_filter--form {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.selection_filter--item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px;
	box-sizing: border-box;
	cursor: pointer;
}

.selection_filter--item input[type=checkbox] {
	display: none;
}

.selection_filter--item img {
	max-width: 62px;
	max-height: 34px;
	object-fit: contain;
}

.selection_filter--item span {
	font-size: 11.2px;
	font-weight: 300;
	line-height: 160%;
	/* 17.92px */
	letter-spacing: 0.224px;
	white-space: nowrap;
}

.selection_filter--item:hover {
	background-color: #fff;
}

.selection_filter--item input[type=checkbox]:checked+img,
.selection_filter--item input[type=checkbox]:checked+span {
	background-color: #fff;
}

.price-filter {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 13.6px;
	font-weight: 300;
}

.price-filter .price-range {
	display: flex;
	align-items: center;
	gap: 8px;
}

.price-filter .price-range span {
	font-family: "Cinzel", serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 140%;
	/* 22.4px */
	letter-spacing: 1.28px;
}

.price-filter .price-range .price-input {
	appearance: none;
	/* デフォルトの矢印を非表示 */
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: #fff;
	border-radius: 2px;
	padding: 8px;
	font-family: Cinzel;
	font-size: 18.4px;
	line-height: 100%;
	letter-spacing: 0.736px;
	width: 140px;
	text-align: right;
	box-sizing: border-box;
	cursor: pointer;
	height: 30px;
}

@media screen and (min-width: 769px) {
	.price-filter .price-range .price-input {
		width: 160px;
	}
}

.price-filter .price-range .price-input:hover {
	border-color: #888;
}

.price-filter .price-range .price-input:focus {
	outline: none;
	border-color: #555;
}

.color-options {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 24px;
}

.color-options .color-item {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	/* 色のボックス */
	/* 色名 */
	/* チェックされた時のスタイル */
}

.color-options .color-item input[type=checkbox] {
	display: none;
	/* チェックボックスを非表示 */
}

.color-options .color-item .color-box {
	width: 12px;
	height: 12px;
	display: inline-block;
}

.color-options .color-item .color-name {
	font-size: 11.2px;
	font-weight: 300;
	line-height: 160%;
}

.color-options .color-item input[type=checkbox]:checked+.color-box {
	outline: 2px solid #555;
	outline-offset: 2px;
}

.selection_action_buttons {
	display: flex;
	gap: 16px;
	/* ボタン間のスペース */
	justify-content: center;
	/* ボタンを中央揃え */
}

.selection_action_buttons .button {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	font-weight: 300;
	line-height: 112%;
	/* 13.44px */
	width: 160px;
	height: 48px;
	padding: 0px 20px 0px 24px;
	border-radius: 24px;
	cursor: pointer;
	position: relative;
}

.selection_action_buttons .button img {
	width: 24px;
}

.selection_action_buttons .button:focus {
	outline: none;
}

.selection_action_buttons .clear-button {
	border: 1px solid rgba(0, 0, 0, 0.16);
	padding: 0px 20px 0px 40px;
}

.selection_action_buttons .clear-button::before,
.selection_action_buttons .clear-button::after {
	content: "";
	width: 12px;
	height: 1px;
	background-color: #080808;
	flex-shrink: 0;
	position: absolute;
	top: calc(50% - 1px);
	right: 36px;
}

.selection_action_buttons .clear-button::before {
	transform: rotate(45deg);
}

.selection_action_buttons .clear-button::after {
	transform: rotate(-45deg);
}

.selection_action_buttons .filter-button {
	border: 1px solid rgba(0, 0, 0, 0.8);
	justify-content: center;
}

.selection-gallery {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	padding: 16px 16px 48px;
	/* メイン画像 */
	/* サムネイルスライダー */
	/* ナビゲーションボタン */
}

@media screen and (min-width: 769px) {
	.selection-gallery {
		flex-direction: row;
		justify-content: space-between;
		gap: 0;
		padding: 0 8px;
		position: relative;
		margin: 0 0 64px;
	}
}

.selection-gallery .main-image {
	width: 100%;
}

.selection-gallery .main-image img {
	width: 100%;
	height: 184px;
	border-radius: 2px;
	object-fit: cover;
}

@media screen and (min-width: 769px) {
	.selection-gallery .main-image img {
		width: 984px;
		height: 492px;
	}
}

.selection-gallery .thumbnail-slider {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	overflow: hidden;
	/* サムネイル */
}

@media screen and (min-width: 769px) {
	.selection-gallery .thumbnail-slider {
		align-items: flex-end;
		width: auto;
	}
}

.selection-gallery .thumbnail-slider .thumbnails {
	display: flex;
	gap: 16px;
}

@media screen and (min-width: 769px) {
	.selection-gallery .thumbnail-slider .thumbnails {
		flex-direction: column;
	}
}

.selection-gallery .thumbnail-slider .thumbnails .thumbnail {
	width: 112px;
	height: 56px;
	object-fit: cover;
	border-radius: 2px;
	cursor: pointer;
	/* サムネイル1枚目だけ暗くする */
}

@media screen and (min-width: 769px) {
	.selection-gallery .thumbnail-slider .thumbnails .thumbnail {
		width: 256px;
		height: 128px;
	}
}

.selection-gallery .thumbnail-slider .thumbnails .thumbnail.active {
	filter: brightness(50%);
	cursor: default;
	/* クリック不可 */
}

.selection-gallery .selection_navigation {
	display: flex;
	gap: 8px;
}

@media screen and (min-width: 769px) {
	.selection-gallery .selection_navigation {
		position: absolute;
		right: 96px;
		bottom: 0;
	}
}

.selection-gallery .slider-nav {
	color: #fff;
	background-color: #080808;
	border-radius: 1.5rem;
	border: 1px solid #080808;
	width: 64px;
	box-sizing: border-box;
	height: 48px;
	padding: 0 20px;
}

.selection-gallery .slider-nav::after {
	content: none;
}

@media screen and (min-width: 769px) {
	.selection-gallery .slider-nav {
		bottom: 6px;
	}
}

.car-details {
	display: flex;
	flex-direction: column;
	max-width: 1312px;
	gap: 24px;
	padding: 0 16px;
	margin: 0 auto;
}

.car-details .car-brand {
	display: flex;
	align-items: center;
	gap: 8px;
}

.car-details .car-brand .brand-logo {
	max-width: 62px;
	max-height: 34px;
	object-fit: contain;
}

.car-details .car-brand .brand-name {
	font-family: "Cinzel", serif;
	font-size: 24px;
	line-height: 100%;
	/* 24px */
	letter-spacing: 1.92px;
}

@media screen and (min-width: 769px) {
	.car-details .car-brand .brand-name {
		font-size: 32px;
		letter-spacing: 2.56px;
	}
}

.car-details .car-title {
	font-size: 18.4px;
	font-weight: 300;
	line-height: 140%;
	/* 25.76px */
	letter-spacing: 0.736px;
}

@media screen and (min-width: 769px) {
	.car-details .car-title {
		font-size: 20px;
		letter-spacing: 0.8px;
	}
}

.car-details .car-description {
	font-size: 12.8px;
	font-weight: 300;
	line-height: 160%;
	/* 20.48px */
	letter-spacing: 0.512px;
}

.car-details .car-price {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 16px;
}

.car-details .car-price .price-label {
	font-size: 11.2px;
	font-weight: 300;
	line-height: 140%;
	/* 15.68px */
	letter-spacing: 0.896px;
}

.car-details .car-price .price-value {
	font-family: "Cinzel", serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	/* 33.6px */
	letter-spacing: 1.92px;
}

.car-details .car-info {
	display: flex;
	flex-wrap: wrap;
	padding: 12px 0;
	border-top: 1px solid rgba(0, 0, 0, 0.32);
	border-bottom: 1px solid rgba(0, 0, 0, 0.32);
}

.car-details .car-info .info-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

@media screen and (min-width: 769px) {
	.car-details .car-info .info-item {
		flex-direction: row;
		justify-content: center;
		gap: 4px;
	}
}

.car-details .car-info .info-item .info-label {
	font-size: 11.2px;
	font-weight: 300;
	line-height: 140%;
	/* 15.68px */
	letter-spacing: 0.448px;
}

.car-details .car-info .info-item .info-value {
	font-family: "Cinzel", serif;
	font-size: 20px;
	line-height: 140%;
	/* 28px */
	letter-spacing: 0.8px;
}

.car-details .car-info .info-item .info-unit {
	font-size: 10.4px;
	font-weight: 300;
	line-height: 140%;
	/* 14.56px */
	letter-spacing: 0.416px;
}

@media screen and (min-width: 769px) {
	.car-details .car_notice_wrap {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
}

.car-details .car-notice {
	font-size: 11.2px;
	font-weight: 300;
	line-height: 160%;
	/* 17.92px */
	letter-spacing: 0.896px;
	margin: 0 0 16px;
}

.car-details .contact-button {
	display: inline-block;
	text-align: center;
	padding: 12px 16px;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	background-color: #000;
	border-radius: 4px;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.car-details .contact-button:hover {
	background-color: #333;
}

.selection_car_specs {
	display: flex;
	flex-direction: column;
	border-radius: 1px;
	background: #181818;
	color: #fff;
	padding: 4px 0;
	margin: 48px 0 32px;
}

@media screen and (min-width: 769px) {
	.selection_car_specs {
		max-width: 1312px;
		margin: 64px auto;
	}
}

.selection_car_specs .spec-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 4px 0;
}

@media screen and (min-width: 769px) {
	.selection_car_specs .spec-row {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
	}
}

.selection_car_specs .spec-row .spec-item {
	flex: 1 1 50%;
	/* スマホで2列レイアウト */
	display: flex;
	flex-direction: column;
	gap: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
	padding: 12px 0;
}

.selection_car_specs .spec-row .spec-item:last-child,
.selection_car_specs .spec-row .spec-item:nth-child(9) {
	border-bottom: none;
}

@media screen and (min-width: 769px) {
	.selection_car_specs .spec-row .spec-item {
		border-bottom: 1px solid rgba(255, 255, 255, 0.16);
		/* PC版では右線を追加 */
		padding: 12px;
	}

	.selection_car_specs .spec-row .spec-item:nth-last-child(-n+5) {
		border-bottom: none;
		/* 下線を削除 */
	}
}

.selection_car_specs .spec-row .spec-item .spec-label {
	font-size: 11.2px;
	font-weight: 300;
	line-height: 140%;
	/* 15.68px */
	letter-spacing: 0.448px;
	color: #c0c0c0;
	text-align: center;
}

.selection_car_specs .spec-row .spec-item .spec-value {
	font-size: 13.6px;
	font-weight: 300;
	line-height: 140%;
	/* 19.04px */
	letter-spacing: 0.544px;
	text-align: center;
}

/* sub.cssの修飾 */
.faq__answer .--contact {
	display: flex;
}

.faq__answer .--contact span {
	margin-right: 32px;
}

.faq__answer a {
	text-decoration: underline;
}

.company__txt02 a {
	text-decoration: underline;
}

.buy-desc__group02.--sell {
	border-top: 1px solid rgba(255, 255, 255, 0.32);
}

@media screen and (min-width: 769px) {
	.buy-desc__group02.--sell {
		grid-template-areas:
			"text01 img"
			"text02 img"
			"text04 img"
			"text03 img";
		grid-template-columns: 640fr 544fr;
	}
}

.buy-desc__group02 .sell_title {
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 180%;
	letter-spacing: 2.56px;
	grid-area: text04;
}

.to-ShiftGateJapan__link.--rental {
	padding: 12px 46px 12px 16px;
}

@media screen and (min-width: 769px) {
	.to-ShiftGateJapan__link.--rental {
		padding: 12px 16px;
	}
}

.experience-access__txt02 span {
  font-size: 15px;
}

.company .company__logo img {
	max-height: 32px;
	width: auto;
}