@charset "UTF-8";

:root {
  --link: #003cb4;
  --white: #fff;
  --black: #3c3c3c;
  --gray: #828c96;
  --pink: #e6326e;
  --red: #d23232;
}

html,body {
  position: relative;
  font-size: clamp(14px, 2.4vw, 18px);
  color: var(--black);
  width: 100%;
  background: none;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
}
body {
  background: #f5e1eb;
}
body::after {
  position: absolute;
  content: '';
  background: url(../img/bg-kira.webp) no-repeat center top / 100%;
  width: 100%;
  height: 100%;
  bottom: 0;
  transform: rotate(180deg);
  z-index: -1;
}


p {
  margin: 0;
  padding: 0;
  word-break: break-all;
}
#contents p,#campaign p,#cafe p {
  text-align: justify;
}

p span {
  display: inline-block;
}
span.small {
  font-size: 70%;
}
span.strong {
  font-weight: 700;
  background: linear-gradient(0deg, transparent 8%, #e6c8c8 8%, #e6c8c8 14%, transparent 14%);
  padding: 0 4px;
}

a,
a:visited,
a:active {
  color: var(--link);
  text-decoration: underline;
}
a:hover {
  color: var(--link);;
}
img {
  width: 100%;
}

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


/* menu */
.globalMenu {
  position: fixed;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 200px;
  z-index: 99;
  display: flex;
  align-items: center;
}
.globalMenu ul {
  margin: 0;
  width: 100%;
  padding: 0 .5em;
  background: var(--white);
  border: 2px solid #dcdcdc;
  border-right: none;
  border-radius: 10px 0 0 10px;
}
.globalMenu ul li {
  position: relative;
}

.globalMenu ul li a {
  display: block;
  text-decoration: none;
  color: var(--black);
  text-align: center;
  line-height: 1.3;
  padding: .2em;
  font-size: 2em;
  transition: all .5s;
  font-family: "Parisienne", cursive;
  font-weight: 400;
  font-style: normal;
  margin: .5rem 0;
  border-radius: 5px;
}
.globalMenu ul li a span{
  display: inline-block;
  font-size: 70%;
}
.sub {
  border: none;
  padding: 0 .5em;
  margin: 0;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: var(--gray);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  transition: all .5s;
}
.sub::before, .sub::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: var(--gray);
  display: block;
  transition: all .5s;
}
.sub::before {
  margin-right: .4em;
}
.sub:after {
  margin-left: .4em;
}
.globalMenu ul li a:hover {
  background: var(--pink);
  color: var(--white);
}
.globalMenu ul li a:hover .sub{
  color: var(--white);
}
.globalMenu ul li a:hover .sub::before{
  background: var(--white);
}
.globalMenu ul li a:hover .sub::after{
  background: var(--white);
}

#hamburger {
  display: none;
}
@media screen and (max-width: 1400px) {
  #hamburger {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 5.5em;
    height: 2.2em;
    background: #222;
    color: var(--white);
    z-index: 999;
    justify-content: space-between;
    align-items: center;
    padding: 0 .5em;
    border-radius: 0 0 0 8px;
    font-size: 1.3em;
    cursor: pointer;
  }
  #hamburger div:nth-child(1) {
    font-size: .9em;
    font-weight: 600;
    line-height: 1;
  }
  .h-line {
    position: relative;
    width: 33%;
    height: 70%;
  }
  #hamburger span {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 4px;
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
  }
  #hamburger span:nth-of-type(1) {
    transform: translateY(-.4em);
  }
  #hamburger span:nth-of-type(2) {
    opacity: 1;
  }
  #hamburger span:nth-of-type(3) {
    transform: translateY(.4em);
  }

  #hamburger.active span:nth-of-type(1) {
  -webkit-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
  }
  #hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger.active span:nth-of-type(3) {
    -webkit-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg);
  }

  .globalMenu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .5s;
    transform: translateX(200px);
  }
  .globalMenu ul {
    border-top: none;
    border-radius: 0 0 0 10px;
    padding: 2.8em .5em .5em;
  }
  .globalMenu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .globalMenu ul li a span {
    font-size: 90%;
  }

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

  #hamburger {
    font-size: 1em;
  }
  #hamburger span {
    height: 2px;
  }
}

