/* loading */
.loading {
	position: fixed;
	z-index: 999999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/loading-bg.svg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.loading_logo {
	width: 15rem;
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.loading_number {
	font-family: ivymode, sans-serif;
	font-weight: 200;
	font-size: 2.8rem;
	color: var(--main-color);
	position: absolute;
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);
}
@media (max-width:768px) {
	.loading_logo {
		width: 12rem;
	}
	.loading_number {
		font-size: 2.2rem;
	}
}

/* header */
.header {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.header.show {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition: opacity 0.5s ease;
}


/* 固定ボタン */
.fixed_btn {
	display: none;
	position: fixed;
	z-index: 500;
	bottom: 2.5rem;
	right: 2.5rem;
}
.fixed_btn_link {
	width: 30.6rem;
	height: 7rem;
	display: flex;
	align-items: center;
	gap: 3rem;
	border: 1px solid rgb(51 51 51 / .3);
	border-radius: 100vmax;
	background-color: rgb(219 245 240 / .7);
	padding: 0 1.5rem;
	backdrop-filter: blur(11px);
}
.fixed_btn_icon {
	width: 3.5rem;
}
.fixed_btn_text_ja {
	font-weight: 300;
	font-size: 1.5rem;
	line-height: 1;
	letter-spacing: 0.05em;
}
.fixed_btn_text_en {
	font-family: aktiv-grotesk, sans-serif;
	font-size: 1.2rem;
	line-height: 1;
	letter-spacing: 0.05em;
	margin-top: .7rem;
}
@media (max-width: 767px) {
	.fixed_btn {
		bottom: 1.5rem;
		right: 1.5rem;
	}
	.fixed_btn_link {
		width: 21rem;
		height: 5.5rem;
		gap: 1rem;
		padding: 0 1rem;
	}
	.fixed_btn_icon {
		width: 3rem;
	}
	.fixed_btn_text_ja {
		font-size: 1.3rem;
	}
	.fixed_btn_text_en {
		font-size: 1rem;
		margin-top: .7rem;
	}
}


/* MV */
.mv {
	position: relative;
	height: calc(var(--vh) * 100);
	max-height: 110rem;
	padding-bottom: 8.8rem;
	padding-left: 11.7rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.mv::before{
	content: "";
	width: 100%;
	height: 30rem;
	position: absolute;
	bottom: 0;
	left: 0;
	background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.5));
	@media (max-witdh:480px){
		content: none;
	}
}
.mv_logo {
	display: none;
}
.mv_image {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: calc(var(--vh) * 100);
	clip-path: inset(0 0 0 0);
	z-index: -1;
}
.mv_image_swiper {
	/* position: fixed;
	left: 0;
	top: 0; */
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.mv_img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	display: block;
}
.mv_box{
	margin: auto 0;
	@media (max-width:480px){
		margin: 8rem 0 auto 0;
	}
}
.mv_box_logo_wrap {
	overflow: hidden;
	margin-bottom: 2.5rem;
	@media (max-width:480px){
		margin-bottom: 0;
	}
}
.mv_box_logo {
	width: 19rem;
	display: block;
	transform: translateY(100%) skewX(30deg);
}
.mv_box_text_wrap {
	overflow: hidden;
	margin-top: 0.4rem;
}
.mv_box_text {
	font-family: ivymode, sans-serif;
	font-size: 1.6rem;
	color: var(--main-color);
	line-height: 1;
	transform: translateY(100%) skewX(50deg);
	padding-bottom: .3rem;
}
.mv_box_text span {
	font-style: italic;
}
.mv_bottom {
	margin-top: 7rem;
	opacity: 0;
}
.mv_bottom_box {
	position: relative;
	display: inline-block;
}
.mv_list {
	display: flex;
	align-items: center;
	gap: 3.5rem;
	margin-top: .8rem;
}
.mv_list_item_link {
	font-family: aktiv-grotesk, sans-serif;
	font-size: 1.5rem;
	color: #fff;
	letter-spacing: 0.05em;
}
.mv_language {
	background-color: #00CBCC;
	border-radius: 2rem;
	padding: .8rem 1.2rem;
	position: absolute;
	top: 0;
	left: calc(100% + 5rem);
}
.mv_language_item {
	display: flex;
	align-items: center;
	gap: .5rem;
}
.mv_language_item_link {
	font-family: aktiv-grotesk, sans-serif;
	font-size: 1.3rem;
	color: #fff;
	letter-spacing: 0.05em;
}
.mv_language_item_arrow {
	width: .8rem;
	transition: transform .3s;
}
.mv_language:hover .mv_language_item_arrow {
	transform: rotate(180deg);
}
.mv_language_accordion {
	display: none;
}
.mv_language_accordion .mv_language_item {
	margin-top: .8rem;
}
.mv_scroll {
	position: absolute;
	bottom: 4rem;
	right: 7.7rem;
	height: 8rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.mv_scroll:before{
	-webkit-animation: scrollBorder 3s infinite;
	animation: scrollBorder 3s infinite;
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	height: 5.4rem;
	width: .1rem;
	background: #5D5D5D;
	z-index: 2;
}
.mv_scroll:after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	height: 5.4rem;
	width: .1rem;
	background: #fff;
}
.mv_scroll_text {
	font-family: ivymode, sans-serif;
	font-weight: 300;
	font-size: 1.3rem;
	color: #fff;
	letter-spacing: 0.04em;
}
@media (max-width: 767px) {
	.mv {
		padding-bottom: 15rem;
		padding-left: 2.4rem;
	}
	.mv_box_logo {
		width: 12rem;
		margin-bottom: 1.5rem;
	}
	.mv_box_text {
		font-size: 1.5rem;
	}
	.mv_scroll {
		bottom: 3rem;
		right: 2.4rem;
	}
	.mv_scroll_text {
		font-size: 1.1rem;
	}
}



/* banner */
.banner {
	padding-top: 8rem;
	background-color: #fff;
}
.banner_swiper_item {
	width: 65rem;
	margin: 0 1.25rem;
}
.banner_swiper .swiper-pagination {
	width: 28rem;
	position: relative;
	margin: 4rem auto 0;
	padding: .4rem 0;
	background: none;
}
.banner_swiper .swiper-pagination:before {
	content: "";
	display: block;
	width: 100%;
	height: .1rem;
	background-color: rgb(30 30 30 / .6);
}
@media (max-width: 767px) {
	.banner_swiper_item {
		width: 33.5rem;
		padding: 0 .5rem;
	}
	.banner_swiper .swiper-pagination {
		width: 21rem;
		margin-top: 2.5rem;
	}
}


/* news */
.news {
	padding: 12rem 0;
	background-color: #fff;
}
.news_box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
	min-height: 25.5rem;
}
.news_list {
	width: calc(78rem * var(--scale));
}
.news_list_item {
	position: relative;
}
.news_list_item_line {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: .1rem;
	background-color: rgb(30 30 30 / .2);
	transform-origin: left top;
}
.news_list_item:last-child .news_list_item_line2 {
	position: absolute;
	bottom: 0;
	top: inherit;
	left: 0;
	width: 100%;
	height: .1rem;
	background-color: rgb(30 30 30 / .2);
	transform-origin: left top;
}
.news_list_item_link {
	padding: 2.2rem 15rem 2.2rem 0;
	display: flex;
	position: relative;
}
.news_list_item_link:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 1.2rem;
	height: .7rem;
	background-image: url(../img/arrow-black.svg);
	background-size: cover;
	background-position: center;
}
.news_list_item_link:hover:before {
	animation-name: transformLeftRight2;
	animation-fill-mode: forwards;
	animation-duration: .7s;
	transition-timing-function: ease-out;
}
.news_list_item_info {
	width: 13rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: .5rem;
}
.news_list_item_date {
	font-family: aktiv-grotesk, sans-serif;
	font-size: 1.4rem;
	color: var(--main-color);
	line-height: 1;
}
.news_list_item_category {
	font-family: aktiv-grotesk, sans-serif;
	font-size: 1.4rem;
	color: var(--main-color);
	line-height: 1;
}
.news_list_item_title {
	font-size: 1.4rem;
	line-height: 1.5;
	flex: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.news_link {
	position: absolute;
	top:  18rem;
	left: 0;
}
@media (max-width: 767px) {
	.news {
    padding: 10rem 0;
	}
	.news_list {
		width: 100%;
		margin-top: 3.7rem;
	}
	.news_list_item_link {
		flex-direction: column;
		gap: 1.3rem;
		padding-right: 0;
	}
	.news_list_item_link:before {
		transform: inherit;
		top: 2.8rem;
	}
	.news_list_item_info {
		flex-direction: row;
		justify-content: flex-start;
		gap: 2.5rem;
	}
	.news_list_item_title {
		width: 34.5rem;
	}
	.news_link {
		position: static;
		text-align: right;
		margin-top: 4rem;
		width: 100%;
	}
}


/* salon */
.salon {
	padding: 10rem 0 4rem;
	background-image: url(../img/grade-bg.svg);
	background-size: cover;
	background-position: top left;
	position: relative;
	z-index: 2;
}
.salon_slide {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 53.5rem;
	background-image: url(../img/salon1.jpg);
	background-size: cover;
	background-position: center;
}
.salon_slide:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(30 30 30 / .6);
	z-index: 3;
}
.salon_slide_item {
	mask-image: url(../img/salon-mask.png);
	-webkit-mask-image: url(../img/salon-mask.png);
	-webkit-mask-size: 350% 100%;
	mask-size: 350% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: -100% 0;
	mask-position: -100% 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.salon_slide_item.active {
	-webkit-mask-position: 100% 0;
	mask-position: 100% 0;
	transition: -webkit-mask-position 4s;
	transition: mask-position 4s;
	transition: mask-position 4s, -webkit-mask-position 4s;
	overflow: hidden;
}
.salon_slide_img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.salon_box {
	position: relative;
}
.salon .title_box {
	color: #fff;
}
.salon .title_ja:before {
	background-color: #fff;
}
.salon_text {
	font-family: source-han-serif-japanese, serif;
	font-size: 1.8rem;
	color: #fff;
	line-height: 1.8;
	letter-spacing: 0.04em;
	margin-top: 2.5rem;
}
.salon_link {
	position: absolute;
	right: 0;
	bottom: 0;
}
.salon .link_btn {
	border-color: #fff;
}
.salon .link_btn_text {
	color: #fff;
}
.salon .link_btn:after {
	filter: brightness(10);
}
.salon_search {
	width: calc(98rem * var(--scale));
	margin: 8rem auto 0;
}
.salon_search_title {
	display: flex;
	align-items: baseline;
}
.salon_search_title_en {
	font-family: ivymode, sans-serif;
	font-weight: 300;
	font-size: 2.8rem;
	color: #fff;
	line-height: 1;
	display: flex;
	align-items: center;
}
.salon_search_title_en:after {
	content: "";
	display: inline-block;
	width: 2rem;
	height: .1rem;
	background-color: #fff;
	margin-left: 1.5rem;
	margin-right: 1.5rem;
	transform: rotate(110deg);
}
.salon_search_title_ja {
	font-size: 1.25rem;
	color: #fff;
	letter-spacing: 0.02em;
}
.search_box {
	height: 44rem;
	border-radius: 1.1rem;
	border: .1rem solid rgb(30 30 30 / .2);
	background-color: #fff;
	margin-top: 1.5rem;
	padding-top: 5rem;
}
.search_form {
	width: calc(78rem * var(--scale));
	margin: auto;
}
.search_form_item + .search_form_item{
	margin-top: 4rem;
}
.search_form_item_title {
	font-size: 1.5rem;
	line-height: 1;
	letter-spacing: 0.02em;
	display: flex;
	gap: 1.15rem;
	padding-bottom: 1.5rem;
	position: relative;
}
.search_form_item_title_line {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: .1rem;
	background-color: #1E1E1E;
	transform-origin: left top;
}
.search_form_item_title:before {
	content: "";
/*	display: inline-block;*/
	display: none;
	width: 1.5rem;
	height: 1.5rem;
	background-image: url(../img/search-icon.svg);
	background-size: cover;
	background-position: center;
}
.search_form_item_accordion {
	font-size: 1.5rem;
	letter-spacing: 0.02em;
	width: 30.5rem;
	height: 4rem;
	background-color: rgb(51 51 51 / .13);
	border-radius: 1.1rem;
	text-align: center;
	padding: 1.2rem 0;
	position: relative;
	cursor: pointer;
}
.search_form_item_accordion:before {
	content: "";
	display: inline-block;
	width: 1.5rem;
	height: 1.5rem;
	background-image: url(../img/search-icon.svg);
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 50%;
	left: 1.3rem;
	transform: translateY(-50%);
}
.search_form_item_accordion:after {
	content: "";
	display: inline-block;
	width: 1.3rem;
	height: .7rem;
	background-image: url(../img/search-btn-arrow.svg);
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 50%;
	right: 1.3rem;
	transform: translateY(-50%);
	transition: transform 0.3s ease;
}
.search_form_item_accordion.active:after {
	transform: translateY(-50%) rotate(180deg);
}
.search_form_item_accordion_content {
	display: block;
}
.search_form_area {
	display: flex;
	flex-wrap: wrap;
	gap: 1.1rem;
	margin-top: 2rem;
}
.search_form_area_item input {
	display: none;
}
.search_form_area_item input:checked + .search_form_area_item_text {
	color: #fff;
	background-color: var(--main-color);
}
.search_form_area_item_text {
	font-size: 1.25rem;
	color: #1E1E1E;
	letter-spacing: 0.02em;
	border: .1rem solid var(--main-color);
	border-radius: 100vmax;
	padding: 1.1rem 2.1rem .9rem;
	display: block;
}
.search_form_area_item_text span {
	padding: .1rem 0;
}
.search_form_feature {
	margin-top: 2rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem 3rem;
}
.search_form_feature_item {
	font-size: 1.4rem;
	letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  column-gap: 1rem;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
}
.search_form_feature_checkbox {
  appearance: none;
  position: relative;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--main-color);
  cursor: pointer;
}
.search_form_feature_checkbox:checked {
  background-color: var(--main-color);
}
.search_form_feature_checkbox:checked::after {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.3rem;
  width: 1.2rem;
  height: 0.6rem;
  border-bottom: .2rem solid #ffffff;
  border-left: 0.2rem solid #ffffff;
  transform: rotate(-45deg);
}
.search_form_btn {
	font-size: 1.6rem;
	color: #fff;
	letter-spacing: 0.02em;
	background-color: #1E1E1E;
	border-radius: 1.1rem;
	display: grid;
	place-items: center;
	width: 28rem;
	height: 4.5rem;
	margin: 4rem auto 0;
	position: relative;
}
.search_form_btn:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 1.4rem;
	transform: translateY(-50%);
	width: 1.5rem;
	height: 1.5rem;
	background-image: url(../img/search-icon.svg);
	background-size: cover;
	background-position: center;
	filter: brightness(25);
}
.search_form_btn span {
	padding: .1rem 0;
}
@media (max-width: 767px) {
	.salon {
		padding: 6rem 0 10rem;
	}
	.salon_text {
		font-size: 1.3rem;
		margin-top: 2rem;
	}
	.salon_link {
		position: static;
		margin-top: 4rem;
		text-align: right;
	}
	.salon_search_title_en {
		font-size: 1.7rem;
	}
	.salon_search_title_en:after {
		width: 1.2rem;
		margin-left: .8rem;
		margin-right: .8rem;
	}
	.salon_search_title_ja {
		font-size: 1.1rem;
	}
	.salon_search {
		width: 100%;
		margin-top: 5rem;
	}
	.search_form_area {
         margin-top: 0rem; 
	}
	.search_box {
		height: auto;
		padding: 3.4rem 2rem 3rem;
		margin-top: 1rem;
	}
	.search_form {
		width: 100%;
	}
	.search_form_item + .search_form_item {
    margin-top: 3rem;
	}
	.search_form_item_accordion_content {
		display: none;
	}
	.search_form_area_item_text {
		font-size: 1.2rem;
		padding: .8rem 1.6rem .7rem;
	}
	.search_form_feature_item {
		font-size: 1.2rem;
	}
	.search_form_feature_checkbox {
		width: 1.7rem;
		height: 1.7rem;
	}
	.search_form_feature_checkbox:checked::after {
		top: 0.4rem;
		width: 1rem;
	}

	.search_form_btn {
		width: 24rem;
		height: 4rem;
		font-size: 1.5rem;
		margin-top: 3rem;
	}
}


