@charset "utf-8";

/* 濃いピンク #F280CA */
/* 薄いピンク #F2D8E6 */
/* 濃い青み緑 #84D9C9 */
/* 薄い青み緑 #beebe3 */

@font-face {
  font-family: title;
  src: url(../font/font_02.TTF);
}

@font-face {
  font-family: letter;
  src: url(../font/font_01.ttf);
}

@keyframes ashirai-r {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-10px) rotate(3deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@keyframes ashirai-l {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(10px) rotate(-3deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

html {
  scroll-behavior: smooth;
}

*,
::before,
::after {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  box-sizing: border-box;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

body {
  cursor: default;
  background-color: #f2d8e6aa;
  background-image: url(../img/back.png);
  background-repeat: cover;
  background-size: 15%;
  animation: backgroundAnimation 5s infinite, moveBackground 80s linear infinite;
  background-attachment: fixed;
}

.container {
  opacity: 0;
  transform: translateX(-100%);
  transition: all 1s ease-out;
}

@keyframes backgroundAnimation {
  0% {
    background-color: #f2d8e6;
  }
  50% {
    background-color: #beebe3;
  }
  100% {
    background-color: #f2d8e6;
  }
}

@keyframes moveBackground {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

.wrap {
  width: 90%;
  max-width: 1000px;
  display: block;
  margin: 0 auto;
  background-color: #f280ca;
}

.up {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s;
}

.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s;
}

/* header */

#index header {
  display: block;
  width: 100%;
  background-color: #beebe3;
  height: 100vh;
}

#index .header {
  position: relative;
  top: 0;
  width: 100%;
}

#index .header-img {
  display: block;
  width: 100%;
  height: auto;
}

.button {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 10%;
  aspect-ratio: 1/1;
  background-color: inherit;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.button button {
  background-color: #fff;
  border: none;
  width: 80%;
  height: 5%;
  position: relative;
  cursor: pointer;
  transition: all 0.7s;
  z-index: 100;
}

.button button::before {
  content: "";
  display: block;
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -20px;
  cursor: pointer;
  transition: all 0.7s;
}

.button button::after {
  content: "";
  display: block;
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 20px;
  cursor: pointer;
  transition: all 0.7s;
}

.button:hover button,
.button.open button {
  background-color: inherit;
  transition: all 0.7s;
}

.button:hover button::before,
.button.open button::before {
  transform: translateY(20px) rotate(45deg);
  transition: all 0.7s;
}

.button:hover button::after,
.button.open button::after {
  transform: translateY(-20px) rotate(-45deg);
  transition: all 0.7s;
}

#index .firstview,
#index h1 {
  width: 100%;
  height: 100%;
  position: relative;
}

#index .firstview .chara01 {
  position: absolute;
  height: 85%;
  width: auto;
  top: -5%;
  left: -10%;
}

#index .firstview .chara03 {
  position: absolute;
  width: 20%;
  height: auto;
  top: 5%;
  left: 25%;
  animation: ashirai-r 1.5s ease-in-out infinite;
}

#index .firstview .logo {
  position: absolute;
  width: 95%;
  bottom: 30%;
  right: -10%;
  filter: drop-shadow(5px 5px 0px #fff);
}

/* header */

/* footer */

footer {
  background-color: #f2d8e6;
  height: 60vh;
  padding: 5%;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-inner a {
  width: 50%;
  margin-bottom: 10%;
  transition: all 0.4s;
}

.footer-ul {
  display: flex;
}

.footer-ul li {
  margin: 0 15px;
  transition: all 0.4s;
}

.footer-ul li a {
  font-family: "title";
  color: #84d9c9;
  text-shadow: 5px 5px 0 #f280ca, 10px 10px 0 #f280caaa;
  font-size: 3vw;
}

.footer-ul li:hover,
.footer-inner a:hover,
.more:hover {
  transform: scale(1.1);
  transition: all 0.4s;
}

.footer-inner .store_information {
  margin: 50px auto 100px;
}

.footer-inner dl {
  font-family: "letter";
  font-size: 1vw;
  color: #f280ca;
  display: flex;
  margin-bottom: 20px;
}

.footer-inner dt::after {
  content: ":";
  margin: 0 5px;
}

/* footer */

/* index */

#index .about,
#index .info,
#index .sns {
  height: 80vh;
  min-height: fit-content;
  position: relative;
  margin-bottom: 80px;
}