/* main */
main {
  position: relative;
  background-color: var(--white);
}
main::before {
  content: '';
  position: absolute;
  top: -20vw;
  background-color: var(--white);
  height: 20vw;
  width: 100%;
  clip-path: ellipse(60% 30% at 50% 100%);
}
main::after {
  content: '';
  position: absolute;
  bottom: -20vw;
  transform: rotate(180deg);
  background-color: var(--white);
  height: 20vw;
  width: 100%;
  clip-path: ellipse(60% 30% at 50% 100%);
}

#movie-pop {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9;
  background: rgba(0, 0, 0, .7);
  display: none;
  cursor: pointer;
}
#movie-pop.show {
  display: block;
}
.movie-pop-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
  max-width: 1000px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#top-wrap {
  position: relative;
  top: 0;
  width: 100%;
  padding-bottom: 70%;
}
#top-wrap::before {
  content: '';
  width: 33%;
  height: 100%;
  position: absolute;
  background-color: #f5d7e6;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  z-index: -1;
}
#top-wrap::after {
  content: '';
  width: 33%;
  height: 100%;
  position: absolute;
  right: 0;
  background-color: #f5d7e6;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  z-index: -1;
}
#top-bg {
  position: absolute;
  width: 100%;
  height: 100%;
}
#top-kv {
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    url(../img/pc.webp) no-repeat center top / min(1400px, 100%),
    url(../img/bg-kira.webp) no-repeat center top / 100%;
}
h1 {
  position: absolute;
  bottom: 5%;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 44%;
  max-width: 700px;
  z-index: 1;
}
@media screen and (min-width: 1401px) {
  #top-wrap {
    padding-bottom: 1010px;
  }
}

@media (orientation: portrait) {
  #top-wrap {
    padding-bottom: 170%;
  }
  #top-kv {
    background:
      url(../img/sp.webp) no-repeat center top / 100%,
      url(../img/bg-kira.webp) no-repeat 80% top / 180%;
  }
  main::before,main::after {
    clip-path: ellipse(60% 60% at 50% 100%);
  }
  body::after {
    background-size: 200%;
  }
  h1 {
    bottom: 0;
    width: 80%;
  }
}

h2 {
  display: flex;
  align-items: center;
  font-size: min(12vw, 4em);
  font-weight: 700;
  margin: 0 0 1.4rem;
  line-height: 1;
}
h2 div.en{
  font-family: "Parisienne", cursive;
  font-weight: 400;
  font-style: normal;
  display: block;
  white-space: nowrap;
  color: var(--pink);
}
h2 div.ja{
  color: var(--white);
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 30%;
}
h2 div.ja span{
  background: url(../img/h2-bg.svg) no-repeat;
  background-size: contain;
  background-position: center;
  padding: .8em;
}
h2 div:nth-child(2) {
  flex-grow: 1;
  height: 1px;
  background: var(--black);
  margin: 0 10px;
}

h3:not(.c-h3) {
  font-size: .8em;
  font-weight: 600;
  margin: 1.4rem 0 .3em;
  color: var(--gray);
  border-bottom: 1px solid var(--gray);
  padding: .3em 0;
  display: inline-block;
}
h3 span {
  position: relative;
  padding: 0 1.4rem 2px;
}

section {
  margin: 4em auto;
  background: none;
  max-width: 1000px;
  padding: 1em;
  text-align: center;
}

p.catch {
  text-align: center;
    font-size: min(5vw, 1.4em);
    font-weight: 600;
    letter-spacing: 4px;
    margin: 1rem auto;
    background: var(--black);
    color: var(--white);
    clip-path: polygon(100% 0%, calc(100% - 10px) 50%, 100% 100%, 0 100%, 10px 50%, 0 0);
    max-width: 400px;
}

