@charset "UTF-8";
/** 文字の定義**/
/** Colorの定義**/
.font-s {
  font-size: smaller;
}

section {
  position: relative;
}

.link-1 {
  color: #111;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 10px;
  border-bottom: solid 1px #111;
  display: flex;
  align-items: center;
  gap: 10px;
}
.link-1::before {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'><path d='M9,12.29l-.69-.69,2.1-2.1h-4.91v-1h4.91l-2.1-2.1.69-.69,3.29,3.29-3.29,3.29ZM9,18c1.24,0,2.41-.24,3.51-.71,1.1-.47,2.05-1.11,2.86-1.92.81-.81,1.45-1.76,1.92-2.86.47-1.09.71-2.26.71-3.51s-.24-2.41-.71-3.51c-.47-1.1-1.11-2.05-1.92-2.86-.81-.81-1.76-1.45-2.86-1.92-1.09-.47-2.26-.71-3.51-.71s-2.41.24-3.51.71c-1.1.47-2.05,1.11-2.86,1.92-.81.81-1.45,1.76-1.92,2.86-.47,1.09-.71,2.26-.71,3.51s.24,2.41.71,3.51c.47,1.1,1.11,2.05,1.92,2.86s1.76,1.45,2.86,1.92c1.09.47,2.26.71,3.51.71ZM9,17c-2.23,0-4.13-.78-5.68-2.33-1.55-1.55-2.33-3.44-2.33-5.68s.78-4.13,2.33-5.68,3.44-2.33,5.68-2.33,4.13.78,5.68,2.33,2.33,3.44,2.33,5.68-.78,4.13-2.33,5.68-3.44,2.33-5.68,2.33Z'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 18px;
  height: 18px;
}

.link-2 {
  font-weight: bold;
  font-size: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 5px;
  padding-bottom: 10px;
  border-bottom: solid 1px #0071bc;
}
@media screen and (max-width: 600px) {
  .link-2 {
    font-size: 14px;
  }
}
.link-2::before {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 9.93'><path fill='%230071b8' stroke='%230071b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M1.5 8.43V1.5l6 3.46-6 3.46Z'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
}

.link-3 {
  font-weight: bold;
  font-size: 16px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #0071bc;
  border-radius: 100px;
  padding: 10px 30px;
  margin: 0 auto;
  color: #fff;
  display: block;
  position: relative;
  transition: 0.2s;
}
@media screen and (max-width: 600px) {
  .link-3 {
    font-size: 14px;
  }
}
@media (hover: hover) {
  .link-3:hover {
    color: #fff;
    background-color: #666;
  }
}
.link-3::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 4px);
  right: 10px;
}

.bt-backhome {
  border: solid 2px #eae4d0;
  padding: 20px 30px;
  text-align: center;
  margin: 50px auto;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 6px;
  color: #eae4d0;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 600px) {
  .bt-backhome {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) and (max-width: 600px) {
  .bt-backhome {
    font-size: 12px;
  }
}
.bt-backhome::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 1.5px #eae4d0;
  border-right: solid 1.5px #eae4d0;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 4px);
  right: 10px;
}

.bt-s {
  font-size: 16px;
  font-weight: bold;
  padding: 10px 30px;
  border: solid 1px #111;
  border-radius: 100px;
  margin: 0 auto;
  color: #111;
  position: relative;
  transition: 0.4s;
  letter-spacing: 1px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 600px) {
  .bt-s {
    font-size: 14px;
  }
}
.bt-s .arrow {
  width: 10px;
  transform: rotate(90deg);
  position: absolute;
  top: calc(50% - 5px);
  right: 10px;
  transition: 0.4s;
}
@media (hover: hover) {
  .bt-s:hover {
    background-color: #736357;
    color: #fff;
  }
  .bt-s:hover .arrow {
    fill: #fff;
  }
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  z-index: 999;
}
@media screen and (max-width: 600px) {
  header {
    padding: 10px 20px;
  }
}
header .wrap-logo {
  max-width: 300px;
}
@media screen and (max-width: 600px) {
  header .wrap-logo {
    max-width: 220px;
  }
}
header .wrap-logo img {
  display: block;
  width: 100%;
}
header nav {
  width: calc(80% - 300px);
}
@media screen and (max-width: 1400px) {
  header nav {
    display: none;
  }
}
header .gnav {
  display: flex;
  gap: 20px 40px;
  justify-content: center;
}
header .gnav li {
  display: flex;
  gap: 10px;
  align-items: center;
}
header .gnav li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #111;
  border-radius: 100%;
}
header .gnav a {
  color: #111;
  font-weight: bold;
}
header .gnav a .font-s {
  display: block;
}

.wrap-sp-menu {
  position: fixed;
  top: 30px;
  right: 40px;
  width: 60px;
  cursor: pointer;
  z-index: 9999;
}
@media screen and (max-width: 834px) {
  .wrap-sp-menu {
    top: 15px;
    right: 10px;
    transform: scale(0.8);
  }
}
.wrap-sp-menu .txt {
  display: block;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin-top: 5px;
}
@media screen and (max-width: 600px) {
  .wrap-sp-menu .txt {
    font-size: 12px;
  }
}
.wrap-sp-menu .bd {
  position: absolute;
  width: 25px;
  display: block;
  border-top: solid 1.5px #fff;
  transition: all 0.4s ease;
}
.wrap-sp-menu .item-01 {
  top: 22px;
  left: 17px;
}
.wrap-sp-menu .item-02 {
  top: 28px;
  left: 17px;
}
.wrap-sp-menu .item-03 {
  top: 34px;
  left: 17px;
}
.wrap-sp-menu.on .item-01 {
  transform: rotate(-30deg);
  transform-origin: right;
  left: 15px;
}
.wrap-sp-menu.on .item-02 {
  opacity: 0;
}
.wrap-sp-menu.on .item-03 {
  transform: rotate(30deg);
  transform-origin: right;
  left: 15px;
}

