﻿* {
	box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
picture,
footer,
header,
hgroup,
menu,
nav,
section,
main {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	vertical-align: bottom;
}

input,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	border: none;
}

button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	border: none;
	cursor: pointer;
	background: none;
	padding: 0;
}


/* ==============================


base.css


=================================*/
/*====================================
↓GoogleFont読み込み↓
====================================*/
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700,900&display=swap&subset=japanese");

/*====================================
↓全体共通変数定義↓
====================================*/
:root {
	/* フォント関連 */
	--font-color-base: #000;
	--font-family-base: "Noto Sans JP", sans-serif;
	/* 色関連 */
	--back-color-base: #fff;
	/* デザインサイズ（デザインサイズに合わせて以下値を変更） */
	--design-size-pc: 1200;
	--design-size-sp: 390;
}

/*====================================
↓デフォルトCSS↓
====================================*/
html {
	overflow-y: scroll;
	font-size: 1px;
	height: -webkit-fill-available;
}

@media screen and (max-width: 1200px) {

	/* ←max-widthの値は[var(--design-size-pc)]と同一にする*/
	html {
		font-size: calc(1 / var(--design-size-pc) * 100vw);
	}
}

@media screen and (max-width: 768px) {

	/* ←ここはママで良い*/
	html {
		font-size: calc(1 / var(--design-size-sp) * 100vw);
	}
}

body {
	font-size: 16rem;
	font-family: var(--font-family-base);
	color: var(--font-color-base);
	background-color: var(--back-color-base);
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

/* PC
----------------------------------*/
@media screen and (min-width: 769px) {}

a {
	color: var(--font-color-base);
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}

a img {
	transition: opacity 0.3s ease-in-out;
}

a:hover img {
	opacity: 0.7;
}

img.nofade {
	opacity: 1 !important;
}

img {
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: baseline;
}

/*====================================
↓判定用CSS↓
====================================*/
#responseFlagTab {
	display: none !important;
}

@media screen and (min-width: 769px) {
	#responseFlagPc {
		display: block !important;
	}

	#responseFlagSp {
		display: none !important;
	}
}

@media screen and (max-width: 768px) {
	#responseFlagPc {
		display: none !important;
	}

	#responseFlagSp {
		display: block !important;
	}
}

/*====================================
↓表示切り替え用CSS↓
====================================*/
@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}

@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
}



.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	border: 0;
	margin: -1px;
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
	white-space: nowrap;
}


/* ==============================


footer.css


=================================*/
/*===========================================================================
footer
footerで使用するCSS
接頭辞【.l-】

【予測変換用 _base.css記述】
:root {
	--font-color-base: #000;
	--font-family-base: "Noto Sans JP", sans-serif;
	--back-color-base: #fff;
	--design-size-pc: 1400;
	--design-size-sp: 750;
}
===========================================================================*/
.l-globalFooter {
	padding-bottom: 3em;
	background: #fff;
}

.l-globalFooter section {
	max-width: 1380px;
	margin: auto;
	padding: 0 1.5em;
}

/*SNS*/
.l-globalFooter #shareBox {
	margin: 10% auto;
	padding: 1em 1em 3em;
	text-align: center;
	position: relative;
}

.l-globalFooter .shareButtons {
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc(45% - 60px);
	display: flex;
	justify-content: space-between;
	width: 270px;
	height: auto;
	margin: 0 auto;
	padding: 0 0 50px;
	clear: none;
	z-index: 888;
}

.l-globalFooter .mainVisual #shareBox {
	margin-top: 3em;
}

.l-globalFooter .shareButtons>div>a {
	display: block;
	width: 50px;
	height: 50px;
	margin: 0 20px;
	background-size: contain;
	background: no-repeat top center;
}

.l-globalFooter .shareButtons>div.fbBtn a {
	background-image: url("../images/qqqbeatsLP/sns_ico_01_fb.svg");
}

.l-globalFooter .shareButtons>div.tweetBtn a {
	background-image: url("../images/qqqbeatsLP/sns_ico_02_tw.svg");
}

.l-globalFooter .shareButtons>div.lineBtn a {
	background-image: url("../images/qqqbeatsLP/sns_ico_03_line.svg");
}

@media only screen and (max-width: 860px) {
	.l-globalFooter .shareButtons {
		left: calc(40% - 60px);
	}
}

@media only screen and (max-width: 480px) {
	.l-globalFooter #shareBox {
		padding: 1em 1em 8em;
	}

	.l-globalFooter .shareButtons {
		left: calc(30% - 60px);
	}
}


/*corp*/
.l-globalFooter #Corp p:first-child {
	font-size: 0.8em;
	margin: 2em 0;
}

.l-globalFooter #Corp .taito {
	margin-top: 3em;
	max-width: 150px;
}

.l-globalFooter ul.taitoLink {
	margin: 1em 0 0;
	padding: 0 0 2em;
	border-bottom: solid 1px #828282;
}

.l-globalFooter ul.taitoLink li {
	font-size: 1.0em;
	margin-right: 1.0em;
	display: inline-block;
	padding: 0.25em 0.5em;
}

.l-globalFooter ul.taitoLink a {
	color: #758180;
	display: block;
	outline: none !important;
	text-decoration: inherit;
}

.l-globalFooter ul.taitoLink a:hover {
	color: #7ecef4;
}


.l-globalFooter {
	font-size: 1em;
	line-height: 1.6em;
	color: #646e6d;
	font-family: "Noto Sans JP", serif;
	padding-bottom: 3em;
}

