/* -------------------------------------------------
mixin
---------------------------------------------------- */

/*
 * htmlのfont-size用
 */

/*
 * font-size可変用
 */

/* -------------------------------------------------
variable
---------------------------------------------------- */

/* -------------------------------------------------
anime 
---------------------------------------------------- */

/* グラデーションの動きを定義 */

/* -------------------------------------------------
reset
---------------------------------------------------- */

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

nav ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

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

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	text-decoration: none;
}

/* change colours to suit your needs */

ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}

/* change colours to suit your needs */

mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

del {
	text-decoration: line-through;
}

abbr[title],
dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

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

/* change border colour to suit your needs */

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}

input,
select {
	vertical-align: middle;
}

ul li,
ol li {
	list-style-type: none; /*リストマーカー無しにする*/
}

/* -------------------------------------------------
setting
---------------------------------------------------- */

html {
	font-size: 62.5%; /*デフォルト10px、rem使うときはbodyではなく、htmlに62.5%しないとだめ*/
	line-height: 1.8;
	color: #444444;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	font-display: swap;
	letter-spacing: 0.15em;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	text-spacing-trim: space-first;
	-webkit-tap-highlight-color: transparent; /* リンクがタップされている間の強調をなくす */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-break: strict;
	overflow-wrap: break-word;
	-webkit-text-size-adjust: 100%;
	min-width: 320px;
	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;
	overflow-x: hidden;
}

:target {
	scroll-margin-top: 3rem;
}

::-moz-selection {
	background: #acacac;
}

::selection {
	background: #acacac;
}

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

picture {
	display: block;
}

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

a,
a:hover,
a:visited,
a:active {
	text-decoration: none;
}

::-webkit-scrollbar {
	width: 5px;
}

::-webkit-scrollbar-track {
	background-color: #ccc;
}

::-webkit-scrollbar-thumb {
	background-color: #333;
}

/* -------------------------------------------------
l-header
---------------------------------------------------- */

/* -------------------------------------------------
l-footer
---------------------------------------------------- */

/* -------------------------------------------------
p-utility
---------------------------------------------------- */

.u-roboto {
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}

/* -------------------------------------------------
c-components
---------------------------------------------------- */

.c-circleBg {
	position: absolute;
	z-index: 0;
	display: block;
	width: 10vw;
	height: auto;
	aspect-ratio: 1/1;
	border-radius: 50%;
	-webkit-filter: blur(10rem);
	filter: blur(10rem);
	will-change: filter;
}

.c-circleBg--blue {
	background: rgba(104, 199, 250, 0.4);
}

.c-circleBg--ylw {
	background: rgba(250, 199, 104, 0.4);
}

.c-circleBg--ppl {
	background: rgba(136, 104, 250, 0.4);
}

.c-circleBg--pink {
	background: rgba(250, 115, 221, 0.4);
}

.c-bgCircle {
	position: absolute;
	top: -60px;
	right: 50px;
	width: 250px;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background: rgba(250, 132, 205, 0.4);
	-webkit-filter: blur(10rem);
	filter: blur(10rem);
	z-index: 0;
}

.c-bgCircle--points {
	background: rgba(150, 150, 230, 0.4);
}

.c-bgCircle--color {
	background: rgba(82, 186, 255, 0.4);
	right: initial;
	left: 50px;
}

/* -------------------------------------------------
p-mv
---------------------------------------------------- */

.p-mv {
	position: relative;
	z-index: 1;
}

.p-mv__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.p-mv__bg01 {
	left: 5vw;
	top: 0vw;
	width: 20vw;
}

.p-mv__bg02 {
	left: 6vw;
	top: 41vw;
	width: 13vw;
}

.p-mv__bg03 {
	left: 24vw;
	top: 16vw;
	width: 10vw;
}

.p-mv__bg04 {
	right: 14vw;
	top: 5vw;
	width: 13vw;
}

.p-mv__copy {
	position: absolute;
	top: 6vw;
	left: 10vw;
	z-index: 2;
	width: 28vw;
}

.p-mv__copy span {
	display: block;
	width: 100%;
	padding: 1rem;
	position: relative;
}