/*
.page {
  header {
    min-height: 32vw;
    @include mq-900 {
      min-height: 350px;
    }
    @include mq-600 {
      min-height: 76vw;
    }
    .wrap-logo {
      width: clamp(200px, 20vw, 600px);
      transform: scale(1);
      opacity: 1;
    }
    .hd-ashiyu {
      display: none;
    }
  }
}
*/
.sp-nav {
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: 0.4s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}
.sp-nav.on {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.sp-nav .in {
  background-color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .sp-nav .in {
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .sp-nav .in {
    overflow-y: auto;
    display: block;
  }
}
.sp-nav .wrap-img {
  width: 70%;
}
@media screen and (max-width: 1025px) {
  .sp-nav .wrap-img {
    width: 60%;
  }
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .sp-nav .wrap-img {
    width: 100%;
    order: 2;
  }
}
@media screen and (max-width: 600px) {
  .sp-nav .wrap-img {
    display: none;
  }
}
.sp-nav .wrap-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 1025px) {
  .sp-nav .wrap-img img {
    -o-object-position: right bottom;
       object-position: right bottom;
  }
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .sp-nav .wrap-img img {
    -o-object-position: right bottom;
       object-position: right bottom;
    height: 450px;
  }
}
.sp-nav .wrap-txt {
  width: 30%;
  height: 100%;
  overflow: auto;
  padding: 100px 30px;
}
@media screen and (max-width: 1025px) {
  .sp-nav .wrap-txt {
    width: 40%;
  }
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .sp-nav .wrap-txt {
    width: 100%;
    height: auto;
    overflow: inherit;
    order: 1;
  }
}
@media screen and (max-width: 600px) {
  .sp-nav .wrap-txt {
    width: 100%;
    padding: 50px 20px;
  }
}
.sp-nav .col-2 {
  width: 100%;
  padding-bottom: 20px;
}
.sp-nav .col-2 .ft-menu {
  margin-bottom: 30px;
}
.sp-nav .col-2 .ft-menu li a {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 30px;
  color: #111;
}
@media screen and (max-width: 600px) {
  .sp-nav .col-2 .ft-menu li a {
    font-size: 16px;
  }
}
.sp-nav .col-2 .ft-menu li a::before {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='%23111'><path d='M9,12.29l-.69-.69,2.1-2.1h-4.91v-1h4.91l-2.1-2.1.69-.69,3.29,3.29-3.29,3.29ZM9,18c1.24,0,2.41-.24,3.51-.71,1.1-.47,2.05-1.11,2.86-1.92.81-.81,1.45-1.76,1.92-2.86.47-1.09.71-2.26.71-3.51s-.24-2.41-.71-3.51c-.47-1.1-1.11-2.05-1.92-2.86-.81-.81-1.76-1.45-2.86-1.92-1.09-.47-2.26-.71-3.51-.71s-2.41.24-3.51.71c-1.1.47-2.05,1.11-2.86,1.92-.81.81-1.45,1.76-1.92,2.86-.47,1.09-.71,2.26-.71,3.51s.24,2.41.71,3.51c.47,1.1,1.11,2.05,1.92,2.86s1.76,1.45,2.86,1.92c1.09.47,2.26.71,3.51.71ZM9,17c-2.23,0-4.13-.78-5.68-2.33-1.55-1.55-2.33-3.44-2.33-5.68s.78-4.13,2.33-5.68,3.44-2.33,5.68-2.33,4.13.78,5.68,2.33,2.33,3.44,2.33,5.68-.78,4.13-2.33,5.68-3.44,2.33-5.68,2.33Z'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 16px;
  height: 16px;
}
.sp-nav .col-2 .ft-menu .sub {
  margin-left: 30px;
}
.sp-nav .col-2 .ft-menu .sub li a {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 30px;
  color: #111;
}
@media screen and (max-width: 600px) {
  .sp-nav .col-2 .ft-menu .sub li a {
    font-size: 14px;
  }
}
.sp-nav .col-2 .ft-menu .sub li a::before {
  content: "";
  display: block;
  background-image: none;
  width: 10px;
  height: 10px;
  background-color: #111;
  border-radius: 100px;
}
.sp-nav .col-2 .wrap-group-onsen .title {
  font-weight: bold;
  display: flex;
  position: relative;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}
.sp-nav .col-2 .wrap-group-onsen .title::before {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #111;
}
.sp-nav .col-2 .wrap-group-onsen .title::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #111;
}
.sp-nav .col-2 .wrap-group-onsen ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 600px) {
  .sp-nav .col-2 .wrap-group-onsen ul {
    gap: 10px;
  }
}
.sp-nav .col-2 .wrap-group-onsen li {
  margin-bottom: 10px;
}
.sp-nav .col-2 .wrap-group-onsen li a {
  color: #111;
  background-color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px;
  border-radius: 6px;
  border: solid 1px #eae4d0;
  gap: 5px;
}
@media screen and (max-width: 600px) {
  .sp-nav .col-2 .wrap-group-onsen li a {
    font-size: 14px;
  }
}
.sp-nav .col-2 .wrap-group-onsen li a::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%234b7a66' d='M96,0v416h416V0H96z M472,376H136V40h336V376z'/%3E%3Cpolygon fill='%234b7a66' points='40,472 40,296 40,136 40,96 0,96 0,512 416,512 416,472 376,472'/%3E%3Cpolygon fill='%234b7a66' points='232.812,312.829 350.671,194.969 350.671,279.766 390.671,279.766 390.671,126.688 237.594,126.688 237.594,166.688 322.39,166.688 204.531,284.547'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.wrap-insta {
  border: solid 2px #111;
  border-radius: 10px;
  position: relative;
  background-color: #fff;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 50px;
}
@media screen and (max-width: 600px) {
  .wrap-insta {
    margin-bottom: 30px;
  }
}
.wrap-insta a {
  display: flex;
  gap: 20px;
  padding: 20px 60px 20px 30px;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .wrap-insta a {
    padding: 20px 40px 20px 20px;
    flex-direction: column;
    gap: 10px;
  }
}
.wrap-insta a .icon-insta {
  display: block;
  width: 50px;
  height: auto;
}
@media screen and (max-width: 600px) {
  .wrap-insta a .icon-insta {
    width: 40px;
  }
}
.wrap-insta a .txt {
  display: block;
  width: calc(100% - 40px);
  font-size: 18px;
  line-height: 1.5;
  color: #111;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .wrap-insta a .txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .wrap-insta a .txt {
    width: 100%;
  }
}
.wrap-insta a::after {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'><path d='M9,12.29l-.69-.69,2.1-2.1h-4.91v-1h4.91l-2.1-2.1.69-.69,3.29,3.29-3.29,3.29ZM9,18c1.24,0,2.41-.24,3.51-.71,1.1-.47,2.05-1.11,2.86-1.92.81-.81,1.45-1.76,1.92-2.86.47-1.09.71-2.26.71-3.51s-.24-2.41-.71-3.51c-.47-1.1-1.11-2.05-1.92-2.86-.81-.81-1.76-1.45-2.86-1.92-1.09-.47-2.26-.71-3.51-.71s-2.41.24-3.51.71c-1.1.47-2.05,1.11-2.86,1.92-.81.81-1.45,1.76-1.92,2.86-.47,1.09-.71,2.26-.71,3.51s.24,2.41.71,3.51c.47,1.1,1.11,2.05,1.92,2.86s1.76,1.45,2.86,1.92c1.09.47,2.26.71,3.51.71ZM9,17c-2.23,0-4.13-.78-5.68-2.33-1.55-1.55-2.33-3.44-2.33-5.68s.78-4.13,2.33-5.68,3.44-2.33,5.68-2.33,4.13.78,5.68,2.33,2.33,3.44,2.33,5.68-.78,4.13-2.33,5.68-3.44,2.33-5.68,2.33Z'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 20px;
  height: 20px;
  position: absolute;
  top: calc(50% - 10px);
  right: 10px;
}
.wrap-insta.wrap-insta-2 {
  border: solid 1.5px #111;
  border-radius: 10px;
  margin: 0 auto;
  margin-bottom: 0px;
}
@media screen and (max-width: 600px) {
  .wrap-insta.wrap-insta-2 {
    width: 100%;
  }
}
.wrap-insta.wrap-insta-2 a {
  padding: 15px 60px 15px 30px;
}
@media screen and (max-width: 600px) {
  .wrap-insta.wrap-insta-2 a {
    padding: 12px 40px 12px 12px;
    flex-direction: row;
  }
}
@media screen and (max-width: 600px) {
  .wrap-insta.wrap-insta-2 a .txt {
    text-align: center;
  }
}

#back-top {
  display: none;
  position: absolute;
  top: -25px;
  right: 50px;
  z-index: 99;
  background-color: #fff;
  border-radius: 100%;
  box-shadow: 0 0 3px #999;
  border: solid 2.5px #000;
  width: 50px;
  height: 50px;
  text-align: center;
  padding-top: 8px;
}
@media screen and (max-width: 834px) {
  #back-top {
    right: 30px;
    width: 45px;
    height: 45px;
    bottom: 70px;
    padding-top: 4px;
  }
}
@media screen and (max-width: 600px) {
  #back-top {
    border: solid 1px #000;
    padding-top: 5px;
    right: 10px;
  }
}
#back-top img {
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 834px) {
  #back-top img {
    width: 14px;
    height: 14px;
  }
}

