@charset "UTF-8";
/* mv 
---------------------------------------------------------------------- */
#mv {
  height: 450px;
  position: relative;
}
#mv::after {
  content: "";
  display: block;
  width: 100%;
  height: 140px;
  background: url(../images/index/bg_mv.png) no-repeat;
  background-size: 100% auto;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  mix-blend-mode: multiply;
}

#mv picture img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  -o-object-fit: cover;
}

.mv__content {
  width: 100%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 30px;
  z-index: 2;
}

.mv__ttl {
  text-align: center;
  color: #fff;
  font-size: 38px;
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: bold;
  font-family: "Shippori Mincho", serif;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5), -2px -2px 15px rgba(0, 0, 0, 0.5);
}

.mv__txt {
  text-align: center;
  color: #fff;
  font-size: 28px;
  letter-spacing: 0;
  line-height: 1.6;
  white-space: nowrap;
  font-weight: bold;
  font-family: "Shippori Mincho", serif;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5), -2px -2px 15px rgba(0, 0, 0, 0.5);
}

@-webkit-keyframes fadezoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}

@keyframes fadezoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}
.mvslide .slick-animation {
  -webkit-animation: fadezoom 5s 0s forwards;
          animation: fadezoom 5s 0s forwards;
}

/* reservation 
---------------------------------------------------------------------- */
.reservation {
  padding: 28px 0 43px;
  z-index: 0;
  position: relative;
  background: url(../images/bg_deco06.png);
}

.reservation::before {
  left: 0;
  top: 5px;
  z-index: 1;
  content: "";
  width: 100%;
  position: absolute;
  border-top: 1px solid #c69c6d;
}

.reservation::before,
.reservation::after {
  top: 5px;
  left: 0;
  height: 10px;
  z-index: 1;
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  background-color: #fff;
}

.reservation::after {
  top: initial;
  bottom: 0;
}

.reservation__inr {
  max-width: 1020px;
  margin: 0 auto;
}

