@charset "UTF-8";
/* CSS Document */

/* font */
.mincho {
	font-family: zen-old-mincho, sans-serif;
	font-weight: 400;
	font-style: normal;
}
.iowan {
	font-family: iowan-old-style-bt, sans-serif;
	font-weight: 400;
	font-style: normal;
}

/* base */
html {
	scroll-behavior:smooth;
	-webkit-overflow-scrolling: touch;
}
body, #Celestial {
	font-family: zen-kaku-gothic-antique, sans-serif;
	font-weight: 300;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 16px;
	line-height: 1.7;
	margin: 0;
	padding: 0;
	color: #5D6594;
	border-bottom: none;
	text-align: center;
	letter-spacing: 0.08em;
	overflow-x: hidden;
}
h1, h2, h3, h4 {
	font-weight: normal;
	-webkit-margin-before: 0;
    -webkit-margin-after: 0;
}
#Celestial img, #Celestial video {
	width: 100%;
	max-width: 100%;
	height: auto;
}
a {
	text-decoration: none;
	color: #000;
	-webkit-transition: 1s ease;
    -moz-transition: 1s ease;
    -ms-transition: 1s ease;
    -o-transition: 1s ease;
    transition: 1s ease;
}
a:hover {
	opacity: .7;
}
#Celestial a, #Celestial img, #Celestial div, #Celestial p, #Celestial ul, #Celestial li, #Celestial video {
    list-style: none;
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    -webkit-padding-start: 0;
    vertical-align: top;
    outline: none;
    border: none;
	box-sizing: border-box;
	-webkit-appearance:none;
}
/* text */
.title-main:last-of-type {
    margin-bottom: 1em;
}
.title-sub {
    margin-bottom: 3em;
}
.txt-left {
	text-align: justify;
}
.txt-center {
    text-align: center;
}
.txt-right {
	text-align: right;
}
.size10 {font-size: 10px;}
.size12 {font-size: 12px;}
.size14 {font-size: 14px;}
.size18 {font-size: 18px;}
.size21 {font-size: 21px;}
.size24 {font-size: 24px;}
.size32 {font-size: 32px;}
.size36 {font-size: 36px;}
.size40 {font-size: 40px;}
.size48 {font-size: 48px;}
.size60 {font-size: 60px;}
.size72 {font-size: 72px;}
.almoni {font-family: 'almoni_dl_aaalight'; letter-spacing: 0;}
.didot {font-family: 'didotbold';}
.mincho {font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;}
@media(min-width: 768px) {
	.sp-item {
		display: none;
	}
	.pc-item {
		display: block;
	}
}
@media(max-width: 767px) {
	.pc-item {
		display: none;
	}
	.sp-item {
		display: block;
	}
#Celestial, .size16 {font-size: 3.2vw;}
.size10 {font-size: 2.6vw;}
.size12 {font-size: 2.8vw;}
.size14 {font-size: 3.0vw;}
.size18 {font-size: 3.4vw;}
.size21 {font-size: 3.6vw;}
.size24 {font-size: 3.8vw;}
.size32 {font-size: 4vw;}
.size36 {font-size: 6vw;}
.size40 {font-size: 5vw;}
.size48 {font-size: 6vw;}
.size60 {font-size: 7vw;}
.size72 {font-size: 8vw;}
}

/* rule */
section {
	box-sizing: border-box;
	overflow-x: clip;
}
.grid-box {
	display: grid;
    display: -webkit-grid;
		align-items: center;
    -webkit-align-items: center;
}
.full-box {
	width: 100%;
    height: 100vh;
}
.flex-box {
	display: flex;
	display: -webkit-flex;
    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}
.rel-box { position: relative; }
.abs-box { position: absolute; }
.box-1200 { width: 1200px; max-width: 90%; margin: auto!important; }
.box-750 { width: 750px; max-width: 90%; margin: auto!important; }
.box-360 { width: 360px; max-width: 90%; margin: auto!important; }
.fix-img {
	width: 100%;
	height: 100%;
}
.fix-img img {
	height: 100%!important;
	object-fit: cover;
}

