@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@500;700;900&display=swap');

html,body {
  position: relative;
  font-size: clamp(14px, 2.4vw, 21px);
  color: #fff;
  width: 100%;
  background: none;
  line-height: 1.6;
  font-family: YakuHanJP,'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  margin: 0;
}
body::before {
  content: '';
  position: fixed;
  background: url(../img/bg.jpg);
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 100%;
  z-index: -99;
}
.stars {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}
.star {
  position: absolute;
  display: block;
  background-color: #fff; /* 星の色 */
  border-radius: 50%;
  box-shadow: 0 0 4px 2px rgba(255,0,0,.8); /* 星の影 */
  opacity: 0;
  animation: twinkle 5s infinite;
}
.star02 {
  position: absolute;
  display: block;
  background-color: #fff; /* 星の色 */
  border-radius: 50%;
  box-shadow: 0 0 4px 2px rgba(0,50,255,.8); /* 星の影 */
  opacity: 0;
  animation: twinkle 5s infinite;
}
@keyframes twinkle {
  0% {
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
#wrapper {
  z-index: 2;
  position: relative;
}


#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
#loading>div {
  position: relative;
  max-width: 1350px;
}
#loading>div span{
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  text-align: center;
  font-size: min(6vw,70px);
  font-family: sans-serif;
  font-weight: 900;
  animation: giggle 1s ease infinite;
  mix-blend-mode: screen;
  opacity: .9;
}
#loading>div span#red{
  color:#f00;
  left:-0.5px;
}
#loading>div span#green{
  color:#0f0;
  animation-delay:-0.67s;
}
#loading>div span#blue{
  color:#00f;
  animation-delay:-0.33s;
  left:0.5px;
}
#loading::after {
  animation: noise 8s steps(10) infinite;
  background: url(../img/noise.png);
  content: "";
  display: block;
  height: 300%;
  left: -100%;
  position: absolute;
  top: -100%;
  width: 300%;
  z-index: 2;
  opacity: .6;
}
@keyframes noise {
  to {
    background-position: 0 0;
  }
  10% {
    background-position: -5% -10%;
  }
  20% {
    background-position: -15% 5%;
  }
  30% {
    background-position: 7% -25%;
  }
  40% {
    background-position: 20% 25%;
  }
  50% {
    background-position: -25% 10%;
  }
  60% {
    background-position: 15% 5%;
  }
  70% {
    background-position: 0 15%;
  }
  80% {
    background-position: 25% 35%;
  }
  90% {
    background-position: -10% 10%;
  }
}
@keyframes giggle {
  0%, 100% {
     transform:translateY(-2px);
  }
  50% {
     transform:translateY(2px);
  }
}
@media screen and (max-width: 768px){
  @keyframes giggle {
    0%, 100% {
       transform:translateY(-1px);
    }
    50% {
       transform:translateY(1px);
    }
  }
}
#loading.loaded{
  animation: fadeout 1s .5s forwards;
}
#loading.loaded div{
  animation: loaded 1s forwards;
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes loaded {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(2);
  }
}


#kakioroshi {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 99;
  background: #fff;
}
#kakioroshi div{
  width: 50%;
  height: 100%;
}
#akane-load {
  background: url(../img/akane-load.webp)no-repeat,#f0dcff;
  background-position: center top;
  background-size: cover;
  transform: scale(1.5);
  filter: blur(50px);
}
#akane-load::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #fff;
}
#rikka-load {
  background: url(../img/rikka-load.webp)no-repeat,#c8d2ff;
  background-position: center top;
  background-size: cover;
  transform: scale(1.5);
  filter: blur(50px);
}
#kakioroshi div#text-load {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(6.4vw,90px);
  font-weight: 900;
  flex-wrap: wrap;
  align-content: center;
  text-shadow: 0 0 1em #000, 0 0 .2em #000, 0 0 10px #000;
  letter-spacing: -2px;
  opacity: 0;
}
#kakioroshi div#text-load span {
  width: 100%;
}
#kakioroshi div#text-load span#skip {
  border: 1px solid #000;
  font-size: 1.4rem;
  max-width: 300px;
  width: 30%;
  background: rgba(255,255,255,.8);
  text-shadow: none;
  color: #000;
  letter-spacing: 1px;
  margin-top: 1em;
  cursor: pointer;
}

#kakioroshi.loaded {
  animation: bg 3s forwards;
}
#kakioroshi.loaded #akane-load {
  animation: akane-load 4s 1s forwards;
}
#kakioroshi.loaded #rikka-load {
  animation: rikka-load 4s 1s forwards;
}
#kakioroshi.loaded div#text-load {
  animation: fadein 4s 1s forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: scale(.5);
  }
  15% {
    opacity: 1;
    transform: scale(1);
  }
  65% {
    opacity: 1;
    transform: scale(1);
  }
  80% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
