/* リキッドレイアウト対応 */

body {
	font-family: "Noto Sans JP", sans-serif;
}

.u-mobile {
	display: none;
}

html {
	font-size: 16px;
}

/* pcの電話番号発信対応 */

/* ホバー */

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

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	line-height: 1;
	min-height: 100vh;
	text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	display: block;
	max-width: 100%;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

picture {
	display: block;
}

button {
	display: block;
	padding: 0;
	width: 100%;
}

.c-btn {
	background-color: black;
	color: yellow;
	padding: 0.625rem 2.5rem;
}

.c-card {
	border: 0.125rem solid #fff;
	border-radius: 0.4375rem;
	display: block;
	overflow: hidden;
	position: relative;
}

.c-card::before {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 29%, black 100%);
	content: "";
	height: 100%;
	left: 0;
	opacity: 0.5;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

.c-card__thumbnail {
	aspect-ratio: 1;
	display: block;
}

.c-card__thumbnail img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s;
	width: 100%;
}

.c-card__title {
	bottom: 0.75rem;
	color: #fff;
	font-size: 0.8125rem;
	line-height: 1.4615384615;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	position: absolute;
	z-index: 2;
}

.c-list {
	grid-gap: 1rem;
	align-items: flex-start;
	display: grid;
	gap: 1rem;
	grid-template-columns: 5.625rem 1fr;
}

.c-list__logo {
	border-radius: 0.25rem;
	overflow: hidden;
}