#index .about {
  margin-top: 50px;
  position: relative;
}

#index .title {
  font-family: "title";
  font-size: 7vw;
  color: #84d9c9;
  text-shadow: 5px 5px 0 #f2d8e6, 10px 10px 0 #f2d8e6aa;
  width: fit-content;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

#index .cover {
  margin-left: 5%;
  width: 50%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  top: -4vw;
  left: 0;
}

#index .cover img {
  width: 240%;
  position: absolute;
  top: -30%;
  right: -30%;
}

#index .text {
  color: #f280ca;
  font-family: "letter", serif;
  background-color: #f2d8e6;
  padding: 5px;
  width: fit-content;
}

#index .about-text {
  position: absolute;
  font-size: 1vw;
  bottom: 15%;
  right: 5%;
  z-index: 10;
}

#index .about::before {
  content: "";
  display: block;
  background-color: inherit;
  width: 50%;
  aspect-ratio: 1/1;
  background-image: url(../img/ashirai_01.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 10%;
  right: 10%;
  z-index: 5;
}

#index .about::after {
  content: "";
  display: block;
  background-color: inherit;
  width: 50%;
  height: 50%;
  background-image: url(../img/menu_il_cream-soda.PNG);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 15%;
  right: -30%;
  z-index: 15;
  animation: ashirai-r 1.5s ease-in-out infinite;
}

#index .more.right {
  font-family: "title";
  color: #f2d8e6;
  font-size: 2vw;
  position: absolute;
  bottom: 5%;
  right: 5%;
  transition: all 0.4s;
}

#index .menu {
  height: 80vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  margin-bottom: 80px;
}

#index .menu-text {
  text-align: center;
  font-size: 1.5vw;
  margin: 10px 0 30px;
}

#index .more.center {
  font-family: "title";
  color: #f2d8e6;
  font-size: 2vw;
  z-index: 10;
  transition: all 0.4s;
}

#index .menu-image {
  position: absolute;
  width: 100%;
  height: 100%;
}

#index .menu-image img {
  position: absolute;
  width: 30%;
  height: auto;
  border-radius: 50%;
}

#index .menu-image .chocolate-parfait {
  top: 0;
  left: -10%;
}

#index .menu-image .neapolitan {
  transform: scale(0.9);
  top: 40%;
  left: 5%;
}

#index .menu-image .pudding {
  transform: scale(1.1);
  top: 55%;
  right: 25%;
}

#index .menu-image .mixjuice {
  top: 30%;
  right: -7%;
}

#index .info dl {
  margin: 10px 10%;
  font-family: "letter";
  font-size: 2vw;
  color: #f2d8e6;
  display: flex;
}

#index .info dt::after {
  content: ":";
  margin: 0 5px;
}

#index .sns-grid {
  width: 60%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30%, 3fr));
  gap: 5%;
  position: relative;
}

#index .sns-grid::after {
  content: "";
  display: block;
  background-image: url(../img/ashirai_02.png);
  background-repeat: no-repeat;
  width: 70%;
  aspect-ratio: 2/1;
  background-size: contain;
  position: absolute;
  bottom: -40%;
  left: -40%;
}

#index .announce {
  width: 60%;
  margin: 0 auto 100px;
  background-color: #f2d8e6;
  padding: 20px;
}

#index .announce h3 {
  font-family: "letter";
  font-weight: bolder;
  font-size: 1.5vw;
  color: #f280ca;
  text-shadow: 2px 2px 0 #fff;
  text-align: center;
  margin-bottom: 20px;
}

