@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Chiron+GoRound+TC:wght@400;500;700&display=swap");
:root {
  --nav-height: 60px;
  --shadow-big: 3vw;
  --shadow-normal: 1.5vw;
  --shadow-small: 1vw;
}
@media only screen and (min-width: 481px) {
  :root {
    --nav-height: 80px;
    --shadow-big: 16px;
    --shadow-normal: 8px;
    --shadow-small: 5px;
  }
}

:root {
  --nav-height: 60px;
  --shadow-big: 3vw;
  --shadow-normal: 1.5vw;
  --shadow-small: 1vw;
}
@media only screen and (min-width: 481px) {
  :root {
    --nav-height: 80px;
    --shadow-big: 16px;
    --shadow-normal: 8px;
    --shadow-small: 5px;
  }
}

nav {
  pointer-events: none;
  z-index: 3;
  position: fixed;
  display: flex;
  width: 100%;
  max-width: 480px;
  padding: 0 5%;
  margin: auto;
  top: 0;
  right: 0;
  left: 0;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-height);
}
nav .logo {
  display: block;
  height: 60%;
  transition: opacity 0.5s;
}
nav .logo.hide {
  opacity: 0;
}
nav .hamburger,
nav .nav-close {
  pointer-events: all;
  display: block;
  width: 35px;
  filter: drop-shadow(0 0 0.5em #dd4d93) drop-shadow(0 0 1em rgba(221, 77, 147, 0.5));
}
nav .nav-close {
  position: absolute;
  right: 4.5%;
  top: calc((var(--nav-height) - 35px) * 0.5);
}

.nav-wrap {
  pointer-events: all;
  display: none;
  z-index: 1;
  position: fixed;
  width: 100%;
  max-width: 480px;
  padding: 18% 0 10% 0;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #fde4ee;
  border: 5px solid #dd4d93;
  box-shadow: 0 0.5em 3em #000;
}
.nav-wrap .logo-nav {
  display: block;
  width: 25%;
  margin: auto;
  margin-bottom: 5%;
}
.nav-wrap .nav-block {
  width: 80%;
  margin: auto;
}
.nav-wrap .nav-block a {
  position: relative;
  display: block;
  font-size: 5vw;
  padding: 0.75em 0;
  text-align: center;
  color: #dd4d93;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 481px) {
  .nav-wrap .nav-block a {
    font-size: 24px;
  }
}
.nav-wrap .nav-block a:first-child::before {
  display: none;
}
.nav-wrap .nav-block a::before {
  position: absolute;
  display: block;
  content: "";
  width: 60%;
  height: 1px;
  top: 0;
  left: 50%;
  background: #FFF;
  transform: translateX(-50%);
}

@media only screen and (min-width: 481px) {
  nav {
    padding: 0 25px;
  }
  nav .nav-close {
    position: absolute;
    right: 4.5%;
    top: calc((var(--nav-height) - 35px) * 0.5);
  }
  .nav-wrap {
    padding: 75px 0 50px 0;
  }
}
html {
  font-size: 20px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

body {
  position: relative;
  width: 100%;
  margin: auto;
  color: #000;
  background: url("../img/bg-star.svg") #fde4ee no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  font-family: "Chiron GoRound TC";
  font-size: 4vw;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 481px) {
  body {
    font-size: 19.2px;
  }
}
body.fix {
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 150%;
}

a {
  text-decoration: none;
  color: inherit;
}

.fullimg {
  display: block;
  width: 100%;
}

.fullimgHeight {
  display: block;
  height: 100%;
  margin: auto;
}

input {
  background: none;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Chiron GoRound TC";
  border-radius: 0;
  -webkit-border-radius: 0;
  font-size: 4vw;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 481px) {
  input {
    font-size: 19.2px;
  }
}
input:focus {
  outline: none;
}

ul {
  list-style: none;
  margin-left: 1rem;
}
ul li {
  position: relative;
}
ul li::before {
  position: absolute;
  content: "・";
  left: -1rem;
}

.loading-block {
  display: none;
  z-index: 9;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
}
.loading-block p {
  position: absolute;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  border: 5px solid #dd4d93;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  animation: lading 1s linear infinite;
}
@keyframes lading {
  to {
    transform: rotate(359deg);
  }
}

.wrap {
  position: relative;
  width: 100%;
  max-width: 1024px;
  margin: auto;
  transform-origin: top;
}

@media only screen and (min-width: 1025px) {
  .for-m {
    display: none !important;
  }
}
@media only screen and (max-width: 1024px) {
  .for-pc {
    display: none !important;
  }
  body {
    overflow: hidden;
  }
  .wrap {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}/*# sourceMappingURL=style.css.map */