@keyframes akane-load {
	30% {	
    transform: scale(1);
    filter: blur(0);
  }
  75% {	
    transform: scale(1);
    filter: blur(0);
  }
  100% {
    transform: scale(2) translateX(-100%);
    filter: blur(0);
  }
}
@keyframes rikka-load {
	30% {	
    transform: scale(1);
    filter: blur(0);
  }
  75% {	
    transform: scale(1);
    filter: blur(0);
  }
  100% {
    transform: scale(2) translateX(100%);
    filter: blur(0);
  }
}
@keyframes bg {
  50% {
    background: #fff;
  }
  100% {
    background: none;
  }
}

p {
  margin: .5em 0;
  text-align: justify;
  word-break: break-all;
}
p span {
  display: inline-block;
}
p strong {
  font-size: 1.2em;
  font-weight: 900;
  color: #f00;
}

a,
a:visited,
a:active {
  color: inherit;
  text-decoration: underline;
}
a:hover {
  color: #baff00;
  text-decoration: none;
}
img {
  width: 100%;
}

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

header {
  position: fixed;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  right: 0;
  left: 0;
  background: none;
  height: 60px;
  text-align: center;
  z-index: 99;
}

.hamburger {
  display: block;
  position: absolute;
  z-index: 99;
  right: 1em;
  top: 1em;
  width: 60px;
  height: 60px;
  cursor: pointer;
  text-align: center;
  transform: translate3d(0,-90px,30px);
  background: none;
  transition: all 0.5s;
}
.hamburger::before {
  content: '';
  display: block;
  background: #baff00;
  border: 2px solid #000;
  width: 60px;
  height: 60px;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 50%;
  margin: 0 auto;
  height: 3px;
  left: 0;
  right: 0;
  background: #000;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 35%;
}
.hamburger span:nth-child(2) {
  top: 50%;
  opacity: 1;
}
.hamburger span:nth-child(3) {
  top: 65%;
}
.hamburger.active span:nth-child(1) {
  top: 50%;
  left: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

nav.globalMenu {
  position: fixed;
  display: flex;
  align-items: center;
  z-index: 10;
  top: 0;
  left: 0;
  text-align: center;
  transition: all 0.6s;
  width: 100%;
  background: rgba(0,0,0,.9);
  padding: 0;
  opacity: 0;
  height: 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  pointer-events: none;
}
.globalMenu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  width: 90%;
  max-width: 1200px;
  padding: 0;
}
.globalMenu ul li{
  width: calc(100%/3 - 2em);
  margin: 1em;
}
.globalMenu ul li a{
  display: block;
}
#popuplogo {
  width: 100%;
}
#popuplogo a{
  max-width: 400px;
  width: 60%;
  margin: 0 auto;
}

nav.globalMenu.active {
  opacity: 1;
  pointer-events: auto;
}
.hamburger.in {
  transform: translate3d(0,0,30px);
}
@media screen and (max-width: 768px){
  .globalMenu ul li {
    width: calc(100%/2 - 2em);
    margin: 1em 0;
  }
}
@media screen and (max-width: 500px){
  .globalMenu ul {
    width: 100%;
  }
  .hamburger {
    width: 40px;
    height: 40px;
  }
  .hamburger::before {
    width: 40px;
    height: 40px;
  }
}


#top-img {
  background: url(../img/top.webp)no-repeat;
  background-size: min(130vw, 1400px) auto;
  background-position: center top;
}

#catch {
  text-align: center;
}
#catch span{
  display: inline-block;
  background-color: #baff00;
  color: #000;
  margin: 0.5em 0;
  padding: 0 0.5em;
  font-weight: 900;
  font-size: min(4.4vw,1.6em);
}

.section-wrap {
  position: relative;
  max-width: 1024px;
  width: 96%;
  margin: 4em auto;
  background: rgba(0,0,0,.6);
  border: 1px solid #648200;
  padding: 1em;
}
.section-wrap::before,.section-wrap::after {
  position: absolute;
  background: url(../img/waku.png)no-repeat;
  background-size: contain;
  content: '';
  width: 100px;
  height: 100px;
}
.section-wrap::before {
  bottom: 8px;
  right: 8px;
}
.section-wrap::after {
  top: 8px;
  left: 8px;
  transform: rotate(180deg);
}

