@charset "UTF-8";
:root {
  --color-gradient-multiple: linear-gradient(45deg, rgba(250, 248, 202, 1) 6%, rgba(252, 232, 215, 1) 32%, rgba(222, 241, 251, 1) 60%, rgba(252, 236, 240, 1) 94%);
}
/*--------------------------
Global
---------------------------*/
a[comingsoon],
[href="javascript:void(0)"] {
  pointer-events: none;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  -webkit-text-size-adjust: 100%;
}
main {
  font-size: 1.2rem;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "Yu Gothic Medium", "YuGothic M", "游ゴシック体", YuGothic, "Hiragino Maru Gothic W4 JIS2004", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.45;
}
main [id] {
  scroll-margin-top: 80px;
}
main [data-animated="false"] {
  opacity: 0;
}
main [data-animated="true"] {
  animation: scrollFadeInAnimation 1s cubic-bezier(0.31, 0.2, 0.13, 1) forwards;
}
@keyframes scrollFadeInAnimation {
  0% {
    opacity: 0;
    transform: translate(0, 4rem);
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@media (hover: hover) {
  button,
  a {
    transition: opacity 0.3s;
  }
  button:hover,
  a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 1100px) {
  html {
    font-size: 0.909090909090909vw;
  }
}
@media (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none;
  }
  html {
    font-size: 1.333333333333333vw;
  }
  main {
    font-size: 2.2rem;
  }
  main [id] {
    scroll-margin-top: 60px;
  }
}

/*--------------------------
Header
---------------------------*/
.site-header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  width: 100%;
  background: #fff;
  border-bottom: 3px solid #e85298;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}
.site-header .global-navi {
  width: 100%;
  height: 100vh;
  padding: 0 2rem;
  background-image: url(../images/common/navi-bg.webp);
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  overflow-y: scroll;
  opacity: 0;
  transform: translateY(-100%);
  transform-origin: center top;
  transition: transform 0s 0.7s, opacity 0.7s;
}
.site-header .global-navi.is-activated {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.5s, opacity 0.7s;
}
.site-header .global-navi::-webkit-scrollbar {
  width: 0;
}
.site-header .container {
  max-width: 124rem;
  margin: 10rem auto;
  background-color: #fff;
  padding-block-end: 100px;
  position: relative;
  /*padding: 42rem 3rem 10rem;
  background: url(../images/common/nav-logo.svg) #fff no-repeat center 5.6rem/ 26.6rem auto;*/
}
.site-header .container:before{
    content: "";
    width: 160px;
    position: absolute;
    top: 15px;
    left: 15px;
    background-size: cover;
    background-image: url(../images/common/logo2.svg);
    aspect-ratio: 180  / 66;
}
.site-header .inner {
  max-width: 98rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, auto);
  display: flex;
  flex-direction: column;
}
.site-header .global-navi ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto 6rem;
  padding: 0 0 6rem;
  gap: 2.8rem;
  grid-column: span 2;
  background: radial-gradient(circle at center, #CCCCCC, #CCCCCC 30%, transparent 30%, transparent 100%) repeat-x left bottom/1rem 1rem;
}
.site-header .global-navi ul li {
  flex: 0 0 28rem;
}
.site-header .global-navi .logo{
    max-width: 386px;
    width: 90%;
    margin: 100px auto 70px auto;
}