footer {
  background-color: #4b7a66;
  padding: 50px 0;
  position: relative;
}
@media screen and (max-width: 834px) {
  footer {
    padding-top: 30px;
  }
}
footer .inner .wrap-flex {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  margin-bottom: 100px;
  align-items: center;
}
@media screen and (max-width: 834px) {
  footer .inner .wrap-flex {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 600px) {
  footer .inner .wrap-flex {
    margin-bottom: 20px;
  }
}
footer .inner .wrap-flex .col-1 {
  width: 30%;
}
@media screen and (max-width: 834px) {
  footer .inner .wrap-flex .col-1 {
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  footer .inner .wrap-flex .col-1 {
    width: 80%;
  }
}
footer .inner .wrap-flex .col-2 {
  width: 70%;
}
@media screen and (max-width: 834px) {
  footer .inner .wrap-flex .col-2 {
    display: none;
  }
}
footer .inner .wrap-flex .col-2 .f-nav {
  display: flex;
  gap: 20px 40px;
  justify-content: flex-end;
}
footer .inner .wrap-flex .col-2 .f-nav li {
  display: flex;
  gap: 10px;
  align-items: center;
}
footer .inner .wrap-flex .col-2 .f-nav li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 100%;
}
footer .inner .wrap-flex .col-2 .f-nav a {
  color: #fff;
  font-weight: bold;
}
footer .inner .wrap-flex .wrap-logo {
  max-width: 300px;
}
@media screen and (max-width: 600px) {
  footer .inner .wrap-flex .wrap-logo {
    max-width: 250px;
  }
}
footer .inner .wrap-flex .wrap-logo img {
  display: block;
  width: 100%;
}
footer .inner .wrap-facilities {
  display: flex;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 834px) {
  footer .inner .wrap-facilities {
    gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  footer .inner .wrap-facilities {
    gap: 10px;
    margin-bottom: 30px;
  }
}
footer .inner .wrap-facilities .col {
  width: calc(33.3333333333% - 33.3333333333px);
}
@media screen and (max-width: 834px) {
  footer .inner .wrap-facilities .col {
    width: calc(33.3333333333% - 13.3333333333px);
  }
}
@media screen and (max-width: 600px) {
  footer .inner .wrap-facilities .col {
    width: calc(33.3333333333% - 6.6666666667px);
  }
}
footer .inner .wrap-facilities .col .wrap-img {
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 834px) {
  footer .inner .wrap-facilities .col .wrap-img {
    border-radius: 6px;
  }
}
footer .inner .wrap-facilities .col .wrap-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: 2s cubic-bezier(0.075, 0.82, 0.165, 1);
  transform: scale(1.08);
}
@media screen and (max-width: 834px) {
  footer .inner .wrap-facilities .col .wrap-img img {
    transform: scale(1);
  }
}
@media screen and (max-width: 600px) {
  footer .inner .wrap-facilities .col .wrap-img img {
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
footer .inner .wrap-facilities .col .name {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}
@media screen and (max-width: 600px) {
  footer .inner .wrap-facilities .col .name {
    margin-top: 5px;
    font-size: 11px;
    text-align: center;
  }
}
footer .inner .wrap-facilities .col .name br {
  display: none;
}
@media screen and (max-width: 600px) {
  footer .inner .wrap-facilities .col .name br {
    display: block;
  }
}
footer .inner .wrap-facilities .col .name img {
  width: 10px;
  height: auto;
}
@media (hover: hover) {
  footer .inner .wrap-facilities .col a:hover .wrap-img img {
    transform: scale(1);
  }
}
footer .inner .copyright {
  display: block;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  footer .inner .copyright {
    font-size: 10px;
  }
}
@media screen and (max-width: 600px) {
  footer .inner .copyright {
    font-size: 10px;
    margin-bottom: 50px;
  }
}

.wrap-ft-nav {
  display: none;
}
@media screen and (max-width: 834px) {
  .wrap-ft-nav {
    position: fixed;
    bottom: -10px;
    left: 0;
    background-color: #fff;
    display: flex;
    z-index: 9999;
    width: 100%;
    gap: 1px;
    opacity: 0;
    transition: 0.6s 0.5s;
  }
}
@media screen and (max-width: 834px) and (max-width: 600px) {
  .wrap-ft-nav {
    border-top: solid 1px #fff;
  }
}
@media screen and (max-width: 834px) {
  .wrap-ft-nav .col {
    width: 33.3333333333%;
    text-align: center;
    padding: 20px 0;
    background-color: #4b7a66;
  }
}
@media screen and (max-width: 834px) and (max-width: 600px) {
  .wrap-ft-nav .col {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 834px) {
  .wrap-ft-nav .name {
    font-size: 14px;
    color: #fff;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 834px) and (max-width: 600px) {
  .wrap-ft-nav .name {
    font-size: 11px;
  }
}
@media screen and (max-width: 834px) {
  .wrap-ft-nav .name br {
    display: none;
  }
}
@media screen and (max-width: 834px) and (max-width: 600px) {
  .wrap-ft-nav .name br {
    display: block;
  }
}
@media screen and (max-width: 834px) {
  .wrap-ft-nav .name .icon {
    width: 10px;
  }
}
@media screen and (max-width: 834px) {
  .wrap-ft-nav.on {
    opacity: 1;
    bottom: 0;
  }
}

/* ==============================

	  共通

  ============================== */
* {
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  overflow: hidden;
  color: #0071bc;
}
a:hover {
  color: #ffb700;
}

img {
  border: none;
  line-height: 0;
  vertical-align: bottom;
}

img[data-echo] {
  background-image: url(../images/common/loader-white.gif);
  background-size: 30px 30px;
  background-position: center center;
  border: solid 1px #ddd;
  border-radius: 5px;
}

img[data-echo].loaded {
  background-image: none;
}

i {
  font-style: normal;
}

.clear {
  clear: both;
  height: 0;
  line-height: 0;
  font-size: 0;
}

.space10 {
  height: 10px;
}

.space20 {
  height: 20px;
}

.space30 {
  height: 30px;
}

.space40 {
  height: 40px;
}

.space100 {
  height: 100px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.ml5 {
  margin-left: 5px;
}

.ml10 {
  margin-left: 10px;
}

.ml20 {
  margin-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.ml40 {
  margin-left: 40px;
}

.ml50 {
  margin-left: 50px;
}

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.mr40 {
  margin-right: 40px;
}

.mr50 {
  margin-right: 50px;
}

.bold {
  font-weight: bold;
}

.txt-left {
  text-align: left;
}

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

.txt-right {
  text-align: right;
}

.red {
  color: #c00;
}

ul li {
  list-style: none;
}

.alpha {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .alpha:hover {
    opacity: 0.7;
  }
}

.wrap-alpha a {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .wrap-alpha a:hover {
    opacity: 0.7;
  }
}

.bd-01 {
  background: linear-gradient(transparent 60%, rgba(252, 238, 33, 0.6) 0%);
  font-weight: bold;
}

.cursor {
  cursor: pointer;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-table;
}

.link a {
  color: #0071bc;
}
.link a:hover {
  color: #ffb700;
}

/** ***********************************************

COMMON

*********************************************** **/
body {
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  background-color: #eae4d0;
}
@media screen and (max-width: 600px) {
  body {
    font-size: 14px;
  }
}

#wrapper {
  overflow: hidden;
}

.inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
  z-index: 2;
}

.wrap-flex {
  display: flex;
}
.wrap-flex .col {
  width: 50%;
}
.wrap-flex.flex-3 .col {
  width: 33.3333333333%;
}
.wrap-flex.flex-4 .col {
  width: 25%;
}

.sec-top-mv {
  margin-top: 150px;
  margin-bottom: 100px;
}
@media screen and (max-width: 834px) {
  .sec-top-mv {
    margin-top: 120px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-mv {
    margin-top: 100px;
  }
}
@media screen and (max-width: 834px) {
  .sec-top-mv .inner {
    padding: 0;
  }
}
.sec-top-mv .block-1 {
  z-index: 2;
  display: flex;
  gap: 5%;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.sec-top-mv .block-1 .col-1 {
  width: 35%;
}
@media screen and (max-width: 834px) {
  .sec-top-mv .block-1 .col-1 {
    padding-left: 20px;
  }
}
.sec-top-mv .block-1 .col-1 span {
  display: block;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .sec-top-mv .block-1 .col-1 span {
    font-size: 24px;
  }
}
@media screen and (max-width: 834px) {
  .sec-top-mv .block-1 .col-1 span {
    font-size: 20px;
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-mv .block-1 .col-1 span {
    font-size: 12px;
  }
}
.sec-top-mv .block-1 .col-1 .txt-1 {
  border-bottom: solid 1px #111;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.sec-top-mv .block-1 .col-2 {
  width: 40%;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .sec-top-mv .block-1 .col-2 {
    width: 30%;
  }
}
.sec-top-mv .block-1 .col-2 img {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .sec-top-mv .block-1 .col-2 img {
    max-width: 100px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-mv .block-1 .col-2 img {
    max-width: 80px;
  }
}
.sec-top-mv .block-1 .col-3 {
  width: 30%;
  writing-mode: vertical-lr;
}
.sec-top-mv .block-1 .col-3 span {
  display: block;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .sec-top-mv .block-1 .col-3 span {
    font-size: 24px;
  }
}
@media screen and (max-width: 834px) {
  .sec-top-mv .block-1 .col-3 span {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-mv .block-1 .col-3 span {
    font-size: 20px;
  }
}
.sec-top-mv .block-1 .col-3 .txt-2 {
  border-left: solid 1px #111;
  margin-left: 10px;
  padding-left: 10px;
}
.sec-top-mv .block-2 {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  z-index: 2;
}
.sec-top-mv .block-2 .col {
  padding: 50px 50px 0;
  width: 50%;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 834px) {
  .sec-top-mv .block-2 .col {
    padding: 50px 10px 0;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-mv .block-2 .col {
    padding: 10px 10px 0;
  }
}
.sec-top-mv .block-2 .col .in {
  background-color: #604c3f;
  padding: 30px 20px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 4px #999;
}
@media screen and (max-width: 600px) {
  .sec-top-mv .block-2 .col .in {
    padding: 10px;
    border-radius: 6px;
  }
}
@media (hover: hover) {
  .sec-top-mv .block-2 .col .in:hover .wrap-img img {
    transform: scale(1);
  }
}
.sec-top-mv .block-2 .col .catch {
  background-color: #fff;
  font-size: 20px;
  writing-mode: vertical-rl;
  position: absolute;
  top: 20px;
  right: 10%;
  display: block;
  border-radius: 6px;
  padding: 15px 10px;
  font-weight: bold;
  letter-spacing: 2px;
}
@media screen and (max-width: 600px) {
  .sec-top-mv .block-2 .col .catch {
    font-size: 18px;
  }
}
@media screen and (max-width: 834px) {
  .sec-top-mv .block-2 .col .catch {
    font-size: 16px;
    right: 5%;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-mv .block-2 .col .catch {
    font-size: 10px;
    top: 5px;
    right: 5px;
    padding: 8px 6px;
  }
}
.sec-top-mv .block-2 .col .name {
  color: #fff;
  font-size: 50px;
  font-weight: normal;
  text-align: center;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .sec-top-mv .block-2 .col .name {
    font-size: 30px;
  }
}
@media screen and (max-width: 834px) {
  .sec-top-mv .block-2 .col .name {
    font-size: 40px;
    height: 120px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-mv .block-2 .col .name {
    font-size: 20px;
    height: 60px;
    text-align: left;
    padding-left: 10px;
    margin-bottom: 10px;
  }
}
.sec-top-mv .block-2 .col .name rt {
  font-size: 12px;
  margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
  .sec-top-mv .block-2 .col .name rt {
    font-size: 10px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-mv .block-2 .col .name rt {
    font-size: 8px;
    margin-bottom: 5px;
  }
}
.sec-top-mv .block-2 .col .name .en {
  display: block;
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 600px) {
  .sec-top-mv .block-2 .col .name .en {
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-mv .block-2 .col .name .en {
    text-align: left;
    font-size: 10px;
  }
}
.sec-top-mv .block-2 .col .wrap-img {
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 834px) {
  .sec-top-mv .block-2 .col .wrap-img {
    border-radius: 6px;
  }
}
.sec-top-mv .block-2 .col .wrap-img img {
  width: 100%;
  height: auto;
  transition: 2s cubic-bezier(0.075, 0.82, 0.165, 1);
  transform: scale(1.08);
}
@media screen and (max-width: 600px) {
  .sec-top-mv .block-2 .col .wrap-img img {
    transform: scale(1);
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 1/1 !important;
  }
}
.sec-top-mv .block-2 .col-1 {
  border-right: solid 1.5px #111;
}
@media screen and (max-width: 600px) {
  .sec-top-mv .block-2 .col-1 {
    border-right: solid 1px #111;
  }
}
.sec-top-mv .block-2 .col-2 {
  border-left: solid 1.5px #111;
}
@media screen and (max-width: 600px) {
  .sec-top-mv .block-2 .col-2 {
    border-left: solid 1px #111;
  }
}
.sec-top-mv .block-2 .col-2 .in {
  background-color: #016934;
}
.sec-top-mv .block-2 .col-2 .in .name {
  font-size: 40px;
  line-height: 1.4;
}
@media screen and (max-width: 600px) {
  .sec-top-mv .block-2 .col-2 .in .name {
    font-size: 30px;
  }
}
@media screen and (max-width: 834px) {
  .sec-top-mv .block-2 .col-2 .in .name {
    font-size: 35px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-mv .block-2 .col-2 .in .name {
    font-size: 16px;
  }
}
.sec-top-mv .block-2 .bt {
  display: block;
  background-color: #efca54;
  text-align: center;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: bold;
  margin: 30px auto 0;
  color: #111;
  min-width: 300px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 6px;
  padding: 20px;
  position: relative;
  transition: 0.4s;
}
@media screen and (max-width: 600px) {
  .sec-top-mv .block-2 .bt {
    font-size: 16px;
  }
}
@media screen and (max-width: 834px) {
  .sec-top-mv .block-2 .bt {
    min-width: inherit;
    width: 100%;
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-mv .block-2 .bt {
    font-size: 12px;
    padding: 12px 0;
    margin-top: 10px;
  }
}
.sec-top-mv .block-2 .bt:hover {
  background-color: #eae4d0;
  padding-left: 30px;
}
.sec-top-mv .block-2 .bt:hover::before {
  left: 40px;
}
.sec-top-mv .block-2 .bt::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'><path d='M9,12.29l-.69-.69,2.1-2.1h-4.91v-1h4.91l-2.1-2.1.69-.69,3.29,3.29-3.29,3.29ZM9,18c1.24,0,2.41-.24,3.51-.71,1.1-.47,2.05-1.11,2.86-1.92.81-.81,1.45-1.76,1.92-2.86.47-1.09.71-2.26.71-3.51s-.24-2.41-.71-3.51c-.47-1.1-1.11-2.05-1.92-2.86-.81-.81-1.76-1.45-2.86-1.92-1.09-.47-2.26-.71-3.51-.71s-2.41.24-3.51.71c-1.1.47-2.05,1.11-2.86,1.92-.81.81-1.45,1.76-1.92,2.86-.47,1.09-.71,2.26-.71,3.51s.24,2.41.71,3.51c.47,1.1,1.11,2.05,1.92,2.86s1.76,1.45,2.86,1.92c1.09.47,2.26.71,3.51.71ZM9,17c-2.23,0-4.13-.78-5.68-2.33-1.55-1.55-2.33-3.44-2.33-5.68s.78-4.13,2.33-5.68,3.44-2.33,5.68-2.33,4.13.78,5.68,2.33,2.33,3.44,2.33,5.68-.78,4.13-2.33,5.68-3.44,2.33-5.68,2.33Z' fill='%23111'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  transition: 0.4s;
}
@media screen and (max-width: 600px) {
  .sec-top-mv .block-2 .bt::before {
    width: 12px;
    height: 12px;
    left: 10px;
  }
}
.sec-top-mv .orn {
  position: absolute;
  z-index: 1;
}
.sec-top-mv .orn.orn-1 {
  max-width: 150px;
  top: 0;
  left: 5%;
  opacity: 0.6;
}
@media screen and (max-width: 834px) {
  .sec-top-mv .orn.orn-1 {
    max-width: 120px;
    top: -3%;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-mv .orn.orn-1 {
    max-width: 80px;
    top: -6%;
  }
}
.sec-top-mv .orn.orn-2 {
  max-width: 150px;
  top: 10%;
  right: 5%;
  opacity: 0.6;
  transform: rotate(180deg);
}
@media screen and (max-width: 834px) {
  .sec-top-mv .orn.orn-2 {
    max-width: 120px;
    top: 12%;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-mv .orn.orn-2 {
    max-width: 80px;
    top: 10%;
  }
}

.sec-top-news {
  margin-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 834px) {
  .sec-top-news {
    margin-bottom: 0px;
  }
}
.sec-top-news .wrap-flex {
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 834px) {
  .sec-top-news .wrap-flex {
    flex-direction: column;
    gap: 30px;
  }
}
.sec-top-news .wrap-flex .col-1 {
  width: 30%;
}
.sec-top-news .wrap-flex .col-1 .wrap-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 600px) {
  .sec-top-news .wrap-flex .col-1 .wrap-title {
    gap: 5px;
  }
}
.sec-top-news .wrap-flex .col-1 .wrap-title .orn-2 {
  max-width: 100px;
}
@media screen and (max-width: 600px) {
  .sec-top-news .wrap-flex .col-1 .wrap-title .orn-2 {
    max-width: 70px;
  }
}
.sec-top-news .wrap-flex .col-1 .wrap-title .en {
  color: #736357;
  font-size: 40px;
  letter-spacing: 2px;
}
@media screen and (max-width: 600px) {
  .sec-top-news .wrap-flex .col-1 .wrap-title .en {
    font-size: 30px;
  }
}
@media screen and (max-width: 834px) {
  .sec-top-news .wrap-flex .col-1 .wrap-title .en {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-news .wrap-flex .col-1 .wrap-title .en {
    font-size: 20px;
  }
}
.sec-top-news .wrap-flex .col-1 .wrap-title .ja {
  color: #736357;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .sec-top-news .wrap-flex .col-1 .wrap-title .ja {
    font-size: 14px;
  }
}
.sec-top-news .wrap-flex .col-2 {
  width: calc(70% - 50px);
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 20px 40px;
  box-shadow: 0 0 4px #ddd;
}
@media screen and (max-width: 834px) {
  .sec-top-news .wrap-flex .col-2 {
    width: 100%;
  }
}
.sec-top-news .orn-1 {
  max-width: 150px;
  position: absolute;
  bottom: 0;
  left: 40px;
  opacity: 0.4;
}
@media screen and (max-width: 834px) {
  .sec-top-news .orn-1 {
    max-width: 120px;
  }
}

.list-news li {
  padding: 15px 10px 15px 100px;
  border-bottom: solid 1px #ddd;
  position: relative;
}
@media screen and (max-width: 600px) {
  .list-news li {
    padding: 10px 0px 10px 75px;
    font-size: 13px;
  }
}
.list-news li.important::before {
  content: "重 要";
  background-color: #e50213;
  font-size: 13px;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  padding: 2px 15px;
  border-radius: 3px;
}
@media screen and (max-width: 600px) {
  .list-news li.important::before {
    font-size: 10px;
    left: 5px;
  }
}
.list-news li.important a {
  color: #e50213;
}
.list-news li.kua::before {
  content: "ク ア";
  background-color: #016934;
  font-size: 13px;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  padding: 2px 15px;
  border-radius: 3px;
}
@media screen and (max-width: 600px) {
  .list-news li.kua::before {
    font-size: 10px;
    left: 5px;
  }
}
.list-news li.sagi::before {
  content: "白 鷺";
  background-color: #604c3f;
  font-size: 13px;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  padding: 2px 15px;
  border-radius: 3px;
}
@media screen and (max-width: 600px) {
  .list-news li.sagi::before {
    font-size: 10px;
    left: 5px;
  }
}
.list-news li a {
  color: #111;
  display: block;
  position: relative;
  padding-right: 40px;
}
@media screen and (max-width: 600px) {
  .list-news li a {
    padding-right: 10px;
  }
}
.list-news li a .icon-new {
  color: #e50213;
  margin-left: 10px;
  font-size: 13px;
  font-weight: bold;
}
.list-news li a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 1px #111;
  border-right: solid 1px #111;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3.5px);
  right: 20px;
  transition: 0.2s;
}
@media screen and (max-width: 600px) {
  .list-news li a::after {
    right: 5px;
    width: 5px;
    height: 5px;
  }
}
@media (hover: hover) {
  .list-news li a:hover::after {
    transform: translateX(10px) rotate(45deg);
  }
}

.sec-top-welcome {
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 834px) {
  .sec-top-welcome {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-welcome {
    padding-top: 50px;
  }
}
.sec-top-welcome .block-1 {
  writing-mode: vertical-rl;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
.sec-top-welcome .block-1 p {
  font-size: 24px;
  width: -moz-fit-content;
  width: fit-content;
  transform: translate(60%, -10px);
  letter-spacing: 2px;
  line-height: 2;
  z-index: 3;
  opacity: 0;
  transition: 0.6s;
}
@media screen and (max-width: 600px) {
  .sec-top-welcome .block-1 p {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-welcome .block-1 p {
    font-size: 16px;
    transition: 0.6s;
  }
}
.sec-top-welcome .block-1 p.on {
  transform: translate(60%, 0);
  opacity: 1;
}
.sec-top-welcome .block-1 .oke {
  display: block;
  width: 25vw;
  max-width: 400px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 15%;
  transform-origin: center;
  transform: translateY(-50%) scale(1.1);
  z-index: 2;
  transition: 0.6s;
  opacity: 0;
}
@media screen and (max-width: 834px) {
  .sec-top-welcome .block-1 .oke {
    width: 250px;
    left: 10%;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-welcome .block-1 .oke {
    width: 150px;
    left: 0;
    transition: 0.6s;
  }
}
.sec-top-welcome .block-1 .oke.on {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.sec-top-welcome .block-1 .img-welcome-2 {
  display: block;
  width: 15vw;
  max-width: 300px;
  height: auto;
  position: absolute;
  top: 50%;
  right: 10%;
  transform-origin: center;
  transform: translateY(-50%) scale(1.1);
  z-index: 2;
  transition: 0.6s;
  opacity: 0;
}
@media screen and (max-width: 834px) {
  .sec-top-welcome .block-1 .img-welcome-2 {
    right: 0;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-welcome .block-1 .img-welcome-2 {
    display: none;
  }
}
.sec-top-welcome .block-1 .img-welcome-2.on {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.sec-top-welcome .block-1 .orn {
  position: absolute;
}
.sec-top-welcome .block-1 .orn.orn-1 {
  max-width: 150px;
  top: 10%;
  left: 0;
  opacity: 0.5;
}
@media screen and (max-width: 834px) {
  .sec-top-welcome .block-1 .orn.orn-1 {
    max-width: 120px;
  }
}
.sec-top-welcome .block-1 .orn.orn-2 {
  max-width: 150px;
  bottom: 0;
  right: 0;
  opacity: 0.5;
  transform: rotate(180deg);
}
@media screen and (max-width: 834px) {
  .sec-top-welcome .block-1 .orn.orn-2 {
    max-width: 120px;
  }
}
.sec-top-welcome .block-2 {
  writing-mode: vertical-rl;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}
.sec-top-welcome .block-2 p {
  font-size: 24px;
  width: -moz-fit-content;
  width: fit-content;
  transform: translate(-100%, -40px);
  letter-spacing: 2px;
  line-height: 2;
  z-index: 3;
  opacity: 0;
  transition: 0.6s;
}
@media screen and (max-width: 600px) {
  .sec-top-welcome .block-2 p {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-welcome .block-2 p {
    font-size: 16px;
    transition: 0.6s;
  }
}
.sec-top-welcome .block-2 p.on {
  opacity: 1;
  transform: translate(-100%, -30px);
}
.sec-top-welcome .block-2 .img-welcome-1 {
  display: block;
  width: 25vw;
  max-width: 350px;
  height: auto;
  position: absolute;
  top: 0;
  right: 15%;
  transform-origin: center;
  z-index: 2;
  opacity: 0;
  transition: 0.6s;
  opacity: 0;
  transform: scale(1.1);
}
@media screen and (max-width: 834px) {
  .sec-top-welcome .block-2 .img-welcome-1 {
    width: 250px;
    right: 10%;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-welcome .block-2 .img-welcome-1 {
    width: 150px;
    right: 20px;
    transition: 0.6s;
  }
}
.sec-top-welcome .block-2 .img-welcome-1.on {
  opacity: 1;
  transform: scale(1);
}
.sec-top-welcome .block-2 .orn {
  position: absolute;
}
.sec-top-welcome .block-2 .orn.orn-3 {
  max-width: 250px;
  bottom: -30%;
  right: 7%;
}
@media screen and (max-width: 834px) {
  .sec-top-welcome .block-2 .orn.orn-3 {
    max-width: 200px;
    bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-welcome .block-2 .orn.orn-3 {
    max-width: 150px;
    right: 0;
  }
}
.sec-top-welcome .block-2 .orn.orn-4 {
  max-width: 200px;
  bottom: 10%;
  left: 10%;
}
@media screen and (max-width: 834px) {
  .sec-top-welcome .block-2 .orn.orn-4 {
    max-width: 120px;
    left: 5%;
    bottom: -10%;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-welcome .block-2 .orn.orn-4 {
    max-width: 80px;
  }
}
.sec-top-welcome .txt-welcome {
  max-width: 90%;
  margin: 150px auto 0;
  display: block;
}
@media screen and (max-width: 834px) {
  .sec-top-welcome .txt-welcome {
    margin-top: 50px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-welcome .txt-welcome {
    margin-top: 30px;
    max-width: 100%;
  }
}

.sec-top-susume {
  padding-bottom: 150px;
  position: relative;
}
@media screen and (max-width: 834px) {
  .sec-top-susume {
    padding-bottom: 50px;
  }
}
.sec-top-susume .block-1 {
  margin-bottom: 200px;
}
@media screen and (max-width: 834px) {
  .sec-top-susume .block-1 {
    margin-bottom: 150px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-susume .block-1 {
    margin-bottom: 0;
  }
}
.sec-top-susume .wrap-title {
  writing-mode: vertical-rl;
  margin: 0 0 0 auto;
  transform: translateX(-40%);
}
@media screen and (max-width: 834px) {
  .sec-top-susume .wrap-title {
    transform: translateX(0);
  }
}
.sec-top-susume .wrap-title .title-susume {
  margin-left: 50px;
  width: 140px;
  opacity: 0;
  transition: 0.6s;
  transform: translateY(-10px);
}
@media screen and (max-width: 834px) {
  .sec-top-susume .wrap-title .title-susume {
    width: 100px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-susume .wrap-title .title-susume {
    width: 60px;
    margin-left: 10px;
    margin-top: -50px;
    transition: 0.6s;
  }
}
.sec-top-susume .wrap-title .title-susume.on {
  opacity: 1;
  transform: translateY(0);
}
.sec-top-susume .wrap-title p {
  font-size: 24px;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 2px;
  line-height: 2;
  z-index: 3;
  transform: translateY(140px);
  opacity: 0;
  transition: 0.6s;
}
@media screen and (max-width: 600px) {
  .sec-top-susume .wrap-title p {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-susume .wrap-title p {
    font-size: 16px;
    transition: 0.6s;
  }
}
.sec-top-susume .wrap-title p.on {
  transform: translateY(150px);
  opacity: 1;
}
.sec-top-susume .illust-1 {
  position: absolute;
  top: 100px;
  left: 0;
  display: block;
  transform-origin: center;
  max-width: 700px;
}
@media screen and (max-width: 834px) {
  .sec-top-susume .illust-1 {
    max-width: 400px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-susume .illust-1 {
    max-width: 50%;
  }
}
.sec-top-susume .block-2 {
  min-height: 1000px;
  position: relative;
}
@media screen and (max-width: 834px) {
  .sec-top-susume .block-2 {
    min-height: 900px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-susume .block-2 {
    min-height: inherit;
    padding: 30px 0;
    overflow: hidden;
  }
}
.sec-top-susume .block-2 .wrap-txt {
  background-color: rgba(254, 241, 228, 0.7);
  border-radius: 100%;
  aspect-ratio: 1/1;
  max-width: 800px;
  padding: 50px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 600px) {
  .sec-top-susume .block-2 .wrap-txt {
    width: 400px;
    padding: 0;
  }
}
.sec-top-susume .block-2 .wrap-txt::before {
  content: "";
  display: block;
  opacity: 0.4;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: solid 1px #4b7a66;
  position: absolute;
  top: 0;
  left: 0;
  animation: anime1 10s ease infinite;
}
@media screen and (max-width: 600px) {
  .sec-top-susume .block-2 .wrap-txt::before {
    top: 10px;
    animation: anime1sp 10s ease infinite;
  }
}
@keyframes anime1 {
  0% {
    transform: rotate(0) translate(-10px, -10px);
  }
  100% {
    transform: rotate(360deg) translate(-10px, -10px);
  }
}
@keyframes anime1sp {
  0% {
    transform: rotate(0) translate(-5px, -5px);
  }
  100% {
    transform: rotate(360deg) translate(-5px, -5px);
  }
}
.sec-top-susume .block-2 .wrap-txt::after {
  content: "";
  display: block;
  opacity: 0.7;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: solid 1px #4b7a66;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  animation: anime2 10s ease infinite;
}
@media screen and (max-width: 600px) {
  .sec-top-susume .block-2 .wrap-txt::after {
    animation: anime2sp 10s ease infinite;
  }
}
@keyframes anime2 {
  0% {
    transform: rotate(0) translate(10px, 10px);
  }
  100% {
    transform: rotate(360deg) translate(10px, 10px);
  }
}
@keyframes anime2sp {
  0% {
    transform: rotate(0) translate(5px, 5px);
  }
  100% {
    transform: rotate(360deg) translate(5px, 5px);
  }
}
.sec-top-susume .block-2 .wrap-txt p {
  font-size: 24px;
  line-height: 2.5;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .sec-top-susume .block-2 .wrap-txt p {
    font-size: 20px;
  }
}
@media screen and (max-width: 834px) {
  .sec-top-susume .block-2 .wrap-txt p {
    font-size: 23px;
    max-width: 70%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-susume .block-2 .wrap-txt p {
    font-size: 14px;
  }
}
.sec-top-susume .img {
  position: absolute;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 3px #999;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .sec-top-susume .img {
    display: none;
    border-radius: 6px;
  }
}
.sec-top-susume .img.img-A {
  top: -10%;
  left: 10%;
  max-width: 380px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1.6/1;
}
@media screen and (max-width: 834px) {
  .sec-top-susume .img.img-A {
    max-width: 250px;
    left: 20%;
    top: -12%;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-susume .img.img-A {
    display: block;
    width: 150px;
    top: 0;
    left: 10px;
  }
}
.sec-top-susume .img.img-E {
  top: 30%;
  left: 5%;
  max-width: 250px;
}
@media screen and (max-width: 834px) {
  .sec-top-susume .img.img-E {
    max-width: 180px;
    top: 12%;
    left: 20px;
  }
}
.sec-top-susume .img.img-C {
  top: 60%;
  left: 15%;
  max-width: 250px;
}
@media screen and (max-width: 834px) {
  .sec-top-susume .img.img-C {
    max-width: 200px;
    left: 5%;
    top: 65%;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-susume .img.img-C {
    display: block;
    width: 100px;
    top: 75%;
  }
}
.sec-top-susume .img.img-F {
  bottom: 0%;
  left: 32%;
  max-width: 300px;
}
@media screen and (max-width: 834px) {
  .sec-top-susume .img.img-F {
    max-width: 200px;
    left: 25%;
    bottom: 2%;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-susume .img.img-F {
    display: block;
    width: 100px;
  }
}
.sec-top-susume .img.img-B {
  top: 0%;
  right: 8%;
  max-width: 350px;
}
@media screen and (max-width: 834px) {
  .sec-top-susume .img.img-B {
    max-width: 220px;
    right: 5%;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-susume .img.img-B {
    display: block;
    width: 100px;
    top: 40px;
  }
}
.sec-top-susume .img.img-D {
  top: 40%;
  right: 3%;
  max-width: 180px;
}
@media screen and (max-width: 834px) {
  .sec-top-susume .img.img-D {
    max-width: 120px;
    top: 50%;
    display: none;
  }
}
.sec-top-susume .img.img-G {
  bottom: 5%;
  right: 10%;
  max-width: 350px;
}
@media screen and (max-width: 834px) {
  .sec-top-susume .img.img-G {
    max-width: 250px;
    bottom: 12%;
    right: 5%;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-susume .img.img-G {
    display: block;
    width: 100px;
  }
}
.sec-top-susume .orn {
  position: absolute;
}
.sec-top-susume .orn.orn-4a {
  max-width: 200px;
  top: -15%;
  right: 2%;
}
@media screen and (max-width: 834px) {
  .sec-top-susume .orn.orn-4a {
    max-width: 100px;
  }
}
.sec-top-susume .orn.orn-4 {
  max-width: 200px;
  bottom: 10%;
  left: 5%;
}
@media screen and (max-width: 834px) {
  .sec-top-susume .orn.orn-4 {
    max-width: 100px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-susume .orn.orn-4 {
    max-width: 80px;
    bottom: 5%;
  }
}

.sec-top-map {
  padding-bottom: 50px;
}
.sec-top-map .wrap-title {
  display: flex;
  gap: 50px;
  align-items: center;
  position: relative;
  justify-content: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 834px) {
  .sec-top-map .wrap-title {
    gap: 30px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 834px) {
  .sec-top-map .wrap-title .map-title {
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-title .map-title {
    width: 80%;
  }
}
@media screen and (max-width: 834px) {
  .sec-top-map .wrap-title .illust-3 {
    width: 20%;
    height: auto;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-title .illust-3 {
    position: absolute;
    top: 50px;
    left: 0;
    width: 25%;
  }
}
@media screen and (max-width: 834px) {
  .sec-top-map .wrap-title .illust-4 {
    width: 20%;
    height: auto;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-title .illust-4 {
    position: absolute;
    top: -50px;
    right: 0;
    width: 30%;
  }
}
.sec-top-map .wrap-map {
  max-width: 1200px;
  aspect-ratio: 1.6/1;
  margin: 0 auto 50px;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-map {
    aspect-ratio: 1/1.2;
  }
}
.sec-top-map .wrap-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: none;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-map iframe {
    border-radius: 6px;
  }
}
.sec-top-map .wrap-map-links {
  background-color: #333;
  padding: 30px;
  max-width: 1200px;
  margin: 0 auto 50px;
  border-radius: 10px;
}
.sec-top-map .wrap-map-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-map-links ul {
    flex-direction: column;
  }
}
.sec-top-map .wrap-map-links ul a {
  color: #fff;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 5px;
  gap: 10px;
}
.sec-top-map .wrap-map-links ul a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
}
.sec-top-map .wrap-item {
  background-color: #fff;
  border-radius: 10px;
  min-height: 500px;
  padding: 100px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 834px) {
  .sec-top-map .wrap-item {
    padding: 50px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item {
    padding: 50px 20px;
    margin-bottom: 30px;
  }
}
.sec-top-map .wrap-item.gourmet {
  background-color: #ffeec7;
  border: solid 1px #f38f1e;
}
.sec-top-map .wrap-item.gourmet .title {
  margin-left: 70px;
  margin-bottom: 30px;
}
.sec-top-map .wrap-item .title {
  position: relative;
  font-size: 40px;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 70px;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .title {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .title {
    font-size: 24px;
    padding-left: 40px;
  }
}
.sec-top-map .wrap-item .title .txt-osusume {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .title .txt-osusume {
    width: 80px;
    top: -35px;
  }
}
.sec-top-map .wrap-item .title rt {
  font-size: 12px;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .title rt {
    font-size: 10px;
  }
}
.sec-top-map .wrap-item .title i {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-10px);
  display: block;
  width: 50px;
  height: 100px;
  text-align: center;
  background-image: url(../images/svgs/num.svg);
  background-size: contain;
  background-position: center top;
  font-size: 30px;
  color: #fff;
  margin-right: 20px;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .title i {
    font-size: 24px;
  }
}
@media screen and (max-width: 834px) {
  .sec-top-map .wrap-item .title i {
    width: 40px;
    height: 80px;
    font-size: 26px;
    transform: translateY(0px);
  }
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .title i {
    width: 30px;
    height: 70px;
    font-size: 20px;
    transform: translateY(0px);
    margin-right: 15px;
  }
}
.sec-top-map .wrap-item .desc {
  margin-bottom: 30px;
  margin-left: 70px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .desc {
    margin-left: 0;
    margin-bottom: 30px;
  }
}
.sec-top-map .wrap-item .desc p {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .desc p {
    font-size: 18px;
  }
}
@media screen and (max-width: 834px) {
  .sec-top-map .wrap-item .desc p {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .desc p {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .desc p br {
    display: none;
  }
}
.sec-top-map .wrap-item .desc .img-gourmet {
  width: 200px;
  height: auto;
  position: absolute;
  top: -70px;
  right: 0px;
}
@media screen and (max-width: 834px) {
  .sec-top-map .wrap-item .desc .img-gourmet {
    width: 120px;
    top: -110px;
    right: -20px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .desc .img-gourmet {
    width: 60px;
    top: -80px;
    right: inherit;
    left: -5px;
  }
}
.sec-top-map .wrap-item .wrap-point {
  margin-left: 70px;
  border: solid 1px #e50213;
  border-radius: 8px;
  display: flex;
  align-items: center;
  color: #e50213;
  padding: 5px 20px;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 400px;
  gap: 20px;
  margin-bottom: 50px;
  background-color: #fff;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .wrap-point {
    margin-left: 0;
    min-width: inherit;
    width: 100%;
    display: block;
    margin-bottom: 20px;
    gap: 10px;
    padding: 20px 10px 10px;
    position: relative;
  }
}
.sec-top-map .wrap-item .wrap-point .icon-point {
  width: 100px;
  transform: translateY(-6px);
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .wrap-point .icon-point {
    width: 80px;
    transform: translateY(0);
    position: absolute;
    left: -5px;
    top: -35px;
  }
}
.sec-top-map .wrap-item .wrap-point p {
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .wrap-point p {
    font-size: 16px;
  }
}
@media screen and (max-width: 834px) {
  .sec-top-map .wrap-item .wrap-point p {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .wrap-point p {
    font-size: 13px;
  }
}
.sec-top-map .wrap-item .wrap-img {
  margin-bottom: 50px;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .wrap-img {
    margin-bottom: 20px;
  }
}
.sec-top-map .wrap-item .wrap-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1.6/1;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .wrap-img img {
    aspect-ratio: 1/0.8 !important;
  }
}
.sec-top-map .wrap-item .wrap-imgs {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
@media screen and (max-width: 834px) {
  .sec-top-map .wrap-item .wrap-imgs {
    gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .wrap-imgs {
    gap: 10px;
    margin-bottom: 50px;
  }
}
.sec-top-map .wrap-item .wrap-imgs .col {
  width: calc(50% - 15px);
}
@media screen and (max-width: 834px) {
  .sec-top-map .wrap-item .wrap-imgs .col {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .wrap-imgs .col {
    width: 100%;
  }
}
.sec-top-map .wrap-item .wrap-imgs .col img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1.6/1;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .wrap-imgs .col img {
    aspect-ratio: 1/0.8 !important;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .slick {
    width: 100%;
    position: relative;
    display: block !important;
    padding-bottom: 10px;
  }
  .sec-top-map .wrap-item .slick .slick-slide {
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
  }
}
.sec-top-map .wrap-item .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.sec-top-map .wrap-item .slick-slide,
.sec-top-map .wrap-item .slick-slider .slick-track,
.sec-top-map .wrap-item .slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
  transform: translateZ(0);
  perspective: 1000;
  backface-visibility: hidden;
}
.sec-top-map .wrap-item .arrow-gr {
  position: absolute;
  bottom: -25px;
  z-index: 2;
  display: block;
  max-width: 25px;
}
.sec-top-map .wrap-item .arrow-gr.right {
  left: 35px;
}
.sec-top-map .wrap-item .arrow-gr .d {
  fill: #4b7a66;
}
.sec-top-map .wrap-item .arrow-gr .e {
  fill: #fff;
  stroke: #4b7a66;
  stroke-miterlimit: 10;
}
.sec-top-map .wrap-item .arrow-gr.right {
  transform: rotate(180deg);
}
.sec-top-map .wrap-item .slick-dots {
  text-align: center;
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 100%;
  z-index: 1;
}
.sec-top-map .wrap-item .slick-dots li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 3px;
  background-color: #ddd;
  border-radius: 100%;
  text-indent: -9999px;
  cursor: pointer;
}
.sec-top-map .wrap-item .slick-dots li.slick-active {
  background-color: #4b7a66;
}
.sec-top-map .wrap-item .wrap-info {
  border: solid 1px #111;
  border-radius: 8px;
  padding: 30px;
  max-width: 500px;
  margin: 0 auto 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .wrap-info {
    margin-bottom: 20px;
    padding: 15px;
  }
}
.sec-top-map .wrap-item .wrap-info dl {
  display: flex;
  gap: 15px;
  align-items: center;
}
.sec-top-map .wrap-item .wrap-info dl dt {
  background-color: #4b7a66;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 2px 20px;
  width: 100px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .wrap-info dl dt {
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .wrap-info dl dt {
    font-size: 12px;
  }
}
.sec-top-map .wrap-item .wrap-info dl dd {
  font-size: 16px;
  font-weight: bold;
  width: 100px;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .wrap-info dl dd {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .wrap-info dl dd {
    font-size: 13px;
  }
}
.sec-top-map .wrap-item .wrap-bts {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .wrap-bts {
    flex-direction: column;
  }
}
.sec-top-map .wrap-item .wrap-bts .bt-map {
  display: block;
  color: #fff;
  background-color: #0071bc;
  padding: 20px 40px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  width: 100%;
  max-width: 400px;
  position: relative;
  transition: 0.2s;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .wrap-bts .bt-map {
    font-size: 14px;
  }
}
@media (hover: hover) {
  .sec-top-map .wrap-item .wrap-bts .bt-map:hover {
    opacity: 0.8;
  }
}
.sec-top-map .wrap-item .wrap-bts .bt-map .exlink {
  display: block;
  position: absolute;
  right: 10%;
  top: calc(50% - 7px);
  width: 14px;
  height: auto;
}
.sec-top-map .wrap-item .wrap-bts .bt-site {
  display: block;
  color: #111;
  background-color: #fff;
  padding: 20px 40px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  width: 100%;
  max-width: 400px;
  position: relative;
  border: solid 1px #111;
  transition: 0.2s;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-item .wrap-bts .bt-site {
    font-size: 14px;
  }
}
@media (hover: hover) {
  .sec-top-map .wrap-item .wrap-bts .bt-site:hover {
    background-color: #eae4d0;
  }
}
.sec-top-map .wrap-item .wrap-bts .bt-site .exlink {
  display: block;
  position: absolute;
  right: 10%;
  top: calc(50% - 7px);
  width: 14px;
  height: auto;
}
.sec-top-map .wrap-parking {
  max-width: 1200px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-parking {
    margin-bottom: 50px;
  }
}
.sec-top-map .wrap-parking h3 {
  font-size: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-parking h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-parking h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.sec-top-map .wrap-parking .wrap-flex {
  gap: 20px;
}
@media screen and (max-width: 834px) {
  .sec-top-map .wrap-parking .wrap-flex {
    flex-direction: column;
  }
}
.sec-top-map .wrap-parking .wrap-flex .col {
  background-color: #fff;
  border-radius: 10px;
  min-height: 500px;
  border: solid 1px #111;
  padding: 30px;
}
@media screen and (max-width: 834px) {
  .sec-top-map .wrap-parking .wrap-flex .col {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-parking .wrap-flex .col {
    padding: 20px 15px;
    border-radius: 6px;
  }
}
.sec-top-map .wrap-parking .wrap-flex .col .name {
  font-size: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-parking .wrap-flex .col .name {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-parking .wrap-flex .col .name {
    font-size: 18px;
    gap: 10px;
    margin-bottom: 20px;
  }
}
.sec-top-map .wrap-parking .wrap-flex .col .name img {
  width: 35px;
  height: auto;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-parking .wrap-flex .col .name img {
    width: 25px;
  }
}
.sec-top-map .wrap-parking .wrap-flex .col .wrap-img {
  overflow: hidden;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-parking .wrap-flex .col .wrap-img {
    margin-bottom: 20px;
  }
}
.sec-top-map .wrap-parking .wrap-flex .col .wrap-img img {
  width: 100%;
  height: 300px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-parking .wrap-flex .col .wrap-img img {
    height: 200px;
  }
}
.sec-top-map .wrap-parking .wrap-flex .col .list {
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-parking .wrap-flex .col .list {
    margin-bottom: 20px;
  }
}
.sec-top-map .wrap-parking .wrap-flex .col .list li {
  list-style: disc;
  list-style-position: outside;
  margin-left: 20px;
  font-size: 18px;
  margin-bottom: 1em;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-parking .wrap-flex .col .list li {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-parking .wrap-flex .col .list li {
    font-size: 14px;
  }
}
.sec-top-map .wrap-parking .wrap-flex .col .list li:last-child {
  margin-bottom: 0;
}
.sec-top-map .wrap-parking .wrap-flex .col .list li .font-s {
  display: block;
  margin-top: 5px;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-parking .wrap-flex .col .list li .font-s {
    display: inline;
    margin-left: 5px;
  }
}
.sec-top-map .wrap-parking .wrap-flex .col table {
  width: 100%;
  border-spacing: 5px;
}
.sec-top-map .wrap-parking .wrap-flex .col th {
  background-color: #4b7a66;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  width: 100px;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-parking .wrap-flex .col th {
    font-size: 12px;
  }
}
.sec-top-map .wrap-parking .wrap-flex .col td {
  padding: 5px 0 5px 20px;
  font-size: 16px;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-parking .wrap-flex .col td {
    font-size: 14px;
  }
}
.sec-top-map .wrap-parking .wrap-flex .col .bt-map {
  display: block;
  color: #fff;
  background-color: #0071bc;
  padding: 20px 40px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  width: 100%;
  max-width: 400px;
  position: relative;
  transition: 0.2s;
  margin: 30px auto 0;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-parking .wrap-flex .col .bt-map {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-parking .wrap-flex .col .bt-map {
    margin-top: 20px;
  }
}
@media (hover: hover) {
  .sec-top-map .wrap-parking .wrap-flex .col .bt-map:hover {
    opacity: 0.8;
  }
}
.sec-top-map .wrap-parking .wrap-flex .col .bt-map .exlink {
  display: block;
  position: absolute;
  right: 10%;
  top: calc(50% - 7px);
  width: 14px;
  height: auto;
}
.sec-top-map .wrap-insta {
  border: solid 2px #111;
  border-radius: 10px;
  position: relative;
  background-color: #fff;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 50px;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-insta {
    margin-bottom: 0px;
    width: 100%;
  }
}
.sec-top-map .wrap-insta a {
  display: flex;
  gap: 20px;
  padding: 20px 60px 20px 30px;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-insta a {
    padding: 20px 40px 20px 20px;
    flex-direction: column;
    gap: 10px;
  }
}
.sec-top-map .wrap-insta a .icon-insta {
  display: block;
  width: 50px;
  height: auto;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-insta a .icon-insta {
    width: 40px;
  }
}
.sec-top-map .wrap-insta a .txt {
  display: block;
  width: calc(100% - 40px);
  font-size: 18px;
  line-height: 1.5;
  color: #111;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-insta a .txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-insta a .txt {
    width: 100%;
    font-size: 14px;
    text-align: center;
  }
}
.sec-top-map .wrap-insta a::after {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'><path d='M9,12.29l-.69-.69,2.1-2.1h-4.91v-1h4.91l-2.1-2.1.69-.69,3.29,3.29-3.29,3.29ZM9,18c1.24,0,2.41-.24,3.51-.71,1.1-.47,2.05-1.11,2.86-1.92.81-.81,1.45-1.76,1.92-2.86.47-1.09.71-2.26.71-3.51s-.24-2.41-.71-3.51c-.47-1.1-1.11-2.05-1.92-2.86-.81-.81-1.76-1.45-2.86-1.92-1.09-.47-2.26-.71-3.51-.71s-2.41.24-3.51.71c-1.1.47-2.05,1.11-2.86,1.92-.81.81-1.45,1.76-1.92,2.86-.47,1.09-.71,2.26-.71,3.51s.24,2.41.71,3.51c.47,1.1,1.11,2.05,1.92,2.86s1.76,1.45,2.86,1.92c1.09.47,2.26.71,3.51.71ZM9,17c-2.23,0-4.13-.78-5.68-2.33-1.55-1.55-2.33-3.44-2.33-5.68s.78-4.13,2.33-5.68,3.44-2.33,5.68-2.33,4.13.78,5.68,2.33,2.33,3.44,2.33,5.68-.78,4.13-2.33,5.68-3.44,2.33-5.68,2.33Z'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 20px;
  height: 20px;
  position: absolute;
  top: calc(50% - 10px);
  right: 10px;
}
.sec-top-map .wrap-insta.wrap-insta-2 {
  border: solid 1.5px #111;
  border-radius: 10px;
  margin: 0;
  margin-bottom: 0px;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-insta.wrap-insta-2 {
    width: 100%;
  }
}
.sec-top-map .wrap-insta.wrap-insta-2 a {
  padding: 15px 60px 15px 30px;
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-insta.wrap-insta-2 a {
    padding: 12px 40px 12px 12px;
    flex-direction: row;
  }
}
@media screen and (max-width: 600px) {
  .sec-top-map .wrap-insta.wrap-insta-2 a .txt {
    text-align: center;
  }
}

.sec-page-news {
  margin-top: 150px;
  margin-bottom: 50px;
}
@media screen and (max-width: 600px) {
  .sec-page-news {
    margin-top: 100px;
  }
}
.sec-page-news .wrap-title-area {
  background-color: #4b7a66;
  padding: 50px;
}
.sec-page-news h2.title {
  text-align: center;
  font-size: 40px;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .sec-page-news h2.title {
    font-size: 30px;
  }
}
@media screen and (max-width: 834px) {
  .sec-page-news h2.title {
    font-size: 30px;
  }
}
.sec-page-news .wrap-bnav {
  max-width: 1600px;
  margin: 10px auto 0;
}
@media screen and (max-width: 1600px) {
  .sec-page-news .wrap-bnav {
    padding: 0 10px;
  }
}
.sec-page-news .wrap-bnav ul {
  display: flex;
}
.sec-page-news .wrap-bnav ul li {
  font-size: 14px;
}
@media screen and (max-width: 600px) {
  .sec-page-news .wrap-bnav ul li {
    font-size: 12px;
  }
}
@media screen and (max-width: 834px) {
  .sec-page-news .wrap-bnav ul li {
    font-size: 12px;
  }
}
.sec-page-news .wrap-bnav ul li::after {
  content: " / ";
}
.sec-page-news .wrap-bnav ul li a {
  color: #111;
  font-size: 14px;
}
@media screen and (max-width: 600px) {
  .sec-page-news .wrap-bnav ul li a {
    font-size: 12px;
  }
}
@media screen and (max-width: 834px) {
  .sec-page-news .wrap-bnav ul li a {
    font-size: 12px;
  }
}
.sec-page-news .wrap-news-list {
  max-width: 1400px;
  margin: 50px auto;
  display: flex;
  gap: 50px;
  min-height: 500px;
}
@media screen and (max-width: 1400px) {
  .sec-page-news .wrap-news-list {
    margin: 50px 20px;
  }
}
@media screen and (max-width: 834px) {
  .sec-page-news .wrap-news-list {
    flex-direction: column;
  }
}
.sec-page-news .wrap-news-list .col-1 {
  width: 80%;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
}
@media screen and (max-width: 1025px) {
  .sec-page-news .wrap-news-list .col-1 {
    width: 70%;
  }
}
@media screen and (max-width: 834px) {
  .sec-page-news .wrap-news-list .col-1 {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .sec-page-news .wrap-news-list .col-1 {
    padding: 20px 10px;
  }
}
.sec-page-news .wrap-news-list .col-1 .list-news {
  margin-bottom: 50px;
}
.sec-page-news .wrap-news-list .col-1 .wp-pagenavi {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 500px) {
  .sec-page-news .wrap-news-list .col-1 .wp-pagenavi {
    margin-bottom: 20px;
  }
}
.sec-page-news .wrap-news-list .col-1 .wp-pagenavi .current {
  display: block;
  padding: 10px 15px;
  margin-right: 10px;
  background-color: #4b7a66;
  color: #fff;
  border: solid 1px #fff;
  border-radius: 5px;
  font-weight: bold;
}
.sec-page-news .wrap-news-list .col-1 .wp-pagenavi a {
  display: block;
  padding: 10px 15px;
  margin-right: 10px;
  background-color: #fff;
  color: #4b7a66;
  border: solid 1px #4b7a66;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.2s;
}
@media (hover: hover) {
  .sec-page-news .wrap-news-list .col-1 .wp-pagenavi a:hover {
    background-color: #4b7a66;
    color: #fff;
    border: solid 1px #fff;
  }
}
.sec-page-news .wrap-news-list .col-2 {
  width: 20%;
}
@media screen and (max-width: 1025px) {
  .sec-page-news .wrap-news-list .col-2 {
    width: 30%;
  }
}
@media screen and (max-width: 834px) {
  .sec-page-news .wrap-news-list .col-2 {
    width: 100%;
  }
}
.sec-page-news .wrap-news-list .col-2 h3.title {
  font-size: 16px;
  border-bottom: solid 1px #111;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .sec-page-news .wrap-news-list .col-2 h3.title {
    font-size: 14px;
  }
}
.sec-page-news .wrap-news-list .col-2 h3.title a {
  color: #111;
}
.sec-page-news .wrap-news-list .col-2 ul {
  margin-bottom: 30px;
}
.sec-page-news .wrap-news-list .col-2 ul li {
  font-size: 14px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}
@media screen and (max-width: 600px) {
  .sec-page-news .wrap-news-list .col-2 ul li {
    font-size: 12px;
  }
}
.sec-page-news .wrap-news-list .col-2 ul a::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #0071bc;
  border-radius: 10px;
  position: absolute;
  top: 6px;
  left: 0;
}
.sec-page-news .wrap-news-list .col-2 ul a .icon-new {
  color: #e50213;
  margin-left: 5px;
  font-size: 12px;
  font-weight: bold;
}
.sec-page-news .entry {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
}
@media screen and (max-width: 600px) {
  .sec-page-news .entry {
    padding-top: 30px;
  }
}
.sec-page-news .entry .title-h3 {
  font-size: 30px;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: solid 2px #111;
}
@media screen and (max-width: 600px) {
  .sec-page-news .entry .title-h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 834px) {
  .sec-page-news .entry .title-h3 {
    font-size: 24px;
  }
}
.sec-page-news .entry .title-h3 .wrap-date {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 600px) {
  .sec-page-news .entry .title-h3 .wrap-date {
    flex-wrap: wrap;
  }
}
.sec-page-news .entry .title-h3 .wrap-date .date {
  font-size: 14px;
  font-weight: normal;
  color: #666;
}
@media screen and (max-width: 600px) {
  .sec-page-news .entry .title-h3 .wrap-date .date {
    flex-basis: 100%;
  }
}
.sec-page-news .entry .title-h3 .wrap-date i {
  display: block;
  color: #fff;
  font-size: 12px;
  padding: 2px 10px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 3px;
}
.sec-page-news .entry .title-h3 .wrap-date .icon-important {
  background-color: #e50213;
}
.sec-page-news .entry .title-h3 .wrap-date .icon-kua {
  background-color: #016934;
}
.sec-page-news .entry .title-h3 .wrap-date .icon-sagi {
  background-color: #604c3f;
}
.sec-page-news .entry p {
  font-size: 18px;
  margin-bottom: 2em;
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .sec-page-news .entry p {
    font-size: 16px;
  }
}
@media screen and (max-width: 834px) {
  .sec-page-news .entry p {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .sec-page-news .entry p {
    text-align: justify;
  }
}
.sec-page-news .entry img {
  max-width: 100%;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  max-height: 90dvh;
}

.wrap-faq {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
}
@media screen and (max-width: 600px) {
  .wrap-faq {
    padding-top: 30px;
  }
}
.wrap-faq .wrap-page-nav {
  margin-bottom: 50px;
}
.wrap-faq .title-h3 {
  font-size: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .wrap-faq .title-h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 834px) {
  .wrap-faq .title-h3 {
    font-size: 24px;
  }
}
.wrap-faq .dl-faq dt {
  font-weight: bold;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .wrap-faq .dl-faq dt {
    margin-bottom: 15px;
  }
}
.wrap-faq .dl-faq dt p {
  font-size: 20px;
  width: calc(100% - 50px);
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .wrap-faq .dl-faq dt p {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .wrap-faq .dl-faq dt p {
    width: calc(100% - 40px);
    font-size: 15px;
  }
}
.wrap-faq .dl-faq dt::before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #4b7a66;
  color: #fff;
  aspect-ratio: 1/1;
  width: 40px;
  border-radius: 100px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .wrap-faq .dl-faq dt::before {
    width: 30px;
  }
}
.wrap-faq .dl-faq dd {
  margin-bottom: 40px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: solid 1px #016934;
}
@media screen and (max-width: 600px) {
  .wrap-faq .dl-faq dd {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.wrap-faq .dl-faq dd p {
  font-size: 20px;
  width: calc(100% - 50px);
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .wrap-faq .dl-faq dd p {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .wrap-faq .dl-faq dd p {
    width: calc(100% - 40px);
    font-size: 15px;
  }
}
.wrap-faq .dl-faq dd::before {
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c00;
  color: #fff;
  aspect-ratio: 1/1;
  width: 40px;
  border-radius: 100px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .wrap-faq .dl-faq dd::before {
    width: 30px;
  }
}

.visible {
  opacity: 1;
  transition: opacity 0.6s;
}

.invisible {
  opacity: 0;
}

.fromTopIn {
  transform: translate(0, 0);
  opacity: 1;
  transition: opacity 0.6s, transform 0.6s;
}
@media screen and (max-width: 600px) {
  .fromTopIn {
    transition: opacity 0.6s, transform 0.6s;
  }
}

.fromTopOut {
  transform: translate(0, -10px);
  opacity: 0;
}

.fromBottomIn {
  transform: translate(0, 0);
  opacity: 1;
  transition: opacity 0.6s, transform 0.6s;
}
@media screen and (max-width: 600px) {
  .fromBottomIn {
    transition: opacity 0.6s, transform 0.6s;
  }
}

.fromBottomOut {
  transform: translate(0, 10px);
  opacity: 0;
}

.fromLeftIn {
  transform: translate(0, 0);
  opacity: 1;
  transition: opacity 0.6s, transform 0.6s;
}

.fromLeftOut {
  transform: translate(-10px, 0);
  opacity: 0;
}

.fromRightIn {
  transform: translate(0, 0);
  opacity: 1;
  transition: opacity 0.6s, transform 0.6s;
}

.fromRightOut {
  transform: translate(10px, 0);
  opacity: 0;
}

.scaleUpIn {
  transform: scale(1, 1);
  opacity: 1;
  transition: opacity 0.6s, transform 0.6s;
}
@media screen and (max-width: 600px) {
  .scaleUpIn {
    transition: opacity 0.6s, transform 0.6s;
  }
}

.scaleUpOut {
  transform: scale(1.05, 1.05);
  opacity: 0;
}

.scaleDownIn {
  transform: scale(1, 1);
  opacity: 1;
  transition: opacity 0.6s, transform 0.6s;
}
@media screen and (max-width: 600px) {
  .scaleDownIn {
    transition: opacity 0.6s, transform 0.6s;
  }
}

.scaleDownOut {
  transform: scale(0.9, 0.9);
  opacity: 0;
}

.rotateIn {
  transform: rotate(0deg) scale(1);
  opacity: 1;
  transition: opacity 0.6s, transform 0.6s;
}

.rotateOut {
  transform: rotate(30deg) scale(0.9);
  opacity: 0;
}

.delay1 {
  transition-delay: 0.1s;
}

.delay2 {
  transition-delay: 0.2s;
}

.delay3 {
  transition-delay: 0.3s;
}

.delay4 {
  transition-delay: 0.4s;
}

.delay5 {
  transition-delay: 0.5s;
}

.delay6 {
  transition-delay: 0.4s;
}

.delay7 {
  transition-delay: 0.7s;
}

.delay8 {
  transition-delay: 0.8s;
}

.delay9 {
  transition-delay: 0.9s;
}

.delay10 {
  transition-delay: 1s;
}

.speed1 {
  transition-duration: 0.1s;
}

.speed2 {
  transition-duration: 0.2s;
}

.speed3 {
  transition-duration: 0.3s;
}

.speed4 {
  transition-duration: 0.4s;
}

.speed5 {
  transition-duration: 0.5s;
}

.speed6 {
  transition-duration: 0.6s;
}

.speed7 {
  transition-duration: 0.7s;
}

.speed8 {
  transition-duration: 0.8s;
}

.speed9 {
  transition-duration: 0.9s;
}

.speed10 {
  transition-duration: 1s;
}/*# sourceMappingURL=common.css.map */