br.sp-br {
  display: none;
}
@media screen and (max-width: 500px) {
  br.sp-br {
    display: block;
  }
}

/* info */
p.lead {
  font-size: min(4.2vw, 1.4em);
  font-weight: 700;
  color: var(--black);
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
  padding: 4rem 1rem 1rem;
  line-height: 2.6;
}
p.lead span {
  display: inline-block;
  border-bottom: 1px dashed var(--gray);
  margin-bottom: 1rem;
}

.event-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1em;
  line-height: 1.5;
  margin: 1em auto;
}
.event-box {
  font-size: .9em;
  position: relative;
  padding: 1em 0;
  background: #f0f0f0;
  border-radius: 8px;
  text-align: center;
}
.event-box span {
  font-size: 1.4em;
  font-weight: 700;
}
.event-box.fin::before {
  position: absolute;
  content: '終了';
  top: -.6em;
  right: -.4em;
  background: var(--red);
  color: var(--white);
  padding: 0 1em;
  font-size: 90%;
}
.event-link {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 90%;
}
.event-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: .5em 0 0;
}
a.info-x svg {
  width: 1.6em;
  margin-right: .5em;
  background: #000;
  color: #fff;
  border-radius: 3px;
  padding: 4px;
}
.event-link a:hover {
  color: var(--black);
}
a.info-map {
  position: relative;
  padding-left: 1.6em;
  margin-left: 1em;
}
a.info-map::before {
  position: absolute;
  content: '';
  background: url(../img/map.svg) no-repeat;
  background-size: contain;
  background-position: center;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1.5em;
  height: 2em;
  margin: auto;
}
@media screen and (max-width: 700px) {
  .event-wrap {
    grid-template-columns: 1fr;
  }
}

/* contents */
h3.c-h3 {
  position: relative;
  font-weight: 600;
  background: #e65a82;
  color: var(--white);
  line-height: 1.4;
  padding: .5em 2em;
  font-size: 1em;
  font-feature-settings: normal;
}
h3.c-h3::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: .6em;
  height: 100%;
  background: var(--white);
}
h3.c-h3::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 0;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  width: .6em;
  height: 100%;
  background: var(--white);
}
.costume {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1em;
  margin: 1em auto;
  max-width: 800px;
}
.costume a{
  overflow: hidden;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.costume a:hover img{
  opacity: .9;
}

/* campaign */
.tokuten {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 1em;
  margin: 1em 0;
}
.tokuten.coming div{
  border: 1px solid #e6d7c3;
}
@media screen and (max-width: 768px) {
  .tokuten {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: .5em;
  }
}
@media screen and (max-width: 600px) {
  .tokuten {
    grid-template-columns: 1fr 1fr;
  }
}
ul.attention {
  padding: 0;
  list-style: none;
  list-style-position: inside;
  margin: 1rem 0;
  font-size: .9rem;
  text-align: justify;
}
ul.attention li {
  position: relative;
  margin: 0 0 .8rem;
  line-height: 1.5;
  padding-left: 1.1em;
}
ul.attention li::before {
  content: '※';
  position: absolute;
  left: 0;
  margin: auto;
  color: var(--pink);
}
ul.attention li:last-child {
  margin: 0;
}

/* goods */

.comingsoon {
  height: 40vh;
  background: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6em;
  font-weight: 600;
  color: var(--gray);
}

.goods-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 1em;
  margin: 1em auto;
}
.goods-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: .5em;
  padding: .4em .4em .5em;
  line-height: 1.2;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #fafafa;
}
.goods-img {
  position: relative;
  padding-bottom: 100%;
  background: #fff;
}
.goods-img img {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  object-fit: contain;
}
.goods-text {
  font-size: .8em;
  line-height: 1.4;
  padding: 0;
  text-align: left;
  letter-spacing: -0.2px;
}
.goods-price {
  position: relative;
  text-align: right;
  margin-top: auto;
  padding: .4rem 0 0;
  font-size: 1rem;
  border-top: 1px dashed #cdcdcd;
  font-weight: 500;
}
.goods-price span {
  font-size: 70%;
}
a.goods-link {
  font-size: .9em;
  padding: .5rem;
  text-align: center;
  margin: 0;
  color: var(--pink);
  border: 1px solid #cdcdcd;
  text-decoration: none;
  font-weight: 700;
  background: var(--white);
  border-radius: 4px;
  transition: all .5s;
}
a.goods-link:hover {
  border-color: var(--pink);
}
p.more {
  text-align: center;
  background: #fafafa;
  border-radius: 8px;
  padding: 1rem 0;
  font-weight: 500;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.dots-box {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 92%;
  display: flex;
  width: 100%;
  justify-content: center;
}
.dots-wrap {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}
.dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}
.dots-wrap li {
  width: 10px;
  height: 10px;
  background: var(--pink);
  margin: 0 4px;
  transition: all .5s;
  cursor: pointer;
  opacity: .4;
  transform: scale(.8);
}
.dots-wrap li.slick-active {
  opacity: 1;
  transform: scale(1) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .goods-wrap {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .goods-text {
    font-size: .9em;
  }
  .goods-price {
    font-size: 1.2rem;
  }
  .goods-item.andmore {
    align-items: center;
  }
}


/* cafe */
#cafe {
  padding-bottom: 3em;
}
a.cafe-link {
  display: block;
  text-decoration: none;
  color: var(--link);
  max-width: 880px;
  margin: 1rem auto 0;
  font-size: .9em;
}
a.cafe-link:hover img {
  opacity: .9;
}


