@charset "UTF-8";
/* ローディング */
.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.loading-animation img {
  width: 20%;
  margin: 0 auto;
}

/* ローディングend */
/* フェードイン */
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}
.fadeIn.is-show:nth-child(1) {
  transition-delay: 0.1s;
}
.fadeIn.is-show:nth-child(2) {
  transition-delay: 0.3s;
}
.fadeIn.is-show:nth-child(3) {
  transition-delay: 0.5s;
}

.fadeIn_left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 2s;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/* フェードインend */
.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

body {
  background-color: #000;
  color: #fff;
  font-family: "Noto Sans JP", serif;
  line-height: 1.8;
}

ul {
  list-style: none;
}

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

img {
  width: 100%;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

section {
  margin-top: 100px;
}

.section__ttl {
  margin-bottom: 80px;
  font-weight: normal;
  text-align: center;
}
.section__ttl span {
  display: block;
  line-height: 1;
}
.section__ttl span.ttl__en {
  margin-bottom: 15px;
  font-size: clamp(0.813rem, 0.727rem + 0.36vw, 1rem);
  text-shadow: 0 0 1px #ed80db, 0 0 3px #ed80db, 0 0 6px #ed80db, 0 0 10px #ed80db, 0 0 30px #ed80db, 0 0 50px #ed80db;
}
.section__ttl span.ttl__ja {
  font-size: clamp(1.25rem, 1.108rem + 0.61vw, 1.563rem);
  text-shadow: 0 0 1px #8080ed, 0 0 3px #8080ed, 0 0 6px #8080ed, 0 0 10px #8080ed, 0 0 30px #8080ed, 0 0 50px #8080ed;
}

.fixed-btn {
  position: fixed;
  right: 0;
  bottom: 0;
}
.fixed-btn .fixed__link {
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
  transition: all 0.3s;
}
.fixed-btn .fixed__link:hover {
  opacity: 0.5;
}
.fixed-btn .fixed__link.contact__link {
  background-color: #fff;
}
.fixed-btn .fixed__link.top__link {
  background-color: #910A67;
}
.fixed-btn .fixed__link img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  transform: translate(-50%, -50%);
}

.header {
  padding: 25px clamp(1.25rem, 0.682rem + 2.42vw, 2.5rem);
}
@media screen and (max-width: 768px) {
  .header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.header.flex {
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  font-size: 20px;
  font-weight: normal;
  line-height: 1.5;
}
.header .nav .header__list .header__list-item {
  margin: 0 20px;
}
.header .nav .header__list .header__list-item .header__link {
  transition: all 0.3s;
}

@media screen and (max-width: 768px) {
  .g-navi {
    display: none;
  }
  .g-navi .g-navi__list {
    width: min(70%, 400px);
  }
}
@media screen and (max-width: 600px) {
  .g-navi .g-navi__list {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .g-navi.active {
    display: block;
  }
  .g-navi.active .g-navi__list {
    flex-direction: column;
    position: fixed;
    z-index: 5;
    top: 66px;
    right: 0;
    width: min(50%, 300px);
    margin: 0;
    background-color: rgba(0, 0, 0, 0.8);
  }
  .g-navi.active .g-navi__list .g-navi__item {
    padding: 10px;
  }
}
.g-navi .g-navi__list .g-navi__item .g-navi__link {
  display: block;
  margin: 0 10px;
  color: #fff;
  font-size: clamp(0.813rem, 0.744rem + 0.34vw, 1rem);
  transition: all 0.3s;
}
.g-navi .g-navi__list .g-navi__item .g-navi__link:hover {
  opacity: 0.6;
}

.hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
    position: fixed;
    top: 8px;
    right: 8px;
    z-index: 10;
    width: 50px;
    height: 50px;
  }
  .hamburger .hamburger__line {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #fff;
    left: 10px;
    transition: 0.3s;
  }
  .hamburger .hamburger__line:nth-child(1) {
    top: 11px;
  }
  .hamburger .hamburger__line:nth-child(2) {
    top: 24px;
  }
  .hamburger .hamburger__line:nth-child(3) {
    top: 36px;
  }
  .hamburger.active .hamburger__line {
    z-index: 10;
  }
  .hamburger.active .hamburger__line:nth-child(1) {
    top: 24px;
    left: 16px;
    transform: rotate(45deg);
  }
  .hamburger.active .hamburger__line:nth-child(2) {
    display: none;
  }
  .hamburger.active .hamburger__line:nth-child(3) {
    top: 24px;
    left: 16px;
    transform: rotate(-45deg);
  }
}

main {
  width: min(100%, 1000px);
  margin: 0 auto;
}

