@charset "UTF-8";

/* CSS Document */

.appear {
  transform-origin: center top;
  animation: show 1.5s both;
}

span.appear {
  display: block;
}

.d1 {
  animation-delay: 1.0s;
}

.d2 {
  animation-delay: 1.8s;
}

.d3 {
  animation-delay: 2.6s;
}

.d4 {
  animation-delay: 3.9s;
}

.d6 {
  animation-delay: 6s;
}

.d8 {
  animation-delay: 8s;
}

.d10 {
  animation-delay: 10s;
}

.d12 {
  animation-delay: 12s;
}

@keyframes show {
  0% {
    transform: translate(0, 0px);
    opacity: 0;
    text-shadow: 0 0 0 #000;
  }
  50% {
    text-shadow: 0 0 0.5em #000;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
    text-shadow: none;
  }
}


/* インアウトエフェクト */

.fadein {
  animation: fadeIn 4s ease 0s 1 normal;
  -webkit-animation: fadeIn 4s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}

.animation {}

.fadeInUp {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  visibility: visible !important;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  visibility: visible !important;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInLeft {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  visibility: visible !important;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-500px);
    -ms-transform: translateX(-500px);
    transform: translateX(-500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  visibility: visible !important;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(500px);
    -ms-transform: translateX(500px);
    transform: translateX(500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.modal_box .modal_content {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: block;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  opacity: 0;
  animation: fadeout 0.4s;
}

@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.modal_box.show .modal_content:before {
  width: 100%;
  height: 100%;
  content: "";
  position: fixed;
  background-color: #000;
  opacity: 0.5;
  z-index: 999;
  left: 0;
  top: 0;
}

.modal_box.show .modal_content {
  display: block;
  animation: fadein 0.4s;
  opacity: 1;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.modal_box .modal_content .modal_disp {
  position: relative;
  z-index: 1000;
  background-color: #fff;
  margin: 0 auto;
  width: 980px;
  margin-top: 50px;
  padding-top: 85px;
  padding-bottom: 50px;
  border-radius: 7px;
  overflow: hidden;
  min-height: 200px;
}

.modal_box.show .modal_content .modal_disp {
  animation: SlideIn 0.6s;
}

@keyframes SlideIn {
  0% {
    opacity: 1;
    transform: translateY(-70px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

html {
  margin: 0;
  background-color: #f9f9f9;
  font-family: 'Noto Sans JP', sans-serif;
}

body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  min-width: 1080px;
}

p {
  margin: 0
}


/*============================
#opening
============================*/

.fv_sec {
  position: relative;
}

.fv_sec .logo {
  position: absolute;
  z-index: 2;
  width: 200px;
  left: 45px;
  top: 33px;
}

.fv_sec #opening {
  height: 100vh;
  min-height: 620px;
}

.fv_sec .copy_wrap {
  width: 90%;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  height: 200px;
  z-index: 1;
  font-family: 'Noto Serif JP', serif;
}

.fv_sec .copy_wrap .copy {
  font-size: 37px;
  color: #fff;
  font-weight: 600;
  line-height: 1.7;
  text-shadow: 3px 3px 7px black;
  position: relative;
  z-index: 3;
}

.fv_sec .copy_wrap .copy:before {
  content: "";
  position: absolute;
  width: 600px;
  height: 300px;
  left: 0;
  right: 0;
  margin: auto;
  background-image: url(../img/fv_deco.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90%;
  z-index: -1;
  top: -87px;
}

.fv_sec .copy_wrap .sub {
  color: #fff;
  font-size: 20px;
  letter-spacing: 1px;
  text-shadow: 3px 3px 5px black;
}

.fv_sec .scroll {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  margin: auto;
  width: 90px;
  transform: rotate(90deg);
  bottom: 139px;
  padding-left: 80px;
  color: #fff;
  font-size: 15px;
  letter-spacing: 5px;
  border-bottom: 1px solid #fff;
  padding-bottom: 7px;
  text-shadow: 3px 3px 7px black;
}

.feature_sec {
  padding-top: 90px;
  padding-bottom: 90px;
}

.feature_sec .sec_title_box {
  font-family: 'Noto Serif JP', serif;
  margin: 0 auto;
  width: 90%;
  text-align: center;
}

.feature_sec .sec_title_box .name {
  font-size: 35px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 2px;
  margin: 0;
  position: relative;
  padding-bottom: 25px;
}

.feature_sec .sec_title_box .name:before {
  content: "";
  position: absolute;
  width: 80px;
  height: 1px;
  background-color: #000;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.feature_sec .wrap {
  margin: 0 auto;
  width: 90%;
  margin-top: 90px;
  max-width: 1280px;
  display: flex;
  flex-wrap: wrap;
}

.feature_sec .wrap .s_box {
  width: 29.3%;
  margin: 0 2%;
}

.feature_sec .wrap .s_box .image {
  margin-bottom: 20px;
}

.feature_sec .wrap .s_box .name {
  font-size: 22px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.feature_sec .wrap .s_box .comment {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: #515151;
}

.lead_sec {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url(../img/lead_back.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.lead_sec .wrap {
  margin: 0 auto;
  width: 90%;
  max-width: 1180px;
}

.lead_sec .wrap .name_wrap {
  display: flex;
  flex-wrap: wrap;
}

.lead_sec .wrap .name_wrap .image {
  width: calc(88% - 200px);
  margin-right: 2%;
}

.lead_sec .wrap .name_wrap .name {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 35px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  line-height: 1.7;
  width: 200px;
  margin-top: -135px;
  letter-spacing: 5px;
}

.lead_sec .wrap .name_wrap .name .back_color {
  color: #fff;
  background-color: #363942;
}

.lead_sec .wrap .name_wrap .name .set {
  padding-top: 10px;
  padding-bottom: 10px;
}

.lead_sec .wrap .name_wrap .name .num {
  -webkit-text-combine: horizontal;
  -ms-text-combine-horizontal: all;
  text-combine-upright: all;
  padding-bottom: 9px;
  letter-spacing: initial;
  position: relative;
  /* left: -10px; */
}

.lead_sec .wrap .comment {
  width: 47%;
  margin-left: 47%;
  font-size: 15px;
  line-height: 2;
  margin-top: -14%;
}

.image_slide_sec {}

.image_slide_sec .wrap {
  background-color: #363942;
  margin-left: 5%;
  border-radius: 10px 0 0 10px;
  display: flex;
  flex-wrap: wrap;
}

.image_slide_sec .wrap .left {
  padding-left: 10%;
  padding-top: 100px;
  padding-bottom: 100px;
  width: 450px;
}

.image_slide_sec .wrap .left .name {
  color: #fff;
  line-height: 1.5;
  letter-spacing: 1px;
  font-size: 28px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  margin-bottom: 40px;
}

.image_slide_sec .wrap .left .list_box {
  color: #ccc;
}

.image_slide_sec .wrap .left .list_box .list {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 6px;
}

.image_slide_sec .wrap .slide_wrap {
  width: calc(83% - 450px);
  /* background-color: #ccc; */
  margin-left: 7%;
  padding-top: 105px;
  padding-bottom: 90px;
}

.image_slide_sec .wrap .slide_wrap .s_slide {
  margin: 0 auto;
  width: auto !important;
  padding: 0 3%;
  padding-top: 10px;
  border-radius: 20px;
}

.image_slide_sec .wrap .slide_wrap .s_slide .image {
  border-radius: 7px;
  overflow: hidden;
}

.image_slide_sec .wrap .slide_wrap .slider .slick-list {
  padding-left: 0 !important;
  padding-right: 15% !important;
}

.image_slide_sec .wrap .slide_wrap .slick-dots {
  position: absolute;
  bottom: -50px;
  list-style: none;
  display: block;
  text-align: left;
  padding: 0;
  margin: 0;
  width: 100%;
  z-index: 1;
}

.image_slide_sec .wrap .slide_wrap .slick-prev, .image_slide_sec .wrap .slide_wrap .slick-next {
  position: absolute;
  display: block;
  height: 55px;
  width: 55px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: none;
  color: hsl(0deg 0% 0% / 0%);
  top: 109%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 2;
}

.image_slide_sec .wrap .slide_wrap .slick-prev {
  right: 100px;
  left: inherit;
  background-image: url(../img/navi_left_wh.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90%;
  transition: 0.5s;
}

.image_slide_sec .wrap .slide_wrap .slick-prev:hover {
  opacity: 0.7;
}

.image_slide_sec .wrap .slide_wrap .slick-prev:before {
  display: none;
}

.image_slide_sec .wrap .slide_wrap .slick-next {
  right: 35px;
  left: inherit;
  background-image: url(../img/navi_right_wh.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90%;
  transition: 0.5s;
}

.image_slide_sec .wrap .slide_wrap .slick-next:hover {
  opacity: 0.7;
}

.image_slide_sec .wrap .slide_wrap .slick-next:before {
  display: none;
}

.room_info_sec {
  padding-top: 90px;
  padding-bottom: 90px;
}

.room_info_sec .wrap {
  margin: 0 auto;
  width: 90%;
  max-width: 1180px;
}

.room_info_sec .wrap .wrap_name_box {}

.room_info_sec .wrap .wrap_name_box .name {
  color: hsl(0deg 0% 0%);
  line-height: 1.5;
  letter-spacing: 1px;
  font-size: 28px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  margin-bottom: 15px;
}

.room_info_sec .wrap .wrap_name_box .open {
  font-size: 15px;
  line-height: 1.5;
  color: hsl(333deg 100% 60%);
  margin-bottom: 5px;
}

.room_info_sec .wrap .wrap_name_box .attention {
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  padding-left: 18px;
}

.room_info_sec .wrap .wrap_name_box .attention:before {
  content: "※";
  position: absolute;
  left: 0;
}

.room_info_sec .wrap .flex_wrap {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: center;
}

.room_info_sec .wrap .flex_wrap .s_box {
  text-align: center;
  width: 25.3%;
  margin: 0 2%;
  /* padding: 70px 2%; */
  background-color: #ccc;
  border-radius: 10px;
  position: relative;
  transition: 0.5s;
}

.room_info_sec .wrap .flex_wrap .s_box:before {
  content: "";
  position: absolute;
  width: 45px;
  height: 45px;
  right: 10px;
  bottom: 10px;
  background-image: url(../img/navi_more.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40px;
}

.room_info_sec .wrap .flex_wrap .s_box.type_1c {
  background-image: url(../img/type_c.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.room_info_sec .wrap .flex_wrap .s_box.type_2a {
  background-image: url(../img/type_a.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.room_info_sec .wrap .flex_wrap .s_box.type_3b {
  background-image: url(../img/type_b.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.room_info_sec .wrap .flex_wrap .s_box .name {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  color: #fff;
  padding: 70px 10px;
  display: block;
  cursor: pointer;
  transition: 0.5s;
}

.room_info_sec .wrap .flex_wrap .s_box .name:hover {
  opacity: 0.5;
}

.about_sec {
  padding-bottom: 90px;
  position: relative;
}

.about_sec:before {
  content: "";
  position: absolute;
  background-color: #f3f3f3;
  width: 100%;
  height: 80%;
  bottom: 0;
  z-index: 0;
}

.room_info_sec .wrap .modal_box .modal_content .modal_disp .close {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 40px;
  cursor: pointer;
}

.room_info_sec .wrap .modal_box .comment_box {
  margin: 0 auto;
  width: 85%;
  text-align: left;
  margin-bottom: 35px;
}

.room_info_sec .wrap .modal_box .comment_box .room_name {
  font-size: 25px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 10px;
}

.room_info_sec .wrap .modal_box .comment_box .comment {
  font-size: 15px;
  line-height: 1.5;
  color: #515151;
}

.room_info_sec .wrap .modal_box .detail_area {
  margin: 0 auto;
  padding: 5%;
  background-color: #f5f5f5;
  width: 75%;
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
}

.room_info_sec .wrap .modal_box .detail_area .s_wrap {
  width: 45%;
  margin: 0 2.5%;
  text-align: left;
}

.room_info_sec .wrap .modal_box .detail_area .s_wrap .s_detail {}

.room_info_sec .wrap .modal_box .detail_area .s_wrap .s_detail .detail_name {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  border-bottom: 1px solid #000;
  padding-bottom: 7px;
  margin-bottom: 20px;
}

.room_info_sec .wrap .modal_box .detail_area .s_wrap .list {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 3px;
  color: #515151;
  padding-left: 22px;
  position: relative;
}

.room_info_sec .wrap .modal_box .detail_area .s_wrap .list:before {
  content: "□";
  position: absolute;
  left: 3px;
}

.room_info_sec .wrap .room_slide {
  margin: 0 auto;
  width: 85%;
}

.swiper-container img {
  width: 100%;
}

.swiper-container {
  width: 100%;
  max-width: 940px;
}

.swiper-container.sliderr {
  height: auto;
  margin: 0 auto;
  overflow: hidden;
}

.swiper-container.slider-thumbnail {
  height: auto;
  margin: 0 auto;
}

.swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide {
  width: 10% !important;
  height: auto;
  opacity: 0.5;
  overflow: hidden;
  display: inline-block;
}

.swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-thmb {
  display: block;
  margin: 0 auto;
  transform: none !important;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 40% !important;
  width: 50px;
  height: 50px;
  margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev {
  background-image: url(../img/navi_left_bk.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90%;
}

.swiper-button-next {
  background-image: url(../img/navi_right_bk.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90%;
}

.swiper-button-prev:after {
  display: none;
}

.swiper-button-next:after {
  display: none;
}

.about_sec .image {
  position: relative;
}

.about_sec .wrap {
  position: relative;
  margin: 0 auto;
  width: 90%;
  max-width: 1180px;
}

.about_sec .wrap .name {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 35px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  line-height: 1.7;
  width: 200px;
  margin-top: -135px;
  letter-spacing: 5px;
  position: absolute;
  right: 5%;
  z-index: 2;
  top: -80px;
}

.about_sec .wrap .name .back_color {
  color: hsl(0deg 0% 100%);
  background-color: hsl(225deg 10% 24%);
}

.about_sec .wrap .name .set {
  padding-top: 10px;
  padding-bottom: 10px;
}

.about_sec .wrap .sub_image {
  width: 30%;
  position: absolute;
  right: -5%;
  top: 120px;
  z-index: 1;
}

.about_sec .wrap .left {
  margin-right: 32%;
  margin-left: 10%;
  margin-top: 90px;
}

.about_sec .wrap .left .wrap_name {
  color: hsl(0deg 0% 0%);
  line-height: 1.5;
  letter-spacing: 1px;
  font-size: 28px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  margin-bottom: 25px;
}

.about_sec .wrap .left .comment {
  font-size: 15px;
  line-height: 2;
}

.overview_sec {
  padding-top: 90px;
  padding-bottom: 90px;
  overflow: hidden;
}

.overview_sec .sec_title_box {
  margin: 0 auto;
  width: 90%;
  max-width: 1180px;
}

.overview_sec .sec_title_box .name {
  font-size: 35px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 2px;
  margin: 0;
  position: relative;
  font-family: 'Noto Serif JP', serif;
  display: inline-block;
  padding-right: 20px;
  vertical-align: bottom;
  margin-right: 20px;
}

.overview_sec .sec_title_box .name:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 50px;
  background-color: #000;
  right: 0;
  top: 5px;
}

.overview_sec .sec_title_box .sub {
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  vertical-align: bottom;
  padding-bottom: 5px;
}

.overview_sec .wrap {
  margin: 0 auto;
  width: 90%;
  max-width: 1180px;
  display: flex;
  flex-wrap: wrap;
}

.overview_sec .wrap .left {
  width: 480px;
  margin-top: 60px;
  margin-left: 20px;
}

.overview_sec .wrap .left .s_wrap {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  padding-top: 20px;
}

.overview_sec .wrap .left .s_wrap:last-child {
  border-bottom: none;
}

.overview_sec .wrap .left .s_wrap .s_list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.overview_sec .wrap .left .s_wrap .s_list .name {
  width: 80px;
  margin-right: 20px;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
}

.overview_sec .wrap .left .s_wrap .s_list .comment {
  font-size: 15px;
  color: #515151;
  line-height: 1.7;
  width: calc(100% - 100px);
}

.overview_sec .wrap .right {
  width: calc(95% - 500px);
  margin-left: 5%;
}

.overview_sec .wrap .right .image {
  /* margin-right: -15%; */
  width: 120%;
  margin-bottom: 50px;
}

.overview_sec .wrap .right .map {
  max-width: 500px;
}

.overview_sec .wrap .right .zoom {
  margin-top: 10px;
}

.overview_sec .wrap .right .zoom a {
  color: #5583bb;
  text-decoration: none;
  position: relative;
  padding-left: 34px;
  font-size: 15px;
  line-height: 1.5;
  transition: 0.5s;
}

.overview_sec .wrap .right .zoom a:before {
  content: "";
  position: absolute;
  width: 31px;
  height: 31px;
  left: 0;
  top: -4px;
  background-image: url(../img/navi_gmap.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 28px;
}

.overview_sec .wrap .right .zoom a:hover {
  opacity: 0.7;
}

.footer {
  padding-top: 90px;
  padding-bottom: 40px;
  background-color: #ebebeb;
  position: relative;
}

.footer .scr_top {
  width: 65px;
  height: 65px;
  background-color: hsl(225deg 10% 24%);
  position: absolute;
  right: 0;
  top: 0;
  background-position: center;
  background-image: url(../img/navi_top.png);
  background-repeat: no-repeat;
  background-size: 20px;
  transition: 0.5s;
  cursor: pointer;
}

.footer .scr_top:hover {
  opacity: 0.7;
}

.footer .wrap {
  margin: 0 auto;
  width: 90%;
  max-width: 1180px;
}

.footer .wrap .sec_title_box {}

.footer .wrap .sec_title_box .name {
  font-size: 35px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 2px;
  margin: 0;
  position: relative;
  font-family: 'Noto Serif JP', serif;
  display: inline-block;
  padding-right: 20px;
  vertical-align: bottom;
  margin-right: 20px;
}

.footer .wrap .sec_title_box .name:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 50px;
  background-color: hsl(0deg 0% 0%);
  right: 0;
  top: 5px;
}

.footer .wrap .sec_title_box .sub {
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  vertical-align: bottom;
  padding-bottom: 5px;
}

.footer .wrap .flex_wrap {
  display: flex;
  margin-top: 50px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer .wrap .flex_wrap .s_box {
  width: 30%;
  margin-right: 5%;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid hsl(0deg 0% 80%);
  padding-top: 15px;
  padding-bottom: 15px;
}

.footer .wrap .flex_wrap .s_box .link_box {
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
  transition: 0.5s;
}

.footer .wrap .flex_wrap .s_box .link_box:hover {
  opacity: 0.6;
}

.footer .wrap .flex_wrap .s_box .image {
  width: 100px;
  margin-right: 25px;
}

.footer .wrap .flex_wrap .s_box .name {
  width: calc(100% - 125px);
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
  color: #000;
}

.footer .wrap .flex_wrap .s_box .name .bold {
  font-size: 17px;
  font-weight: 600;
  line-height: 2;
}

.footer .wrap .flex_wrap .logo {
  width: 30%;
  text-align: right;
  position: relative;
}

.footer .wrap .flex_wrap .logo img {
  width: 200px;
  height: auto;
  position: absolute;
  right: 0;
  bottom: 0;
}

.footer .wrap .copyright {
  text-align: center;
  font-size: 11px;
  color: #515151;
  line-height: 1.5;
}

@media (min-width: 768px) and (max-width: 1180px) {
.lead_sec .wrap .comment {
    margin-top: -7%;
}
}
@media only screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
  .pc_tab {
    display: none;
  }
  .fv_sec .logo {
    position: absolute;
    z-index: 2;
    width: 150px;
    left: 27px;
    top: 20px;
  }
  .fv_sec #opening {
    height: 550px;
    min-height: inherit;
  }
  .fv_sec .copy_wrap .copy {
    font-size: 25px;
  }
  .fv_sec .copy_wrap .sub {
    font-size: 13px;
    text-shadow: 3px 5px 5px black;
    margin-top: 15px;
  }
  .fv_sec .copy_wrap .copy:before {
    width: 90%;
  }
  .fv_sec .scroll {
    width: 56px;
    bottom: 107px;
    padding-left: 33px;
    font-size: 11px;
    letter-spacing: 1px;
  }
  .feature_sec .sec_title_box .name {
    font-size: 30px;
    padding-bottom: 25px;
  }
  .feature_sec {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .feature_sec .wrap .s_box {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 50px;
  }
  .lead_sec {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .lead_sec .wrap .name_wrap .name {
    font-size: 22px;
    line-height: 1.7;
    width: 130px;
    margin-top: -135px;
    letter-spacing: 5px;
  }
  .lead_sec .wrap .name_wrap .name .num {
    left: -1px;
  }
  .lead_sec .wrap .name_wrap .image {
    width: calc(100% - 130px);
    margin-right: -50px;
  }
  .lead_sec .wrap .comment {
    width: 90%;
    margin: 0 auto;
    font-size: 15px;
    line-height: 2;
    margin-top: 20px;
  }
  .image_slide_sec .wrap {
    border-radius: 0;
    display: block;
    margin: 0 auto;
  }
  .image_slide_sec .wrap .left {
    padding-top: 60px;
    padding-bottom: 40px;
    padding-left: 0;
    width: 90%;
    margin: 0 auto;
  }
  .image_slide_sec .wrap .slide_wrap {
    width: 95%;
    padding-top: 0;
    padding-bottom: 90px;
    margin-left: 5%;
  }
  .image_slide_sec .wrap .left .name {
    font-size: 22px;
    margin-bottom: 40px;
  }
  .image_slide_sec .wrap .slide_wrap .slick-prev, .image_slide_sec .wrap .slide_wrap .slick-next {
    top: 114%;
  }
  .room_info_sec {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .room_info_sec .wrap .wrap_name_box .name {
    font-size: 22px;
  }
  .room_info_sec .wrap .flex_wrap {
    display: block;
    margin-top: 40px;
  }
  .room_info_sec .wrap .flex_wrap .s_box {
    width: 95%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .room_info_sec .wrap .modal_box .detail_area .s_wrap {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }
  .modal_box .modal_content .modal_disp {
    margin: 0 auto;
    width: 90%;
    margin-top: 25px;
    padding-top: 85px;
    padding-bottom: 50px;
    min-height: 0;
  }
  .swiper-button-next, .swiper-button-prev {
    top: 34% !important;
  }
  .about_sec .wrap .name {
    font-size: 22px;
    line-height: 1.7;
    width: 140px;
    margin-top: -135px;
    right: 5%;
    z-index: 2;
    top: -50px;
  }
  .about_sec .wrap .sub_image {
    width: 45%;
    position: absolute;
    right: inherit;
    left: 7%;
    top: -107px;
    z-index: 1;
  }
  .about_sec .wrap .left {
    margin: 0 auto;
    padding-top: 130px;
    margin-top: 106px;
  }
  .about_sec .wrap .left .wrap_name {
    color: hsl(0deg 0% 0%);
    line-height: 1.5;
    letter-spacing: 1px;
    font-size: 22px;
    margin-bottom: 25px;
  }
  .about_sec {
    padding-bottom: 60px;
  }
  .overview_sec {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .overview_sec .sec_title_box .name {
    font-size: 30px;
    text-align: center;
    letter-spacing: 2px;
    margin: 0 auto;
    display: block;
    padding-right: 0;
    padding-bottom: 25px;
  }
  .overview_sec .sec_title_box .name:before {
    content: "";
    position: absolute;
    width: 80px;
    height: 1px;
    right: 0;
    left: 0;
    margin: auto;
    top: inherit;
    bottom: 0;
  }
  .overview_sec .sec_title_box .sub {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    padding-bottom: 0;
    text-align: center;
    margin-top: 15px;
  }
  .overview_sec .wrap {
    margin: 0 auto;
    width: 90%;
    display: block;
  }
  .overview_sec .wrap .left {
    width: 90%;
    margin: 0 auto;
    margin-top: 40px;
  }
  .overview_sec .wrap .left .s_wrap .s_list .name {
    width: 78px;
    margin-right: 12px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
  }
  .overview_sec .wrap .left .s_wrap .s_list .comment {
    font-size: 14px;
    line-height: 1.6;
    width: calc(100% - 90px);
  }
  .overview_sec .wrap .right {
    width: 100%;
    margin: 0 auto;
  }
  .overview_sec .wrap .right .map {
    margin: 0 auto;
    width: 85%;
  }
  .overview_sec .wrap .right .zoom {
    margin-top: 10px;
    margin-left: 7%;
  }
  .footer .wrap .sec_title_box .name {
    font-size: 30px;
    margin: 0 auto;
    position: relative;
    display: block;
    padding-right: 0;
    text-align: center;
    padding-bottom: 25px;
  }
  .footer .wrap .sec_title_box .name:before {
    content: "";
    position: absolute;
    width: 80px;
    height: 1px;
    right: 0;
    top: inherit;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  .footer .wrap .sec_title_box .sub {
    display: block;
    font-size: 14px;
    text-align: center;
    padding-bottom: 0;
    margin-top: 15px;
  }
  .footer .wrap .flex_wrap .s_box {
    width: 90%;
    margin: 0 auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .footer .wrap .flex_wrap .s_box .image {
    width: 80px;
    margin-right: 20px;
  }
  .footer .wrap .flex_wrap .s_box .name {
    width: calc(100% - 100px);
    margin-top: 12px;
    font-size: 15px;
  }
  .footer .wrap .flex_wrap .s_box .name .bold {
    font-size: 15px;
  }
  .footer .wrap .flex_wrap .logo {
    width: 90%;
    margin: 0 auto;
    text-align: right;
  }
  .footer .wrap .flex_wrap .logo img {
    width: 160px;
    height: auto;
    position: relative;
    right: inherit;
    bottom: inherit;
    margin-top: 25px;
  }
  .footer {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}