.reservation .rsvform {
  width: 100%;
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.reservation h2 {
  font-size: 20px;
  margin-bottom: -30px;
  text-align: center;
  padding: 7px 5px;
  letter-spacing: 0.12em;
  width: 116px;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  color: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.reservation .rsvform form {
  width: 100%;
}

.reservation .rsvform ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 13px;
  max-width: 860px;
  margin-left: auto;
}

.reservation .rsvform ul li {
  font-size: 14px;
  color: #fff;
  text-align: left;
  letter-spacing: 0.17em;
}

.reservation .rsvform ul li:first-of-type {
  margin-right: 9px;
}

.reservation .rsvform ul li:last-of-type {
  margin-left: auto;
}

.reservation input[type=text] {
  color: #B2B2B2;
  font-size: 18px;
  letter-spacing: 0.12em;
  padding: 6px 6px 6px 15px;
  border-radius: 6px;
  width: 218px;
  height: 40px;
  border: none;
}

.reservation select {
  width: 91px;
  color: #B2B2B2;
  font-size: 22px;
  letter-spacing: 0.12em;
  padding: 6px 6px 6px 6px;
  border-radius: 6px;
  height: 40px;
  text-align: right;
  -webkit-appearance: none;
  /* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none;
  /* ベンダープレフィックス(Firefox用) */
  appearance: none;
  /* 標準のスタイルを無効にする */
  border: none;
}

.reservation .btn_search {
  width: 187px;
  font-size: 18px;
  letter-spacing: 0.12em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 7px 26px;
  border-radius: 6px;
  border: none;
  color: #fff;
  text-align: center;
  cursor: pointer;
  position: relative;
  background: url(../images/icon_search.svg) center left 10px no-repeat, url(../images/icon_arrow01.svg) no-repeat center right 19px;
  background-size: 21px 21px, 9px 12px;
  background-color: #006837;
}

.reservation .btn_search::after {
  content: "";
  display: block;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  background-color: transparent;
  border: 3px solid #000;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.reservation .rsvform ul li:last-of-type {
  position: relative;
}
.reservation .rsvform ul li:last-of-type::after {
  content: "";
  display: block;
  width: 197px;
  height: 50px;
  border: 3px solid #006837;
  border-radius: 10px;
  position: absolute;
  bottom: -5px;
  right: -5px;
  z-index: -1;
}

.reservation .rsvtxt ul li.btn_list {
  position: relative;
  margin-left: auto;
}
.reservation .rsvtxt ul li.btn_list::after {
  content: "";
  display: block;
  width: 197px;
  height: 50px;
  border: 3px solid #870500;
  border-radius: 10px;
  position: absolute;
  bottom: -5px;
  right: -5px;
  z-index: -1;
}

.reservation .rsvtxt ul li.btn_list a {
  display: block;
  width: 187px;
  height: 40px;
  font-size: 18px;
  letter-spacing: 0.12em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 7px 10px;
  border-radius: 6px;
  border: none;
  color: #fff;
  text-align: center;
  cursor: pointer;
  position: relative;
  background-color: #870500;
}

.reservation .rsvtxt {
  width: 100%;
  max-width: 860px;
  width: 87%;
  margin-left: auto;
}

.reservation .rsvtxt ul {
  padding-top: 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.reservation .rsvtxt ul li {
  color: #c69c6d;
  letter-spacing: -0.3px;
}

.reservation .rsvtxt ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0;
  border-bottom: 1px solid #fff;
  padding: 0 2px 1px 5px;
}

.reservation .rsvtxt ul li a:hover {
  text-decoration: none;
}

.reservation .rsvtxt ul li:nth-of-type(3) a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.reservation .rsvtxt ul li:nth-of-type(3) a::after {
  content: "";
  display: block;
  width: 6px;
  height: 8px;
  background: url(../images/icon_arrow01.svg) no-repeat;
}

.reservation .rsvtxt ul li a.search_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #fff;
  width: 218px;
  height: 40px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0;
  text-decoration: none;
  border-radius: 6px;
  background: url(../images/icon_calendar02.svg) no-repeat center left 8px, url(../images/icon_arrow01.svg) no-repeat center right 13px;
  background-size: 20px 20px, 9px 12px;
}

.reservation .rsvtxt ul li a.search_btn.search_btn--room {
  background: url(../images/icon_bed.svg) no-repeat center left 8px, url(../images/icon_arrow01.svg) no-repeat center right 13px;
  background-size: 18px 12px, 9px 12px;
}

/* bestrate
---------------------------------------------------------------------- */
.bestrate {
  background: url(../images/bg_deco01.png);
  padding-bottom: 200px;
}
.bestrate::before {
  content: "";
  display: block;
  background: url(../images/bg_deco02.png);
  height: 5px;
}