/* footer */
footer {
  position: relative;
  width: 100%;
  padding: 2em 1em;
  margin: 0;
}
footer p.copyright {
  text-align: center;
  margin: 0;
  font-size: 12px;
}
.sns-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  text-align: center;
  margin: 3em 0;
}
div.sb {
  position: relative;
  background: var(--white);
  color: var(--pink);
  font-weight: 600;
  line-height: 1.4;
  padding: .6em 1.2em;
  border-radius: 10px;
  display: inline-block;
  border: 1px solid #cdcdcd;
  font-size: .9em;
  margin-bottom: .8em;
}
div.sb:before {
  content: "";
  position: absolute;
  bottom: -.5em;
  left: 0;
  right: 0;
  margin: auto;
  width: .9em;
  height: .8em;
  background: var(--gray);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  z-index: 2;
}
div.sb svg{
  position: absolute;
  top: -.4em;
  left: -.5em;
  width: 1.4em;
  background: #000;
  color: #fff;
  padding: .2em;
}
#xaccount {
  margin-right: 2em;
}
#xaccount a {
  text-decoration: none;
  display: block;
}
#xaccount img {
  border-radius: 16px;
  max-width: 160px;
  display: block;
  margin: 0 auto;
}

.sns {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  font-weight: normal;
}
.sns li {
  list-style: none;
  margin: 0 5px;
  color: var(--white);
}
.sns li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: var(--white);
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #cdcdcd;
}
#t-icon a {
  padding: 10px;
  color: #000;
}
#f-icon a{
  color:#0866ff;
}
#f-icon a:hover {
  color:#0866ff;
}
#l-icon a{
  color:#00B900;
}
#l-icon a:hover {
  color: #00B900;
}
.cospa_logo {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  max-width: 160px;
  margin: 0 auto;
}
.cospa_logo a{
  background: none;
  padding: .5em;
  margin: 5px;
  border-radius: 4px;
  width: 100%;
}
@media screen and (min-width: 1500px) {
  .sns-wrap {
    margin: 4em 0;
  }
}
@media screen and (max-width: 500px) {
  .sns-wrap {
    flex-wrap: wrap;
  }
  #xaccount {
    margin: 0 0 2em;
  }
}