:root {
  --spacing: 0.05em;
  --bs-primary: rgb(36 37 99);
  --bs-primary-rgb: 36, 37, 99;
}

* {
  letter-spacing: var(--spacing);
}

.section-title, .en {
  font-family: copperplate, serif;
  font-style: normal;
  font-weight: 500;
}

.mincho {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 400;
}

html {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1vw;
  }
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 10px;
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 10px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 2;
  color: #000;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1024px) {
  body {
    font-size: 1.6rem;
  }
}

a {
  color: #000;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

[type=text],
[type=tel],
textarea {
  width: 100%;
  padding: 0.5rem;
  font-size: max(16px, 1rem);
  vertical-align: top;
  border: 0.1rem solid #a5a5af;
  border-radius: 0.2rem;
  outline: none;
  box-shadow: none;
}

textarea {
  height: 10rem;
}
@media screen and (min-width: 768px) {
  textarea {
    height: 16rem;
  }
}

[type=submit],
[type=reset],
[type=button],
button {
  padding: 0.5rem 1.5rem;
  font-size: 1.2rem;
  line-height: 1;
  color: #fff;
  background-color: #09f;
  border: 0.2rem solid #09f;
  border-radius: 0.4rem;
}
@media screen and (min-width: 768px) {
  [type=submit],
  [type=reset],
  [type=button],
  button {
    padding: 0.7rem 1.5rem;
    font-size: 1.6rem;
  }
}
[type=submit].reset,
[type=reset].reset,
[type=button].reset,
button.reset {
  color: #fff;
  background-color: #bbb;
  border-color: #aaa;
}

[type=checkbox] {
  margin-right: 0.3em;
}

.marker {
  background: linear-gradient(transparent 50%, #fff200 50%);
}

.text-right {
  text-align: right !important;
}
.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}

.header {
  min-height: 4rem;
  padding: 0 2rem;
}
@media screen and (min-width: 768px) {
  .header {
    min-height: 6rem;
    padding: 0 3rem;
  }
}
.header :where(h1) {
  color: #09f;
  white-space: nowrap;
}
.header .nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateX(100%);
}
@media screen and (min-width: 768px) {
  .header .nav {
    position: relative;
    top: auto;
    left: auto;
    display: flex;
    align-items: center;
    width: auto;
    height: auto;
    opacity: 1;
    transform: none;
  }
}
.nav-active .header .nav {
  opacity: 1;
  transform: translateX(0);
}
.header .nav :where(ul) {
  width: 50vw;
  padding: 18rem 0 0;
  margin: 0 0 0 50vw;
  background-color: #fff;
  background-image: url("../img/menu_bg.jpg");
  background-repeat: no-repeat;
  background-position: right 0 top 4rem;
  background-size: 100vw auto;
}
.webp .header .nav :where(ul) {
  background-image: url("../img/menu_bg.webp");
}
@media screen and (min-width: 768px) {
  .webp .header .nav :where(ul) {
    background-image: none;
  }
}
@media screen and (min-width: 768px) {
  .header .nav :where(ul) {
    display: flex;
    gap: 2rem;
    width: auto;
    padding: 0;
    margin: 0;
    background-color: transparent;
    background-image: none;
  }
}
.header .nav :where(ul) li {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .header .nav :where(ul) li {
    text-align: left;
  }
}
.header .nav :where(ul) li a {
  display: block;
  padding: 1.4rem 0 1.4rem var(--spacing);
  font-size: 2rem;
  line-height: 1.3;
  color: #000;
}
@media screen and (min-width: 768px) {
  .header .nav :where(ul) li a {
    padding: 0;
    font-size: 1.6rem;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1024px) {
  .header .nav :where(ul) li a {
    line-height: 2;
  }
}
.header .menu {
  position: fixed;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 1000;
  width: 3rem;
  height: 3rem;
}
.header .menu :where(svg) {
  width: 100%;
  height: auto;
  vertical-align: top;
  stroke: #000;
  stroke-linecap: round;
  stroke-width: 8px;
}
.header .menu :where(svg) :where(line) {
  transition: transform 0.3s;
  transform-origin: center;
}
.header .menu :where(svg) :where(line):nth-child(1) {
  transform: translateY(-20px);
}
.nav-active .header .menu :where(svg) :where(line):nth-child(1) {
  transform: rotate(225deg) translateY(0);
}
.nav-active .header .menu :where(svg) :where(line):nth-child(2) {
  transform: scaleX(0);
}
.header .menu :where(svg) :where(line):nth-child(3) {
  transform: translateY(20px);
}
.nav-active .header .menu :where(svg) :where(line):nth-child(3) {
  transform: rotate(-225deg) translateY(0);
}

.mv {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .mv {
    margin: 0;
  }
}
.mv img {
  width: 100%;
  height: auto;
}

section {
  padding: 6rem 0 0;
}
@media screen and (min-width: 768px) {
  section {
    padding: 14rem 0 0;
  }
}

.section-title {
  margin-bottom: 2rem;
  font-size: 3rem;
  color: #09f;
  text-align: center;
  text-indent: var(--spacing);
}
@media screen and (min-width: 768px) {
  .section-title {
    margin-bottom: 4rem;
    font-size: 6rem;
  }
}

.section-catch {
  margin-bottom: 2rem;
  font-size: 2rem;
  text-align: center;
  text-indent: var(--spacing);
}
@media screen and (min-width: 768px) {
  .section-catch {
    margin-bottom: 4rem;
    font-size: 3rem;
  }
}

.data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 2rem;
  border: 0.1rem solid #eee;
}
@media screen and (min-width: 768px) {
  .data {
    gap: 0.3rem;
    max-width: 1000px;
    margin: 0 4rem;
    border: none;
  }
}
@media screen and (min-width: 1024px) {
  .data {
    margin: 0 auto;
  }
}
.data dl {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .data dl {
    display: flex;
    gap: 0.3rem;
  }
}
.data dl dt,
.data dl dd {
  padding: 0.5rem 1rem;
}
@media screen and (min-width: 768px) {
  .data dl dt,
  .data dl dd {
    padding: 0.8rem 1.5rem;
    border: 0.1rem solid #eee;
  }
}
.data dl dt {
  font-weight: normal;
  background-color: #eee;
}
@media screen and (min-width: 768px) {
  .data dl dt {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 20rem;
  }
}
.data dl dd {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .data dl dd {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-start;
    padding: 0.8rem 1.5rem;
  }
}
.data ul {
  list-style: disc;
}

