@charset "UTF-8";

:root {
	--blk: 0, 0, 0;
	--wht: 255, 255, 255;
	--blu: 44, 77, 184;
	--nvy: 14, 33, 94;
	--ppl: 185, 153, 237;
	--about: 44, 77, 184;
}

/* ----------------------------------------------------
	skate
---------------------------------------------------- */
.skate {
	background-color: rgb(var(--blu));
	background-image: url(../images/bg.webp);
	background-position: center top -8.126vw;
	background-repeat: no-repeat;
	background-size: 111.859vw auto;
	color: rgb(var(--wht));
	position: relative;
}

.skate .object {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	z-index: 1;
}

.skate * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
}

.skate a {
	text-decoration: underline;
	transition: all 0.5s ease 0s;
}

.skate a:hover {
	text-decoration: none;
	opacity: 0.6;
}

@media screen and (max-width: 768px) {
	.skate {
		background-image: url(../images/bg_sp.webp);
		background-position: center top;
		background-size: 100% auto;
		top: 5px;
	}
}

/* ---------------------------------------------------
  表示切り替え（PC / SP）
--------------------------------------------------- */
.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

@media screen and (max-width: 768px) {
	.pc-only {
		display: none;
	}

	.sp-only {
		display: block;
	}
}

/* ---------------------------------------------------
  汎用リスト
--------------------------------------------------- */
ul.list li {
	margin-left: 1em;
	text-indent: -1em;
}

ul.note li {
	font-size: 12px;
}

ul.note li::before {
	content: "※";
}

@media screen and (max-width: 1366px) {
	ul.note li {
		font-size: 0.878vw;
	}
}

@media screen and (max-width: 768px) {
	ul.note li {
		font-size: 3.2vw;
	}
}

/* ● マーカー付きリスト */
ul.type1 li::before {
	content: "●";
}

/* カウンター付き番号リスト */
ol.cnt li {
	margin-left: 1.8em;
	text-indent: -1.8em;
	counter-increment: number;
}

ol.cnt li::before {
	content: "("counter(number) ")";
}