#index .announce .ann-list li a {
  display: block;
  color: #f280ca;
  font-family: "letter";
  font-size: 1vw;
  margin-bottom: 15px;
  border-bottom: dotted 1px #fff;
}

#index .announce .ann-list li a:hover {
  text-shadow: 1px 1px 1px #fff;
}

#index .sns-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* index以下共通 */

header {
  display: block;
  width: 100%;
  background-color: inherit;
  height: fit-content;
}

.header {
  position: relative;
  top: 0;
  width: 100%;
}

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

.header-logo {
  position: absolute;
  top: 50px;
  left: 30px;
  width: 20%;
  height: fit-content;
  cursor: pointer;
}

.header-logo a {
  display: block;
}

.header-logo a img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(2px 2px 0px #fff) drop-shadow(-1px -1px 0px #fff);
  transition: all 0.4s;
}

.header-logo a img:hover {
  transform: scale(1.1);
  transition: all 0.4s;
}

.title {
  font-family: "title";
  font-size: 7vw;
  color: #84d9c9;
  text-shadow: 5px 5px 0 #f2d8e6, 10px 10px 0 #f2d8e6aa;
  width: fit-content;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  margin-top: 40px;
}

/* concept */

#concept .concept-in {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f2d8e6;
  padding: 50px 0;
  border-radius: 50% 50% 0 0;
  position: relative;
  top: -5vw;
}

#concept .concept-in::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -15%;
  width: 50%;
  aspect-ratio: 1/1;
  background-image: url(../img/menu_il_cake.PNG);
  background-repeat: no-repeat;
  background-size: contain;
  animation: ashirai-r 1.5s ease-in-out infinite;
}

#concept .concept-in::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 50%;
  aspect-ratio: 1/1;
  background-image: url(../img/menu_il_parfait.PNG);
  background-repeat: no-repeat;
  background-size: contain;
  animation: ashirai-l 1.5s ease-in-out infinite;
}

#concept .concept-in img {
  width: 30%;
  height: auto;
  margin: 50px 0;
}

#concept .concept-in p {
  margin: 20px 0;
  font-family: "letter";
  color: #f280ca;
  text-align: center;
  font-size: 1.5vw;
}

#concept .think {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

#concept .think::before {
  content: "";
  display: block;
  position: absolute;
  top: -30%;
  right: 5%;
  width: 50%;
  aspect-ratio: 1/1;
  background-image: url(../img/ashirai_03.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 10;
}

#concept .think .cover {
  width: 60%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: 0 0;
  background-color: #fff;
  border: 5px solid #f2d8e6;
  border-radius: 50%;
  position: relative;
  left: -150%;
  overflow: hidden;
  transform: rotate(-360deg);
  transition: all 2s;
}

#concept .think .cover.in {
  left: -15%;
  transform: rotate(0deg);
  transition: all 2s;
}

#concept .chara-big {
  transform: scale(0.7) translateY(-18%);
}

#concept .name {
  color: #f2d8e6;
  font-family: "letter";
}

#concept .think dl {
  position: relative;
  left: -10%;
}

#concept .think dl dt {
  font-size: 3vw;
  margin-bottom: 15px;
}

#concept .think dl dd {
  font-size: 1vw;
  font-family: "letter";
  color: #fff;
}

#concept .chara-in ul {
  width: 80%;
  margin: 100px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
  grid-gap: 10%;
}

#concept .chara-in ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#concept .chara-in ul li .cover {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #fff;
  overflow: hidden;
}

#concept .chara-in ul li:first-child .cover img {
  width: 100%;
  object-fit: cover;
  object-position: 0 0;
}

#concept .chara-in ul li:last-child .cover img {
  width: 100%;
  object-fit: contain;
  transform: scale(0.9) translateY(15%);
}

#concept .chara-in ul li .name {
  font-size: 2vw;
  margin-top: 15px;
}

/* menu */

#menu .menu-nav {
  width: 70%;
  margin: 30px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  grid-gap: 10%;
}

