@charset "UTF-8";

/* ローディング */
#js-loading.hide {
	opacity: 0;
	pointer-events: none;
	transition: opacity 500ms;
}

.loading {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	width: 100vw;
	height: 100vh;
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	align-items: center;
	background-image: radial-gradient(#2e2e2e, #000000);
}

.loading__animation {
	width: 20px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: #fff8;
	box-shadow: 0 0 0 0 #fff4;
	animation: l1 1s infinite;
}

@keyframes l1 {
	100% {
		box-shadow: 0 0 0 30px #fff0
	}
}

.loading__text {
	font-size: 12px;
	color: #fff4;
}

/* ファーストビュー */
.p-top-fv {
	background-color: #000;
	text-align: center;
	animation: fadeInScale 3s ease-out forwards;
}

/* top.cssから持ってきた */
.l-main.p-top {
    margin-top: 0;
}

.main-container {
  height: 100vh;
  width: 100%;
  background: url(../images/top/main-pic-pc.jpg) no-repeat center top;
  background-size: cover;
  position: relative;
}

.main-container.login-after {
  background: url(../images/top/login-after-main-pc_2024.jpg) no-repeat center top #020202;
  padding-top: 36%;
  height: auto;
  background-size: 100%;
}
/* ここまで */

	.main-container.login-after {
		position: relative;
	}

@keyframes fadeInScale {
	0% {
		opacity: 0;
		transform: scale(1.2);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.p-top-fv img {
	width: 100%;
	max-width: 1600px;
	height: auto;
}

/* top.cssから持ってきた */
.main-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  width: 312px;
}

.main-logo.after-login {
  top: 65%;
  width: 280px;
}

.main-scroll-icon {
  position: absolute;
  left: 50%;
  bottom: 13px;
  width: 60px;
  margin-left: -30px;
}

.main-scroll-icon img {
  vertical-align: bottom;
}

@media all and ( max-width: 768px) {
	.main-container {
		background-image: url(../images/top/main-pic-sp.jpg);
	}

	.main-container.login-after {
		background: url(../images/top/login-after-main-sp_2024.jpg) no-repeat center top #020202;
		padding-top: 106%;
		background-size: 100%;
	}

	.main-logo {
		width: 233px;
		transform: translate(-50%, -53%);
	}

	.main-logo.after-login {
		width: 233px;
		top: 61%;
	}

	.main-scroll-icon {
		bottom: 30px;
	}
}
/* ここまで */

/* ログイン・新規ご入会 */
.p-top-into {
	width: clamp(320px, calc(320 / 375 * 100vw), 720px);
	height: clamp(95px, calc(95 / 375 * 100vw), 169px);
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: clamp(20px, calc(20 / 375 * 100vw), 40px);
}

.p-top-into__btn {
	flex-basis: 50%;
}

.p-top-into__btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: clamp(47px, calc(47 / 375 * 100vw), 84px);
	transition: all 0.3s ease-in-out;
	background-repeat: no-repeat;
	background-size: cover;
	font-size: clamp(13px, calc(13 / 375 * 100vw), 20px);
	font-weight: 600;
	color: #fff;
}

.p-top-into__btn.p-top-into__login a {
	background-image: url(/assets/images/common/btn_bg_login_pc.webp);
}

.p-top-into__btn.p-top-into__join a {
	background-image: url(/assets/images/common/btn_bg_join_pc.webp);
}

@media only screen and (max-width: 480px) {
	.p-top-into__btn.p-top-into__login a {
		background-image: url(/assets/images/common/btn_bg_login_sp.webp);
	}

	.p-top-into__btn.p-top-into__join a {
		background-image: url(/assets/images/common/btn_bg_join_sp.webp);
	}
}

@media (hover: hover) and (pointer: fine) {
	.p-top-into__btn a:hover {
		filter: brightness(1.5);
		transform: scale(1.05);
	}
}

/* バナー：リニューアル前からの移植 */
.banner-container {
	/* margin-bottom: 88px; */
	position: relative;
}

.banner-navi {
	left: 0;
	top: 0;
}

.banner-nav-arrow {
	position: absolute;
	top: 50%;
	width: 32px;
	height: 32px;
	margin-top: -16px;
	background-repeat: no-repeat;
	z-index: 1;
	cursor: pointer;
	background-size: cover;
}

.banner-nav-arrow--left {
	background-image: url(../images/top/slide-left-arrow.png);
	left: 10px;
}

.banner-nav-arrow--right {
	background-image: url(../images/top/slide-right-arrow.png);
	right: 10px;
}

.no-slick {
	display: flex;
	justify-content: center;
}

.banner__item {
	width: 29.375%;
	/* ↓新デザインに合わせて追記 */
	max-width: 343px !important;
}

.banner__item a {
	display: block;
	transition: all 0.3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
	.banner__item a:hover {
		filter: contrast(1.5);
		transform: scale(1.05);
		box-shadow: 0 0px 10px rgba(0, 0, 0, 0.7);
	}
}

/* NEWS */
.p-top-news {
	background-color: rgba(255, 255, 255, 0.7);
	padding: 30px 0;
	margin-top: clamp(30px, calc(30 / 375 * 100vw), 60px);
}

.p-top-news__inner {
	width: 100%;
	max-width: 1070px;
	margin: 0 auto;
}

.p-top-news__body {
	display: flex;
	flex-direction: column;
	gap: clamp(5px, calc(5 / 375 * 100vw), 35px);
}

.p-top-news__head {
	width: 100%;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.p-top-news__body {
	margin-top: clamp(15px, calc(15 / 375 * 100vw), 30px);
}

.p-top-news__content a {
	display: block;
	padding: 10px 20px;
	border-radius: 5px;
	font-family: "Lato", "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: clamp(15px, calc(15 / 375 * 100vw), 20px);
	color: #333;
	transition: all 0.3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
	.p-top-news__content a:hover {
		background-color: rgba(0, 0, 0, 0.07);
	}
}

.p-top-news__title {
	margin-top: clamp(5px, calc(5 / 375 * 100vw), 15px);
}

/* CONTENTS */
.p-top-contents {
	background-color: rgba(144, 144, 144, 0.3);
	padding: clamp(30px, calc(30 / 375 * 100vw), 40px) 0;
}

.p-top-contents .c-section-title {
	text-align: center;
}

.p-top-contents__inner {
	width: 100%;
	max-width: 1070px;
	margin: 0 auto;
	padding: 0 20px;
}

.p-top-contents__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	column-gap: clamp(30px, calc(30 / 375 * 100vw), 80px);
	row-gap: clamp(30px, calc(30 / 375 * 100vw), 40px);
	margin-top: clamp(30px, calc(30 / 375 * 100vw), 60px);
}

.p-top-contents__body__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.p-top-contents__body__list {
	display: flex;
	gap: clamp(10px, calc(10 / 375 * 100vw), 20px);
	margin-top: clamp(5px, calc(5 / 375 * 100vw), 15px);
}

.p-top-contents__body__list li {
	flex-basis: 50%;
}

.p-top-contents__body__list li a {
	display: block;
}

.p-top-contents__body__image {
	overflow: hidden;
}

.p-top-contents__body__image.is-contain {
	background-color: #000;
}

.p-top-contents__body__image img {
	aspect-ratio: 16 / 9;
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: all 0.3s ease-in-out;
}

.p-top-contents__body__image.is-contain img {
	object-fit: contain;
}

@media (hover: hover) and (pointer: fine) {
	.p-top-contents__body__list li a:hover img {
		filter: brightness(1.2);
		transform: scale(1.1);
	}
}

.p-top-contents__body__date,
.p-top-contents__body__text {
	font-family: "Lato", "Noto Sans JP", sans-serif;
	font-size: 12px;
}

.p-top-contents__body__text.p-top-contents__store {
	margin-top: 0.5em;
}