.site-header .menu {
  width: 4rem;
  height: 3.2rem;
  position: relative;
  opacity: 1 !important;
  z-index: 2;
  transition: transform 0.2s;
  border: none;
  background: none;
}
.site-header .menu span {
  width: 4rem;
  height: 0.4rem;
  margin: auto;
  background: #e85298;
  position: absolute;
  inset: 0;
  transition: all 0.2s;
}
.site-header .menu span:before,
.site-header .menu span:after {
  content: "";
  width: inherit;
  height: inherit;
  margin-inline: auto;
  background: #e85298;
  position: absolute;
  left: 0;
  transform-origin: center center;
  transition: all 0.3s;
}
.site-header .menu span:before {
  top: -1.2rem;
}
.site-header .menu span:after {
  bottom: -1.2rem;
}
.site-header .menu.is-activated {
  transition: transform 0.5s;
}
.site-header .menu.is-activated span {
  background: none;
}
.site-header .menu.is-activated span:before {
  transform: rotate(45deg);
  top: 0;
}
.site-header .menu.is-activated span:after {
  transform: rotate(-45deg);
  bottom: 0;
}
@media (max-width: 767px) {
  .site-header {
    height: 60px;
    background: #fff !important;
    top: 0;
    border-bottom: 2px solid #e63b64;
    padding-inline: 16px 0px;
  }
  .site-header h1 {
    width: 155px;
  }
  .site-header .global-navi {
    padding: 0;
  }
  .site-header .global-navi {
    width: 100%;
    height: 100vh;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    overflow-y: scroll;
    opacity: 0;
    transform: translateY(-100%);
    transform-origin: center top;
    transition: transform 0s 0.7s, opacity 0.7s;
  }
  .site-header .global-navi.is-activated {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.5s, opacity 0.7s;
  }
  .site-header .global-navi::-webkit-scrollbar {
    width: 0;
  }
  .site-header .container {
    min-height: 100vh;
    margin: 0;
    padding: 1px 0 60px 0;
  }
  .site-header .container:before {
        width: 110px;
        top: 15px;
        left: 15px;
    }
  .site-header .inner {
    display: block;
    margin: 0;
  }
  .site-header .global-navi .logo {
        max-width: 240px;
        width: 90%;
        margin: 90px auto 30px auto;
    }
  .site-header .global-navi ul {
    flex-wrap: wrap;
    justify-content: center;
    width: 90%;
    padding: 0 0 8rem;
    margin: 0 auto 8rem;
  }
  .site-header .global-navi ul li {
    flex: 0 0 47%;
  }
  .site-header .global-navi dl{
    width: 90%;
  }
   .site-header .global-navi ul.-nav{
    width: 100%;
   }
  .site-header .global-navi figure + figure {
    margin-top: 4.8rem;
  }
  .site-header .menu {
    height: 100%;
    width: 60px;
  }
  .site-header .menu span {
    width: 24px;
    height: 3px;
    background: #e63b64;
  }
  .site-header .menu span:before,
  .site-header .menu span:after {
    background: #e63b64;
  }
  .site-header .menu span:before {
    top: -9px;
  }
  .site-header .menu span:after {
    bottom: -9px;
  }
}
/*--------------------------
Footer
---------------------------*/
#l-footer {
  margin-top: 100px;
  font-size: 14px;
}