/* about
---------------------------------------------------------------------- */
.about {
  margin-top: -120px;
  position: relative;
}
.about::after {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  background: url("../images/bg_deco03.png") center, -webkit-gradient(linear, left top, left bottom, from(#032d1f), to(#455e42));
  background: url("../images/bg_deco03.png") center, linear-gradient(#032d1f 0%, #455e42 100%);
}

.about__inr {
  padding: 80px 0 70px;
  background: url(../images/bg_deco03.png) center, -webkit-gradient(linear, left top, left bottom, from(#455e42), to(#032d1f));
  background: url(../images/bg_deco03.png) center, linear-gradient(#455e42 0%, #032d1f 100%);
  border-top-right-radius: 2000px 600px;
  border-top-left-radius: 2000px 600px;
  margin-left: -200px;
  margin-right: -200px;
  padding-left: 200px;
  padding-right: 200px;
}

.about__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-bottom: 25px;
}

.about__en {
  width: 100%;
  position: absolute;
  top: 200px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  mix-blend-mode: screen;
}

.about__ttl {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #ffffff;
  margin-bottom: 35px;
  text-align: center;
  font-family: "Shippori Mincho", serif;
}

.about__lead {
  font-size: 24px;
  line-height: 1.75;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: #fff;
  text-align: center;
  font-family: "Shippori Mincho", serif;
}

.about__slider {
  font-size: 0;
}
.about__slider img {
  width: 100%;
}

/* reasons
---------------------------------------------------------------------- */
.reasons {
  padding: 95px 0 100px;
  background: url(../images/bg_deco04.png);
  background-color: #fff;
}

.reasons__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 33px;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-bottom: 75px;
}

.reasons__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1036px;
  row-gap: 20px;
  margin: 0 auto;
  padding: 0 20px;
}
.reasons__list li {
  width: 32%;
}

.reasons__catch {
  font-size: 26px;
  letter-spacing: 0.08em;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 7px;
  text-align: center;
}
.reasons__catch span {
  display: block;
  font-size: 20px;
  font-weight: 600;
}
.reasons__catch.reasons__catch--small {
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.reasons__img {
  margin-bottom: 8px;
}

.reasons__txt {
  color: #243353;
  text-align: center;
  line-height: 1.44;
  letter-spacing: 0;
  font-weight: 500;
}

/* home-links
---------------------------------------------------------------------- */
.home-links {
  position: relative;
  padding-bottom: 120px;
}
.home-links::after {
  content: "";
  display: block;
  width: 100%;
  height: 76%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/bg_deco01.png);
  z-index: 0;
}

.home-links__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  padding: 100px 20px 10px 0;
  position: relative;
  z-index: 1;
}

.home-links__img {
  width: 62.5%;
}

.home-links__slider {
  height: 100%;
}
.home-links__slider img {
  height: 100%;
}

.home-links__body {
  width: 314px;
  padding-top: 35px;
}

.home-links__ttl {
  font-size: 36px;
  line-height: 1.47;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: #5A3A1B;
  margin-bottom: 27px;
}
.home-links__ttl span {
  display: block;
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-top: 5px;
}

.home-links__txt {
  max-width: 310px;
  margin-bottom: 80px;
}

.home-links__wrap.home-links__wrap--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.home-links__wrap.home-links__wrap--reverse .home-links__ttl {
  color: #243353;
}
.home-links__wrap.home-links__wrap--reverse .cbtn {
  background-color: #243353;
}

.home-links-other {
  padding: 100px 0 0;
}

.home-links-other__list {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 90px;
}
.home-links-other__list li {
  width: 49%;
  max-width: 510px;
}

#sports.home-links__wrap {
  padding: 100px 0 10px 40px;
}

/* instagram
---------------------------------------------------------------------- */
.instagram {
  padding: 130px 0;
  background: url(../images/bg_deco05.png);
}

.instagram__ttl {
  font-size: 20px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  letter-spacing: 0;
  margin-bottom: 70px;
  gap: 11px;
}
.instagram__ttl::before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background: url(../images/icon_instagram.svg) no-repeat;
  background-size: contain;
}

.instagram__img {
  max-width: 750px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1px;
  margin-bottom: 60px;
}
.instagram__img li {
  width: calc((100% - 2px) / 3);
}

.instagram__btn {
  text-align: center;
}
.instagram__btn .cbtn {
  position: relative;
  letter-spacing: 0.08em;
  padding-left: 20px;
}
.instagram__btn .cbtn::after {
  content: "";
  width: 34px;
  height: 34px;
  display: block;
  background: url(../images/icon_instagram_w.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 19px;
  pointer-events: none;
}

/* plan
---------------------------------------------------------------------- */
.plan {
  margin-top: -50px;
  position: relative;
}
.plan .ctitle {
  color: #fff;
  position: relative;
  z-index: 1;
}
.plan {
  position: relative;
}
.plan::before {
  content: "";
  display: block;
  width: 100%;
  height: 413px;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/index/bg_plan.png") center no-repeat;
  background-size: 100% 100%;
  margin-top: -97px;
}

.plan__wrap {
  padding: 60px 0 120px;
  background-color: #EFEEE8;
}

.plan__inr {
  max-width: 1172px;
  margin: 0 auto;
  padding: 0 20px;
}

.plan__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}
.plan__list li {
  width: 32%;
}
.plan__list a:hover {
  opacity: 1;
}
.plan__list a:hover .plan__no {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.plan__no {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-bottom: 17px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.plan__img {
  margin-bottom: 15px;
}

.plan__ttl {
  letter-spacing: 0.075em;
}

/* ranking_489ban
---------------------------------------------------------------------- */
#ranking_489ban {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2%;
  margin-top: 30px;
}

#ranking_489ban .PlanView {
  width: 32%;
  /* margin-right: 3.63%; */
  margin-bottom: 40px;
  position: relative;
  /* overflow: hidden; */
}