.c-list__logo img {
	-o-object-fit: contain;
	aspect-ratio: 1;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.c-list__title {
	color: #333333;
	font-size: 1rem;
	font-weight: bold;
	line-height: 1.4375;
}

.c-list__description {
	color: #333333;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.4285714286;
	margin-top: 0.5rem;
}

.c-list__link {
	align-items: center;
	background-color: #fff;
	border-radius: 0.25rem;
	color: #FD5D1F;
	display: flex;
	font-weight: bold;
	height: 2.25rem;
	justify-content: center;
	margin-top: 0.75rem;
	position: relative;
	transition: all 0.45s ease;
	width: 100%;
}

.c-list__link::before {
	-webkit-mask: url(../images/arrow2.svg) center center/contain no-repeat;
	background-color: #FD5D1F;
	content: "";
	height: 1.375rem;
	mask: url(../images/arrow2.svg) center center/contain no-repeat;
	position: absolute;
	right: 0.5rem;
	top: 50%;
	transform: translateY(-50%) rotate(180deg);
	width: 1.375rem;
}

.l-inner {
	height: inherit;
	margin: 0 auto;
	max-width: 1050px;
	padding-left: 25px;
	padding-right: 25px;
	width: 100%;
}

.p-about {
	background-color: #FEF4EB;
	/* color: #fff; */
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.p-about__logo {
	/* filter: brightness(0) invert(1); */
	margin-left: auto;
	margin-right: auto;
	max-width: 14.3125rem;
}

.p-about__title {
	font-size: 1.25rem;
	font-weight: bold;
	line-height: 1.45;
	margin-top: 2.5rem;
	text-align: center;
}

.p-about__text {
	font-size: 0.9375rem;
	font-weight: bold;
	line-height: 1.8;
	margin-top: 1.25rem;
	text-align: center;
}

.p-about__btns {
	align-items: center;
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	margin-top: 2.5rem;
}

.p-about__btn.app-store {
	width: 10rem;
}

.p-about__btn.google-play {
	width: 12rem;
}

.p-about__btn a {
	display: block;
}

.p-about__website {
	margin-top: 2.5rem;
	text-align: center;
}

.p-about__website a {
	background-color: #FD5D1F;
	border-radius: 2.8125rem;
	color: #FEF4EB;
	display: inline-block;
	font-size: 1.125rem;
	font-weight: bold;
	line-height: 1.4444444444;
	padding: 1rem 2.25rem;
}

.p-category {
	background: #FEF4EB url(../images/bg_category.webp) center center/cover no-repeat;
	color: #333333;
	padding-bottom: 2.5rem;
	padding-top: 2rem;
}

.p-category__head {
	margin-left: auto;
	margin-right: auto;
	margin-top: 1rem;
	max-width: 23.125rem;
}

.p-category__head .c-card__title {
	font-size: 1.25rem;
}

.p-category__lead {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.7;
	margin-top: 3.25rem;
}

.p-category__back a {
	align-items: center;
	background-color: #fff;
	border-radius: 0.25rem;
	color: #00202F;
	display: inline-flex;
	font-size: 0.875rem;
	font-weight: bold;
	gap: 0.5rem;
	padding: 0.5rem 0.625rem;
	transition: all 0.45s ease;
}

.p-category__back a::before {
	background: url(../images/arrow2.svg) center center/contain no-repeat;
	content: "";
	display: block;
	height: 1rem;
	width: 1rem;
}

.p-footer {
	background-color: #fff;
	padding-bottom: 2.5rem;
	padding-top: 2.5rem;
}

.p-footer__copy {
	color: #787878;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 2.25;
	text-align: center;
}

.p-header {
	background-color: #fff;
	height: 4.375rem;
	width: 100%;
}

.p-header__inner {
	align-items: center;
	display: flex;
	max-width: none;
	max-width: initial;
	padding-left: 2.1875rem;
	padding-right: 2.1875rem;
}

.p-header__logo {
	width: 11.25rem;
}

summary::marker {
	content: "";
}

summary::-webkit-details-marker {
	display: none;
}

.p-intro{
	color: #fff;
}

.p-intro__text{
	color: #333333;
}

.p-intro__block {
	border: 0.125rem solid #fff;
	border-radius: 0.5rem;
	overflow: hidden;
}

.p-intro__title {
	background-color: #FD5D1F;
	cursor: pointer;
	font-size: 1.125rem;
	font-weight: bold;
	line-height: 1.4444444444;
	padding: 1.125rem 3.25rem;
	position: relative;
}

.p-intro__title::before {
	background: url(../images/arrow.svg) center center/contain no-repeat;
	content: "";
	height: 1.5rem;
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%) rotate(180deg);
	transition: all 0.45s;
	width: 1.5rem;
}

.p-intro__block.is-opened .p-intro__title::before {
	transform: translateY(-50%) rotate(0deg);
}

.p-intro__icon {
	background: url(../images/icon_playlist.svg) center center/contain no-repeat;
	height: 1.5rem;
	left: 1rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1.5rem;
}

.p-intro__content {
	background-color: #FEF4EB;
}

.p-intro__main {
	padding: 1rem;
}

.p-intro__text {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.7;
}

.p-lists {
	background-color: #FEF4EB;
	padding-bottom: 2.25rem;
	padding-top: 2.25rem;
}

.p-lists__blocks {
	grid-gap: 2rem 0;
	display: grid;
	gap: 2rem 0;
	grid-template-columns: repeat(2, 1fr);
}

.p-lists__block {
	padding-top: 1.75rem;
}

.p-lists__block:nth-child(odd) {
	padding-right: 1rem;
}

.p-lists__block:nth-child(even) {
	padding-left: 1rem;
}

.p-lists__block:nth-child(n+3) {
	border-top: 1px solid #fff;
}

.p-lists__button button {
	align-items: center;
	color: #fff;
	display: flex;
	font-size: 0.875rem;
	gap: 0.5rem;
	height: 2.25rem;
	justify-content: center;
	margin-top: 2rem;
	text-align: center;
	transition: all 0.45s ease;
}

.p-lists__button button::after {
	background: url(../images/arrow.svg) center center/contain no-repeat;
	content: "";
	display: block;
	height: 1rem;
	transform: rotate(180deg);
	width: 1rem;
}

.p-lists__empty {
	color: #fff;
	font-size: 1rem;
	grid-column: span 2;
	margin-bottom: 3.125rem;
	margin-top: 3.125rem;
	text-align: center;
}

/* .p-mv {
	background: black url(../images/bg_mv.webp) center top/cover no-repeat;
	padding-bottom: 3.9375rem;
	padding-top: 6.1875rem;
	position: relative;
} */

/* .p-mv::before {
	background: linear-gradient(to bottom, transparent 59%, rgba(17, 17, 17, 0.9) 100%);
	bottom: 0;
	content: "";
	height: 100%;
	left: 0;
	margin: auto;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
} */

.p-mv__img {
	margin-left: auto;
	margin-right: auto;
	/* max-width: 35.75rem; */
	position: relative;
	z-index: 1;
}

.p-mv__title {
	display: none;
}

.p-other {
	background: #FEF4EB url(../images/bg_other.webp) center center/cover no-repeat;
	border-bottom: 0.25rem solid #FEC79E;
	border-top: 0.25rem solid #FEC79E;
	padding-bottom: 2rem;
	padding-top: 2rem;
}

.p-other__cards {
	grid-gap: 0.5rem;
	display: grid;
	gap: 0.5rem;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 1rem;
}

.p-other__card .c-card__title {
	font-size: 1rem;
}

.p-other__button button {
	align-items: center;
	color: #fff;
	display: flex;
	font-size: 0.875rem;
	gap: 0.5rem;
	height: 2.25rem;
	justify-content: center;
	margin-top: 2rem;
	text-align: center;
	transition: all 0.45s ease;
}

.p-other__button button::after {
	background: url(../images/arrow.svg) center center/contain no-repeat;
	content: "";
	display: block;
	height: 1rem;
	transform: rotate(180deg);
	width: 1rem;
}

.p-pickup {
	margin-top: 2rem;
}

.p-pickup__cards {
	grid-gap: 0.5rem;
	display: grid;
	gap: 0.5rem;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 1rem;
}

.p-pickup__card .c-card__title {
	font-size: 1rem;
}

.p-rank {
	background: #FEF4EB url(../images/bg_rank.webp) center center/cover no-repeat;
	border-bottom: 0.25rem solid #FEC79E;
	border-top: 0.25rem solid #FEC79E;
	padding-bottom: 2rem;
	padding-top: 2rem;
}

.p-rank__cards {
	grid-gap: 0.75rem;
	counter-reset: number 0;
	display: grid;
	gap: 0.75rem;
	grid-template-columns: repeat(5, 1fr);
	margin-top: 1rem;
}

.p-rank__card {
	padding-left: 2.5rem;
	position: relative;
}

.p-rank__card::before {
	/* color: #fff; */
	content: counter(number) ".";
	counter-increment: number 1;
	font-size: 1.5rem;
	font-weight: bold;
	left: 0;
	line-height: 1.4583333333;
	position: absolute;
	text-align: center;
	top: 0;
	width: 2.3125rem;
}

.p-slider {
	padding-top: 2rem;
}

.c-title {
	/* color: #fff; */
	font-size: 1.25rem;
	font-weight: bold;
	line-height: 1.45;
	padding-left: 0.75rem;
	position: relative;
}

.c-title::before {
	background-color: #FEC79E;
	content: "";
	height: 1.5rem;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 0.25rem;
}

.p-slider__main {
	margin-top: 1rem;
}

.p-slider:nth-of-type(2) {
	background: url(../images/bg_pickup.webp) center center/cover no-repeat;
	background-color: #FEF4EB;
	margin-top: 2rem;
	padding-bottom: 2rem;
}

.p-main {
	padding-bottom: 2rem;
}

.p-top {
	background: #FEF4EB url(../images/bg_top.webp) center top/100% auto no-repeat;
	padding-top: 2rem;
}

@media (hover: hover) {

a.c-card:hover .c-card__thumbnail img {
	transform: scale(1.05);
}

.c-list__link:hover {
	opacity: 0.8;
}

.p-about__btn a:hover {
	opacity: 0.8;
}

.p-about__website a:hover {
	opacity: 0.8;
}

.p-category__back a:hover {
	opacity: 0.8;
}

.p-lists__button button:hover {
	opacity: 0.8;
}

.p-other__button button:hover {
	opacity: 0.8;
}

}

@media (max-width: 1200px) {

html {
	font-size: 1.3333333333vw;
}

}

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

.u-desktop {
	display: none;
}

.u-mobile {
	display: block;
}

html {
	font-size: 16px;
}

a[href^="tel:"] {
	pointer-events: none;
}

.c-list {
	gap: 0.75rem;
	grid-template-columns: 5rem 1fr;
}

.c-list__title {
	font-size: 0.875rem;
}

.c-list__description {
	font-size: 0.75rem;
	margin-top: 0.25rem;
}

.c-list__link {
	height: 1.875rem;
}

.c-list__link::before {
	height: 1.1875rem;
	width: 1.1875rem;
}

.l-inner {
	max-width: 33.75rem;
	padding-left: 16px;
	padding-right: 16px;
}

.p-about__text {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.9285714286;
}

.p-about__btns {
	gap: 1.1875rem;
}

.p-about__btn.app-store {
	width: 7.8125rem;
}

.p-about__btn.google-play {
	width: 9.5rem;
}

.p-about__website a {
	padding: 1rem 3.375rem;
}

.p-category {
	background-image: url(../images/bg_category_sp.webp);
	padding-bottom: 2.75rem;
	padding-top: 1.5rem;
}

.p-category__head {
	margin-top: 1.5rem;
	max-width: 15rem;
}

.p-category__lead {
	margin-top: 2.5rem;
}

.p-footer {
	padding-bottom: 1.25rem;
	padding-top: 1.25rem;
}

.p-header {
	height: 3.25rem;
}

.p-header__inner {
	justify-content: center;
}

.p-header__logo {
	width: 7.9375rem;
}

.p-lists__blocks {
	gap: 1rem 0;
	grid-template-columns: 1fr;
}

.p-lists__block {
	padding-top: 1rem;
}

.p-lists__block:nth-child(odd) {
	padding-right: 0;
}

.p-lists__block:nth-child(even) {
	padding-left: 0;
}

.p-lists__block:nth-child(n+2) {
	border-top: 1px solid #fff;
}

.p-lists__empty {
	grid-column: span 1;
}

.p-mv {
	background: none;
	padding: 0;
}

.p-mv__inner {
	padding-left: 0;
	padding-right: 0;
}

.p-other {
	background-image: url(../images/bg_other_sp.webp);
}

.p-other__cards {
	grid-template-columns: repeat(3, 1fr);
}

.p-other__card .c-card__title {
	font-size: 0.8125rem;
}

.p-pickup__cards {
	grid-template-columns: repeat(2, 1fr);
}

.p-pickup__card .c-card__title {
	font-size: 0.8125rem;
}

.p-rank__cards {
	gap: 1rem 0.75rem;
	grid-template-columns: repeat(2, 1fr);
}

.p-rank__card {
	padding-left: 1.875rem;
}

.p-rank__card::before {
	font-size: 1.125rem;
	top: 50%;
	transform: translateY(-50%);
	width: 1.75rem;
}

.p-slider:nth-of-type(2) {
	background-image: url(../images/bg_pickup_sp.webp);
}

.p-top {
	background-image: url(../images/bg_top_sp.webp);
}

}

@media (max-width: 375) {

html {
	font-size: 4.2666666667vw;
}

}


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