.icon {
  display: inline-block;
  width: 1.4em;
  margin-right: 0.3em;
  vertical-align: middle;
}

.googlemap {
  margin: 2rem 2rem 0;
}
@media screen and (min-width: 768px) {
  .googlemap {
    max-width: 1000px;
    margin: 4rem 4rem 0;
  }
}
@media screen and (min-width: 1024px) {
  .googlemap {
    margin: 4rem auto 0;
  }
}
.googlemap iframe {
  width: 100%;
  height: 50vh;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .googlemap iframe {
    height: 50rem;
  }
}

.contents {
  margin: 0 2rem;
}
@media screen and (min-width: 768px) {
  .contents {
    max-width: 1000px;
    margin: 0 4rem;
  }
}
@media screen and (min-width: 1024px) {
  .contents {
    margin: 0 auto;
  }
}
.contents p {
  --spacing: 0;
  margin: 2rem 0 0;
  line-height: 1.6;
  text-align: justify;
}

.shop {
  padding: 0.5rem 1rem;
  margin-top: 0.3rem;
  line-height: 1.6;
  border: 0.1rem solid #eee;
}
@media screen and (min-width: 768px) {
  .shop {
    max-width: 1000px;
    padding: 0.8rem 1.5rem;
    margin: 0.3rem auto 0;
    line-height: 2;
  }
}
.shop-wrapper {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .shop-wrapper {
    margin-top: 2rem;
  }
}

.form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 2rem;
}
@media screen and (min-width: 768px) {
  .form {
    gap: 0.3rem;
    max-width: 1000px;
    margin: 0 4rem;
    border: none;
  }
}
@media screen and (min-width: 1024px) {
  .form {
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .form dl {
    display: grid;
    grid-template-columns: 20rem 1fr;
  }
}
.form dl dt {
  padding: 0 0 0.5rem;
}
@media screen and (min-width: 768px) {
  .form dl dt {
    place-self: center end;
    padding: 0 1em 0 0;
  }
}

.contact-thanks {
  padding: 1rem;
  margin: 0 0 1rem;
  line-height: 1.5;
  text-align: center;
  border: 0.2rem solid #09f;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .contact-thanks {
    padding: 2rem;
    margin: 0 0 2rem;
  }
}
.contact-thanks :where(h3) {
  margin: 0 0 1rem;
  font-size: 1.3em;
  line-height: 1;
  color: #ea5e90;
}
@media screen and (min-width: 768px) {
  .contact-thanks :where(h3) {
    font-size: 1.3em;
  }
}
.contact-thanks :where(p) {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .contact-thanks :where(p) {
    margin-top: 1rem;
  }
}
.contact-back {
  display: flex;
  justify-content: center;
  margin: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-back {
    margin: 2rem;
  }
}
.contact-back :where(a) {
  padding: 0.7rem 2rem;
  line-height: 1;
  border: 0.2rem solid #ea5e90;
  border-radius: 100vw;
}
@media screen and (min-width: 768px) {
  .contact-back :where(a) {
    padding: 1rem 2rem;
  }
}

.must {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.8em;
  padding: 0 1rem;
  margin-left: 0.5em;
  font-size: 0.8em;
  line-height: 1;
  color: #fff;
  background-color: #09f;
  border-radius: 100vw;
}

.button {
  text-align: center;
}

.confirm-box {
  padding: 0.5rem;
  line-height: 1.6;
  border: 0.1rem solid #a5a5af;
  border-radius: 0.3rem;
}

footer {
  padding: 14vw 0 0;
  margin-top: 2rem;
  background-image: url("../img/footer_bg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 16vw 0 0;
    margin-top: 4rem;
  }
}
.webp footer {
  background-image: url("../img/footer_bg.webp");
}

.copyright {
  margin: 2rem 0 1rem;
  font-size: 0.8em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .copyright {
    margin: 4rem 0 2rem;
  }
}

.fade-up {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transform: translateY(5rem);
}
.fade-up.fade-up-active {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 {
  transition-delay: 0.1s;
}

.fade-up-delay-2 {
  transition-delay: 0.2s;
}

.fade-up-delay-3 {
  transition-delay: 0.3s;
}

.fade-up-delay-4 {
  transition-delay: 0.4s;
}

.fade-up-delay-5 {
  transition-delay: 0.5s;
}

/*# sourceMappingURL=style.css.map */
