@charset "UTF-8";
/*                reset (デフォルト設定の打ち消し)
======================================================= */
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  -webkit-text-size-adjust: 100%; /* 勝手に文字が拡大されるのを防ぐ */
  /* 以下、案件ごとに適宜変更 */
  color: #000;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  background-color: #fff;
}

body,
h1,
h2,
h3,
h4,
h5,
table,
th,
td,
ul,
li,
ol,
dl,
dt,
dd,
form,
p {
  margin: 0px;
  padding: 0px;
  font-weight: 400;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  list-style-type: none;
  line-height: 1;
  /* 以下、案件ごとに適宜変更 */
  letter-spacing: 0.1em;
  font-size: 15px;
}

input,
textArea,
select,
button {
  -webkit-appearance: none; /* iOS系のスタイルを外す */
}

button {
  cursor: pointer;
}

figure {
  margin: 0px;
}

img,
iframe {
  width: 100%;
  height: auto;
  vertical-align: top; /* 意図しない余白の削除 */
}

table {
  border-collapse: collapse;
}

a {
  text-decoration: none;
  /* 以下、案件ごとに適宜変更 */
  letter-spacing: 0.1em;
  color: #000;
  cursor: pointer;
}

/*                 基本レイアウト
======================================================= */
body {
  overflow-x: hidden;
}

.l-wrapper {
  overflow: hidden;
  max-width: 100vw;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
}
@media only screen and (max-width: 767px) {
  .l-wrapper {
    padding-top: 60px;
  }
}

/*                共通パーツ
======================================================= */
.l-main {
  max-width: 100vw;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 131px;
}
@media only screen and (max-width: 767px) {
  .l-main {
    padding-bottom: 120px;
  }
}