aside.bgmv {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
}
aside.bgmv video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: none;
  pointer-events: none;
}
@media (max-width: 767px) {
  #l-footer {
    margin-top: 50px;
  }
}
/*--------------------------
Mainvisual
---------------------------*/
#mainvisual {
  display: grid;
  place-items: center;
  background: var(--color-gradient-multiple);
  padding: 13rem 3rem 8rem;
}
#mainvisual p {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  #mainvisual {
    padding-top: 22rem;
  }
  #mainvisual p {
    width: 51rem;
  }
}
/*--------------------------
Topics
---------------------------*/
#topics {
  padding: 10rem 0 0;
  text-align: center;
}
#topics h2 {
  width: 13.3rem;
  margin: auto;
}
#topics ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.8rem;
  max-width: 98rem;
  margin: 4.5rem auto 8rem;
}
#topics li {
  flex: 0 0 47.5rem;
}
#topics > picture {
  display: block;
  padding: 10rem 3rem;
  background: var(--color-gradient-multiple);
}
@media (max-width: 767px) {
  #topics h2 {
    width: 17.4rem;
  }
  #topics ul {
    padding: 0 3rem;
  }
  #topics li {
    flex: 1 1 100%;
  }
}
/*--------------------------
Cosmekaishu
---------------------------*/
#cosmekaishu {
  padding: 10rem 3rem;
  background: linear-gradient(45deg, #f9c1ae, #ffe9e4 40%, #fcf8f7);
  text-align: center;
}
#cosmekaishu h2 {
  margin: 0 auto 6rem;
}
@media (max-width: 767px) {
  #cosmekaishu h2 img {
    width: 54.6rem;
  }
}
/*--------------------------
Special
---------------------------*/
#special {
  padding: 10rem 3rem;
  background: linear-gradient(45deg, #efafc4, #efdae2 40%, #fef6f9);
  text-align: center;
}
#special h2 + p {
  margin-block: 1.5rem 6rem;
  font-size: 2.2rem;
  font-weight: bold;
}
#special .method {
  max-width: 98rem;
  margin: 6.7rem auto 8rem;
  background: #fff;
}
#special .method p + p {
  padding-block: 1.5rem 2rem;
}
#special .inner.items-inner {
  margin: 0 auto;
  max-width: 123rem;
  width: 100%;
  text-align: left;
}
#special .items-inner #eventCont {
  margin: 0 auto;
  width: 100%;
}
#special .items-inner .item {
  position: relative;
  background: #fff;
  margin: 0 0 1rem;
  padding: 1.3rem;
  width: 300px;
  font-feature-settings: "palt";
}
#special .items-inner .item .titleBox {
  display: flex;
  align-items: center;
  gap: 0 1rem;
}
#special .items-inner .item .titleBox .date {
  flex: 0 0 auto;
}
#special .items-inner .item .titleBox .date img {
  height: 5.6rem;
  width: auto;
}
#special .items-inner .item .titleBox h3 {
  flex: 1 1 auto;
  color: #ed7a99;
  line-height: 1.2;
  font-size: 1.6rem;
  font-weight: bold;
  font-feature-settings: "palt";
}
#special .items-inner .item .titleBox h3 span {
  display: block;
  font-size: 1rem;
}