h1 {
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (max-width: 768px){
  h1 {
    padding-top: 13vw;
  }
}

h2 {
  margin: 1rem auto 0;
  max-width: 380px;
  width: 70%;
}

h3 {
  position: relative;
  overflow: hidden;
  font-size: 1.2em;
  font-weight: 700;
  margin: 1.5em 0 0;
  padding: 0 0 0.2em 60px;
  border-bottom: 1px solid #baff00;
  color: #baff00;
  line-height: 1.2;
}
h3::before {
  position: absolute;
  content: '';
  background: url(../img/h3.png)no-repeat;
  background-size: contain;
  background-size: 50%;
  background-position: center left;
  width: 100px;
  height: 100px;
  left: -6px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(-30deg);
}

h4 {
  font-size: 1em;
  margin: 1em 0 0;
  border: 1px solid #baff00;
  display: inline-block;
  padding: 0 1em;
  color: #baff00;
}

div.comingsoon {
  width: auto;
  height: 30vh;
  background: rgba(186,255,0,.2);
  color: #baff00;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  border-radius: 8px;
  margin: 0.5rem;
  font-weight: 700;
}

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

/*information*/

.info-table {
  margin: 0 auto;
}
.info-table tr{
  border-bottom: 1px solid #648200;
}
.info-table tr:last-child{
  border-bottom: none;
}
.info-table th{
  color: #baff00;
  padding: 1em 1em 1em 0;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1.4;
}
.info-table td>div{
  background: rgba(0,0,0,.9);
  border-radius: 8px;
  padding: 0.5em 1em;
  box-shadow: 0 0 5px #baff00;
  margin: 1em 0;
}
span.day {
  font-size: 90%;
}


/*illustration*/

#illust-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  height: 0;
}

#lead {
  position: absolute;
  text-align: right;
  right: 10%;
  top: 10%;
  z-index: 1;
}
#lead span{
  background: #baff00;
  color: #000;
  padding: 0 0 0 0.3em;
  font-size: min(4.4vw,1.6em);
  font-weight: 900;
}
#lead p{
  text-align: right;
  line-height: 1.8;
  text-shadow: 0 0 3px #000, 0 0 3px #000, 0 0 3px #000, 0 0 3px #000, 0 0 3px #000;
}
#change {
  position: relative;
  width: 34%;
  max-width: 150px;
  margin: 0 0 0 auto;
  cursor: pointer;
}
#change>div {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: all .8s;
}
#change>div:last-child {
  position: relative;
  text-align: center;
  padding-top: 100%;
  font-size: 90%;
}
#rikka-icon {
  transform: rotateY(0);
}
#akane-icon {
  transform: rotateY(180deg);
}
#change.active #rikka-icon{
  transform: rotateY(180deg);
}
#change.active #akane-icon{
  transform: rotateY(0);
}

#akane,#rikka {
  position: absolute;
  width: 100%;
  padding-bottom: 100%;
  height: 0;
  opacity: 0;
  transform: translateX(-100px);
  transition: all .8s;
}
#akane {
  background: url(../img/akane.webp)no-repeat;
  background-size: contain;
  right: 5%;
}
#rikka {
  background: url(../img/rikka.webp)no-repeat;
  background-size: contain;
  right: 10%;
}
#akane>div,#rikka>div {
  position: absolute;
  bottom: 15%;
  right: 10%;
}
#akane>div span,#rikka>div span{
  padding: 0 0.5em;
  font-size: 1.6em;
  font-weight: 700;
}
#akane>div span{
  background: #644682;
}
#rikka>div span{
  background: #325aff;
}
#akane>div p,#rikka>div p{
  margin: 0.5em 0 0;
  background: #000;
  padding: 0.5em;
  line-height: 1.8;
}
#akane>div p{
  border: 1px solid #644682;
}
#rikka>div p{
  border: 1px solid #325aff;
}
#akane.active,#rikka.active {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 900px){
  #lead {
    right: 5%;
    top: 5%;
  }
  #akane>div, #rikka>div {
    bottom: 10%;
    right: 0;
  }
}
@media screen and (max-width: 550px){
  #illust-wrap {
    padding-bottom: 150%;
    font-size: 3.4vw;
  }
  #lead {
    right: 0;
  }
  #akane, #rikka {
    padding-bottom: 150%;
  }
  #akane {
    right: 30%;
  }
  #akane>div {
    bottom: 5%;
    right: -25%;
  }
  #rikka {
    right: 35%;
  }
  #rikka>div {
    bottom: 5%;
    right: -30%;
  }
}

/*special*/
#special h3 {
  margin-top: 2em;
}