.mainvisual {
  position: relative;
}
.mainvisual .catchphrase {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  font-size: clamp(1.563rem, 0.994rem + 2.42vw, 2.813rem);
  line-height: 1.8;
  letter-spacing: 0.3em;
  -moz-text-shadow: 0px 0px 10px rgb(0, 0, 0);
  -webkit-text-shadow: 0px 0px 10px rgb(0, 0, 0);
  -ms-text-shadow: 0px 0px 10px rgb(0, 0, 0);
  text-shadow: 0px 0px 10px rgb(0, 0, 0);
}
.mainvisual .fade-img {
  width: 80%;
  margin-left: auto;
}
.mainvisual .fade-img .slick-slide img {
  margin-left: auto;
}

.about .about__txt {
  width: min(90%, 565px);
  margin: 0 auto;
  text-align: center;
}

.charm .charm__list {
  width: 95%;
  margin: 0 auto;
}
.charm .charm__list.flex {
  flex-wrap: wrap;
  justify-content: space-around;
}
.charm .charm__list .charm__item {
  width: min(98%, 300px);
  height: 270px;
  margin-bottom: 20px;
  padding: 15px;
  background-color: rgba(155, 155, 155, 0.5);
}
.charm .charm__list .charm__item .charm__ttl {
  margin-bottom: clamp(0.938rem, 0.369rem + 2.42vw, 2.188rem);
  font-size: clamp(1.125rem, 1.068rem + 0.24vw, 1.25rem);
  text-align: center;
}
.charm .charm__list .charm__item .charm__txt {
  font-size: 16px;
  text-align: justify;
}

.place .place__list.flex {
  justify-content: space-around;
}
.place .place__list .place__item {
  margin-bottom: 20px;
}
.place .place__list .place__item .place-caption {
  display: block;
  text-align: center;
}

.example .coming-soon {
  text-align: center;
  opacity: 0.6;
}

.contact {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.95);
  color: #000;
}
.contact .container {
  width: min(90%, 680px);
  margin: 50px auto;
}
.contact .container .require {
  display: inline-block;
  font-size: 13px;
  color: red;
}
.contact .container .input__label {
  margin-bottom: 10px;
}
.contact .container .input__field {
  margin-bottom: 20px;
}
.contact .container input[type=text] {
  width: 100%;
  padding: 5px 10px;
  background: #d9d9d9;
  border: 1px solid #d9d9d9;
}
.contact .container input[type=radio] {
  margin-right: 8px;
}
.contact .container .submit-btn {
  width: 250px;
  margin: auto;
  padding: 10px 0;
  background-color: #eb6100;
  box-shadow: 3px 3px 3px 0px #b84c00;
  color: #fff;
  transition: ease-in-out 0.3s;
}
.contact .container .submit-btn:hover {
  background-color: #f56500;
  box-shadow: 1px 1px 1px 0px #b84c00;
}
.contact .container input[type=submit] {
  width: 250px;
}

.footer .footer__list {
  margin: 50px 0;
  padding: 40px 0 25px;
}
@media screen and (max-width: 600px) {
  .footer .footer__list {
    margin: 10px 0;
  }
}
.footer .footer__list.flex {
  justify-content: space-between;
}
.footer .footer__list .footer__list-item {
  width: 50%;
}
@media screen and (max-width: 600px) {
  .footer .footer__list .footer__list-item {
    width: 80%;
    margin: 20px auto;
  }
}
.footer .footer__list .footer__list-item span {
  display: block;
  color: #fff;
  font-weight: bold;
  font-size: clamp(0.938rem, 0.795rem + 0.61vw, 1.25rem);
  letter-spacing: 0.1em;
  text-align: center;
}
.footer .footer__list .footer__list-item .footer__list-link {
  display: block;
  position: relative;
  width: 60%;
  margin: 15px auto;
  padding: 10px 0;
  border-radius: 5px;
  border: 1px solid #fff;
  text-align: center;
  color: #fff;
  transition: all 0.3s;
  text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #fb00ff, 0 0 82px #fb00ff, 0 0 92px #fb00ff, 0 0 102px #fb00ff, 0 0 151px #fb00ff;
}
.footer .footer__list .footer__list-item .footer__list-link:hover {
  background-color: #fff;
  color: #000;
}
.footer .footer__list .footer__list-item .footer__list-link::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #ddd;
  border-right: 2px solid #ddd;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
}
.footer .copyright {
  padding: 10px 0;
  background-color: #fff;
  color: #000;
  font-size: 12px;
  text-align: center;
}

/* thanks */
.thanks {
  margin: 100px auto;
}
.thanks .wrapper {
  margin: 50px 0 0;
}
.thanks .wrapper .completely {
  margin-top: 30px;
}
.thanks .wrapper .completely p {
  margin: 15px 0;
}
.thanks .wrapper .completely ul {
  font-size: clamp(0.813rem, 0.756rem + 0.24vw, 0.938rem);
}
.thanks .btn__link {
  display: inline-block;
  margin: 20px 0;
  padding: 10px 30px;
  background-color: #fff;
  border-radius: 5px;
  color: #000;
  transition: all 0.3s;
}
.thanks .btn__link:hover {
  background-color: #ccc;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}/*# sourceMappingURL=style.css.map */