.l-globalFooter p:last-child {
	margin-top: 2em;
	font-size: 0.8em;
	text-align: center;
}

@media only screen and (max-width: 480px) {
	.l-globalFooter {
		padding: 10% 0;
	}

	.l-globalFooter ul.taitoLink li {
		font-size: 0.9em;
	}
}

/* ==============================


layout.css


=================================*/
/*===========================================================================
layout
全ページ共通レイアウト用CSS
接頭辞【.l-】

【予測変換用 _base.css記述】
:root {
	--font-color-base: #000;
	--font-family-base: "Noto Sans JP", sans-serif;
	--back-color-base: #fff;
	--design-size-pc: 1400;
	--design-size-sp: 750;
}
===========================================================================*/

/* .wrap関連
------------------------------------*/
.l-wrp {
	overflow: clip;
}

/* PC
-------------------------------------*/
@media screen and (min-width: 769px) {
	.l-wrp {
		min-width: 1000rem;
	}
}

/* .main関連
------------------------------------*/
.l-mai {}


/* コンテンツ幅/固定余白関連
------------------------------------*/
.l-wid {
	margin: 0 auto;
}

.l-idt {
	padding: 0 20rem;
}

/* PC
----------------------------------*/
@media screen and (min-width: 769px) {
	.l-wid {
		max-width: 1200rem;
	}

	.l-idt {
		padding: 0 25rem;
	}
}

/* フレックス関連
------------------------------------*/
.l-grd {
	display: flex;
}

.l-grd-wrp {
	display: flex;
	flex-wrap: wrap;
}

.l-grd-2 {
	width: calc(100% / 2);
}

.l-grd-3 {
	width: calc(100% / 3);
}

.l-grd-4 {
	width: calc(100% / 4);
}

.l-grd-5 {
	width: calc(100% / 5);
}

.l-grd-6 {
	width: calc(100% / 6);
}


/* スライダーdoc
------------------------------------*/
.l-sldDoc {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20rem;
}

.l-sldDoc__inr {
	position: relative;
}

.l-sldDoc .slick-dots {
	display: flex;
	align-items: center;
	justify-content: center;
}

.l-sldDoc .slick-dots li {
	width: auto;
	height: auto;
	margin: 0 1rem;
}

.l-sldDoc .slick-dots button {
	background-color: initial !important;
	border-radius: initial;
	width: auto;
	height: auto;
	display: block;
	position: relative;
	font-size: 0;
	padding: 4rem;
}

.l-sldDoc .slick-dots button::before {
	content: "";
	display: block;
	width: 10rem;
	height: 10rem;
	border-radius: 50%;
	background-color: #fff;
}

.l-sldDoc.--bgc-gray .slick-dots button::before {
	background-color: #C3C3C3;
}

.l-sldDoc .slick-dots .slick-active button::before {
	background-color: #ff5ac8;
}

.l-sldDoc__toggle {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4rem;
	position: relative;
	width: 44rem;
	height: 44rem;
	border-radius: 50%;
	background-color: #ff5ac8;
	margin-right: 5rem;
	margin-left: 15rem;
}

.l-sldDoc__toggle::before,
.l-sldDoc__toggle::after {
	content: "";
	display: block;
	width: 4rem;
	height: 16rem;
	background-color: #fff;
}

.l-sldDoc__toggle::before,
.l-sldDoc__toggle::after {
	content: "";
	display: block;
	width: 4rem;
	height: 16rem;
	background-color: #fff;
}

.l-sldDoc__toggle.--stop::before {
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 8rem solid transparent;
	border-bottom: 8rem solid transparent;
	border-left: 9rem solid #fff;
	border-right: 0;
	background: initial;
}

.l-sldDoc__toggle.--stop::after {
	display: none;
}

/* PC
----------------------------------*/
@media screen and (min-width: 769px) {
	.l-sldDoc {
		margin-top: 40rem;
	}
}



.l-stickyBnr {
	position: sticky;
	bottom: -2px;
	right: 0;
	z-index: 1000;
	transition: opacity .3s ease-in-out;
}

/* PC
----------------------------------*/
@media screen and (min-width: 769px) {
	.l-stickyBnr {
		position: fixed;
		bottom: 30rem;
		right: 30rem;
		max-width: 365rem;
		margin-left: auto;
		opacity: 0;
		pointer-events: none;
	}

	.l-stickyBnr.--is-show {
		opacity: 1;
		pointer-events: auto;
	}

	.l-stickyBnr.--is-hide {
		opacity: 0;
		pointer-events: none;
	}
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
	.l-stickyBnr {
		bottom: 20px;
		right: 20px;
		max-width: 260px;
	}
}

/* ==============================


slick.css


=================================*/


/* Slider */
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	/* touch-action: pan-y; */
	-webkit-tap-highlight-color: transparent;
}

[data-js-sp-slider] {
	touch-action: pan-y;
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.slideOnly .slick-track {
	margin-left: 0;
	margin-right: 0;
}

.slick-track:before,
.slick-track:after {
	display: table;
	content: "";
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}

[dir="rtl"] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-initialized .slick-slide picture {
	background-color: #fff;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

/* SP
----------------------------------*/
@media screen and (max-width: 1200px) {
	.slick-dots {
		margin-top: var(--spacing-64);
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.slick-dots>li {
		width: 8rem;
		height: 8rem;
		margin: 0 2rem;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.slick-dots button {
		font-size: 0 !important;
		background-color: #808080;
		border-radius: 99rem;
		width: 4rem;
		height: 4rem;
		display: block;
	}

	.slick-dots .slick-active button {
		background-color: #333;
	}
}