.p-mv__copy span::after {
	background: -webkit-gradient(linear, left top, right top, from(#85CDFA), to(#B2C6E5));
	background: linear-gradient(to right, #85CDFA, #B2C6E5);
	display: block;
	content: "";
	width: 110%;
	height: 80%;
	position: absolute;
	top: 0;
	left: -2.5vw;
	z-index: 0;
	-webkit-transform: rotate(-5.8deg);
	transform: rotate(-5.8deg);
	border-radius: 6px;
	background: -webkit-gradient(linear, right top, left top, from(#85CDFA), color-stop(#e5ddb2), color-stop(#FBC2EB), color-stop(#A6C1EE), color-stop(#FFD3A5), color-stop(#ffcad6), color-stop(#A1C4FD), color-stop(#C2E9FB), to(#85CDFA));
	background: linear-gradient(270deg, #85CDFA, #e5ddb2, #FBC2EB, #A6C1EE, #FFD3A5, #ffcad6, #A1C4FD, #C2E9FB, #85CDFA);
	background-size: 1800% 1800%;
	-webkit-animation: pastelGradientSoft 80s ease infinite;
	animation: pastelGradientSoft 80s ease infinite;
}

.p-mv__copy span svg {
	width: 90%;
	z-index: 1;
	position: relative;
}

.p-mv__copy span.p-mv__line--bottom {
	left: 7.5vw;
	margin: -0.7vw 0 0px;
}

.p-mvBox {
	width: 30%;
	position: relative;
	z-index: 1;
}

.p-mvBox__img {
	padding: 0 0 0.5vw 1vw;
	text-align: center;
}

.p-mvBox__img img {
	width: 65%;
}

.p-mvBox__logo {
	padding: 0 0 2vw 2.5vw;
	text-align: center;
}

.p-mvBox__logo svg {
	width: 75%;
}

.p-mvMainImg {
	width: 70%;
	opacity: 0;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
	position: relative;
	z-index: 1;
}

/* -------------------------------------------------
lead
---------------------------------------------------- */

.lead {
	width: 100vw;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: auto;
	min-height: 100vh;
	overflow: visible;
}

.lead__img-box {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 20px;
	z-index: 4;
}

.img_p {
	width: 22vw;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	-webkit-transition: -webkit-transform 0.2s ease-out;
	transition: -webkit-transform 0.2s ease-out;
	transition: transform 0.2s ease-out;
	transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
	position: absolute;
}

.lead__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100vw;
	height: 100vh;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.lead__wrap--inner {
	margin: auto;
	width: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
	z-index: 3;
	padding: 20rem;
}

.lead__wrap--copy {
	position: relative;
}

.lead__wrap--copy::before {
	content: "";
	position: absolute;
	top: -20%;
	right: 0%;
	width: 20vw;
	display: block;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background: rgba(104, 199, 250, 0.4);
	-webkit-filter: blur(10rem);
	filter: blur(10rem);
	z-index: 0;
}

.lead__wrap--copy::after {
	content: "";
	position: absolute;
	bottom: -35%;
	left: 0%;
	width: 12vw;
	display: block;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background: rgba(255, 160, 72, 0.3);
	-webkit-filter: blur(10rem);
	filter: blur(10rem);
	z-index: 0;
}

.lead__ttl {
	font-size: 1.4vw;
	font-weight: bold;
	text-align: center;
	position: relative;
	z-index: 2;
}

.lead__txt {
	text-align: center;
	font-size: 14px;
	margin-top: 2rem;
	position: relative;
	z-index: 2;
}

.lead__link {
	display: block;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	border: 1px solid #999;
	padding: 10px 20px;
	margin: 2rem auto 0;
	color: #444444;
	font-size: 14px;
	-webkit-transition: 0.2s ease;
	transition: 0.2s ease;
}

.lead__link:hover {
	background: #444444;
	border: 1px solid #444444;
	color: #fff;
}

.lead__animTtl {
	position: relative;
	width: 32vw;
	margin: 0.5rem auto 0.2rem;
	z-index: 1;
}

.lead__animTtl::after {
	display: block;
	content: "";
	width: 94.5%;
	height: 80%;
	position: absolute;
	top: 0.4vw;
	left: 1vw;
	z-index: 0;
	border: 1px solid #999;
	background: #fff;
	z-index: 0;
}

.lead__animTtl svg {
	position: relative;
	z-index: 1;
	width: 100%;
}

.lead .img_l_01 {
	width: 22vw;
	top: 12vw;
	left: 9vw;
	z-index: 1;
}

.lead .img_l_02 {
	width: 17vw;
	top: 26vw;
	left: -1vw;
	z-index: 2;
}

.lead .img_l_03 {
	width: 17vw;
	top: 40vw;
	left: 15vw;
	z-index: 1;
}

.lead .img_l_04 {
	width: 23vw;
	top: 53vw;
	left: 6.25vw;
	z-index: 2;
}

.lead .img_r_01 {
	width: 21vw;
	top: 9vw;
	right: 12vw;
	z-index: 1;
}

.lead .img_r_02 {
	width: 17vw;
	top: 20vw;
	right: 10vw;
	z-index: 2;
}

.lead .img_r_03 {
	width: 25vw;
	top: 37vw;
	right: -3vw;
	z-index: 1;
}

.lead .img_r_04 {
	width: 17vw;
	top: 50vw;
	right: 16vw;
	z-index: 2;
}

/* -------------------------------------------------
chara
---------------------------------------------------- */

.chara {
	background: #FCF5F5;
	border-radius: 200px 0px 0 0;
	margin: -20vw 0 0 0;
	padding: 0 0 5vw;
}

.chara__inner {
	padding: 0px 30px;
}

.chara__subTtl {
	font-size: max(180px, 10vw);
	line-height: 1;
	font-family: roboto;
	color: #FFE7E7;
	position: relative;
	top: -1vw;
	text-align: right;
}

.chara__mainTtl {
	font-size: 48px;
	margin-left: auto;
	line-height: 1;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(30%, rgb(255, 255, 255)));
	background: linear-gradient(transparent 60%, rgb(255, 255, 255) 30%);
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	font-family: "ta-oonishi", sans-serif;
	font-weight: 300;
	font-style: normal;
	position: relative;
	z-index: 1;
}

.chara__ttlWrap {
	max-width: 1520px;
	margin: auto;
	position: relative;
	z-index: 1;
}

.chara__lists {
	margin: 20rem auto 15rem;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: repeat(2, 1fr);
	-webkit-column-gap: 45px;
	-moz-column-gap: 45px;
	column-gap: 45px;
	max-width: 1520px;
}

.chara__lists a {
	display: block;
}

.chara__lists a:hover img {
	-webkit-filter: drop-shadow(0px 0px 20px rgb(224, 224, 224));
	filter: drop-shadow(0px 0px 20px rgb(224, 224, 224));
}

.chara__lists a img {
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

/* -------------------------------------------------
points
---------------------------------------------------- */

.points {
	background: #f6f5ff;
	border-radius: 200px 0 0 0;
	padding: 0 0 25vw 0;
}

.points__inner {
	position: relative;
	padding: 0px 30px;
}

.points__ttlWrap {
	max-width: 1520px;
	margin: auto;
	position: relative;
	z-index: 1;
}

.points__mainTtl {
	font-size: 48px;
	margin: 0 0 0 auto;
	text-align: right;
	line-height: 1;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(30%, rgb(255, 255, 255)));
	background: linear-gradient(transparent 60%, rgb(255, 255, 255) 30%);
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	font-family: "ta-oonishi", sans-serif;
	font-weight: 300;
	font-style: normal;
	position: relative;
	z-index: 1;
}

.points__subTtl {
	font-size: max(180px, 10vw);
	line-height: 1;
	font-family: roboto;
	color: #E2DFFF;
	text-align: right;
	position: relative;
	top: -1.4vw;
}

.points__container {
	position: relative;
	margin-inline: auto;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: repeat(2, 1fr);
	-webkit-column-gap: 100px;
	-moz-column-gap: 100px;
	column-gap: 100px;
	max-width: 1520px;
}

.points__content > * + * {
	margin-top: 50vw;
}

.points__text-item {
	-ms-grid-column: 2;
	grid-column: 2;
	height: 100svh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.points__title {
	font-size: 36px;
	line-height: 1.5;
	margin-bottom: 0.5em;
	position: relative;
	z-index: 2;
}

.points__title::before {
	position: absolute;
	top: -0.4em;
	left: -0.25em;
	z-index: -1;
	color: #e4e2ff;
	font-size: 3em;
	line-height: 1;
	font-family: roboto;
	content: attr(data-number);
	pointer-events: none;
}

.points__description {
	font-size: 16px;
}

.points__images {
	display: block;
	position: sticky;
	top: 0;
	height: 100svh;
}

.points__image-item {
	opacity: 0;
	padding-top: 0;
	-ms-grid-column: 1;
	grid-column: 1;
	height: calc(100svh - 0px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 0;
	right: 0;
	width: 90%;
}

.points__image-item img {
	width: 100%;
	height: auto;
	display: block;
}

.points__spTxt {
	display: none;
}

/* -------------------------------------------------
color
---------------------------------------------------- */

.color {
	background: #EBF6FF;
	border-radius: 0 200px 0 0;
	margin: -20vw 0 0 0;
	padding-bottom: 25vw;
}

.color__inner {
	padding: 0px 30px;
}

.color__subTtl {
	font-size: max(180px, 10vw);
	line-height: 1;
	font-family: roboto;
	color: #D7E7FF;
	position: relative;
	top: -1vw;
}

.color__mainTtl {
	font-size: 48px;
	text-align: right;
	line-height: 1;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(30%, rgb(255, 255, 255)));
	background: linear-gradient(transparent 60%, rgb(255, 255, 255) 30%);
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	font-family: "ta-oonishi", sans-serif;
	font-weight: 300;
	font-style: normal;
	position: relative;
}

.color__ttlWrap {
	max-width: 1520px;
	margin: auto;
	position: relative;
}

.color .side-scroll {
	height: 100vh;
	width: 100%;
}

.color .side-scroll-container {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100vh;
	margin-inline: auto;
	overflow: hidden;
	width: 100%;
}

.color .side-scroll-list {
	margin-left: 20%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 5vw;
}

.color .side-scroll-item {
	position: relative;
	width: 42vw;
}

.color .side-scroll-item a {
	display: block;
}

.color .side-scroll-item a:hover img {
	-webkit-filter: drop-shadow(0px 0px 20px rgb(224, 224, 224));
	filter: drop-shadow(0px 0px 20px rgb(224, 224, 224));
}

.color .side-scroll-item a img {
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

/* -------------------------------------------------
slide
---------------------------------------------------- */

.textSlide {
	position: relative;
	height: 500px;
}

.textSlide__bg {
	position: absolute;
	z-index: 3;
	top: calc(50% + 80px);
	left: calc(50% + 100px);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 220px;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background: rgba(140, 132, 250, 0.3);
	-webkit-filter: blur(7rem);
	filter: blur(7rem);
	z-index: 0;
}

.textSlide__bg--blue {
	width: 200px;
	top: calc(50% - 60px);
	left: calc(50% - 100px);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: rgba(132, 183, 250, 0.3);
}

.textSlide__img {
	position: absolute;
	z-index: 3;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0%;
	width: 100%;
	height: 230px;
	background-repeat: repeat-x;
	background-image: url(../img/bg-slide.png);
	background-size: 2300px 230px;
	-webkit-animation: loop 50s linear infinite;
	animation: loop 50s linear infinite;
}

.product {
	text-align: center;
	padding: 0px 20px 30px;
	position: relative;
	overflow: hidden;
}

.product::before {
	content: "";
	z-index: -1;
	position: absolute;
	left: 50%;
	width: 400vw;
	height: auto;
	aspect-ratio: 1;
	background: #F4F1EF;
	border-radius: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	opacity: 1;
	top: 70px;
	border-radius: 50%;
}

.product-content {
	position: relative;
	z-index: 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
	margin: 20px 0 0px;
}

.product-image {
	max-width: 400px;
	position: relative;
	top: -30px;
	width: 100%;
}

.product-category {
	font-size: 14px;
	font-weight: bold;
}

.product-title {
	font-size: 50px;
	font-weight: bold;
	line-height: 1;
	margin: 0px 0 30px;
	font-family: roboto;
}

.product-button {
	background: none;
	border: 1px solid #444;
	padding: 12px 50px;
	font-size: 15px;
	cursor: pointer;
	-webkit-transition: background 0.3s;
	transition: background 0.3s;
	color: #444;
	display: block;
}

.product-button:hover {
	background: #444;
	color: #fff;
}

.footer-banner {
	background: #333;
	color: #fff;
	padding: 20px;
	margin: 0px auto 0;
	border-radius: 5px;
	font-size: 18px;
}

/* -------------------------------------------------
loading
---------------------------------------------------- */

/* ローディング画面 */

#loading {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 9999;
	overflow: hidden;
}

/* 背景のボワ */

.bg {
	position: absolute;
	z-index: 0;
	display: block;
	width: 10vw;
	aspect-ratio: 1/1;
	border-radius: 50%;
	-webkit-filter: blur(10rem);
	filter: blur(10rem);
	will-change: filter;
	background: rgba(104, 199, 250, 0.4); /* 初期状態を設定 */
	opacity: 0;
	-webkit-transform: scale(0);
	transform: scale(0);
}

/* ロゴ全体 */

.logo {
	position: relative;
	z-index: 10;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
}

/* ロゴテキスト（BTE18） */

.logo-text {
	font-size: 4rem;
	font-weight: bold;
	opacity: 0;
	line-height: 1.3;
}

/* サブタイトル */

.logo-sub {
	font-size: 1.6rem;
	font-weight: bold;
	opacity: 0;
}

.js-logo {
	position: relative;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
}

/* ロゴのイヤホン画像 */

.logo-image {
	width: 450px;
	margin: 0rem auto 0rem;
	opacity: 0;
	-webkit-transform: scale(0.8) translate(50);
	transform: scale(0.8) translate(50);
	position: relative;
}

@media (min-width: 768px) {

.is-sp {
	display: none !important;
}

.is-pc {
	display: block !important;
}

}

@media (max-width: 768px) {

.is-pc {
	display: none !important;
}

.is-sp {
	display: block !important;
}

}

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

.c-circleBg {
	-webkit-filter: blur(7rem);
	filter: blur(7rem);
}

.c-bgCircle--points {
	display: none;
}

.c-bgCircle--color {
	display: none;
}

.c-bgCircle--chara {
	display: none;
}

.p-mv {
	overflow: hidden;
	padding-bottom: 10vw;
}

.p-mv__bg01 {
	width: 50vw;
}

.p-mv__bg02 {
	width: 41vw;
	bottom: 40vw;
	top: initial;
	left: initial;
	right: -17vw;
	display: none;
}

.p-mv__bg03 {
	display: none;
}

.p-mv__bg04 {
	display: none;
}

.p-mv__copy {
	top: initial;
	width: 56vw;
	bottom: 3vw;
	left: 6vw;
}

.p-mv__copy span svg {
	width: 100%;
}

.p-mvBox {
	display: none;
}

.p-mvMainImg {
	width: 90%;
	margin: 10vw 0 0 auto;
}

.lead {
	overflow: hidden;
	width: auto;
	min-height: initial;
}

.lead__img-box {
	padding-bottom: 100vw;
}

.lead__img-box--top {
	padding-bottom: 100vw;
}

.lead__wrap {
	width: auto;
	height: auto;
}

.lead__wrap--inner {
	padding: 0;
}

.lead__wrap--copy::before {
	width: 40vw;
}

.lead__wrap--copy::after {
	width: 60vw;
	z-index: -1;
}

.lead__ttl {
	font-size: 5vw;
}

.lead__txt {
	font-size: 3.2vw;
}

.lead__link {
	font-size: 3.2vw;
}

.lead__animTtl {
	width: 80vw;
}

.lead .img_l_01 {
	top: 28vw;
	left: 2vw;
	width: 40vw;
}

.lead .img_l_02 {
	top: -15vw;
	left: 20vw;
	width: 30vw;
}

.lead .img_l_03 {
	top: 30vw;
	left: 65vw;
	width: 35vw;
}

.lead .img_l_04 {
	top: 5vw;
	left: 55vw;
	width: 30vw;
}

.lead .img_r_01 {
	top: 33vw;
	right: 60vw;
	width: 35vw;
}

.lead .img_r_02 {
	top: 7vw;
	right: 20vw;
	width: 30vw;
}

.lead .img_r_03 {
	top: 34vw;
	right: 2vw;
	width: 38vw;
}

.lead .img_r_04 {
	top: 1vw;
	right: 55vw;
	width: 28vw;
}

.chara {
	border-radius: 50px 0 0 0;
}

.chara__subTtl {
	font-size: 19vw;
}

.chara__mainTtl {
	font-size: 6vw;
}

.chara__lists {
	-ms-grid-columns: (1fr)[1];
	grid-template-columns: repeat(1, 1fr);
	gap: 20px;
	margin: 5rem auto 5rem;
}

.points {
	border-radius: 50px 0 0 0;
}

.points__mainTtl {
	font-size: 6vw;
}

.points__subTtl {
	font-size: 19vw;
}

.points__container {
	-ms-grid-columns: (1fr)[1];
	grid-template-columns: repeat(1, 1fr);
	gap: 0;
	margin: 5rem auto 5rem;
}

.points__content {
	display: none;
}

.points__text-item {
	height: auto;
}

.points__title {
	font-size: 18px;
}

.points__description {
	font-size: 14px;
}

.points__images {
	position: relative;
	height: auto;
}

.points__image-item {
	position: relative;
	height: auto;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin: 0 auto 5.5rem;
}

.points__image-item img {
	width: 70%;
}

.points__spTxt {
	display: block;
	margin: 4rem auto 0;
}

.color {
	border-radius: 0 50px 0 0;
}

.color__inner {
	padding: 0px 0px;
}

.color__subTtl {
	font-size: 19vw;
}

.color__mainTtl {
	font-size: 6vw;
	margin-left: 30px;
}

.color .side-scroll-list {
	margin-left: 20px;
}

.color .side-scroll-item {
	width: 80vw;
}

.textSlide {
	height: 300px;
	overflow: hidden;
}

.textSlide__bg {
	width: 130px;
	top: calc(50% + 50px);
	left: calc(50% + 50px);
	-webkit-filter: blur(3rem);
	filter: blur(3rem);
}

.textSlide__bg--blue {
	width: 100px;
	top: calc(50% - 40px);
	left: calc(50% - 30px);
	-webkit-filter: blur(3rem);
	filter: blur(3rem);
}

.textSlide__img {
	height: 160px;
	background-image: url(../img/bg-slide_sp.png);
	background-size: 1700px 160px;
	-webkit-animation: loopSp 50s linear infinite;
	animation: loopSp 50s linear infinite;
}

.product-content {
	gap: 0px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-bottom: 5rem;
}

.product-image {
	width: 80%;
	left: 20px;
}

.product-title {
	margin: 0 auto 20px;
	font-size: 48px;
}

.product-button {
	font-size: 14px;
	padding: 8px 50px;
}

.footer-banner {
	padding: 15px;
	font-size: 14px;
}

.logo-image {
	width: 70%;
}

}

@-webkit-keyframes pastelGradientSoft {

0% {
	background-position: 0% 50%;
}

50% {
	background-position: 100% 50%;
}

100% {
	background-position: 0% 50%;
}

}

@keyframes pastelGradientSoft {

0% {
	background-position: 0% 50%;
}

50% {
	background-position: 100% 50%;
}

100% {
	background-position: 0% 50%;
}

}

@-webkit-keyframes loop {

from {
	background-position: 0 0;
}

to {
	background-position: -2300px 0; /* 画像のマイナス幅 */
}

}

@keyframes loop {

from {
	background-position: 0 0;
}

to {
	background-position: -2300px 0; /* 画像のマイナス幅 */
}

}

@-webkit-keyframes loopSp {

from {
	background-position: 0 0;
}

to {
	background-position: -1700px 0; /* 画像のマイナス幅 */
}

}

@keyframes loopSp {

from {
	background-position: 0 0;
}

to {
	background-position: -1700px 0; /* 画像のマイナス幅 */
}

}

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