/* concept */
.concept {
	background-image: url(../img/grade-bg.svg);
	background-size: cover;
	height: calc(135dvh + 102rem);
}
.concept_image {
	position: sticky;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	height: 100dvh;
}
.concept_image_text {
	font-family: ivymode, sans-serif;
	font-weight: 300;
	font-size: 1.7rem;
	color: var(--main-color);
	position: absolute;
	top: 50%;
	left: 5rem;
	transform: translateY(-50%);
	writing-mode: vertical-rl;
}
.concept_img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 20% top;
	margin-left: auto;
}
.concept_box {
	position: relative;
	z-index: 3;
	margin-top: 30rem;
}
.concept_box .inner {
	padding-left: 3.5rem;
}
.concept_title {
	font-family: ivymode, sans-serif;
	font-weight: 300;
	font-size: 6.8rem;
	color: #fff;
	line-height: 1;
	letter-spacing: 0.04em;
	transition: color 0.3s ease;
	transition-delay: .3s;
}
.concept_title.active {
	color: var(--main-color);
}
.concept_title_italic {
	font-style: italic;
}
.concept_text {
	font-size: 1.7rem;
	color: #fff;
	line-height: 2.2;
	letter-spacing: 0.02em;
	margin-top: 5.3rem;
	transition: color 0.3s ease;
	transition-delay: .3s;
}
.concept_text.active {
	color: var(--main-color);
}
.concept_link {
	margin-top: 8rem;
}
.concept .link_btn {
	border-color: #fff;
}
.concept_link.active .link_btn {
	border-color: var(--main-color);
}
.concept .link_btn_text {
	color: #fff;
}
.concept_link.active .link_btn_text {
	color: var(--main-color);
}
.concept .link_btn:after {
	background-image: url(../img/arrow-blue.svg);
}
.concept_link.active .concept .link_btn:after {
	filter: brightness(25);
}
@media (max-width: 767px) {
	.concept {
		height: auto
	}
	.concept_box .inner {
		padding-left: 3rem;
	}
	.concept_box {
		padding: 0 1rem;
		padding-top: 100dvh;
		padding-bottom: 15rem;
		margin-top: -70dvh;
	}
	.concept_box_bg {
		position: absolute;
		z-index: -1;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-image: url(../img/grade-bg.svg);
		background-size: cover;
	}
	.concept_title {
		font-size: 5rem;
		white-space: nowrap;
	}
	.concept_text {
		font-size: 1.4rem;
		margin-top: 4rem;
	}
	.concept_image_text {
		font-size: 1.2rem;
		position: sticky;
		top: 50%;
		transform: translateY(-50%);
		left: 1rem;
	}
}