#menu .menu-nav li a {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #f2d8e6;
  border-radius: 50%;
  outline: dotted 10px #f280ca;
  outline-offset: -20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f280ca;
  font-family: "letter";
  font-size: 2vw;
  position: relative;
  transition: all 0.4s;
}

#menu .menu-nav li a:hover {
  transform: rotate(20deg);
  box-shadow: 5px 5px 0px #84d9c9, 10px 10px 0px #fff;
  transition: all 0.4s;
}

#menu .menu-section {
  margin: 100px 0;
}

#menu .menu-wrap {
  background-color: #f2d8e6;
  width: 80%;
  margin: 20px auto;
  padding: 5px;
  position: relative;
}

#menu .select {
  display: flex;
  align-items: flex-end;
  margin: 20px auto;
}

#menu .select-img {
  width: 60%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-left: 3%;
}

#menu .select-menu {
  background-color: #84d9c9aa;
  padding: 20px;
  margin: 0 3% -20px -7%;
  color: #fff;
  font-family: "letter";
}

#menu .select-menu dt {
  margin-bottom: 10px;
}

#menu .select-menu dt,
#menu .select-menu .price {
  font-size: 0.9vw;
  font-weight: bold;
}

#menu .select-menu dd {
  font-size: 0.7vw;
  margin-bottom: 10px;
}

#menu .menu-list {
  margin: 50px 0;
}

#menu .menu-list li {
  margin-top: 20px;
}

#menu .menu-list li:hover .menu-list-dl dt,
#menu .menu-list li:hover .menu-list-dl dd {
  transition: all 0.4s;
  color: #fff;
}

#menu .menu-list .menu-list-dl {
  display: flex;
  width: 80%;
  margin: 0 auto;
}

#menu .menu-list .menu-list-dl dt,
#menu .menu-list .menu-list-dl dd {
  color: #f280ca;
  font-family: "letter";
  transition: all 0.4s;
  cursor: pointer;
  z-index: 10;
}

#menu .menu-list .menu-list-dl dt {
  width: 70%;
  overflow: hidden;
  white-space: nowrap;
}

#menu .menu-list .menu-list-dl dt::after {
  content: "--------------------------------------------------------------------------";
  padding: 0 10px;
}

#menu .menu-list .menu-list-dl .ex,
#menu .menu-list .menu-list-dl .menu-img {
  display: none;
}

#menu .menu-list .menu-list-dl .price {
  margin-left: 10px;
}

#menu .food .title {
  position: relative;
}

#menu .food .title::before {
  content: "";
  display: block;
  position: absolute;
  top: -50%;
  left: -50%;
  width: 90%;
  aspect-ratio: 1/1;
  background-image: url(../img/character_02.PNG);
  background-repeat: no-repeat;
  background-size: contain;
  animation: ashirai-l 1.5s ease-in-out infinite;
}

#menu .food .menu-wrap::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -5%;
  right: -45%;
  width: 50%;
  aspect-ratio: 1/1;
  background-image: url(../img/ashirai_04.png);
  background-repeat: no-repeat;
  background-size: contain;
}

#menu .goods .menu-wrap::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 50%;
  aspect-ratio: 1/1;
  background-image: url(../img/ashirai_05.png);
  background-repeat: no-repeat;
  background-size: contain;
}

/* access */

.map {
  width: 55%;
  aspect-ratio: 2/1.3;
  margin: 0 auto;
  background-color: #f2d8e6;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.4s;
  cursor: pointer;
}

.map:hover {
  box-shadow: 5px 5px 0px #84d9c9, 10px 10px 0px #fff;
  transition: all 0.4s;
}

#access .map::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -23%;
  left: -45%;
  width: 60%;
  aspect-ratio: 1/1;
  background-image: url(../img/ashirai_06.png);
  background-repeat: no-repeat;
  background-size: contain;
}

#access .map::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -60%;
  right: -60%;
  width: 70%;
  aspect-ratio: 1/1;
  background-image: url(../img/character_01.PNG);
  background-repeat: no-repeat;
  background-size: contain;
  animation: ashirai-r 1.5s ease-in-out infinite;
}

