@charset "UTF-8";
.null {
  font-size: clamp(15px, 1.2307692308vw, 17px);
}

.null {
  margin-left: clamp(24px, 2.3076923077vw, 48px);
}

.null {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.null > * {
  width: calc((100% - calc(10px * 2)) / 3);
}

.null {
  font-size: clamp(15px, 1.2307692308vw, 17px);
}

.null {
  margin-left: clamp(24px, 2.3076923077vw, 48px);
}

.null {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.null > * {
  width: calc((100% - calc(10px * 2)) / 3);
}

h2,
ul {
  margin: 0;
  padding: 0;
}

.index {
  position: relative;
}
@media screen and (min-width:1025px) {
  .index .service {
    margin-bottom: 60px;
  }
}
@media screen and (min-width:640px) {
  .index .service {
    margin-bottom: 50px;
  }
}
@media screen and (max-width:639px) {
  .index .service {
    margin-bottom: 48px;
  }
}
.index .service.Inner {
  max-width: 936px;
}
.index .service p {
  font-size: 20px;
  line-height: 180%;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width:639px) {
  .index .service p {
    font-size: 14px;
  }
}
@media screen and (max-width:1024px) and (min-width:640px) {
  .index .service p {
    font-size: clamp(15px, 1.9047619048vw, 17px);
  }
}
@media screen and (min-width:1025px) {
  .index .service p {
    font-size: 20px;
  }
}
@media screen and (max-width:639px) {
  .index .service p {
    font-size: clamp(13px, 3.7333333333vw, 16px);
  }
}
.index .service .list {
  display: flex;
}
@media screen and (min-width:1025px) {
  .index .service .list {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
  }
  .index .service .list > * {
    width: calc((100% - calc(48px * 2)) / 3);
  }
}
@media screen and (max-width:1024px) and (min-width:640px) {
  .index .service .list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .index .service .list > * {
    width: calc((100% - calc(20px * 2)) / 3);
  }
}
@media screen and (max-width:639px) {
  .index .service .list {
    flex-direction: column;
    align-items: center;
  }
}
.index .service .list .unit {
  background-color: #edfcee;
  border-radius: 1000px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width:639px) {
  .index .service .list .unit {
    width: 270px;
    margin-bottom: 12px;
  }
  .index .service .list .unit:last-child {
    margin-bottom: 0;
  }
}
.index .service .list .unit.staynight {
  border: 2px solid #42b248;
  background-color: #fff8e5;
}
.index .service h3 {
  font-weight: 700;
  color: #42b248;
  font-size: clamp(21px, 2.6785714286vw, 24px);
  line-height: 130%;
  margin-bottom: 16px;
  text-align: center;
}
@media screen and (max-width:639px) {
  .index .service h3 {
    font-size: 22px;
  }
}
@media screen and (max-width:1024px) and (min-width:640px) {
  .index .service h3 {
    font-size: 22px;
  }
}
@media screen and (min-width:1025px) {
  .index .service h3 {
    font-size: 24px;
  }
}
@media screen and (max-width:1024px) and (min-width:640px) {
  .index .service h3 {
    letter-spacing: 0;
  }
}
.index .service h3 small {
  font-size: clamp(15px, 1.9047619048vw, 17px);
  display: block;
}
.index .service .area {
  text-align: center;
}
.index .service .area strong {
  display: inline-block;
  padding: 0 0;
  border-bottom: 1px solid #42b248;
  font-size: clamp(13px, 1.6666666667vw, 15px);
  margin-bottom: 0.4em;
}
.index .service .area p {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
  font-size: clamp(16px, 2.0238095238vw, 18px);
  justify-content: center;
}
.index .service .js-open-modal {
  display: flex;
  gap: 0.3em;
  border: none;
  background-color: #42b248;
  color: #ffffff;
  border-radius: 1000px;
  padding: 0.2em 1em;
  margin-top: 1em;
  transition: background-color 0.2s ease-out;
}
.index .service .js-open-modal::after {
  content: "＋";
}
.index .service .js-open-modal:hover {
  background-color: #5bc360;
}
.index .service .modal {
  display: flex;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1000000000000;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}
.index .service .modal.active {
  opacity: 1;
  pointer-events: auto;
}
.index .service .modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.index .service .modal.active .modal__overlay {
  opacity: 1;
}
.index .service .modal__content {
  position: relative;
  background: #fff;
  padding: 2.4rem 3rem;
  border-radius: 8px;
  max-width: 1000px;
  width: 90%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
  opacity: 0;
  transform: scale(0.95) translateY(-10px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}
.index .service .modal__content h4 {
  font-size: 1.2em;
  color: #42b248;
}
.index .service .modal__content .modal__scroll {
  overflow-y: scroll;
  max-height: 60vh;
  margin-right: -1em;
  padding-right: 1em;
}
.index .service .modal__content p {
  text-align: left;
  margin-bottom: 0;
  font-size: 18px;
}
.index .service .modal__content p strong {
  color: #d44000;
}
@media screen and (max-width:639px) {
  .index .service .modal__content p {
    font-size: clamp(13px, 3.7333333333vw, 16px);
  }
}
.index .service .modal__close-icon {
  border-radius: 100%;
  background-color: #454545;
  color: #ffffff;
  border: none;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  right: 0;
  translate: 30% -30%;
}
.index .service .modal.active .modal__content {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.index .facilityInner {
  max-width: 820px;
}
@media screen and (max-width:1024px) and (min-width:640px) {
  .index .facilityInner {
    max-width: 780px;
  }
}
.index .facility .unit {
  background-color: #fff8e5;
  border-radius: 12px;
  display: flex;
}
.index .facility .unit:not(:last-child) {
  margin-bottom: 16px;
}
@media screen and (max-width:639px) {
  .index .facility .unit {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media screen and (max-width:1024px) and (min-width:640px) {
  .index .facility .unit {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media screen and (min-width:1025px) {
  .index .facility .unit {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media screen and (max-width:639px) {
  .index .facility .unit {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media screen and (max-width:1024px) and (min-width:640px) {
  .index .facility .unit {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media screen and (min-width:1025px) {
  .index .facility .unit {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width:640px) {
  .index .facility .unit {
    gap: 24px;
  }
}
@media screen and (min-width:1025px) {
  .index .facility .unit {
    gap: 48px;
  }
}
@media screen and (max-width:639px) {
  .index .facility .unit {
    flex-direction: column;
    max-width: 400px;
    margin: auto;
  }
}
@media screen and (max-width:639px) {
  .index .facility .img img {
    width: 100%;
    margin-bottom: 16px;
  }
}
@media screen and (min-width:640px) {
  .index .facility .txt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.index .facility h3 {
  font-size: clamp(21px, 2.6785714286vw, 24px);
  color: #42b248;
  letter-spacing: 0.07em;
}
.index .facility p {
  font-size: clamp(14px, 1.7857142857vw, 16px);
  margin-bottom: 8px;
  font-weight: 500;
}
.index .facility small {
  display: block;
  margin-bottom: 8px;
}
.index .facility .btn {
  margin-top: auto;
}
@media screen and (max-width:639px) {
  .index .facility .btn {
    display: block;
  }
}

.null {
  font-size: clamp(15px, 1.2307692308vw, 17px);
}

.null {
  margin-left: clamp(24px, 2.3076923077vw, 48px);
}

.null {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.null > * {
  width: calc((100% - calc(10px * 2)) / 3);
}

.mainImg {
  background-image: url(../../assets/img/index/kv-img.png);
  background-position: center center;
  background-size: cover;
  height: 60vh;
}
@media screen and (min-width:640px) {
  .mainImg {
    height: 50vh;
  }
}
@media screen and (max-width:639px) {
  .mainImg {
    height: 45vh;
    background-position: left 23% center;
  }
}
.mainImgInner {
  height: 100%;
  max-width: 1300px;
  position: relative;
}

/*---------------------------------------
    KV　内のスクロールアイコン
---------------------------------------*/
.kvScroll {
  /*スクロールダウン全体の場所*/
  position: absolute;
  bottom: 96px;
  right: 32px;
  /*Scrollテキストの描写*/
  /* 丸の描写 */
  /* 線の描写 */
  /*下からの距離が変化して丸の全体が上から下に動く*/
  /*上から下にかけて丸が透過→不透明→透過する*/
}
@media screen and (min-width:1400px) {
  .kvScroll {
    right: 0;
    bottom: 30px;
    right: 24px;
  }
}
@media screen and (max-width:639px) {
  .kvScroll {
    right: auto;
    left: 50%;
    margin: auto;
    top: 0;
    bottom: 14px;
  }
}
.kvScroll span {
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  /*描画位置*/
  position: absolute;
  bottom: 70px;
  left: -10px;
  /*テキストの形状*/
  color: #42b248;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  writing-mode: vertical-rl;
}
@media screen and (max-width:639px) {
  .kvScroll span {
    bottom: 64px;
  }
}
.kvScroll:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -5px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #42b248;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
.kvScroll:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -1px;
  /*線の形状*/
  width: 2px;
  height: 64px;
  background: #42b248;
}
@media screen and (max-width:639px) {
  .kvScroll:after {
    height: 56px;
  }
}
@keyframes circlemove {
  0% {
    bottom: 59px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

.null {
  font-size: clamp(15px, 1.2307692308vw, 17px);
}

.null {
  margin-left: clamp(24px, 2.3076923077vw, 48px);
}

.null {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.null > * {
  width: calc((100% - calc(10px * 2)) / 3);
}

/*---------------------------------------
lower page
---------------------------------------*/
.pageTtl {
  width: 100%;
  padding: 80px 32px;
  font-weight: bold;
  background-image: url(../img/index/kv-img.png);
  background-size: cover;
  background-position: center center;
  text-align: center;
}
.pageTtl h2 {
  letter-spacing: 0.12em;
  text-align: center;
  color: #42b248;
  font-size: clamp(24px, 3.3333333333vw, 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  display: inline-block;
  padding: 40px;
  color: #454545;
  border-radius: 12px;
}
.pageTtl h2 small {
  display: block;
  color: #42b248;
  font-size: clamp(16px, 2.0238095238vw, 18px);
  font-family: "Nunito", sans-serif;
  font-weight: 500;
}

.lower .sectionTtl {
  color: #42b248;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.3em;
  text-align: center;
  margin-bottom: 48px;
}

.lower .pd {
  padding: 0 24px;
}
.lower .dpb {
  display: inline-block;
}
.lower .none {
  display: none;
}

.w80 {
  width: 100%;
  margin: auto;
}
@media screen and (min-width:1025px) {
  .w80 {
    width: 80%;
  }
}

@media screen and (min-width:640px) {
  .col2 {
    display: flex;
    justify-content: space-between;
  }
  .col2 > * {
    width: 50%;
  }
}
.null {
  font-size: clamp(15px, 1.2307692308vw, 17px);
}

.null {
  margin-left: clamp(24px, 2.3076923077vw, 48px);
}

.null {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.null > * {
  width: calc((100% - calc(10px * 2)) / 3);
}

.lower .info .infoList {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
}
.lower .info .infoList__item a {
  display: flex;
  gap: 0.6em;
  align-items: center;
  text-decoration: none;
  font-size: 112%;
  background-color: #edfcee;
  border: #42b248 solid 1px;
  border-radius: 1000px;
  color: #42b248;
  padding: 24px 32px;
}
.lower .info .infoList__item a::before {
  content: "";
  display: block;
  background-image: url(../img/cmn/icon_pdf.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.6em;
  height: 1.6em;
  transition: 0.2s ease-out;
}
.lower .info .infoList__item a:hover {
  background-color: #42b248;
  color: #ffffff;
}
.lower .info .infoList__item a:hover::before {
  background-image: url(../img/cmn/icon_pdf2.svg);
}

.null {
  font-size: clamp(15px, 1.2307692308vw, 17px);
}

.null {
  margin-left: clamp(24px, 2.3076923077vw, 48px);
}

.null {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.null > * {
  width: calc((100% - calc(10px * 2)) / 3);
}

.null {
  font-size: clamp(15px, 1.2307692308vw, 17px);
}

.null {
  margin-left: clamp(24px, 2.3076923077vw, 48px);
}

.null {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.null > * {
  width: calc((100% - calc(10px * 2)) / 3);
}/*# sourceMappingURL=pages.css.map */