@charset "UTF-8";
.appear.up .item {
  transform: translateY(40px);
}

.appear.down .item {
  transform: translateY(-40px);
}

.appear.left .item {
  transform: translateX(40px);
}

.appear.right .item {
  transform: translateX(-40px);
}

.appear.zoom .item {
  transform: translateZ(40px);
}

.appear .item {
  transition: all 0.6s ease;
  transform: translate3d(0, 0, 0);
  opacity: 0;
}
.appear.inview .item {
  transform: none;
  opacity: 1;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.3s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.6s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 0.9s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 1.2s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 1.5s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 1.8s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 2.1s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 2.4s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 2.7s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 3s;
}

.scaleDown {
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.4s;
}
.scaleDown.inview {
  opacity: 1;
  transform: scale(1);
}

.fadein {
  opacity: 0;
  transition: all 0.4s 0.4s;
}
.fadein.inview {
  opacity: 1;
}

.rotate3D {
  opacity: 0;
  transform: scale(0) rotateY(0deg);
  transform-style: preserve-3d;
  transition: 0.8s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.rotate3D.inview {
  opacity: 1;
  transform: scale(1) rotateY(360deg);
}

.animate-txt .char {
  opacity: 0;
  transform: translateY(-10px);
}

.animate-txt.inview .char {
  animation-name: kf-animate-chars;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
  animation-delay: 0.1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
.animate-txt.inview .char:nth-child(1) {
  animation-delay: 0.54s;
}
.animate-txt.inview .char:nth-child(2) {
  animation-delay: 0.58s;
}
.animate-txt.inview .char:nth-child(3) {
  animation-delay: 0.62s;
}
.animate-txt.inview .char:nth-child(4) {
  animation-delay: 0.66s;
}
.animate-txt.inview .char:nth-child(5) {
  animation-delay: 0.7s;
}
.animate-txt.inview .char:nth-child(6) {
  animation-delay: 0.74s;
}
.animate-txt.inview .char:nth-child(7) {
  animation-delay: 0.78s;
}
.animate-txt.inview .char:nth-child(8) {
  animation-delay: 0.82s;
}
.animate-txt.inview .char:nth-child(9) {
  animation-delay: 0.86s;
}
.animate-txt.inview .char:nth-child(10) {
  animation-delay: 0.9s;
}
.animate-txt.inview .char:nth-child(11) {
  animation-delay: 0.94s;
}
.animate-txt.inview .char:nth-child(12) {
  animation-delay: 0.98s;
}
.animate-txt.inview .char:nth-child(13) {
  animation-delay: 1.02s;
}
.animate-txt.inview .char:nth-child(14) {
  animation-delay: 1.06s;
}
.animate-txt.inview .char:nth-child(15) {
  animation-delay: 1.1s;
}
.animate-txt.inview .char:nth-child(16) {
  animation-delay: 1.14s;
}
.animate-txt.inview .char:nth-child(17) {
  animation-delay: 1.18s;
}
.animate-txt.inview .char:nth-child(18) {
  animation-delay: 1.22s;
}
.animate-txt.inview .char:nth-child(19) {
  animation-delay: 1.26s;
}
.animate-txt.inview .char:nth-child(20) {
  animation-delay: 1.3s;
}
.animate-txt.inview .char:nth-child(21) {
  animation-delay: 1.34s;
}
.animate-txt.inview .char:nth-child(22) {
  animation-delay: 1.38s;
}
.animate-txt.inview .char:nth-child(23) {
  animation-delay: 1.42s;
}
.animate-txt.inview .char:nth-child(24) {
  animation-delay: 1.46s;
}
.animate-txt.inview .char:nth-child(25) {
  animation-delay: 1.5s;
}
.animate-txt.inview .char:nth-child(26) {
  animation-delay: 1.54s;
}
.animate-txt.inview .char:nth-child(27) {
  animation-delay: 1.58s;
}
.animate-txt.inview .char:nth-child(28) {
  animation-delay: 1.62s;
}
.animate-txt.inview .char:nth-child(29) {
  animation-delay: 1.66s;
}
.animate-txt.inview .char:nth-child(30) {
  animation-delay: 1.7s;
}

@keyframes kf-animate-chars {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-height: 0vw;
}

* {
  transition-property: all;
  transition-duration: 0.3s;
}

html {
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
}

body {
  font-weight: 400;
  font-size: clamp(1.6rem, 1.554rem + 0.21vw, 1.8rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #2CA6E0;
  background: url("../images/bg_sand.png");
  overflow-x: hidden;
}

.wrapper {
  position: relative;
}

#loading {
  transition: all 1s;
  /*ローディングにかかる時間*/
  background-color: white;
  z-index: 999;
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.spin {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid white;
  border-top-color: #2CA6E0;
  border-right-color: #2CA6E0;
  border-bottom-color: #2CA6E0;
  animation: spin 0.6s infinite linear;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.loaded {
  opacity: 0;
  visibility: hidden;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

a {
  text-decoration: none;
  transition: 0.3s all;
}

a img {
  transition: 0.3s;
}

a img:hover {
  opacity: 0.5;
}

.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

.lg-inner {
  width: min(1080px, 90%);
  margin: 0 auto;
}

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

.flex {
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 960px) {
  .flex {
    flex-direction: column;
    flex-wrap: wrap;
  }
}

.pc {
  display: inline-block;
}
@media screen and (max-width: 960px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 960px) {
  .sp {
    display: inline-block;
  }
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: text;
    text-decoration: none;
  }
}
@media screen and (max-width: 960px) {
  img {
    image-rendering: auto;
  }
}
.mv {
  position: relative;
  z-index: 1;
  padding: 0 0;
  width: 100%;
  height: 600px;
  background: url(../images/lmt_mainbg.jpg) no-repeat center/cover;
  text-align: center;
}
.form_ttl {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
}
.name img {
  width: 400px;
}
@media screen and (max-width: 960px) {
  .name img {
    margin: 0 auto;
    width: 360px;
  }
}
@media screen and (max-width: 600px) {
  .name img {
    width: 260px;
  }
}

#contact {
  padding: 100px 0 60px;
}
@media screen and (max-width: 960px) {
  #contact {
    padding: 50px 0 20px;
  }
}

#contact h2 {
  font-size: clamp(2rem, 1.694rem + 1.31vw, 3rem);
}

.amt-txt {
  padding: 30px 0px;
  font-weight: 400;
  color: #191919;
  font-size: clamp(1.3rem, 1.086rem + 0.91vw, 2rem);
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .amt-txt {
    text-align: justify;
  }
}

.form {
  font-weight: 400;
  text-align: left;
  margin-top: 40px;
}

@media screen and (max-width: 960px) {
  .form {
    font-weight: 400;
    margin-top: 30px;
  }
}
.form .required,
.form .optional {
  font-size: clamp(1.2rem, 1.108rem + 0.41vw, 1.6rem);
  font-weight: 500;
  padding: 0.1rem 1.5rem 0.2rem;
  margin-left: 1em;
  color: white;
  border-radius: 50px;
  line-height: 1;
  font-weight: 600;
}

.form .required {
  background: #c0392b;
}

.form .optional {
  background: #DDD;
  color: #333;
}

.form .label-txt,
.form .form-subtitle,
.form .form-title {
  font-size: clamp(1.4rem, 1.308rem + 0.41vw, 1.8rem);
  font-weight: 600;
  min-width: 16em;
  display: block;
}

.form input[type=date] {
  cursor: pointer;
}

.form .label-txt,
.form .form-subtitle {
  margin-block: 0 1.25rem;
}

.form textarea,
.form input,
.form .form-radio-row label,
.form .form-check .flatpickr-mobile {
  display: inline-block;
  border-radius: 5px;
  border: 1px solid #535353;
  padding: 1.25rem;
  transition: 0.6s cubic-bezier(0.49, 0.06, 0.02, 0.98);
  background: white;
  color: #191919;
  font-size: clamp(1.4rem, 1.308rem + 0.41vw, 1.8rem);
}

.form textarea:hover, .form textarea:focus,
.form input:hover,
.form input:focus,
.form .form-radio-row label:hover,
.form .form-radio-row label:focus,
.form .form-check .flatpickr-mobile:hover,
.form .form-check .flatpickr-mobile:focus {
  outline: none;
  border: 1px solid #2CA6E0;
}

.form .form-radio-row label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form .form-radio-row input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form .form-radio-row label span {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

@media screen and (max-width: 960px) {
  .form .form-radio-row label span {
    line-height: 1.3;
  }
}
.form .form-radio-row label span::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #535353;
  background: white;
  box-sizing: border-box;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.form .form-radio-row input[type=radio]:checked + span::before {
  background: #2CA6E0;
  box-shadow: inset 0 0 0 3px white;
}

.form .form-radio-row input[type=radio]:focus-visible + span::before {
  box-shadow: 0 0 0 3px rgba(61, 139, 255, 0.35);
}

.form .form-check {
  line-height: 1;
  display: block;
  cursor: pointer;
  width: 100%;
}

.form .form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form .form-check span {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
}

.form .form-check span::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  border: 1px solid #535353;
  background: white;
  box-sizing: border-box;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.form .form-check span::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  width: 8px;
  height: 4px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: translateY(-60%) rotate(-45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.form .form-check input[type=checkbox]:checked + span::before {
  background: #2CA6E0;
  border-color: #2CA6E0;
}

.form .form-check input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.form .form-check input[type=checkbox]:focus-visible + span::before {
  box-shadow: 0 0 0 3px rgba(61, 139, 255, 0.35);
}

.form .form-radio-row label:hover {
  border-color: #2CA6E0;
  background-color: rgba(0, 0, 0, 0.02);
}

.form .input-txt,
.form textarea {
  width: 100%;
}

.form .input-txt2 {
  width: 6em;
}

.input-zipcode {
  padding: 0 10px;
  color: #191919;
}

.form textarea {
  height: 250px;
}

@media screen and (max-width: 960px) {
  .form textarea {
    height: 180px;
  }
}
.form textarea._lightGray {
  background: #F4F4F4;
}

.form .input-date {
  width: 10em;
  height: 3em;
  margin-inline: 0 1rem;
  background-color: #fff;
}

@media screen and (max-width: 480px) {
  .form-row-date,
  .form-row-time {
    display: flex;
    align-items: center;
  }
}
.form-wrap {
  margin-bottom: 4rem;
}

@media screen and (max-width: 960px) {
  .form-wrap {
    margin-bottom: 3rem;
  }
}
.form-item {
  margin-block: 0 3rem;
}

@media screen and (max-width: 960px) {
  .form-item {
    margin-block: 0 2rem;
  }
}
.form-row {
  margin-block: 0 1.5rem;
}

.form-title {
  margin-block: 3rem 1rem;
}

@media screen and (max-width: 960px) {
  .form-title {
    margin-top: 2rem;
  }
}
.flatpickr-calendar,
.flatpickr-calendar * {
  font-family: "Noto Sans JP";
}

.form-radio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media screen and (max-width: 960px) {
  .form-radio {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.form-radio label {
  display: block;
  cursor: pointer;
}

.venue-other-input {
  display: none;
  margin-top: 10px;
}

.form-subat {
  font-weight: 400;
  margin-block: 1rem;
  color: #191919;
  font-size: clamp(1.2rem, 1.108rem + 0.41vw, 1.6rem);
}

.form-error {
  color: #c0392b;
  font-weight: 500;
  margin-top: 1rem;
}

.buttons {
  margin-block: 5rem 0;
}

@media screen and (max-width: 960px) {
  .buttons {
    margin-block: 4rem 0;
  }
}
.buttons button {
  font-size: clamp(1.8rem, 1.708rem + 0.41vw, 2.2rem);
  font-weight: 700;
  width: 100%;
  padding: 1.5rem;
  cursor: pointer;
  letter-spacing: 0.2em;
  transition: 0.6s cubic-bezier(0.49, 0.06, 0.02, 0.98);
  border-radius: 10px;
}

.btn-confirm {
  background: #2CA6E0;
  color: white;
  border: 1px solid #2CA6E0;
}

.btn-confirm:hover {
  background: white;
  color: #2CA6E0;
}

.btn-back {
  background: #DDD;
  border: none;
  margin-block: 0 2rem;
}

.btn-back:hover {
  opacity: 0.4;
}

.confirm {
  margin: 60px 0;
}

.confirm-box {
  padding: 4rem;
  border: 1px solid #ccc;
  max-width: 800px;
  margin: 30px auto 0;
  text-align: left;
  background: white;
  font-size: clamp(1.4rem, 1.308rem + 0.41vw, 1.8rem);
}

@media screen and (max-width: 960px) {
  .confirm-box {
    padding: 2rem;
  }
}
.confirm-box dt {
  font-weight: bold;
  margin-block: 0 1rem;
}

.confirm-box dd {
  margin-bottom: 3rem;
  padding-left: 1em;
  color: #191919;
}

@media screen and (max-width: 960px) {
  .confirm-box dd {
    margin-bottom: 2rem;
  }
}
.confirm-box .confirm-items {
  margin: 0 0 1rem;
}

.confirm-box .confirm-items li {
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.confirm-box .confirm-note {
  color: #666;
  font-size: 0.95em;
  margin: 0;
}

.confirm-box .confirm-total {
  font-weight: 600;
  margin: 0 0 0.6rem;
}

.thank-box {
  text-align: center;
}

.thank-txt {
  font-size: clamp(1.5rem, 1.385rem + 0.51vw, 2rem);
  margin-top: 1.5rem;
  line-height: 2;
}

.border_box {
  width: 600px;
  max-width: 100%;
  margin: 0 auto 100px;
  text-align: center;
  border: 1px solid #333;
  padding: 2.4rem 2rem;
}

.border_box-txt {
  font-size: clamp(2.4rem, 1.91rem + 2.09vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  font-family: "Noto Sans JP";
}

.border_box-tel {
  text-align: center;
  color: #191919;
  font-size: clamp(1.8rem, 1.708rem + 0.41vw, 2.2rem);
  font-weight: 700;
  padding-bottom: 8px;
}

.border_box-txt ._free-ico {
  width: 60px;
  display: inline;
  margin-block: 0 3px;
  margin-inline: 3px;
}

.pp_check {
  margin: 20px auto;
  text-align: center;
  font-weight: 700;
  color: #191919;
  font-size: clamp(1.4rem, 1.308rem + 0.41vw, 1.8rem);
  line-height: 1.5;
}

.pp_check a {
  color: #2CA6E0;
  transition: 0.3s all;
}
.pp_check a:hover {
  opacity: 0.5;
}

header {
  max-width: 1400px;
  width: 100%;
  padding: 20px 35px 0 35px;
  height: 90px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  header {
    height: 60px;
  }
}
@media screen and (max-width: 600px) {
  header {
    padding: 15px 20px 0;
  }
}

.logo {
  width: 138px;
}
@media screen and (max-width: 960px) {
  .logo {
    width: 120px;
  }
}
@media screen and (max-width: 600px) {
  .logo {
    width: 100px;
  }
}

.footer {
  text-align: center;
  padding: 80px 0 40px;
}
.footer a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 960px) {
  .footer {
    padding: 60px 0 30px;
  }
}

.foot-link a {
  width: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #2CA6E0;
  transition: 0.3s all;
  position: relative;
  background: #2CA6E0;
  font-size: clamp(1.6rem, 1.52rem + 0.4vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 auto;
  line-height: 4;
  border-radius: 10px;
  letter-spacing: 5px;
}
@media screen and (max-width: 960px) {
  .foot-link a {
    width: 80%;
  }
}

.foot-link a::before {
  position: absolute;
  content: "";
  background: url("../images/link_arw.svg") no-repeat center/contain;
  width: 53px;
  height: 6px;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  transition: 0.3s all;
}
@media screen and (max-width: 960px) {
  .foot-link a::before {
    right: 20px;
  }
}

.foot-link a:hover::before {
  right: 0.8vw;
}
@media screen and (max-width: 960px) {
  .foot-link a:hover::before {
    right: 2vw;
  }
}

.backtotop {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 80px;
  height: 80px;
  z-index: 500;
}
@media screen and (max-width: 480px) {
  .backtotop {
    width: 60px;
    height: 60px;
  }
}
.backtotop a {
  transition: 0.5s all;
}
.backtotop a:hover {
  opacity: 0.5;
}
.backtotop a img {
  width: 100%;
}

.backtotop a {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: #2CA6E0;
  width: 60px;
  height: 60px;
  z-index: 1000;
  border-radius: 50px;
  transition: 0.3s all;
}
.backtotop a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 1em;
  height: 1em;
  border: 3px solid white;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}
.backtotop a:hover {
  opacity: 0.5;
}

.copy {
  font-family: "Noto Sans JP", sans-serif;
  color: #2CA6E0;
  margin-top: 60px;
  font-size: clamp(1.1rem, 1.04rem + 0.3vw, 1.4rem);
}/*# sourceMappingURL=style.css.map */