#access .info dl {
  margin: 30px 10%;
  font-family: "letter";
  font-size: 2vw;
  color: #f2d8e6;
  display: flex;
}

#access .info dt::after {
  content: ":";
  margin: 0 5px;
}

#access .contact-form {
  background-color: #f2d8e6;
  width: 80%;
  margin: 20px auto;
  padding: 5px;
  margin-bottom: 100px;
}

#access form {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.select_wrapper {
  position: relative;
  width: 100%;
  height: 50px;
  /* background-color: #fff; */
  border-radius: 10px;
  /* color: #F280CA;
    font-size: 20px;
    text-align: center; */
  margin: 50px 0;
  cursor: pointer;
}

.select_wrapper::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 20px;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 12px solid #fff;
  border-bottom: 0;
  pointer-events: none;
  cursor: pointer;
}

#access .form-select {
  width: 100%;
  height: 100%;
  /* background-color: #fff; */
  background: linear-gradient(90deg, #fff 90%, #f280ca 90%);
  border: 2px solid #f280ca;
  border-radius: 10px;
  color: #f280ca;
  font-size: 20px;
  text-align: center;
  /* margin: 50px 0; */
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

#access .input {
  width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
  background-color: #f280ca;
  /* border: 2px solid #F280CA; */
  border-radius: 10px;
  margin-bottom: 20px;
}

#access .input label {
  width: 30%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 2px solid #f280ca;
  border-radius: 10px 0 0 10px;
  background-color: #f280ca;
}

#access .input input {
  width: 70%;
  height: 100%;
  background-color: #fff;
  border-radius: 0 10px 10px 0;
  border: 2px solid #f280ca;
  padding-left: 5%;
  color: #f280ca;
}

#access .textarea {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f280ca;
  /* border: 2px solid #F280CA; */
  border-radius: 10px;
  margin-bottom: 20px;
}

#access .textarea label {
  width: 100%;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border: 2px solid #f280ca;
  background-color: #f280ca;
  /* border: 2px solid #F280CA; */
  border-radius: 10px 10px 0 0;
}

#access .textarea textarea {
  width: 100%;
  border: none;
  border-radius: 0 0 10px 10px;
  border: 2px solid #f280ca;
  background-color: #fff;
  color: #f280ca;
}

#access .submit {
  width: 30%;
  height: 50px;
  background-color: #f280ca;
  border-radius: 10px;
  border: none;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  cursor: pointer;
}

/* hamburger menu */

.ham-menu {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 100%;
  right: 0;
  background-color: #84d9c9aa;
  backdrop-filter: blur(10px);
  z-index: 50;
  transition: all 1s;
}

.ham-menu.open {
  left: 0;
  transition: all 1s;
}

.ham-menu .ham-ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}

.ham-menu .ham-ul .ham-img {
  width: 20%;
  min-width: 300px;
  height: auto;
  margin-bottom: 50px;
  filter: drop-shadow(2px 2px 5px #fff) drop-shadow(-1px -1px 5px #fff);
  transition: all 0.4s;
}

.ham-menu .ham-ul .ham-img:last-child {
  width: 10%;
  min-width: 150px;
  height: auto;
  margin-top: 50px;
  filter: drop-shadow(2px 2px 5px #fff) drop-shadow(-1px -1px 5px #fff);
  transition: all 0.4s;
}

.ham-menu .ham-ul .ham-img:hover {
  transform: scale(1.1);
  transition: all 0.4s;
}

.ham-menu .ham-ul li {
  margin-bottom: 30px;
  transition: all 0.4s;
}

.ham-menu .ham-ul li a {
  font-family: "title";
  color: #fff;
  text-shadow: 5px 5px 0 #f280ca, 10px 10px 0 #f280caaa;
  font-size: 3vw;
}

.ham-menu .ham-ul li:hover {
  transform: translateY(-10px);
  transition: all 0.4s;
}

/* topへ戻るボタン */

.top.in {
  width: 100px;
  padding: 5px;
  color: #fff;
  font-family: "title";
  font-size: 2vw;
  text-shadow: 3px 3px 0 #84d9c9, 6px 6px 0 #84d9c9aa;
  background-color: #f280ca;
  border-radius: 10px;
  border: 3px solid #fff;
  position: fixed;
  box-shadow: 2px 2px 5px #f280ca;
  bottom: 50px;
  right: 20%;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}

.top {
  bottom: -50px;
  opacity: 0;
  transition: all 0.5s;
}

.top:hover {
  transform: scale(1.1);
  transition: all 0.5s;
}

/* campaign */

#index .campaign {
  position: fixed;
  inset: 0;
  margin: auto;
  width: 20vw;
  height: fit-content;
  background-color: #f280caaa;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

#index .cam-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 10%;
  aspect-ratio: 1/1;
  background-color: #f280ca;
  color: #fff;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 110;
}

#index .campaign .title {
  font-size: 5vw;
}