.c-width__bottom {
  padding-bottom: 131px;
}
.c-width {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1500px) {
  .c-width {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .c-width {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.c-width--narrow {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1500px) {
  .c-width--narrow {
    padding-left: 120px;
    padding-right: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .c-width--narrow {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.c-width--ft {
  max-width: 1440px;
}

@media only screen and (min-width: 768px) {
  .c-section-title--link:hover {
    transition: 0.5s;
    opacity: 0.6;
  }
}

.c-section-title__text {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.1em;
  font-size: 70px;
}
@media only screen and (max-width: 767px) {
  .c-section-title__text {
    font-size: 40px;
  }
}

/*               フッター
======================================================= */
.l-ft {
  background-color: #000000;
}

.p-ft {
  padding: 60px 0 41px;
}
@media only screen and (max-width: 767px) {
  .p-ft {
    padding: 42px 0 11px;
  }
}

.p-ft__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1023px) {
  .p-ft__main {
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  .p-ft__main {
    justify-content: center;
  }
}

.p-ft__logo {
  max-width: 25%;
}
@media only screen and (max-width: 767px) {
  .p-ft__logo {
    max-width: 180px;
  }
}

@media only screen and (max-width: 1023px) {
  .p-ft__list-wrap {
    display: none;
  }
}

.p-ft__list {
  display: flex;
}

.p-ft__list-item {
  letter-spacing: 0.1em;
  color: #fff;
  margin-left: 33px;
}
@media only screen and (min-width: 768px) {
  .p-ft__list-item:hover {
    transition: 0.5s;
    opacity: 0.5;
  }
}

.p-ft__link {
  letter-spacing: 0.1em;
  color: #fff;
}

.p-ft__tel {
  color: #fff;
  text-align: right;
  padding-top: 5px;
}
@media only screen and (max-width: 767px) {
  .p-ft__tel {
    padding-top: 20px;
    display: flex;
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  .p-ft__tel {
    display: none;
  }
}

.p-ft__tel-text {
  color: #fff;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .p-ft__tel-text {
    font-size: 12px;
  }
}

.p-ft__tel-link {
  color: #fff;
}

.p-ft__sub {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 34px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-ft__sub {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media only screen and (max-width: 480px) {
  .p-ft__sub {
    padding-top: 23px;
  }
}

.p-ft__sns-list {
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
}
@media only screen and (max-width: 480px) {
  .p-ft__sns-list {
    display: none;
  }
}

.p-ft__sns-item {
  width: 33.3333%;
  margin-left: 14px;
  margin-right: 11px;
}
@media only screen and (min-width: 768px) {
  .p-ft__sns-item:hover {
    transition: 0.5s;
    opacity: 0.5;
  }
}
@media only screen and (max-width: 767px) {
  .p-ft__sns-item {
    margin-left: 5px;
    margin-right: 5px;
  }
}

@media only screen and (max-width: 767px) {
  .p-ft__copyright {
    margin-top: 15px;
  }
}

.p-ft__copyright-text {
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 480px) {
  .p-ft__copyright-text {
    margin: 0;
  }
}

/*               news
======================================================= */
.c-news-list {
  letter-spacing: 0.1em;
  margin-top: 27px;
}
@media only screen and (max-width: 768px) {
  .c-news-list {
    margin-top: 32px;
  }
}

.c-news-item-link:last-of-type .c-news-item {
  border-bottom: 1px solid #e6e6e6;
}

.c-news-item {
  display: flex;
  padding: 20px 0 16px;
  border-top: 1px solid #e6e6e6;
}
@media only screen and (min-width: 768px) {
  .c-news-item:hover > .c-news-item__title,
  .c-news-item:hover > .c-news-item__date {
    transition: 0.5s;
    opacity: 0.5;
  }
}
@media only screen and (max-width: 768px) {
  .c-news-item {
    padding: 20px 0 13px;
  }
}
@media only screen and (max-width: 480px) {
  .c-news-item {
    flex-direction: column;
  }
}

.c-news-item__date,
.c-news-item__title {
  line-height: 2.6;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 480px) {
  .c-news-item__date,
  .c-news-item__title {
    font-size: 14px;
  }
}

.c-news-item__date {
  color: #949494;
  width: 87px;
}
@media only screen and (max-width: 480px) {
  .c-news-item__date {
    line-height: 1;
    width: 100%;
  }
}

.c-news-item__title {
  padding-left: 32px;
  width: calc(100% - 87px);
  word-wrap: break-word;
}
@media only screen and (max-width: 480px) {
  .c-news-item__title {
    margin-top: 10px;
    padding-left: 0;
    width: 100%;
    line-height: 1.57;
  }
}

/*               news ページネーション
======================================================= */
.c-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-pagination__list {
  display: flex;
  align-items: center;
}

.c-pagination__item {
  padding: 0 5px;
}
.c-pagination__item a,
.c-pagination__item > span {
  display: block;
  background-color: #e6e6e6;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.c-pagination__item a.current,
.c-pagination__item > span.current {
  background-color: #687539;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .c-pagination__item:hover > .page-numbers:not(.current, .dots) {
    transition: 0.5s;
    opacity: 0.6;
  }
}

.c-pagination__prev,
.c-pagination__next {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.c-pagination__prev:before,
.c-pagination__next:before {
  content: "";
  position: absolute;
  top: 8px;
  width: 16px;
  height: 16px;
  background-image: url("../images/home/news_icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.c-pagination__prev:before {
  left: 8px;
  transform: scale(-1, 1);
}

.c-pagination__next:before {
  left: 6px;
}

/*               news ページングナビゲーション
======================================================= */
.c-paging-nav {
  margin: 60px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 250px;
}

.c-paging-nav__prev,
.c-paging-nav__next {
  min-width: 3em;
}
.c-paging-nav__prev > a,
.c-paging-nav__next > a {
  position: relative;
  display: block;
}
.c-paging-nav__prev > a::before,
.c-paging-nav__next > a::before {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/home/news_single_icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.c-paging-nav__prev > a:before {
  left: -15px;
  transform-origin: center;
  transform: scale(-1, 1) translateY(-50%);
}

.c-paging-nav__next {
  text-align: right;
}
.c-paging-nav__next > a::before {
  right: -15px;
}

.c-paging-nav__back {
  padding: 0 50px;
}

@media only screen and (min-width: 768px) {
  .c-paging-nav__prev:hover,
  .c-paging-nav__next:hover,
  .c-paging-nav__back:hover {
    transition: 0.5s;
    opacity: 0.5;
  }
}

@media only screen and (min-width: 768px) {
  .c-link:hover {
    -webkit-text-decoration: underline #687539;
            text-decoration: underline #687539;
  }
}

/*               電話番号リンクをspのみ有効
======================================================= */
@media only screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media only screen and (max-width: 767px) {
  .u-sp-none {
    display: none;
  }
}

.p-hd__logo-img--scroll {
  display: none;
}

.p-hd.scroll .p-hd__logo-img {
  display: none;
}
.p-hd.scroll .p-hd__logo-img--scroll {
  display: block;
}

.l-home-section {
  padding-top: 136px;
}
@media only screen and (max-width: 767px) {
  .l-home-section {
    padding-top: 104px;
  }
}
.l-home-section--description {
  width: 100vw;
  height: 100vh;
  padding: 0;
  background-image: url("../images/home/image_sado_01.webp");
  background-image: image-set(url(../images/home/image_sado_01.webp) 1x, url(../images/home/image_sado_01@2x.webp) 2x);
  background-image: -webkit-image-set(url(../images/home/image_sado_01.webp) 1x, url(../images/home/image_sado_01@2x.webp) 2x);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1023px) {
  .l-home-section--description {
    height: auto;
  }
}
.l-home-section--room {
  padding-top: 131px;
}
@media only screen and (max-width: 767px) {
  .l-home-section--room {
    padding-top: 100px;
  }
}
.l-home-section--cuisine, .l-home-section--onsen {
  padding-top: 60px;
}
@media only screen and (max-width: 767px) {
  .l-home-section--cuisine, .l-home-section--onsen {
    padding-top: 20px;
  }
}

/*                  description
=====================================================================*/
.p-desc-flex {
  display: flex;
  max-width: 1700px;
  margin: auto;
  height: 100%;
  padding: 120px 50px 125px;
}
@media only screen and (max-width: 1023px) {
  .p-desc-flex {
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  .p-desc-flex {
    padding: 91px 30px 70px;
  }
}

.p-desc-flex__box--map {
  width: 55%;
  text-align: center;
}
.p-desc-flex__box--text {
  width: 45%;
  margin-left: -3px;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .p-desc-flex__box--text {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .p-desc-flex__box--map, .p-desc-flex__box--text {
    width: 100%;
    padding: 0;
    height: 50%;
  }
}

.p-desc-flex__img {
  padding-left: 57px;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1300px) {
  .p-desc-flex__img {
    padding-left: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .p-desc-flex__img--pc {
    display: none;
  }
}
.p-desc-flex__img--sp {
  max-width: 600px;
  margin: 15px auto 0;
}
@media only screen and (min-width: 1024px) {
  .p-desc-flex__img--sp {
    display: none;
  }
}
.p-desc-flex__img .-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  opacity: 0.5;
}

.p-desc-flex__detail {
  max-width: 530px;
  position: absolute;
  bottom: 5.6%;
  left: 0;
}
@media only screen and (max-width: 1023px) {
  .p-desc-flex__detail {
    padding: 0;
    max-width: none;
    position: static;
  }
}

.p-desc-flex__detail-head,
.p-desc-flex__detail-text {
  color: #fff;
}

.p-desc-flex__detail-head {
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1.9;
}
@media only screen and (max-width: 767px) {
  .p-desc-flex__detail-head {
    font-size: 28px;
  }
}
@media only screen and (max-width: 480px) {
  .p-desc-flex__detail-head {
    font-size: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .p-desc-flex__detail-head .-span {
    display: inline-block;
  }
}

.p-desc-flex__detail-text {
  margin-top: 25px;
  letter-spacing: 0.1em;
  line-height: 2.6;
}
@media only screen and (max-width: 767px) {
  .p-desc-flex__detail-text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .p-desc-flex__detail-text {
    margin-top: 29px;
    font-size: 14px;
    line-height: 2.28;
  }
}

/*               room
======================================================= */
.p-lower-link-bnr {
  position: relative;
}

/*              room,cuisine,onsenの共通バナー
======================================================= */
.p-lower-link-bnr__link {
  display: block;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .p-lower-link-bnr__link:hover .p-lower-link-bnr__img {
    transform: scale(1.1);
    transform-origin: center;
  }
}
@media only screen and (max-width: 480px) {
  .p-lower-link-bnr__link {
    height: 170px;
  }
}

.p-lower-link-bnr__img {
  transition: transform 0.5s;
}
@media only screen and (max-width: 480px) {
  .p-lower-link-bnr__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-lower-link-bnr__text {
  position: absolute;
  top: 43%;
  left: 7%;
  color: #fff;
  font-size: 70px;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 480px) {
  .p-lower-link-bnr__text {
    font-size: 34px;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.8);
    top: 50%;
    left: 51%;
    transform: translate(-50%, -50%);
  }
}

/*               access
======================================================= */
.p-access-desc {
  max-width: 840px;
}

.p-access-desc__detail {
  margin-top: 19px;
}
@media only screen and (max-width: 767px) {
  .p-access-desc__detail {
    margin-top: 29px;
  }
}

.p-access-desc__detail-text {
  line-height: 2.7;
}
@media only screen and (max-width: 767px) {
  .p-access-desc__detail-text {
    font-size: 14px;
    line-height: 2.28;
  }
}

.p-access-map {
  margin: 45px auto 0;
}
@media only screen and (max-width: 767px) {
  .p-access-map {
    margin-top: 20px;
  }
}

.p-access-map__iframe {
  width: 100%;
  min-height: 600px;
  filter: grayscale(100%);
}
@media only screen and (max-width: 767px) {
  .p-access-map__iframe {
    min-height: 375px;
  }
}

/*              reservation
======================================================= */
.p-reservation-desc {
  max-width: 842px;
}

.p-reservation-desc__detail {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .p-reservation-desc__detail {
    margin-top: 28px;
  }
}

.p-reservation-desc__detail-text {
  letter-spacing: 0.1em;
  line-height: 2.7em;
}
@media only screen and (max-width: 767px) {
  .p-reservation-desc__detail-text {
    font-size: 14px;
    line-height: 2.28;
  }
}

.p-reservation-btn {
  margin-top: 43px;
}
@media only screen and (max-width: 767px) {
  .p-reservation-btn {
    margin-top: 19px;
  }
}

.p-reservation-btn__btn {
  text-align: center;
  display: block;
  padding: 30px 30px 34px;
  max-width: 400px;
  border: 1px solid #707070;
  transition: 0.5s;
}
@media only screen and (min-width: 768px) {
  .p-reservation-btn__btn:hover {
    transition: 0.5s;
    color: #fff;
    background-color: #687539;
  }
}
@media only screen and (max-width: 1023px) {
  .p-reservation-btn__btn {
    height: 60px;
    padding: 20px 30px;
  }
}/*# sourceMappingURL=home.css.map */