<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

body {
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 62.5%;
  font-weight: normal;
  line-height: 1.7;
  color: #360E00;
}

a {
  text-decoration: none;
}

p {
  padding: 0 !important;
  margin: 0 !important;
}

section {
  overflow: auto;
  clear: both;
}

.main {
  background-image: url("../images/bg_main.jpg");
  background-attachment: fixed;
  background-position: top right;
  background-size: cover;
}

.article {
  font-size: 1.7em;
}

.article p {
  line-height: 1.6;
}

.article,
.top_image_in {
  width: 750px;
  margin: 0 auto;
}

.fadein {
  opacity: 0;
  transition: all 2s;
  transform: translateY(10px);
}

.fadeinleft {
  opacity: 0;
  transition: all 1.5s;
  transform: translateX(-40px);
}

.fadeinright {
  opacity: 0;
  transition: all 1.5s;
  transform: translateX(40px);
}

.popup {
  opacity: 0;
}

.popup.isActive {
  animation: popup 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
}

@keyframes popup {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.8);
  }

  100% {
    transform: translateY(0) scale(1.0);
  }

  80%,
  100% {
    opacity: 1;
  }
}

.top_image_in img {
  width: 100%;
}

.pc_img {
  display: block !important;
}

.sp_img {
  display: none !important;
}

.sec_cta {
  padding: 2em;
  color: #fff;
  text-align: center;
  background-image: url("../images/bg_cta.jpg");
  background-size: cover;
}

.txt_cta {
  font-size: 20px;
}

h2 {
  padding: 0;
  margin: 20px 0 0;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 2.2em;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
}

h3 {
  padding: 0;
  margin: 0 0 20px;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.8em;
  font-weight: 100;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
}

.tit_schedule {
  width: 50%;
  margin: 0 auto;
}

.btn_schedule {
  width: 80%;
  margin: 10px auto 20px;
}

.btn_cta {
  width: 95%;
  margin: 1.5em auto;
}

.btn_ani,
._button-wrapper {
  cursor: pointer;
  transform-origin: center;
  animation: fuwafuwa 1s ease 0s infinite alternate;
}

@keyframes fuwafuwa {
  from {
    transform: scale(0.9, 0.9);
  }

  to {
    transform: scale(1, 1);
  }
}

form input[type="mail"] {
  display: block;
  width: 90%;
  padding: 15px 10px;
  margin: 20px auto;
  font-size: 1.1em;
  border-color: #ccc;
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
}

.sec_movie {
  padding: 2em 0;
}

.iframe-wrap {
  position: relative;
  width: 95%;
  padding-top: 56.25%;
  margin: 0 auto;
  overflow: auto;
}

.iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

.tit_map {
  width: 97%;
  margin: 20px auto;
}

.img_map {
  width: 95%;
  margin: 0 auto;
}

.sec_taidan {
  padding: 2em 0;
  background-image: url("../images/bg_taidan.jpg");
  background-position: top center;
  background-size: cover;
}

.box_taidan {
  margin-top: 20px;
}

/* #sp_btn {
  display: none !important;
}
 */
#sp_btn {
  display: block !important;
  width: 100%;
  padding: 10px 0 0;
  text-align: center;
  background: rgb(0 0 0 / 30%);
  transition: .8s;
}

.sp_btn {
  max-width: 600px;
  margin: 0 auto;
}

.fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10000;
}

.footer {
  padding: 2em 0 11em;
  font-size: 1.4em;
  color: #360E00;
  text-align: center;
  background-color: #ebd6a6;
}

.footer a {
  color: #360E00;
}

._form-branding,
._form-label {
  display: none;
}

form input[type="text"] {
  display: block;
  width: 90%;
  padding: 15px 10px;
  margin: 10px auto;
  font-size: 1.1em;
  border-color: #ccc;
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
}

._submit {
  position: relative;
  display: block;
  width: 95%;
  aspect-ratio: 136 / 29;
  margin: 1.5em auto;
  overflow: hidden;
  color: transparent;
  appearance: none;
  cursor: pointer;
  background-color: transparent;
  background-image: url("../images/btn_cta.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  border: none;
  border-radius: 100px;
  outline: none;
}</pre></body></html>