#index .campaign .cam-img {
  margin: 20px auto;
  width: 80%;
}

#index .campaign dl {
  width: 80%;
}

#index .campaign dl dt {
  font-family: "letter";
  font-weight: bolder;
  font-size: 20px;
  color: #fff;
  text-shadow: 1px 1px 0 #f280ca;
  text-align: center;
  margin-bottom: 10px;
}

#index .campaign dl dd {
  font-family: "letter";
  color: #fff;
  font-size: 13px;
  margin-top: 10px;
}

#index .campaign .cam-button {
  margin: 20px 0 40px;
  width: 60%;
  height: 40px;
  border-radius: 10px;
  background-color: #84d9c9;
  color: #fff;
  font-family: "letter";
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* event.html */

#event h3 {
  font-family: "letter";
  font-size: 2.5vw;
  width: fit-content;
  padding: 0 20px;
  color: #84d9c9;
  text-shadow: 2px 2px 0 #fff;
  background: linear-gradient(transparent 70%, #f2d8e6aa 70%);
  margin: 0 auto;
}

#event .big-img {
  width: 50%;
  display: block;
  border: 2px solid #f2d8e6;
  margin: 50px auto;
}

#event .event dl {
  width: 50%;
  margin: 0 auto;
  font-family: "letter";
  font-size: 20px;
  color: #f2d8e6;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

#event .event dt::after {
  content: ":";
  margin: 0 5px;
}

#event .com {
  width: 50%;
  margin: 50px auto;
  font-family: "letter";
  font-size: 17px;
  color: #fff;
}

#event .com p {
  margin-top: 20px;
}

#event .menu-grid ul {
  margin: 50px auto;
  width: 80%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20px, 1fr));
  gap: 5%;
}

#event .menu-grid ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#event .menu-grid ul li p {
  color: #fff;
  font-family: "letter";
}

#event .menu-grid ul li .menu-title {
  font-size: 25px;
}

/* 800px以下 */

