@charset "UTF-8";
/* ==========================================================================*/
/* 全体の設定
/* ==========================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap");
:root {
  --text-color: #505050;
  --bg-color: #fff;
  --main-color: #00426F;
  --line-color: #DDDDDD;
  --link-color: #6B583D;
  --content-width: 950px;
}

html {
  font-size: 16px;
}

*, *:before, *:after {
  padding: 0;
  margin: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  color: var(--text-color);
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

a {
  color: var(--link-color);
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}

#cwrap {
  width: var(--content-width);
  margin: 0 auto;
}

/* ==========================================================================*/
/* ヘッダー
/* ==========================================================================*/
#cheader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
}

#site-title {
  margin: 0;
  padding: 15px 0;
  display: inline-block;
}

.header-plan {
  width: 224px;
}
.header-plan a {
  background-color: #9C8D6D;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 14px 40px;
  width: 100%;
  border-radius: 9999px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 45px;
}
.header-plan a:after {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  right: 24px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-plan a:hover {
  background-color: rgb(166.3040816327, 152.8653061224, 124.1959183673);
  color: #fff;
}
.header-plan a:hover:after {
  right: 20px;
}

/* ==========================================================================*/
/* ナビ
/* ==========================================================================*/
#cnav ul {
  margin: 0 0 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#cnav li {
  height: 60px;
  list-style-type: none;
  padding: 0;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#cnav li:not(:last-child) {
  border-right: 1px solid rgba(var(--main-color), 0.25);
}
#cnav a {
  border-bottom: 5px solid black;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--main-color);
  padding: 7px 0 4px 0;
  height: 100%;
}
#cnav a:hover {
  border-bottom: 5px solid #CF8434;
  opacity: 1;
}

/* ==========================================================================*/
/* MV・バナー
/* ==========================================================================*/
#cmv,
.cbanner {
  margin: 30px auto;
}

.cbanner {
  text-align: center;
}
.cbanner img {
  margin: 0 auto;
}

/* ==========================================================================*/
/* コンテンツ共通
/* ==========================================================================*/
#cmain h3 {
  font-size: 26px;
  font-size: 1.625rem;
  text-align: center;
  border-bottom: 1px solid var(--line-color);
  margin-bottom: 20px;
}
#cmain h3 .en {
  color: #CF8434;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  display: block;
  padding: 0 0 10px 0;
  letter-spacing: 1px;
}

/* ==========================================================================*/
/* 宿泊プラン
/* ==========================================================================*/
#plan-list {
  background-color: #EDE8DE;
  width: var(--content-width);
  margin: 20px 0 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
  gap: 10px;
}
#plan-list .plan {
  background-color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 16px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#plan-list .plan img {
  margin-bottom: 24px;
}
#plan-list .plan .plantitle {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 24px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  word-break: break-word;
}
#plan-list .plan .plantitle a {
  color: var(--link-color);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
#plan-list .plan p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.84;
  margin-bottom: 32px;
  text-align: justify;
  word-break: break-word;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#plan-list .plan .btn {
  text-align: center;
  width: 280px;
  margin-inline: auto;
}
#plan-list .plan .btn a {
  background-color: #9C8D6D;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 14px 40px;
  width: 100%;
  border-radius: 9999px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#plan-list .plan .btn a:after {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  right: 24px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#plan-list .plan .btn a:hover {
  background-color: rgb(166.3040816327, 152.8653061224, 124.1959183673);
}
#plan-list .plan .btn a:hover:after {
  right: 20px;
}

/* ==========================================================================*/
/* おすすめ
/* ==========================================================================*/
#point-list {
  width: var(--content-width);
  margin: 20px 0 60px 0;
}
#point-list .point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
#point-list .point:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#point-list .point:not(:last-child) {
  border-bottom: 1px dashed var(--line-color);
}
#point-list .point:nth-child(1) .pointtitle {
  background: url(../img/point1.png) no-repeat left center;
}
#point-list .point:nth-child(2) .pointtitle {
  background: url(../img/point2.png) no-repeat left center;
}
#point-list .point:nth-child(3) .pointtitle {
  background: url(../img/point3.png) no-repeat left center;
}
#point-list .photo {
  width: 465px;
}
#point-list .text {
  width: 465px;
}
#point-list .pointtitle {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 0 0 30px 0;
  padding: 12px 0 12px 150px;
}
#point-list .pointtitle a {
  color: var(--link-color) !important;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
#point-list p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.84;
  text-align: justify;
}

/* ==========================================================================*/
/* フッター
/* ==========================================================================*/
.f-link {
  border-top: 1px solid var(--line-color);
  width: var(--content-width);
  margin: 40px auto 0 auto;
}
.f-link a {
  color: var(--text-color);
}
.f-link li {
  font-size: 14px;
  font-size: 0.875rem;
  list-style-type: none;
  display: inline;
  padding-left: 10px;
  margin-right: 16px;
  line-height: 46px;
}
.f-link li:not(:first-child) {
  border-left: 1px solid var(--line-color);
  padding-left: 20px;
}

#cfooter {
  background-color: var(--main-color);
  color: #fff;
  width: var(--content-width);
  margin: 0 auto;
  padding: 40px 0;
}
#cfooter .flogo {
  text-align: center;
  margin: 0 0 30px 0;
}

.footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 30px;
}

.f-address {
  width: 480px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.f-address .photo {
  width: 200px;
}
.f-address .text {
  width: 260px;
  font-size: 13px;
  font-size: 0.8125rem;
}
.f-address .text p {
  margin-bottom: 1em;
  line-height: 1.8;
}

.f-bnr {
  width: 360px;
}
.f-bnr ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.f-bnr li {
  list-style-type: none;
  margin: 0;
}/*# sourceMappingURL=style.css.map */