#ranking_489ban .PlanView:nth-child(3n) {
  margin-right: 0;
}

#ranking_489ban .PlanView .main_picture {
  position: relative;
  /* max-height: 220px; */
  overflow: hidden;
}

#ranking_489ban .PlanView .main_picture img {
  width: 100%;
}

#ranking_489ban .PlanView .rank_no {
  /* display: none; */
  width: initial;
  position: absolute;
  z-index: 10;
  left: 50%;
  top: -50px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: 31px;
  text-indent: -100000px;
  overflow: hidden;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

#ranking_489ban .PlanView:hover .rank_no {
  top: -55px;
}

#ranking_489ban .PlanView.rank_1 .rank_no {
  background: url("/wp-content/themes/nanbuhotel/images/index/icon_ranking01.png") center center no-repeat;
  background-size: contain;
}

#ranking_489ban .PlanView.rank_2 .rank_no {
  background: url("/wp-content/themes/nanbuhotel/images/index/icon_ranking02.png") center center no-repeat;
  background-size: contain;
}

#ranking_489ban .PlanView.rank_3 .rank_no {
  background: url("/wp-content/themes/nanbuhotel/images/index/icon_ranking03.png") center center no-repeat;
  background-size: contain;
}

#ranking_489ban .PlanView .explan {
  padding: 1em 0;
}

#ranking_489ban .PlanView .explan p.plan {
  font-size: 18px;
  line-height: 1.5;
  color: #1C1C1C;
  margin-bottom: 20px;
  margin-top: 0;
}

#ranking_489ban .PlanView .explan p.plan::before {
  display: none;
}

#ranking_489ban .PlanView a .txt .planbtn {
  margin-top: auto;
}

#ranking_489ban .PlanView .explan .pblist {
  display: none;
}

#ranking_489ban .PlanView .explan .pblist li a {
  display: inline-block;
  width: auto;
  padding-right: 1em;
  border-bottom: 1px solid #D6D6D6;
  background: url("../images/icon_arrow_r_green.svg") right center no-repeat;
}

/* news
---------------------------------------------------------------------- */
.news {
  padding: 100px 0 85px;
}
.news .ctitle {
  margin-bottom: 60px;
}

.news__inr {
  max-width: 1192px;
  margin: 0 auto;
  padding: 0 20px;
}

.news-top {
  padding-bottom: 45px;
}

.news__list {
  font-size: 16px;
  margin-bottom: 60px;
}
.news__list .slick-slide {
  margin: 0 13px;
}
.news__list .slick-prev {
  top: 110px;
  -webkit-transform: none;
          transform: none;
  left: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 17px solid #666666;
  border-left: 0;
  z-index: 1;
}
.news__list .slick-next {
  top: 110px;
  -webkit-transform: none;
          transform: none;
  right: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 17px solid #555555;
  border-right: 0;
  z-index: 1;
}

.news__img {
  aspect-ratio: 3/2;
  margin-bottom: 10px;
}
.news__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news__date {
  display: block;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 5px;
}

.news__ttl {
  letter-spacing: 0.075em;
  line-height: 1.75;
  font-weight: bold;
}

.news__txt {
  letter-spacing: 0.075em;
  line-height: 1.75;
}

.news__link {
  font-size: 22px;
  letter-spacing: 0.16em;
  text-align: center;
}/*# sourceMappingURL=index.css.map */