.tokuten-menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1em;
  margin: 1em 0;
  text-align: center;
}
.tokuten-menu a {
  position: relative;
  background: #baff00;
  color: #000;
  text-decoration: none;
  padding: 1em 1.5em 1em 0;
  border-radius: 8px;
  font-size: 80%;
}
.tokuten-menu a::before {
  position: absolute;
  content: '';
  display: block;
  right: 0.8em;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: none;
  border-left: none;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tokuten-menu a:hover {
  background: #ccc;
}

#special table {
  font-size: 90%;
  text-align: left;
  margin: 0.5em 0;
}
#special table tr{
  border-bottom: 1px dashed #648200;
}
#special table th{
  font-weight: 500;
  white-space: nowrap;
  padding: 0.5em 0.5em 0.5em 0;
}
@media screen and (max-width: 500px){
  #special table {
    width: 100%;
  }
}
.tokuten06 {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.tokuten06 div {
  width: calc(100%/3 - 10px);
  margin: 5px;
}
.tokuten06 div.tate {
  width: 22%;
}
@media screen and (max-width: 700px){
  .tokuten06 div {
    width: calc(100%/2 - 8px);
    margin: 4px;
  }
  .tokuten06 div.tate {
    width: 34%;
  }
  .tokuten-menu {
    grid-template-columns: 1fr;
  }
  .tokuten-menu a {
    font-size: 1em;
  }
}

/*goods*/
.goods-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1em;
  font-size: 90%;
  margin: 1em 0;
}
.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: 0.5em;
  background: none;
  padding: 0;
  line-height: 1.2;
  position: relative;
  text-decoration: none;
}
a.goods-item {
  text-decoration: none;
}
.goods-img {
  position: relative;
  padding-bottom: 100%;
  background: #fff;
  overflow: hidden;
}
.goods-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  object-fit: contain;
  transition: all .2s;
}
.goods-text {
  text-align: left;
  color: #baff00;
}
.goods-price {
  text-align: right;
  background-color: #baff00;
  margin-top: auto;
  padding: 0 0.1em;
  color: #000;
}
.goods-price span {
  font-size: 80%;
}
@media screen and (max-width: 700px){
  .goods-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
a.goods-item:hover .goods-img img{
  transform: scale(1.1);
}


/*access*/
.store-outer h3 {
  margin: 0;
}

.store-outer {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0;
}
.store-wrap {
  position: relative;
  width: 100%;
  padding: 1em;
  margin: 0;
}
.store-map {
  width: 100%;
  height: 30vh;
  padding: 1em 0 .5em;
}
.store-info {
  border-collapse: separate;
  border-spacing: 0 0.5em;
}
.store-info th {
  font-size: 70%;
  font-weight: 500;
  border: 1px solid #baff00;
  color: #baff00;
  padding: 4px;
  white-space: nowrap;
  margin: 0;
}
.store-info td {
  padding: 0 0 0 0.5em;
  line-height: 1.2;
}
a.store-link {
  position: relative;
  background: #baff00;
  color: #000;
  padding: 0.2em;
  margin: 0.5rem auto 0;
  display: block;
  text-align: center;
  width: 100%;
  font-size: 80%;
  text-decoration: none;
}
a.store-link::before {
  position: absolute;
  content: '';
  display: block;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-bottom: none;
  border-left: none;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
a.store-link:hover {
  background: #000;
  color: #baff00;
}
a.store-link:hover::before {
  border-top: 2px solid #baff00;
  border-right: 2px solid #baff00;
}
@media screen and (max-width: 700px){
  .store-outer {
    grid-template-columns: 1fr;
  }
}

.section-wrap#xaccount {
  text-align: center;
  padding: 2em;
}
.follow-icon {
  display: block;
  max-width: 240px;
  width: 50%;
  margin: 0.5em auto 1em;
  border-radius: 30px;
  overflow: hidden;
}
a.follow-button {
  text-decoration: none;
  background: #000;
  border: 2px solid #baff00;
  border-radius: 50px;
  padding: 0.2em 2em;
  color: #baff00;
  display: inline-block;
  font-weight: 700;
}
a.follow-button:hover {
  background: #baff00;
  color: #000;
}


.sns {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 0 1em;
  font-weight: normal;
  height: 60px;
}
.sns li {
  list-style: none;
  margin: 5px;
  color: #ffffff;
}
.sns li a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #000000;
  padding: 8px;
  border-radius: 4px;
}
#share {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 10px #000, 0 0 10px #000, 0 0 10px #000, 0 0 10px #000;
}
#t-icon a {
  padding: 10px;
}

footer {
  padding: 1em;
}
.copy {
  text-align: center;
  font-size: 80%;
  text-shadow: 0 0 10px #000, 0 0 10px #000, 0 0 10px #000, 0 0 10px #000;
}
.copy span{
  display: inline-block;
}

p.cafe-text {
  border-top: 1px dashed #648200;
  padding: 1em 0 0;
}
p.cafe-text span{
  background: #baff00;
  color: #000;
  padding: 0 6px;
  font-size: 80%;
}
.cafe-link {
  display: block;
  max-width: 600px;
  margin: 0 auto 1em;
  text-align: center;
  text-decoration: none;
  font-size: 80%;
}