@media screen and (max-width: 800px) {
  .wrap {
    width: 100%;
    overflow: hidden;
  }

  body {
    cursor: default;
    background-image: none;
    background-color: #f2d8e6aa;
    animation: none;
  }

  #index header {
    height: 40vh;
  }

  #index .firstview .chara01 {
    left: 5%;
  }

  #index .firstview .chara03 {
    width: 15%;
    left: 35%;
  }

  #index .firstview .logo {
    position: absolute;
    width: 70%;
    bottom: 30%;
    right: 5%;
    filter: drop-shadow(5px 5px 0px #fff);
  }

  footer {
    height: fit-content;
  }

  .footer-inner a {
    margin-bottom: 3%;
  }

  .footer-ul li a {
    font-family: "title";
    color: #84d9c9;
    text-shadow: 2px 2px 0 #f280ca, 4px 4px 0 #f280caaa;
    font-size: 3vw;
  }

  .footer-inner .store_information {
    margin: 20px auto 0;
  }

  .footer-inner dl {
    font-size: 1.3vw;
    margin-bottom: 5px;
  }

  .button button::before {
    top: -10px;
  }

  .button button::after {
    top: 10px;
  }

  .button:hover button::before,
  .button.open button::before {
    transform: translateY(10px) rotate(45deg);
  }

  .button:hover button::after,
  .button.open button::after {
    transform: translateY(-10px) rotate(-45deg);
  }

  #index .about {
    height: 45vh;
    margin-bottom: 15px;
  }

  #index .menu {
    height: 40vh;
    margin-bottom: 15px;
  }

  #index .info {
    height: 35vh;
    margin-bottom: 15px;
  }

  #index .sns {
    height: 40vh;
    margin-bottom: 50px;
  }

  #index .title {
    font-size: 10vw;
    text-shadow: 3px 3px 0 #f2d8e6, 6px 6px 0 #f2d8e6aa;
  }

  .title {
    font-size: 10vw;
    text-shadow: 3px 3px 0 #f2d8e6, 6px 6px 0 #f2d8e6aa;
  }

  #index .text {
    color: #f280ca;
    font-family: "letter", serif;
    background-color: #f2d8e6;
    padding: 5px;
    width: fit-content;
  }

  #index .about-text {
    position: absolute;
    font-size: 1.5vw;
    bottom: 15%;
    right: 5%;
    z-index: 10;
  }

  #index .about::before {
    width: 40%;
  }

  #index .about::after {
    right: -25%;
  }

  #index .menu-text {
    margin: 10px 0 10px;
  }

  #index .more.right,
  #index .more.center {
    font-size: 4.5vw;
  }

  #index .announce h3 {
    font-size: 2.5vw;
    margin-bottom: 15px;
  }

  #index .announce .ann-list li a {
    font-size: 2vw;
    margin-bottom: 10px;
  }

  .top.in {
    width: 10%;
    font-size: 2vw;
    text-shadow: 1px 1px 0 #84d9c9, 2px 2px 0 #84d9c9aa;
    border: 1px solid #fff;
    right: 5%;
  }

  #index .cam-close {
    font-size: 20px;
  }

  #index .campaign .title {
    font-size: 10vw;
  }

  #index .campaign {
    width: 80vw;
    border: 2px solid #fff;
  }

  #index .campaign dl dt {
    font-size: 15px;
    margin-bottom: 10px;
  }

  #index .campaign dl dd {
    font-size: 10px;
    margin-top: 10px;
  }

  #index .campaign .cam-button {
    margin: 15px 0 20px;
  }

  .ham-menu .ham-ul li a {
    text-shadow: 2px 2px 0 #f280ca, 4px 4px 0 #f280caaa;
    font-size: 5vw;
  }

  .header-logo {
    position: absolute;
    top: 15px;
    left: 30px;
    width: 20%;
    height: fit-content;
    cursor: pointer;
  }

  #concept .concept-in {
    top: -7vw;
  }

  #concept .concept-in img {
    width: 35%;
    margin: 10px 0;
  }

  #concept .concept-in p {
    font-size: 2.5vw;
  }

  #concept .think .cover {
    width: 60%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: 0 0;
    background-color: #fff;
    border: 5px solid #f2d8e6;
    border-radius: 50%;
    position: relative;
    left: -100%;
    overflow: hidden;
    transform: rotate(0);
    transition: all 2s;
  }

  #concept .think .cover.in {
    left: -10%;
    transform: rotate(0);
    transition: all 2s;
  }

  #concept .think dl dt {
    font-size: 3.5vw;
    margin-bottom: 10px;
  }

  #concept .think dl dd {
    font-size: 2vw;
    font-family: "letter";
    color: #fff;
  }

  #concept .chara-in ul li .name {
    font-size: 3vw;
    margin-top: 15px;
  }

  #menu .menu-nav li a {
    outline: dotted 5px #f280ca;
    outline-offset: -10px;
    font-size: 3.5vw;
  }

  #menu .select-menu {
    padding: 10px;
  }

  #menu .select-menu dt,
  #menu .select-menu .price {
    font-size: 2vw;
  }

  #menu .select-menu dd {
    font-size: 1.5vw;
  }

  #menu .menu-list .menu-list-dl dt,
  #menu .menu-list .menu-list-dl dd {
    font-size: 3vw;
  }

  #menu .food .title::before {
    top: -90%;
    left: -60%;
    width: 120%;
  }

  #menu .food .menu-wrap::before {
    right: -25%;
    width: 35%;
  }

  #menu .goods .menu-wrap::before {
    bottom: -20%;
    left: -10%;
    width: 45%;
  }

  .map {
    width: 70%;
    cursor: pointer;
  }

  #access .map::before {
    left: -15%;
    width: 40%;
  }

  #access .map::after {
    bottom: -50%;
    right: -40%;
    width: 50%;
  }

  #access .info {
    margin-top: 30px;
  }

  #access .info dl {
    margin: 15px 10%;
    font-family: "letter";
    font-size: 3vw;
    color: #f2d8e6;
    display: flex;
  }

  #access .info dt::after {
    content: ":";
    margin: 0 5px;
  }

  #access form {
    width: 80%;
  }

  .select_wrapper {
    width: 100%;
    height: 50px;
    margin: 30px 0;
  }

  .select_wrapper::after {
    top: 22px;
    right: 15px;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 10px solid #fff;
    border-bottom: 0;
  }

  #access .form-select {
    background: linear-gradient(90deg, #fff 80%, #f280ca 80%);
    border: 2px solid #f280ca;
    text-align: start;
    padding-left: 13px;
    font-size: 13px;
  }

  #access .input {
    height: 35px;
  }

  #access .input label {
    font-size: 2.5vw;
  }

  #access .input input {
    width: 70%;
    height: 100%;
    background-color: #fff;
    border-radius: 0 10px 10px 0;
    border: 2px solid #f280ca;
    padding-left: 5%;
  }

  #access .textarea {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f280ca;
    /* border: 2px solid #F280CA; */
    border-radius: 10px;
    margin-bottom: 20px;
  }

  #access .textarea label {
    height: 30px;
    font-size: 3vw;
  }

  #access .submit {
    font-size: 3vw;
  }

  #event h3 {
    font-size: 5vw;
    padding: 0 10px;
    text-shadow: 1px 1px 0 #fff;
  }

  #event .big-img {
    width: 70%;
    margin: 30px auto;
  }

  #event .event dl {
    width: 70%;
    font-size: 3vw;
  }

  #event .com {
    width: 70%;
    margin: 30px auto;
    font-size: 2.5vw;
  }

  #event .menu-grid ul {
    margin: 30px auto;
    width: 80%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20px, 1fr));
    gap: 5%;
  }

  #event .menu-grid ul li p {
    color: #fff;
    font-family: "letter";
    font-size: 2.3vw;
  }

  #event .menu-grid ul li .menu-title {
    font-size: 2.5vw;
  }

  #stalker {
    display: none;
  }
}

#stalker {
  pointer-events: none;
  position: fixed;
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
  background: #f2d8e6aa;
  border-radius: 50%;
  transform: translate(0, 0);
  transition: transform 0.2s;
  transition-timing-function: ease-out;
  z-index: 999;
}

/* opening */

.opening {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #f2d8e6;
  z-index: 1000;
  overflow: hidden;
}

.card-random {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.card {
  background-image: url(../img/card_front.png);
  width: 10%;
  aspect-ratio: 1/1.3;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
}

.opening .card-rotate:first-child {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.opening .card-rotate .card-f {
  position: relative;
  width: 10%;
  height: auto;
  backface-visibility: hidden;
  animation: card 1s ease-out forwards;
  z-index: 2;
}

.opening .card-rotate .card-b {
  position: absolute;
  width: 10%;
  height: auto;
  backface-visibility: hidden;
  animation: card 1s ease-in reverse forwards;
  z-index: 1;
}

@keyframes card {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(900deg);
  }
}

.opening-logo {
  display: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.opening-logo img {
  width: 30%;
}