/* ---------------------------------------------------
  ボタンリンク
--------------------------------------------------- */
a.link-button {
	width: 188px;
	height: 56px;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.link-button::before,
.link-button::after {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	content: "";
}

.link-button::before,
.link-button::after {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	content: "";
}

.link-button::before {
	background: linear-gradient(90deg, rgba(229, 229, 255, 1) 0%, rgba(175, 219, 246, 1) 100%);
	width: 100%;
	height: 100%;
	border-radius: 56px;
	z-index: 1;
}

.link-button::after {
	background-color: rgb(var(--wht));
	background-image: url(../images/button-icon01.webp);
	background-position: center right 12px;
	background-repeat: no-repeat;
	background-size: 24px auto;
	width: calc(100% - 8px);
	height: calc(100% - 8px);
	border-radius: 48px;
	z-index: 2;
}

.link-button span {
	padding-right: 1em;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 3;
}

.link-button.cover {
	pointer-events: none;
	z-index: 1;
}

.link-button.cover span::before {
	background: rgba(var(--blu), 0.8);
	width: calc(100% - 8px);
	height: calc(100% - 8px);
	color: rgb(var(--wht));
	font-size: 20px;
	border-radius: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 4px;
	left: 4px;
	z-index: 5;
	content: "COMING SOON";
}

@media screen and (max-width: 1366px) {
	a.link-button {
		width: 14.688vw;
		height: 4.375vw;
		font-size: 0.938vw;
	}

	.link-button::before {
		border-radius: 4.375vw;
	}

	.link-button::after {
		background-position: center right 0.878vw;
		background-size: 1.757vw auto;
		width: calc(100% - 0.586vw);
		height: calc(100% - 0.586vw);
		border-radius: 3.514vw;
	}

	.link-button.cover span::before {
		width: calc(100% - 0.586vw);
		height: calc(100% - 0.586vw);
		font-size: 1.464vw;
		border-radius: 3.514vw;
		top: 0.293vw;
		left: 0.293vw;
	}
}

@media screen and (max-width: 768px) {
	a.link-button {
		width: 50.133vw;
		height: 15.467vw;
		font-size: 3.2vw;
	}

	.link-button::before {
		border-radius: 15.467vw;
	}

	.link-button::after {
		background-position: center right 3.2vw;
		background-size: 6.4vw auto;
		width: calc(100% - 2.133vw);
		height: calc(100% - 2.133vw);
		border-radius: 13.333vw;
	}

	.link-button.cover span::before {
		width: calc(100% - 2.133vw);
		height: calc(100% - 2.133vw);
		font-size: 5.333vw;
		border-radius: 13.333vw;
		top: 1.067vw;
		left: 1.067vw;
	}
}

/* ---------------------------------------------------
  フェードイン
--------------------------------------------------- */
.fadeBlock {
	opacity: 0;
	transition: all 1s;
}

.fadeBlock.fadeIn {
	opacity: 1;
}

.fadeBottom {
	transform: translateY(50px);
}

.fadeBottom.fadeIn {
	transform: translateY(0);
}

.fadeBlock.blur {
	filter: blur(10px);
	transition: all 2s;
}

.fadeBlock.blur.fadeIn {
	filter: blur(0);
}

/* ----------------------------------------------------
	skate__gnav
---------------------------------------------------- */
.skate__gnav,
.toggle,
.overlay {
	display: none;
}

@media screen and (max-width: 768px) {
	.skate__head {
		padding: 0 0 0 4vw;
		height: 12.8vw;
		top: 60px;
	}

	.skate__head--logo {
		width: 32.533vw;
	}

	.skate__gnav {
		background-color: rgb(var(--nvy));
		padding-top: 18.667vw;
		width: 54.667vw;
		height: 100%;
		overflow: auto;
		position: fixed;
		top: 0;
		right: 0;
		left: auto;
		transform: translateX(100%);
		transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.skate__gnav--container {
		width: 100%;
		height: auto;
		display: block;
	}

	.skate__gnav--logo {
		display: none;
	}

	.skate__gnav--list {
		padding: 0 5.6vw;
		display: block;
	}

	.skate__gnav--item {
		margin-bottom: 2em;
		font-size: 4.267vw;
		text-align: right;
	}

	.skate__gnav--item a {
		color: rgb(var(--wht));
		line-height: 1;
	}

	.skate__gnav--item a:hover {
		opacity: 0.6;
	}

	.overlay {
		background: rgba(var(--blk), 0.75);
		width: 100vw;
		height: 100vh;
		opacity: 0;
		visibility: hidden;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 998;
		content: "";
	}

	/* is-gnav-open */
	.is-gnav-open {
		overflow: hidden;
	}

	.is-gnav-open .skate__gnav {
		display: block;
		z-index: 999;
		transform: translateX(0);
	}

	.is-gnav-open .overlay {
		opacity: 1;
		visibility: visible;
		display: block;
		cursor: pointer;
	}

	/* toggle */
	.toggle {
		width: 10.667vw;
		height: 2.4vw;
		display: block;
		position: fixed;
		top: calc(60px + 4vw);
		right: 5.067vw;
		z-index: 1000;
	}

	.scrollfixed .toggle {
		display: none;
	}

	.toggle__inner {
		width: 100%;
		height: 100%;
		position: relative;
		cursor: pointer;
	}

	.toggle__inner--item {
		background: rgb(var(--wht));
		width: 100%;
		height: 1px;
		display: block;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}

	.toggle__inner--item:nth-child(1) {
		top: 0;
	}

	.toggle__inner--item:nth-child(2) {
		bottom: 0;
	}

	/* is-gnav-open */
	.is-gnav-open .toggle {
		width: 8vw;
		height: 8vw;
		top: 2.667vw;
		right: 4.267vw;
	}

	.is-gnav-open .toggle__inner--item {
		background-color: rgb(var(--wht));
		transform-origin: 0 0;
	}

	.is-gnav-open .toggle__inner--item:nth-child(1) {
		top: 50%;
		transform: rotate(45deg) translate(-50%, -50%);
	}

	.is-gnav-open .toggle__inner--item:nth-child(2) {
		top: 50%;
		bottom: auto;
		transform: rotate(-45deg) translate(-50%, -50%);
	}
}

/* ----------------------------------------------------
	skate__head
---------------------------------------------------- */
.skate__head {
	background-color: rgba(var(--blu), 0.8);
	margin: 0 auto;
	padding: 0 3.221vw 0 4.392vw;
	height: 6.589vw;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: sticky;
	top: 100px;
	z-index: 10;
}

.skate__head--logo {
	width: 12.299vw;
}

.skate__nav--list {
	display: flex;
}

.skate__nav--item {
	margin: 0 1.171vw;
}

.skate__nav--item a {
	color: rgb(var(--wht));
	font-size: 1.171vw;
	text-decoration: none;
}

@media screen and (max-width: 1196px) {
	.skate__head {
		top: 140px;
	}
}

@media screen and (max-width: 768px) {
	.skate__head {
		padding: 0 0 0 4vw;
		height: 12.8vw;
		top: 60px;
	}

	.skate__head--logo {
		width: 32.533vw;
	}

	.skate__nav {
		display: none;
	}
}

/* ----------------------------------------------------
	skate__body
---------------------------------------------------- */
.skate__body {
	position: relative;
}

/* ----------------------------------------------------
	kv
---------------------------------------------------- */
.skate__kv {
	margin-bottom: 12.592vw;
	position: relative;
}

.skate__kv--title {
	width: 85.359vw;
	position: absolute;
	bottom: -6.662vw;
	left: 50%;
	z-index: 3;
	transform: translateX(-50%);
}

.skate__kv .badge {
	width: 15.227vw;
	position: absolute;
	top: 3.66vw;
	right: 6.003vw;
	z-index: 5;
}

.skate__kv--image {
	width: 100%;
	height: 40.703vw;
	overflow-x: hidden;
	display: flex;
	position: relative;
	z-index: 2;
}

.skate__kv--image .image {
	margin-right: 2.05vw;
	height: 100%;
	animation: kv-scroll 50s infinite linear 0.5s both;
}

.skate__kv--image .image img {
	width: auto;
	height: 100%;
}

@keyframes kv-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}

@media screen and (max-width: 768px) {
	.skate__kv {
		margin-bottom: 46.667vw;
	}

	.skate__kv--title {
		width: 100%;
		bottom: -16vw;
	}

	.skate__kv .badge {
		width: 32vw;
		top: 3.2vw;
		right: 5.333vw;
	}

	.skate__kv--image {
		height: 142.4vw;
	}

	.skate__kv--image .image {
		margin-right: 0;
		height: 100%;
		animation: kv-scroll 25s infinite linear 0.5s both;
	}
}

/*
	object
------------------------------ */
.skate__kv .obj01 {
	background-image: url(../images/kv-obj01.webp);
	width: 11.713vw;
	height: 13.470vw;
	bottom: -15.886vw;
	left: 0;
	z-index: 4;
}

.skate__kv .obj02 {
	background-image: url(../images/kv-obj02.webp);
	width: 17.423vw;
	height: 21.303vw;
	top: -1.903vw;
	right: 0;
	z-index: 4;
}

.skate__kv .obj03 {
	background-image: url(../images/kv-obj03.svg);
	width: 2.269vw;
	height: 2.269vw;
	top: -0.732vw;
	right: 34.334vw;
	z-index: 4;
}

.skate__kv .obj04 {
	background-image: url(../images/kv-obj04.svg);
	width: 2.562vw;
	height: 2.562vw;
	top: 12.884vw;
	left: 56.955vw;
	z-index: 4;
}

.skate__kv .obj05 {
	background-image: url(../images/kv-obj05.svg);
	width: 16.911vw;
	height: 19.766vw;
	top: -15.593vw;
	left: 17.35vw;
	z-index: 1;
}

@media screen and (max-width: 768px) {
	.skate__kv .obj01 {
		width: 24.8vw;
		height: 29.333vw;
		top: 158.133vw;
		right: auto;
		left: 0;
	}

	.skate__kv .obj02 {
		width: 34.667vw;
		height: 40vw;
		top: 45.333vw;
		right: 0;
		bottom: auto;
		left: auto;
		z-index: 1;
	}

	.skate__kv .obj03 {
		width: 8vw;
		height: 8vw;
		top: 9.6vw;
		right: auto;
		left: 4.8vw;
	}

	.skate__kv .obj04 {
		width: 9.333vw;
		height: 9.333vw;
		top: 80.533vw;
		left: 47.2vw;
	}

	.skate__kv .obj05 {
		width: 27.467vw;
		height: 32vw;
		top: -8vw;
		left: 31.733vw;
	}
}

/* ----------------------------------------------------
	skate__lead
---------------------------------------------------- */
.skate__lead {
	margin: 0 auto;
	max-width: 1366px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.skate__lead--content {
	padding-left: 180px;
}

.skate__lead--content .title {
	margin-bottom: 47px;
	line-height: 1.6;
	font-size: 36px;
	font-weight: bold;
}

.skate__lead--content .text {
	line-height: 3;
	font-size: 18px;
}

.skate__lead--content .text:not(:last-of-type) {
	margin-bottom: 70px;
}

.skate__lead--content .text .text-line {
	display: inline-block;
	position: relative;
}

.skate__lead--content .text .text-line::after {
	background-color: rgb(var(--wht));
	width: 55px;
	height: 1px;
	position: absolute;
	top: 50%;
	right: -65px;
	transform: translateY(-50%);
	content: "";
}

.skate__lead--image {
	width: 668px;
	position: relative;
}

.skate__lead--image .image01 {
	margin-bottom: 97px;
	width: 403px;
}

.skate__lead--image .image02 {
	width: 325px;
	position: absolute;
	top: 443px;
	right: 0;
}

.skate__lead--image .image03 {
	margin-left: 105px;
	width: 187px;
}

@media screen and (max-width: 1366px) {
	.skate__lead--content {
		padding-left: 13.177vw;
	}

	.skate__lead--content .title {
		margin-bottom: 3.441vw;
		font-size: 2.635vw;
	}

	.skate__lead--content .text {
		font-size: 1.318vw;
	}

	.skate__lead--content .text:not(:last-of-type) {
		margin-bottom: 5.124vw;
	}

	.skate__lead--content .text .text-line::after {
		width: 4.026vw;
		right: -4.392vw;
	}

	.skate__lead--image {
		width: 48.902vw;
	}

	.skate__lead--image .image01 {
		margin-bottom: 7.101vw;
		width: 29.502vw;
	}

	.skate__lead--image .image02 {
		width: 23.792vw;
		top: 32.43vw;
	}

	.skate__lead--image .image03 {
		margin-left: 7.687vw;
		width: 13.69vw;
	}
}

@media screen and (max-width: 768px) {
	.skate__lead {
		margin-bottom: 15.467vw;
		display: block;
	}

	.skate__lead--content {
		margin-bottom: 5.333vw;
		padding: 0 5.333vw;
	}

	.skate__lead--content .title {
		margin-bottom: 3.733vw;
		line-height: 1.8;
		font-size: 5.867vw;
	}

	.skate__lead--content .text {
		line-height: 2.6;
		font-size: 4vw;
	}

	.skate__lead--content .text:not(:last-of-type) {
		margin-bottom: 10.667vw;
	}

	.skate__lead--content .text .text-line::after {
		width: 14.667vw;
		right: -17.333vw;
	}

	.skate__lead--image {
		padding: 0;
		width: 100%;
		height: 95.467vw;
	}

	.skate__lead--image .image01,
	.skate__lead--image .image02,
	.skate__lead--image .image03 {
		position: absolute;
	}

	.skate__lead--image .image01 {
		margin-bottom: 0;
		width: 52.8vw;
		top: 9.6vw;
		left: 4.8vw;
	}

	.skate__lead--image .image02 {
		width: 53.6vw;
		top: auto;
		right: 4vw;
		bottom: 0;
	}

	.skate__lead--image .image03 {
		margin-left: 0;
		width: 23.733vw;
		top: 0;
		right: 4vw;
	}
}

/*
	object
------------------------------ */
.skate__lead .obj01 {
	background-image: url(../images/lead-obj01.webp);
	width: 48px;
	height: 36px;
	top: 24px;
	left: 543px;
}

.skate__lead .obj02 {
	background-image: url(../images/lead-obj02.webp);
	width: 81px;
	height: 86px;
	top: 150px;
	right: 200px;
}

@media screen and (max-width: 1366px) {
	.skate__lead .obj01 {
		width: 3.514vw;
		height: 2.635vw;
		top: 1.757vw;
		left: 39.751vw;
	}

	.skate__lead .obj02 {
		width: 5.93vw;
		height: 6.296vw;
		top: 10.981vw;
		right: 14.641vw;
	}
}

@media screen and (max-width: 768px) {
	.skate__lead .obj01 {
		display: none;
	}

	.skate__lead .obj02 {
		width: 15.467vw;
		height: 16.533vw;
		top: 63.467vw;
		right: 4vw;
	}
}

/* ----------------------------------------------------
	skate__about
---------------------------------------------------- */
.skate__about {
	background-color: rgb(var(--about));
	background-image: url(../images/about-bg.webp);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100% auto;
	padding: 26.354vw 0 9.37vw;
	position: relative;
}

@media screen and (max-width: 768px) {
	.skate__about {
		background-image: url(../images/about-bg_sp.webp);
		padding: 41.333vw 0 27.467vw;
	}
}

/*
	object
------------------------------ */
.skate__about--history {
	margin: 0 auto 75px;
	max-width: 1060px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.skate__about--history .title {
	font-size: 64px;
	font-weight: bold;
}

.skate__about--history .content {
	width: 620px;
}

.skate__about--history .content__title {
	margin-bottom: 34px;
	font-size: 32px;
	font-weight: bold;
}

.skate__about--history .content__detail .text {
	line-height: 2.5;
	font-size: 16px;
}

.skate__about--history .content__detail .link-button {
	margin-top: 34px;
}

.skate__about--history .object {
	background-image: url(../images/about-obj01.webp);
	width: 201px;
	height: 235px;
	top: -375px;
	right: -60px;
}

@media screen and (max-width: 1366px) {
	.skate__about--history {
		margin-bottom: 5.859vw;
		max-width: 82.813vw;
	}

	.skate__about--history .title {
		font-size: 5vw;
	}

	.skate__about--history .content {
		width: 48.438vw;
	}

	.skate__about--history .content__title {
		margin-bottom: 2.656vw;
		font-size: 2.5vw;
	}

	.skate__about--history .content__detail .text {
		font-size: 1.25vw;
	}

	.skate__about--history .content__detail .link-button {
		margin-top: 2.656vw;
	}

	.skate__about--history .content__detail .link-button::before {
		border-radius: 4.375vw;
	}

	.skate__about--history .content__detail .link-button::after {
		background-position: center right 0.938vw;
		background-size: 1.875vw auto;
		width: 14.063vw;
		height: 3.75vw;
		border-radius: 3.75vw;
	}

	.skate__about--history .object {
		width: 15.703vw;
		height: 18.359vw;
		top: -29.297vw;
		right: -4.688vw;
	}
}

@media screen and (max-width: 768px) {
	.skate__about--history {
		margin-bottom: 6.4vw;
		padding: 0 4.8vw;
		max-width: 100%;
		display: block;
	}

	.skate__about--history .title {
		margin-bottom: 5.333vw;
		font-size: 10.667vw;
	}

	.skate__about--history .content {
		width: 100%;
	}

	.skate__about--history .content__title {
		margin-bottom: 9.6vw;
		font-size: 5.333vw;
	}

	.skate__about--history .content__detail .text {
		line-height: 2.3;
		font-size: 4vw;
	}

	.skate__about--history .content__detail .link-button {
		margin-top: 5.333vw;
	}

	.skate__about--history .content__detail .link-button::before {
		border-radius: 15.467vw;
	}

	.skate__about--history .content__detail .link-button::after {
		background-position: center right 3.2vw;
		background-size: 6.4vw auto;
		width: 48vw;
		height: 13.333vw;
		border-radius: 13.333vw;
	}

	.skate__about--history .object {
		width: 29.333vw;
		height: 34.667vw;
		top: -40vw;
		right: auto;
		left: 6.933vw;
	}
}

/*
	skate__about--image
------------------------------ */
.skate__about--image {
	margin-bottom: 14.641vw;
	width: 100%;
	height: 23.939vw;
	overflow-x: hidden;
	display: flex;
	position: relative;
	z-index: 2;
}

.skate__about--image .image {
	margin-right: 2.05vw;
	height: 100%;
	animation: kv-scroll 50s infinite linear 0.5s both;
}

.skate__about--image .image img {
	width: auto;
	height: 100%;
}

@keyframes kv-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}

@media screen and (max-width: 768px) {
	.skate__about--image {
		height: 45.333vw;
	}

	.skate__kv--image .image {
		margin-right: 0;
		animation: kv-scroll 25s infinite linear 0.5s both;
	}
}

/*
	news
------------------------------ */
.skate__news {
	margin: 0 auto;
	max-width: 1010px;
	width: 100%;
	position: relative;
}

.skate__news--title {
	margin-bottom: 35px;
	font-size: 64px;
	font-weight: bold;
}

.skate__news--title .jp {
	margin-top: 10px;
	font-size: 25px;
	font-weight: normal;
	display: block;
}

.skate__news--content {
	background-color: rgb(var(--wht));
	padding: 54px 76px;
	color: rgb(var(--blk));
	border-radius: 4px;
	position: relative;
	z-index: 2;
}

.skate__news--content .news {
	width: 100%;
	max-height: 218px;
	line-height: 1.5;
	font-size: 20px;
	overflow-y: auto;
}

.skate__news--content .news::-webkit-scrollbar {
	width: 8px;
}

.skate__news--content .news::-webkit-scrollbar-track {
	background: rgb(var(--wht));
	border-radius: 4px;
}

.skate__news--content .news::-webkit-scrollbar-thumb {
	background: rgb(var(--blu));
	border-radius: 4px;
}

.skate__news--content .news::-webkit-scrollbar-thumb:hover {
	background: rgba(var(--blu), 0.8);
}

.skate__news--content .news__block {
	display: flex;
}

.skate__news--content .news__block:not(:last-of-type) {
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: solid 1px rgb(var(--ppl));
}

.skate__news--content .news__date {
	width: 180px;
}

.skate__news--content .news__content {
	width: calc(100% - 180px);
}

.skate__news .obj01 {
	background-image: url(../images/news-obj01.webp);
	width: 150px;
	height: 155px;
	top: -42px;
	right: 113px;
}

.skate__news .obj02 {
	background-image: url(../images/news-obj02.webp);
	width: 393px;
	height: 405px;
	right: -180px;
	bottom: -155px;
}

@media screen and (max-width: 1366px) {
	.skate__news {
		max-width: 73.939vw;
	}

	.skate__news--title {
		margin-bottom: 2.562vw;
		font-size: 4.685vw;
	}

	.skate__news--title .jp {
		margin-top: 0.732vw;
		font-size: 1.83vw;
	}

	.skate__news--content {
		padding: 3.953vw 5.564vw;
		border-radius: 0.293vw;
	}

	.skate__news--content .news {
		max-height: 15.959vw;
		font-size: 1.464vw;
	}

	.skate__news--content .news__block:not(:last-of-type) {
		margin-bottom: 2.928vw;
		padding-bottom: 2.928vw;
	}

	.skate__news--content .news__date {
		width: 13.177vw;
	}

	.skate__news--content .news__content {
		width: calc(100% - 13.177vw);
	}

	.skate__news .obj01 {
		width: 10.981vw;
		height: 11.347vw;
		top: -3.075vw;
		right: 8.272vw;
	}

	.skate__news .obj02 {
		width: 28.77vw;
		height: 29.649vw;
		right: -13.177vw;
		bottom: -11.347vw;
	}
}

@media screen and (max-width: 768px) {
	.skate__news {
		padding: 0 5.333vw;
		max-width: 100%;
	}

	.skate__news--title {
		margin-bottom: 5.867vw;
		font-size: 10.667vw;
	}

	.skate__news--title .jp {
		margin-top: 2.667vw;
		font-size: 5.333vw;
	}

	.skate__news--content {
		padding: 6.933vw 5.067vw;
		border-radius: 1.067vw;
	}

	.skate__news--content .news {
		max-height: 51.2vw;
		font-size: 4vw;
	}

	.skate__news--content .news__block:not(:last-of-type) {
		margin-bottom: 5.333vw;
		padding-bottom: 5.333vw;
	}

	.skate__news--content .news__date {
		width: 26.667vw;
	}

	.skate__news--content .news__content {
		width: calc(100% - 26.667vw);
	}

	.skate__news .obj01 {
		display: none;
	}

	.skate__news .obj02 {
		width: 47.733vw;
		height: 48.267vw;
		right: auto;
		bottom: -24vw;
		left: -6.4vw;
	}
}

/*
	object
------------------------------ */
.skate__about .obj03 {
	background-image: url(../images/about-obj02.webp);
	width: 16.984vw;
	height: 25.842vw;
	top: 35.359vw;
	left: 0;
}

@media screen and (max-width: 768px) {
	.skate__about .obj03 {
		background-image: url(../images/about-obj02_sp.webp);
		width: 34.133vw;
		height: 34.133vw;
		top: 133.333vw;
		right: 0;
		left: auto;
	}
}

/* ----------------------------------------------------
	skate__interview
---------------------------------------------------- */
.skate__interview {
	background-image: url(../images/interview-bg.webp);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100% auto;
	padding-top: 23.865vw;
}

.skate__interview--content {
	margin: 0 auto 90px;
	width: 1010px;
	position: relative;
}

.skate__interview--title {
	margin-bottom: 35px;
	font-size: 64px;
	font-weight: bold;
}

.skate__interview--title .jp {
	margin-top: 10px;
	font-size: 25px;
	font-weight: normal;
	display: block;
}

.skate__interview--lead {
	line-height: 2.5;
	font-size: 16px;
}

@media screen and (max-width: 1388px) {
	.skate__interview--content {
		width: 73.939vw;
	}

	.skate__interview--title {
		margin-bottom: 2.562vw;
		font-size: 4.685vw;
	}

	.skate__interview--title .jp {
		margin-top: 0.732vw;
		font-size: 1.83vw;
	}

	.skate__interview--lead {
		font-size: 1.171vw;
	}
}

@media screen and (max-width: 768px) {
	.skate__interview {
		background-image: url(../images/interview-bg_sp.webp);
		padding: 42.667vw 0 10.667vw;
	}

	.skate__interview--content {
		margin-bottom: 8vw;
		padding: 0 5.333vw;
		width: 100%;
	}

	.skate__interview--title {
		margin-bottom: 5.867vw;
		font-size: 10.667vw;
	}

	.skate__interview--title .jp {
		margin-top: 2.667vw;
		font-size: 5.333vw;
	}

	.skate__interview--lead {
		font-size: 4vw;
	}
}

/*
	skate__interview--list
------------------------------ */
.skate__interview--list {
	margin: 0 auto;
	width: 1165px;
	display: flex;
	flex-wrap: wrap;
}

.skate__interview--list-item {
	margin-bottom: 75px;
	width: 355px;
	position: relative;
}

.skate__interview--list-item:nth-child(3n + 2) {
	top: -45px;
}

.skate__interview--list-item:nth-child(3n) {
	top: -90px;
}

.skate__interview--list-item:not(:nth-child(3n)) {
	margin-right: 50px;
}

.skate__interview--list-item .image,
.skate__interview--list-item .image a {
	position: relative;
}

.skate__interview--list-item .image .movie-popup {
	display: block;
	position: relative;
	cursor: pointer;
}

.skate__interview--list-item .image .movie-popup .update {
	padding: 16px 22px;
	width: 100%;
	color: rgb(var(--wht));
	font-size: 16px;
	font-weight: bold;
	position: absolute;
	/* bottom: 16px;
	left: 22px; */
	bottom: 0;
	left: 0;
	z-index: 2;
}

.skate__interview--list-item .movie-popup::before {
	background-image: url(../images/button-play.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 43px;
	height: 43px;
	position: absolute;
	right: 16px;
	bottom: 16px;
	z-index: 2;
	content: "";
}

.skate__interview--list-item a::after {
	background: linear-gradient(180deg, rgba(44, 77, 184, 0.00) 0%, rgba(44, 77, 184, 0.60) 81.73%);
	width: 100%;
	height: 93px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	content: "";
}

.skate__interview--list-item .profile {
	margin-top: 15px;
}

.skate__interview--list-item .profile__name {
	margin: 1em 0 0.5em;
	line-height: 1.25;
	font-size: 25px;
	font-weight: bold;
}

.skate__interview--list-item .profile__name span {
	font-size: 16px;
	font-weight: normal;
}

.skate__interview--list-item .profile__content {
	line-height: 2;
	font-size: 16px;
}

.skate__interview--content .obj01 {
	background-image: url(../images/history-obj01.webp);
	width: 320px;
	height: 336px;
	top: -284px;
	right: 111px;
}

@media screen and (max-width: 1366px) {
	.skate__interview--list {
		width: 85.286vw;
	}

	.skate__interview--list-item {
		margin-bottom: 5.49vw;
		width: 25.988vw;
	}

	.skate__interview--list-item:nth-child(3n + 2) {
		top: -3.294vw;
	}

	.skate__interview--list-item:nth-child(3n) {
		top: -6.589vw;
	}

	.skate__interview--list-item:not(:nth-child(3n)) {
		margin-right: 3.66vw;
	}

	.skate__interview--list-item .image .movie-popup .update {
		padding: 1.171vw 1.611vw;
		font-size: 1.171vw;
		/* bottom: 1.171vw;
		left: 1.611vw; */
	}

	.skate__interview--list-item .movie-popup::before {
		width: 3.148vw;
		height: 3.148vw;
		right: 1.171vw;
		bottom: 1.171vw;
	}

	.skate__interview--list-item .profile {
		margin-top: 1.098vw;
	}

	.skate__interview--list-item .profile__name {
		font-size: 1.83vw;
	}

	.skate__interview--list-item .profile__name span {
		font-size: 1.171vw;
	}

	.skate__interview--list-item .profile__content {
		font-size: 1.171vw;
	}

	.skate__interview--content .obj01 {
		width: 23.426vw;
		height: 24.597vw;
		top: -20.791vw;
		right: 8.126vw;
	}
}

@media screen and (max-width: 768px) {
	.skate__interview--list {
		width: 100%;
		display: block;
	}

	.skate__interview--list-item {
		margin-bottom: 8vw;
		padding: 0 5.333vw;
		width: 100%;
		position: static;
	}

	.skate__interview--list-item:not(:nth-child(3n)) {
		margin-right: 0;
	}

	.skate__interview--list-item .image .movie-popup .update {
		padding: 5.333vw;
		font-size: 4vw;
		/* bottom: 5.333vw;
		left: 5.333vw; */
	}

	.skate__interview--list-item .movie-popup::before {
		width: 10.667vw;
		height: 10.667vw;
		right: 5.333vw;
		bottom: 5.333vw;
	}

	.skate__interview--list-item .profile {
		margin-top: 4vw;
	}

	.skate__interview--list-item .profile__name {
		font-size: 6.133vw;
	}

	.skate__interview--list-item .profile__name span {
		font-size: 4vw;
	}

	.skate__interview--list-item .profile__content {
		font-size: 4vw;
	}

	.skate__interview--content .obj01 {
		width: 30.133vw;
		height: 30.667vw;
		top: -42.667vw;
		right: 5.333vw;
	}
}

/*
	youtube
------------------------------ */
.yt-overlay {
	background: rgba(var(--blk), 0.7);
	padding: 24px;
	display: none;
	justify-content: center;
	align-items: center;
	position: fixed;
	inset: 0;
	z-index: 9999;
}

.yt-overlay.is-open {
	display: flex;
}

.yt-wrap {
	position: relative;
	width: min(90vw, 1000px);
	aspect-ratio: 16 / 9;
}

.yt-box {
	background: rgb(var(--blk));
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.yt-box iframe {
	width: 100%;
	height: 100%;
	border: 0;
	position: absolute;
	inset: 0;
}

.yt-close {
	background: rgba(var(--blk), 0.4);
	background-color: rgb(var(--blu));
	padding: 10px;
	line-height: 1;
	color: rgb(var(--wht));
	font-size: 22px;
	border: none;
	border-radius: 100px;
	position: absolute;
	top: -12px;
	right: -12px;
	cursor: pointer;
	z-index: 10000;
}

body.is-modal-open {
	overflow: hidden;
}

@media screen and (max-width: 1366px) {
	.yt-overlay {
		padding: 1.757vw;
	}

	.yt-close {
		padding: 0.732vw;
		font-size: 1.611vw;
		border-radius: 7.321vw;
		top: -0.878vw;
		right: -0.878vw;
	}
}

@media screen and (max-width: 768px) {
	.yt-overlay {
		padding: 4.8vw;
	}

	.yt-close {
		padding: 2.667vw;
		font-size: 4vw;
		border-radius: 26.667vw;
		top: -3.2vw;
		right: -3.2vw;
	}
}


/* ----------------------------------------------------
	skate__wrap
---------------------------------------------------- */
.skate__wrap {
	background-color: rgb(var(--about));
	background-image: url(../images/enjoy-bg.webp);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

@media screen and (max-width: 768px) {
	.skate__wrap {
		background-image: url(../images/enjoy-bg_sp.webp);
	}
}

/* ----------------------------------------------------
	skate__enjoy
---------------------------------------------------- */
.skate__enjoy {
	padding: 26.354vw 0 11.713vw;
	position: relative;
}

.skate__enjoy--content {
	margin: 0 auto;
	width: 1010px;
	position: relative;
}

.skate__enjoy--title {
	margin-bottom: 35px;
	font-size: 64px;
	font-weight: bold;
}

.skate__enjoy--title .jp {
	margin-top: 10px;
	font-size: 25px;
	font-weight: normal;
	display: block;
}

.skate__enjoy--list {
	display: flex;
	justify-content: space-between;
}

.skate__enjoy--list-item {
	width: 310px;
}

.skate__enjoy--list-item a {
	line-height: 1.8;
	color: rgb(var(--wht));
	text-align: center;
	text-decoration: none;
	display: block;
}

.skate__enjoy--list-item a img {
	transition: all 0.5s ease 0s;
}

.skate__enjoy--list-item a:hover {
	opacity: 1;
}

.skate__enjoy--list-item a:hover img {
	transform: scale(1.05);
}

.enjoy-image {
	border-radius: 4px;
	overflow: hidden;
}

.enjoy-content__title {
	margin-top: 15px;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
}

.enjoy-content__detail {
	font-size: 16px;
}

@media screen and (max-width: 1366px) {
	/* .skate__enjoy {
		padding: 26.354vw 0 11.713vw;
	} */

	.skate__enjoy--content {
		width: 73.939vw;
	}

	.skate__enjoy--title {
		margin-bottom: 2.562vw;
		font-size: 4.685vw;
	}

	.skate__enjoy--title .jp {
		margin-top: 0.732vw;
		font-size: 1.83vw;
	}

	.skate__enjoy--list-item {
		width: 22.694vw;
	}

	.enjoy-image {
		border-radius: 0.293vw;
	}

	.enjoy-content__title {
		margin-top: 1.098vw;
		font-size: 1.757vw;
	}

	.enjoy-content__detail {
		font-size: 1.171vw;
	}
}

@media screen and (max-width: 768px) {
	.skate__enjoy {
		/* background-image: url(../images/enjoy-bg_sp.webp); */
		padding: 41.333vw 0 32vw;
	}

	.skate__enjoy--content {
		margin-bottom: 8vw;
		padding: 0 5.333vw;
		width: 100%;
	}

	.skate__enjoy--title {
		margin-bottom: 5.867vw;
		font-size: 10.667vw;
	}

	.skate__enjoy--title .jp {
		margin-top: 2.667vw;
		line-height: 1.8;
		font-size: 5.333vw;
	}

	.skate__enjoy--list {
		display: block;
	}

	.skate__enjoy--list-item {
		width: 100%;
	}

	.enjoy-image {
		border-radius: 0.8vw;
	}

	.skate__enjoy--list-item:not(:last-of-type) {
		margin-bottom: 6.4vw;
	}

	.enjoy-content__title {
		margin-top: 2.4vw;
		font-size: 6.4vw;
	}

	.enjoy-content__detail {
		font-size: 4.267vw;
	}
}

/*
	object
------------------------------ */
.skate__enjoy .obj01 {
	background-image: url(../images/enjoy-obj01.webp);
	width: 363px;
	height: 361px;
	top: -377px;
	right: -145px;
}

.skate__enjoy .obj02 {
	background-image: url(../images/enjoy-obj02.webp);
	width: 99px;
	height: 107px;
	top: 15px;
	right: 220px;
}

@media screen and (max-width: 1366px) {
	.skate__enjoy .obj01 {
		width: 26.574vw;
		height: 26.428vw;
		top: -27.599vw;
		right: -10.615vw;
	}

	.skate__enjoy .obj02 {
		width: 99px;
		height: 107px;
		top: 15px;
		right: 220px;
	}
}

@media screen and (max-width: 768px) {
	.skate__enjoy .obj01 {
		width: 37.867vw;
		height: 37.333vw;
		top: -56.533vw;
		right: 0;
	}

	.skate__enjoy .obj02 {
		width: 26.4vw;
		height: 28.267vw;
		top: auto;
		right: auto;
		bottom: -21.333vw;
		left: 0;
	}
}

/* ----------------------------------------------------
	skate__section
---------------------------------------------------- */
.skate__section {
	margin-bottom: 170px;
	position: relative;
}

.skate__section::before {
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 654px;
	position: absolute;
	top: 175px;
	left: 0;
	content: "";
}

.skate__section--content {
	margin: 0 auto;
	width: 1166px;
	position: relative;
}

.skate__section--title {
	margin-bottom: 50px;
	font-weight: bold;
	position: relative;
}

.skate__section--title .jp {
	margin-top: 50px;
	font-size: 32px;
	display: block;
}

.skate__section--nav {
	margin-bottom: 50px;
	display: flex;
}

.skate__section--nav-item:not(:last-of-type) {
	margin-right: 20px;
}

.skate__section--lead {
	margin-bottom: 45px;
	width: 630px;
	line-height: 2.5;
	font-size: 16px;
}

@media screen and (max-width: 1366px) {
	.skate__section {
		background-position: center top 12.811vw;
		margin-bottom: 12.445vw;
	}

	.skate__section::before {
		height: 47.877vw;
		top: 12.811vw;
	}

	.skate__section--content {
		width: 85.359vw;
	}

	.skate__section--title {
		margin-bottom: 3.66vw;
	}

	.skate__section--title .jp {
		margin-top: 3.66vw;
		font-size: 2.343vw;
	}

	.skate__section--nav {
		margin-bottom: 3.66vw;
	}

	.skate__section--nav-item:not(:last-of-type) {
		margin-right: 1.464vw;
	}

	.skate__section--lead {
		margin-bottom: 3.294vw;
		width: 46.12vw;
		font-size: 1.171vw;
	}
}

@media screen and (max-width: 768px) {
	.skate__section {
		background-position: center top 12.267vw;
		background-repeat: no-repeat;
		background-size: 100% auto;
		margin-bottom: 31.467vw;
		padding: 0 5.333vw;
	}

	.skate__section::before {
		display: none;
	}

	.skate__section--content {
		width: 100%;
	}

	.skate__section--title {
		margin-bottom: 5.333vw;
	}

	.skate__section--title .jp {
		margin-bottom: 5.333vw;
		line-height: 1.5;
		font-size: 5.333vw;
	}

	.skate__section--nav {
		margin-bottom: 5.333vw;
		display: block;
	}

	.skate__section--nav-item:not(:last-of-type) {
		margin-right: 0;
		margin-bottom: 3.2vw;
	}

	.skate__section--nav-item .link-button {
		line-height: 1.5;
		text-align: center;
	}

	.skate__section--lead {
		margin-bottom: 14.933vw;
		width: 100%;
		line-height: 2.3;
		font-size: 4vw;
	}
}

/*
	section__detail
------------------------------ */
.section__detail--list {
	display: flex;
	justify-content: center;
}

.section__detail--image figcaption {
	margin-top: 0.5em;
	font-size: 12px;
	text-align: right;
}

.section__detail--content.type01,
.section__detail--content.type02 {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

/* type01 */
.section__detail--content.type01 {
	margin-bottom: 30px;
}

.section__detail--content.type01 .section__detail--image {
	width: 720px;
}

.section__detail--content.type01 .charm {
	width: 400px;
	position: relative;
	bottom: -110px;
}

/* type02 */
.section__detail--content.type02 {
	margin-bottom: 110px;
	width: 980px;
	position: relative;
	left: -100px;
}

.section__detail--content.type02 .section__detail--image {
	width: 480px;
}

.section__detail--content.type02 .charm {
	width: 455px;
}

/* type03 */
.section__detail--content.type03 {
	width: 365px;
}

.section__detail--content.type03 .section__detail--image {
	margin-bottom: 25px;
}

.section__detail--content.type03:not(:last-of-type) {
	margin-right: 36px;
}

@media screen and (max-width: 1366px) {
	.section__detail--image figcaption {
		font-size: 0.878vw;
	}

	/* type01 */
	.section__detail--content.type01 {
		margin-bottom: 2.196vw;
	}

	.section__detail--content.type01 .section__detail--image {
		width: 52.709vw;
	}

	.section__detail--content.type01 .charm {
		width: 29.283vw;
		bottom: -8.053vw;
	}

	/* type02 */
	.section__detail--content.type02 {
		margin-bottom: 8.053vw;
		width: 71.742vw;
		left: -7.321vw;
	}

	.section__detail--content.type02 .section__detail--image {
		width: 35.139vw;
	}

	.section__detail--content.type02 .charm {
		width: 33.309vw;
	}

	/* type03 */
	.section__detail--content.type03 {
		width: 26.72vw;
	}

	.section__detail--content.type03 .section__detail--image {
		margin-bottom: 1.83vw;
	}

	.section__detail--content.type03:not(:last-of-type) {
		margin-right: 2.635vw;
	}
}

@media screen and (max-width: 768px) {
	.section__detail--image figcaption {
		font-size: 3.2vw;
	}

	.section__detail--content:not(:last-of-type) {
		margin-bottom: 16vw;
	}

	.section__detail--content.type01,
	.section__detail--content.type02,
	.section__detail--list {
		display: block;
	}

	/* type01 */
	.section__detail--content.type01 {
		margin-bottom: 16vw;
	}

	.section__detail--content.type01 .section__detail--image,
	.section__detail--content.type01 .charm {
		width: 100%;
		position: static;
	}

	.section__detail--content.type01 .section__detail--image {
		margin-bottom: 4vw;
	}

	/* type02 */
	.section__detail--content.type02 {
		margin-bottom: 16vw;
		width: 100%;
		position: static;
	}

	.section__detail--content.type02 .section__detail--image,
	.section__detail--content.type02 .charm {
		width: 100%;
	}

	.section__detail--content.type02 .section__detail--image {
		margin-bottom: 4vw;
	}

	/* type03 */
	.section__detail--content.type03 {
		width: 100%;
	}

	.section__detail--content.type03 .section__detail--image {
		margin-bottom: 4vw;
	}

	.section__detail--content.type03:not(:last-of-type) {
		margin-right: 0;
	}
}

/*
	charm
------------------------------ */
.charm__number span {
	padding-bottom: 15px;
	line-height: 2.5;
	color: rgb(var(--ppl));
	font-size: 25px;
	font-weight: bold;
	border-bottom: solid 2px rgb(var(--ppl));
}

.charm__content--title {
	margin: 20px 0 14px;
	line-height: 1.8;
	font-size: 22px;
	font-weight: bold;
}

.charm__content--text {
	line-height: 2.5;
	font-size: 16px;
}

@media screen and (max-width: 1366px) {
	.charm__number span {
		padding-bottom: 1.098vw;
		font-size: 1.83vw;
		border-bottom-width: 0.146vw;
	}

	.charm__content--title {
		margin: 1.464vw 0 1.025vw;
		font-size: 1.611vw;
	}

	.charm__content--text {
		font-size: 1.171vw;
	}
}

@media screen and (max-width: 768px) {
	.charm__number span {
		padding-bottom: 4vw;
		font-size: 6.667vw;
		border-bottom-width: 0.533vw;
	}

	.charm__content--title {
		margin: 5.333vw 0 4vw;
		font-size: 5.333vw;
	}

	.charm__content--text {
		line-height: 2.3;
		font-size: 4vw;
	}
}

/* ----------------------------------------------------
	skate__world
---------------------------------------------------- */
.skate__world::before {
	background-image: url(../images/world-bg.webp);
}

.skate__world--logo {
	width: 296px;
	height: 66px;
	position: absolute;
	top: 0;
	right: 0;
}

.skate__world .skate__section--title img {
	width: 1010px;
}

.skate__world .skate__section--nav-item a.link-button {
	width: 318px;
}

.skate__world .skate__section--nav-item a.link-button span {
	padding-right: 2em;
}

@media screen and (max-width: 1366px) {
	.skate__world .skate__section--title img {
		width: 73.939vw;
	}

	.skate__world--logo {
		width: 21.669vw;
		height: 4.832vw;
	}

	.skate__world .skate__section--nav-item a.link-button {
		width: 23.28vw;
	}
}

@media screen and (max-width: 768px) {
	.skate__world {
		background-image: url(../images/world-bg_sp.webp);
	}

	.skate__world .skate__section--title img {
		width: 77.6vw;
	}

	.skate__world .skate__section--title .jp {
		margin-top: 21.867vw;
	}

	.skate__world--logo {
		width: 48.8vw;
		height: 10.667vw;
		top: 22.933vw;
		right: auto;
		left: -1.333vw;
	}

	.skate__world .skate__section--nav-item a.link-button {
		width: 100%;
	}

	.skate__world .skate__section--nav-item a.link-button span {
		padding-right: 1.5em;
	}
}

/*
	section__message
------------------------------ */
.section__message {
	background: linear-gradient(270deg, #B999ED 0%, #9B9EF7 100%);
	margin: 90px auto 0;
	padding: 68px 45px 40px 62px;
	width: 914px;
	border-radius: 4px;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.section__message--title {
	font-size: 50px;
	font-weight: 600;
	position: absolute;
	top: -25px;
	left: 33px;
}

.section__message .profile {
	width: 531px;
}

.section__message .profile__name {
	margin-bottom: 16px;
	line-height: 1.8;
	font-size: 22px;
	font-weight: 600;
}

.section__message .profile__text {
	line-height: 2.5;
	font-size: 16px;
}

.section__message .profile-image {
	width: 256px;
	text-align: center;
}

.section__message .profile-image figcaption {
	line-height: 2.5;
	font-size: 12px;
}

@media screen and (max-width: 1366px) {
	.section__message {
		margin-top: 6.589vw;
		padding: 4.978vw 3.294vw 2.928vw 4.539vw;
		width: 66.911vw;
		border-radius: 0.293vw;
	}

	.section__message--title {
		font-size: 3.66vw;
		top: -1.83vw;
		left: 2.416vw;
	}

	.section__message .profile {
		width: 38.873vw;
	}

	.section__message .profile__name {
		margin-bottom: 1.171vw;
		font-size: 1.611vw;
	}

	.section__message .profile__text {
		font-size: 1.171vw;
	}

	.section__message .profile-image {
		width: 18.741vw;
	}

	.section__message .profile-image figcaption {
		font-size: 0.878vw;
	}
}

@media screen and (max-width: 768px) {
	.section__message {
		margin-top: 18.667vw;
		padding: 10.667vw 6.4vw 6.4vw;
		width: 100%;
		border-radius: 1.067vw;
		display: block;
	}

	.section__message--title {
		font-size: 10.667vw;
		top: -5.333vw;
		left: 50%;
		transform: translateX(-50%);
	}

	.section__message .profile {
		width: 100%;
	}

	.section__message .profile__name {
		margin-bottom: 83.733vw;
		font-size: 5.867vw;
	}

	.section__message .profile__text {
		line-height: 2;
		font-size: 3.733vw;
	}

	.section__message .profile-image {
		width: 68.267vw;
		position: absolute;
		top: 25.067vw;
		left: 50%;
		transform: translateX(-50%);
	}

	.section__message .profile-image figcaption {
		font-size: 3.2vw;
	}
}

/*
	object
------------------------------ */
.skate__world .obj01 {
	background-image: url(../images/world-obj01.webp);
	width: 161px;
	height: 238px;
	top: -100px;
	left: 0;
}

.skate__world .obj02 {
	background-image: url(../images/world-obj02.webp);
	width: 104px;
	height: 94px;
	top: 600px;
	right: 301px;
}

.skate__world .obj03 {
	background-image: url(../images/world-obj03.webp);
	width: 438px;
	height: 454px;
	top: 520px;
	right: -100px;
}

.skate__world .obj04 {
	background-image: url(../images/world-obj04.webp);
	width: 209px;
	height: 221px;
	top: 1380px;
	right: -50px;
}

@media screen and (max-width: 1366px) {
	.skate__world .obj01 {
		width: 11.786vw;
		height: 17.423vw;
		top: -7.321vw;
	}

	.skate__world .obj02 {
		width: 7.613vw;
		height: 6.881vw;
		top: 43.924vw;
		right: 22.035vw;
	}

	.skate__world .obj03 {
		width: 32.064vw;
		height: 33.236vw;
		top: 38.067vw;
		right: -7.321vw;
	}

	.skate__world .obj04 {
		width: 15.3vw;
		height: 16.179vw;
		top: 101.025vw;
		right: -3.66vw;
	}
}

@media screen and (max-width: 768px) {
	.skate__world .obj01 {
		background-image: url(../images/world-obj01_sp.webp);
		width: 39.467vw;
		height: 41.867vw;
		top: auto;
		bottom: -26.667vw;
		right: 6.4vw;
		left: auto;
	}

	.skate__world .obj02 {
		background-image: url(../images/world-obj02.webp);
		width: 27.733vw;
		height: 25.067vw;
		top: auto;
		right: auto;
		bottom: -26.667vw;
		left: 21.333vw;
	}

	.skate__world .obj03 {
		display: none;
	}

	.skate__world .obj04 {
		display: none;
	}
}

/* ----------------------------------------------------
	skate__team
---------------------------------------------------- */
.skate__team::before {
	background-image: url(../images/team-bg.webp);
}

.skate__team .skate__section--title img {
	width: 1150px;
}

.skate__team .skate__team--logo {
	width: 352px;
	height: 30px;
	position: absolute;
	top: 196px;
	right: 0;
}

.skate__team .skate__section--nav-item a.link-button {
	width: 440px;
}

.skate__team .skate__section--nav-item a.link-button.long {
	width: 460px;
}

.skate__team .skate__section--nav-item a.link-button span {
	padding-right: 2em;
}

/* type02 */
.skate__team .section__detail--content.type02 {
	margin-bottom: 150px;
}

.skate__team .section__detail--content.type02 .charm {
	position: relative;
	bottom: -65px;
}

@media screen and (max-width: 1366px) {
	.skate__team .skate__section--title img {
		width: 84.187vw;
	}

	.skate__team .skate__team--logo {
		width: 25.769vw;
		height: 2.196vw;
		top: 14.348vw;
	}

	.skate__team .skate__section--nav-item a.link-button {
		width: 32.211vw;
	}

	.skate__team .skate__section--nav-item a.link-button.long {
		width: 33.675vw;
	}

	/* type02 */
	.skate__team .section__detail--content.type02 {
		margin-bottom: 10.981vw;
	}

	.skate__team .section__detail--content.type02 .charm {
		bottom: -4.758vw;
	}
}

@media screen and (max-width: 768px) {
	.skate__team {
		background-image: url(../images/team-bg_sp.webp);
	}

	.skate__team .skate__section--title img {
		width: 89.333vw;
	}

	.skate__team .skate__section--title .jp {
		margin-top: 20.267vw;
	}

	.skate__team .skate__team--logo {
		width: 100%;
		height: auto;
		position: absolute;
		top: 23.467vw;
		right: auto;
		left: 0;
	}

	.skate__team .skate__section--nav-item a.link-button,
	.skate__team .skate__section--nav-item a.link-button.long {
		width: 100%;
	}

	.skate__team .skate__section--nav-item a.link-button span {
		padding-right: 1.5em;
	}

	/* type02 */
	.skate__team .section__detail--content.type02 {
		margin-bottom: 16vw;
	}

	.skate__team .section__detail--content.type02 .charm {
		position: static;
	}
}

/*
	object
------------------------------ */
.skate__team .obj01 {
	background-image: url(../images/team-obj01.webp);
	width: 131px;
	height: 114px;
	top: -115px;
	left: -65px;
}

.skate__team .obj02 {
	background-image: url(../images/team-obj02.webp);
	width: 398px;
	height: 409px;
	top: 400px;
	right: -65px;
}

.skate__team .obj03 {
	background-image: url(../images/team-obj03.webp);
	width: 169px;
	height: 181px;
	top: 620px;
	right: 200px;
}

.skate__team .obj04 {
	background-image: url(../images/team-obj04.webp);
	width: 249px;
	height: 238px;
	top: 1420px;
	right: -50px;
}

@media screen and (max-width: 1366px) {
	.skate__team .obj01 {
		width: 9.59vw;
		height: 8.346vw;
		top: -8.419vw;
		left: -4.758vw;
	}

	.skate__team .obj02 {
		width: 29.136vw;
		height: 29.941vw;
		top: 29.283vw;
		right: -4.758vw;
	}

	.skate__team .obj03 {
		width: 12.372vw;
		height: 13.25vw;
		top: 45.388vw;
		right: 14.641vw;
	}

	.skate__team .obj04 {
		width: 18.228vw;
		height: 17.423vw;
		top: 103.953vw;
		right: -3.66vw;
	}
}

@media screen and (max-width: 768px) {
	.skate__team .obj01 {
		background-image: url(../images/team-obj01_sp.webp);
		width: 30.933vw;
		height: 25.6vw;
		top: auto;
		right: 0;
		bottom: -24vw;
		left: auto;
	}

	.skate__team .obj02,
	.skate__team .obj03,
	.skate__team .obj04 {
		display: none;
	}
}

/* ----------------------------------------------------
	skate__ice
---------------------------------------------------- */
.skate__ice::before {
	background-image: url(../images/ice-bg.webp);
}

.skate__ice .skate__section--title img {
	width: 935px;
}

@media screen and (max-width: 1366px) {
	.skate__ice .skate__section--title img {
		width: 68.448vw;
	}
}

@media screen and (max-width: 768px) {
	.skate__ice {
		background-image: url(../images/ice-bg_sp.webp);
	}

	.skate__ice .skate__section--title img {
		width: 77.6vw;
	}

	.skate__ice .skate__section--nav {
		display: flex;
		flex-wrap: wrap;
	}

	.skate__ice .skate__section--nav-item {
		width: 48%;
	}

	.skate__ice .skate__section--nav-item:nth-child(even) {
		margin-left: 4%;
	}

	.skate__ice .skate__section--nav-item a.link-button {
		width: 100%;
	}
}

/*
	object
------------------------------ */
.skate__ice .obj01 {
	background-image: url(../images/ice-obj01.webp);
	width: 95px;
	height: 95px;
	top: 324px;
	right: 130px;
}

.skate__ice .obj02 {
	background-image: url(../images/ice-obj02.webp);
	width: 261px;
	height: 306px;
	top: 393px;
	right: -50px;
}

@media screen and (max-width: 1366px) {
	.skate__ice .obj01 {
		width: 6.955vw;
		height: 6.955vw;
		top: 23.719vw;
		right: 9.517vw;
	}

	.skate__ice .obj02 {
		width: 19.107vw;
		height: 22.401vw;
		top: 28.77vw;
		right: -3.66vw;
	}
}

@media screen and (max-width: 768px) {

	.skate__ice .obj01,
	.skate__ice .obj02 {
		display: none;
	}
}

/*
	skate__ice-list
------------------------------ */
.skate__ice-list {
	margin: 0 auto;
	width: 1010px;
}

.skate__ice-list--item {
	position: relative;
}

.skate__ice-list--item:not(:last-of-type) {
	margin-bottom: 130px;
}

.skate__ice--image {
	margin-bottom: 50px;
	position: relative;
}

.skate__ice--image .area {
	background: linear-gradient(135deg, rgba(255, 184, 255, 1) 0%, rgba(159, 209, 255, 1) 50%, rgba(11, 250, 255, 1) 100%);
	width: 98px;
	height: 98px;
	line-height: 1.5;
	font-size: 18px;
	font-weight: 600;
	border-radius: 98px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: -37px;
	left: 31px;
	z-index: 3;
}

.skate__ice--image .area small {
	font-size: 15px;
}

.skate__ice--slide.slick-slider {
	margin-bottom: 0;
	z-index: 2;
}

.skate__ice--slide .slick-arrow {
	background-image: url(../images/button-arrow.webp);
	background-size: cover;
	width: 55px;
	height: 55px;
	z-index: 3;
}

.skate__ice--slide .slick-prev {
	left: -28px;
	transform: translateY(-50%);
}

.skate__ice--slide .slick-next {
	top: auto;
	right: -28px;
	bottom: 50%;
	transform: rotate(180deg) translateY(-50%);
}

.skate__ice--detail {
	margin-left: 82px;
}

.skate__ice--detail-title {
	margin-bottom: 10px;
	line-height: 1.5;
	font-size: 32px;
	font-weight: bold;
}

.skate__ice--detail-content address {
	margin-bottom: 20px;
	line-height: 2;
	font-size: 12px;
	font-weight: bold;
	display: flex;
}

.skate__ice--detail-content address span:not(:last-of-type) {
	margin-right: 1em;
}

.skate__ice--detail-content address span:not(:last-of-type)::after {
	margin-left: 1em;
	content: "｜";
}

.skate__ice--detail-content .text {
	margin-bottom: 20px;
	line-height: 2.5;
	font-size: 16px;
}

.skate__ice--detail-content .link-button {
	padding-right: 1.5em;
}

@media screen and (max-width: 1366px) {
	.skate__ice-list {
		width: 73.939vw;
	}

	.skate__ice-list--item:not(:last-of-type) {
		margin-bottom: 9.517vw;
	}

	.skate__ice--image {
		margin-bottom: 3.66vw;
	}

	.skate__ice--image .area {
		width: 7.174vw;
		height: 7.174vw;
		font-size: 1.318vw;
		border-radius: 7.174vw;
		bottom: -2.709vw;
		left: 2.269vw;
	}

	.skate__ice--image .area small {
		font-size: 1.098vw;
	}

	.skate__ice--slide .slick-arrow {
		width: 4.026vw;
		height: 4.026vw;
	}

	.skate__ice--slide .slick-prev {
		left: -2.05vw;
	}

	.skate__ice--slide .slick-next {
		right: -2.05vw;
	}

	.skate__ice--detail {
		margin-left: 6.003vw;
	}

	.skate__ice--detail-title {
		margin-bottom: 0.732vw;
		font-size: 2.343vw;
	}

	.skate__ice--detail-content address {
		margin-bottom: 1.464vw;
		font-size: 0.878vw;
	}

	.skate__ice--detail-content .text {
		margin-bottom: 1.464vw;
		font-size: 1.171vw;
	}
}

@media screen and (max-width: 768px) {
	.skate__ice-list {
		width: 100%;
	}

	.skate__ice-list--item:not(:last-of-type) {
		margin-bottom: 24vw;
	}

	.skate__ice--image {
		margin-bottom: 5.333vw;
	}

	.skate__ice--image .area {
		width: 26.133vw;
		height: 26.133vw;
		font-size: 4.8vw;
		border-radius: 26.133vw;
		top: -13.067vw;
		bottom: auto;
		left: 50%;
		transform: translateX(-50%);
	}

	.skate__ice--image .area small {
		font-size: 4vw;
	}

	.skate__ice--slide .slick-arrow {
		width: 6.933vw;
		height: 6.933vw;
	}

	.skate__ice--slide .slick-prev {
		left: -3.467vw;
	}

	.skate__ice--slide .slick-next {
		right: -3.467vw;
	}

	.skate__ice--detail {
		margin-left: 0;
	}

	.skate__ice--detail-title {
		margin-bottom: 2.667vw;
		font-size: 5.333vw;
	}

	.skate__ice--detail-content address {
		margin-bottom: 5.333vw;
		font-size: 3.2vw;
		display: block;
	}

	.skate__ice--detail-content address span {
		display: block;
	}

	.skate__ice--detail-content address span:not(:last-of-type) {
		margin-right: 0;
	}

	.skate__ice--detail-content address span:not(:last-of-type)::after {
		display: none;
	}

	.skate__ice--detail-content .text {
		margin-bottom: 8vw;
		font-size: 4vw;
	}
}

/*
	obj
------------------------------ */
.yokohama-obj01 {
	background-image: url(../images/yokohama-obj01.webp);
	width: 193px;
	height: 193px;
	right: 0;
	bottom: 100px;
}

.yokohama-obj02 {
	background-image: url(../images/yokohama-obj02.webp);
	width: 119px;
	height: 110px;
	right: -120px;
	bottom: 50px;
}

.fushimi-obj01 {
	background-image: url(../images/fushimi-obj01.webp);
	width: 309px;
	height: 347px;
	top: -180px;
	left: -180px;
	z-index: 1;
}

.yamato-obj01 {
	background-image: url(../images/yamato-obj01.webp);
	width: 249px;
	height: 238px;
	top: -180px;
	right: -100px;
	z-index: 1;
}

.yamato-obj02 {
	background-image: url(../images/yamato-obj02.webp);
	width: 101px;
	height: 115px;
	top: 60px;
	right: -160px;
}

.yamato-obj03 {
	background-image: url(../images/yamato-obj03.webp);
	width: 296px;
	height: 261px;
	right: -10px;
	bottom: 60px;
}

@media screen and (max-width: 1366px) {
	.yokohama-obj01 {
		width: 14.129vw;
		height: 14.129vw;
		bottom: 7.321vw;
	}

	.yokohama-obj02 {
		width: 8.712vw;
		height: 8.053vw;
		right: -8.785vw;
		bottom: 3.66vw;
	}

	.fushimi-obj01 {
		width: 22.621vw;
		height: 25.403vw;
		top: -13.177vw;
		left: -13.177vw;
	}

	.yamato-obj01 {
		width: 18.228vw;
		height: 17.423vw;
		top: -13.177vw;
		right: -7.321vw;
	}

	.yamato-obj02 {
		width: 7.394vw;
		height: 8.419vw;
		top: 4.392vw;
		right: -11.713vw;
	}

	.yamato-obj03 {
		width: 19.693vw;
		height: 19.107vw;
		right: -0.732vw;
		bottom: 4.392vw;
	}
}

@media screen and (max-width: 768px) {

	.yokohama-obj01,
	.yokohama-obj02,
	.fushimi-obj01,
	.yamato-obj01,
	.yamato-obj02,
	.yamato-obj03 {
		display: none;
	}
}

/* ----------------------------------------------------
	skate__history
---------------------------------------------------- */
.skate__history {
	background-image: url(../images/history-bg.webp);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100% auto;
	padding-top: 23.865vw;
}

.skate__history--content {
	margin: 0 auto 40px;
	width: 1010px;
	position: relative;
}

.skate__history--title {
	margin-bottom: 35px;
	font-size: 64px;
	font-weight: bold;
}

.skate__history--title .jp {
	margin-top: 10px;
	font-size: 25px;
	font-weight: normal;
	display: block;
}

.skate__history--lead {
	line-height: 2.5;
	font-size: 16px;
}

.skate__history--content .obj01 {
	background-image: url(../images/history-obj01.webp);
	width: 320px;
	height: 336px;
	top: -284px;
	right: 111px;
}

.skate__history--content .obj02 {
	background-image: url(../images/history-obj02.webp);
	width: 103px;
	height: 77px;
	top: 43px;
	right: 0;
}

@media screen and (max-width: 1366px) {
	.skate__history--content {
		margin-bottom: 2.928vw;
		width: 73.939vw;
	}

	.skate__history--title {
		margin-bottom: 2.562vw;
		font-size: 4.685vw;
	}

	.skate__history--title .jp {
		margin-top: 0.732vw;
		font-size: 1.83vw;
	}

	.skate__history--lead {
		font-size: 1.171vw;
	}

	.skate__history--content .obj01 {
		width: 23.426vw;
		height: 24.597vw;
		top: -20.791vw;
		right: 8.126vw;
	}

	.skate__history--content .obj02 {
		width: 7.54vw;
		height: 5.637vw;
		top: 3.148vw;
		right: 0;
	}
}

@media screen and (max-width: 768px) {
	.skate__history {
		background-image: url(../images/history-bg_sp.webp);
		padding-top: 42.667vw;
	}

	.skate__history--content {
		margin-bottom: 8vw;
		width: 100%;
		position: relative;
	}

	.skate__history--title {
		margin-bottom: 5.867vw;
		padding: 0 5.333vw;
		font-size: 10.667vw;
	}

	.skate__history--title .jp {
		margin-top: 2.667vw;
		font-size: 5.333vw;
	}

	.skate__history--lead {
		padding: 0 5.333vw;
		font-size: 4vw;
	}

	.skate__history--content .obj01 {
		background-image: url(../images/history-obj01_sp.webp);
		width: 44.8vw;
		height: 53.333vw;
		top: -53.333vw;
		right: 0;
	}

	.skate__history--content .obj02 {
		display: none;
	}
}

/*
	skate__history--list
------------------------------ */
.skate__history--list {
	display: flex;
	flex-wrap: wrap;
}

.skate__history--list-item {
	width: calc(100% / 3);
}

.skate__history--image {
	width: 100%;
	height: 33.163vw;
	overflow: hidden;
	position: relative;
	z-index: 1;
	cursor: pointer;
}

.skate__history--image .caption {
	background-color: rgba(var(--blk), 0);
	padding: 2.269vw 2.928vw;
	width: 100%;
	height: 100%;
	/* opacity: 0; */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.5s ease 0s;
}

/* .skate__history--image:hover .caption {
	opacity: 1;
} */

.skate__history--image .caption__year,
.skate__history--image .caption__text {
	transition: all 0.5s ease 0s;
}

.skate__history--image .caption__year {
	line-height: 1.25;
	font-size: 2.928vw;
	font-weight: 600;
	display: flex;
	align-items: center;
}

.skate__history--image .caption__year small {
	margin-left: 0.5em;
	font-size: 0.5em;
	font-weight: normal;
}

.skate__history--image .caption__text {
	line-height: 1.5;
	font-size: 1.464vw;
	opacity: 0;
}

.skate__history--image:hover .caption {
	background-color: rgba(var(--blk), 0.65);
}

.skate__history--image:hover .caption__text {
	opacity: 1;
}

.skate__history--list-item.year2018 .caption__year {
	color: rgb(var(--blk));
}

.skate__history--list-item.year2018:hover .caption__year {
	color: rgb(var(--wht));
}

@media screen and (max-width: 768px) {
	.skate__history--list-item {
		width: 50vw;
	}

	.skate__history--image {
		width: 50vw;
		height: 50vw;
	}

	.skate__history--image .caption {
		background-color: rgba(var(--blk), 0.65);
		padding: 3.2vw;
	}

	/* .skate__history--image:hover .caption__year {
		font-size: 4.267vw;
	}

	.skate__history--image:hover .caption__text {
		font-size: 3.2vw;
	} */
	.skate__history--image .caption__year {
		font-size: 4.267vw;
	}

	.skate__history--image .caption__text {
		font-size: 3.2vw;
		opacity: 1;
	}

	.skate__history--list-item.year2018 .caption__year {
		color: rgb(var(--wht));
	}
}

/*
	modal
------------------------------ */
.skate__history .modal {
	background: rgba(var(--blk), 0.75);
	width: 100%;
	height: 100%;
	display: none;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}

body.scrollfixed {
	padding-right: 0;
}

.skate__history .modal.show {
	display: flex;
}

.skate__history .modal__content {
	background: rgb(var(--wht));
	padding: 78px 88px;
	width: 1166px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
}

.modal__details {
	padding-right: 20px;
	width: 400px;
	max-height: 60vh;
	color: rgb(var(--blk));
	overflow-y: auto;
}

.modal__details::-webkit-scrollbar {
	width: 8px;
}

.modal__details::-webkit-scrollbar-track {
	background: rgb(var(--wht));
	border-radius: 4px;
}

.modal__details::-webkit-scrollbar-thumb {
	background: rgb(var(--blu));
	border-radius: 4px;
}

.modal__details::-webkit-scrollbar-thumb:hover {
	background: rgba(var(--blu), 0.8);
}

.modal__detail--item:not(:last-of-type) {
	margin-bottom: 40px;
}

.modal__details .modal__years {
	margin-bottom: 20px;
	line-height: 1;
	color: rgb(var(--blu));
	font-size: 50px;
	font-weight: 600;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.modal__details .modal__years--inner {
	line-height: 1.25;
	width: 100%;
	display: flex;
	align-items: center;
}

.modal__details .modal__years .jp {
	margin-left: 20px;
	font-size: 22px;
	font-weight: normal;
}

.modal__details .contents__text {
	line-height: 2.5;
	font-size: 16px;
}

.modal__details .contents__text+.note {
	margin-top: 1em;
}

.modal__slide {
	width: 554px;
}

.modal__slide--item {
	padding: 0 8px 8px 0;
	position: relative;
}

.modal__slide--item .offer {
	margin-top: 0.5em;
	color: rgb(var(--blk));
	font-size: 12px;
	text-align: right;
}

.modal__slide--item figcaption.cover {
	background-color: rgba(var(--blk), 0.5);
	margin-top: 0;
	padding: 1em;
	width: calc(100% - 8px);
	color: rgb(var(--wht));
	font-size: 16px;
	text-align: left;
	position: absolute;
	bottom: 8px;
	left: 0;
}

.skate__history .close {
	background: rgb(var(--blu));
	width: 48px;
	height: 48px;
	border-radius: 48px;
	position: absolute;
	top: -24px;
	right: -24px;
	cursor: pointer;
}

.skate__history .close__inner {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
	transform: rotate(45deg);
}

.skate__history .close__inner::before,
.skate__history .close__inner::after {
	background: rgb(var(--wht));
	width: 60%;
	height: 1px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	content: "";
}

.skate__history .close__inner::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

/* slick */
.skate__history .slick-dots {
	line-height: 1;
	display: flex;
	justify-content: center;
}

.skate__history .slick-dots li {
	margin: 0 0 0 10px;
	width: auto;
	height: auto;
}

.skate__history .slick-dots li button {
	background: #D9D9D9;
	width: 12px;
	height: 12px;
	text-indent: -9999px;
	border-radius: 12px;
}

.skate__history .slick-dots li.slick-active button {
	background: rgb(var(--blu));
}

@media screen and (max-width: 1366px) {
	.skate__history .modal__content {
		padding: 5.71vw 6.442vw;
		width: 85.359vw;
	}

	.modal__details {
		padding-right: 1.464vw;
		width: 29.283vw;
	}

	.modal__details::-webkit-scrollbar {
		width: 0.586vw;
	}

	.modal__details::-webkit-scrollbar-track {
		border-radius: 0.293vw;
	}

	.modal__details::-webkit-scrollbar-thumb {
		border-radius: 0.293vw;
	}

	.modal__detail--item:not(:last-of-type) {
		margin-bottom: 2.928vw;
	}

	.modal__details .modal__years {
		margin-bottom: 1.464vw;
		font-size: 3.66vw;
	}

	.modal__details .modal__years .jp {
		margin-left: 1.464vw;
		font-size: 1.611vw;
	}

	.modal__details .contents__text {
		font-size: 1.171vw;
	}

	.modal__slide {
		width: 40.556vw;
	}

	.modal__slide--item {
		padding: 0 0.586vw 0.586vw 0;
	}

	.modal__slide--item .offer {
		font-size: 0.878vw;
	}

	.modal__slide--item figcaption.cover {
		width: calc(100% - 0.586vw);
		font-size: 1.171vw;
		bottom: 0.586vw;
	}

	.skate__history .close {
		width: 3.514vw;
		height: 3.514vw;
		border-radius: 3.514vw;
		top: -1.757vw;
		right: -1.757vw;
	}

	/* slick */
	.skate__history .slick-dots li {
		margin: 0 0 0 0.732vw;
	}

	.skate__history .slick-dots li button {
		width: 0.878vw;
		height: 0.878vw;
	}
}

@media screen and (max-width: 768px) {
	.skate__history .modal__content {
		padding: 8vw 0;
		width: 85%;
		max-height: 90vh;
		overflow-y: auto;
		display: block;
	}

	.modal__details {
		padding: 0 4.8vw;
		width: 100%;
		max-height: none;
		overflow: visible;
		order: 0;
	}

	.modal__details::-webkit-scrollbar {
		width: 2.133vw;
	}

	.modal__details::-webkit-scrollbar-track {
		border-radius: 1.067vw;
	}

	.modal__details::-webkit-scrollbar-thumb {
		border-radius: 1.067vw;
	}

	.modal__detail--item:not(:last-of-type) {
		margin-bottom: 8vw;
	}

	.modal__details .modal__years {
		margin-bottom: 4vw;
		font-size: 8vw;
	}

	.modal__details .modal__years .jp {
		margin-left: 4vw;
		font-size: 4vw;
	}

	.modal__details .contents__text {
		line-height: 1.8;
		font-size: 3.733vw;
	}

	.modal__slide {
		margin: 0 auto 8vw;
		width: 75%;
		order: 0;
	}

	.modal__slide.slick-dotted.slick-slider {
		margin-bottom: 8vw;
	}

	.modal__slide--item {
		padding: 0;
	}

	.modal__slide--item .offer {
		font-size: 3.2vw;
	}

	.modal__slide--item figcaption.cover {
		width: 100%;
		line-height: 1.5;
		font-size: 3.2vw;
		bottom: 0;
	}

	.skate__history .close {
		background: none;
		margin: -6.4vw 0.8vw 0 auto;
		width: 8vw;
		height: 8vw;
		border-radius: 0;
		overflow: hidden;
		display: block;
		position: relative;
		top: 0.8vw;
		right: 1.6vw;
		order: -1;
	}

	.skate__history .close__inner::before,
	.skate__history .close__inner::after {
		background: rgb(var(--blk));
		width: 100%;
	}

	.skate__history .close__inner::after {
		transform: translate(-50%, -50%) rotate(90deg);
	}

	/* slick */
	.skate__history .slick-dots li {
		margin: 0 0 0 2.4vw;
	}

	.skate__history .slick-dots li button {
		width: 1.6vw;
		height: 1.6vw;
		border-radius: 1.6vw;
	}
}

/* ----------------------------------------------------
	skate__foot
---------------------------------------------------- */
.skate__foot {
	background-color: rgb(var(--wht));
	padding: 100px 0;
	color: rgb(var(--blk));
}

.skate__foot--banner {
	margin: 0 auto 10px;
	width: 1050px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.skate__foot--banner-item {
	margin: 0 25px 50px;
	width: 269px;
	text-align: center;
}

.skate__foot--banner-item a img {
	height: auto;
}

.skate__foot--banner-item a .kose {
	width: 269px;
}

.skate__foot--banner-item a .dydo {
	width: 217px;
}

.skate__foot--banner-item a .higasiyamato {
	width: 262px;
}

.skate__foot--banner-item a .railway {
	width: 165px;
}

.skate__foot--banner-item a .sphr {
	width: 165px;
}

.skate__foot--banner-item a .recreation {
	width: 269px;
}

.skate__foot--banner-item.smc,
.skate__foot--banner-item.spgr {
	width: 100%;
}

.skate__foot--banner-item.smc a img {
	width: 269px;
}

.skate__foot--banner-item.spgr a img {
	width: 194px;
}

.skate__foot .note {
	margin: 0 auto;
	width: 1166px;
	line-height: 2;
}

@media screen and (max-width: 1366px) {
	.skate__foot {
		padding: 7.321vw 0;
	}

	.skate__foot--banner {
		margin-bottom: 0.732vw;
		width: 76.867vw;
	}

	.skate__foot--banner-item {
		margin: 0 1.83vw 3.66vw;
		width: 19.693vw;
	}

	.skate__foot--banner-item a .kose {
		width: 19.693vw;
	}

	.skate__foot--banner-item a .dydo {
		width: 15.886vw;
	}

	.skate__foot--banner-item a .higasiyamato {
		width: 19.18vw;
	}

	.skate__foot--banner-item a .railway {
		width: 12.079vw;
	}

	.skate__foot--banner-item a .sphr {
		width: 12.079vw;
	}

	.skate__foot--banner-item a .recreation {
		width: 19.693vw;
	}

	.skate__foot--banner-item.smc a img {
		width: 19.693vw;
	}

	.skate__foot--banner-item.spgr a img {
		width: 14.202vw;
	}

	.skate__foot .note {
		width: 85.359vw;
	}
}

@media screen and (max-width: 768px) {
	.skate__foot {
		padding: 13.333vw 0;
	}

	.skate__foot--banner {
		margin-bottom: 0;
		width: 100%;
		display: block;
	}

	.skate__foot--banner-item {
		margin: 0 0 13.333vw;
		padding: 0 4vw;
		width: 100%;
	}

	.skate__foot--banner-item.sphr,
	.skate__foot--banner-item.recreation {
		margin-bottom: 8vw;
	}

	.skate__foot--banner-item a img {
		height: auto;
	}

	.skate__foot--banner-item.kose a img {
		width: 71.733vw;
		max-width: 269px;
	}

	.skate__foot--banner-item.dydo a img {
		width: 57.867vw;
		max-width: 217px;
	}

	.skate__foot--banner-item.higasiyamato a img {
		width: 69.867vw;
		max-width: 262px;
	}

	.skate__foot--banner-item.railway a img {
		width: 44vw;
		max-width: 165px;
	}

	.skate__foot--banner-item.sphr a img {
		width: 44vw;
		max-width: 165px;
	}

	.skate__foot--banner-item.recreation a img {
		width: 71.733vw;
		max-width: 269px;
	}

	.skate__foot--banner-item.smc a img {
		width: 71.733vw;
		max-width: 269px;
	}

	.skate__foot--banner-item.spgr a img {
		width: 51.733vw;
		max-width: 194px;
	}

	.skate__foot .note {
		margin: 0 auto;
		padding: 0 4vw;
		width: 100%;
	}
}