#special .items-inner .item .titleBox h3 small {
  display: block;
  font-size: 1.3rem;
}
#special .items-inner .item .thumbnail {
  margin: 1rem 0;
  aspect-ratio: 274 / 169;
}
#special .items-inner .item .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#special .items-inner .item .category {
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
}
#special .items-inner .item .category img {
  width: auto;
  height: 2rem;
}
#special .items-inner .item .comment01 {
  font-size: 1.4rem;
  line-height: 1.3;
}
#special .items-inner .item .comment01-caution {
  display: block;
  font-size: 1.2rem;
  line-height: 1.3;
}
#special .items-inner .item .comment02 {
  font-size: 1.1rem;
}
#special .items-inner .item .detail {
  margin: 1rem auto;
  width: 100%;
  font-size: 1.3rem;
  background-image: linear-gradient(to right, #ed7a99 3px, transparent 3px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
#special .items-inner .item .detail tr {
  background-image: linear-gradient(to right, #ed7a99 3px, transparent 3px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
  background-position: left top;
}
#special .items-inner .item .detail tr th {
  padding: 0.7rem 1rem 0.3rem;
  width: 7.5rem;
  text-align: center;
  background: rgb(237 122 153 / 20%);
  color: #ed7a99;
  font-weight: 600;
}
#special .items-inner .item .detail tr td {
  padding: 0.7rem 1rem 0.3rem;
}
@media (max-width: 767px) {
  #special h2 {
    width: 51.3rem;
    margin: 0 auto;
  }
  #special .method {
    margin: 8rem auto;
  }
  #special .method p + p {
    padding-block: 3rem;
    font-weight: bold;
  }
  #special .items-inner .item {
    margin-bottom: 0;
    padding: 2rem 3rem;
    width: 100%;
  }
  #special .items-inner .item + .item {
    margin-top: 8rem;
  }
  #special .items-inner .item .titleBox {
    gap: 2rem;
    align-items: flex-start;
  }
  #special .items-inner .item .titleBox .date img {
    height: 13rem;
  }
  #special .items-inner .item .titleBox h3 {
    font-size: 3.8rem;
    margin-top: 2rem;
    line-height: 1.1;
    text-wrap: nowrap;
  }
  #special .items-inner .item .titleBox h3 span {
    font-size: 2.4rem;
    margin-bottom: 0.6rem;
  }

  #special .items-inner .item .titleBox h3 small {
    font-size: 3rem;
  }
  #special .items-inner .item .thumbnail {
    margin: 2rem auto;
  }
  #special .items-inner .item .category img {
    height: 4.5rem;
  }
  #special .items-inner .item .comment01 {
    font-size: 2.8rem;
  }
  #special .items-inner .item .comment01-caution {
    font-size: 2.4rem;
  }
  #special .items-inner .item .comment02 {
    font-size: 2.6rem;
  }
  #special .items-inner .item .detail {
    margin: 3rem auto;
    font-size: 2.6rem;
  }
  #special .items-inner .item .detail tr th {
    padding: 1.5rem 0 0.6rem;
    width: 15rem;
  }
  #special .items-inner .item .detail tr td {
    padding: 1.5rem 2rem 0.6rem;
  }
}
/*--------------------------
instore
---------------------------*/
#instore {
  max-width: 98rem;
  margin: 0 auto;
  padding: 10rem 0;
}
#instore h2 {
  width: 78rem;
  margin: 0 auto;
}
#instore .shop-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4rem 0;
  padding: 3rem;
  margin-top: 8rem;
  border: 1px solid #a660a3;
  position: relative;
}
#instore .shop-container:before {
  content: attr(data-floor);
  background: #fff;
  padding: 0 2rem;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1;
  color: #a660a3;
  position: absolute;
  left: 50%;
  top: -1rem;
  transform: translateX(-50%);
  pointer-events: none;
}
#instore .shop-container .shop {
  flex: 0 0 44rem;
  font-feature-settings: "palt";
}
#instore .shop-container .shop .tag img {
  height: 2rem;
}
#instore .shop-container .shop h3 {
  margin: 0.5rem 0 1rem;
  padding: 0 0 1.2rem;
  color: #a660a3;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.2;
  background: radial-gradient(circle at center, #a660a3, #a660a3 30%, transparent 30%, transparent 100%) repeat-x left bottom/.6rem 0.6rem;
}
#instore .shop-container .shop h3 span {
  display: block;
  color: #a660a3;
  font-size: 1.2rem;
  font-weight: 600;
}
#instore .shop-container .shop .description {
  display: flow-root;
  text-align: justify;
  font-size: 1.4rem;
}
#instore .shop-container .shop .description small {
  display: block;
  font-size: 1.2rem;
}
#instore .shop-container .shop .description img {
  width: 13.5rem;
  margin: 0 0 0.5rem 2rem;
  float: right;
  clear: both;
}
#instore .shop-container .shop .description .mb {
  margin-bottom: 2rem;
}
#instore .shop-container table {
  margin: 1rem auto;
  width: 100%;
  font-size: 1.3rem;
  background-image: linear-gradient(to right, #a660a3 3px, transparent 3px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
#instore .shop-container table tr {
  background-image: linear-gradient(to right, #a660a3 3px, transparent 3px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
  background-position: left top;
}
#instore .shop-container table tr th {
  padding: 0.7rem 1rem 0.3rem;
  width: 7.5rem;
  text-align: center;
  background: rgb(166 96 163 / 20%);
  color: #a660a3;
  font-weight: 600;
}
#instore .shop-container table tr td {
  padding: 0.7rem 0rem 0.3rem 1rem;
}
@media (max-width: 767px) {
  #instore h2 {
    transform: none;
    width: 100%;
  }
  #instore .shop-container {
    margin: 10rem 2rem 0;
    padding: 6.5rem 3rem;
    flex-direction: column;
    gap: 7rem;
  }
  #instore .shop-container:before {
    padding: 0 3rem;
    font-size: 3.4rem;
    top: -1.8rem;
  }
  #instore .shop-container .shop {
    flex: 1 1 100%;
  }
  #instore .shop-container .shop .tag img {
    height: 4.5rem;
  }
  #instore .shop-container .shop h3 {
    margin: 2rem 0 2.5rem;
    padding: 0 0 1.7rem;
    font-size: 3.8rem;
  }
  #instore .shop-container .shop h3 span {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
  }
  #instore .shop-container .shop .description {
    font-size: 2.8rem;
    line-height: 1.4;
  }
  #instore .shop-container .shop .description small {
    font-size: 2.4rem;
  }
  #instore .shop-container .shop .description img {
    width: 27rem;
    margin: 0 0 2rem 5rem;
  }
  #instore .shop-container table {
    font-size: 2.6rem;
    margin: 2rem auto;
  }
  #instore .shop-container table tr th {
    width: 15rem;
    padding: 1.4rem 1rem 0.5rem;
  }
  #instore .shop-container table tr td {
    padding: 1.4rem 0 0.5rem 1rem;
  }
}
/*--------------------------
Passport
---------------------------*/
#passport {
  margin-bottom: 5rem;
  padding: 10rem 3rem;
  background: linear-gradient(50deg, #DDD9EC, #DDD9EC 40%, #FFFFFF);
  text-align: center;
}
#passport h2 {
  width: 43rem;
  margin: auto;
}
#passport .block{
  width: 98rem;
  margin: 5.6rem auto 0;
  position: relative;
}
#passport .block a{
  width: 34.2rem;
  position: absolute;
  left: 50%;
  bottom: 3.7rem;
  transform: translateX(-50%);
}
#passport .block img{
  width: 100%;
}
@media (max-width: 767px) {
  #passport h2 {
    width: 54rem;
  }
  #passport .block{
    width: 69rem;
  }
  #passport .block a{
    width: 47.8rem;
  }
}
/*--------------------------
Popup
---------------------------*/
#popup {
  padding: 10rem 3rem;
  background: linear-gradient(45deg, #a3d6e5, #cbf7f7 40%, #fefbf8);
}
#popup h2 {
  width: 77rem;
  margin: auto;
}
#popup .grid-block {
  display: grid;
  grid-template-areas:
    "title title"
    "description thumbnail"
    "info thumbnail"
    "button button";
  max-width: 98rem;
  margin: 5rem auto 0;
  padding: 3rem 3rem 4rem;
  background: #fff;
  gap: 2rem 5rem;
}
#popup .grid-block h3 {
  width: 70rem;
  grid-area: title;
}
#popup .grid-block .desc {
  grid-area: description;
  font-size: 1.6rem;
  font-weight: 500;
  font-feature-settings: "palt";
}
#popup .grid-block > figure {
  grid-area: thumbnail;
  width: 18rem;
  margin: 0;
}
#popup .grid-block .info {
  grid-area: info;
}
#popup .grid-block > a {
  width: 44rem;
  margin-top: 2rem;
  grid-area: button;
  place-self: center;
}
@media (max-width: 767px) {
  #popup h2 {
    width: 55.2rem;
  }
  #popup .grid-block {
    padding: 4rem 3rem 5rem;
    grid-template-areas:
      "title title"
      "description thumbnail"
      "info info"
      "button button";
    gap: 4rem 2.4rem;
  }
  #popup .grid-block h3 {
    width: 54rem;
  }
  #popup .grid-block .desc {
    font-size: 2.8rem;
    text-align: justify;
    word-break: break-all;
  }
  #popup .grid-block > figure {
    width: 25rem;
  }
  #popup .grid-block .info,
  #popup .grid-block > a {
    width: 100%;
  }
}
/*--------------------------
Banners
---------------------------*/
#banners {
  padding: 10rem 3rem 0;
}
#banners p {
  max-width: 98rem;
  margin: 0 auto;
  padding: 1.8rem 0;
  border-block: 0.2rem dotted #333;
  font-size: 1.3rem;
}

#banners ul {
  display: flex;
  max-width: 98rem;
  margin: 10rem auto 0;
  gap: 6rem 4rem;
}
#banners ul li {
  flex:  0 1 47rem;
}
#banners ul li:nth-of-type(2){
  margin-top: -2.4rem;
}
@media (max-width: 767px) {
  #banners p {
    font-size: 2.2rem;
  }
  #banners ul {
    flex-direction: column;
  }
  #banners ul li:nth-of-type(2){
    margin-top:0;
  }
}
