@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #333;
  background-color: #f5f5f5;
  -webkit-text-size-adjust: 100%;
}

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

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

ul,
li {
  list-style: none;
}

#wrapper {
  max-width: 750px;
  margin: 0 auto;
  background-color: #e6e2e1;
}

.fv img {
  width: 100%;
}

.content-section img {
  width: 100%;
}

.cta-section {
  padding: 20px 15px;
  background-color: #e6e2e1;
}

.cta-with-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 750/226;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 4%;
  margin-top: -1px;
}

.cta-button {
  width: 100%;
  margin: 0 auto;
}
.cta-button a {
  display: block;
  max-width: 624px;
  margin: 0 auto;
  position: relative;
}
.cta-button img {
  width: 83%;
  display: block;
  margin: 20px auto 0;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 50px;
}

.rubberBand {
  animation-name: rubberBand;
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.06, 0.94, 1);
  }
  40% {
    transform: scale3d(0.94, 1.06, 1);
  }
  50% {
    transform: scale3d(1.04, 0.96, 1);
  }
  65% {
    transform: scale3d(0.96, 1.04, 1);
  }
  75% {
    transform: scale3d(1.02, 0.98, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes shiny-btn {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.cta-with-text {
  position: relative;
}
.cta-with-text a {
  display: block;
  position: relative;
  overflow: hidden;
}
.cta-with-text a::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 40px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  animation: shiny-btn 3s ease-in-out infinite;
  z-index: 2;
}
.cta-with-text .cta-bg-img {
  width: 100%;
  display: block;
}
.cta-with-text .cta-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.4;
  z-index: 1;
  width: 90%;
}
.cta-with-text .cta-text .cta-text-large {
  display: block;
  font-size: 2rem;
  color: #fff100;
  margin-top: 5px;
}

.faq-section {
  background-color: #e6e2e1;
  padding-bottom: 40px;
}

.faq-head .faq-head-img {
  width: 100%;
}

.faq-list {
  padding: 20px 15px 0;
}

.faq-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  display: flex;
  align-items: flex-start;
  padding: 20px 28px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.faq-q-icon {
  flex-shrink: 0;
  width: 24px;
  margin-right: 10px;
}
.faq-q-icon img {
  width: 100%;
  height: auto;
}

.faq-q-text {
  flex: 1;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
  padding-top: 2px;
}
@media (min-width: 750px) {
  .faq-q-text {
    font-size: 1.8rem;
  }
}

.faq-toggle {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 10px;
  margin-top: 4px;
}

.faq-toggle-line {
  display: block;
  position: absolute;
  background-color: #245743;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-toggle-horizontal {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-toggle-vertical {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-toggle-vertical {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  display: none;
  padding: 0 28px 20px 28px;
}

.faq-answer-inner {
  display: flex;
  align-items: flex-start;
}

.faq-a-icon {
  flex-shrink: 0;
  width: 24px;
  margin-right: 10px;
}
.faq-a-icon img {
  width: 100%;
  height: auto;
}

.faq-a-text {
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #666;
  margin: 0;
}
@media (min-width: 750px) {
  .faq-a-text {
    font-size: 1.6rem;
  }
}

.info-section {
  background-color: #e6e2e1;
  padding: 40px 20px;
}

.info-wrapper {
  max-width: 750px;
  margin: 0 auto;
}

.info-logo {
  text-align: center;
  max-width: 250px;
  margin: 0 auto 50px;
}
.info-logo a {
  display: block;
}
.info-logo img {
  width: 100%;
  height: auto;
}

.info-table {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  font-size: 1.4rem;
}
.info-table:first-of-type dt {
  margin-top: 0;
}
.info-table dt {
  width: 100%;
  display: block;
  margin-bottom: 0;
  background: #245743;
  font-weight: normal;
  text-align: center;
  font-size: 2rem;
  padding: 8px 0;
  margin-top: 8px;
  color: #fff;
}
@media (min-width: 750px) {
  .info-table dt {
    font-size: 2.4rem;
  }
}
.info-table dd {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
  text-align: left;
  font-size: 1.6rem;
  padding: 16px 60px;
  line-height: 1.6;
}
.info-table dd.center {
  text-align: center;
}
.info-table dd a {
  color: #333;
  text-decoration: none;
}
.info-table dd a:hover {
  opacity: 0.7;
}
@media (min-width: 750px) {
  .info-table dd {
    font-size: 2rem;
  }
}

.info-map {
  margin: 40px 20px;
}
.info-map iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
  vertical-align: bottom;
}

.video-section {
  padding: 20px;
  background-color: #e6e2e1;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slider-section {
  padding: 30px 15px;
  background-color: #e6e2e1;
  position: relative;
}

.slider .slick-slide img {
  width: 100%;
}
.slider .slick-dots {
  bottom: -30px;
}
.slider .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0 8px;
}
.slider .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
}
.slider .slick-dots li button::before {
  font-size: 12px;
  color: #ddd;
  opacity: 1;
}
.custom-slider .slick-slide img {
  width: 100%;
}
.custom-slider .slick-dots {
  bottom: -30px;
}
.custom-slider .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0 8px;
}
.custom-slider .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
}
.custom-slider .slick-dots li button::before {
  font-size: 12px;
  color: #c4d5ca;
  opacity: 1;
}
.custom-slider .slick-dots li.slick-active button::before {
  color: #245743;
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s;
}
.slider-prev img,
.slider-next img {
  width: 40px;
  height: auto;
}
.slider-prev:hover,
.slider-next:hover {
  opacity: 0.7;
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}

#footer {
  padding: 30px 15px 150px;
  background-color: #245743;
}
@media (min-width: 750px) {
  #footer {
    padding: 30px 15px 240px;
  }
}

.copyright {
  text-align: center;
  font-size: 1.1rem;
  color: #fff;
}

.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 750px;
  z-index: 999;
  background: rgba(229, 225, 225, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease-in-out;
}
@media (min-width: 750px) {
  .fixed-cta {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(100%);
  }
}
.fixed-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/tuizyu.webp");
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
  z-index: 1;
}
.fixed-cta.is-show {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 750px) {
  .fixed-cta.is-show {
    transform: translateX(-50%) translateY(0);
  }
}

.fixed-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 40px auto 0;
  padding: 10px 15px;
}
@media (min-width: 750px) {
  .fixed-cta-inner {
    padding: 30px 15px;
  }
}
.fixed-cta-inner a {
  display: block;
  max-width: 624px;
  margin: 0 auto;
  position: relative;
}
.fixed-cta-inner img {
  width: 83%;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 50px;
}

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

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

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