@charset "UTF-8";
html {
  font-size: 16px;
}

/* ==========================================================================*/
/* 全体の設定
/* ==========================================================================*/
*, *:before, *:after {
  padding: 0;
  margin: 0;
  outline: 0;
  box-sizing: border-box;
}

body {
  color: #222;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

a {
  color: #002060;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
a:hover {
  opacity: 0.8;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}

a:hover img {
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}

#cwrap {
  width: 950px;
  margin: 0 auto;
}

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

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

.btn-reserve a {
  background-color: #002060;
  border: 1px solid #002060;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.6em 0;
  position: relative;
  letter-spacing: 0.08em;
}
.btn-reserve a:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #002060;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.25s ease-in-out;
}
.btn-reserve a:hover {
  background-color: #fff;
  color: #002060;
}
.btn-reserve a:hover:after {
  opacity: 0.1;
  transform: translate3d(6px, 6px, 0);
}

.header-plan {
  width: 224px;
  height: 42px;
}

/* ==========================================================================*/
/* ナビ
/* ==========================================================================*/
#cnav ul {
  margin: 0 0 20px 0;
  display: flex;
}
#cnav li {
  height: 60px;
  list-style-type: none;
  padding: 0;
  text-align: center;
  flex: 1;
}
#cnav a {
  background: linear-gradient(#f5dbad 0%, #d2a065 51.46%, #d48722 100%);
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7px 0 4px 0;
  height: 100%;
  letter-spacing: 0.08em;
  transition: all 0.25s ease-in-out;
}
#cnav a:hover {
  background: linear-gradient(#d48722 0%, #d2a065 51.46%, #f5dbad 100%);
}

/* ==========================================================================*/
/* 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 #cccbcb;
  margin-bottom: 20px;
}
#cmain h3 .en {
  color: #6C462C;
  font-weight: normal;
  font-size: 13px;
  font-size: 0.8125rem;
  display: block;
  padding: 0 0 10px 0;
  letter-spacing: 1px;
}

/* ==========================================================================*/
/* 宿泊プラン
/* ==========================================================================*/
#plan-list {
  background: rgba(0, 32, 96, 0.07);
  width: 950px;
  margin: 20px 0 60px 0;
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
#plan-list .plan {
  background-color: #fff;
  width: 300px;
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
}
#plan-list .plan img {
  margin-bottom: 10px;
}
#plan-list .plan .plantitle {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 15px;
  flex-grow: 1;
}
#plan-list .plan .plantitle a {
  text-decoration: none;
  color: #002060;
}
#plan-list .plan p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 32px;
  text-align: justify;
  flex-grow: 1;
}

/* ==========================================================================*/
/* おすすめ
/* ==========================================================================*/
#point-list {
  width: 950px;
  margin: 20px 0 60px 0;
}
#point-list .point {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
#point-list .point:nth-child(even) {
  flex-direction: row-reverse;
}
#point-list .point:not(:last-child) {
  border-bottom: 1px dashed #cccbcb;
}
#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: 24px;
  font-size: 1.5rem;
  padding-left: 150px;
  line-height: 1.4;
  margin: 0 0 30px 0;
}
#point-list p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.75;
  text-align: justify;
}

/* ==========================================================================*/
/* フッター
/* ==========================================================================*/
.f-link {
  border-top: 1px solid #cccbcb;
  width: 950px;
  margin: 40px auto 0 auto;
  display: flex;
  align-items: center;
}
.f-link a {
  color: #222;
}
.f-link li {
  font-size: 14px;
  font-size: 0.875rem;
  list-style-type: none;
  display: inline;
  line-height: 46px;
}
.f-link li:after {
  content: "|";
  color: #ddd;
  margin: 0 1.5em;
}

#cfooter {
  background-color: #6C462C;
  color: #fff;
  width: 950px;
  margin: 0 auto;
  padding: 40px 0;
}
#cfooter .flogo {
  text-align: center;
  margin: 0 0 30px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}

.f-address {
  width: 480px;
  display: flex;
  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: 200px;
}/*# sourceMappingURL=style.css.map */