@charset "UTF-8";
/* Effect
----------------------------*/
body.top {
  animation: bodyfadeIn 3s ease-in-out 0s 1 normal;
}
@keyframes bodyfadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
.fade-effect {
  opacity: 0;
  transform: translate(0, 20px);
  transition: all 1500ms;
}
.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}
.delayScroll > [class^="col"] {
  opacity: 0;
}
.fadeUpBox {
  animation-name: boxfadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes boxfadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animation-img-wrap {
  overflow: hidden;
  position: relative;
}
.animation-img-wrap::before {
  animation: animation-img-wrap 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #fff;
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
  animation-play-state: paused; /* アニメーションを一時停止 */
}
.animation-img-wrap.start-animation::before {
  animation-play-state: running; /* アニメーションを再開 */
}
@keyframes animation-img-wrap {
  100% {
    transform: translateX(100%);
  }
}
/* Swiper
----------------------------*/
.swiper-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.swiper-container .swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.swiper-container .slide-wrap {
  margin-left: auto;
}
.swiper-button-prev, .swiper-button-next {
  width: 45px !important;
  height: 45px !important;
  margin-top: -30px; /* 縦中央配置用：ボタンの高さの半分のネガティブマージン（top:50%がすでに設定されている） */
}
.swiper-button-next {
  background: url("../images/swiper-btn-next.png") !important;
  right: 0 !important;
  transition: 0.5s;
}
.swiper-button-prev {
  background: url("../images/swiper-btn-prev.png") !important;
  left: 0 !important;
  transition: 0.5s;
}
.swiper-button-next:hover {
  transition: 0.5s;
  right: -0.5rem !important;
}
.swiper-button-prev:hover {
  transition: 0.5s;
  left: -0.5rem !important;
}
.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
  content: none !important;
}
.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  content: none !important;
}
.swiper-pagination {
  position: relative;
  margin: 0.75rem auto;
}
.swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: #979797;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #000000;
}
/* Accordion
----------------------------*/
.accordion-container {
  margin: 2rem 0 4rem;
}
.accordion-container .accordion-title {
  display: flex;
  position: relative;
  margin: 0 0 2rem 0;
  padding: 1.5rem 4.5rem 1.5rem 4.5rem;
  font-weight: 500;
  cursor: pointer;
  line-height: 1.5;
  transition: all .2s ease-in-out;
  background: #fff;
  border-radius: 10px;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, .1);
}
.accordion-container .accordion-title:hover, .accordion-container .accordion-title:active, .accordion-title.open {
  background: #99c827;
  color: #fff;
}
.accordion-container .accordion-title::after {
  content: "\f067";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  position: absolute;
  top: 0;
  right: 1.5rem;
  height: 100%;
  transition: all .2s ease-in-out;
  display: flex;
  color: #99c827;
  font-size: 1.75rem;
  align-items: center;
}
.accordion-container .accordion-title.open::after {
  content: "\f068";
  color: #fff;
  transition: all .2s ease-in-out;
}
.accordion-content {
  position: relative;
  padding: 0;
  /* background: #fff; */
  /* margin: 0 0 3rem; */
}
.accordion-content > div {
  position: relative;
  margin: 0;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 10px 10px 30px rgba(0, 0, 0, .1);
  padding: 2rem 2rem 2rem 4rem;
}
.accordion-content > table {
  margin: 3rem 0 0;
}
.accordion-container .accordion-title::before {
  content: "Q．";
  color: #9cc453;
  position: absolute;
  top: 1.35rem;
  left: 1.75rem;
}
.accordion-container .accordion-title:hover::after, .accordion-container .accordion-title:hover::before, .accordion-container .accordion-title.open::before {
  color: #fff;
  transition: all .2s ease-in-out;
}
.accordion-content p:first-child::before {
  content: "A．";
  color: #D94C5D;
  padding: 0 0.9rem;
  position: absolute;
  left: -3.25rem;
}
/* Google Map
----------------------------*/
.gmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 10rem;
  margin-bottom: 5rem;
  height: 0;
  overflow: hidden;
}
.gmap iframe, .gmap object, .gmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Movie（YouTube・Vimeo）
----------------------------*/
.video {
  position: relative;
  width: 100%;
  padding-top: 56%;
  border: solid 1px #F5F5F5;
  margin: 0 auto 4rem;
}
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.video-w80 {
  width: 100%;
}
/* Pager
----------------------------*/
main .pager {
  text-align: center;
  margin: 5rem auto 0;
  font-size: 1.6rem;
}
main .pager a {
  background: #EEE;
  color: #232323;
  text-decoration: none;
  padding: 1rem 1.75rem 1.25rem;
  border-radius: 3px;
  margin: 0.5rem;
  transition: all 0.4s 0s ease;
}
main .pager span {
  margin: 0.5rem;
}
main .pager a:hover {
  background: #43a7dd;
  color: #FFF;
  text-decoration: none;
}
main .pager .current {
  padding: 1rem 1.75rem 1.25rem;
  color: #43a7dd;
}
/* Modal
----------------------------*/
.modal-dialog {
  max-width: 90vw;
  margin: 1.75rem auto;
}
.modal-header {
  border: none;
  color: #fff;
  padding: 1.75rem 1.75rem 0;
  border-radius: 0;
  /* margin-bottom: 0.5rem; */
}
h2.modal-title {
  font-size: 1.2rem !important;
  font-weight: 500 !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
}
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 0.75rem 1rem 0.5rem;
}
.modal-footer {
  border: none;
  padding: 0 1rem 1rem;
}
.modal-footer a {
  position: relative !important;
  width: auto !important;
}
.modal-footer .btn {
  font-size: 1rem !important;
  border-radius: 5px !important;
  letter-spacing: 0.1rem !important;
  padding: 0.6rem 1.1rem 0.64rem !important;
  margin: 0;
  white-space: inherit;
  border: solid 1px;
}
.modal-footer .btn-gray {
  border: solid 1px #d9d9d9;
  border-radius: 5px;
  text-align: center;
}
/* Media Query
----------------------------*/
/* Large devices (desktops, 992px and over, .col-lg-*)*/
@media (min-width: 992px) {
  .swiper-container {
    margin-bottom: 1rem;
  }
  .modal-dialog {
    max-width: 85vw;
  }
  .modal-dialog-sm {
    max-width: 60vw;
  }
}
/* Extra large devices (large desktops, 1200px and over, .col-xl-*)*/
@media (min-width: 1200px) {
  .gmap {
    padding-bottom: 35%;
  }
  .modal-dialog {
    max-width: 80vw;
  }
  .modal-dialog-sm {
    max-width: 600px;
  }
}