/* column */
.column {
	padding: 12rem 0;
	background-color: #F2F3F5;
	overflow: hidden;
	position: relative;
}
.column_link {
	position: absolute;
	top:  4.2rem;
	right: 10.125rem;
}
.pickup {
	margin-top: 6rem;
	padding-left: 2.8rem;
	position: relative;
}
.pickup_text {
	font-family: ivymode, sans-serif;
	font-size: 1.8rem;
	color: var(--main-color);
	writing-mode: vertical-rl;
	line-height: 1;
	position: absolute;
	top: 0;
	left: 0;
}
.pickup-pagination {
	position: absolute;
	z-index: 5;
	top: 35rem;
	right: 0;
	display: flex;
	align-items: center;
	gap: 2.5rem;
}
.pickup-swiper-btn-prev {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	border: .1rem solid var(--main-color);
	cursor: pointer;
	display: grid;
	place-items: center;
}
.pickup-swiper-btn-prev:before {
	content: "";
	display: inline-block;
	width: 1.2rem;
	height: .7rem;
	background-image: url("../img/arrow-blue.svg");
	background-size: contain;
	background-repeat: no-repeat;
	transform: rotate(180deg);
}
.pickup-swiper-btn-prev:hover:before {
	animation-name: transformRightLeft;
	animation-fill-mode: forwards;
	animation-duration: .7s;
	transition-timing-function: ease-out;
}
.pickup-swiper-btn-next {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	border: .1rem solid var(--main-color);
	cursor: pointer;
	display: grid;
	place-items: center;
}
.pickup-swiper-btn-next:before {
	content: "";
	display: inline-block;
	width: 1.2rem;
	height: .7rem;
	background-image: url("../img/arrow-blue.svg");
	background-size: contain;
	background-repeat: no-repeat;
}
.pickup-swiper-btn-next:hover:before {
	animation-name: transformLeftRight;
	animation-fill-mode: forwards;
	animation-duration: .7s;
	transition-timing-function: ease-out;
}
.pickup-swiper-pagination {
	font-family: aktiv-grotesk, sans-serif;
	font-size: 1.5rem;
	color: var(--main-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	flex: 1;
}
.pickup_swiper_item {
	display: flex;
	gap: 5rem;
}
.pickup_swiper_item_image {
	width: 46rem;
	aspect-ratio: 1/1;
	overflow: hidden;
	position: relative;
}
.pickup_swiper_item_img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.3s;
    position: relative;
    z-index: 1;
}
.pickup_swiper_item_img_bg {
	width: 100%;
	height: 100%;
    object-fit: cover;
    filter: blur(20px);
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
}
.pickup_swiper_item:hover .pickup_swiper_item_img {
	transform: scale(1.05);
}
.pickup_swiper_item_info {
	flex: 1;
	margin-top: 7.2rem;
}
.pickup_swiper_item_top {
	display: flex;
	align-items: center;
	gap: 3.5rem;
}
.pickup_swiper_item_date {
	font-family: aktiv-grotesk, sans-serif;
	font-size: 2rem;
	color: var(--main-color);
	line-height: 1;
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.pickup_swiper_item_date:before {
	content: "";
	display: inline-block;
	width: 2.5rem;
	height: .1rem;
	background-color: var(--main-color);
}
.pickup_swiper_item_category {
	font-family: aktiv-grotesk, sans-serif;
	font-size: 2rem;
	color: var(--main-color);
	line-height: 1;
}
.pickup_swiper_item_title {
	font-size: 2.5rem;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 70rem;
	margin-top: 1.5rem;
}
.pickup_swiper_item_editor {
	margin-top: 2rem;
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.pickup_swiper_item_editor_title {
	font-family: aktiv-grotesk, sans-serif;
	font-size: 1.4rem;
	width: 6.5rem;
	height: 2.5rem;
	border: .1rem solid #00CBCC;
	display: grid;
	place-items: center;
}
.pickup_swiper_item_editor_name {
	font-size: 1.8rem;
}
.pickup_swiper_item_tag {
	margin-top: 3rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 2.1rem;
	width: 35rem;
}
.pickup_swiper_item_tag_item {
	font-size: 1.5rem;
	color: #9B9B9B;
	line-height: 1;
}
.new {
	margin-top: 5rem;
	padding-left: 2.8rem;
	position: relative;
}
.new:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 2.8rem;
	height: 100%;
	z-index: 2;
	background-color: #F2F3F5;
}
.new_text {
	font-family: ivymode, sans-serif;
	font-size: 1.8rem;
	color: var(--main-color);
	writing-mode: vertical-rl;
	line-height: 1;
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
}
.new_swiper {
	margin-right: calc(50% - 50vw);
	overflow: hidden;
}
.new_swiper_item {
	width: 31.5rem;
	margin-right: 3.3rem;
}
.new_swiper_item_image {
	overflow: hidden;
	aspect-ratio: 1/1;
	position: relative;
}
.new_swiper_item_img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: .3s;
	position: relative;
	z-index: 1;
}
.new_swiper_item_img_bg {
	width: 100%;
	height: 100%;
    object-fit: cover;
    filter: blur(20px);
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
}
.new_swiper_item:hover .new_swiper_item_img {
	transform: scale(1.05);
}
.new_swiper_item_info {
	margin-top: 2.5rem;
}
.new_swiper_item_top {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}
.new_swiper_item_date {
	font-family: aktiv-grotesk, sans-serif;
	font-size: 1.5rem;
	color: var(--main-color);
	line-height: 1;
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.new_swiper_item_date:before {
	content: "";
	display: inline-block;
	width: 2.5rem;
	height: .1rem;
	background-color: var(--main-color);
}
.new_swiper_item_category {
	font-family: aktiv-grotesk, sans-serif;
	font-size: 1.5rem;
	color: var(--main-color);
	line-height: 1;
}
.new_swiper_item_title {
	font-size: 1.7rem;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 1.2rem;
}
.new_swiper_item_editor {
	margin-top: 2rem;
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.new_swiper_item_editor_title {
	font-family: aktiv-grotesk, sans-serif;
	font-size: 1.25rem;
	width: 6.5rem;
	height: 2.5rem;
	border: .1rem solid #00CBCC;
	display: grid;
	place-items: center;
}
.new_swiper_item_editor_name {
	font-size: 1.5rem;
}
@media (max-width: 767px) {
	.column {
		padding: 10rem 0;
	}
	.pickup {
		padding-left: 0;
		margin-top: 5.6rem;
	}
	.pickup_text {
		font-size: 1.3rem;
		position: static;
		writing-mode: horizontal-tb;
		margin-bottom: 1rem;
	}
	.pickup_swiper_item {
		display: block;
	}
	.pickup_swiper_item_image {
		width: 100%;
	}
	.pickup_swiper_item_info {
		margin-top: 2rem;
	}
	.pickup_swiper_item_top {
		gap: 2.5rem;
	}
	.pickup_swiper_item_date {
		font-size: 1.7rem;
	}
	.pickup_swiper_item_category {
		font-size: 1.7rem;
	}
	.pickup_swiper_item_title {
		font-size: 1.8rem;
		width: 100%;
	}
	.pickup_swiper_item_editor {
		margin-top: 1.5rem;
	}
	.pickup_swiper_item_editor_title {
		font-size: 1.3rem;
		width: 5rem;
	}
	.pickup_swiper_item_editor_name {
		font-size: 1.5rem;
	}
	.pickup_swiper_item_tag {
		margin-top: 1.5rem;
		width: 100%;
	}
	.pickup_swiper_item_tag_item {
		font-size: 1.3rem;
	}
	.pickup-pagination {
		position: static;
		width: 13.3rem;
		margin: 2.5rem auto 0;
		justify-content: space-between;
		gap: 0;
	}
	.pickup-swiper-pagination {
		font-size: 1.3rem;
	}
	.pickup-swiper-btn-prev {
		width: 3.3rem;
		height: 3.3rem;
	}
	.pickup-swiper-btn-next {
		width: 3.3rem;
		height: 3.3rem;
	}

	.new {
		padding-left: 0;
		margin-top: 4rem;
	}
	.new:before {
		display: none;
	}
	.new_text {
		font-size: 1.3rem;
		position: static;
		writing-mode: horizontal-tb;
		margin-bottom: 1rem;
	}
	.new_swiper_item {
		width: 27.6rem;
		margin-right: 2rem;
	}
	.new_swiper_item_info {
		margin-top: 2rem;
	}
	.new_swiper_item_title {
		font-size: 1.6rem;
	}
	.new_swiper_item_editor {
		margin-top: 1.2rem;
	}
	.new_swiper_item_editor_title {
		width: 5rem;
	}
	.column_link {
		position: static;
		margin-top: 3.5rem;
		text-align: right;
	}
}


/* style */
.style {
	background-color: #4D4D4D;
	padding: 12rem 0;
	overflow: hidden;
	position: relative;
}
.style:before {
	content: "";
	position: absolute;
	z-index: 3;
	top: 0;
	right: 0;
	width: calc(76.8rem * var(--scale));
	height: 100%;
	background-color: rgb(77 77 77 / .4);
}
.style .title_box {
	color: #fff;
}
.style .title_ja:before {
	background-color: #fff;
}
.style_text_img {
	width: 23.5rem;
	margin-top: 4rem;
}
.style_text {
	font-family: source-han-serif-japanese, serif;
	font-size: 1.8rem;
	line-height: 1.8;
	letter-spacing: 0.04em;
	color: #fff;
	margin-top: 15rem;
}
.style_link {
	margin-top: 8rem;
}
.style .link_btn {
	border-color: #fff;
}
.style .link_btn_text {
	color: #fff;
}
.style .link_btn:after {
	filter: brightness(10);
}
.style_slider1 {
	position: absolute;
	top: 0;
	left: 54.6rem;
	display: flex;
	flex-direction: column;
	gap: 6rem;
	height: 120rem;
}
.style_slider_pc {
	height: 120rem;
	position: absolute;
	top: 0;
}
.style_slider1 .swiper-wrapper {
	transition-timing-function: linear;
}
.style_slider2 .swiper-wrapper {
	transition-timing-function: linear;
}
.style_slider2 {
	position: absolute;
	top: -30rem;
	left: 94.6rem;
	display: flex;
	flex-direction: column;
	gap: 6rem;
	height: 120rem;
}
.style_slider_img {
	width: 36rem;
	height: 36rem;
	object-fit: cover;
	margin-bottom: 5rem;
}
@media (max-width: 767px) {
	.style {
		padding: 6rem 0 3.3rem;
		overflow: hidden;
	}
	.style:before {
		top: inherit;
		bottom: 3.3rem;
		width: 100%;
		height: 38.5rem;
	}
	.style_text_img {
		width: 16rem;
		margin-top: 2rem;
	}
	.style_text {
		font-size: 1.3rem;
		margin-top: 3.5rem;
	}
	.style_link {
		text-align: right;
		margin-top: 3.5rem;
	}
	.style_slider_sp {
		width: 100vw;
		margin: 6rem calc(50% - 50vw) 0;
	}
	.style_slider1 {
		position: static;
		flex-direction: row;
		gap: 2.5rem;
		height: auto;
		width: 60rem;
		margin-right: -18rem;
	}
	.style_slider2 {
		position: static;
		flex-direction: row;
		gap: 2.5rem;
		margin-top: 2.5rem;
		height: auto;
		width: 60rem;
		margin-left: -18rem;
	}
	.style_slider_img {
		width: 18rem;
		height: 18rem;
		margin-bottom: 0;
		margin-right: 2.5rem;
	}
}


/* creative */
.creative {
	position: relative;
	aspect-ratio: 1 / 0.650;
	padding-top: 17.8rem;
}
.cursor {
  position: fixed;
  top: -7rem;
  left: -7rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
	background-image: url(../img/cursor-img.svg);
	background-size: cover;
	background-position: center;
	opacity: 0;
}
.cursor:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	background-image: url(../img/cursor-img-line.svg);
	background-size: cover;
	background-position: center;
	animation: rotate 3s linear infinite;
	pointer-events: none;
}
.creative_modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(50 50 50 / .6);
	display: grid;
	place-items: center;
	z-index: 10000;
	display: none;
}
.creative_modal_inner {
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
}
.creative_modal_video {
	width: 110rem;
	aspect-ratio: 16/9;
	position: relative;
}
.creative_modal_close {
	position: absolute;
	top: -4.5rem;
	right: 0;
	width: 10rem;
	pointer-events: none;
}
.creative_modal_video iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.creative_bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	clip-path: inset(0 0 0 0);
	z-index: -1;
}
.creative_bg_video {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100lvh;
	pointer-events: none;
	object-fit: cover;
}
.creative_box {
	text-align: center;
}
.creative_box_text_en {
	font-family: ivymode, sans-serif;
	font-weight: 200;
	font-size: 2.2rem;
	color: #fff;
	line-height: 1;
}
.creative_box_line {
	width: .1rem;
	height: 3.6rem;
	background-color: #5D5D5D;
	margin: 1.5rem auto 0;
	position: relative;
	overflow: hidden;
}
.creative_box_line:before {
	-webkit-animation: scrollBorder 3s infinite;
	animation: scrollBorder 3s infinite;
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: .1rem;
	background: #fff;
	z-index: 2;
}
.creative_box_title {
	font-family: source-han-serif-japanese, serif;
	font-size: 4.2rem;
	line-height: 1.6;
	letter-spacing: 0.04em;
	color: #fff;
	margin-top: 2.5rem;
}
.creative_box_title span {
	display: inline-block;
}
.creative_box_text {
	font-family: source-han-serif-japanese, serif;
	font-size: 1.8rem;
	line-height: 1.8;
	letter-spacing: 0.04em;
	color: #fff;
	margin-top: 2.5rem;
}
.creative_link {
	margin-top: 8rem;
}
.creative .link_btn {
	border-color: #fff;
}
.creative .link_btn_text {
	color: #fff;
}
.creative .link_btn:after {
	filter: brightness(10);
}
.creative_swiper {
	margin-top: 6rem;
}
.creative_swiper .swiper-wrapper {
	transition-timing-function: linear;
}
.creative_swiper_text {
	font-family: aktiv-grotesk, sans-serif;
	font-size: 1.8rem;
	color: #fff;
	line-height: 1;
}
.creative_swiper .swiper-slide {
	width: auto !important;
	margin: 0 1.5rem;
	padding: .5rem 0;
}
.creative_modal_btn {
	width: 11rem;
	margin-top: 5.4rem;
	margin-left: auto;
	margin-right: 2.4rem;
	position: relative;
	display: none;
}
.creative_modal_btn:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	background-image: url(../img/cursor-img-line.svg);
	background-size: cover;
	background-position: center;
	animation: rotate 3s linear infinite;
	pointer-events: none;
}
@keyframes rotate {
	from {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}
@media (max-width: 767px) {
	.creative {
		padding-top: 15rem;
		aspect-ratio: 1 / 2.087;
	}
	.cursor {
		display: none;
	}
	.creative_box_line {
		margin-top: 1rem;
	}
	.creative_box_text_en {
		font-size: 1.5rem;
	}
	.creative_box_title {
		font-size: 2.6rem;
	}
	.creative_box_text {
		font-size: 1.3rem;
	}
	.creative_swiper_text {
		font-size: 1.5rem;
	}
	.creative_swiper .swiper-slide {
		margin: 0 .75rem;
	}
	.creative_modal_video {
		width: 35.3rem;
	}
	.creative_modal_close {
		width: 6rem;
		top: -3rem;
	}
	.creative_modal_btn {
		display: block;
	}
}


/* latest */
.latest {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	min-height: 77rem;
}
.latest .title_en {
	font-size: 5.8rem;
}
.schedule {
	background-color: #F2F3F5;
	padding: 8rem;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.schedule_list {
	margin-top: 5.6rem;
	display: grid;
	gap: 2rem;
}
.schedule_list_item {
	position: relative;
}
.schedule_list_item_line {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: .1rem;
	background-color: rgb(30 30 30 / .2);
	transform-origin: left top;
}
.schedule_list_item_link {
	padding-top: 2rem;
	padding-right: 2rem;
	position: relative;
	display: block;
}
.schedule_list_item_link:before {
	content: "";
	position: absolute;
	top: 2.3rem;
	right: 0;
	width: 1.2rem;
	height: .7rem;
	background-image: url(../img/arrow-blue.svg);
	background-size: cover;
	background-position: center;
}
.schedule_list_item_link:hover:before {
	animation-name: transformLeftRight;
	animation-fill-mode: forwards;
	animation-duration: .7s;
	transition-timing-function: ease-out;
}
.schedule_list_item_info {
	display: flex;
	align-items: center;
	gap: 2.7rem;
}
.schedule_list_item_date {
	font-family: aktiv-grotesk, sans-serif;
	font-size: 1.4rem;
	color: var(--main-color);
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.schedule_list_item_date:before {
	content: "";
	display: inline-block;
	width: 2.5rem;
	height: .1rem;
	background-color: var(--main-color);
}
.schedule_list_item_position {
	font-family: aktiv-grotesk, sans-serif;
	font-size: 1.4rem;
	color: var(--main-color);
}
.schedule_list_item_title {
	font-size: 1.7rem;
	line-height: 1.5;
	margin-top: 1.5rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 46rem;
}
.schedule_link {
	margin-top: auto;
	text-align: center;
}
.press {
	background-image: url(../img/press-bg.png);
	background-size: cover;
	background-position: top left;
	padding: 8rem;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.press_swiper {
	margin-top: 5.6rem;
	margin-right: calc(50% - 50vw);
	overflow: hidden;
	position: relative;
}
.press-pagination {
	position: absolute;
	z-index: 5;
	bottom: 0;
	left: 26.8rem;
	display: flex;
	align-items: center;
	gap: 2.5rem;
}
.press-swiper-btn-prev {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	border: .1rem solid var(--main-color);
	cursor: pointer;
	display: grid;
	place-items: center;
}
.press-swiper-btn-prev:before {
	content: "";
	display: inline-block;
	width: 1.2rem;
	height: .7rem;
	background-image: url("../img/arrow-blue.svg");
	background-size: contain;
	background-repeat: no-repeat;
	transform: rotate(180deg);
}
.press-swiper-btn-prev:hover:before {
	animation-name: transformRightLeft;
	animation-fill-mode: forwards;
	animation-duration: .7s;
	transition-timing-function: ease-out;
}
.press-swiper-btn-next {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	border: .1rem solid var(--main-color);
	cursor: pointer;
	display: grid;
	place-items: center;
}
.press-swiper-btn-next:before {
	content: "";
	display: inline-block;
	width: 1.2rem;
	height: .7rem;
	background-image: url("../img/arrow-blue.svg");
	background-size: contain;
	background-repeat: no-repeat;
}
.press-swiper-btn-next:hover:before {
	animation-name: transformLeftRight;
	animation-fill-mode: forwards;
	animation-duration: .7s;
	transition-timing-function: ease-out;
}
.press-swiper-pagination {
	font-family: aktiv-grotesk, sans-serif;
	font-size: 1.5rem;
	color: var(--main-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	flex: 1;
}
.press_swiper_item {
	width: 47rem;
	display: flex;
	align-items: flex-start;
	gap: 2rem;
	margin-right: 3.3rem;
	opacity: .4;
}
.swiper-slide-active {
	opacity: 1;
}
.press_swiper_item_image {
	width: 24.8rem;
	overflow: hidden;
	transform: scale(.8);
	transition: .5s;
}
.swiper-slide-active .press_swiper_item_image {
	transform: scale(1);
}
.press_swiper_item_img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.331;
	object-fit: cover;
	transition: .3s;
}
.press_swiper_item:hover .press_swiper_item_img {
	transform: scale(1.05);
}
.press_swiper_item_info {
	flex: 1;
	margin-top: 10rem;
}
.press_swiper_item_date {
	font-family: aktiv-grotesk, sans-serif;
	font-size: 1.5rem;
	color: var(--main-color);
	line-height: 1;
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.press_swiper_item_date:before {
	content: "";
	display: inline-block;
	width: 2.5rem;
	height: .1rem;
	background-color: var(--main-color);
}
.press_swiper_item_title {
	font-size: 2rem;
	line-height: 1.3;
	margin-top: 1.2rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
	text-overflow: ellipsis;
}
.press_link {
	margin-top: auto;
	text-align: center;
}
@media (max-width: 767px) {
	.latest {
		grid-template-columns: 1fr;
	}
	.latest .title_en {
		font-size: 4.8rem;
	}
	.schedule {
		padding: 8rem 2.4rem;
	}
	.schedule_list {
		margin-top: 3.7rem;
	}
	.schedule_list_item:last-child {
		display: none;
	}
	.schedule_list_item_link {
		padding-top: 2.4rem;
		padding-right: 0;
	}
	.schedule_list_item_link:before {
		top: 2.8rem;
	}
	.schedule_list_item_title {
		font-size: 1.4rem;
		margin-top: 1.3rem;
		width: 34.5rem;
		display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
		white-space: inherit;
	}
	.schedule_link {
		margin-top: 4rem;
		text-align: right;
	}
	.press {
		padding: 8rem 2.4rem;
		background-image: url(../img/press-bg-sp.png);
	}
	.press_swiper {
		margin-left: 4.8rem;
		margin-top: 4rem;
		padding-bottom: 6rem;
	}
	.press_swiper_item {
		width: 24.8rem;
		display: block;
		margin-right: 2.5rem;
	}
	.press_swiper_item_info {
		margin-top: 2rem;
	}
	.press_swiper_item_title {
		font-size: 1.8rem;
		-webkit-line-clamp: 3;
	}
	.press-pagination {
		bottom: 0;
		left: 4.2rem;
		width: 16.3rem;
	}
	.press_link {
		margin-top: 4rem;
	}
}