/* color */
.txt-white { color: #fff; }
.bg-rightgray { background-color: #FAFAFA; }
.bg-lightpurple { background: #F5EEF4; }
.bg-grad {
	background: #A87BF4;
	background: linear-gradient(45deg,rgba(168, 123, 244, 1) 0%, rgba(241, 240, 250, 1) 100%);
}
.bg-purple {background-color: #5D6594;}
.bg-lavender{background-color: #B696EC;}

/* anime */
.anime {
	-webkit-transition: 1s ease;
	-moz-transition: 1s ease;
	-o-transition: 1s ease;
	-ms-transition: 1s ease;
	transition: 1s ease;
	opacity: 0;
	filter: blur(50px);
}
.anime-2nd {
	-webkit-transition-delay: .5s;
	-moz-transition-delay: .5s;
	-o-transition-delay: .5s;
	-ms-transition-delay: .5s;
	transition-delay: .5s;
}
.anime-3rd {
	-webkit-transition-delay: 1s;
	-moz-transition-delay: 1s;
	-o-transition-delay: 1s;
	-ms-transition-delay: 1s;
	transition-delay: 1s;
}
.up {transform: translateY(30px);}

.active {opacity: 1; filter: blur(0); transform: translate(0);}

/* sections */
.video-box video {
    object-fit: cover;
    height: 100vh !important;
}
#back {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}
#movie .abs-box {
    mix-blend-mode: difference;
}
#concept .pc-item p {
    margin-bottom: 1em;
}
#pickupitem .box-1200 {
    border: solid 1px #5D6594;
    border-radius: 30px;
    height: 90%;
	display: flex;
	display: -webkit-flex;
    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}
#pickupitem .bg-grad {
    border-radius: 200px;
}
h2.iowan {
    margin-bottom: 1em;
}

.bg-grad h3 {
    margin-bottom: 1em;
}
.abs-box.frame1 {
    left: -1px;
    top: -1px;
    transform: rotate(180deg);
    width: 100px;
}
.abs-box.frame2 {
    right: -1px;
    top: -1px;
    transform: rotate(-90deg);
    width: 100px;
}
.abs-box.frame3 {
    left: -1px;
    bottom: -1px;
    transform: rotate(90deg);
    width: 100px;
}
.abs-box.frame4 {
    right: -1px;
    bottom: -1px;
    width: 100px;
}
.triangle .abs-box {
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}
#fragrance .grid-box {
	margin-top: 5em;
}
#lineup {
    padding: 5em 0;
}
.cloud1 {
    left: 0;
    right: 0;
    top: -1px;
}
.cloud2 {
    left: 0;
    right: 0;
    bottom: -1px;
	transform: rotate(180deg)
}
.mooon {
    width: 200px;
    margin: auto !important;
}
.item-text .mincho {
    margin: 1em 0 !important;
}
.shine {
	width: 100%;
	padding: 3em 0;
}
.buy-btn {
    line-height: 2.4em;
    display: inline-block;
    min-width: 200px;
    text-align: center;
    border-radius: 1.2em;
    margin-top: 2em!important;
	padding: 0 20px !important;
}
.slick-dots li {
	margin: 15px 5px 0!important;
}
.new {
    display: inline-block;
    padding: 0 10px !important;
    border-radius: 5px;
}
#gift {padding-bottom: 5em;}
@media only screen and (min-width: 768px) {
.video-box {
    width: 33.3%;
}
	#concept .abs-box {
    left: 10%;
    right: 65%;
    text-align: left;
}
	#pickupitem .box-1200 {
    padding: 0 200px;
}
	#pickupitem .bg-grad {
    padding: 10% 150px;
}
	.abs-box.item-on {
		left: -100px;
        width: 200px;
        transform: translateY(-50%);
        top: 50%;
}
	.abs-box.item-under {
    right: -100px;
    width: 200px;
    transform: translateY(-50%);
        top: 50%;
}
	#fragrance .grid-box {
		grid-template-columns: 360px 1fr;
    -webkit-grid-columns: 360px 1fr;
    gap: 50px;
	}
	#lineup .item-image {
    width: 30%;
    margin-right: 5%;
}
	#lineup .item-image.right-box {
    margin-left: 5%;
}
	
#lineup .item-text {
    width: 45%;
	text-align: left;
}
}
@media only screen and (max-width: 767px) {
	#concept .abs-box {
    bottom: 5%;
}
	#fragrance .grid-box {
    margin-top: 2em;
}
	#fragrance .triangle {
    margin-bottom: 2em;
}
	#lineup .box-1200 {
    max-width: 100%;
}
	.item-box > li {
    width: 80%;
}
	.bg-grad {
    width: 80%;
    margin: 100px auto 80px !important;
    padding: 100px 8% !important;
}
	.item-on {
    left: 0;
    right: 0;
    width: 160px;
    top: -80px;
    margin: auto !important;
}
	.item-under {
    left: 0;
    right: 0;
    width: 160px;
    bottom: -80px;
    margin: auto !important;
}
	li.item-image img {
    margin-bottom: 1em !important;
}
}

#footer {
	background: #fff;
    max-width: 100vw;
    margin: 0;
    padding-top: 80px;
	padding-bottom: 1px;
}
@media(min-width: 1401px) {
	#footer {
    padding-left: calc(50% - 700px);
	padding-right: calc(50% - 700px);
}
}
@media only screen and (max-width: 767px) {
    #main {
        padding-left: 0!important;
        padding-right: 0!important;
    }
}
@media screen and (max-width: 767px) {
    .header-banner, .top-banner.nav_fix {
    display: none!important;
}
	.top-banner.nav_fix.fix {
    display: block!important;
}
}

/*add*/
#wrapper {background: none;}
#main {
    padding: 0;
}
@media only screen and (max-width: 767px) {
    #wrapper {
        padding-top: 0!important;
    }
}